Module_OcppBackend20.c 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209
  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. int defaultWaitingTime = 10; //10 second
  27. char OcppPath[160]={0};
  28. char OcppProtocol[10]={0},OcppHost[50]={0}, OcppTempPath[50]={0};
  29. int OcppPort=0;
  30. unsigned char StartTransactionIdTagTemp[20]={0};
  31. uint32_t startTimeDog;
  32. uint32_t startTimeQueue;
  33. uint8_t isWebsocketSendable = 1;
  34. uint8_t counterLwsRestart = 0;;
  35. uint8_t counterQueueSent = 0;
  36. //=================================
  37. // Common routine
  38. //=================================
  39. int GetTransactionQueueNum(void)
  40. {
  41. return TransactionQueueNum;
  42. }
  43. //==========================================
  44. // Web socket tranceive routine
  45. //==========================================
  46. int SendData(struct lws *wsi)
  47. {
  48. int n;
  49. int len;
  50. unsigned char out[LWS_SEND_BUFFER_PRE_PADDING + (1024*20) + LWS_SEND_BUFFER_POST_PADDING] = {0};
  51. // Only disable isWebsocketSendable operation initiated by charger
  52. if((strstr((char*)SendBuffer, "\"Authorize\"") != NULL)
  53. || (strstr((char*)SendBuffer, "\"BootNotification\"") != NULL)
  54. || (strstr((char*)SendBuffer, "\"DataTransfer\"") != NULL)
  55. || (strstr((char*)SendBuffer, "\"DiagnosticsStatusNotification\"") != NULL)
  56. || (strstr((char*)SendBuffer, "\"FirmwareStatusNotification\"") != NULL)
  57. || (strstr((char*)SendBuffer, "\"Heartbeat\"") != NULL)
  58. || (strstr((char*)SendBuffer, "\"MeterValues\"") != NULL)
  59. || (strstr((char*)SendBuffer, "\"StartTransaction\"") != NULL)
  60. || (strstr((char*)SendBuffer, "\"StatusNotification\"") != NULL)
  61. || (strstr((char*)SendBuffer, "\"StopTransaction\"") != NULL))
  62. {
  63. isWebsocketSendable = 0;
  64. }
  65. len = strlen((char *)SendBuffer);
  66. if(len == 0)
  67. return 0;
  68. memcpy (out + LWS_SEND_BUFFER_PRE_PADDING, SendBuffer, len );
  69. DEBUG_OCPPMESSAGE_INFO("===========> %s\n", out + LWS_SEND_BUFFER_PRE_PADDING);
  70. n = lws_write(wsi, out + LWS_SEND_BUFFER_PRE_PADDING, len, LWS_WRITE_TEXT);
  71. memset(SendBuffer, 0, len);
  72. SendBufLen = 0;
  73. return n;
  74. }
  75. static int OCPP20Callback(struct lws *wsi, enum lws_callback_reasons reason, void *user, void *in, size_t len)
  76. {
  77. char buf[256]={0}, hash[20]={0}, key_b64[40]={0}, tempin[65536]={0}, sstr[65536]={0};
  78. uint8_t auth_b64[256]={0}, boxId[128]={0}, password[64]={0};
  79. int c = 0;
  80. char *loc;
  81. switch (reason)
  82. {
  83. case LWS_CALLBACK_PROTOCOL_INIT:
  84. DEBUG_INFO("LWS_CALLBACK_PROTOCOL_INIT\n");
  85. break;
  86. case LWS_CALLBACK_CLIENT_FILTER_PRE_ESTABLISH:
  87. DEBUG_INFO("LWS_CALLBACK_CLIENT_FILTER_PRE_ESTABLISH\n");
  88. DEBUG_OCPPMESSAGE_INFO("----- Handshake: Client Request START -----\n");
  89. lws_hdr_copy(wsi, buf, ARRAY_SIZE(buf) - 1, _WSI_TOKEN_CLIENT_URI);
  90. DEBUG_OCPPMESSAGE_INFO("GET %s HTTP/1.1 \n", buf);
  91. lws_hdr_copy(wsi, buf, ARRAY_SIZE(buf) - 1, _WSI_TOKEN_CLIENT_HOST);
  92. DEBUG_OCPPMESSAGE_INFO("Host: %s\n", buf);
  93. DEBUG_OCPPMESSAGE_INFO("Upgrade: websocket\n");
  94. DEBUG_OCPPMESSAGE_INFO("Connection: Upgrade\n");
  95. lws_b64_encode_string(hash, 16, key_b64, ARRAY_SIZE(key_b64));// Sec-WebSocket-Key
  96. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Key: %s\n", key_b64);
  97. lws_hdr_copy(wsi, buf, ARRAY_SIZE(buf) - 1, _WSI_TOKEN_CLIENT_SENT_PROTOCOLS);
  98. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Protocol: %s\n", buf);
  99. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Version: %d\n", SPEC_LATEST_SUPPORTED);
  100. DEBUG_OCPPMESSAGE_INFO("----- Handshake: Client Request END -----\n");
  101. DEBUG_OCPPMESSAGE_INFO("----- Handshake: Server response START -----\n");
  102. lws_hdr_copy(wsi, buf, ARRAY_SIZE(buf) - 1, WSI_TOKEN_HTTP);
  103. DEBUG_OCPPMESSAGE_INFO("HTTP/1.1 %s\n", buf);
  104. lws_hdr_copy(wsi, buf, ARRAY_SIZE(buf) - 1, WSI_TOKEN_UPGRADE);
  105. DEBUG_OCPPMESSAGE_INFO("Upgrade: %s\n", buf);
  106. lws_hdr_copy(wsi, buf, ARRAY_SIZE(buf) - 1, WSI_TOKEN_CONNECTION);
  107. DEBUG_OCPPMESSAGE_INFO("Connection: %s\n", buf);
  108. lws_hdr_copy(wsi, buf, ARRAY_SIZE(buf) - 1, WSI_TOKEN_ACCEPT);
  109. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Accept: %s\n", buf);
  110. lws_hdr_copy(wsi, buf, ARRAY_SIZE(buf) - 1, WSI_TOKEN_PROTOCOL);
  111. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Protocol: %s\n", buf);
  112. DEBUG_OCPPMESSAGE_INFO("----- Handshake: Server response END -----\n");
  113. break;
  114. case LWS_CALLBACK_FILTER_PROTOCOL_CONNECTION:
  115. DEBUG_INFO("LWS_CALLBACK_FILTER_PROTOCOL_CONNECTION\n");
  116. break;
  117. case LWS_CALLBACK_WSI_DESTROY:
  118. DEBUG_INFO("LWS_CALLBACK_WSI_DESTROY\n");
  119. pthread_detach(tid_connectServer);
  120. SetServerSign(FALSE);
  121. ConnectionEstablished = 0;
  122. context = NULL;
  123. break;
  124. case LWS_CALLBACK_LOCK_POLL:
  125. break;
  126. case LWS_CALLBACK_ADD_POLL_FD:
  127. DEBUG_INFO("LWS_CALLBACK_ADD_POLL_FD\n");
  128. break;
  129. case LWS_CALLBACK_DEL_POLL_FD:
  130. DEBUG_INFO("LWS_CALLBACK_DEL_POLL_FD\n");
  131. break;
  132. case LWS_CALLBACK_UNLOCK_POLL:
  133. break;
  134. case LWS_CALLBACK_CHANGE_MODE_POLL_FD:
  135. break;
  136. case LWS_CALLBACK_WSI_CREATE:
  137. DEBUG_INFO("LWS_CALLBACK_WSI_CREATE\n");
  138. break;
  139. case LWS_CALLBACK_GET_THREAD_ID:
  140. break;
  141. case LWS_CALLBACK_CLIENT_APPEND_HANDSHAKE_HEADER:
  142. DEBUG_INFO("LWS_CALLBACK_CLIENT_APPEND_HANDSHAKE_HEADER\n");
  143. unsigned char** pos = (unsigned char**)in;
  144. unsigned char* end = (*pos) + len;
  145. switch(GetOcppSecurityProfile())
  146. {
  147. case 1:
  148. case 2:
  149. case 3:
  150. GetOcppChargerBoxId(boxId);
  151. GetOcppSecurityPassword(password);
  152. sprintf(buf, "%s:%s", boxId, password);
  153. lws_b64_encode_string(buf, strlen(buf), (char*)auth_b64, ARRAY_SIZE(auth_b64));
  154. sprintf(buf, "Basic %s", auth_b64);
  155. if (lws_add_http_header_by_token(wsi, WSI_TOKEN_HTTP_AUTHORIZATION, (uint8_t *)buf, strlen(buf), pos, end))
  156. {
  157. DEBUG_ERROR("lws_add_http_header_by_token : WSI_TOKEN_HTTP_AUTHORIZATION\n");
  158. return -1;
  159. }
  160. DEBUG_OCPPMESSAGE_INFO("Authorization: %s\n", buf);
  161. break;
  162. case 0:
  163. default:
  164. break;
  165. }
  166. break;
  167. case LWS_CALLBACK_CLIENT_ESTABLISHED: //3
  168. DEBUG_INFO("LWS_CALLBACK_CLIENT_ESTABLISHED\n");
  169. char frontUUID[100] ={0};
  170. char frontData[QUEUE_MESSAGE_LENGTH] ={0};
  171. int queueNotEmpty = FALSE;
  172. //connected
  173. ConnectionEstablished=1;
  174. queueNotEmpty = queue_operation(QUEUE_OPERATION_SHOWFRONT,frontUUID, frontData);
  175. if(queueNotEmpty == TRUE)
  176. {
  177. OfflineTransaction = 1; // 0: no packets in queue. 1: There are packets in queue.
  178. }
  179. TransactionMessageResend = 1;
  180. //get offline number
  181. queue_operation(QUEUE_OPERATION_SHOWQUEUE,"","");
  182. OfflineTransactionQueueNum =TransactionQueueNum ;
  183. break;
  184. case LWS_CALLBACK_CLIENT_CONNECTION_ERROR://1
  185. DEBUG_ERROR("LWS_CALLBACK_CLIENT_CONNECTION_ERROR %s\n", (char *)in );
  186. //disconnected
  187. ConnectionEstablished=0;
  188. DEBUG_OCPPMESSAGE_INFO("===== Handshake: Client START =====\n");
  189. lws_hdr_copy(wsi, buf, ARRAY_SIZE(buf) - 1, _WSI_TOKEN_CLIENT_URI);
  190. DEBUG_OCPPMESSAGE_INFO("GET %s HTTP/1.1 \n", buf);
  191. lws_hdr_copy(wsi, buf, ARRAY_SIZE(buf) - 1, _WSI_TOKEN_CLIENT_HOST);
  192. DEBUG_OCPPMESSAGE_INFO("Host: %s\n", buf);
  193. DEBUG_OCPPMESSAGE_INFO("Upgrade: websocket\n");
  194. DEBUG_OCPPMESSAGE_INFO("Connection: Upgrade\n");
  195. lws_b64_encode_string(hash, 16, key_b64, ARRAY_SIZE(key_b64));// Sec-WebSocket-Key
  196. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Key: %s\n", key_b64);
  197. lws_hdr_copy(wsi, buf, ARRAY_SIZE(buf) - 1, _WSI_TOKEN_CLIENT_SENT_PROTOCOLS);
  198. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Protocol: %s\n", buf);
  199. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Version: %d\n", SPEC_LATEST_SUPPORTED);
  200. DEBUG_OCPPMESSAGE_INFO("===== Handshake: Client END =====\n");
  201. DEBUG_OCPPMESSAGE_INFO("===== Handshake: Server response START =====\n");
  202. lws_hdr_copy(wsi, buf, ARRAY_SIZE(buf) - 1, WSI_TOKEN_HTTP);
  203. DEBUG_OCPPMESSAGE_INFO("HTTP/1.1 %s\n", buf);
  204. lws_hdr_copy(wsi, buf, ARRAY_SIZE(buf) - 1, WSI_TOKEN_UPGRADE);
  205. DEBUG_OCPPMESSAGE_INFO("Upgrade: %s\n", buf);
  206. lws_hdr_copy(wsi, buf, ARRAY_SIZE(buf) - 1, WSI_TOKEN_CONNECTION);
  207. DEBUG_OCPPMESSAGE_INFO("Connection: %s\n", buf);
  208. lws_hdr_copy(wsi, buf, ARRAY_SIZE(buf) - 1, WSI_TOKEN_ACCEPT);
  209. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Accept: %s\n", buf);
  210. lws_hdr_copy(wsi, buf, ARRAY_SIZE(buf) - 1, WSI_TOKEN_PROTOCOL);
  211. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Protocol: %s\n", buf);
  212. DEBUG_OCPPMESSAGE_INFO("===== Handshake: Server response END =====\n");
  213. break;
  214. case LWS_CALLBACK_CLOSED://4
  215. DEBUG_INFO("LWS_CALLBACK_CLOSED\n");
  216. //disconnected
  217. ConnectionEstablished=0;
  218. break;
  219. case LWS_CALLBACK_CLIENT_WRITEABLE://10
  220. //if(need to send message and its relevant data already store into SendBuffer)
  221. SendData(wsi);
  222. //lws_rx_flow_control( wsi, 1 );
  223. break;
  224. case LWS_CALLBACK_CLIENT_RECEIVE://8
  225. ((char *)in)[len] = '\0';
  226. DEBUG_OCPPMESSAGE_INFO("<==== %s\n", (char *)in);
  227. //**********Receive Message**********/
  228. c = 0;
  229. loc = strstr((const char *)in, "][2,");
  230. if(loc == NULL)
  231. {
  232. loc = strstr((const char *)in, "][3,");
  233. if(loc == NULL)
  234. {
  235. loc = strstr((const char *)in, "][4,");
  236. }
  237. }
  238. memset(sstr, 0, ARRAY_SIZE(sstr) );
  239. if(loc != NULL)
  240. {
  241. DEBUG_INFO("There are continuous second packet []\n");
  242. while (loc[1+c] != '\0')
  243. {
  244. sstr[c] = loc[1+c];
  245. c++;
  246. }
  247. sstr[c] = '\0';
  248. strcpy(tempin, sstr);
  249. DEBUG_INFO("Final Receive: %s\n", tempin);
  250. }
  251. else
  252. {
  253. strcpy(tempin,(char *)in);
  254. }
  255. ReceivedMessage((void *)strtrim(tempin), strlen(tempin));
  256. isWebsocketSendable = 1;
  257. break;
  258. case LWS_CALLBACK_CLIENT_RECEIVE_PONG:
  259. DEBUG_INFO("LWS_CALLBACK_CLIENT_RECEIVE_PONG\n");
  260. break;
  261. case LWS_CALLBACK_OPENSSL_PERFORM_SERVER_CERT_VERIFICATION:
  262. DEBUG_INFO("LWS_CALLBACK_OPENSSL_PERFORM_SERVER_CERT_VERIFICATION\n");
  263. break;
  264. case LWS_CALLBACK_OPENSSL_LOAD_EXTRA_CLIENT_VERIFY_CERTS:
  265. DEBUG_INFO("LWS_CALLBACK_OPENSSL_LOAD_EXTRA_CLIENT_VERIFY_CERTS\n");
  266. break;
  267. case LWS_CALLBACK_PROTOCOL_DESTROY:
  268. DEBUG_INFO("LWS_CALLBACK_PROTOCOL_DESTROY\n");
  269. break;
  270. default:
  271. DEBUG_INFO("Reason = %d\n", reason);
  272. break;
  273. }
  274. return 0;
  275. }
  276. static struct lws_protocols protocols[] =
  277. {
  278. {
  279. "ocpp2.0",
  280. OCPP20Callback,
  281. 65536,//65536,//10240,
  282. 65536,//65536,//10240,
  283. },
  284. {
  285. "ocpp2.0",
  286. OCPP20Callback,
  287. 65536,//65536,//10240,
  288. 65536,//65536,//10240,
  289. },
  290. {
  291. NULL, NULL, 0 /* End of list */
  292. }
  293. };
  294. void* ConnectWsServer(void* data) //int ConnectWsServer()
  295. {
  296. struct lws_context_creation_info ContextInfo;
  297. struct lws_client_connect_info ConnInfo;
  298. int use_ssl=0;
  299. // If internet available synchronize datetime with ntp server
  300. if(GetInternetConn() == 1)
  301. {
  302. DEBUG_INFO("NTP synchronize with Microsoft\n", system("/usr/sbin/ntpd -nqp time.windows.com &"));
  303. DEBUG_INFO("NTP synchronize with China\n", system("/usr/sbin/ntpd -nqp cn.ntp.org.cn &"));
  304. DEBUG_INFO("NTP synchronize with Taiwan\n", system("/usr/sbin/ntpd -nqp tock.stdtime.gov.tw &"));
  305. }
  306. if(context!=NULL)
  307. {
  308. pthread_detach(pthread_self());
  309. lws_context_destroy(context);
  310. ConnectionEstablished=0;
  311. context = NULL;
  312. }
  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())) || ((time((time_t*)NULL)-startTime.bootNotification) >= defaultWaitingTime) ) )
  975. {
  976. sendBootNotificationRequest();
  977. startTime.bootNotification=time((time_t*)NULL);
  978. }
  979. // On line operation
  980. if(GetServerSign() == TRUE)
  981. {
  982. SetOcppConnStatus(TRUE);
  983. // Send message from queue
  984. if((req_SendQueue == 1) && isWebsocketSendable)
  985. {
  986. queue_operation(QUEUE_OPERATION_SENT, "", "");
  987. req_SendQueue = 0;
  988. }
  989. // Check System Value
  990. CheckSystemValue();
  991. if(GetHeartBeatWithNOResponse() >= 3)
  992. {
  993. lws_context_destroy(context);
  994. ConnectionEstablished = 0;
  995. context = NULL;
  996. SetHeartBeatWithNOResponse();
  997. }
  998. if((changeChageWebSocketPingInterval == TRUE) || (GetInternetConn() == 0))
  999. {
  1000. DEBUG_INFO("GetInternetConn() = %d\n", GetInternetConn());
  1001. changeChageWebSocketPingInterval = FALSE;
  1002. lws_context_destroy(context);
  1003. ConnectionEstablished = 0;
  1004. context = NULL;
  1005. }
  1006. }
  1007. }
  1008. do
  1009. {
  1010. lws_service(context, 0);//timeout_ms
  1011. }while((SendBufLen>0) && (context!=NULL) && GetInternetConn());
  1012. usleep(100000);
  1013. }
  1014. pthread_join(tid_ProcQueue, NULL);
  1015. pthread_join(tid_Watchdog, NULL);
  1016. return FAIL;
  1017. }