Module_OcppBackend.c 39 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475
  1. #include "Module_OcppBackend.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*4]={0};
  20. static int ConnectionEstablished=0;
  21. static int TransactionMessageResend = 1; // the number of retry to submit a transaction-related message when the Central System fails to process it.
  22. static int TransactionQueueNum = 0;
  23. static int OfflineTransactionQueueNum = 0; // Number of offline transactions
  24. static int OfflineTransaction = 0;
  25. static int IsUsing = FALSE;
  26. int defaultWaitingTime = 10; //10 second
  27. char OcppPath[160]={0};
  28. char OcppProtocol[10]={0},OcppHost[50]={0}, OcppTempPath[50]={0};
  29. int OcppPort=0;
  30. unsigned char StartTransactionIdTagTemp[20]={0};
  31. uint32_t startTimeDog;
  32. uint32_t startTimeQueue;
  33. uint8_t isWebsocketSendable = 1;
  34. uint8_t counterLwsRestart = 0;;
  35. uint8_t counterQueueSent = 0;
  36. sqlite3 *db;
  37. char *errMsg = NULL;
  38. static char *createsql = "CREATE TABLE IF NOT EXISTS log_buffer("
  39. "idx integer primary key,"
  40. "user_id text,"
  41. "cmd_sn text,"
  42. "charger_id text,"
  43. "gun_type text,"
  44. "gun_no text,"
  45. "rfid_no text,"
  46. "stime text,"
  47. "etime text,"
  48. "time_len text,"
  49. "s_soc text,"
  50. "e_soc text,"
  51. "stop_reason text,"
  52. "power text,"
  53. "meter_before text,"
  54. "meter_after text,"
  55. "charge_price text,"
  56. "reserve text,"
  57. "surplus_before text,"
  58. "surplus_after text,"
  59. "service_price text,"
  60. "is_pay text,"
  61. "charge_strategy text,"
  62. "charge_parameter text,"
  63. "vin text,"
  64. "vehicle_no text,"
  65. "start_method text,"
  66. "card_type text,"
  67. "is_upload text,"
  68. "guid text UNIQUE,"
  69. "is_buf2OK text);";
  70. static char *sqlOcppAuthCache = "create table if not exists ocpp_auth_cache (idx integer primary key,"
  71. "idtag text UNIQUE,"
  72. "parent_idtag text,"
  73. "expir_date text,"
  74. "status text);";
  75. static char *sqlOcppAuthLocal = "create table if not exists ocpp_auth_local (idx integer primary key,"
  76. "idtag text UNIQUE,"
  77. "parent_idtag text,"
  78. "expir_date text,"
  79. "status text,"
  80. "version text);";
  81. //=================================
  82. // Common routine
  83. //=================================
  84. int GetTransactionQueueNum(void)
  85. {
  86. return TransactionQueueNum;
  87. }
  88. //==========================================
  89. // Web socket tranceive routine
  90. //==========================================
  91. int SendData(struct lws *wsi)
  92. {
  93. int n;
  94. int len;
  95. unsigned char out[LWS_SEND_BUFFER_PRE_PADDING + 4096 + LWS_SEND_BUFFER_POST_PADDING] = {0};
  96. // Only disable isWebsocketSendable operation initiated by charger
  97. if((strstr((char*)SendBuffer, "\"Authorize\"") != NULL)
  98. || (strstr((char*)SendBuffer, "\"BootNotification\"") != NULL)
  99. || (strstr((char*)SendBuffer, "\"DataTransfer\"") != NULL)
  100. || (strstr((char*)SendBuffer, "\"DiagnosticsStatusNotification\"") != NULL)
  101. || (strstr((char*)SendBuffer, "\"FirmwareStatusNotification\"") != NULL)
  102. || (strstr((char*)SendBuffer, "\"Heartbeat\"") != NULL)
  103. || (strstr((char*)SendBuffer, "\"MeterValues\"") != NULL)
  104. || (strstr((char*)SendBuffer, "\"StartTransaction\"") != NULL)
  105. || (strstr((char*)SendBuffer, "\"StatusNotification\"") != NULL)
  106. || (strstr((char*)SendBuffer, "\"StopTransaction\"") != NULL))
  107. {
  108. isWebsocketSendable = 0;
  109. }
  110. len = strlen((char *)SendBuffer);
  111. if(len == 0)
  112. return 0;
  113. memcpy (out + LWS_SEND_BUFFER_PRE_PADDING, SendBuffer, len );
  114. DEBUG_OCPPMESSAGE_INFO("===========> %s\n", out + LWS_SEND_BUFFER_PRE_PADDING);
  115. n = lws_write(wsi, out + LWS_SEND_BUFFER_PRE_PADDING, len, LWS_WRITE_TEXT);
  116. memset(SendBuffer, 0, len);
  117. SendBufLen = 0;
  118. return n;
  119. }
  120. static int OCPP16Callback(struct lws *wsi, enum lws_callback_reasons reason, void *user, void *in, size_t len)
  121. {
  122. switch (reason)
  123. {
  124. case LWS_CALLBACK_PROTOCOL_INIT:
  125. DEBUG_INFO("LWS_CALLBACK_PROTOCOL_INIT\n");
  126. break;
  127. case LWS_CALLBACK_CLIENT_FILTER_PRE_ESTABLISH:
  128. DEBUG_INFO("LWS_CALLBACK_CLIENT_FILTER_PRE_ESTABLISH\n");
  129. char buf[64];
  130. char hash[20], key_b64[40];
  131. lws_b64_encode_string(hash, 16, key_b64, ARRAY_SIZE(key_b64));// Sec-WebSocket-Key
  132. DEBUG_OCPPMESSAGE_INFO("----- Handshake: Client Request START -----\n");
  133. lws_hdr_copy(wsi, buf, ARRAY_SIZE(buf) - 1, _WSI_TOKEN_CLIENT_URI);
  134. DEBUG_OCPPMESSAGE_INFO("GET %s HTTP/1.1 \n", buf);
  135. lws_hdr_copy(wsi, buf, ARRAY_SIZE(buf) - 1, _WSI_TOKEN_CLIENT_HOST);
  136. DEBUG_OCPPMESSAGE_INFO("Host: %s\n", buf);
  137. DEBUG_OCPPMESSAGE_INFO("Upgrade: websocket\n");
  138. DEBUG_OCPPMESSAGE_INFO("Connection: Upgrade\n");
  139. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Key: %s\n", key_b64);
  140. lws_hdr_copy(wsi, buf, ARRAY_SIZE(buf) - 1, _WSI_TOKEN_CLIENT_SENT_PROTOCOLS);
  141. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Protocol: %s\n", buf);
  142. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Version: %d\n", SPEC_LATEST_SUPPORTED);
  143. DEBUG_OCPPMESSAGE_INFO("----- Handshake: Client Request END -----\n");
  144. DEBUG_OCPPMESSAGE_INFO("----- Handshake: Server response START -----\n");
  145. lws_hdr_copy(wsi, buf, ARRAY_SIZE(buf) - 1, WSI_TOKEN_HTTP);
  146. DEBUG_OCPPMESSAGE_INFO("HTTP/1.1 %s\n", buf);
  147. lws_hdr_copy(wsi, buf, ARRAY_SIZE(buf) - 1, WSI_TOKEN_UPGRADE);
  148. DEBUG_OCPPMESSAGE_INFO("Upgrade: %s\n", buf);
  149. lws_hdr_copy(wsi, buf, ARRAY_SIZE(buf) - 1, WSI_TOKEN_CONNECTION);
  150. DEBUG_OCPPMESSAGE_INFO("Connection: %s\n", buf);
  151. lws_hdr_copy(wsi, buf, ARRAY_SIZE(buf) - 1, WSI_TOKEN_ACCEPT);
  152. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Accept: %s\n", buf);
  153. lws_hdr_copy(wsi, buf, ARRAY_SIZE(buf) - 1, WSI_TOKEN_PROTOCOL);
  154. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Protocol: %s\n", buf);
  155. DEBUG_OCPPMESSAGE_INFO("----- Handshake: Server response END -----\n");
  156. break;
  157. case LWS_CALLBACK_FILTER_PROTOCOL_CONNECTION:
  158. DEBUG_INFO("LWS_CALLBACK_FILTER_PROTOCOL_CONNECTION\n");
  159. break;
  160. case LWS_CALLBACK_WSI_DESTROY:
  161. DEBUG_INFO("LWS_CALLBACK_WSI_DESTROY\n");
  162. pthread_detach(tid_connectServer);
  163. SetServerSign(FALSE);
  164. ConnectionEstablished = 0;
  165. context = NULL;
  166. break;
  167. case LWS_CALLBACK_LOCK_POLL:
  168. break;
  169. case LWS_CALLBACK_ADD_POLL_FD:
  170. DEBUG_INFO("LWS_CALLBACK_ADD_POLL_FD\n");
  171. break;
  172. case LWS_CALLBACK_DEL_POLL_FD:
  173. DEBUG_INFO("LWS_CALLBACK_DEL_POLL_FD\n");
  174. break;
  175. case LWS_CALLBACK_UNLOCK_POLL:
  176. break;
  177. case LWS_CALLBACK_CHANGE_MODE_POLL_FD:
  178. break;
  179. case LWS_CALLBACK_WSI_CREATE:
  180. DEBUG_INFO("LWS_CALLBACK_WSI_CREATE\n");
  181. break;
  182. case LWS_CALLBACK_GET_THREAD_ID:
  183. break;
  184. case LWS_CALLBACK_CLIENT_APPEND_HANDSHAKE_HEADER:
  185. DEBUG_INFO("LWS_CALLBACK_CLIENT_APPEND_HANDSHAKE_HEADER\n");
  186. break;
  187. case LWS_CALLBACK_CLIENT_ESTABLISHED: //3
  188. DEBUG_INFO("LWS_CALLBACK_CLIENT_ESTABLISHED\n");
  189. char frontUUID[100] ={0};
  190. char frontData[QUEUE_MESSAGE_LENGTH] ={0};
  191. int queueNotEmpty = FALSE;
  192. //connected
  193. ConnectionEstablished=1;
  194. queueNotEmpty = queue_operation(QUEUE_OPERATION_SHOWFRONT,frontUUID, frontData);
  195. if(queueNotEmpty == TRUE)
  196. {
  197. OfflineTransaction = 1; // 0: no packets in queue. 1: There are packets in queue.
  198. }
  199. TransactionMessageResend = 1;
  200. //get offline number
  201. queue_operation(QUEUE_OPERATION_SHOWQUEUE,"","");
  202. OfflineTransactionQueueNum =TransactionQueueNum ;
  203. break;
  204. case LWS_CALLBACK_CLIENT_CONNECTION_ERROR://1
  205. DEBUG_ERROR("LWS_CALLBACK_CLIENT_CONNECTION_ERROR %s\n", (char *)in );
  206. //disconnected
  207. ConnectionEstablished=0;
  208. char buf1[64];
  209. char hash1[20]={0}, key_b641[40]={0};
  210. lws_b64_encode_string(hash1, 16, key_b641, ARRAY_SIZE(key_b641));// Sec-WebSocket-Key
  211. DEBUG_OCPPMESSAGE_INFO("===== Handshake: Client START =====\n");
  212. lws_hdr_copy(wsi, buf, ARRAY_SIZE(buf) - 1, _WSI_TOKEN_CLIENT_URI);
  213. DEBUG_OCPPMESSAGE_INFO("GET %s HTTP/1.1 \n", buf);
  214. lws_hdr_copy(wsi, buf, ARRAY_SIZE(buf) - 1, _WSI_TOKEN_CLIENT_HOST);
  215. DEBUG_OCPPMESSAGE_INFO("Host: %s\n", buf);
  216. DEBUG_OCPPMESSAGE_INFO("Upgrade: websocket\n");
  217. DEBUG_OCPPMESSAGE_INFO("Connection: Upgrade\n");
  218. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Key: %s\n", key_b641);
  219. lws_hdr_copy(wsi, buf, ARRAY_SIZE(buf) - 1, _WSI_TOKEN_CLIENT_SENT_PROTOCOLS);
  220. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Protocol: %s\n", buf);
  221. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Version: %d\n", SPEC_LATEST_SUPPORTED);
  222. DEBUG_OCPPMESSAGE_INFO("===== Handshake: Client END =====\n");
  223. DEBUG_OCPPMESSAGE_INFO("===== Handshake: Server response START =====\n");
  224. lws_hdr_copy(wsi, buf1, ARRAY_SIZE(buf1) - 1, WSI_TOKEN_HTTP);
  225. DEBUG_OCPPMESSAGE_INFO("HTTP/1.1 %s\n", buf1);
  226. lws_hdr_copy(wsi, buf1, ARRAY_SIZE(buf1) - 1, WSI_TOKEN_UPGRADE);
  227. DEBUG_OCPPMESSAGE_INFO("Upgrade: %s\n", buf1);
  228. lws_hdr_copy(wsi, buf1, ARRAY_SIZE(buf1) - 1, WSI_TOKEN_CONNECTION);
  229. DEBUG_OCPPMESSAGE_INFO("Connection: %s\n", buf1);
  230. lws_hdr_copy(wsi, buf1, ARRAY_SIZE(buf1) - 1, WSI_TOKEN_ACCEPT);
  231. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Accept: %s\n", buf1);
  232. lws_hdr_copy(wsi, buf1, ARRAY_SIZE(buf1) - 1, WSI_TOKEN_PROTOCOL);
  233. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Protocol: %s\n", buf1);
  234. DEBUG_OCPPMESSAGE_INFO("===== Handshake: Server response END =====\n");
  235. break;
  236. case LWS_CALLBACK_CLOSED://4
  237. DEBUG_INFO("LWS_CALLBACK_CLOSED\n");
  238. //disconnected
  239. ConnectionEstablished=0;
  240. break;
  241. case LWS_CALLBACK_CLIENT_WRITEABLE://10
  242. //if(need to send message and its relevant data already store into SendBuffer)
  243. SendData(wsi);
  244. //lws_rx_flow_control( wsi, 1 );
  245. break;
  246. case LWS_CALLBACK_CLIENT_RECEIVE://8
  247. ((char *)in)[len] = '\0';
  248. DEBUG_OCPPMESSAGE_INFO("<===== %s\n", (char *)in);
  249. char tempin[65536]={0};
  250. int c = 0;
  251. char *loc;
  252. char sstr[65536]={0};
  253. //**********Receive Message**********/
  254. c = 0;
  255. loc = strstr((const char *)in, "][2,");
  256. if(loc == NULL)
  257. {
  258. loc = strstr((const char *)in, "][3,");
  259. if(loc == NULL)
  260. {
  261. loc = strstr((const char *)in, "][4,");
  262. }
  263. }
  264. memset(sstr, 0, ARRAY_SIZE(sstr) );
  265. if(loc != NULL)
  266. {
  267. DEBUG_INFO("There are continuous second packet []\n");
  268. while (loc[1+c] != '\0')
  269. {
  270. sstr[c] = loc[1+c];
  271. c++;
  272. }
  273. sstr[c] = '\0';
  274. strcpy(tempin, sstr);
  275. DEBUG_INFO("Final Receive: %s\n", tempin);
  276. }
  277. else
  278. {
  279. strcpy(tempin,(char *)in);
  280. }
  281. ReceivedMessage((void *)strtrim(tempin), strlen(tempin));
  282. isWebsocketSendable = 1;
  283. break;
  284. case LWS_CALLBACK_CLIENT_RECEIVE_PONG:
  285. DEBUG_INFO("LWS_CALLBACK_CLIENT_RECEIVE_PONG\n");
  286. break;
  287. case LWS_CALLBACK_OPENSSL_PERFORM_SERVER_CERT_VERIFICATION:
  288. DEBUG_INFO("LWS_CALLBACK_OPENSSL_PERFORM_SERVER_CERT_VERIFICATION\n");
  289. break;
  290. case LWS_CALLBACK_OPENSSL_LOAD_EXTRA_CLIENT_VERIFY_CERTS:
  291. DEBUG_INFO("LWS_CALLBACK_OPENSSL_LOAD_EXTRA_CLIENT_VERIFY_CERTS\n");
  292. break;
  293. case LWS_CALLBACK_PROTOCOL_DESTROY:
  294. DEBUG_INFO("LWS_CALLBACK_PROTOCOL_DESTROY\n");
  295. break;
  296. default:
  297. DEBUG_INFO("Reason = %d\n", reason);
  298. break;
  299. }
  300. return 0;
  301. }
  302. static struct lws_protocols protocols[] =
  303. {
  304. {
  305. "ocpp1.6",
  306. OCPP16Callback,
  307. 65536,//65536,//10240,
  308. 65536,//65536,//10240,
  309. },
  310. {
  311. "ocpp1.6",
  312. OCPP16Callback,
  313. 65536,//65536,//10240,
  314. 65536,//65536,//10240,
  315. },
  316. {
  317. NULL, NULL, 0 /* End of list */
  318. }
  319. };
  320. void* ConnectWsServer(void* data) //int ConnectWsServer()
  321. {
  322. struct lws_context_creation_info ContextInfo;
  323. struct lws_client_connect_info ConnInfo;
  324. int use_ssl=0;
  325. if(context!=NULL)
  326. {
  327. pthread_detach(pthread_self());
  328. lws_context_destroy(context);
  329. ConnectionEstablished=0;
  330. context = NULL;
  331. }
  332. memset(&ContextInfo, 0, sizeof(struct lws_context_creation_info));
  333. if((GetOcppServerURL()==0) || (GetOcppPort() == 0) || (GetOcppPath()==0))
  334. {
  335. DEBUG_ERROR("OCPP URL is NULL or OCPP Port is zero or OCPP Path is NULL\n");
  336. goto end;
  337. }
  338. if((strcmp(OcppProtocol,"ws")==0)&&(strlen(OcppProtocol)== 2))
  339. {
  340. DEBUG_INFO("Web socket is non-security mode.\n");
  341. use_ssl=0;
  342. }
  343. else if((strcmp(OcppProtocol,"wss")==0)&&(strlen(OcppProtocol)== 3))
  344. {
  345. DEBUG_INFO("Web socket is security mode.\n");
  346. use_ssl=1;
  347. }
  348. ContextInfo.port = CONTEXT_PORT_NO_LISTEN;
  349. ContextInfo.iface = NULL;
  350. ContextInfo.ssl_private_key_password = NULL;
  351. ContextInfo.ssl_cert_filepath = NULL;//"./ssl_key/client_cert.pem";
  352. ContextInfo.ssl_private_key_filepath = NULL;//"./ssl_key/client_key.pem";
  353. ContextInfo.ssl_ca_filepath = "/root/cacert.pem";//"./cacert.pem";
  354. ContextInfo.ssl_cipher_list = NULL; //use default one
  355. ContextInfo.gid = -1;
  356. ContextInfo.uid = -1;
  357. if(use_ssl)
  358. {
  359. ContextInfo.options |= LWS_SERVER_OPTION_DO_SSL_GLOBAL_INIT ;
  360. }
  361. ContextInfo.protocols = protocols;
  362. ContextInfo.timeout_secs = GetWebSocketPingInterval();//WebSocketPingInterval;//30;//9999;//30;
  363. ContextInfo.ws_ping_pong_interval = GetWebSocketPingInterval();//WebSocketPingInterval;//30;//0 for none, else interval in seconds
  364. context = lws_create_context(&ContextInfo);
  365. if (context == NULL)
  366. {
  367. DEBUG_ERROR("lws_create_context NG");
  368. goto end;
  369. }
  370. memset(&ConnInfo,0,sizeof(struct lws_client_connect_info));
  371. // fill up below information
  372. ConnInfo.context = context;
  373. ConnInfo.address=(const char *)OcppHost;
  374. DEBUG_INFO("ConnInfo.address: %s\n", ConnInfo.address);
  375. ConnInfo.port = GetOcppPort();
  376. DEBUG_INFO("ConnInfo.port: %d\n", ConnInfo.port);
  377. ConnInfo.path=(const char *)OcppPath;
  378. DEBUG_INFO("ConnInfo.path: %s\n", ConnInfo.path);
  379. char addr_port[256] = { 0 };
  380. sprintf(addr_port, "%s:%u", ConnInfo.address, (ConnInfo.port & 65535) );
  381. ConnInfo.host= addr_port; // ConnInfo.address;//lws_canonical_hostname(context);
  382. //ConnInfo.origin="origin";
  383. ConnInfo.protocol = protocols[1].name;
  384. ConnInfo.ietf_version_or_minus_one = -1;
  385. if(use_ssl)
  386. ConnInfo.ssl_connection = LCCSCF_USE_SSL | LCCSCF_ALLOW_SELFSIGNED | LCCSCF_SKIP_SERVER_CERT_HOSTNAME_CHECK;
  387. wsi_client = lws_client_connect_via_info(&ConnInfo);
  388. if (!wsi_client)
  389. {
  390. DEBUG_ERROR("lws_client_connect_via_info NG");
  391. goto end;
  392. }
  393. end:
  394. pthread_exit(NULL/*(void *) fname*/);
  395. }
  396. int isQueueOverSize()
  397. {
  398. FILE *fp;
  399. uint32_t file_size;
  400. uint8_t result = FALSE;
  401. fp = fopen("/Storage/OCPP/TransactionRelatedQueue" , "r");
  402. if(fp != NULL)
  403. {
  404. fseek(fp, 0L, SEEK_END);
  405. file_size = ftell(fp);
  406. if(file_size > (500*1024*1024))
  407. {
  408. result = TRUE;
  409. DEBUG_WARN("Queue file over size.\n");
  410. }
  411. fclose(fp);
  412. }
  413. return result;
  414. }
  415. int showfront(char *uuid, char *data)
  416. {
  417. FILE *fp;
  418. int result = FALSE; // 1: TRUE 0:FALSE
  419. char str[QUEUE_MESSAGE_LENGTH]={0};
  420. char sstr[50]={ 0 };//sstr[200]={ 0 };
  421. int c = 0;
  422. char *loc;
  423. char rmFileCmd[100]={0};
  424. struct stat stats;
  425. stat("/Storage/OCPP", &stats);
  426. // Check for directory existence
  427. if (S_ISDIR(stats.st_mode) == 1)
  428. {
  429. //DEBUG_INFO("\n OCPP directory exist \n");
  430. }
  431. else
  432. {
  433. DEBUG_INFO("\n OCPP directory not exist, create dir \n");
  434. sprintf(rmFileCmd,"mkdir -p %s","/Storage/OCPP");
  435. system(rmFileCmd);
  436. }
  437. memset(rmFileCmd, 0, ARRAY_SIZE(rmFileCmd));
  438. if((access("/Storage/OCPP/TransactionRelatedQueue",F_OK))!=-1)
  439. {
  440. //DEBUG_INFO("TransactionRelatedQueue exist.\n");
  441. }
  442. else
  443. {
  444. //DEBUG_INFO("TransactionRelatedQueue not exist\n");
  445. FILE *log = fopen("/Storage/OCPP/TransactionRelatedQueue", "w+");
  446. if(log == NULL)
  447. {
  448. DEBUG_INFO("Can't Create File TransactionRelatedQueue \n");
  449. return FALSE;
  450. }
  451. else
  452. {
  453. fclose(log);
  454. }
  455. }
  456. /* opening file for reading */
  457. fp = fopen("/Storage/OCPP/TransactionRelatedQueue" , "r");
  458. if(fp == NULL) {
  459. DEBUG_INFO("Error opening TransactionRelatedQueue file");
  460. return FALSE;
  461. }
  462. if( fgets (str, QUEUE_MESSAGE_LENGTH, fp)!=NULL ) {
  463. /* writing content to stdout */
  464. //DEBUG_INFO("str=%s",str);
  465. if ((str[0] == '\n')||(strcmp(str,"")==0))
  466. {
  467. DEBUG_INFO("It is a blank line");
  468. fclose(fp);
  469. memset(rmFileCmd, 0, ARRAY_SIZE(rmFileCmd));
  470. sprintf(rmFileCmd,"rm -f %s","/Storage/OCPP/TransactionRelatedQueue");
  471. system(rmFileCmd);
  472. result = FALSE;
  473. return result;
  474. }
  475. else
  476. {
  477. //puts(str);
  478. //----------------uuid--------------//
  479. loc = strstr(str, "\"");
  480. memset(sstr ,0, ARRAY_SIZE(sstr) );
  481. c = 0;
  482. while (loc[1+c] != '\"')
  483. {
  484. sstr[c] = loc[1+c];
  485. c++;
  486. }
  487. sstr[c] = '\0';
  488. //DEBUG_INFO("\n uuid:%s", sstr);
  489. //DEBUG_INFO("\n data:%s", str);
  490. strcpy(uuid,sstr);
  491. strcpy(data,str);
  492. result = TRUE;
  493. }
  494. }
  495. else
  496. {
  497. //DEBUG_INFO("queue is null\n");
  498. strcpy(uuid,"");
  499. strcpy(data,"");
  500. result = FALSE;
  501. }
  502. fclose(fp);
  503. return result;
  504. }
  505. int addq(char *uuid, char *data)
  506. {
  507. FILE *outfile;
  508. char rmFileCmd[100]={0};
  509. struct stat stats;
  510. stat("/Storage/OCPP", &stats);
  511. DEBUG_INFO("addq\n");
  512. // Check for directory existence
  513. if (S_ISDIR(stats.st_mode) == 1)
  514. {
  515. //DEBUG_INFO("\n OCPP directory exist \n");
  516. }
  517. else
  518. {
  519. //DEBUG_INFO("\n OCPP directory not exist, create dir \n");
  520. sprintf(rmFileCmd,"mkdir -p %s","/Storage/OCPP");
  521. system(rmFileCmd);
  522. }
  523. memset(rmFileCmd, 0, ARRAY_SIZE(rmFileCmd));
  524. if((access("/Storage/OCPP/TransactionRelatedQueue",F_OK))!=-1)
  525. {
  526. //DEBUG_INFO("TransactionRelatedQueue exist.\n");
  527. }
  528. else
  529. {
  530. //DEBUG_INFO("TransactionRelatedQueue not exist\n");
  531. FILE *log = fopen("/Storage/OCPP/TransactionRelatedQueue", "w+");
  532. if(log == NULL)
  533. {
  534. //DEBUG_INFO("Can't Create File TransactionRelatedQueue \n");
  535. return FALSE;
  536. }
  537. else
  538. {
  539. fclose(log);
  540. }
  541. }
  542. // open file for writing
  543. outfile = fopen ("/Storage/OCPP/TransactionRelatedQueue", "a");
  544. DEBUG_INFO("data = %s\n",data);
  545. fputs(data, outfile);
  546. fputs("\n", outfile);
  547. fclose (outfile);
  548. TransactionQueueNum = TransactionQueueNum + 1;
  549. if(OfflineTransaction == 1) // 0: no offline Transaction 1: offline Transaction
  550. {
  551. OfflineTransactionQueueNum = OfflineTransactionQueueNum + 1;
  552. }
  553. DEBUG_INFO("add queue end\n");
  554. return FALSE;
  555. }
  556. //---------------- delq(): delete the top item --------------//
  557. int delq()
  558. {
  559. char tempfile[] = "/Storage/OCPP/delqtemp.json";
  560. FILE *infile;
  561. FILE *outfile;
  562. int resultRename=0;
  563. char filename[60]={0};
  564. char rmFileCmd[100]={0};
  565. struct stat stats;
  566. stat("/Storage/OCPP", &stats);
  567. DEBUG_INFO("delq()\n");
  568. // Check for directory existence
  569. if (S_ISDIR(stats.st_mode) == 1)
  570. {
  571. //DEBUG_INFO("\n OCPP directory exist \n");
  572. }
  573. else
  574. {
  575. //DEBUG_INFO("\n OCPP directory not exist, create dir \n");
  576. sprintf(rmFileCmd,"mkdir -p %s","/Storage/OCPP");
  577. system(rmFileCmd);
  578. }
  579. memset(rmFileCmd, 0, ARRAY_SIZE(rmFileCmd));
  580. if((access("/Storage/OCPP/TransactionRelatedQueue",F_OK))!=-1)
  581. {
  582. //DEBUG_INFO("TransactionRelatedQueue exist.\n");
  583. }
  584. else
  585. {
  586. //DEBUG_INFO("TransactionRelatedQueue not exist\n");
  587. FILE *log = fopen("/Storage/OCPP/TransactionRelatedQueue", "w+");
  588. if(log == NULL)
  589. {
  590. //DEBUG_INFO("log is NULL\n");
  591. return 0;
  592. }
  593. else
  594. {
  595. fclose(log);
  596. }
  597. }
  598. // open file for writing
  599. strcpy(filename, "/Storage/OCPP/TransactionRelatedQueue");
  600. infile = fopen ("/Storage/OCPP/TransactionRelatedQueue", "r");
  601. outfile = fopen (tempfile, "w");
  602. /*检测到文件结束标识返回1,否则返回0。*/
  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("TransactionRelatedQueue 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. TransactionQueueNum = TransactionQueueNum - 1;
  628. TransactionMessageResend = 1;
  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("TransactionRelatedQueue file renamed successfully");
  645. }
  646. else
  647. {
  648. //DEBUG_INFO("Error: unable to rename the TransactionRelatedQueue file");
  649. }
  650. DEBUG_INFO("delq() end\n");
  651. }
  652. return 0;
  653. }
  654. int showqueue()
  655. {
  656. char rmFileCmd[100]={0};
  657. struct stat stats;
  658. stat("/Storage/OCPP", &stats);
  659. // Check for directory existence
  660. if (S_ISDIR(stats.st_mode) == 1)
  661. {
  662. //DEBUG_INFO("\n OCPP directory exist \n");
  663. }
  664. else
  665. {
  666. //DEBUG_INFO("\n OCPP directory not exist, create dir \n");
  667. sprintf(rmFileCmd,"mkdir -p %s","/Storage/OCPP");
  668. system(rmFileCmd);
  669. }
  670. memset(rmFileCmd, 0, ARRAY_SIZE(rmFileCmd));
  671. if((access("/Storage/OCPP/TransactionRelatedQueue",F_OK))!=-1)
  672. {
  673. //DEBUG_INFO("TransactionRelatedQueue exist.\n");
  674. }
  675. else
  676. {
  677. //DEBUG_INFO("TransactionRelatedQueue not exist\n");
  678. FILE *log = fopen("/Storage/OCPP/TransactionRelatedQueue", "w+");
  679. if(log == NULL)
  680. {
  681. DEBUG_INFO("log is NULL\n");
  682. return FALSE;
  683. }
  684. else
  685. {
  686. fclose(log);
  687. }
  688. }
  689. FILE *fp = fopen("/Storage/OCPP/TransactionRelatedQueue", "r");
  690. char line[QUEUE_MESSAGE_LENGTH]={0};
  691. // check if file exist (and you can open it) or not
  692. if (fp == NULL) {
  693. DEBUG_INFO("can open file TransactionRelatedQueue!");
  694. return FALSE;
  695. }
  696. TransactionQueueNum = 0; // the number of packets in queue
  697. while(fgets(line, sizeof line, fp) != NULL) {
  698. //DEBUG_INFO("%s\n", line);
  699. TransactionQueueNum = TransactionQueueNum + 1; //the number of packets in queue
  700. }
  701. fclose(fp);
  702. return TRUE;
  703. }
  704. int sentqueue(){
  705. FILE *fp;
  706. int result = FALSE; // 1: TRUE 0:FALSE
  707. int temptransactionId = 0, gettransactionId = 0;
  708. int tempconnectorId = 0;
  709. //int gunIndex = 0;
  710. char guid[37]={0};
  711. char tempdata[65]={0};
  712. char key_value[65]={0};
  713. int IsStopTransaction = FALSE;
  714. //int IsconnectorIdNULL = FALSE;
  715. //int IsIdtagNULL = FALSE;
  716. char str[QUEUE_MESSAGE_LENGTH]={0};
  717. char strcomposite[QUEUE_MESSAGE_LENGTH]={0};
  718. char rmFileCmd[100]={0};
  719. char connectorStr[2]={0};
  720. struct stat stats;
  721. char sstr[28]={0};
  722. unsigned char IdtagStr[20]={0};
  723. unsigned char timestampStr[30]={0};
  724. int tempmeterStart = 0;
  725. int tempreservationId = 0;
  726. int c = 0;
  727. char *loc;
  728. DEBUG_INFO("Sent queue.\n");
  729. stat("/Storage/OCPP", &stats);
  730. // Check for directory existence
  731. if (S_ISDIR(stats.st_mode) == 1)
  732. {
  733. //DEBUG_INFO("\n OCPP directory exist \n");
  734. }
  735. else
  736. {
  737. //DEBUG_INFO("\n OCPP directory not exist, create dir \n");
  738. sprintf(rmFileCmd,"mkdir -p %s","/Storage/OCPP");
  739. system(rmFileCmd);
  740. }
  741. memset(rmFileCmd, 0, ARRAY_SIZE(rmFileCmd));
  742. /* opening file for reading */
  743. fp = fopen("/Storage/OCPP/TransactionRelatedQueue" , "r");
  744. if(fp == NULL) {
  745. DEBUG_INFO("Error opening file");
  746. return FALSE;
  747. }
  748. if( fgets (str, QUEUE_MESSAGE_LENGTH, fp)!=NULL ) {
  749. //---- writing content to stdout ---//
  750. //*********************Start: StopTransaction***************************/
  751. loc = strstr(str, "StopTransaction");
  752. c = 0;
  753. memset(sstr ,0, ARRAY_SIZE(sstr) );
  754. if(loc != NULL)
  755. {
  756. IsStopTransaction = TRUE;
  757. }
  758. memset(connectorStr,0,ARRAY_SIZE(connectorStr));
  759. strncpy(connectorStr, str, 1);
  760. tempconnectorId = atoi(connectorStr);
  761. //*********************End: StopTransaction***************************/
  762. #if 0
  763. //*********************Start:connectorId***************************/
  764. loc = strstr(str, "connectorId");
  765. c = 0;
  766. memset(sstr ,0, ARRAY_SIZE(sstr) );
  767. if(loc != NULL)
  768. {
  769. while (loc[strlen("connectorId")+2+c] != ',')
  770. {
  771. sstr[c] = loc[strlen("connectorId")+2+c];
  772. c++;
  773. }
  774. sstr[c] = '\0';
  775. tempconnectorId = atoi(sstr);
  776. }
  777. // else
  778. // {
  779. // IsconnectorIdNULL = TRUE;
  780. // }
  781. //*********************End:connectorId***************************/
  782. #endif
  783. //*********************Start:idTag***************************/
  784. loc = strstr(str, "idTag");
  785. c = 0;
  786. memset(sstr ,0, ARRAY_SIZE(sstr) );
  787. if(loc != NULL)
  788. {
  789. while (loc[3+strlen("idTag")+c] != '\"')
  790. {
  791. sstr[c] = loc[3+strlen("idTag")+c];
  792. c++;
  793. }
  794. sstr[c] = '\0';
  795. strcpy((char*)IdtagStr, sstr);
  796. }
  797. // else
  798. // {
  799. // IsIdtagNULL = TRUE;
  800. // }
  801. //*********************End:idTag***************************/
  802. //*********************Start: StartTransaction***************************/
  803. loc = strstr(str, "StartTransaction");
  804. c = 0;
  805. memset(sstr ,0, ARRAY_SIZE(sstr) );
  806. if(loc != NULL)
  807. {
  808. // [2,0200000000000000000000000001584415776,StartTransaction,{connectorId:1,idTag:123,meterStart:100,reservationId:0,timestamp:2020-03-17T03:29:36Z}]
  809. //DEBUG_INFO("\n sent queue StartTransaction\n");
  810. if(tempconnectorId > 0)
  811. {
  812. sprintf(tempdata, "StartTransaction,%d", (tempconnectorId-1));
  813. }
  814. //GUID
  815. memset(sstr ,0, ARRAY_SIZE(sstr) );
  816. c=0;
  817. while (str[6+c] != '\"')
  818. {
  819. sstr[c] = str[6+c];
  820. c++;
  821. }
  822. sstr[c] = '\0';
  823. strcpy(guid, sstr);
  824. //Idtag
  825. loc = strstr(str, "idTag");
  826. memset(sstr ,0, ARRAY_SIZE(sstr) );
  827. c=0;
  828. while (loc[3+strlen("idTag")+c] != '\"')
  829. {
  830. sstr[c] = loc[3+strlen("idTag")+c];
  831. c++;
  832. }
  833. sstr[c] = '\0';
  834. strcpy((char*)IdtagStr, sstr);
  835. //meterStart
  836. loc = strstr(str, "meterStart");
  837. c = 0;
  838. memset(sstr ,0, ARRAY_SIZE(sstr) );
  839. if(loc != NULL)
  840. {
  841. while (loc[strlen("meterStart")+2+c] != ',')
  842. {
  843. sstr[c] = loc[strlen("meterStart")+2+c];
  844. c++;
  845. }
  846. sstr[c] = '\0';
  847. tempmeterStart = atoi(sstr);
  848. }
  849. //reservationId
  850. loc = strstr(str, "reservationId");
  851. c = 0;
  852. memset(sstr ,0, ARRAY_SIZE(sstr) );
  853. if(loc != NULL)
  854. {
  855. while (loc[strlen("reservationId")+2+c] != ',')
  856. {
  857. sstr[c] = loc[strlen("reservationId")+2+c];
  858. c++;
  859. }
  860. sstr[c] = '\0';
  861. tempreservationId = atoi(sstr);
  862. }
  863. //timestamp
  864. loc = strstr(str, "timestamp");
  865. memset(sstr ,0, ARRAY_SIZE(sstr) );
  866. c=0;
  867. while (loc[3+strlen("timestamp")+c] != '\"')
  868. {
  869. sstr[c] = loc[3+strlen("timestamp")+c];
  870. c++;
  871. }
  872. sstr[c] = '\0';
  873. strcpy((char*)timestampStr, sstr);
  874. if(hashmap_operation(1, guid, key_value) == TRUE)
  875. {
  876. //DEBUG_INFO("\n 1. sent queue guid=%s\n",guid);
  877. }
  878. else
  879. {
  880. hashmap_operation(0, guid, tempdata);
  881. FillStartTransaction(tempconnectorId, IdtagStr, tempmeterStart, tempreservationId, timestampStr);
  882. //DEBUG_INFO("\n 2. sent queue guid=%s\n",guid);
  883. }
  884. }
  885. //*********************End: StartTransaction***************************/
  886. //****************transactionId********************/
  887. c=0;
  888. loc = strstr(str, "transactionId");
  889. memset(sstr ,0, ARRAY_SIZE(sstr) );
  890. if(loc != NULL)
  891. {
  892. while ((loc[strlen("transactionId")+2+c] != '}') && (loc[strlen("transactionId")+2+c] != ','))
  893. {
  894. sstr[c] = loc[strlen("transactionId")+2+c];
  895. c++;
  896. }
  897. sstr[c] = '\0';
  898. temptransactionId = atoi(sstr);
  899. //gettransactionId = GetTransactionId(tempconnectorId, IdtagStr);
  900. //From StartTransaction取得IdTag, 存到 StartTransactionIdTagTemp,主要是 給Queue中StopTransaction使用(StartTransaction. StopTransaction不同卡號 ),取得真正的TransactionId
  901. GetStartTransactionIdTag(tempconnectorId-1);
  902. gettransactionId = GetTransactionId(tempconnectorId, (uint8_t *)StartTransactionIdTagTemp, IsStopTransaction);
  903. DEBUG_INFO("tempconnectorId = %d\n", tempconnectorId);
  904. DEBUG_INFO("temptransactionId = %d\n",temptransactionId);
  905. DEBUG_INFO("StartTransactionIdTagTemp = %s\n", StartTransactionIdTagTemp);
  906. DEBUG_INFO("gettransactionId = %d\n",gettransactionId);
  907. if((gettransactionId != 0)&&(temptransactionId != gettransactionId))
  908. {
  909. //replace transactionId of metervalue or stopTransaction
  910. strncpy(strcomposite,str, (loc-str)+2+strlen("transactionId"));
  911. sprintf(strcomposite+((loc-str)+2+strlen("transactionId")),"%d",gettransactionId);
  912. strcat(strcomposite, loc+strlen("transactionId")+2+c); // 把 字串中transactionId後面的字串串接到 strcomposite後面
  913. LWS_Send(strcomposite+2); // skip 2 bytes字串-> 槍號,
  914. }
  915. else
  916. {
  917. LWS_Send(str+2); // skip 2 bytes字串-> 槍號,
  918. gettransactionId = temptransactionId;
  919. }
  920. if(IsStopTransaction == TRUE)//if((IsStopTransaction == TRUE)&&(gettransactionId != 0))
  921. {
  922. SetTransactionIdZero(gettransactionId);
  923. }
  924. }
  925. else
  926. {
  927. LWS_Send(str+2);
  928. }
  929. result = TRUE;
  930. }
  931. else
  932. {
  933. result = FALSE;
  934. }
  935. fclose(fp);
  936. return result;
  937. }
  938. void* processTransactionQueue(void* data)
  939. {
  940. char frontUUID[100] ={0};
  941. char frontData[QUEUE_MESSAGE_LENGTH/*1024*4*/] ={0};
  942. int queueNotEmpty = FALSE;
  943. while(1)
  944. {
  945. if(!req_SendQueue && ((((time((time_t*)NULL) - startTimeQueue) > (TransactionMessageRetryIntervalGet()>10?TransactionMessageRetryIntervalGet():10))) || (isWebsocketSendable && ((time((time_t*)NULL) - startTimeQueue) >= ((counterQueueSent>=10)?10:1)))))
  946. {
  947. if(FirstHeartBeatResponse() == 1)
  948. {
  949. memset(frontUUID, 0, ARRAY_SIZE(frontUUID));
  950. memset(frontData, 0, ARRAY_SIZE(frontData));
  951. queueNotEmpty = FALSE;
  952. queueNotEmpty = queue_operation(QUEUE_OPERATION_SHOWFRONT,frontUUID, frontData);//showfront(frontUUID, frontData); ---> remove temporally
  953. if((queueNotEmpty == TRUE) && (GetOcppConnStatus() == 1)) //OcppConnStatus 0: disconnected, 1: connected
  954. {
  955. if(isWebsocketSendable)
  956. DEBUG_INFO("isWebsocketSendable on.\n");
  957. if((((time((time_t*)NULL) - startTimeQueue) > (TransactionMessageRetryIntervalGet()>10?TransactionMessageRetryIntervalGet():10))))
  958. DEBUG_INFO("Queue timer(%d) over spec(%d).\n", (time((time_t*)NULL) - startTimeQueue), TransactionMessageRetryIntervalGet());
  959. if((OfflineTransaction == 1) && (OfflineTransactionQueueNum != 0)) //OfflineTransaction 0: no offline Transaction 1: offline Transaction
  960. {
  961. DEBUG_INFO("Sent message from queue request off-line first.\n");
  962. req_SendQueue = 1; // 0: no packets to send 1: send the top packet in queue
  963. OfflineTransactionQueueNum = OfflineTransactionQueueNum - 1;
  964. if(OfflineTransactionQueueNum == 0)
  965. {
  966. OfflineTransaction = 0;
  967. }
  968. }
  969. else
  970. {
  971. if(TransactionMessageResend <= TransactionMessageAttemptsGet()) //
  972. {
  973. DEBUG_INFO("Sent message from queue request.\n");
  974. DEBUG_INFO("TransactionMessageResend = %d\n",TransactionMessageResend);
  975. req_SendQueue = 1;
  976. TransactionMessageResend += 1;
  977. }
  978. else
  979. {
  980. DEBUG_INFO("Transaction message resend(%d) over spec(%d) message abandon.\n", TransactionMessageResend, TransactionMessageAttemptsGet());
  981. queue_operation(QUEUE_OPERATION_DEL,"",""); //// delete item
  982. TransactionMessageResend = 1;
  983. }
  984. }
  985. }
  986. }
  987. if(GetOcppConnStatus() == 0)
  988. {
  989. if(queueNotEmpty == TRUE)
  990. {
  991. OfflineTransaction = 1; // 0: no offline Transaction 1: offline Transaction
  992. }
  993. }
  994. // Refresh queue timer
  995. startTimeQueue = time((time_t*)NULL);
  996. if(counterQueueSent >= 10)
  997. {
  998. counterQueueSent = 0;
  999. }
  1000. else
  1001. {
  1002. counterQueueSent += 1;
  1003. }
  1004. }
  1005. usleep(100000);
  1006. }
  1007. pthread_exit(NULL); //
  1008. return 0;
  1009. }
  1010. void* processWatchdog()
  1011. {
  1012. for(;;)
  1013. {
  1014. if(((time((time_t*)NULL) - startTimeDog) > 10) && (context != NULL))
  1015. {
  1016. DEBUG_INFO("LWS watch dog timeout.\n");
  1017. lws_cancel_service(context);
  1018. lws_cancel_service_pt(wsi_client);
  1019. if(counterLwsRestart >= 2)
  1020. {
  1021. DEBUG_INFO("LWS watch dog timeout over 3 count.\n");
  1022. system("pkill OcppBackend");
  1023. }
  1024. else
  1025. counterLwsRestart++;
  1026. startTimeDog = time((time_t*)NULL);
  1027. }
  1028. /*
  1029. if(system("pidof -s Module_PhBackend > /dev/null") != 0)
  1030. {
  1031. DEBUG_INFO("Module_PhBackend not running, restart it.\r\n");
  1032. system("/root/Module_PhBackend &");
  1033. }*/
  1034. sleep(1);
  1035. }
  1036. pthread_exit(NULL); //
  1037. }
  1038. void CheckTransactionPacket(char *uuid)
  1039. {
  1040. char frontUUID[100]={0};
  1041. char frontData[QUEUE_MESSAGE_LENGTH]={0};
  1042. int queueNotEmpty = FALSE;
  1043. int cmpResult = 0;
  1044. queueNotEmpty = queue_operation(QUEUE_OPERATION_SHOWFRONT,frontUUID, frontData);//showfront(frontUUID, frontData); ---> remove temporally
  1045. if(queueNotEmpty == TRUE)
  1046. {
  1047. cmpResult = strcmp(frontUUID, uuid);
  1048. if (cmpResult == 0)
  1049. {
  1050. DEBUG_INFO("Receive queue response match.\n");
  1051. queue_operation(QUEUE_OPERATION_DEL,"","");//delq(); ---> remove temporally
  1052. TransactionMessageResend = 1;
  1053. }
  1054. else
  1055. DEBUG_INFO("Receive queue response mismatch.\n");
  1056. }
  1057. }
  1058. int queue_operation(int type, char *frontUUID, char *frontData)
  1059. {
  1060. int result=0;
  1061. while(1)
  1062. {
  1063. if (!IsUsing )
  1064. {
  1065. IsUsing = TRUE;
  1066. if(type == QUEUE_OPERATION_SHOWQUEUE) // show items in queue
  1067. {
  1068. result = showqueue();
  1069. }
  1070. else if(type == QUEUE_OPERATION_SHOWFRONT) // show first item
  1071. {
  1072. result = showfront(frontUUID, frontData);
  1073. }
  1074. else if(type == QUEUE_OPERATION_DEL) // delete item
  1075. {
  1076. result = delq();
  1077. }
  1078. else if(type == QUEUE_OPERATION_SENT) // sent items in queue
  1079. {
  1080. result = sentqueue();
  1081. }
  1082. else if(type == QUEUE_OPERATION_ADD) // add items to the queue
  1083. {
  1084. // If queue file over size only add start * stop transaction message
  1085. if(!isQueueOverSize() || (strstr(frontData, "MeterValues") == NULL))
  1086. {
  1087. result = addq(frontUUID, frontData);
  1088. }
  1089. }
  1090. IsUsing = FALSE;
  1091. break;
  1092. }
  1093. usleep(500000);
  1094. }
  1095. return result;
  1096. }
  1097. int removeMessageSentFile(void)
  1098. {
  1099. char rmFileCmd[100]={0};
  1100. struct stat stats;
  1101. stat("/Storage/OCPP", &stats);
  1102. // Check for directory existence
  1103. if(S_ISDIR(stats.st_mode) == 1)
  1104. {
  1105. //DEBUG_INFO("\n OCPP directory exist \n");
  1106. }
  1107. else
  1108. {
  1109. DEBUG_INFO("\n directory not exist, create dir \n");
  1110. sprintf(rmFileCmd,"mkdir -p %s","/Storage/OCPP");
  1111. system(rmFileCmd);
  1112. }
  1113. memset(rmFileCmd, 0, ARRAY_SIZE(rmFileCmd));
  1114. if((access("/Storage/OCPP/MessageSent",F_OK))!=-1)
  1115. {
  1116. DEBUG_INFO("MessageSent file exist.\n");
  1117. sprintf(rmFileCmd,"rm -f %s","/Storage/OCPP/MessageSent");
  1118. system(rmFileCmd);
  1119. }
  1120. memset(rmFileCmd, 0, ARRAY_SIZE(rmFileCmd));
  1121. return 0;
  1122. }
  1123. static int changeChageWebSocketPingInterval = FALSE;
  1124. void ChageWebSocketPingInterval(int WebSocketPingInterval)
  1125. {
  1126. changeChageWebSocketPingInterval = TRUE;
  1127. }
  1128. //================================================
  1129. // Main process
  1130. //================================================
  1131. int main(void)
  1132. {
  1133. char rmFileCmd[100]={0};
  1134. struct stat stats;
  1135. DEBUG_INFO("Module_OcppBackend task initialization...\n");
  1136. if(ProcessShareMemory()== FAIL)
  1137. {
  1138. return FAIL;
  1139. }
  1140. // Check & create OCPP dir
  1141. stat("/Storage/OCPP", &stats);
  1142. if(S_ISDIR(stats.st_mode) != 1)
  1143. {
  1144. DEBUG_INFO("OCPP directory not exist, create dir \n");
  1145. sprintf(rmFileCmd,"mkdir -p /Storage/OCPP");
  1146. system(rmFileCmd);
  1147. }
  1148. memset(rmFileCmd, 0, ARRAY_SIZE(rmFileCmd));
  1149. // Create Process: Resend Transaction
  1150. pthread_create(&tid_ProcQueue, NULL, processTransactionQueue, NULL);
  1151. pthread_create(&tid_Watchdog, NULL, processWatchdog, NULL);
  1152. // Sqlite3 initial
  1153. sqlite3_config(SQLITE_CONFIG_URI,1);
  1154. if(sqlite3_open("file:/Storage/OCPP/charger.db", &db))
  1155. {
  1156. DEBUG_INFO( "Can't open database: %s\n", sqlite3_errmsg(db));
  1157. sqlite3_close( db );
  1158. exit(0);
  1159. }
  1160. else
  1161. {
  1162. DEBUG_INFO( "Opened database successfully\n");
  1163. }
  1164. //Create Table log buffer
  1165. if(sqlite3_exec(db, createsql, 0, 0, &errMsg) != SQLITE_OK)
  1166. {
  1167. DEBUG_INFO( "Create log buffer table error message: %s\n", errMsg);
  1168. return 0;
  1169. }
  1170. else
  1171. {
  1172. DEBUG_INFO( "Opened log buffer table successfully\n");
  1173. }
  1174. // Create Table OcppAuthCache
  1175. if(sqlite3_exec(db, sqlOcppAuthCache, 0, 0, &errMsg) != SQLITE_OK)
  1176. {
  1177. DEBUG_INFO( "Create OcppAuthCache error message: %s\n", errMsg);
  1178. return 0;
  1179. }
  1180. else
  1181. {
  1182. DEBUG_INFO( "Opened OcppAuthCache table successfully\n");
  1183. }
  1184. // Create Table OcppAuthLocal
  1185. if(sqlite3_exec(db, sqlOcppAuthLocal, 0, 0, &errMsg) != SQLITE_OK)
  1186. {
  1187. DEBUG_INFO( "Create Table OcppAuthLocal error %s\n",errMsg);
  1188. return 0;
  1189. }
  1190. else
  1191. {
  1192. DEBUG_INFO( "Opened OcppAuthLocal table successfully\n");
  1193. }
  1194. initialConfigurationTable();
  1195. removeMessageSentFile();
  1196. for(;;)
  1197. {
  1198. startTimeDog = time((time_t*)NULL);
  1199. counterLwsRestart = 0;
  1200. // Connect server
  1201. if(ConnectionEstablished==0) // Check InternetConn 0: disconnected, 1: connected
  1202. {
  1203. isWebsocketSendable = 1;
  1204. SetOcppConnStatus(FALSE);
  1205. SetServerSign(FALSE);
  1206. InitialSystemValue();
  1207. if((time((time_t*)NULL)-startTime.connect) >= 30)
  1208. {
  1209. if(GetInternetConn())
  1210. {
  1211. DEBUG_INFO("Server connecting...\n");
  1212. pthread_create(&tid_connectServer, NULL, ConnectWsServer, NULL);
  1213. }
  1214. startTime.connect=time((time_t*)NULL);
  1215. }
  1216. CheckSystemValue();
  1217. }
  1218. else
  1219. {
  1220. // Sign in
  1221. if((GetServerSign() == FALSE) &&
  1222. ( ((GetBootNotificationInterval() != 0) && ((time((time_t*)NULL)-startTime.bootNotification)>= GetBootNotificationInterval())) || ((time((time_t*)NULL)-startTime.bootNotification) >= defaultWaitingTime) ) )
  1223. {
  1224. sendBootNotificationRequest();
  1225. startTime.bootNotification=time((time_t*)NULL);
  1226. }
  1227. // On line operation
  1228. if(GetServerSign() == TRUE)
  1229. {
  1230. SetOcppConnStatus(TRUE);
  1231. // Send message from queue
  1232. if((req_SendQueue == 1) && isWebsocketSendable)
  1233. {
  1234. queue_operation(QUEUE_OPERATION_SENT, "", "");
  1235. req_SendQueue = 0;
  1236. }
  1237. // Check System Value
  1238. CheckSystemValue();
  1239. if(GetHeartBeatWithNOResponse() >= 3)
  1240. {
  1241. lws_context_destroy(context);
  1242. ConnectionEstablished = 0;
  1243. context = NULL;
  1244. SetHeartBeatWithNOResponse();
  1245. }
  1246. if((changeChageWebSocketPingInterval == TRUE) || (GetInternetConn() == 0))
  1247. {
  1248. DEBUG_INFO("GetInternetConn() = %d\n", GetInternetConn());
  1249. changeChageWebSocketPingInterval = FALSE;
  1250. lws_context_destroy(context);
  1251. ConnectionEstablished = 0;
  1252. context = NULL;
  1253. }
  1254. }
  1255. }
  1256. do
  1257. {
  1258. lws_service(context, 0);//timeout_ms
  1259. }while((SendBufLen>0) && (context!=NULL) && GetInternetConn());
  1260. usleep(100000);
  1261. }
  1262. pthread_join(tid_ProcQueue, NULL);
  1263. pthread_join(tid_Watchdog, NULL);
  1264. return FAIL;
  1265. }