Module_OcppBackend.c 42 KB

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