Module_OcppBackend20.c 33 KB

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