Module_OcppBackend20.c 32 KB

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