Module_OcppBackend.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. /*
  2. * Sample_OCPP_Task.h
  3. *
  4. * Created on: 2020¦~5¤ë26¤é
  5. * Author: foluswen
  6. */
  7. #ifndef HEADER_MODULE_OCPPBACKEND_H_
  8. #define HEADER_MODULE_OCPPBACKEND_H_
  9. #include <sys/time.h>
  10. #include <sys/timeb.h>
  11. #include <sys/types.h>
  12. #include <sys/stat.h>
  13. #include <sys/ioctl.h>
  14. #include <sys/socket.h>
  15. #include <sys/ipc.h>
  16. #include <sys/shm.h>
  17. #include <sys/mman.h>
  18. #include <linux/wireless.h>
  19. #include <linux/sockios.h>
  20. #include <linux/socket.h>
  21. #include <arpa/inet.h>
  22. #include <netinet/in.h>
  23. #include <unistd.h>
  24. #include <stdarg.h>
  25. #include <stdio.h>
  26. #include <stdlib.h>
  27. #include <unistd.h>
  28. #include <fcntl.h>
  29. #include <termios.h>
  30. #include <errno.h>
  31. #include <string.h>
  32. #include <time.h>
  33. #include <ctype.h>
  34. #include <ifaddrs.h>
  35. #include <pthread.h>
  36. #include <mcheck.h>
  37. #include <uuid/uuid.h>
  38. #include <libwebsockets.h>
  39. #include <lws_config.h>
  40. #include <sqlite3.h>
  41. #include <json-c/json.h>
  42. #include "hashmap.h"
  43. #include "SystemLogMessage.h"
  44. #include "MessageHandler.h"
  45. #define is_error(ptr) ((unsigned long)ptr > (unsigned long)-4000L)
  46. #define PASS 1
  47. #define FAIL -1
  48. #define YES 1
  49. #define NO 0
  50. #ifndef SPEC_LATEST_SUPPORTED
  51. #define SPEC_LATEST_SUPPORTED 13
  52. #endif
  53. // Hash map operation constant
  54. #define HASH_OP_ADD 0
  55. #define HASH_OP_GET 1
  56. #define HASH_OP_REMOVE 2
  57. // OCPP Message type constant
  58. #define MESSAGE_TYPE_CALL 2
  59. #define MESSAGE_TYPE_CALLRESULT 3
  60. #define MESSAGE_TYPE_CALLERROR 4
  61. // Queue operation constant
  62. #define QUEUE_OPERATION_SHOWQUEUE 0
  63. #define QUEUE_OPERATION_SHOWFRONT 1
  64. #define QUEUE_OPERATION_DEL 2
  65. #define QUEUE_OPERATION_SENT 3
  66. #define QUEUE_OPERATION_ADD 4
  67. #define QUEUE_OPERATION_STORE 5
  68. #define QUEUE_MESSAGE_LENGTH 3584
  69. extern void CheckSystemValue(void);
  70. extern int FirstHeartBeatResponse(void);
  71. extern void OCPP_get_TableAuthlocalAllData(void);
  72. extern int TransactionMessageAttemptsGet(void);
  73. extern int TransactionMessageRetryIntervalGet(void);
  74. extern int GetOcppConnStatus(void);
  75. extern void SetOcppConnStatus(uint8_t status);
  76. extern int GetHeartBeatWithNOResponse(void);
  77. extern void SetHeartBeatWithNOResponse(void);
  78. extern uint8_t GetOcppSecurityProfile();
  79. extern void GetOcppChargerBoxId(uint8_t *data);
  80. extern void GetOcppSecurityPassword(uint8_t *data);
  81. extern int InitShareMemory();
  82. extern int ProcessShareMemory();
  83. extern void CheckSystemValue(void);
  84. extern int isQueueOverSize();
  85. extern int showfront(char *uuid, char *data);
  86. extern int addq(char *uuid, char *data) ;
  87. extern int delq();
  88. extern int sentqueue();
  89. extern void CheckTransactionPacket(char *uuid);
  90. extern int queue_operation(int type, char *frontUUID, char *frontData);
  91. extern char *random_uuid( char buf[37]);
  92. extern void work(char s[]);
  93. extern char* strchr(const char *p, int ch);
  94. extern void splitstring(char *src, const char *separator, char **dest,int *num);
  95. extern char* stringtrim( char * s );
  96. extern char* stringtrimspace( char * s );
  97. extern char * strtrim( char * s );
  98. extern struct lws *wsi_client;
  99. extern struct lws_context *context;
  100. extern unsigned char SendBuffer[4096];
  101. extern int SendBufLen;
  102. extern char OcppPath[160];
  103. extern char OcppProtocol[10];
  104. extern char OcppHost[50];
  105. extern char OcppTempPath[50];
  106. extern int OcppPort;
  107. extern unsigned char StartTransactionIdTagTemp[20];
  108. extern pthread_mutex_t lock_send;
  109. extern uint32_t startTimeDog;
  110. extern uint32_t startTimeQueue;
  111. extern uint8_t isWebsocketSendable;
  112. extern uint8_t counterLwsRestart;
  113. extern uint8_t counterQueueSent;
  114. #endif /* HEADER_MODULE_OCPPBACKEND_H_ */