Module_OcppBackend.c 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644
  1. #include <sys/time.h>
  2. #include <sys/timeb.h>
  3. #include <sys/types.h>
  4. #include <sys/stat.h>
  5. #include <sys/ioctl.h>
  6. #include <sys/socket.h>
  7. #include <sys/ipc.h>
  8. #include <sys/shm.h>
  9. #include <sys/mman.h>
  10. #include <linux/wireless.h>
  11. #include <linux/sockios.h>
  12. #include <linux/socket.h>
  13. #include <arpa/inet.h>
  14. #include <netinet/in.h>
  15. #include <unistd.h>
  16. #include <stdarg.h>
  17. #include <stdio.h>
  18. #include <stdlib.h>
  19. #include <unistd.h>
  20. #include <fcntl.h>
  21. #include <termios.h>
  22. #include <errno.h>
  23. #include <string.h>
  24. #include <time.h>
  25. #include <ctype.h>
  26. #include <ifaddrs.h>
  27. #include "libwebsockets.h"
  28. #include <lws_config.h>
  29. #include "hashmap.h"
  30. #include "SystemLogMessage.h"
  31. #include "ShareMemory.h"
  32. #include <pthread.h>
  33. #include "MessageHandler.h"
  34. #include "sqlite3.h"
  35. #ifndef SPEC_LATEST_SUPPORTED
  36. #define SPEC_LATEST_SUPPORTED 13
  37. #endif
  38. #define Debug
  39. //#define ARRAY_SIZE(A) (sizeof(A) / sizeof(A[0]))
  40. #define PASS 1
  41. #define FAIL -1
  42. typedef enum boolean { FALSE, TRUE } BOOL;
  43. struct lws *wsi_client;
  44. struct lws_context *context;
  45. static int sendbuffer = 0;
  46. extern int server_sign;
  47. extern void CheckSystemValue(void);
  48. //extern int TransactionMessageAttemptsGet(void);
  49. extern int FirstHeartBeatResponse(void);
  50. extern void OCPP_get_TableAuthlocalAllData(void);
  51. extern int TransactionMessageAttemptsGet(void);
  52. extern int TransactionMessageRetryIntervalGet(void);
  53. extern int GetOcppConnStatus(void);
  54. extern void SetOcppConnStatus(uint8_t status);
  55. extern int GetHeartBeatWithNOResponse(void);
  56. extern void SetHeartBeatWithNOResponse(void);
  57. pthread_mutex_t mutex1 = PTHREAD_MUTEX_INITIALIZER;
  58. pthread_mutex_t lock_sentData = PTHREAD_MUTEX_INITIALIZER;
  59. pthread_mutex_t receiveData = PTHREAD_MUTEX_INITIALIZER;
  60. //==========================================
  61. // Function prototype
  62. //==========================================
  63. void trim(char *s);
  64. int mystrcmp(char *p1,char *p2);
  65. void substr(char *dest, const char* src, unsigned int start, unsigned int cnt);
  66. void getSubStr(char *dest, char* src, char *split, int idx);
  67. void split(char **arr, char *str, const char *del);
  68. int strpos(char *source, char *substr, int skip);
  69. int strposs(char *source, char *substr, int idx);
  70. char *random_uuid( char buf[37] );
  71. static int OCPP16Callback(struct lws *wsi, enum lws_callback_reasons reason, void *user, void *in, size_t len);
  72. char * strchr(const char *p, int ch);
  73. void ReceivedMessage(void *in, size_t len);
  74. struct StartTime
  75. {
  76. unsigned int connect;
  77. unsigned int bootNotification;
  78. }startTime;
  79. #if 0
  80. unsigned char *SendBuffer;
  81. int SendBufLen=(1024*4);//(1024*3);
  82. #endif
  83. int SendBufLen=(1024*4);//(1024*3);
  84. unsigned char SendBuffer[1024*4]={0};
  85. static int ConnectionEstablished=0;
  86. static int TransactionMessageResend = 1;
  87. static int TransactionQueueInterval = 10;//3; // TransactionMessageAttempts
  88. static int TransactionQueueNum = 0;
  89. static int OfflineTransaction = 0;
  90. int defaultWaitingTime = 10; //10 second
  91. char OcppPath[160]={0};
  92. char OcppProtocol[10]={0},OcppHost[50]={0}, OcppTempPath[50]={0};
  93. //===============================
  94. // OCPP SentQueue TransactionId
  95. //===============================
  96. static int SentQueueTransactionId[10]={0};
  97. extern int BootNotificationInterval;
  98. //char guid[37];
  99. //map_t hashMap;
  100. //data_struct_t* mapItem; --- remove for temporally
  101. //data_struct_t mapItem[0]={0};
  102. sqlite3 *db;
  103. char *errMsg = NULL;
  104. static char *createsql = "CREATE TABLE IF NOT EXISTS log_buffer("
  105. "idx integer primary key,"
  106. "user_id text,"
  107. "cmd_sn text,"
  108. "charger_id text,"
  109. "gun_type text,"
  110. "gun_no text,"
  111. "rfid_no text,"
  112. "stime text,"
  113. "etime text,"
  114. "time_len text,"
  115. "s_soc text,"
  116. "e_soc text,"
  117. "stop_reason text,"
  118. "power text,"
  119. "meter_before text,"
  120. "meter_after text,"
  121. "charge_price text,"
  122. "reserve text,"
  123. "surplus_before text,"
  124. "surplus_after text,"
  125. "service_price text,"
  126. "is_pay text,"
  127. "charge_strategy text,"
  128. "charge_parameter text,"
  129. "vin text,"
  130. "vehicle_no text,"
  131. "start_method text,"
  132. "card_type text,"
  133. "is_upload text,"
  134. "guid text UNIQUE,"
  135. "is_buf2OK text);";
  136. #if 0
  137. static char *createsChargingRecordsql = "CREATE TABLE IF NOT EXISTS ChargingRecord("
  138. "idx integer primary key,"
  139. "gun_type text,"
  140. "connectorId text,"
  141. "idTag text,"
  142. "transactionId text,"
  143. "stime text,"
  144. "etime text,"
  145. "time_len text,"
  146. "s_soc text,"
  147. "e_soc text,"
  148. "stop_reason text,"
  149. "power text,"
  150. "meter_before text,"
  151. "meter_after text,"
  152. "reservationId text,"
  153. "guid text UNIQUE);";
  154. //"is_buf2OK text);";
  155. #endif
  156. static char *sqlOcppAuthCache = "create table if not exists ocpp_auth_cache (idx integer primary key,"
  157. "idtag text UNIQUE,"
  158. "parent_idtag text,"
  159. "expir_date text,"
  160. "status text);";
  161. static char *sqlOcppAuthLocal = "create table if not exists ocpp_auth_local (idx integer primary key,"
  162. "idtag text UNIQUE,"
  163. "parent_idtag text,"
  164. "expir_date text,"
  165. "status text,"
  166. "version text);";
  167. #if 0
  168. static char *sqlInitialOcppAuthLocal = "insert or replace into ocpp_auth_local(idtag, parent_idtag, expir_date, status, version) values('PaHdImHiOnNG','none','2099-12-31T23:59:59.999Z','Accepted','0')";
  169. #endif
  170. int DiffTimeb(struct timeb ST, struct timeb ET)
  171. {
  172. //return milli-second
  173. unsigned int StartTime,StopTime;
  174. StartTime=(unsigned int)ST.time;
  175. StopTime=(unsigned int)ET.time;
  176. return (StopTime-StartTime)*1000+ET.millitm-ST.millitm;
  177. }
  178. //=================================
  179. // Common routine
  180. //=================================
  181. void trim(char *s)
  182. {
  183. int i=0, j, k, l=0;
  184. while((s[i]==' ')||(s[i]=='\t')||(s[i]=='\n'))
  185. i++;
  186. j = strlen(s)-1;
  187. while((s[j]==' ')||(s[j]=='\t')||(s[j]=='\n'))
  188. j--;
  189. if(i==0 && j==strlen(s)-1) { }
  190. else if(i==0) s[j+1] = '\0';
  191. else {
  192. for(k=i; k<=j; k++) s[l++] = s[k];
  193. s[l] = '\0';
  194. }
  195. }
  196. int mystrcmp(char *p1,char *p2)
  197. {
  198. while(*p1==*p2)
  199. {
  200. if(*p1=='\0' || *p2=='\0')
  201. break;
  202. p1++;
  203. p2++;
  204. }
  205. if(*p1=='\0' && *p2=='\0')
  206. return(PASS);
  207. else
  208. return(FAIL);
  209. }
  210. void substr(char *dest, const char* src, unsigned int start, unsigned int cnt)
  211. {
  212. strncpy(dest, src + start, cnt);
  213. dest[cnt] = 0;
  214. }
  215. void getSubStr(char *dest, char* src, char *split, int idx)
  216. {
  217. int start = (strposs(src,",",idx)+1);
  218. int cnt = (strposs(src,",",idx+1)-2)-(strposs(src,",",idx)+1);
  219. strncpy(dest, src + start, cnt);
  220. dest[cnt] = 0;
  221. }
  222. void split(char **arr, char *str, const char *del)
  223. {
  224. char *s = strtok(str, del);
  225. while(s != NULL)
  226. {
  227. *arr++ = s;
  228. s = strtok(NULL, del);
  229. }
  230. }
  231. int strpos(char *source, char *substr, int skip)
  232. {
  233. char stack[strlen(source)];
  234. strncpy(stack, source+skip, strlen(source)-skip);
  235. char *p = strstr(stack, substr);
  236. if (p)
  237. return p - stack+skip;
  238. return -1;
  239. }
  240. int strposs(char *source, char *substr, int idx)
  241. {
  242. char stack[strlen(source)];
  243. int result=0;
  244. int count=0;
  245. while(count<=idx)
  246. {
  247. memset(stack,0,sizeof stack);
  248. strncpy(stack, source+result, strlen(source)-result);
  249. int loc = strcspn(stack, substr);
  250. if(loc>0)
  251. result += (loc+1);
  252. else
  253. result = -1;
  254. count++;
  255. }
  256. return result;
  257. }
  258. char *random_uuid( char buf[37] )
  259. {
  260. const char *c = "89ab";
  261. char *p = buf;
  262. int n;
  263. for( n = 0; n < 16; ++n )
  264. {
  265. int b = rand()%255;
  266. switch( n )
  267. {
  268. case 6:
  269. sprintf(p, "4%x", b%15 );
  270. break;
  271. case 8:
  272. sprintf(p, "%c%x", c[rand()%strlen(c)], b%15 );
  273. break;
  274. default:
  275. sprintf(p, "%02x", b);
  276. break;
  277. }
  278. p += 2;
  279. switch( n )
  280. {
  281. case 3:
  282. case 5:
  283. case 7:
  284. case 9:
  285. *p++ = '-';
  286. break;
  287. }
  288. }
  289. *p = 0;
  290. return buf;
  291. }
  292. //==========================================
  293. // Web socket tranceive routine
  294. //==========================================
  295. int SendData(struct lws *wsi)
  296. {
  297. int n;
  298. int len;
  299. char *ret;
  300. unsigned char out[LWS_SEND_BUFFER_PRE_PADDING + 4096 + LWS_SEND_BUFFER_POST_PADDING] = {0};
  301. len = strlen((char *)SendBuffer);
  302. if(len == 0)
  303. return 0;
  304. memcpy (out + LWS_SEND_BUFFER_PRE_PADDING, SendBuffer, len );
  305. ret = strstr((const char *)(out + LWS_SEND_BUFFER_PRE_PADDING), "Heartbeat");
  306. if(ret == NULL)
  307. {
  308. DEBUG_OCPPMESSAGE_INFO(" SendData= %s\n", out + LWS_SEND_BUFFER_PRE_PADDING);
  309. }
  310. n = lws_write(wsi, out + LWS_SEND_BUFFER_PRE_PADDING, len, LWS_WRITE_TEXT);
  311. memset(SendBuffer, 0, len);
  312. return n;
  313. }
  314. static int OCPP16Callback(struct lws *wsi, enum lws_callback_reasons reason, void *user, void *in, size_t len)
  315. {
  316. switch (reason)
  317. {
  318. case LWS_CALLBACK_PROTOCOL_INIT:
  319. #ifdef SystemLogMessage
  320. DEBUG_INFO("LWS_CALLBACK_PROTOCOL_INIT\n");
  321. #endif
  322. break;
  323. case LWS_CALLBACK_CLIENT_FILTER_PRE_ESTABLISH:
  324. #ifdef SystemLogMessage
  325. DEBUG_INFO("LWS_CALLBACK_CLIENT_FILTER_PRE_ESTABLISH\n");
  326. #endif
  327. char buf[64];
  328. char hash[20], key_b64[40];
  329. lws_b64_encode_string(hash, 16, key_b64, sizeof(key_b64));// Sec-WebSocket-Key
  330. DEBUG_OCPPMESSAGE_INFO("------------------Handshake: Client Request START----------------\n");
  331. lws_hdr_copy(wsi, buf, sizeof(buf) - 1, _WSI_TOKEN_CLIENT_URI);
  332. DEBUG_OCPPMESSAGE_INFO("GET %s HTTP/1.1 \n", buf);
  333. lws_hdr_copy(wsi, buf, sizeof(buf) - 1, _WSI_TOKEN_CLIENT_HOST);
  334. DEBUG_OCPPMESSAGE_INFO("Host: %s\n", buf);
  335. //lws_hdr_copy(wsi, buf, sizeof(buf) - 1, _WSI_TOKEN_CLIENT_PEER_ADDRESS);
  336. //DEBUG_OCPPMESSAGE_INFO("_WSI_TOKEN_CLIENT_PEER_ADDRESS %s\n", buf);
  337. DEBUG_OCPPMESSAGE_INFO("Upgrade: websocket\n");
  338. DEBUG_OCPPMESSAGE_INFO("Connection: Upgrade\n");
  339. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Key: %s\n", key_b64);
  340. lws_hdr_copy(wsi, buf, sizeof(buf) - 1, _WSI_TOKEN_CLIENT_SENT_PROTOCOLS);
  341. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Protocol: %s\n", buf);
  342. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Version: %d\n", SPEC_LATEST_SUPPORTED);
  343. DEBUG_OCPPMESSAGE_INFO("------------------Handshake: Client Request END----------------\n");
  344. DEBUG_OCPPMESSAGE_INFO("------------------Handshake: Server response START----------------\n");
  345. lws_hdr_copy(wsi, buf, sizeof(buf) - 1, WSI_TOKEN_HTTP);
  346. DEBUG_OCPPMESSAGE_INFO("HTTP/1.1 %s\n", buf);
  347. lws_hdr_copy(wsi, buf, sizeof(buf) - 1, WSI_TOKEN_UPGRADE);
  348. DEBUG_OCPPMESSAGE_INFO("Upgrade: %s\n", buf);
  349. lws_hdr_copy(wsi, buf, sizeof(buf) - 1, WSI_TOKEN_CONNECTION);
  350. DEBUG_OCPPMESSAGE_INFO("Connection: %s\n", buf);
  351. lws_hdr_copy(wsi, buf, sizeof(buf) - 1, WSI_TOKEN_ACCEPT);
  352. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Accept: %s\n", buf);
  353. lws_hdr_copy(wsi, buf, sizeof(buf) - 1, WSI_TOKEN_PROTOCOL);
  354. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Protocol: %s\n", buf);
  355. DEBUG_OCPPMESSAGE_INFO("------------------Handshake: Server response END----------------\n");
  356. break;
  357. case LWS_CALLBACK_FILTER_PROTOCOL_CONNECTION:
  358. #ifdef SystemLogMessage
  359. DEBUG_INFO("LWS_CALLBACK_FILTER_PROTOCOL_CONNECTION\n");
  360. #endif
  361. break;
  362. case LWS_CALLBACK_WSI_DESTROY:
  363. #ifdef SystemLogMessage
  364. DEBUG_INFO("LWS_CALLBACK_WSI_DESTROY\n");
  365. #endif
  366. server_sign = FALSE;
  367. break;
  368. case LWS_CALLBACK_LOCK_POLL:
  369. break;
  370. case LWS_CALLBACK_ADD_POLL_FD:
  371. #ifdef SystemLogMessage
  372. DEBUG_INFO("LWS_CALLBACK_ADD_POLL_FD\n");
  373. #endif
  374. break;
  375. case LWS_CALLBACK_DEL_POLL_FD:
  376. #ifdef SystemLogMessage
  377. DEBUG_INFO("LWS_CALLBACK_DEL_POLL_FD\n");
  378. #endif
  379. break;
  380. case LWS_CALLBACK_UNLOCK_POLL:
  381. break;
  382. case LWS_CALLBACK_CHANGE_MODE_POLL_FD:
  383. break;
  384. case LWS_CALLBACK_WSI_CREATE:
  385. #ifdef SystemLogMessage
  386. DEBUG_INFO("LWS_CALLBACK_WSI_CREATE\n");
  387. #endif
  388. break;
  389. case LWS_CALLBACK_GET_THREAD_ID:
  390. break;
  391. case LWS_CALLBACK_CLIENT_APPEND_HANDSHAKE_HEADER:
  392. {
  393. #ifdef SystemLogMessage
  394. DEBUG_INFO("LWS_CALLBACK_CLIENT_APPEND_HANDSHAKE_HEADER\n");
  395. #endif
  396. #if 0
  397. unsigned char **p, *end;
  398. struct lws *parent;
  399. char buf[8192];
  400. parent = lws_get_parent(wsi);
  401. if (!parent)
  402. break;
  403. p = (unsigned char **)in;
  404. end = (*p) + len;
  405. #endif
  406. }
  407. break;
  408. case LWS_CALLBACK_CLIENT_ESTABLISHED://3
  409. #ifdef SystemLogMessage
  410. DEBUG_INFO("LWS_CALLBACK_CLIENT_ESTABLISHED\n");
  411. #endif
  412. //connected
  413. ConnectionEstablished=1;
  414. break;
  415. case LWS_CALLBACK_CLIENT_CONNECTION_ERROR://1
  416. #ifdef SystemLogMessage
  417. DEBUG_ERROR("LWS_CALLBACK_CLIENT_CONNECTION_ERROR %s\n", (char *)in );
  418. #endif
  419. //disconnected
  420. ConnectionEstablished=0;
  421. char buf1[64];
  422. char hash1[20]={0}, key_b641[40]={0};
  423. lws_b64_encode_string(hash1, 16, key_b641, sizeof(key_b641));// Sec-WebSocket-Key
  424. DEBUG_OCPPMESSAGE_INFO("------------------Handshake: Client START----------------\n");
  425. lws_hdr_copy(wsi, buf, sizeof(buf) - 1, _WSI_TOKEN_CLIENT_URI);
  426. DEBUG_OCPPMESSAGE_INFO("GET %s HTTP/1.1 \n", buf);
  427. lws_hdr_copy(wsi, buf, sizeof(buf) - 1, _WSI_TOKEN_CLIENT_HOST);
  428. DEBUG_OCPPMESSAGE_INFO("Host: %s\n", buf);
  429. //lws_hdr_copy(wsi, buf, sizeof(buf) - 1, _WSI_TOKEN_CLIENT_PEER_ADDRESS);
  430. //DEBUG_OCPPMESSAGE_INFO("_WSI_TOKEN_CLIENT_PEER_ADDRESS %s\n", buf);
  431. DEBUG_OCPPMESSAGE_INFO("Upgrade: websocket\n");
  432. DEBUG_OCPPMESSAGE_INFO("Connection: Upgrade\n");
  433. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Key: %s\n", key_b641);
  434. lws_hdr_copy(wsi, buf, sizeof(buf) - 1, _WSI_TOKEN_CLIENT_SENT_PROTOCOLS);
  435. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Protocol: %s\n", buf);
  436. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Version: %d\n", SPEC_LATEST_SUPPORTED);
  437. DEBUG_OCPPMESSAGE_INFO("------------------Handshake: Client END----------------\n");
  438. DEBUG_OCPPMESSAGE_INFO("------------------Handshake: Server response START----------------\n");
  439. lws_hdr_copy(wsi, buf1, sizeof(buf1) - 1, WSI_TOKEN_HTTP);
  440. DEBUG_OCPPMESSAGE_INFO("HTTP/1.1 %s\n", buf1);
  441. lws_hdr_copy(wsi, buf1, sizeof(buf1) - 1, WSI_TOKEN_UPGRADE);
  442. DEBUG_OCPPMESSAGE_INFO("Upgrade: %s\n", buf1);
  443. lws_hdr_copy(wsi, buf1, sizeof(buf1) - 1, WSI_TOKEN_CONNECTION);
  444. DEBUG_OCPPMESSAGE_INFO("Connection: %s\n", buf1);
  445. lws_hdr_copy(wsi, buf1, sizeof(buf1) - 1, WSI_TOKEN_ACCEPT);
  446. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Accept: %s\n", buf1);
  447. lws_hdr_copy(wsi, buf1, sizeof(buf1) - 1, WSI_TOKEN_PROTOCOL);
  448. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Protocol: %s\n", buf1);
  449. DEBUG_OCPPMESSAGE_INFO("------------------Handshake: Server response END----------------\n");
  450. break;
  451. case LWS_CALLBACK_CLOSED://4
  452. #ifdef SystemLogMessage
  453. DEBUG_INFO("LWS_CALLBACK_CLOSED\n");
  454. ConnectionEstablished=0;
  455. #endif
  456. //disconnected
  457. break;
  458. case LWS_CALLBACK_CLIENT_WRITEABLE://10
  459. //if(need to send message and its relevant data already store into SendBuffer)
  460. #ifdef SystemLogMessage
  461. //DEBUG_INFO("LWS_CALLBACK_CLIENT_WRITEABLE\n");
  462. #endif
  463. SendData(wsi);
  464. break;
  465. case LWS_CALLBACK_CLIENT_RECEIVE://8
  466. ((char *)in)[len] = '\0';
  467. //Print Out Adjudgement
  468. {
  469. char *ret, *ret1;
  470. ret = strstr((const char *)in, "currentTime");
  471. ret1 = strstr((const char *)in, "interval");
  472. if(!((ret != NULL)&&(ret1 == NULL)))
  473. {
  474. DEBUG_OCPPMESSAGE_INFO("Original Receive %s\n", (char *)in);
  475. }
  476. }
  477. char tempin[1024*4]={0};
  478. int c = 0;
  479. char *loc;
  480. char sstr[600]={ 0 };
  481. //**********Receive Message**********/
  482. c = 0;
  483. loc = strstr((const char *)in, "][2,");
  484. if(loc == NULL)
  485. {
  486. loc = strstr((const char *)in, "][3,");
  487. if(loc == NULL)
  488. {
  489. loc = strstr((const char *)in, "][4,");
  490. }
  491. }
  492. memset(sstr ,0, sizeof(sstr) );
  493. if(loc != NULL)
  494. {
  495. DEBUG_INFO("there are continuous second packet []\n");
  496. while (loc[1+c] != '\0')
  497. {
  498. sstr[c] = loc[1+c];
  499. c++;
  500. }
  501. sstr[c] = '\0';
  502. strcpy(tempin, sstr);
  503. DEBUG_INFO("Final Receive: %s\n", tempin);
  504. }
  505. else
  506. {
  507. strcpy(tempin,(char *)in);
  508. }
  509. ReceivedMessage((void *)tempin, len);
  510. break;
  511. default:
  512. #ifdef Debug
  513. DEBUG_INFO("OCPP16Callback:reason=%d\n", reason);
  514. #endif
  515. break;
  516. }
  517. return 0;
  518. }
  519. static struct lws_protocols protocols[] = {
  520. {
  521. "ocpp1.6",
  522. OCPP16Callback,
  523. 10240,
  524. 10240,
  525. },
  526. {
  527. "ocpp1.6",
  528. OCPP16Callback,
  529. 10240,
  530. 10240,
  531. },
  532. {
  533. NULL, NULL, 0 /* End of list */
  534. }
  535. };
  536. int ConnectWsServer()
  537. {
  538. int result = PASS;
  539. struct lws_context_creation_info ContextInfo;
  540. struct lws_client_connect_info ConnInfo;
  541. int use_ssl=0;
  542. //lws_set_log_level(LLL_PARSER | LLL_HEADER | LLL_ERR | LLL_WARN | LLL_NOTICE | LLL_INFO | LLL_DEBUG | LLL_EXT | LLL_CLIENT | LLL_LATENCY , NULL);
  543. if(context!=NULL)
  544. lws_context_destroy(context);
  545. memset(&ContextInfo, 0, sizeof(struct lws_context_creation_info));
  546. if((GetOcppServerURL()==0) || (GetOcppPort() == 0) || (GetOcppPath()==0) )
  547. {
  548. result = FAIL;
  549. DEBUG_ERROR("OCPP URL is NULL or OCPP Port is zero or OCPP Path is NULL\n");
  550. return result;
  551. }
  552. if((strcmp(OcppProtocol,"ws")==0)&&(strlen(OcppProtocol)== 2))
  553. {
  554. printf("ws!!! \n");
  555. use_ssl=0;
  556. }
  557. else if((strcmp(OcppProtocol,"wss")==0)&&(strlen(OcppProtocol)== 3))
  558. {
  559. printf("wss!!! \n");
  560. use_ssl=1;
  561. }
  562. ContextInfo.port = CONTEXT_PORT_NO_LISTEN;
  563. ContextInfo.iface = NULL;
  564. ContextInfo.ssl_private_key_password = NULL;
  565. ContextInfo.ssl_cert_filepath = NULL;//"./ssl_key/client_cert.pem";
  566. ContextInfo.ssl_private_key_filepath = NULL;//"./ssl_key/client_key.pem";
  567. ContextInfo.ssl_ca_filepath = "./root/cacert.pem";
  568. ContextInfo.ssl_cipher_list = NULL; //use default one
  569. ContextInfo.gid = -1;
  570. ContextInfo.uid = -1;
  571. if(use_ssl)
  572. {
  573. ContextInfo.options |= LWS_SERVER_OPTION_DO_SSL_GLOBAL_INIT ;
  574. }
  575. ContextInfo.protocols = protocols;
  576. ContextInfo.timeout_secs = 9999;//30;
  577. //if(ping pong enabled)
  578. ContextInfo.ws_ping_pong_interval = 30;//0 for none, else interval in seconds
  579. context = lws_create_context(&ContextInfo);
  580. if (context == NULL)
  581. {
  582. #ifdef SystemLogMessage
  583. DEBUG_ERROR("lws_create_context NG");
  584. #endif
  585. result = FAIL;
  586. }
  587. memset(&ConnInfo,0,sizeof(struct lws_client_connect_info));
  588. // fill up below information
  589. ConnInfo.context = context;
  590. ConnInfo.address=(const char *)OcppHost;
  591. printf("\n ConnInfo.address=%s\n",ConnInfo.address);
  592. ConnInfo.port = GetOcppPort();
  593. printf("\n ConnInfo.port=%d\n",ConnInfo.port);
  594. ConnInfo.path=(const char *)OcppPath;
  595. printf("\n ConnInfo.path=%s\n",ConnInfo.path);
  596. ConnInfo.host=ConnInfo.address;//lws_canonical_hostname(context);
  597. ConnInfo.origin="origin";
  598. ConnInfo.protocol = protocols[1].name;
  599. ConnInfo.ietf_version_or_minus_one = -1;
  600. if(use_ssl)
  601. ConnInfo.ssl_connection = LCCSCF_USE_SSL | LCCSCF_ALLOW_SELFSIGNED | LCCSCF_SKIP_SERVER_CERT_HOSTNAME_CHECK;;
  602. wsi_client = lws_client_connect_via_info(&ConnInfo);
  603. if (!wsi_client)
  604. {
  605. #ifdef SystemLogMessage
  606. DEBUG_ERROR("lws_client_connect_via_info NG");
  607. #endif
  608. result = FAIL;
  609. }
  610. return result;
  611. }
  612. //void createq();
  613. int showfront(char *uuid, char *data);
  614. int addq(char *uuid, char *data) ;
  615. int delq();
  616. int sentqueue();
  617. void CheckTransactionPacket(char *uuid);
  618. int queue_operation(int type, char *frontUUID, char *frontData);
  619. int showfront(char *uuid, char *data) {
  620. FILE *fp;
  621. int result = FALSE; // 1: TRUE 0:FALSE
  622. char str[1200]={0};
  623. char sstr[50]={ 0 };//sstr[200]={ 0 };
  624. int c = 0;
  625. char *loc;
  626. char rmFileCmd[100]={0};
  627. struct stat stats;
  628. stat("../Storage/OCPP", &stats);
  629. // Check for directory existence
  630. if (S_ISDIR(stats.st_mode) == 1)
  631. {
  632. //DEBUG_INFO("\n OCPP directory exist \n");
  633. }
  634. else
  635. {
  636. //DEBUG_INFO("\n OCPP directory not exist, create dir \n");
  637. sprintf(rmFileCmd,"mkdir -p %s","../Storage/OCPP");
  638. system(rmFileCmd);
  639. }
  640. memset(rmFileCmd, 0, sizeof rmFileCmd);
  641. if((access("../Storage/OCPP/TransactionRelatedQueue",F_OK))!=-1)
  642. {
  643. //DEBUG_INFO("TransactionRelatedQueue exist.\n");
  644. }
  645. else
  646. {
  647. //DEBUG_INFO("TransactionRelatedQueue not exist\n");
  648. FILE *log = fopen("../Storage/OCPP/TransactionRelatedQueue", "w+");
  649. if(log == NULL)
  650. {
  651. DEBUG_INFO("Can't Create File TransactionRelatedQueue \n");
  652. return 0;
  653. }
  654. else
  655. {
  656. fclose(log);
  657. }
  658. }
  659. /* opening file for reading */
  660. fp = fopen("../Storage/OCPP/TransactionRelatedQueue" , "r");
  661. if(fp == NULL) {
  662. DEBUG_INFO("Error opening TransactionRelatedQueue file");
  663. return FALSE;
  664. }
  665. if(fgetc(fp)==EOF)
  666. {
  667. //DEBUG_INFO("It is end of file");
  668. fclose(fp);
  669. memset(rmFileCmd, 0, sizeof rmFileCmd);
  670. if((access("../Storage/OCPP/TransactionRelatedQueue",F_OK))!=-1)
  671. {
  672. sprintf(rmFileCmd,"rm -f %s","../Storage/OCPP/TransactionRelatedQueue");
  673. system(rmFileCmd);
  674. }
  675. result = FALSE;
  676. return result;
  677. }
  678. if( fgets (str, 1200, fp)!=NULL ) {
  679. /* writing content to stdout */
  680. //DEBUG_INFO("str=%s",str);
  681. if ((str[0] == '\n')||(strcmp(str,"")==0))
  682. {
  683. DEBUG_INFO("It is a blank line");
  684. fclose(fp);
  685. memset(rmFileCmd, 0, sizeof rmFileCmd);
  686. sprintf(rmFileCmd,"rm -f %s","../Storage/OCPP/TransactionRelatedQueue");
  687. system(rmFileCmd);
  688. result = FALSE;
  689. return result;
  690. }
  691. else
  692. {
  693. //puts(str);
  694. /*********************uuid***************/
  695. loc = strstr(str, "\"");
  696. memset(sstr ,0, sizeof(sstr) );
  697. c = 0;
  698. while (loc[1+c] != '\"')
  699. {
  700. sstr[c] = loc[1+c];
  701. c++;
  702. }
  703. sstr[c] = '\0';
  704. //DEBUG_INFO("\n uuid:%s", sstr);
  705. //DEBUG_INFO("\n data:%s", str);
  706. strcpy(uuid,sstr);
  707. strcpy(data,str);
  708. result = TRUE;
  709. }
  710. //return 1;
  711. }
  712. else
  713. {
  714. //DEBUG_INFO("queue is null\n");
  715. strcpy(uuid,"");
  716. strcpy(data,"");
  717. result = FALSE;
  718. //return 0;
  719. }
  720. fclose(fp);
  721. return result;
  722. }
  723. int addq(char *uuid, char *data) {
  724. FILE *outfile;
  725. char rmFileCmd[100]={0};
  726. struct stat stats;
  727. stat("../Storage/OCPP", &stats);
  728. //DEBUG_INFO("addq\n");
  729. // Check for directory existence
  730. if (S_ISDIR(stats.st_mode) == 1)
  731. {
  732. //DEBUG_INFO("\n OCPP directory exist \n");
  733. }
  734. else
  735. {
  736. //DEBUG_INFO("\n OCPP directory not exist, create dir \n");
  737. sprintf(rmFileCmd,"mkdir -p %s","../Storage/OCPP");
  738. system(rmFileCmd);
  739. }
  740. memset(rmFileCmd, 0, sizeof rmFileCmd);
  741. if((access("../Storage/OCPP/TransactionRelatedQueue",F_OK))!=-1)
  742. {
  743. //DEBUG_INFO("TransactionRelatedQueue exist.\n");
  744. }
  745. else
  746. {
  747. //DEBUG_INFO("TransactionRelatedQueue not exist\n");
  748. FILE *log = fopen("../Storage/OCPP/TransactionRelatedQueue", "w+");
  749. if(log == NULL)
  750. {
  751. DEBUG_INFO("Can't Create File TransactionRelatedQueue \n");
  752. return 0;
  753. }
  754. else
  755. {
  756. fclose(log);
  757. }
  758. }
  759. // open file for writing
  760. outfile = fopen ("../Storage/OCPP/TransactionRelatedQueue", "a");
  761. //DEBUG_INFO("data=%s\n",data);
  762. fputs(data, outfile);
  763. fputs("\n", outfile);
  764. fclose (outfile);
  765. TransactionQueueNum = TransactionQueueNum + 1;
  766. return 0;
  767. }
  768. int delq() {
  769. char tempfile[] = "../Storage/OCPP/temp.json";
  770. FILE *infile;
  771. FILE *outfile;
  772. int resultRename=0;
  773. char filename[60]={0};
  774. char rmFileCmd[100]={0};
  775. struct stat stats;
  776. stat("../Storage/OCPP", &stats);
  777. DEBUG_INFO("delq()\n");
  778. // Check for directory existence
  779. if (S_ISDIR(stats.st_mode) == 1)
  780. {
  781. //DEBUG_INFO("\n OCPP directory exist \n");
  782. }
  783. else
  784. {
  785. //DEBUG_INFO("\n OCPP directory not exist, create dir \n");
  786. sprintf(rmFileCmd,"mkdir -p %s","../Storage/OCPP");
  787. system(rmFileCmd);
  788. }
  789. memset(rmFileCmd, 0, sizeof rmFileCmd);
  790. if((access("../Storage/OCPP/TransactionRelatedQueue",F_OK))!=-1)
  791. {
  792. //DEBUG_INFO("TransactionRelatedQueue exist.\n");
  793. }
  794. else
  795. {
  796. //DEBUG_INFO("TransactionRelatedQueue not exist\n");
  797. FILE *log = fopen("../Storage/OCPP/TransactionRelatedQueue", "w+");
  798. if(log == NULL)
  799. {
  800. DEBUG_INFO("log is NULL\n");
  801. return 0;
  802. }
  803. else
  804. {
  805. fclose(log);
  806. }
  807. }
  808. // open file for writing
  809. strcpy(filename, "../Storage/OCPP/TransactionRelatedQueue");
  810. infile = fopen ("../Storage/OCPP/TransactionRelatedQueue", "r");
  811. outfile = fopen (tempfile, "w");
  812. /*检测到文件结束标识返回1,否则返回0。*/
  813. //DEBUG_INFO("feof(infile) =%d\n",feof(infile));
  814. int c;
  815. c = fgetc(infile);
  816. //printf("file c:%d\n",c);
  817. rewind(infile);
  818. if(c == EOF)
  819. {
  820. //DEBUG_INFO("TransactionRelatedQueue is NULL\n");
  821. fclose(infile);
  822. fclose(outfile);
  823. sprintf(rmFileCmd,"rm -f %s",tempfile);
  824. system(rmFileCmd);
  825. }
  826. else
  827. {
  828. char buf[1200]={0};
  829. int i = 0;
  830. //DEBUG_INFO("Orignal File is not NULL\n");
  831. while (fgets(buf, sizeof(buf), infile) != NULL)
  832. {
  833. //printf("Orignal File get strings \n");
  834. buf[strlen(buf) - 1] = '\0'; // eat the newline fgets() stores
  835. if(i==0)
  836. {
  837. TransactionQueueNum = TransactionQueueNum - 1;
  838. TransactionQueueInterval = 0;
  839. TransactionMessageResend = 1;
  840. }
  841. if(i != 0)
  842. fprintf(outfile,"%s\n", buf);
  843. i = i + 1;
  844. }
  845. fclose(infile);
  846. fclose(outfile);
  847. sprintf(rmFileCmd,"rm -f %s",filename);
  848. system(rmFileCmd);
  849. resultRename = rename(tempfile, filename);
  850. if(resultRename == 0)
  851. {
  852. //DEBUG_INFO("TransactionRelatedQueue file renamed successfully");
  853. }
  854. else
  855. {
  856. //DEBUG_INFO("Error: unable to rename the TransactionRelatedQueue file");
  857. }
  858. }
  859. return 0;
  860. }
  861. int showqueue() {
  862. char rmFileCmd[100]={0};
  863. struct stat stats;
  864. stat("../Storage/OCPP", &stats);
  865. // Check for directory existence
  866. if (S_ISDIR(stats.st_mode) == 1)
  867. {
  868. //DEBUG_INFO("\n OCPP directory exist \n");
  869. }
  870. else
  871. {
  872. //DEBUG_INFO("\n OCPP directory not exist, create dir \n");
  873. sprintf(rmFileCmd,"mkdir -p %s","../Storage/OCPP");
  874. system(rmFileCmd);
  875. }
  876. memset(rmFileCmd, 0, sizeof rmFileCmd);
  877. if((access("../Storage/OCPP/TransactionRelatedQueue",F_OK))!=-1)
  878. {
  879. //DEBUG_INFO("TransactionRelatedQueue exist.\n");
  880. }
  881. else
  882. {
  883. //DEBUG_INFO("TransactionRelatedQueue not exist\n");
  884. FILE *log = fopen("../Storage/OCPP/TransactionRelatedQueue", "w+");
  885. if(log == NULL)
  886. {
  887. DEBUG_INFO("log is NULL\n");
  888. return 0;
  889. }
  890. else
  891. {
  892. fclose(log);
  893. }
  894. }
  895. FILE *fp = fopen("../Storage/OCPP/TransactionRelatedQueue", "r");
  896. char line[1200]={0};
  897. // check if file exist (and you can open it) or not
  898. if (fp == NULL) {
  899. DEBUG_INFO("can open file TransactionRelatedQueue!");
  900. return 0;
  901. }
  902. while(fgets(line, sizeof line, fp) != NULL) {
  903. DEBUG_INFO("%s\n", line);
  904. }
  905. fclose(fp);
  906. return 0;
  907. }
  908. int sentqueue(){
  909. FILE *fp;
  910. int result = FALSE; // 1: TRUE 0:FALSE
  911. int temptransactionId = 0;
  912. int tempconnectorId = 0;
  913. int gunIndex = 0;
  914. char guid[37]={0};
  915. char tempdata[65]={0};
  916. char key_value[65]={0};
  917. int IsStopTransaction = FALSE;
  918. char str[1200]={0};
  919. char strcomposite[1200]={0};
  920. char rmFileCmd[100]={0};
  921. struct stat stats;
  922. char sstr[28]={ 0 };
  923. int c = 0;
  924. char *loc;
  925. DEBUG_INFO("sentqueue\n");
  926. stat("../Storage/OCPP", &stats);
  927. // Check for directory existence
  928. if (S_ISDIR(stats.st_mode) == 1)
  929. {
  930. //DEBUG_INFO("\n OCPP directory exist \n");
  931. }
  932. else
  933. {
  934. //DEBUG_INFO("\n OCPP directory not exist, create dir \n");
  935. sprintf(rmFileCmd,"mkdir -p %s","../Storage/OCPP");
  936. system(rmFileCmd);
  937. }
  938. memset(rmFileCmd, 0, sizeof rmFileCmd);
  939. /* opening file for reading */
  940. fp = fopen("../Storage/OCPP/TransactionRelatedQueue" , "r");
  941. if(fp == NULL) {
  942. DEBUG_INFO("Error opening file");
  943. return FALSE;
  944. }
  945. if( fgets (str, 1200, fp)!=NULL ) {
  946. /* writing content to stdout */
  947. //*********************StopTransaction***************************/
  948. loc = strstr(str, "StopTransaction");
  949. c = 0;
  950. memset(sstr ,0, sizeof(sstr) );
  951. if(loc != NULL)
  952. {
  953. IsStopTransaction = TRUE;
  954. }
  955. //*********************connectorId***************************/
  956. loc = strstr(str, "connectorId");
  957. c = 0;
  958. memset(sstr ,0, sizeof(sstr) );
  959. if(loc != NULL)
  960. {
  961. while (loc[strlen("connectorId")+2+c] != ',')
  962. {
  963. sstr[c] = loc[strlen("connectorId")+2+c];
  964. c++;
  965. }
  966. sstr[c] = '\0';
  967. tempconnectorId = atoi(sstr);
  968. //DEBUG_INFO("\n tempconnectorId:%d\n", tempconnectorId);
  969. }
  970. //*********************StartTransaction***************************/
  971. loc = strstr(str, "StartTransaction");
  972. c = 0;
  973. memset(sstr ,0, sizeof(sstr) );
  974. if(loc != NULL)
  975. {
  976. //DEBUG_INFO("\n sent queue StartTransaction\n");
  977. if(tempconnectorId > 0)
  978. {
  979. sprintf(tempdata, "StartTransaction,%d", (tempconnectorId-1));
  980. }
  981. else if(tempconnectorId == 0)
  982. {
  983. sprintf(tempdata, "StartTransaction,%d", 0);
  984. }
  985. memset(sstr ,0, sizeof(sstr) );
  986. //DEBUG_INFO("\n 0-0. sent queue str=%s\n",str);
  987. c=0;
  988. while (str[4+c] != '\"')
  989. {
  990. sstr[c] = str[4+c];
  991. c++;
  992. }
  993. sstr[c] = '\0';
  994. strcpy(guid, sstr);
  995. //DEBUG_INFO("\n 0. sent queue sstr=%s\n",sstr);
  996. if(hashmap_operation(1, guid, key_value) == TRUE)
  997. {
  998. //DEBUG_INFO("\n 1. sent queue guid=%s\n",guid);
  999. }
  1000. else
  1001. {
  1002. hashmap_operation(0, guid, tempdata);
  1003. //DEBUG_INFO("\n 2. sent queue guid=%s\n",guid);
  1004. }
  1005. }
  1006. //****************transactionId********************/
  1007. c=0;
  1008. loc = strstr(str, "transactionId");
  1009. memset(sstr ,0, sizeof(sstr) );
  1010. if(loc != NULL)
  1011. {
  1012. while ((loc[strlen("transactionId")+2+c] != '}') && (loc[strlen("transactionId")+2+c] != ','))
  1013. {
  1014. sstr[c] = loc[strlen("transactionId")+2+c];
  1015. c++;
  1016. }
  1017. sstr[c] = '\0';
  1018. temptransactionId = atoi(sstr);
  1019. //puts(str);
  1020. //DEBUG_INFO("\n uuid:%s", "");
  1021. //DEBUG_INFO("\n data:%s", str);
  1022. if(IsStopTransaction == TRUE)
  1023. {
  1024. for(int i=0; i <10; i++)
  1025. {
  1026. //DEBUG_INFO("\n StopTransaction i:%d\n", i);
  1027. //DEBUG_INFO("\n StopTransaction SentQueueTransactionId[i]:%d\n", SentQueueTransactionId[i]);
  1028. //DEBUG_INFO("\n sStopTransaction temptransactionId:%d\n", temptransactionId);
  1029. if(SentQueueTransactionId[i] == temptransactionId)
  1030. {
  1031. tempconnectorId = i;
  1032. gunIndex = i;
  1033. break;
  1034. }
  1035. }
  1036. }
  1037. else
  1038. {
  1039. if(tempconnectorId > 0)
  1040. {
  1041. SentQueueTransactionId[tempconnectorId-1] = temptransactionId;
  1042. gunIndex = tempconnectorId-1;
  1043. }
  1044. }
  1045. //DEBUG_INFO("\n gunIndex=%d \n",gunIndex);
  1046. //DEBUG_INFO("\n temptransactionId=%d \n",temptransactionId);
  1047. //DEBUG_INFO("\n GetTransactionId(gunIndex)=%d \n",GetTransactionId(gunIndex));
  1048. if((GetTransactionId(gunIndex) != 0)&&(temptransactionId != GetTransactionId(gunIndex)))
  1049. {
  1050. strncpy(strcomposite,str, (loc-str)+2+strlen("transactionId"));
  1051. sprintf(strcomposite+((loc-str)+2+strlen("transactionId")),"%d",GetTransactionId(gunIndex));
  1052. strcat(strcomposite, loc+strlen("transactionId")+2+c);
  1053. LWS_Send(strcomposite);
  1054. }
  1055. else
  1056. {
  1057. LWS_Send(str);
  1058. }
  1059. if((IsStopTransaction == TRUE)&&(GetTransactionId(gunIndex) != 0))
  1060. {
  1061. SetTransactionIdZero(gunIndex);
  1062. }
  1063. }
  1064. else
  1065. {
  1066. LWS_Send(str);
  1067. }
  1068. result = TRUE;
  1069. }
  1070. else
  1071. {
  1072. result = FALSE;
  1073. }
  1074. fclose(fp);
  1075. return result;
  1076. }
  1077. //
  1078. void* processTransactionQueue(void* data) {
  1079. char frontUUID[100] ={0};
  1080. char frontData[1200/*1024*4*/] ={0};
  1081. int queueNotEmpty = 0;
  1082. while(1)
  1083. {
  1084. if(FirstHeartBeatResponse() == 1)
  1085. {
  1086. memset(frontUUID, 0, sizeof(frontUUID));
  1087. memset(frontData, 0, sizeof(frontData));
  1088. queueNotEmpty = 0;
  1089. queueNotEmpty = queue_operation(1,frontUUID, frontData);//showfront(frontUUID, frontData); ---> remove temporally
  1090. if((queueNotEmpty == 1) && (GetOcppConnStatus() == 1))
  1091. {
  1092. if((OfflineTransaction == 1) && (TransactionQueueNum != 0))
  1093. {
  1094. TransactionQueueInterval = 10;//2;
  1095. sleep(TransactionQueueInterval);
  1096. sendbuffer = 1;
  1097. }
  1098. else
  1099. {
  1100. OfflineTransaction = 0;
  1101. if(TransactionMessageResend < TransactionMessageAttemptsGet()) //
  1102. {
  1103. //DEBUG_INFO("TransactionMessageResend=%d\n",TransactionMessageResend);
  1104. //DEBUG_INFO("TransactionMessageAttemptsGet=%d\n",TransactionMessageAttemptsGet());
  1105. //DEBUG_INFO("processTransactionQueue queue is not empty!\n");
  1106. TransactionQueueInterval= TransactionMessageRetryIntervalGet()* TransactionMessageResend;
  1107. //DEBUG_INFO("TransactionQueueInterval =%d\n",TransactionQueueInterval);
  1108. sendbuffer = 1;
  1109. TransactionMessageResend = TransactionMessageResend + 1;
  1110. //DEBUG_INFO("After ADD,TransactionMessageResend=%d\n",TransactionMessageResend);
  1111. sleep(TransactionQueueInterval);
  1112. }
  1113. else
  1114. {
  1115. queue_operation(2,"",""); //// delete item
  1116. TransactionQueueInterval = 0;
  1117. TransactionMessageResend = 1;
  1118. sleep(TransactionQueueInterval);
  1119. }
  1120. }
  1121. }
  1122. else if((queueNotEmpty == 1) && (GetOcppConnStatus() == 0))
  1123. {
  1124. OfflineTransaction = 1;
  1125. }
  1126. else
  1127. {
  1128. TransactionQueueInterval = 0;//10;
  1129. sleep(TransactionQueueInterval);
  1130. }
  1131. }
  1132. usleep(5000);
  1133. }
  1134. pthread_exit(NULL); //
  1135. return 0;
  1136. }
  1137. void CheckTransactionPacket(char *uuid)
  1138. {
  1139. char frontUUID[100]={0};
  1140. char frontData[1200]={0};
  1141. int queueNotEmpty = 0;
  1142. int cmpResult = 0;
  1143. //queue_operation(0,"","");//showqueue(); ---> remove temporally
  1144. queueNotEmpty = queue_operation(1,frontUUID, frontData);//showfront(frontUUID, frontData); ---> remove temporally
  1145. if(queueNotEmpty == 1)
  1146. {
  1147. cmpResult = strcmp(frontUUID, uuid);
  1148. //cmpResult = strcmp(frontData, uuid);
  1149. if (cmpResult == 0)
  1150. {
  1151. DEBUG_INFO("TransactionPacket Compare All right!\n");
  1152. //DEBUG_INFO("frontUUID=%s\n",frontUUID);
  1153. //DEBUG_INFO("uuid=%s\n",uuid);
  1154. queue_operation(2,"","");//delq(); ---> remove temporally
  1155. TransactionQueueInterval = 0;
  1156. TransactionMessageResend = 1;
  1157. }
  1158. }
  1159. }
  1160. /* type: 0 (showqueue ); type: 1(showfront); type: 2(delq) type: 3 (sentqueue) type: 4 (addq) type: 5(store queue to /Storage/OCPP/ )*/
  1161. int queue_operation(int type, char *frontUUID, char *frontData)
  1162. {
  1163. pthread_mutex_unlock(&lock_sentData);
  1164. pthread_mutex_lock(&lock_sentData);
  1165. int result=0;
  1166. if(type == 0) // show items in queue
  1167. result = showqueue();
  1168. else if(type == 1) // show first item
  1169. result = showfront(frontUUID, frontData);
  1170. else if(type == 2) // delete item
  1171. result = delq();
  1172. else if(type == 3) // sent items in queue
  1173. result = sentqueue();
  1174. else if(type == 4) // add items to the queue
  1175. result = addq(frontUUID, frontData);
  1176. pthread_mutex_unlock(&lock_sentData);
  1177. return result;
  1178. }
  1179. char * strchr(const char *p, int ch)
  1180. {
  1181. char c;
  1182. c = ch;
  1183. for (;; ++p) {
  1184. if (*p == c)
  1185. return ((char *)p);
  1186. if (*p == '\0')
  1187. return (NULL);
  1188. }
  1189. /* NOTREACHED */
  1190. return NULL;
  1191. }
  1192. int removeMessageSentFile(void)
  1193. {
  1194. char rmFileCmd[100]={0};
  1195. struct stat stats;
  1196. //
  1197. stat("../Storage/OCPP", &stats);
  1198. // Check for directory existence
  1199. if (S_ISDIR(stats.st_mode) == 1)
  1200. {
  1201. //DEBUG_INFO("\n OCPP directory exist \n");
  1202. }
  1203. else
  1204. {
  1205. DEBUG_INFO("\n directory not exist, create dir \n");
  1206. sprintf(rmFileCmd,"mkdir -p %s","../Storage/OCPP");
  1207. system(rmFileCmd);
  1208. }
  1209. memset(rmFileCmd, 0, sizeof rmFileCmd);
  1210. if((access("../Storage/OCPP/MessageSent",F_OK))!=-1)
  1211. {
  1212. DEBUG_INFO("MessageSent file exist.\n");
  1213. sprintf(rmFileCmd,"rm -f %s","../Storage/OCPP/MessageSent");
  1214. system(rmFileCmd);
  1215. }
  1216. memset(rmFileCmd, 0, sizeof rmFileCmd);
  1217. return 0;
  1218. }
  1219. void work(char s[]) //删除首尾空格
  1220. {int i,j;
  1221. for(i=0;s[i]==' ';i++); //找到开头第一个非空格
  1222. for(j=0;s[i];)s[j++]=s[i++]; //删除开头空格
  1223. for(i--;s[i]==' ';i--)s[i]='\0'; //删除末尾空格
  1224. }
  1225. #define SystemLogMessage
  1226. //================================================
  1227. // Main process
  1228. //================================================
  1229. int main(void)
  1230. {
  1231. char rmFileCmd[100]={0};
  1232. struct stat stats;
  1233. pthread_t t;
  1234. #ifdef SystemLogMessage
  1235. DEBUG_INFO("Initialization...\n");
  1236. #endif
  1237. if(ProcessShareMemory()== FAIL)
  1238. {
  1239. return FAIL;
  1240. }
  1241. //Create OCPP dir
  1242. stat("../Storage/OCPP", &stats);
  1243. // Check for directory existence
  1244. if (S_ISDIR(stats.st_mode) == 1)
  1245. {
  1246. //DEBUG_INFO("\n OCPP directory exist \n");
  1247. }
  1248. else
  1249. {
  1250. DEBUG_INFO("\n OCPP directory not exist, create dir \n");
  1251. sprintf(rmFileCmd,"mkdir -p %s","../Storage/OCPP");
  1252. system(rmFileCmd);
  1253. }
  1254. memset(rmFileCmd, 0, sizeof rmFileCmd);
  1255. //Create Process: Resend Transaction
  1256. pthread_create(&t, NULL, processTransactionQueue, NULL); //
  1257. sqlite3_config(SQLITE_CONFIG_URI,1);
  1258. if(sqlite3_open("file:/../Storage/OCPP/charger.db", &db))
  1259. {
  1260. #ifdef Debug
  1261. DEBUG_INFO( "Can't open database: %s\n", sqlite3_errmsg(db));
  1262. #endif
  1263. sqlite3_close( db );
  1264. exit(0);
  1265. }
  1266. else
  1267. {
  1268. #ifdef Debug
  1269. DEBUG_INFO( "Opened database successfully\n");
  1270. #endif
  1271. }
  1272. //Create Table log buffer
  1273. int rc =sqlite3_exec(db, createsql, 0, 0, &errMsg);
  1274. if (SQLITE_OK != rc)
  1275. {
  1276. #ifdef Debug
  1277. DEBUG_INFO( "Create log buffer table error message: %s\n", errMsg);
  1278. #endif
  1279. return 0;
  1280. }
  1281. else
  1282. {
  1283. #ifdef Debug
  1284. DEBUG_INFO( "Opened log buffer table successfully\n");
  1285. #endif
  1286. }
  1287. // Create Table OcppAuthCache
  1288. rc =sqlite3_exec(db, sqlOcppAuthCache, 0, 0, &errMsg);
  1289. if (SQLITE_OK != rc)
  1290. {
  1291. #ifdef Debug
  1292. DEBUG_INFO( "Create OcppAuthCache error message: %s\n", errMsg);
  1293. #endif
  1294. return 0;
  1295. }
  1296. else
  1297. {
  1298. #ifdef Debug
  1299. DEBUG_INFO( "Opened OcppAuthCache table successfully\n");
  1300. #endif
  1301. }
  1302. // Create Table OcppAuthLocal
  1303. rc =sqlite3_exec(db, sqlOcppAuthLocal, 0, 0, &errMsg);
  1304. if (SQLITE_OK != rc)
  1305. {
  1306. #ifdef Debug
  1307. DEBUG_INFO( "Create Table OcppAuthLocal error %s\n",errMsg);
  1308. #endif
  1309. return 0;
  1310. }
  1311. else
  1312. {
  1313. #ifdef Debug
  1314. DEBUG_INFO( "Opened OcppAuthLocal table successfully\n");
  1315. #endif
  1316. }
  1317. initialConfigurationTable();
  1318. removeMessageSentFile();
  1319. OCPP_get_TableAuthlocalAllData();
  1320. for(;;)
  1321. {
  1322. while(ConnectionEstablished==0)
  1323. {
  1324. SetOcppConnStatus(FALSE);
  1325. if((time((time_t*)NULL)-startTime.connect)>=60)
  1326. {
  1327. #ifdef Debug
  1328. DEBUG_INFO("Execute ConnectWsServer\n");
  1329. #endif
  1330. ConnectWsServer();
  1331. startTime.connect=time((time_t*)NULL);
  1332. }
  1333. // Check System Value, process offline Transaction
  1334. CheckSystemValue();
  1335. lws_service(context, 10000);//timeout_ms
  1336. }
  1337. if(( (BootNotificationInterval != 0 && ((time((time_t*)NULL)-startTime.bootNotification)>=BootNotificationInterval) ) || ((time((time_t*)NULL)-startTime.bootNotification)>=defaultWaitingTime) ) && ((server_sign == FALSE)/*|| (server_pending == TRUE)*/))
  1338. {
  1339. //hashmapForMessageNew();
  1340. sendBootNotificationRequest();
  1341. startTime.bootNotification=time((time_t*)NULL);
  1342. }
  1343. if(server_sign == TRUE)
  1344. {
  1345. if(sendbuffer == 1)
  1346. {
  1347. queue_operation(3, "", "");//sentqueue()
  1348. sendbuffer = 0;
  1349. }
  1350. SetOcppConnStatus(TRUE);
  1351. // Check System Value
  1352. CheckSystemValue();
  1353. if(GetHeartBeatWithNOResponse() >= 3)
  1354. {
  1355. lws_context_destroy(context);
  1356. ConnectionEstablished=0;
  1357. context = NULL;
  1358. SetHeartBeatWithNOResponse();
  1359. }
  1360. }
  1361. lws_service(context, 100);//timeout_ms
  1362. }
  1363. pthread_join(t, NULL); //
  1364. //hashmapForMessageFree();
  1365. return FAIL;
  1366. }