Module_OcppBackend20.c 32 KB

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