StandardConfiguration.cs 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace OCPPPackage.Profiles
  7. {
  8. public static class StandardConfiguration
  9. {
  10. #region Core Profile
  11. public const string AllowOfflineTxForUnknownId = "AllowOfflineTxForUnknownId";
  12. public const string AuthorizationCacheEnabled = "AuthorizationCacheEnabled";
  13. public const string AuthorizeRemoteTxRequests = "AuthorizeRemoteTxRequests";
  14. public const string BlinkRepeat = "BlinkRepeat";
  15. public const string ClockAlignedDataInterval = "ClockAlignedDataInterval";
  16. public const string ConnectionTimeOut = "ConnectionTimeOut";
  17. public const string GetConfigurationMaxKeys = "GetConfigurationMaxKeys";
  18. public const string HeartbeatInterval = "HeartbeatInterval";
  19. public const string LightIntensity = "LightIntensity";
  20. public const string LocalAuthorizeOffline = "LocalAuthorizeOffline";
  21. public const string LocalPreAuthorize = "LocalPreAuthorize";
  22. public const string MaxEnergyOnInvalidId = "MaxEnergyOnInvalidId";
  23. public const string MeterValuesAlignedData = "MeterValuesAlignedData";
  24. public const string MeterValuesAlignedDataMaxLength = "MeterValuesAlignedDataMaxLength";
  25. public const string MeterValuesSampledData = "MeterValuesSampledData";
  26. public const string MeterValuesSampledDataMaxLength = "MeterValuesSampledDataMaxLength";
  27. public const string MeterValueSampleInterval = "MeterValueSampleInterval";
  28. public const string MinimumStatusDuration = "MinimumStatusDuration";
  29. public const string NumberOfConnectors = "NumberOfConnectors";
  30. public const string ResetRetries = "ResetRetries";
  31. public const string ConnectorPhaseRotation = "ConnectorPhaseRotation";
  32. public const string ConnectorPhaseRotationMaxLength = "ConnectorPhaseRotationMaxLength";
  33. public const string StopTransactionOnEVSideDisconnect = "StopTransactionOnEVSideDisconnect";
  34. public const string StopTransactionOnInvalidId = "StopTransactionOnInvalidId";
  35. public const string StopTxnAlignedData = "StopTxnAlignedData";
  36. public const string StopTxnAlignedDataMaxLength = "StopTxnAlignedDataMaxLength";
  37. public const string StopTxnSampledData = "StopTxnSampledData";
  38. public const string StopTxnSampledDataMaxLength = "StopTxnSampledDataMaxLength";
  39. public const string SupportedFeatureProfiles = "SupportedFeatureProfiles";
  40. public const string SupportedFeatureProfilesMaxLength = "SupportedFeatureProfilesMaxLength";
  41. public const string TransactionMessageAttempts = "TransactionMessageAttempts";
  42. public const string TransactionMessageRetryInterval = "TransactionMessageRetryInterval";
  43. public const string UnlockConnectorOnEVSideDisconnect = "UnlockConnectorOnEVSideDisconnect";
  44. public const string WebSocketPingInterval = "WebSocketPingInterval";
  45. #endregion
  46. #region Local Auth List Management Profile
  47. public const string LocalAuthListEnabled = "LocalAuthListEnabled";
  48. public const string LocalAuthListMaxLength = "LocalAuthListMaxLength";
  49. public const string SendLocalListMaxLength = "SendLocalListMaxLength";
  50. #endregion
  51. #region Reservation Profile
  52. public const string ReserveConnectorZeroSupported = "ReserveConnectorZeroSupported";
  53. #endregion
  54. #region Smart Charging Profile
  55. public const string ChargeProfileMaxStackLevel = "ChargeProfileMaxStackLevel";
  56. public const string ChargingScheduleAllowedChargingRateUnit = "ChargingScheduleAllowedChargingRateUnit";
  57. public const string ChargingScheduleMaxPeriods = "ChargingScheduleMaxPeriods";
  58. public const string ConnectorSwitch3to1PhaseSupported = "ConnectorSwitch3to1PhaseSupported";
  59. public const string MaxChargingProfilesInstalled = "MaxChargingProfilesInstalled";
  60. #endregion
  61. public static readonly List<string> AllConfigs = new List<string>()
  62. {
  63. GetConfigurationMaxKeys,
  64. SupportedFeatureProfiles,
  65. NumberOfConnectors,
  66. SupportedFeatureProfilesMaxLength,
  67. StopTransactionOnEVSideDisconnect,
  68. StopTransactionOnInvalidId,
  69. StopTxnAlignedData,
  70. StopTxnAlignedDataMaxLength,
  71. StopTxnSampledData,
  72. StopTxnSampledDataMaxLength,
  73. TransactionMessageAttempts,
  74. TransactionMessageRetryInterval,
  75. MaxEnergyOnInvalidId,
  76. MeterValuesAlignedData,
  77. MeterValuesAlignedDataMaxLength,
  78. MeterValuesSampledData,
  79. MeterValuesSampledDataMaxLength,
  80. WebSocketPingInterval,
  81. MeterValueSampleInterval,
  82. MinimumStatusDuration,
  83. UnlockConnectorOnEVSideDisconnect,
  84. ResetRetries,
  85. AllowOfflineTxForUnknownId,
  86. AuthorizationCacheEnabled,
  87. AuthorizeRemoteTxRequests,
  88. BlinkRepeat,
  89. ClockAlignedDataInterval,
  90. ConnectionTimeOut,
  91. ConnectorPhaseRotation,
  92. ConnectorPhaseRotationMaxLength,
  93. HeartbeatInterval,
  94. LightIntensity,
  95. LocalAuthorizeOffline,
  96. LocalPreAuthorize,
  97. LocalAuthListEnabled,
  98. LocalAuthListMaxLength,
  99. SendLocalListMaxLength,
  100. ReserveConnectorZeroSupported,
  101. ChargeProfileMaxStackLevel,
  102. ChargingScheduleAllowedChargingRateUnit,
  103. ChargingScheduleMaxPeriods,
  104. ConnectorSwitch3to1PhaseSupported,
  105. MaxChargingProfilesInstalled,
  106. };
  107. public static bool Contains(List<string> configs)
  108. {
  109. foreach (var item in configs)
  110. {
  111. if (!AllConfigs.Contains(item))
  112. return false;
  113. }
  114. return true;
  115. }
  116. }
  117. }