Module_OcppBackend.c 41 KB

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