Module_OcppBackend20.c 32 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207
  1. #include "Module_OcppBackend20.h"
  2. typedef enum boolean { FALSE, TRUE } BOOL;
  3. struct lws *wsi_client;
  4. struct lws_context *context;
  5. static int req_SendQueue = 0;
  6. pthread_t tid_connectServer;
  7. pthread_t tid_ProcQueue;
  8. pthread_t tid_Watchdog;
  9. struct StartTime
  10. {
  11. unsigned int connect;
  12. unsigned int bootNotification;
  13. }startTime;
  14. //==========================================
  15. // Function prototype
  16. //==========================================
  17. void ReceivedMessage(void *in, size_t len);
  18. int SendBufLen=0;//(1024*4);//(1024*3);
  19. unsigned char SendBuffer[1024*20]={0};
  20. static int ConnectionEstablished=0;
  21. static int TransactionMessageResend = 1; // the number of retry to submit a transaction-related message when the Central System fails to process it.
  22. static int TransactionQueueNum = 0;
  23. static int OfflineTransactionQueueNum = 0; // Number of offline transactions
  24. static int OfflineTransaction = 0;
  25. static int IsUsing = FALSE;
  26. char OcppPath[160]={0};
  27. char OcppProtocol[10]={0},OcppHost[50]={0}, OcppTempPath[50]={0};
  28. int OcppPort=0;
  29. unsigned char StartTransactionIdTagTemp[20]={0};
  30. uint32_t startTimeDog;
  31. uint32_t startTimeQueue;
  32. uint8_t isWebsocketSendable = 1;
  33. uint8_t counterLwsRestart = 0;;
  34. uint8_t counterQueueSent = 0;
  35. //=================================
  36. // Common routine
  37. //=================================
  38. int GetTransactionQueueNum(void)
  39. {
  40. return TransactionQueueNum;
  41. }
  42. //==========================================
  43. // Web socket tranceive routine
  44. //==========================================
  45. int SendData(struct lws *wsi)
  46. {
  47. int n;
  48. int len;
  49. unsigned char out[LWS_SEND_BUFFER_PRE_PADDING + (1024*20) + LWS_SEND_BUFFER_POST_PADDING] = {0};
  50. // Only disable isWebsocketSendable operation initiated by charger
  51. if((strstr((char*)SendBuffer, "\"Authorize\"") != NULL)
  52. || (strstr((char*)SendBuffer, "\"BootNotification\"") != NULL)
  53. || (strstr((char*)SendBuffer, "\"DataTransfer\"") != NULL)
  54. || (strstr((char*)SendBuffer, "\"DiagnosticsStatusNotification\"") != NULL)
  55. || (strstr((char*)SendBuffer, "\"FirmwareStatusNotification\"") != NULL)
  56. || (strstr((char*)SendBuffer, "\"Heartbeat\"") != NULL)
  57. || (strstr((char*)SendBuffer, "\"MeterValues\"") != NULL)
  58. || (strstr((char*)SendBuffer, "\"StartTransaction\"") != NULL)
  59. || (strstr((char*)SendBuffer, "\"StatusNotification\"") != NULL)
  60. || (strstr((char*)SendBuffer, "\"StopTransaction\"") != NULL))
  61. {
  62. isWebsocketSendable = 0;
  63. }
  64. len = strlen((char *)SendBuffer);
  65. if(len == 0)
  66. return 0;
  67. memcpy (out + LWS_SEND_BUFFER_PRE_PADDING, SendBuffer, len );
  68. DEBUG_OCPPMESSAGE_INFO("===========> %s\n", out + LWS_SEND_BUFFER_PRE_PADDING);
  69. n = lws_write(wsi, out + LWS_SEND_BUFFER_PRE_PADDING, len, LWS_WRITE_TEXT);
  70. memset(SendBuffer, 0, len);
  71. SendBufLen = 0;
  72. return n;
  73. }
  74. static int OCPP20Callback(struct lws *wsi, enum lws_callback_reasons reason, void *user, void *in, size_t len)
  75. {
  76. char buf[256]={0}, hash[20]={0}, key_b64[40]={0}, tempin[65536]={0}, sstr[65536]={0};
  77. uint8_t auth_b64[256]={0}, boxId[128]={0}, password[64]={0};
  78. int c = 0;
  79. char *loc;
  80. switch (reason)
  81. {
  82. case LWS_CALLBACK_PROTOCOL_INIT:
  83. DEBUG_INFO("LWS_CALLBACK_PROTOCOL_INIT\n");
  84. break;
  85. case LWS_CALLBACK_CLIENT_FILTER_PRE_ESTABLISH:
  86. DEBUG_INFO("LWS_CALLBACK_CLIENT_FILTER_PRE_ESTABLISH\n");
  87. DEBUG_OCPPMESSAGE_INFO("----- Handshake: Client Request START -----\n");
  88. lws_hdr_copy(wsi, buf, ARRAY_SIZE(buf) - 1, _WSI_TOKEN_CLIENT_URI);
  89. DEBUG_OCPPMESSAGE_INFO("GET %s HTTP/1.1 \n", buf);
  90. lws_hdr_copy(wsi, buf, ARRAY_SIZE(buf) - 1, _WSI_TOKEN_CLIENT_HOST);
  91. DEBUG_OCPPMESSAGE_INFO("Host: %s\n", buf);
  92. DEBUG_OCPPMESSAGE_INFO("Upgrade: websocket\n");
  93. DEBUG_OCPPMESSAGE_INFO("Connection: Upgrade\n");
  94. lws_b64_encode_string(hash, 16, key_b64, ARRAY_SIZE(key_b64));// Sec-WebSocket-Key
  95. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Key: %s\n", key_b64);
  96. lws_hdr_copy(wsi, buf, ARRAY_SIZE(buf) - 1, _WSI_TOKEN_CLIENT_SENT_PROTOCOLS);
  97. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Protocol: %s\n", buf);
  98. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Version: %d\n", SPEC_LATEST_SUPPORTED);
  99. DEBUG_OCPPMESSAGE_INFO("----- Handshake: Client Request END -----\n");
  100. DEBUG_OCPPMESSAGE_INFO("----- Handshake: Server response START -----\n");
  101. lws_hdr_copy(wsi, buf, ARRAY_SIZE(buf) - 1, WSI_TOKEN_HTTP);
  102. DEBUG_OCPPMESSAGE_INFO("HTTP/1.1 %s\n", buf);
  103. lws_hdr_copy(wsi, buf, ARRAY_SIZE(buf) - 1, WSI_TOKEN_UPGRADE);
  104. DEBUG_OCPPMESSAGE_INFO("Upgrade: %s\n", buf);
  105. lws_hdr_copy(wsi, buf, ARRAY_SIZE(buf) - 1, WSI_TOKEN_CONNECTION);
  106. DEBUG_OCPPMESSAGE_INFO("Connection: %s\n", buf);
  107. lws_hdr_copy(wsi, buf, ARRAY_SIZE(buf) - 1, WSI_TOKEN_ACCEPT);
  108. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Accept: %s\n", buf);
  109. lws_hdr_copy(wsi, buf, ARRAY_SIZE(buf) - 1, WSI_TOKEN_PROTOCOL);
  110. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Protocol: %s\n", buf);
  111. DEBUG_OCPPMESSAGE_INFO("----- Handshake: Server response END -----\n");
  112. break;
  113. case LWS_CALLBACK_FILTER_PROTOCOL_CONNECTION:
  114. DEBUG_INFO("LWS_CALLBACK_FILTER_PROTOCOL_CONNECTION\n");
  115. break;
  116. case LWS_CALLBACK_WSI_DESTROY:
  117. DEBUG_INFO("LWS_CALLBACK_WSI_DESTROY\n");
  118. pthread_detach(tid_connectServer);
  119. SetServerSign(FALSE);
  120. ConnectionEstablished = 0;
  121. context = NULL;
  122. break;
  123. case LWS_CALLBACK_LOCK_POLL:
  124. break;
  125. case LWS_CALLBACK_ADD_POLL_FD:
  126. DEBUG_INFO("LWS_CALLBACK_ADD_POLL_FD\n");
  127. break;
  128. case LWS_CALLBACK_DEL_POLL_FD:
  129. DEBUG_INFO("LWS_CALLBACK_DEL_POLL_FD\n");
  130. break;
  131. case LWS_CALLBACK_UNLOCK_POLL:
  132. break;
  133. case LWS_CALLBACK_CHANGE_MODE_POLL_FD:
  134. break;
  135. case LWS_CALLBACK_WSI_CREATE:
  136. DEBUG_INFO("LWS_CALLBACK_WSI_CREATE\n");
  137. break;
  138. case LWS_CALLBACK_GET_THREAD_ID:
  139. break;
  140. case LWS_CALLBACK_CLIENT_APPEND_HANDSHAKE_HEADER:
  141. DEBUG_INFO("LWS_CALLBACK_CLIENT_APPEND_HANDSHAKE_HEADER\n");
  142. unsigned char** pos = (unsigned char**)in;
  143. unsigned char* end = (*pos) + len;
  144. switch(GetOcppSecurityProfile())
  145. {
  146. case 1:
  147. case 2:
  148. case 3:
  149. GetOcppChargerBoxId(boxId);
  150. GetOcppSecurityPassword(password);
  151. sprintf(buf, "%s:%s", boxId, password);
  152. lws_b64_encode_string(buf, strlen(buf), (char*)auth_b64, ARRAY_SIZE(auth_b64));
  153. sprintf(buf, "Basic %s", auth_b64);
  154. if (lws_add_http_header_by_token(wsi, WSI_TOKEN_HTTP_AUTHORIZATION, (uint8_t *)buf, strlen(buf), pos, end))
  155. {
  156. DEBUG_ERROR("lws_add_http_header_by_token : WSI_TOKEN_HTTP_AUTHORIZATION\n");
  157. return -1;
  158. }
  159. DEBUG_OCPPMESSAGE_INFO("Authorization: %s\n", buf);
  160. break;
  161. case 0:
  162. default:
  163. break;
  164. }
  165. break;
  166. case LWS_CALLBACK_CLIENT_ESTABLISHED: //3
  167. DEBUG_INFO("LWS_CALLBACK_CLIENT_ESTABLISHED\n");
  168. char frontUUID[100] ={0};
  169. char frontData[QUEUE_MESSAGE_LENGTH] ={0};
  170. int queueNotEmpty = FALSE;
  171. //connected
  172. ConnectionEstablished=1;
  173. queueNotEmpty = queue_operation(QUEUE_OPERATION_SHOWFRONT,frontUUID, frontData);
  174. if(queueNotEmpty == TRUE)
  175. {
  176. OfflineTransaction = 1; // 0: no packets in queue. 1: There are packets in queue.
  177. }
  178. TransactionMessageResend = 1;
  179. //get offline number
  180. queue_operation(QUEUE_OPERATION_SHOWQUEUE,"","");
  181. OfflineTransactionQueueNum =TransactionQueueNum ;
  182. break;
  183. case LWS_CALLBACK_CLIENT_CONNECTION_ERROR://1
  184. DEBUG_ERROR("LWS_CALLBACK_CLIENT_CONNECTION_ERROR %s\n", (char *)in );
  185. //disconnected
  186. ConnectionEstablished=0;
  187. DEBUG_OCPPMESSAGE_INFO("===== Handshake: Client START =====\n");
  188. lws_hdr_copy(wsi, buf, ARRAY_SIZE(buf) - 1, _WSI_TOKEN_CLIENT_URI);
  189. DEBUG_OCPPMESSAGE_INFO("GET %s HTTP/1.1 \n", buf);
  190. lws_hdr_copy(wsi, buf, ARRAY_SIZE(buf) - 1, _WSI_TOKEN_CLIENT_HOST);
  191. DEBUG_OCPPMESSAGE_INFO("Host: %s\n", buf);
  192. DEBUG_OCPPMESSAGE_INFO("Upgrade: websocket\n");
  193. DEBUG_OCPPMESSAGE_INFO("Connection: Upgrade\n");
  194. lws_b64_encode_string(hash, 16, key_b64, ARRAY_SIZE(key_b64));// Sec-WebSocket-Key
  195. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Key: %s\n", key_b64);
  196. lws_hdr_copy(wsi, buf, ARRAY_SIZE(buf) - 1, _WSI_TOKEN_CLIENT_SENT_PROTOCOLS);
  197. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Protocol: %s\n", buf);
  198. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Version: %d\n", SPEC_LATEST_SUPPORTED);
  199. DEBUG_OCPPMESSAGE_INFO("===== Handshake: Client END =====\n");
  200. DEBUG_OCPPMESSAGE_INFO("===== Handshake: Server response START =====\n");
  201. lws_hdr_copy(wsi, buf, ARRAY_SIZE(buf) - 1, WSI_TOKEN_HTTP);
  202. DEBUG_OCPPMESSAGE_INFO("HTTP/1.1 %s\n", buf);
  203. lws_hdr_copy(wsi, buf, ARRAY_SIZE(buf) - 1, WSI_TOKEN_UPGRADE);
  204. DEBUG_OCPPMESSAGE_INFO("Upgrade: %s\n", buf);
  205. lws_hdr_copy(wsi, buf, ARRAY_SIZE(buf) - 1, WSI_TOKEN_CONNECTION);
  206. DEBUG_OCPPMESSAGE_INFO("Connection: %s\n", buf);
  207. lws_hdr_copy(wsi, buf, ARRAY_SIZE(buf) - 1, WSI_TOKEN_ACCEPT);
  208. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Accept: %s\n", buf);
  209. lws_hdr_copy(wsi, buf, ARRAY_SIZE(buf) - 1, WSI_TOKEN_PROTOCOL);
  210. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Protocol: %s\n", buf);
  211. DEBUG_OCPPMESSAGE_INFO("===== Handshake: Server response END =====\n");
  212. break;
  213. case LWS_CALLBACK_CLOSED://4
  214. DEBUG_INFO("LWS_CALLBACK_CLOSED\n");
  215. //disconnected
  216. ConnectionEstablished=0;
  217. break;
  218. case LWS_CALLBACK_CLIENT_WRITEABLE://10
  219. //if(need to send message and its relevant data already store into SendBuffer)
  220. SendData(wsi);
  221. //lws_rx_flow_control( wsi, 1 );
  222. break;
  223. case LWS_CALLBACK_CLIENT_RECEIVE://8
  224. ((char *)in)[len] = '\0';
  225. DEBUG_OCPPMESSAGE_INFO("<==== %s\n", (char *)in);
  226. //**********Receive Message**********/
  227. c = 0;
  228. loc = strstr((const char *)in, "][2,");
  229. if(loc == NULL)
  230. {
  231. loc = strstr((const char *)in, "][3,");
  232. if(loc == NULL)
  233. {
  234. loc = strstr((const char *)in, "][4,");
  235. }
  236. }
  237. memset(sstr, 0, ARRAY_SIZE(sstr) );
  238. if(loc != NULL)
  239. {
  240. DEBUG_INFO("There are continuous second packet []\n");
  241. while (loc[1+c] != '\0')
  242. {
  243. sstr[c] = loc[1+c];
  244. c++;
  245. }
  246. sstr[c] = '\0';
  247. strcpy(tempin, sstr);
  248. DEBUG_INFO("Final Receive: %s\n", tempin);
  249. }
  250. else
  251. {
  252. strcpy(tempin,(char *)in);
  253. }
  254. ReceivedMessage((void *)strtrim(tempin), strlen(tempin));
  255. isWebsocketSendable = 1;
  256. break;
  257. case LWS_CALLBACK_CLIENT_RECEIVE_PONG:
  258. DEBUG_INFO("LWS_CALLBACK_CLIENT_RECEIVE_PONG\n");
  259. break;
  260. case LWS_CALLBACK_OPENSSL_PERFORM_SERVER_CERT_VERIFICATION:
  261. DEBUG_INFO("LWS_CALLBACK_OPENSSL_PERFORM_SERVER_CERT_VERIFICATION\n");
  262. break;
  263. case LWS_CALLBACK_OPENSSL_LOAD_EXTRA_CLIENT_VERIFY_CERTS:
  264. DEBUG_INFO("LWS_CALLBACK_OPENSSL_LOAD_EXTRA_CLIENT_VERIFY_CERTS\n");
  265. break;
  266. case LWS_CALLBACK_PROTOCOL_DESTROY:
  267. DEBUG_INFO("LWS_CALLBACK_PROTOCOL_DESTROY\n");
  268. break;
  269. default:
  270. DEBUG_INFO("Reason = %d\n", reason);
  271. break;
  272. }
  273. return 0;
  274. }
  275. static struct lws_protocols protocols[] =
  276. {
  277. {
  278. "ocpp2.0",
  279. OCPP20Callback,
  280. 65536,//65536,//10240,
  281. 65536,//65536,//10240,
  282. },
  283. {
  284. "ocpp2.0",
  285. OCPP20Callback,
  286. 65536,//65536,//10240,
  287. 65536,//65536,//10240,
  288. },
  289. {
  290. NULL, NULL, 0 /* End of list */
  291. }
  292. };
  293. void* ConnectWsServer(void* data) //int ConnectWsServer()
  294. {
  295. struct lws_context_creation_info ContextInfo;
  296. struct lws_client_connect_info ConnInfo;
  297. int use_ssl=0;
  298. // If internet available synchronize datetime with ntp server
  299. if(GetInternetConn() == 1)
  300. {
  301. DEBUG_INFO("NTP synchronize with Microsoft\n", system("/usr/sbin/ntpd -nqp time.windows.com &"));
  302. DEBUG_INFO("NTP synchronize with China\n", system("/usr/sbin/ntpd -nqp cn.ntp.org.cn &"));
  303. DEBUG_INFO("NTP synchronize with Taiwan\n", system("/usr/sbin/ntpd -nqp tock.stdtime.gov.tw &"));
  304. }
  305. if(context!=NULL)
  306. {
  307. pthread_detach(pthread_self());
  308. lws_context_destroy(context);
  309. ConnectionEstablished=0;
  310. context = NULL;
  311. }
  312. checkNetworkProfile();
  313. memset(&ContextInfo, 0, sizeof(struct lws_context_creation_info));
  314. if((GetOcppServerURL()==0) || (GetOcppPort() == 0) || (GetOcppPath()==0))
  315. {
  316. DEBUG_ERROR("OCPP URL is NULL or OCPP Port is zero or OCPP Path is NULL\n");
  317. goto end;
  318. }
  319. if((strcmp(OcppProtocol,"ws")==0)&&(strlen(OcppProtocol)== 2))
  320. {
  321. DEBUG_INFO("Web socket is non-security mode.\n");
  322. use_ssl=0;
  323. }
  324. else if((strcmp(OcppProtocol,"wss")==0)&&(strlen(OcppProtocol)== 3))
  325. {
  326. DEBUG_INFO("Web socket is security mode.\n");
  327. use_ssl=1;
  328. }
  329. ContextInfo.port = CONTEXT_PORT_NO_LISTEN;
  330. ContextInfo.iface = NULL;
  331. ContextInfo.ssl_private_key_password = NULL;
  332. ContextInfo.ssl_cert_filepath = NULL;//"./ssl_key/client_cert.pem";
  333. ContextInfo.ssl_private_key_filepath = NULL;//"./ssl_key/client_key.pem";
  334. ContextInfo.ssl_ca_filepath = "/root/cacert.pem";//"./cacert.pem";
  335. ContextInfo.ssl_cipher_list = NULL; //use default one
  336. ContextInfo.gid = -1;
  337. ContextInfo.uid = -1;
  338. if(use_ssl)
  339. {
  340. ContextInfo.options |= LWS_SERVER_OPTION_DO_SSL_GLOBAL_INIT ;
  341. }
  342. ContextInfo.protocols = protocols;
  343. ContextInfo.timeout_secs = GetWebSocketPingInterval();//WebSocketPingInterval;//30;//9999;//30;
  344. ContextInfo.ws_ping_pong_interval = GetWebSocketPingInterval();//WebSocketPingInterval;//30;//0 for none, else interval in seconds
  345. context = lws_create_context(&ContextInfo);
  346. if (context == NULL)
  347. {
  348. DEBUG_ERROR("lws_create_context NG");
  349. goto end;
  350. }
  351. memset(&ConnInfo,0,sizeof(struct lws_client_connect_info));
  352. // fill up below information
  353. ConnInfo.context = context;
  354. ConnInfo.address=(const char *)OcppHost;
  355. DEBUG_INFO("ConnInfo.address: %s\n", ConnInfo.address);
  356. ConnInfo.port = GetOcppPort();
  357. DEBUG_INFO("ConnInfo.port: %d\n", ConnInfo.port);
  358. ConnInfo.path=(const char *)OcppPath;
  359. DEBUG_INFO("ConnInfo.path: %s\n", ConnInfo.path);
  360. char addr_port[256] = { 0 };
  361. sprintf(addr_port, "%s:%u", ConnInfo.address, (ConnInfo.port & 65535) );
  362. ConnInfo.host= addr_port; // ConnInfo.address;//lws_canonical_hostname(context);
  363. //ConnInfo.origin="origin";
  364. ConnInfo.protocol = protocols[1].name;
  365. ConnInfo.ietf_version_or_minus_one = -1;
  366. if(use_ssl)
  367. ConnInfo.ssl_connection = LCCSCF_USE_SSL | LCCSCF_ALLOW_SELFSIGNED | LCCSCF_SKIP_SERVER_CERT_HOSTNAME_CHECK | LCCSCF_ALLOW_EXPIRED;
  368. wsi_client = lws_client_connect_via_info(&ConnInfo);
  369. if (!wsi_client)
  370. {
  371. DEBUG_ERROR("lws_client_connect_via_info NG\n");
  372. goto end;
  373. }
  374. end:
  375. pthread_exit(NULL/*(void *) fname*/);
  376. }
  377. int isQueueOverSize()
  378. {
  379. FILE *fp;
  380. uint32_t file_size;
  381. uint8_t result = FALSE;
  382. fp = fopen("/Storage/OCPP/TransactionRelatedQueue" , "r");
  383. if(fp != NULL)
  384. {
  385. fseek(fp, 0L, SEEK_END);
  386. file_size = ftell(fp);
  387. if(file_size > (500*1024*1024))
  388. {
  389. result = TRUE;
  390. DEBUG_WARN("Queue file over size.\n");
  391. }
  392. fclose(fp);
  393. }
  394. return result;
  395. }
  396. int showfront(char *uuid, char *data)
  397. {
  398. FILE *fp;
  399. int result = FALSE; // 1: TRUE 0:FALSE
  400. char str[QUEUE_MESSAGE_LENGTH]={0};
  401. char sstr[50]={ 0 };//sstr[200]={ 0 };
  402. int c = 0;
  403. char *loc;
  404. char rmFileCmd[100]={0};
  405. struct stat stats;
  406. stat("/Storage/OCPP", &stats);
  407. // Check for directory existence
  408. if (S_ISDIR(stats.st_mode) == 1)
  409. {
  410. //DEBUG_INFO("\n OCPP directory exist \n");
  411. }
  412. else
  413. {
  414. DEBUG_INFO("\n OCPP directory not exist, create dir \n");
  415. sprintf(rmFileCmd,"mkdir -p %s","/Storage/OCPP");
  416. system(rmFileCmd);
  417. }
  418. memset(rmFileCmd, 0, ARRAY_SIZE(rmFileCmd));
  419. if((access("/Storage/OCPP/TransactionRelatedQueue",F_OK))!=-1)
  420. {
  421. //DEBUG_INFO("TransactionRelatedQueue exist.\n");
  422. }
  423. else
  424. {
  425. //DEBUG_INFO("TransactionRelatedQueue not exist\n");
  426. FILE *log = fopen("/Storage/OCPP/TransactionRelatedQueue", "w+");
  427. if(log == NULL)
  428. {
  429. DEBUG_INFO("Can't Create File TransactionRelatedQueue \n");
  430. return FALSE;
  431. }
  432. else
  433. {
  434. fclose(log);
  435. }
  436. }
  437. /* opening file for reading */
  438. fp = fopen("/Storage/OCPP/TransactionRelatedQueue" , "r");
  439. if(fp == NULL) {
  440. DEBUG_INFO("Error opening TransactionRelatedQueue file");
  441. return FALSE;
  442. }
  443. if( fgets (str, QUEUE_MESSAGE_LENGTH, fp)!=NULL ) {
  444. /* writing content to stdout */
  445. //DEBUG_INFO("str=%s",str);
  446. if ((str[0] == '\n')||(strcmp(str,"")==0))
  447. {
  448. DEBUG_INFO("It is a blank line");
  449. fclose(fp);
  450. memset(rmFileCmd, 0, ARRAY_SIZE(rmFileCmd));
  451. sprintf(rmFileCmd,"rm -f %s","/Storage/OCPP/TransactionRelatedQueue");
  452. system(rmFileCmd);
  453. result = FALSE;
  454. return result;
  455. }
  456. else
  457. {
  458. //puts(str);
  459. //----------------uuid--------------//
  460. loc = strstr(str, "\"");
  461. memset(sstr ,0, ARRAY_SIZE(sstr) );
  462. c = 0;
  463. while (loc[1+c] != '\"')
  464. {
  465. sstr[c] = loc[1+c];
  466. c++;
  467. }
  468. sstr[c] = '\0';
  469. //DEBUG_INFO("\n uuid:%s", sstr);
  470. //DEBUG_INFO("\n data:%s", str);
  471. strcpy(uuid,sstr);
  472. strcpy(data,str);
  473. result = TRUE;
  474. }
  475. }
  476. else
  477. {
  478. //DEBUG_INFO("queue is null\n");
  479. strcpy(uuid,"");
  480. strcpy(data,"");
  481. result = FALSE;
  482. }
  483. fclose(fp);
  484. return result;
  485. }
  486. int addq(char *uuid, char *data)
  487. {
  488. FILE *outfile;
  489. char rmFileCmd[100]={0};
  490. struct stat stats;
  491. stat("/Storage/OCPP", &stats);
  492. DEBUG_INFO("addq\n");
  493. // Check for directory existence
  494. if (S_ISDIR(stats.st_mode) == 1)
  495. {
  496. //DEBUG_INFO("\n OCPP directory exist \n");
  497. }
  498. else
  499. {
  500. //DEBUG_INFO("\n OCPP directory not exist, create dir \n");
  501. sprintf(rmFileCmd,"mkdir -p %s","/Storage/OCPP");
  502. system(rmFileCmd);
  503. }
  504. memset(rmFileCmd, 0, ARRAY_SIZE(rmFileCmd));
  505. if((access("/Storage/OCPP/TransactionRelatedQueue",F_OK))!=-1)
  506. {
  507. //DEBUG_INFO("TransactionRelatedQueue exist.\n");
  508. }
  509. else
  510. {
  511. //DEBUG_INFO("TransactionRelatedQueue not exist\n");
  512. FILE *log = fopen("/Storage/OCPP/TransactionRelatedQueue", "w+");
  513. if(log == NULL)
  514. {
  515. //DEBUG_INFO("Can't Create File TransactionRelatedQueue \n");
  516. return FALSE;
  517. }
  518. else
  519. {
  520. fclose(log);
  521. }
  522. }
  523. // open file for writing
  524. outfile = fopen ("/Storage/OCPP/TransactionRelatedQueue", "a");
  525. DEBUG_INFO("data = %s\n",data);
  526. fputs(data, outfile);
  527. fputs("\n", outfile);
  528. fclose (outfile);
  529. TransactionQueueNum = TransactionQueueNum + 1;
  530. if(OfflineTransaction == 1) // 0: no offline Transaction 1: offline Transaction
  531. {
  532. OfflineTransactionQueueNum = OfflineTransactionQueueNum + 1;
  533. }
  534. DEBUG_INFO("add queue end\n");
  535. return FALSE;
  536. }
  537. int delq()
  538. {
  539. char tempfile[] = "/Storage/OCPP/delqtemp.json";
  540. FILE *infile;
  541. FILE *outfile;
  542. int resultRename=0;
  543. char filename[60]={0};
  544. char rmFileCmd[100]={0};
  545. struct stat stats;
  546. stat("/Storage/OCPP", &stats);
  547. DEBUG_INFO("delq()\n");
  548. // Check for directory existence
  549. if (S_ISDIR(stats.st_mode) == 1)
  550. {
  551. //DEBUG_INFO("\n OCPP directory exist \n");
  552. }
  553. else
  554. {
  555. //DEBUG_INFO("\n OCPP directory not exist, create dir \n");
  556. sprintf(rmFileCmd,"mkdir -p %s","/Storage/OCPP");
  557. system(rmFileCmd);
  558. }
  559. memset(rmFileCmd, 0, ARRAY_SIZE(rmFileCmd));
  560. if((access("/Storage/OCPP/TransactionRelatedQueue",F_OK))!=-1)
  561. {
  562. //DEBUG_INFO("TransactionRelatedQueue exist.\n");
  563. }
  564. else
  565. {
  566. //DEBUG_INFO("TransactionRelatedQueue not exist\n");
  567. FILE *log = fopen("/Storage/OCPP/TransactionRelatedQueue", "w+");
  568. if(log == NULL)
  569. {
  570. //DEBUG_INFO("log is NULL\n");
  571. return 0;
  572. }
  573. else
  574. {
  575. fclose(log);
  576. }
  577. }
  578. // open file for writing
  579. strcpy(filename, "/Storage/OCPP/TransactionRelatedQueue");
  580. infile = fopen ("/Storage/OCPP/TransactionRelatedQueue", "r");
  581. outfile = fopen (tempfile, "w");
  582. /*检测到文件结束标识返回1,否则返回0。*/
  583. //DEBUG_INFO("feof(infile) =%d\n",feof(infile));
  584. int c;
  585. c = fgetc(infile);
  586. //printf("file c:%d\n",c);
  587. rewind(infile);
  588. if(c == EOF)
  589. {
  590. //DEBUG_INFO("TransactionRelatedQueue is NULL\n");
  591. fclose(infile);
  592. fclose(outfile);
  593. sprintf(rmFileCmd,"rm -f %s",tempfile);
  594. system(rmFileCmd);
  595. }
  596. else
  597. {
  598. char buf[QUEUE_MESSAGE_LENGTH]={0};
  599. int i = 0;
  600. //DEBUG_INFO("Orignal File is not NULL\n");
  601. while (fgets(buf, sizeof(buf), infile) != NULL)
  602. {
  603. //printf("Orignal File get strings \n");
  604. buf[strlen(buf) - 1] = '\0'; // eat the newline fgets() stores
  605. if(i==0)
  606. {
  607. TransactionQueueNum = TransactionQueueNum - 1;
  608. TransactionMessageResend = 1;
  609. DEBUG_INFO("delete the item\n");
  610. }
  611. if(i != 0)
  612. {
  613. fprintf(outfile,"%s\n", buf);
  614. }
  615. i = i + 1;
  616. }
  617. fclose(infile);
  618. fclose(outfile);
  619. sprintf(rmFileCmd,"rm -f %s",filename);
  620. system(rmFileCmd);
  621. resultRename = rename(tempfile, filename);
  622. if(resultRename == 0)
  623. {
  624. //DEBUG_INFO("TransactionRelatedQueue file renamed successfully");
  625. }
  626. else
  627. {
  628. //DEBUG_INFO("Error: unable to rename the TransactionRelatedQueue file");
  629. }
  630. DEBUG_INFO("delq() end\n");
  631. }
  632. return 0;
  633. }
  634. int showqueue()
  635. {
  636. char rmFileCmd[100]={0};
  637. struct stat stats;
  638. stat("/Storage/OCPP", &stats);
  639. // Check for directory existence
  640. if (S_ISDIR(stats.st_mode) == 1)
  641. {
  642. //DEBUG_INFO("\n OCPP directory exist \n");
  643. }
  644. else
  645. {
  646. //DEBUG_INFO("\n OCPP directory not exist, create dir \n");
  647. sprintf(rmFileCmd,"mkdir -p %s","/Storage/OCPP");
  648. system(rmFileCmd);
  649. }
  650. memset(rmFileCmd, 0, ARRAY_SIZE(rmFileCmd));
  651. if((access("/Storage/OCPP/TransactionRelatedQueue",F_OK))!=-1)
  652. {
  653. //DEBUG_INFO("TransactionRelatedQueue exist.\n");
  654. }
  655. else
  656. {
  657. //DEBUG_INFO("TransactionRelatedQueue not exist\n");
  658. FILE *log = fopen("/Storage/OCPP/TransactionRelatedQueue", "w+");
  659. if(log == NULL)
  660. {
  661. DEBUG_INFO("log is NULL\n");
  662. return FALSE;
  663. }
  664. else
  665. {
  666. fclose(log);
  667. }
  668. }
  669. FILE *fp = fopen("/Storage/OCPP/TransactionRelatedQueue", "r");
  670. char line[QUEUE_MESSAGE_LENGTH]={0};
  671. // check if file exist (and you can open it) or not
  672. if (fp == NULL) {
  673. DEBUG_INFO("can open file TransactionRelatedQueue!");
  674. return FALSE;
  675. }
  676. TransactionQueueNum = 0; // the number of packets in queue
  677. while(fgets(line, sizeof line, fp) != NULL) {
  678. //DEBUG_INFO("%s\n", line);
  679. TransactionQueueNum = TransactionQueueNum + 1; //the number of packets in queue
  680. }
  681. fclose(fp);
  682. return TRUE;
  683. }
  684. int sentqueue(){
  685. FILE *fp;
  686. int result = FALSE; // 1: TRUE 0:FALSE
  687. char str[QUEUE_MESSAGE_LENGTH]={0};
  688. char rmFileCmd[100]={0};
  689. struct stat stats;
  690. json_object *queueJson;
  691. DEBUG_INFO("Sent queue.\n");
  692. stat("/Storage/OCPP", &stats);
  693. // Check for directory existence
  694. if (S_ISDIR(stats.st_mode) == 1)
  695. {
  696. //DEBUG_INFO("\n OCPP directory exist \n");
  697. }
  698. else
  699. {
  700. //DEBUG_INFO("\n OCPP directory not exist, create dir \n");
  701. sprintf(rmFileCmd,"mkdir -p %s","/Storage/OCPP");
  702. system(rmFileCmd);
  703. }
  704. memset(rmFileCmd, 0, ARRAY_SIZE(rmFileCmd));
  705. /* opening file for reading */
  706. fp = fopen("/Storage/OCPP/TransactionRelatedQueue" , "r");
  707. if(fp == NULL) {
  708. DEBUG_INFO("Error opening file");
  709. return FALSE;
  710. }
  711. if( fgets (str, QUEUE_MESSAGE_LENGTH, fp)!=NULL )
  712. {
  713. queueJson = json_tokener_parse(str+2);
  714. if(!is_error(queueJson))
  715. {
  716. LWS_Send(str+2);
  717. }
  718. json_object_put(queueJson);
  719. result = TRUE;
  720. }
  721. else
  722. {
  723. result = FALSE;
  724. }
  725. fclose(fp);
  726. return result;
  727. }
  728. void* processTransactionQueue(void* data)
  729. {
  730. char frontUUID[100] ={0};
  731. char frontData[QUEUE_MESSAGE_LENGTH/*1024*4*/] ={0};
  732. int queueNotEmpty = FALSE;
  733. while(1)
  734. {
  735. if(!req_SendQueue && ((((time((time_t*)NULL) - startTimeQueue) > (TransactionMessageRetryIntervalGet()>10?TransactionMessageRetryIntervalGet():10))) || (isWebsocketSendable && ((time((time_t*)NULL) - startTimeQueue) >= ((counterQueueSent>=20)?5:1)))))
  736. {
  737. if(FirstHeartBeatResponse() == 1)
  738. {
  739. memset(frontUUID, 0, ARRAY_SIZE(frontUUID));
  740. memset(frontData, 0, ARRAY_SIZE(frontData));
  741. queueNotEmpty = FALSE;
  742. queueNotEmpty = queue_operation(QUEUE_OPERATION_SHOWFRONT,frontUUID, frontData);//showfront(frontUUID, frontData); ---> remove temporally
  743. if((queueNotEmpty == TRUE) && (GetOcppConnStatus() == 1)) //OcppConnStatus 0: disconnected, 1: connected
  744. {
  745. if(isWebsocketSendable)
  746. DEBUG_INFO("isWebsocketSendable on.\n");
  747. if((((time((time_t*)NULL) - startTimeQueue) > (TransactionMessageRetryIntervalGet()>10?TransactionMessageRetryIntervalGet():10))))
  748. DEBUG_INFO("Queue timer(%d) over spec(%d).\n", (time((time_t*)NULL) - startTimeQueue), TransactionMessageRetryIntervalGet());
  749. if((OfflineTransaction == 1) && (OfflineTransactionQueueNum != 0)) //OfflineTransaction 0: no offline Transaction 1: offline Transaction
  750. {
  751. DEBUG_INFO("Sent message from queue request off-line first.\n");
  752. req_SendQueue = 1; // 0: no packets to send 1: send the top packet in queue
  753. OfflineTransactionQueueNum = OfflineTransactionQueueNum - 1;
  754. if(OfflineTransactionQueueNum == 0)
  755. {
  756. OfflineTransaction = 0;
  757. }
  758. }
  759. else
  760. {
  761. if(TransactionMessageResend <= TransactionMessageAttemptsGet()) //
  762. {
  763. DEBUG_INFO("Sent message from queue request.\n");
  764. DEBUG_INFO("TransactionMessageResend = %d\n",TransactionMessageResend);
  765. req_SendQueue = 1;
  766. TransactionMessageResend += 1;
  767. }
  768. else
  769. {
  770. DEBUG_INFO("Transaction message resend(%d) over spec(%d) message abandon.\n", TransactionMessageResend, TransactionMessageAttemptsGet());
  771. queue_operation(QUEUE_OPERATION_DEL,"",""); //// delete item
  772. TransactionMessageResend = 1;
  773. }
  774. }
  775. }
  776. }
  777. if(GetOcppConnStatus() == 0)
  778. {
  779. if(queueNotEmpty == TRUE)
  780. {
  781. OfflineTransaction = 1; // 0: no offline Transaction 1: offline Transaction
  782. }
  783. }
  784. // Refresh queue timer
  785. startTimeQueue = time((time_t*)NULL);
  786. if((counterQueueSent >= 10) || (queueNotEmpty == FALSE))
  787. {
  788. counterQueueSent = 0;
  789. }
  790. else
  791. {
  792. counterQueueSent += 1;
  793. }
  794. }
  795. usleep(500000);
  796. }
  797. pthread_exit(NULL); //
  798. return 0;
  799. }
  800. void* processWatchdog()
  801. {
  802. for(;;)
  803. {
  804. if(((time((time_t*)NULL) - startTimeDog) > 10) && (context != NULL))
  805. {
  806. DEBUG_INFO("LWS watch dog timeout.\n");
  807. lws_cancel_service(context);
  808. lws_cancel_service_pt(wsi_client);
  809. if(counterLwsRestart >= 2)
  810. {
  811. DEBUG_INFO("LWS watch dog timeout over 3 count.\n");
  812. system("pkill OcppBackend");
  813. }
  814. else
  815. counterLwsRestart++;
  816. startTimeDog = time((time_t*)NULL);
  817. }
  818. /*
  819. if(system("pidof -s Module_PhBackend > /dev/null") != 0)
  820. {
  821. DEBUG_INFO("Module_PhBackend not running, restart it.\r\n");
  822. system("/root/Module_PhBackend &");
  823. }*/
  824. sleep(1);
  825. }
  826. pthread_exit(NULL); //
  827. }
  828. void CheckTransactionPacket(char *uuid)
  829. {
  830. char frontUUID[100]={0};
  831. char frontData[QUEUE_MESSAGE_LENGTH]={0};
  832. int queueNotEmpty = FALSE;
  833. int cmpResult = 0;
  834. queueNotEmpty = queue_operation(QUEUE_OPERATION_SHOWFRONT,frontUUID, frontData);//showfront(frontUUID, frontData); ---> remove temporally
  835. if(queueNotEmpty == TRUE)
  836. {
  837. cmpResult = strcmp(frontUUID, uuid);
  838. if (cmpResult == 0)
  839. {
  840. DEBUG_INFO("Receive queue response match.\n");
  841. queue_operation(QUEUE_OPERATION_DEL,"","");//delq(); ---> remove temporally
  842. TransactionMessageResend = 1;
  843. }
  844. else
  845. DEBUG_INFO("Receive queue response mismatch.\n");
  846. }
  847. }
  848. int queue_operation(int type, char *frontUUID, char *frontData)
  849. {
  850. int result=0;
  851. while(1)
  852. {
  853. if (!IsUsing )
  854. {
  855. IsUsing = TRUE;
  856. if(type == QUEUE_OPERATION_SHOWQUEUE) // show items in queue
  857. {
  858. result = showqueue();
  859. }
  860. else if(type == QUEUE_OPERATION_SHOWFRONT) // show first item
  861. {
  862. result = showfront(frontUUID, frontData);
  863. }
  864. else if(type == QUEUE_OPERATION_DEL) // delete item
  865. {
  866. result = delq();
  867. }
  868. else if(type == QUEUE_OPERATION_SENT) // sent items in queue
  869. {
  870. result = sentqueue();
  871. }
  872. else if(type == QUEUE_OPERATION_ADD) // add items to the queue
  873. {
  874. // If queue file over size only add start * stop transaction message
  875. if(!isQueueOverSize() || (strstr(frontData, "MeterValues") == NULL))
  876. {
  877. result = addq(frontUUID, frontData);
  878. }
  879. }
  880. IsUsing = FALSE;
  881. break;
  882. }
  883. usleep(100000);
  884. }
  885. return result;
  886. }
  887. int removeMessageSentFile(void)
  888. {
  889. char rmFileCmd[100]={0};
  890. struct stat stats;
  891. stat("/Storage/OCPP", &stats);
  892. // Check for directory existence
  893. if(S_ISDIR(stats.st_mode) == 1)
  894. {
  895. //DEBUG_INFO("\n OCPP directory exist \n");
  896. }
  897. else
  898. {
  899. DEBUG_INFO("\n directory not exist, create dir \n");
  900. sprintf(rmFileCmd,"mkdir -p %s","/Storage/OCPP");
  901. system(rmFileCmd);
  902. }
  903. memset(rmFileCmd, 0, ARRAY_SIZE(rmFileCmd));
  904. if((access("/Storage/OCPP/MessageSent",F_OK))!=-1)
  905. {
  906. DEBUG_INFO("MessageSent file exist.\n");
  907. sprintf(rmFileCmd,"rm -f %s","/Storage/OCPP/MessageSent");
  908. system(rmFileCmd);
  909. }
  910. memset(rmFileCmd, 0, ARRAY_SIZE(rmFileCmd));
  911. return 0;
  912. }
  913. static int changeChageWebSocketPingInterval = FALSE;
  914. void ChageWebSocketPingInterval(int WebSocketPingInterval)
  915. {
  916. changeChageWebSocketPingInterval = TRUE;
  917. }
  918. //================================================
  919. // Main process
  920. //================================================
  921. int main(void)
  922. {
  923. char rmFileCmd[100]={0};
  924. struct stat stats;
  925. DEBUG_INFO("Module_OcppBackend task initialization...\n");
  926. //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);
  927. if(ProcessShareMemory()== FAIL)
  928. {
  929. return FAIL;
  930. }
  931. // Check & create OCPP dir
  932. stat("/Storage/OCPP", &stats);
  933. if(S_ISDIR(stats.st_mode) != 1)
  934. {
  935. DEBUG_INFO("OCPP directory not exist, create dir \n");
  936. sprintf(rmFileCmd,"mkdir -p /Storage/OCPP");
  937. system(rmFileCmd);
  938. }
  939. memset(rmFileCmd, 0, ARRAY_SIZE(rmFileCmd));
  940. // Create Process: Resend Transaction
  941. pthread_create(&tid_ProcQueue, NULL, processTransactionQueue, NULL);
  942. pthread_create(&tid_Watchdog, NULL, processWatchdog, NULL);
  943. // Sqlite3 initial
  944. if(DB_Initial() != PASS)
  945. {
  946. DEBUG_ERROR("OCPP 2.0 local database initial fail.\n");
  947. return 0;
  948. }
  949. initialConfigurationTable();
  950. removeMessageSentFile();
  951. for(;;)
  952. {
  953. startTimeDog = time((time_t*)NULL);
  954. counterLwsRestart = 0;
  955. // Connect server
  956. if(ConnectionEstablished==0) // Check InternetConn 0: disconnected, 1: connected
  957. {
  958. isWebsocketSendable = 1;
  959. SetOcppConnStatus(FALSE);
  960. SetServerSign(FALSE);
  961. InitialSystemValue();
  962. if((time((time_t*)NULL)-startTime.connect) >= (GetWebSocketPingInterval()>=30?GetWebSocketPingInterval()+5:30))
  963. {
  964. DEBUG_INFO("Server connecting...\n");
  965. pthread_create(&tid_connectServer, NULL, ConnectWsServer, NULL);
  966. startTime.connect=time((time_t*)NULL);
  967. }
  968. CheckSystemValue();
  969. }
  970. else
  971. {
  972. // Sign in
  973. if((GetServerSign() == FALSE) &&
  974. ((GetBootNotificationInterval() >= 0) && ((time((time_t*)NULL)-startTime.bootNotification)>= GetBootNotificationInterval())))
  975. {
  976. sendBootNotificationRequest();
  977. startTime.bootNotification=time((time_t*)NULL);
  978. }
  979. // On line operation
  980. if(GetServerSign() == TRUE)
  981. {
  982. // Send message from queue
  983. if((req_SendQueue == 1) && isWebsocketSendable)
  984. {
  985. queue_operation(QUEUE_OPERATION_SENT, "", "");
  986. req_SendQueue = 0;
  987. }
  988. // Check System Value
  989. CheckSystemValue();
  990. if(GetHeartBeatWithNOResponse() >= 3)
  991. {
  992. lws_context_destroy(context);
  993. ConnectionEstablished = 0;
  994. context = NULL;
  995. SetHeartBeatWithNOResponse();
  996. }
  997. if((changeChageWebSocketPingInterval == TRUE) || (GetOcppConnStatus() == 0))
  998. {
  999. DEBUG_INFO("GetOcppConnStatus() = %d\n", GetOcppConnStatus());
  1000. changeChageWebSocketPingInterval = FALSE;
  1001. lws_context_destroy(context);
  1002. ConnectionEstablished = 0;
  1003. context = NULL;
  1004. }
  1005. }
  1006. }
  1007. do
  1008. {
  1009. lws_service(context, 0);//timeout_ms
  1010. }while((SendBufLen>0) && (context!=NULL) && GetInternetConn());
  1011. usleep(100000);
  1012. }
  1013. pthread_join(tid_ProcQueue, NULL);
  1014. pthread_join(tid_Watchdog, NULL);
  1015. return FAIL;
  1016. }