MessageHandler.h 35 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045
  1. #ifndef MessageHandler_H
  2. #define MessageHandler_H
  3. //===================================
  4. // Define SQLite file constant
  5. //===================================
  6. #define OCPP_LOCAL_DB_FILE "/Storage/OCPP/charger.db"
  7. //===================================
  8. // Define CP State constant
  9. //===================================
  10. #define CP_STATE_UNKNOWN 0
  11. #define CP_STATE_A 1
  12. #define CP_STATE_B 2
  13. #define CP_STATE_C 3
  14. #define CP_STATE_D 4
  15. #define CP_STATE_E 5
  16. #define CP_STATE_F 6
  17. //==========================================
  18. // Init all Enumeration & Mapping String
  19. //==========================================
  20. #define MACROSTR(k) #k
  21. /* Common Data Type */
  22. /*APNAuthenticationEnumType */
  23. typedef enum {
  24. APNAuthenticationEnumType_CHAP,
  25. APNAuthenticationEnumType_NONE,
  26. APNAuthenticationEnumType_PAP,
  27. APNAuthenticationEnumType_AUTO
  28. } APNAuthenticationEnumType;
  29. /* AttributeEnumType */
  30. typedef enum {
  31. AttributeEnumType_Actual,
  32. AttributeEnumType_Target,
  33. AttributeEnumType_MinSet,
  34. AttributeEnumType_MaxSet
  35. } AttributeEnumType;
  36. /* AuthorizationStatusEnumType */
  37. typedef enum {
  38. AuthorizationStatusEnumType_Accepted,
  39. AuthorizationStatusEnumType_Blocked,
  40. AuthorizationStatusEnumType_ConcurrentTx,
  41. AuthorizationStatusEnumType_Expired,
  42. AuthorizationStatusEnumType_Invalid,
  43. AuthorizationStatusEnumType_NoCredit,
  44. AuthorizationStatusEnumType_NotAllowedTypeEVSE,
  45. AuthorizationStatusEnumType_NotAtThisLocation,
  46. AuthorizationStatusEnumType_NotAtThisTime,
  47. AuthorizationStatusEnumType_Unknown
  48. } AuthorizationStatusEnumType;
  49. /* AuthorizeCertificateStatusEnumType */
  50. typedef enum {
  51. AuthorizeCertificateStatusEnumType_Accepted,
  52. AuthorizeCertificateStatusEnumType_SignatureError,
  53. AuthorizeCertificateStatusEnumType_CertificateExpired,
  54. AuthorizeCertificateStatusEnumType_CertificateRevoked
  55. } AuthorizeCertificateStatusEnumType;
  56. /* BootReasonEnumType */
  57. typedef enum {
  58. BootReasonEnumType_ApplicationReset,
  59. BootReasonEnumType_FirmwareUpdate,
  60. BootReasonEnumType_LocalReset,
  61. BootReasonEnumType_PowerUp,
  62. BootReasonEnumType_RemoteReset,
  63. BootReasonEnumType_ScheduledReset,
  64. BootReasonEnumType_Triggered,
  65. BootReasonEnumType_Unknown,
  66. BootReasonEnumType_Watchdog
  67. } BootReasonEnumType;
  68. /* SecurityEventEnumType */
  69. typedef enum {
  70. SecurityEventEnumType_FirmwareUpdated,
  71. SecurityEventEnumType_FailedToAuthenticateAtCsms,
  72. SecurityEventEnumType_CsmsFailedToAuthenticate,
  73. SecurityEventEnumType_SettingSystemTime,
  74. SecurityEventEnumType_StartupOfTheDevice,
  75. SecurityEventEnumType_ResetOrReboot,
  76. SecurityEventEnumType_SecurityLogWasCleared,
  77. SecurityEventEnumType_ReconfigurationOfSecurityParameters,
  78. SecurityEventEnumType_MemoryExhaustion,
  79. SecurityEventEnumType_InvalidMessages,
  80. SecurityEventEnumType_AttemptedReplayAttacks,
  81. SecurityEventEnumType_TamperDetectionActivated,
  82. SecurityEventEnumType_InvalidFirmwareSignature,
  83. SecurityEventEnumType_InvalidFirmwareSigningCertificate,
  84. SecurityEventEnumType_InvalidCsmsCertificate,
  85. SecurityEventEnumType_InvalidChargingStationCertificate,
  86. SecurityEventEnumType_InvalidTLSVersion,
  87. SecurityEventEnumType_InvalidTLSCipherSuite
  88. } SecurityEventEnumType;
  89. /* CancelReservationStatusEnumType */
  90. typedef enum {
  91. CancelReservationStatusEnumType_Accepted,
  92. CancelReservationStatusEnumType_Rejected
  93. } CancelReservationStatusEnumType;
  94. /* CertificateActionEnumType */
  95. typedef enum {
  96. CertificateActionEnumType_Install,
  97. CertificateActionEnumType_Update
  98. } CertificateActionEnumType;
  99. /* CertificateSignedStatusEnumType */
  100. typedef enum {
  101. CertificateSignedStatusEnumType_Accepted,
  102. CertificateSignedStatusEnumType_Rejected
  103. } CertificateSignedStatusEnumType;
  104. /* CertificateSignedStatusEnumType */
  105. typedef enum {
  106. CertificateSignedStatusEnumType_ChargingStationCertificate,
  107. CertificateSignedStatusEnumType_V2GCertificate
  108. } CertificateSigningUseEnumType;
  109. /* ChangeAvailabilityStatusEnumType */
  110. typedef enum {
  111. ChangeAvailabilityStatusEnumType_Accepted,
  112. ChangeAvailabilityStatusEnumType_Rejected,
  113. ChangeAvailabilityStatusEnumType_Scheduled
  114. } ChangeAvailabilityStatusEnumType;
  115. /* ChargingLimitSourceEnumType */
  116. typedef enum {
  117. ChargingLimitSourceEnumType_EMS,
  118. ChargingLimitSourceEnumType_Other,
  119. ChargingLimitSourceEnumType_SO,
  120. ChargingLimitSourceEnumType_CSO
  121. } ChargingLimitSourceEnumType;
  122. /* ChargingProfileKindEnumType */
  123. typedef enum {
  124. ChargingProfileKindEnumType_Absolute,
  125. ChargingProfileKindEnumType_Recurring,
  126. ChargingProfileKindEnumType_Relative
  127. } ChargingProfileKindEnumType;
  128. /* ChargingProfilePurposeEnumType */
  129. typedef enum {
  130. ChargingProfilePurposeEnumType_ChargingStationExternalConstraints,
  131. ChargingProfilePurposeEnumType_ChargingStationMaxProfile,
  132. ChargingProfilePurposeEnumType_TxDefaultProfile,
  133. ChargingProfilePurposeEnumType_TxProfile
  134. } ChargingProfilePurposeEnumType;
  135. /* ChargingProfileStatusEnumType */
  136. typedef enum {
  137. ChargingProfileStatusEnumType_Accepted,
  138. ChargingProfileStatusEnumType_Rejected
  139. } ChargingProfileStatusEnumType;
  140. /* ChargingRateUnitEnumType */
  141. typedef enum {
  142. ChargingRateUnitEnumType_W,
  143. ChargingRateUnitEnumType_A
  144. } ChargingRateUnitEnumType;
  145. /* ChargingStateEnumType */
  146. typedef enum {
  147. ChargingStateEnumType_Charging,
  148. ChargingStateEnumType_EVConnected,
  149. ChargingStateEnumType_SuspendedEV,
  150. ChargingStateEnumType_SuspendedEVSE,
  151. ChargingStateEnumType_Idle
  152. }ChargingStateEnumType;
  153. /* ClearCacheStatusEnumType */
  154. typedef enum {
  155. ClearCacheStatusEnumType_Accepted,
  156. ClearCacheStatusEnumType_Rejected
  157. } ClearCacheStatusEnumType;
  158. /* ClearChargingProfileStatusEnumType */
  159. typedef enum {
  160. ClearChargingProfileStatusEnumType_Accepted,
  161. ClearChargingProfileStatusEnumType_Unknown
  162. } ClearChargingProfileStatusEnumType;
  163. /* ClearMessageStatusEnumType */
  164. typedef enum {
  165. ClearMessageStatusEnumType_Accepted,
  166. ClearMessageStatusEnumType_Unknown
  167. } ClearMessageStatusEnumType;
  168. /* ClearMonitoringStatusEnumType */
  169. typedef enum {
  170. ClearMonitoringStatusEnumType_Accepted,
  171. ClearMonitoringStatusEnumType_Rejected,
  172. ClearMonitoringStatusEnumType_NotFound
  173. } ClearMonitoringStatusEnumType;
  174. /* ComponentCriterionEnumType */
  175. typedef enum {
  176. ComponentCriterionEnumType_Active,
  177. ComponentCriterionEnumType_Available,
  178. ComponentCriterionEnumType_Enabled,
  179. ComponentCriterionEnumType_Problem
  180. } ComponentCriterionEnumType;
  181. /* ConnectorEnumType */
  182. typedef enum {
  183. ConnectorEnumType_cCCS1,
  184. ConnectorEnumType_cCCS2,
  185. ConnectorEnumType_cG105,
  186. ConnectorEnumType_cTesla,
  187. ConnectorEnumType_cType1,
  188. ConnectorEnumType_cType2,
  189. ConnectorEnumType_s309_1P_16A,
  190. ConnectorEnumType_s309_1P_32A,
  191. ConnectorEnumType_s309_3P_16A,
  192. ConnectorEnumType_s309_3P_32A,
  193. ConnectorEnumType_sBS1361,
  194. ConnectorEnumType_sCEE_7_7,
  195. ConnectorEnumType_sType2,
  196. ConnectorEnumType_sType3,
  197. ConnectorEnumType_Other1PhMax16A,
  198. ConnectorEnumType_Other1PhOver16A,
  199. ConnectorEnumType_Other3Ph,
  200. ConnectorEnumType_Pan,
  201. ConnectorEnumType_wInductive,
  202. ConnectorEnumType_wResonant,
  203. ConnectorEnumType_Undetermined,
  204. ConnectorEnumType_Unknown
  205. } ConnectorEnumType;
  206. /* ConnectorStatusEnumType */
  207. typedef enum {
  208. ConnectorStatusEnumType_Available,
  209. ConnectorStatusEnumType_Occupied,
  210. ConnectorStatusEnumType_Reserved,
  211. ConnectorStatusEnumType_Unavailable,
  212. ConnectorStatusEnumType_Faulted
  213. } ConnectorStatusEnumType;
  214. /* CostKindEnumType */
  215. typedef enum {
  216. CostKindEnumType_CarbonDioxideEmission,
  217. CostKindEnumType_RelativePricePercentage,
  218. CostKindEnumType_RenewableGenerationPercentage
  219. } CostKindEnumType;
  220. /* CustomerInformationStatusEnumType */
  221. typedef enum {
  222. CustomerInformationStatusEnumType_Accepted,
  223. CustomerInformationStatusEnumType_Rejected,
  224. CustomerInformationStatusEnumType_Invalid
  225. } CustomerInformationStatusEnumType;
  226. /* DataEnumType */
  227. typedef enum {
  228. DataEnumType_string,
  229. DataEnumType_decimal,
  230. DataEnumType_integer,
  231. DataEnumType_dateTime,
  232. DataEnumType_boolean,
  233. DataEnumType_OptionList,
  234. DataEnumType_SequenceList,
  235. DataEnumType_MemberList
  236. } DataEnumType;
  237. /* DataTransferStatusEnumType */
  238. typedef enum {
  239. DataTransferStatusEnumType_Accepted,
  240. DataTransferStatusEnumType_Rejected,
  241. DataTransferStatusEnumType_UnknownMessageId,
  242. DataTransferStatusEnumType_UnknownVendorId
  243. } DataTransferStatusEnumType;
  244. /* DeleteCertificateStatusEnumType */
  245. typedef enum {
  246. DeleteCertificateStatusEnumType_Accepted,
  247. DeleteCertificateStatusEnumType_Failed,
  248. DeleteCertificateStatusEnumType_NotFound
  249. } DeleteCertificateStatusEnumType;
  250. /* DisplayMessageStatusEnumType */
  251. typedef enum {
  252. DisplayMessageStatusEnumType_Accepted,
  253. DisplayMessageStatusEnumType_NotSupportedMessageFormat,
  254. DisplayMessageStatusEnumType_Rejected,
  255. DisplayMessageStatusEnumType_NotSupportedPriority,
  256. DisplayMessageStatusEnumType_NotSupportedState,
  257. DisplayMessageStatusEnumType_UnknownTransaction
  258. } DisplayMessageStatusEnumType;
  259. /* EnergyTransferModeEnumType */
  260. typedef enum {
  261. EnergyTransferModeEnumType_DC,
  262. EnergyTransferModeEnumType_AC_single_phase,
  263. EnergyTransferModeEnumType_AC_two_phase,
  264. EnergyTransferModeEnumType_AC_three_phase
  265. } EnergyTransferModeEnumType;
  266. /* EventNotificationEnumType */
  267. typedef enum {
  268. EventNotificationEnumType_HardWiredNotification,
  269. EventNotificationEnumType_HardWiredMonitor,
  270. EventNotificationEnumType_PreconfiguredMonitor,
  271. EventNotificationEnumType_CustomMonitor
  272. } EventNotificationEnumType;
  273. /* EventTriggerEnumType */
  274. typedef enum {
  275. EventTriggerEnumType_Alerting,
  276. EventTriggerEnumType_Delta,
  277. EventTriggerEnumType_Periodic
  278. } EventTriggerEnumType;
  279. /* FirmwareStatusEnumType */
  280. typedef enum {
  281. FirmwareStatusEnumType_Downloaded,
  282. FirmwareStatusEnumType_DownloadFailed,
  283. FirmwareStatusEnumType_Downloading,
  284. FirmwareStatusEnumType_DownloadScheduled,
  285. FirmwareStatusEnumType_DownloadPaused,
  286. FirmwareStatusEnumType_Idle,
  287. FirmwareStatusEnumType_InstallationFailed,
  288. FirmwareStatusEnumType_Installing,
  289. FirmwareStatusEnumType_Installed,
  290. FirmwareStatusEnumType_InstallRebooting,
  291. FirmwareStatusEnumType_InstallScheduled,
  292. FirmwareStatusEnumType_InstallVerificationFailed,
  293. FirmwareStatusEnumType_InvalidSignature,
  294. FirmwareStatusEnumType_SignatureVerified
  295. } FirmwareStatusEnumType;
  296. /* GenericDeviceModelStatusEnumType */
  297. typedef enum {
  298. GenericDeviceModelStatusEnumType_Accepted,
  299. GenericDeviceModelStatusEnumType_Rejected,
  300. GenericDeviceModelStatusEnumType_NotSupported,
  301. GenericDeviceModelStatusEnumType_EmptyResultSet
  302. } GenericDeviceModelStatusEnumType;
  303. /* GenericStatusEnumType */
  304. typedef enum {
  305. GenericStatusEnumType_Accepted,
  306. GenericStatusEnumType_Rejected
  307. } GenericStatusEnumType;
  308. /* GetCertificateIdUseEnumType */
  309. typedef enum {
  310. GetCertificateIdUseEnumType_V2GRootCertificate,
  311. GetCertificateIdUseEnumType_MORootCertificate,
  312. GetCertificateIdUseEnumType_CSMSRootCertificate,
  313. GetCertificateIdUseEnumType_V2GCertificateChain,
  314. GetCertificateIdUseEnumType_ManufacturerRootCertificate
  315. } GetCertificateIdUseEnumType;
  316. /* GetCertificateStatusEnumType */
  317. typedef enum {
  318. GetCertificateStatusEnumType_Accepted,
  319. GetCertificateStatusEnumType_Failed
  320. } GetCertificateStatusEnumType;
  321. /* GetChargingProfileStatusEnumType */
  322. typedef enum {
  323. GetChargingProfileStatusEnumType_Accepted,
  324. GetChargingProfileStatusEnumType_NoProfiles
  325. } GetChargingProfileStatusEnumType;
  326. /* GetDisplayMessagesStatusEnumType */
  327. typedef enum {
  328. GetDisplayMessagesStatusEnumType_Accepted,
  329. GetDisplayMessagesStatusEnumType_Unknown
  330. } GetDisplayMessagesStatusEnumType;
  331. /* GetInstalledCertificateStatusEnumType */
  332. typedef enum {
  333. GetInstalledCertificateStatusEnumType_Accepted,
  334. GetInstalledCertificateStatusEnumType_NotFound
  335. } GetInstalledCertificateStatusEnumType;
  336. /* GetVariableStatusEnumType */
  337. typedef enum {
  338. GetVariableStatusEnumType_Accepted,
  339. GetVariableStatusEnumType_Rejected,
  340. GetVariableStatusEnumType_UnknownComponent,
  341. GetVariableStatusEnumType_UnknownVariable,
  342. GetVariableStatusEnumType_NotSupportedAttributeType
  343. } GetVariableStatusEnumType;
  344. /* HashAlgorithmEnumType */
  345. typedef enum {
  346. HashAlgorithmEnumType_SHA256,
  347. HashAlgorithmEnumType_SHA384,
  348. HashAlgorithmEnumType_SHA512
  349. } HashAlgorithmEnumType;
  350. /* IdTokenEnumType */
  351. typedef enum {
  352. IdTokenEnumType_Central,
  353. IdTokenEnumType_eMAID,
  354. IdTokenEnumType_ISO14443,
  355. IdTokenEnumType_ISO15693,
  356. IdTokenEnumType_KeyCode,
  357. IdTokenEnumType_Local,
  358. IdTokenEnumType_MacAddress,
  359. IdTokenEnumType_NoAuthorization,
  360. } IdTokenEnumType;
  361. /* InstallCertificateUseEnumType */
  362. typedef enum {
  363. InstallCertificateUseEnumType_V2GRootCertificate,
  364. InstallCertificateUseEnumType_MORootCertificate,
  365. InstallCertificateUseEnumType_CSMSRootCertificate,
  366. InstallCertificateUseEnumType_ManufacturerRootCertificate
  367. } InstallCertificateUseEnumType;
  368. /* InstallCertificateStatusEnumType */
  369. typedef enum {
  370. InstallCertificateStatusEnumType_Accepted,
  371. InstallCertificateStatusEnumType_Failed,
  372. InstallCertificateStatusEnumType_Rejected
  373. } InstallCertificateStatusEnumType;
  374. /* Iso15118EVCertificateStatusEnumType */
  375. typedef enum {
  376. Iso15118EVCertificateStatusEnumType_Accepted,
  377. Iso15118EVCertificateStatusEnumType_Failed
  378. } Iso15118EVCertificateStatusEnumType;
  379. /* LocationEnumType */
  380. typedef enum {
  381. LocationEnumType_Body,
  382. LocationEnumType_Cable,
  383. LocationEnumType_EV,
  384. LocationEnumType_Inlet,
  385. LocationEnumType_Outlet
  386. } LocationEnumType;
  387. /* LogEnumType */
  388. typedef enum {
  389. LogEnumType_DiagnosticsLog,
  390. LogEnumType_SecurityLog
  391. } LogEnumType;
  392. /* LogStatusEnumType */
  393. typedef enum {
  394. LogStatusEnumType_Accepted,
  395. LogStatusEnumType_Rejected,
  396. LogStatusEnumType_AcceptedCanceled
  397. } LogStatusEnumType;
  398. /* MeasurandEnumType */
  399. typedef enum {
  400. MeasurandEnumType_Current_Export,
  401. MeasurandEnumType_Current_Import,
  402. MeasurandEnumType_Current_Offered,
  403. MeasurandEnumType_Energy_Active_Export_Register,
  404. MeasurandEnumType_Energy_Active_Import_Register,
  405. MeasurandEnumType_Energy_Reactive_Export_Register,
  406. MeasurandEnumType_Energy_Reactive_Import_Register,
  407. MeasurandEnumType_Energy_Active_Export_Interval,
  408. MeasurandEnumType_Energy_Active_Import_Interval,
  409. MeasurandEnumType_Energy_Active_Net,
  410. MeasurandEnumType_Energy_Reactive_Export_Interval,
  411. MeasurandEnumType_Energy_Reactive_Import_Interval,
  412. MeasurandEnumType_Energy_Reactive_Net,
  413. MeasurandEnumType_Energy_Apparent_Net,
  414. MeasurandEnumType_Energy_Apparent_Import,
  415. MeasurandEnumType_Energy_Apparent_Export,
  416. MeasurandEnumType_Frequency,
  417. MeasurandEnumType_Power_Active_Export ,
  418. MeasurandEnumType_Power_Active_Import,
  419. MeasurandEnumType_Power_Factor,
  420. MeasurandEnumType_Power_Offered,
  421. MeasurandEnumType_Power_Reactive_Export,
  422. MeasurandEnumType_Power_Reactive_Import,
  423. MeasurandEnumType_SoC,
  424. MeasurandEnumType_Voltage
  425. } MeasurandEnumType;
  426. /* MessageFormatEnumType */
  427. typedef enum {
  428. MessageFormatEnumType_ASCII,
  429. MessageFormatEnumType_HTML,
  430. MessageFormatEnumType_URI,
  431. MessageFormatEnumType_UTF8
  432. } MessageFormatEnumType;
  433. /* MessagePriorityEnumType */
  434. typedef enum {
  435. MessagePriorityEnumType_AlwaysFront,
  436. MessagePriorityEnumType_InFront,
  437. MessagePriorityEnumType_NormalCycle
  438. } MessagePriorityEnumType;
  439. /* MessageStateEnumType */
  440. typedef enum {
  441. MessageStateEnumType_Charging,
  442. MessageStateEnumType_Faulted,
  443. MessageStateEnumType_Idle,
  444. MessageStateEnumType_Unavailable
  445. } MessageStateEnumType;
  446. /* MessageTriggerEnumType */
  447. typedef enum {
  448. MessageTriggerEnumType_BootNotification,
  449. MessageTriggerEnumType_LogStatusNotification,
  450. MessageTriggerEnumType_FirmwareStatusNotification,
  451. MessageTriggerEnumType_Heartbeat,
  452. MessageTriggerEnumType_MeterValues,
  453. MessageTriggerEnumType_SignChargingStationCertificate,
  454. MessageTriggerEnumType_SignV2GCertificate,
  455. MessageTriggerEnumType_StatusNotification,
  456. MessageTriggerEnumType_TransactionEvent,
  457. MessageTriggerEnumType_SignCombinedCertificate,
  458. MessageTriggerEnumType_PublishFirmwareStatusNotification
  459. } MessageTriggerEnumType;
  460. /* MonitorEnumType */
  461. typedef enum {
  462. MonitorEnumType_UpperThreshold,
  463. MonitorEnumType_LowerThreshold,
  464. MonitorEnumType_Delta,
  465. MonitorEnumType_Periodic,
  466. MonitorEnumType_PeriodicClockAligned
  467. } MonitorEnumType;
  468. /* MonitoringBaseEnumType */
  469. typedef enum {
  470. MonitoringBaseEnumType_All,
  471. MonitoringBaseEnumType_FactoryDefault,
  472. MonitoringBaseEnumType_HardWiredOnly
  473. } MonitoringBaseEnumType;
  474. /* MonitoringCriterionEnumType */
  475. typedef enum {
  476. MonitoringCriterionEnumType_ThresholdMonitoring,
  477. MonitoringCriterionEnumType_DeltaMonitoring,
  478. MonitoringCriterionEnumType_PeriodicMonitoring
  479. } MonitoringCriterionEnumType;
  480. /* MutabilityEnumType */
  481. typedef enum {
  482. MutabilityEnumType_ReadOnly,
  483. MutabilityEnumType_WriteOnly,
  484. MutabilityEnumType_ReadWrite
  485. } MutabilityEnumType;
  486. /* NotifyEVChargingNeedsStatusEnumType */
  487. typedef enum {
  488. NotifyEVChargingNeedsStatusEnumType_Accepted,
  489. NotifyEVChargingNeedsStatusEnumType_Rejected,
  490. NotifyEVChargingNeedsStatusEnumType_Processing
  491. } NotifyEVChargingNeedsStatusEnumType;
  492. /* OCPPInterfaceEnumType */
  493. typedef enum {
  494. OCPPInterfaceEnumType_Wired0,
  495. OCPPInterfaceEnumType_Wired1,
  496. OCPPInterfaceEnumType_Wired2,
  497. OCPPInterfaceEnumType_Wired3,
  498. OCPPInterfaceEnumType_Wireless0,
  499. OCPPInterfaceEnumType_Wireless1,
  500. OCPPInterfaceEnumType_Wireless2,
  501. OCPPInterfaceEnumType_Wireless3
  502. } OCPPInterfaceEnumType;
  503. /* OCPPTransportEnumType */
  504. typedef enum {
  505. OCPPTransportEnumType_JSON,
  506. OCPPTransportEnumType_SOAP
  507. } OCPPTransportEnumType;
  508. /* OCPPVersionEnumType */
  509. typedef enum {
  510. OCPPVersionEnumType_OCPP12,
  511. OCPPVersionEnumType_OCPP15,
  512. OCPPVersionEnumType_OCPP16,
  513. OCPPVersionEnumType_OCPP20
  514. } OCPPVersionEnumType;
  515. /* OperationalStatusEnumType */
  516. typedef enum {
  517. OperationalStatusEnumType_Inoperative,
  518. OperationalStatusEnumType_Operative
  519. } OperationalStatusEnumType;
  520. /* PhaseEnumType */
  521. typedef enum {
  522. PhaseEnumType_L1,
  523. PhaseEnumType_L2,
  524. PhaseEnumType_L3,
  525. PhaseEnumType_N,
  526. PhaseEnumType_L1_N,
  527. PhaseEnumType_L2_N,
  528. PhaseEnumType_L3_N,
  529. PhaseEnumType_L1_L2,
  530. PhaseEnumType_L2_L3,
  531. PhaseEnumType_L3_L1
  532. } PhaseEnumType;
  533. /* PublishFirmwareStatusEnumType */
  534. typedef enum {
  535. PublishFirmwareStatusEnumType_Downloaded,
  536. PublishFirmwareStatusEnumType_DownloadFailed,
  537. PublishFirmwareStatusEnumType_Downloading,
  538. PublishFirmwareStatusEnumType_DownloadScheduled,
  539. PublishFirmwareStatusEnumType_DownloadPaused,
  540. PublishFirmwareStatusEnumType_PublishFailed,
  541. PublishFirmwareStatusEnumType_Published,
  542. PublishFirmwareStatusEnumType_InvalidChecksum,
  543. PublishFirmwareStatusEnumType_ChecksumVerified
  544. } PublishFirmwareStatusEnumType;
  545. /* ReadingContextEnumType */
  546. typedef enum {
  547. ReadingContextEnumType_Interruption_Begin,
  548. ReadingContextEnumType_Interruption_End,
  549. ReadingContextEnumType_Other,
  550. ReadingContextEnumType_Sample_Clock,
  551. ReadingContextEnumType_Sample_Periodic,
  552. ReadingContextEnumType_Transaction_Begin,
  553. ReadingContextEnumType_Transaction_End,
  554. ReadingContextEnumType_Trigger
  555. } ReadingContextEnumType;
  556. /* ReasonEnumType */
  557. typedef enum {
  558. ReasonEnumType_DeAuthorized,
  559. ReasonEnumType_EmergencyStop,
  560. ReasonEnumType_EnergyLimitReached,
  561. ReasonEnumType_EVDisconnected,
  562. ReasonEnumType_GroundFault,
  563. ReasonEnumType_ImmediateReset,
  564. ReasonEnumType_Local,
  565. ReasonEnumType_LocalOutOfCredit,
  566. ReasonEnumType_MasterPass,
  567. ReasonEnumType_Other,
  568. ReasonEnumType_OvercurrentFault,
  569. ReasonEnumType_PowerLoss,
  570. ReasonEnumType_PowerQuality,
  571. ReasonEnumType_Reboot,
  572. ReasonEnumType_Remote,
  573. ReasonEnumType_SOCLimitReached,
  574. ReasonEnumType_StoppedByEV,
  575. ReasonEnumType_TimeLimitReached,
  576. ReasonEnumType_Timeout
  577. } ReasonEnumType;
  578. /* RecurrencyKindEnumType */
  579. typedef enum {
  580. RecurrencyKindEnumType_Daily,
  581. RecurrencyKindEnumType_Weekly
  582. } RecurrencyKindEnumType;
  583. /* RegistrationStatusEnumType */
  584. typedef enum {
  585. RegistrationStatusEnumType_Accepted,
  586. RegistrationStatusEnumType_Pending,
  587. RegistrationStatusEnumType_Rejected
  588. } RegistrationStatusEnumType;
  589. /* ReportBaseEnumType */
  590. typedef enum {
  591. ReportBaseEnumType_ConfigurationInventory,
  592. ReportBaseEnumType_FullInventory,
  593. ReportBaseEnumType_SummaryInventory
  594. } ReportBaseEnumType;
  595. /* RequestStartStopStatusEnumType */
  596. typedef enum {
  597. RequestStartStopStatusEnumType_Accepted,
  598. RequestStartStopStatusEnumType_Rejected
  599. } RequestStartStopStatusEnumType;
  600. /* ReservationUpdateStatusEnumType */
  601. typedef enum {
  602. ReservationUpdateStatusEnumType_Expired,
  603. ReservationUpdateStatusEnumType_Removed
  604. } ReservationUpdateStatusEnumType;
  605. /* ReserveNowStatusEnumType */
  606. typedef enum {
  607. ReserveNowStatusEnumType_Accepted,
  608. ReserveNowStatusEnumType_Faulted,
  609. ReserveNowStatusEnumType_Occupied,
  610. ReserveNowStatusEnumType_Rejected,
  611. ReserveNowStatusEnumType_Unavailable
  612. } ReserveNowStatusEnumType;
  613. /* ResetEnumType */
  614. typedef enum {
  615. ResetEnumType_Immediate,
  616. ResetEnumType_OnIdle
  617. } ResetEnumType;
  618. /* ResetStatusEnumType */
  619. typedef enum {
  620. ResetStatusEnumType_Accepted,
  621. ResetStatusEnumType_Rejected,
  622. ResetStatusEnumType_Scheduled
  623. } ResetStatusEnumType;
  624. /* SetMonitoringStatusEnumType */
  625. typedef enum {
  626. SetMonitoringStatusEnumType_Accepted,
  627. SetMonitoringStatusEnumType_UnknownComponent,
  628. SetMonitoringStatusEnumType_UnknownVariable,
  629. SetMonitoringStatusEnumType_UnsupportedMonitorType,
  630. SetMonitoringStatusEnumType_Rejected,
  631. SetMonitoringStatusEnumType_OutOfRange,
  632. SetMonitoringStatusEnumType_Duplicate
  633. } SetMonitoringStatusEnumType;
  634. /* SetNetworkProfileStatusEnumType */
  635. typedef enum {
  636. SetNetworkProfileStatusEnumType_Accepted,
  637. SetNetworkProfileStatusEnumType_Rejected,
  638. SetNetworkProfileStatusEnumType_Failed
  639. } SetNetworkProfileStatusEnumType;
  640. /* SetVariableStatusEnumType */
  641. typedef enum {
  642. SetVariableStatusEnumType_Accepted,
  643. SetVariableStatusEnumType_Rejected,
  644. SetVariableStatusEnumType_InvalidValue,
  645. SetVariableStatusEnumType_UnknownComponent,
  646. SetVariableStatusEnumType_UnknownVariable,
  647. SetVariableStatusEnumType_NotSupportedAttributeType,
  648. SetVariableStatusEnumType_OutOfRange,
  649. SetVariableStatusEnumType_RebootRequired
  650. } SetVariableStatusEnumType;
  651. /* TransactionEventEnumType */
  652. typedef enum {
  653. TransactionEventEnumType_Ended,
  654. TransactionEventEnumType_Started,
  655. TransactionEventEnumType_Updated
  656. } TransactionEventEnumType;
  657. /* TriggerMessageStatusEnumType */
  658. typedef enum {
  659. TriggerMessageStatusEnumType_Accepted,
  660. TriggerMessageStatusEnumType_Rejected,
  661. TriggerMessageStatusEnumType_NotImplemented
  662. } TriggerMessageStatusEnumType;
  663. /* TriggerReasonEnumType */
  664. typedef enum {
  665. TriggerReasonEnumType_Authorized,
  666. TriggerReasonEnumType_CablePluggedIn,
  667. TriggerReasonEnumType_ChargingRateChanged,
  668. TriggerReasonEnumType_ChargingStateChanged,
  669. TriggerReasonEnumType_Deauthorized,
  670. TriggerReasonEnumType_EnergyLimitReached,
  671. TriggerReasonEnumType_EVCommunicationLost,
  672. TriggerReasonEnumType_EVConnectTimeout,
  673. TriggerReasonEnumType_MeterValueClock,
  674. TriggerReasonEnumType_MeterValuePeriodic,
  675. TriggerReasonEnumType_TimeLimitReached,
  676. TriggerReasonEnumType_Trigger,
  677. TriggerReasonEnumType_UnlockCommand,
  678. TriggerReasonEnumType_StopAuthorized,
  679. TriggerReasonEnumType_EVDeparted,
  680. TriggerReasonEnumType_EVDetected,
  681. TriggerReasonEnumType_RemoteStop,
  682. TriggerReasonEnumType_RemoteStart,
  683. TriggerReasonEnumType_AbnormalCondition,
  684. TriggerReasonEnumType_SignedDataReceived,
  685. TriggerReasonEnumType_ResetCommand
  686. } TriggerReasonEnumType;
  687. /* UnlockStatusEnumType */
  688. typedef enum {
  689. UnlockStatusEnumType_Unlocked,
  690. UnlockStatusEnumType_UnlockFailed,
  691. UnlockStatusEnumType_OngoingAuthorizedTransaction,
  692. UnlockStatusEnumType_UnknownConnector
  693. } UnlockStatusEnumType;
  694. /* UnpublishFirmwareStatusEnumType */
  695. typedef enum {
  696. Unpublished_DownloadOngoing,
  697. Unpublished_NoFirmware,
  698. Unpublished_Unpublished
  699. } UnpublishFirmwareStatusEnumType;
  700. /* UpdateEnumType */
  701. typedef enum {
  702. UpdateEnumType_Differential,
  703. UpdateEnumType_Full
  704. } UpdateEnumType;
  705. /* UpdateFirmwareStatusEnumType */
  706. typedef enum {
  707. UpdateFirmwareStatusEnumType_Accepted,
  708. UpdateFirmwareStatusEnumType_Rejected,
  709. UpdateFirmwareStatusEnumType_AcceptedCanceled,
  710. UpdateFirmwareStatusEnumType_InvalidCertificate,
  711. UpdateFirmwareStatusEnumType_RevokedCertificate
  712. } UpdateFirmwareStatusEnumType;
  713. /* UpdateStatusEnumType */
  714. typedef enum {
  715. UpdateStatusEnumType_Accepted,
  716. UpdateStatusEnumType_Failed,
  717. UpdateStatusEnumType_VersionMismatch
  718. } UpdateStatusEnumType;
  719. /* UploadLogStatusEnumType */
  720. typedef enum {
  721. UploadLogStatusEnumType_BadMessage,
  722. UploadLogStatusEnumType_Idle,
  723. UploadLogStatusEnumType_NotSupportedOperation,
  724. UploadLogStatusEnumType_PermissionDenied,
  725. UploadLogStatusEnumType_Uploaded,
  726. UploadLogStatusEnumType_UploadFailure,
  727. UploadLogStatusEnumType_Uploading,
  728. UploadLogStatusEnumType_AcceptedCanceled
  729. } UploadLogStatusEnumType;
  730. /* VPNEnumType */
  731. typedef enum {
  732. VPNEnumType_IKEv2,
  733. VPNEnumType_IPSec,
  734. VPNEnumType_L2TP,
  735. VPNEnumType_PPTP
  736. } VPNEnumType;
  737. struct StructPeriod
  738. {
  739. int StartPeriod;
  740. float Limit;//0.1;
  741. int NumberPhases;
  742. };
  743. struct StructProfile
  744. {
  745. int Duration;
  746. int TotalPeriod;
  747. struct StructPeriod Period[10];
  748. };
  749. //===============================================
  750. // Common routine
  751. //===============================================
  752. int initialConfigurationTable(void);
  753. void StoreConfigurationTable(void);
  754. void GetStartTransactionIdTag(int gun_index);
  755. //==========================================
  756. // send request routine
  757. //==========================================
  758. int sendAuthorizeRequest(int gun_index);
  759. int sendBootNotificationRequest(void);
  760. int sendClearedChargingLimitRequest(int gun_index);
  761. int sendDataTransferRequest(int gun_index);
  762. int sendFirmwareStatusNotificationRequest(char *status);
  763. int sendGet15118EVCertificateRequest();
  764. int sendGetCertificateStatusRequest();
  765. int sendHeartbeatRequest();
  766. int sendLogStatusNotificationRequest(char *status);
  767. int sendMeterValuesRequest(int gun_index, ReadingContextEnumType dataType);
  768. int sendNotifyChargingLimitRequest(int gun_index);
  769. int sendNotifyCustomerInformationRequest();
  770. int sendNotifyDisplayMessagesRequest();
  771. int sendNotifyEVChargingNeedsRequest(int gun_index);
  772. int sendNotifyEVChargingScheduleRequest(int gun_index);
  773. int sendNotifyEventRequest();
  774. int sendNotifyMonitoringReportRequest();
  775. int sendNotifyReportRequest();
  776. int sendPublishFirmwareStatusNotificationRequest();
  777. int sendReportChargingProfilesRequest(int gun_index);
  778. int sendReservationStatusUpdateRequest(int gun_index);
  779. int sendSecurityEventNotificationRequest();
  780. int sendSignCertificateRequest();
  781. int sendStatusNotificationRequest(int gun_index);
  782. int sendTransactionEventRequest(int gun_index);
  783. //==========================================
  784. // send confirm routine
  785. //==========================================
  786. int sendCancelReservationConfirmation(char *uuid, unsigned char gun_index);
  787. int sendCertificateSignedConfirmation(char *uuid);
  788. int sendChangeAvailabilityConfirmation(char *uuid, unsigned char gun_index);
  789. int sendClearCacheConfirmation(char *uuid);
  790. int sendClearChargingProfileConfirmation(char *uuid,char *payload);
  791. int sendClearDisplayMessageConfirmation(char *uuid);
  792. int sendClearVariableMonitoringConfirmation(char *uuid, unsigned char variableQuantity);
  793. int sendCostUpdatedConfirmation(char *uuid);
  794. int sendCustomerInformationConfirmation(char *uuid);
  795. int sendDataTransferConfirmation(char *uuid, unsigned char gun_index);
  796. int sendDeleteCertificateConfirmation(char *uuid);
  797. int sendGetBaseReportConfirmation(char *uuid);
  798. int sendGetChargingProfilesConfirmation(char *uuid, unsigned char gun_index);
  799. int sendGetCompositeScheduleConfirmation(char *uuid,char *payload, int connectorIdInt,int nPeriod);
  800. int sendGetDisplayMessagesConfirmation(char *uuid);
  801. int sendGetInstalledCertificateIdsConfirmation(char *uuid, unsigned char certQuantity);
  802. int sendGetLocalListVersionConfirmation(char *uuid);
  803. int sendGetLogConfirmation(char *uuid);
  804. int sendGetMonitoringReportConfirmation(char *uuid);
  805. int sendGetReportConfirmation(char *uuid);
  806. int sendGetTransactionStatusConfirmation(char *uuid, unsigned char gun_index);
  807. int sendGetVariablesConfirmation(char *uuid, unsigned char variableQuantity);
  808. int sendInstallCertificateConfirmation(char *uuid);
  809. int sendPublishFirmwareConfirmation(char *uuid);
  810. int sendRemoteStartTransactionConfirmation(char *uuid, unsigned char gun_index);
  811. int sendRemoteStopTransactionConfirmation(char *uuid, unsigned char gun_index);
  812. int sendReserveNowConfirmation(char *uuid, unsigned char gun_index);
  813. int sendResetConfirmation(char *uuid);
  814. int sendSendLocalListConfirmation(char *uuid);
  815. int sendSetChargingProfileConfirmation(char *uuid, unsigned char gun_index);
  816. int sendSetDisplayMessagesConfirmation(char *uuid);
  817. int sendSetMonitoringBaseConfirmation(char *uuid);
  818. int sendSetMonitoringLevelConfirmation(char *uuid);
  819. int sendSetNetworkProfileConfirmation(char *uuid);
  820. int sendSetVariableMonitoringConfirmation(char *uuid, unsigned char variableQuantity);
  821. int sendSetVariableConfirmation(char *uuid, unsigned char variableQuantity);
  822. int sendTriggerMessageConfirmation(char *uuid);
  823. int sendUnlockConnectorConfirmation(char *uuid, unsigned char gun_index);
  824. int sendUnpublishFirmwareConfirmation(char *uuid);
  825. int sendUpdateFirmwareConfirmation(char *uuid);
  826. int sendUnknownConfirmation(char *uuid);
  827. //==========================================
  828. // send CallError routine
  829. //==========================================
  830. void SendCallError(char *uniqueId, char *action, char *errorCode, char *errorDescription);
  831. //==========================================
  832. // Handle server request routine Start
  833. //==========================================
  834. int handleCancelReservationRequest(char *uuid, char *payload);
  835. int handleCertificateSignedRequest(char *uuid, char *payload);
  836. int handleChangeAvailabilityRequest(char *uuid, char *payload);
  837. int handleClearCacheRequest(char *uuid, char *payload);
  838. int handleClearChargingProfileRequest(char *uuid, char *payload);
  839. int handleClearDisplayMessageRequest(char *uuid, char *payload);
  840. int handleClearVariableMonitoringRequest(char *uuid, char *payload);
  841. int handleCostUpdatedRequest(char *uuid, char *payload);
  842. int handleCustomerInformationRequest(char *uuid, char *payload);
  843. int handleDataTransferRequest(char *uuid, char *payload);
  844. int handleDeleteCertificateRequest(char *uuid, char *payload);
  845. int handleGetBaseReportRequest(char *uuid, char *payload);
  846. int handleGetChargingProfilesRequest(char *uuid, char *payload);
  847. int handleGetCompositeScheduleRequest(char *uuid, char *payload);
  848. int handleGetDisplayMessagesRequest(char *uuid, char *payload);
  849. int handleGetInstalledCertificateIdsRequest(char *uuid, char *payload);
  850. int handleGetLocalListVersionRequest(char *uuid, char *payload);
  851. int handleGetLogRequest(char *uuid, char *payload);
  852. int handleGetMonitoringReportRequest(char *uuid, char *payload);
  853. int handleGetReportRequest(char *uuid, char *payload);
  854. int handleGetTransactionStatusRequest(char *uuid, char *payload);
  855. int handleGetVariablesRequest(char *uuid, char *payload);
  856. int handleInstallCertificateRequest(char *uuid, char *payload);
  857. int handlePublishFirmwareRequest(char *uuid, char *payload);
  858. int handleRequestStartTransactionRequest(char *uuid, char *payload);
  859. int handleRequestStopTransactionRequest(char *uuid, char *payload);
  860. int handleReserveNowRequest(char *uuid, char *payload);
  861. int handleResetRequest(char *uuid, char *payload);
  862. int handleSendLocalListRequest(char *uuid, char *payload);
  863. int handleSetChargingProfileRequest(char *uuid, char *payload);
  864. int handleSetDisplayMessageRequest(char *uuid, char *payload);
  865. int handleSetMonitoringBaseRequest(char *uuid, char *payload);
  866. int handleSetMonitoringLevelRequest(char *uuid, char *payload);
  867. int handleSetNetworkProfileRequest(char *uuid, char *payload);
  868. int handleSetVariableMonitoringRequest(char *uuid, char *payload);
  869. int handleSetVariablesRequest(char *uuid, char *payload);
  870. int handleTriggerMessageRequest(char *uuid, char *payload);
  871. int handleUnlockConnectorRequest(char *uuid, char *payload);
  872. int handleUnpublishFirmwareRequest(char *uuid, char *payload);
  873. int handleUpdateFirmwareRequest(char *uuid, char *payload);
  874. int handleUnknownRequest(char *uuid, char *payload);
  875. void handleAuthorizeResponse(char *payload, int gun_index);
  876. void handleBootNotificationResponse(char *payload, int gun_index);
  877. void handleClearedChargingLimitResponse(char *payload, int gun_index);
  878. void handleDataTransferResponse(char *payload, int gun_index);
  879. void handleFirmwareStatusNotificationResponse(char *payload, int gun_index);
  880. void handleGet15118EVCertificateResponse(char *payload, int gun_index);
  881. void handleGetCertificateStatusResponse(char *payload, int gun_index);
  882. void handleHeartbeatResponse(char *payload, int gun_index);
  883. void handleLogStatusNotificationResponse(char *payload, int gun_index);
  884. void handleMeterValuesResponse(char *payload, int gun_index);
  885. void handleNotifyChargingLimitResponse(char *payload, int gun_index);
  886. void handleNotifyCustomerInformationResponse(char *payload, int gun_index);
  887. void handleNotifyDisplayMessagesResponse(char *payload, int gun_index);
  888. void handleNotifyEVChargingNeedsResponse(char *payload, int gun_index);
  889. void handleNotifyEVChargingScheduleResponse(char *payload, int gun_index);
  890. void handleNotifyEventResponse(char *payload, int gun_index);
  891. void handleNotifyMonitoringReportResponse(char *payload, int gun_index);
  892. void handleNotifyReportResponse(char *payload, int gun_index);
  893. void handlePublishFirmwareStatusNotificationResponse(char *payload, int gun_index);
  894. void handleReportChargingProfilesResponse(char *payload, int gun_index);
  895. void handleReservationStatusUpdateResponse(char *payload, int gun_index);
  896. void handleSecurityEventNotificationResponse(char *payload, int gun_index);
  897. void handleSignCertificateResponse(char *payload, int gun_index);
  898. void handleStatusNotificationResponse(char *payload, int gun_index);
  899. void handleTransactionEventResponse(char *payload, int gun_index);
  900. //==========================================
  901. // Handle Error routine
  902. //==========================================
  903. void handleError(char *id, char *errorCode, char *errorDescription,char *payload);
  904. //===============================================
  905. // Common routine
  906. //===============================================
  907. void getKeyValue(char *keyReq);
  908. int setKeyValue(char *key, char *value);
  909. int updateSetting(char *key, char *value);
  910. int httpDownLoadFile(char *location, char *path, char *filename,char *url);
  911. int ftpDownLoadFile(char *location, char *user, char *password, int port, char *path, char *filename,char *url);
  912. void *UpdateFirmwareProcess(void* data);
  913. void* GetDiagnosticsProcess(void* data);
  914. int httpUploadFile(char *location, char *path, char *filename,char *url);
  915. int ftpUploadFile(char *location, char *user, char *password, int port, char *path, char *fnamePlusPath,char *filename);
  916. int get_file_contents(const char* filename, char** outbuffer);
  917. void LWS_Send(char * str);
  918. void LWS_SendNow(char * str);
  919. extern int queue_operation(int type, char *frontUUID, char *frontData);
  920. int GetOcppServerURL();
  921. int GetOcppPath();
  922. int GetOcppPort();
  923. int GetTransactionId(int gunindex, unsigned char idTag[], uint8_t isStopTransaction);
  924. void SetTransactionIdZero(int transactionId);
  925. void GetChargingProfileRequest(int gunindex);
  926. void FillStartTransaction(int ConnectorId, unsigned char IdTag[], int MeterStart,int ReservationId,unsigned char Timestamp[]);
  927. void splitstring(char *src,const char *separator,char **dest,int *num);
  928. int GetWebSocketPingInterval(void);
  929. int GetInternetConn(void);
  930. int GetBackendConnectionTimeout(void);
  931. int isConnectorInitMode(int gun_index);
  932. void refreshProcDogTimer();
  933. int GetServerSign(void);
  934. void SetServerSign(int value);
  935. int GetBootNotificationInterval(void);
  936. void InitialSystemValue(void);
  937. void checkTempStopTransaction(int gun_index);
  938. void storeTempStopTransaction(int gun_index);
  939. #endif