Module_OcppBackend.c 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545
  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[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. 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. case LWS_CALLBACK_RECEIVE_PONG:
  318. DEBUG_INFO("LWS_CALLBACK_RECEIVE_PONG\n");
  319. break;
  320. default:
  321. DEBUG_INFO("Reason = %d\n", reason);
  322. break;
  323. }
  324. return 0;
  325. }
  326. static struct lws_protocols protocols[] =
  327. {
  328. {
  329. "ocpp1.6",
  330. OCPP16Callback,
  331. 65536,//65536,//10240,
  332. 65536,//65536,//10240,
  333. },
  334. {
  335. "ocpp2.0",
  336. OCPP16Callback,
  337. 65536,//65536,//10240,
  338. 65536,//65536,//10240,
  339. },
  340. {
  341. "ocpp1.6,ocpp2.0",
  342. OCPP16Callback,
  343. 65536,//65536,//10240,
  344. 65536,//65536,//10240,
  345. },
  346. {
  347. NULL, NULL, 0 /* End of list */
  348. }
  349. };
  350. void* ConnectWsServer(void* data) //int ConnectWsServer()
  351. {
  352. struct lws_context_creation_info ContextInfo;
  353. struct lws_client_connect_info ConnInfo;
  354. int use_ssl=0;
  355. // If internet available synchronize datetime with ntp server
  356. if(GetInternetConn() == 1)
  357. {
  358. system("pkill ntpd");
  359. DEBUG_INFO("NTP synchronize with Microsoft\n", system("/usr/sbin/ntpd -nqp time.windows.com &"));
  360. DEBUG_INFO("NTP synchronize with China\n", system("/usr/sbin/ntpd -nqp cn.ntp.org.cn &"));
  361. DEBUG_INFO("NTP synchronize with Taiwan\n", system("/usr/sbin/ntpd -nqp tock.stdtime.gov.tw &"));
  362. DEBUG_INFO("NTP synchronize with Europe\n", system("/usr/sbin/ntpd -nqp 0.europe.pool.ntp.org &"));
  363. }
  364. if(context!=NULL)
  365. {
  366. pthread_detach(pthread_self());
  367. lws_context_destroy(context);
  368. ConnectionEstablished=0;
  369. context = NULL;
  370. }
  371. memset(&ContextInfo, 0, sizeof(struct lws_context_creation_info));
  372. if((GetOcppServerURL()==0) || (GetOcppPort() == 0) || (GetOcppPath()==0))
  373. {
  374. DEBUG_ERROR("OCPP URL is NULL or OCPP Port is zero or OCPP Path is NULL\n");
  375. goto end;
  376. }
  377. if((strcmp(OcppProtocol,"ws")==0)&&(strlen(OcppProtocol)== 2))
  378. {
  379. DEBUG_INFO("Web socket is non-security mode.\n");
  380. use_ssl=0;
  381. }
  382. else if((strcmp(OcppProtocol,"wss")==0)&&(strlen(OcppProtocol)== 3))
  383. {
  384. DEBUG_INFO("Web socket is security mode.\n");
  385. use_ssl=1;
  386. }
  387. ContextInfo.port = CONTEXT_PORT_NO_LISTEN;
  388. ContextInfo.iface = NULL;
  389. ContextInfo.ssl_private_key_password = NULL;
  390. ContextInfo.ssl_cert_filepath = NULL;//"./ssl_key/client_cert.pem";
  391. ContextInfo.ssl_private_key_filepath = NULL;//"./ssl_key/client_key.pem";
  392. ContextInfo.ssl_ca_filepath = "/root/cacert.pem";//"./cacert.pem";
  393. ContextInfo.ssl_cipher_list = NULL; //use default one
  394. ContextInfo.gid = -1;
  395. ContextInfo.uid = -1;
  396. if(use_ssl)
  397. {
  398. ContextInfo.options |= LWS_SERVER_OPTION_DO_SSL_GLOBAL_INIT ;
  399. }
  400. ContextInfo.protocols = protocols;
  401. ContextInfo.timeout_secs = GetWebSocketPingInterval();//WebSocketPingInterval;//30;//9999;//30;
  402. ContextInfo.ws_ping_pong_interval = GetWebSocketPingInterval();//WebSocketPingInterval;//30;//0 for none, else interval in seconds
  403. ContextInfo.ka_time = 20;
  404. ContextInfo.keepalive_timeout = 5;
  405. ContextInfo.ka_probes = 2;
  406. ContextInfo.ka_interval = 5;
  407. context = lws_create_context(&ContextInfo);
  408. if (context == NULL)
  409. {
  410. DEBUG_ERROR("lws_create_context NG");
  411. goto end;
  412. }
  413. memset(&ConnInfo,0,sizeof(struct lws_client_connect_info));
  414. // fill up below information
  415. ConnInfo.context = context;
  416. ConnInfo.address=(const char *)OcppHost;
  417. DEBUG_INFO("ConnInfo.address: %s\n", ConnInfo.address);
  418. ConnInfo.port = GetOcppPort();
  419. DEBUG_INFO("ConnInfo.port: %d\n", ConnInfo.port);
  420. ConnInfo.path=(const char *)OcppPath;
  421. DEBUG_INFO("ConnInfo.path: %s\n", ConnInfo.path);
  422. char addr_port[256] = { 0 };
  423. sprintf(addr_port, "%s:%u", ConnInfo.address, (ConnInfo.port & 65535) );
  424. ConnInfo.host= addr_port; // ConnInfo.address;//lws_canonical_hostname(context);
  425. //ConnInfo.origin="origin";
  426. ConnInfo.protocol = protocols[0].name;
  427. ConnInfo.ietf_version_or_minus_one = -1;
  428. if(use_ssl)
  429. {
  430. #ifdef TLS_VALID_CERT_EXPIRED
  431. ConnInfo.ssl_connection = LCCSCF_USE_SSL | LCCSCF_ALLOW_SELFSIGNED | LCCSCF_SKIP_SERVER_CERT_HOSTNAME_CHECK;
  432. DEBUG_INFO("TLS does not allow expired certification.\n");
  433. #else
  434. ConnInfo.ssl_connection = LCCSCF_USE_SSL | LCCSCF_ALLOW_SELFSIGNED | LCCSCF_SKIP_SERVER_CERT_HOSTNAME_CHECK | LCCSCF_ALLOW_EXPIRED;
  435. DEBUG_INFO("TLS allow expired certification.\n");
  436. #endif
  437. }
  438. wsi_client = lws_client_connect_via_info(&ConnInfo);
  439. if (!wsi_client)
  440. {
  441. DEBUG_ERROR("lws_client_connect_via_info NG\n");
  442. goto end;
  443. }
  444. end:
  445. pthread_exit(NULL/*(void *) fname*/);
  446. }
  447. int isQueueOverSize()
  448. {
  449. FILE *fp;
  450. uint32_t file_size;
  451. uint8_t result = FALSE;
  452. fp = fopen("/Storage/OCPP/TransactionRelatedQueue" , "r");
  453. if(fp != NULL)
  454. {
  455. fseek(fp, 0L, SEEK_END);
  456. file_size = ftell(fp);
  457. if(file_size > (500*1024*1024))
  458. {
  459. result = TRUE;
  460. DEBUG_WARN("Queue file over size.\n");
  461. }
  462. fclose(fp);
  463. }
  464. return result;
  465. }
  466. int showfront(char *uuid, char *data)
  467. {
  468. FILE *fp;
  469. int result = FALSE; // 1: TRUE 0:FALSE
  470. char str[QUEUE_MESSAGE_LENGTH]={0};
  471. char sstr[50]={ 0 };//sstr[200]={ 0 };
  472. int c = 0;
  473. char *loc;
  474. char rmFileCmd[100]={0};
  475. struct stat stats;
  476. stat("/Storage/OCPP", &stats);
  477. // Check for directory existence
  478. if (S_ISDIR(stats.st_mode) == 1)
  479. {
  480. //DEBUG_INFO("\n OCPP directory exist \n");
  481. }
  482. else
  483. {
  484. DEBUG_INFO("\n OCPP directory not exist, create dir \n");
  485. sprintf(rmFileCmd,"mkdir -p %s","/Storage/OCPP");
  486. system(rmFileCmd);
  487. }
  488. memset(rmFileCmd, 0, ARRAY_SIZE(rmFileCmd));
  489. if((access("/Storage/OCPP/TransactionRelatedQueue",F_OK))!=-1)
  490. {
  491. //DEBUG_INFO("TransactionRelatedQueue exist.\n");
  492. }
  493. else
  494. {
  495. //DEBUG_INFO("TransactionRelatedQueue not exist\n");
  496. FILE *log = fopen("/Storage/OCPP/TransactionRelatedQueue", "w+");
  497. if(log == NULL)
  498. {
  499. DEBUG_INFO("Can't Create File TransactionRelatedQueue \n");
  500. return FALSE;
  501. }
  502. else
  503. {
  504. fclose(log);
  505. }
  506. }
  507. /* opening file for reading */
  508. fp = fopen("/Storage/OCPP/TransactionRelatedQueue" , "r");
  509. if(fp == NULL) {
  510. DEBUG_INFO("Error opening TransactionRelatedQueue file");
  511. return FALSE;
  512. }
  513. if( fgets (str, QUEUE_MESSAGE_LENGTH, fp)!=NULL ) {
  514. /* writing content to stdout */
  515. //DEBUG_INFO("str=%s",str);
  516. if ((str[0] == '\n')||(strcmp(str,"")==0))
  517. {
  518. DEBUG_INFO("It is a blank line");
  519. fclose(fp);
  520. memset(rmFileCmd, 0, ARRAY_SIZE(rmFileCmd));
  521. sprintf(rmFileCmd,"rm -f %s","/Storage/OCPP/TransactionRelatedQueue");
  522. system(rmFileCmd);
  523. result = FALSE;
  524. return result;
  525. }
  526. else
  527. {
  528. //puts(str);
  529. //----------------uuid--------------//
  530. loc = strstr(str, "\"");
  531. memset(sstr ,0, ARRAY_SIZE(sstr) );
  532. c = 0;
  533. while (loc[1+c] != '\"')
  534. {
  535. sstr[c] = loc[1+c];
  536. c++;
  537. }
  538. sstr[c] = '\0';
  539. //DEBUG_INFO("\n uuid:%s", sstr);
  540. //DEBUG_INFO("\n data:%s", str);
  541. strcpy(uuid,sstr);
  542. strcpy(data,str);
  543. result = TRUE;
  544. }
  545. }
  546. else
  547. {
  548. //DEBUG_INFO("queue is null\n");
  549. strcpy(uuid,"");
  550. strcpy(data,"");
  551. result = FALSE;
  552. }
  553. fclose(fp);
  554. return result;
  555. }
  556. int addq(char *uuid, char *data)
  557. {
  558. FILE *outfile;
  559. char rmFileCmd[100]={0};
  560. struct stat stats;
  561. stat("/Storage/OCPP", &stats);
  562. DEBUG_INFO("addq\n");
  563. // Check for directory existence
  564. if (S_ISDIR(stats.st_mode) == 1)
  565. {
  566. //DEBUG_INFO("\n OCPP directory exist \n");
  567. }
  568. else
  569. {
  570. //DEBUG_INFO("\n OCPP directory not exist, create dir \n");
  571. sprintf(rmFileCmd,"mkdir -p %s","/Storage/OCPP");
  572. system(rmFileCmd);
  573. }
  574. memset(rmFileCmd, 0, ARRAY_SIZE(rmFileCmd));
  575. if((access("/Storage/OCPP/TransactionRelatedQueue",F_OK))!=-1)
  576. {
  577. //DEBUG_INFO("TransactionRelatedQueue exist.\n");
  578. }
  579. else
  580. {
  581. //DEBUG_INFO("TransactionRelatedQueue not exist\n");
  582. FILE *log = fopen("/Storage/OCPP/TransactionRelatedQueue", "w+");
  583. if(log == NULL)
  584. {
  585. //DEBUG_INFO("Can't Create File TransactionRelatedQueue \n");
  586. return FALSE;
  587. }
  588. else
  589. {
  590. fclose(log);
  591. }
  592. }
  593. // open file for writing
  594. outfile = fopen ("/Storage/OCPP/TransactionRelatedQueue", "a");
  595. DEBUG_INFO("data = %s\n",data);
  596. fputs(data, outfile);
  597. fputs("\n", outfile);
  598. fclose (outfile);
  599. TransactionQueueNum = TransactionQueueNum + 1;
  600. if(OfflineTransaction == 1) // 0: no offline Transaction 1: offline Transaction
  601. {
  602. OfflineTransactionQueueNum = OfflineTransactionQueueNum + 1;
  603. }
  604. DEBUG_INFO("add queue end\n");
  605. return FALSE;
  606. }
  607. //---------------- delq(): delete the top item --------------//
  608. int delq()
  609. {
  610. char tempfile[] = "/Storage/OCPP/delqtemp.json";
  611. FILE *infile;
  612. FILE *outfile;
  613. int resultRename=0;
  614. char filename[60]={0};
  615. char rmFileCmd[100]={0};
  616. struct stat stats;
  617. stat("/Storage/OCPP", &stats);
  618. DEBUG_INFO("delq()\n");
  619. // Check for directory existence
  620. if (S_ISDIR(stats.st_mode) == 1)
  621. {
  622. //DEBUG_INFO("\n OCPP directory exist \n");
  623. }
  624. else
  625. {
  626. //DEBUG_INFO("\n OCPP directory not exist, create dir \n");
  627. sprintf(rmFileCmd,"mkdir -p %s","/Storage/OCPP");
  628. system(rmFileCmd);
  629. }
  630. memset(rmFileCmd, 0, ARRAY_SIZE(rmFileCmd));
  631. if((access("/Storage/OCPP/TransactionRelatedQueue",F_OK))!=-1)
  632. {
  633. //DEBUG_INFO("TransactionRelatedQueue exist.\n");
  634. }
  635. else
  636. {
  637. //DEBUG_INFO("TransactionRelatedQueue not exist\n");
  638. FILE *log = fopen("/Storage/OCPP/TransactionRelatedQueue", "w+");
  639. if(log == NULL)
  640. {
  641. //DEBUG_INFO("log is NULL\n");
  642. return 0;
  643. }
  644. else
  645. {
  646. fclose(log);
  647. }
  648. }
  649. // open file for writing
  650. strcpy(filename, "/Storage/OCPP/TransactionRelatedQueue");
  651. infile = fopen ("/Storage/OCPP/TransactionRelatedQueue", "r");
  652. outfile = fopen (tempfile, "w");
  653. /*检测到文件结束标识返回1,否则返回0。*/
  654. //DEBUG_INFO("feof(infile) =%d\n",feof(infile));
  655. int c;
  656. c = fgetc(infile);
  657. //printf("file c:%d\n",c);
  658. rewind(infile);
  659. if(c == EOF)
  660. {
  661. //DEBUG_INFO("TransactionRelatedQueue is NULL\n");
  662. fclose(infile);
  663. fclose(outfile);
  664. sprintf(rmFileCmd,"rm -f %s",tempfile);
  665. system(rmFileCmd);
  666. }
  667. else
  668. {
  669. char buf[QUEUE_MESSAGE_LENGTH]={0};
  670. int i = 0;
  671. //DEBUG_INFO("Orignal File is not NULL\n");
  672. while (fgets(buf, sizeof(buf), infile) != NULL)
  673. {
  674. //printf("Orignal File get strings \n");
  675. buf[strlen(buf) - 1] = '\0'; // eat the newline fgets() stores
  676. if(i==0)
  677. {
  678. TransactionQueueNum = TransactionQueueNum - 1;
  679. TransactionMessageResend = 1;
  680. DEBUG_INFO("delete the item\n");
  681. }
  682. if(i != 0)
  683. {
  684. fprintf(outfile,"%s\n", buf);
  685. }
  686. i = i + 1;
  687. }
  688. fclose(infile);
  689. fclose(outfile);
  690. sprintf(rmFileCmd,"rm -f %s",filename);
  691. system(rmFileCmd);
  692. resultRename = rename(tempfile, filename);
  693. if(resultRename == 0)
  694. {
  695. //DEBUG_INFO("TransactionRelatedQueue file renamed successfully");
  696. }
  697. else
  698. {
  699. //DEBUG_INFO("Error: unable to rename the TransactionRelatedQueue file");
  700. }
  701. DEBUG_INFO("delq() end\n");
  702. }
  703. return 0;
  704. }
  705. int showqueue()
  706. {
  707. char rmFileCmd[100]={0};
  708. struct stat stats;
  709. stat("/Storage/OCPP", &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");
  719. system(rmFileCmd);
  720. }
  721. memset(rmFileCmd, 0, ARRAY_SIZE(rmFileCmd));
  722. if((access("/Storage/OCPP/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/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/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", &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");
  790. system(rmFileCmd);
  791. }
  792. memset(rmFileCmd, 0, ARRAY_SIZE(rmFileCmd));
  793. /* opening file for reading */
  794. fp = fopen("/Storage/OCPP/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. /*
  1082. if(system("pidof -s Module_PhBackend > /dev/null") != 0)
  1083. {
  1084. DEBUG_INFO("Module_PhBackend not running, restart it.\r\n");
  1085. system("/root/Module_PhBackend &");
  1086. }*/
  1087. sleep(1);
  1088. }
  1089. pthread_exit(NULL); //
  1090. }
  1091. void CheckTransactionPacket(char *uuid)
  1092. {
  1093. char frontUUID[100]={0};
  1094. char frontData[QUEUE_MESSAGE_LENGTH]={0};
  1095. int queueNotEmpty = FALSE;
  1096. int cmpResult = 0;
  1097. queueNotEmpty = queue_operation(QUEUE_OPERATION_SHOWFRONT,frontUUID, frontData);//showfront(frontUUID, frontData); ---> remove temporally
  1098. if(queueNotEmpty == TRUE)
  1099. {
  1100. cmpResult = strcmp(frontUUID, uuid);
  1101. if (cmpResult == 0)
  1102. {
  1103. DEBUG_INFO("Receive queue response match.\n");
  1104. queue_operation(QUEUE_OPERATION_DEL,"","");//delq(); ---> remove temporally
  1105. TransactionMessageResend = 1;
  1106. }
  1107. else
  1108. DEBUG_INFO("Receive queue response mismatch.\n");
  1109. }
  1110. }
  1111. int queue_operation(int type, char *frontUUID, char *frontData)
  1112. {
  1113. int result=0;
  1114. while(1)
  1115. {
  1116. if (!IsUsing )
  1117. {
  1118. IsUsing = TRUE;
  1119. if(type == QUEUE_OPERATION_SHOWQUEUE) // show items in queue
  1120. {
  1121. result = showqueue();
  1122. }
  1123. else if(type == QUEUE_OPERATION_SHOWFRONT) // show first item
  1124. {
  1125. result = showfront(frontUUID, frontData);
  1126. }
  1127. else if(type == QUEUE_OPERATION_DEL) // delete item
  1128. {
  1129. result = delq();
  1130. }
  1131. else if(type == QUEUE_OPERATION_SENT) // sent items in queue
  1132. {
  1133. result = sentqueue();
  1134. }
  1135. else if(type == QUEUE_OPERATION_ADD) // add items to the queue
  1136. {
  1137. // If queue file over size only add start * stop transaction message
  1138. if(!isQueueOverSize() || (strstr(frontData, "MeterValues") == NULL))
  1139. {
  1140. result = addq(frontUUID, frontData);
  1141. }
  1142. }
  1143. IsUsing = FALSE;
  1144. break;
  1145. }
  1146. usleep(100000);
  1147. }
  1148. return result;
  1149. }
  1150. int removeMessageSentFile(void)
  1151. {
  1152. char rmFileCmd[100]={0};
  1153. struct stat stats;
  1154. stat("/Storage/OCPP", &stats);
  1155. // Check for directory existence
  1156. if(S_ISDIR(stats.st_mode) == 1)
  1157. {
  1158. //DEBUG_INFO("\n OCPP directory exist \n");
  1159. }
  1160. else
  1161. {
  1162. DEBUG_INFO("\n directory not exist, create dir \n");
  1163. sprintf(rmFileCmd,"mkdir -p %s","/Storage/OCPP");
  1164. system(rmFileCmd);
  1165. }
  1166. memset(rmFileCmd, 0, ARRAY_SIZE(rmFileCmd));
  1167. if((access("/Storage/OCPP/MessageSent",F_OK))!=-1)
  1168. {
  1169. DEBUG_INFO("MessageSent file exist.\n");
  1170. sprintf(rmFileCmd,"rm -f %s","/Storage/OCPP/MessageSent");
  1171. system(rmFileCmd);
  1172. }
  1173. memset(rmFileCmd, 0, ARRAY_SIZE(rmFileCmd));
  1174. return 0;
  1175. }
  1176. static int changeChageWebSocketPingInterval = FALSE;
  1177. void ChageWebSocketPingInterval(int WebSocketPingInterval)
  1178. {
  1179. changeChageWebSocketPingInterval = TRUE;
  1180. }
  1181. //================================================
  1182. // Main process
  1183. //================================================
  1184. int main(void)
  1185. {
  1186. char rmFileCmd[100]={0};
  1187. struct stat stats;
  1188. DEBUG_INFO("Module_OcppBackend task initialization...\n");
  1189. //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);
  1190. if(ProcessShareMemory()== FAIL)
  1191. {
  1192. return FAIL;
  1193. }
  1194. // Check & create OCPP dir
  1195. stat("/Storage/OCPP", &stats);
  1196. if(S_ISDIR(stats.st_mode) != 1)
  1197. {
  1198. DEBUG_INFO("OCPP directory not exist, create dir \n");
  1199. sprintf(rmFileCmd,"mkdir -p /Storage/OCPP");
  1200. system(rmFileCmd);
  1201. }
  1202. memset(rmFileCmd, 0, ARRAY_SIZE(rmFileCmd));
  1203. // Create Process: Resend Transaction
  1204. pthread_create(&tid_ProcQueue, NULL, processTransactionQueue, NULL);
  1205. pthread_create(&tid_Watchdog, NULL, processWatchdog, NULL);
  1206. // Sqlite3 initial
  1207. sqlite3_config(SQLITE_CONFIG_URI,1);
  1208. if(sqlite3_open("file:/Storage/OCPP/charger.db", &db))
  1209. {
  1210. DEBUG_INFO( "Can't open database: %s\n", sqlite3_errmsg(db));
  1211. sqlite3_close( db );
  1212. exit(0);
  1213. }
  1214. else
  1215. {
  1216. DEBUG_INFO( "Opened database successfully\n");
  1217. }
  1218. //Create Table log buffer
  1219. if(sqlite3_exec(db, createsql, 0, 0, &errMsg) != SQLITE_OK)
  1220. {
  1221. DEBUG_INFO( "Create log buffer table error message: %s\n", errMsg);
  1222. return 0;
  1223. }
  1224. else
  1225. {
  1226. DEBUG_INFO( "Opened log buffer table successfully\n");
  1227. }
  1228. // Create Table OcppAuthCache
  1229. if(sqlite3_exec(db, sqlOcppAuthCache, 0, 0, &errMsg) != SQLITE_OK)
  1230. {
  1231. DEBUG_INFO( "Create OcppAuthCache error message: %s\n", errMsg);
  1232. return 0;
  1233. }
  1234. else
  1235. {
  1236. DEBUG_INFO( "Opened OcppAuthCache table successfully\n");
  1237. }
  1238. // Create Table OcppAuthLocal
  1239. if(sqlite3_exec(db, sqlOcppAuthLocal, 0, 0, &errMsg) != SQLITE_OK)
  1240. {
  1241. DEBUG_INFO( "Create Table OcppAuthLocal error %s\n",errMsg);
  1242. return 0;
  1243. }
  1244. else
  1245. {
  1246. DEBUG_INFO( "Opened OcppAuthLocal table successfully\n");
  1247. }
  1248. initialConfigurationTable();
  1249. removeMessageSentFile();
  1250. for(;;)
  1251. {
  1252. startTimeDog = time((time_t*)NULL);
  1253. counterLwsRestart = 0;
  1254. // Connect server
  1255. if(ConnectionEstablished==0) // Check InternetConn 0: disconnected, 1: connected
  1256. {
  1257. isWebsocketSendable = 1;
  1258. SetOcppConnStatus(FALSE);
  1259. SetServerSign(FALSE);
  1260. InitialSystemValue();
  1261. if((time((time_t*)NULL)-startTime.connect) >= 30)
  1262. {
  1263. DEBUG_INFO("Server connecting...\n");
  1264. pthread_create(&tid_connectServer, NULL, ConnectWsServer, NULL);
  1265. startTime.connect=time((time_t*)NULL);
  1266. }
  1267. CheckSystemValue();
  1268. }
  1269. else
  1270. {
  1271. // Sign in
  1272. if((GetServerSign() == FALSE) &&
  1273. ( ((GetBootNotificationInterval() != 0) && ((time((time_t*)NULL)-startTime.bootNotification)>= GetBootNotificationInterval())) || ((time((time_t*)NULL)-startTime.bootNotification) >= defaultWaitingTime) ) )
  1274. {
  1275. sendBootNotificationRequest();
  1276. startTime.bootNotification=time((time_t*)NULL);
  1277. }
  1278. // On line operation
  1279. if(GetServerSign() == TRUE)
  1280. {
  1281. // Send message from queue
  1282. if((req_SendQueue == 1) && isWebsocketSendable)
  1283. {
  1284. queue_operation(QUEUE_OPERATION_SENT, "", "");
  1285. req_SendQueue = 0;
  1286. }
  1287. // Check System Value
  1288. CheckSystemValue();
  1289. if(GetHeartBeatWithNOResponse() >= 30)
  1290. {
  1291. lws_context_destroy(context);
  1292. ConnectionEstablished = 0;
  1293. context = NULL;
  1294. SetHeartBeatWithNOResponse();
  1295. DEBUG_WARN("Heartbeat re-send over 30 count.\n");
  1296. }
  1297. if((changeChageWebSocketPingInterval == TRUE) || (GetOcppConnStatus() == 0))
  1298. {
  1299. DEBUG_INFO("GetOcppConnStatus() = %d\n", GetOcppConnStatus());
  1300. if(changeChageWebSocketPingInterval)
  1301. {
  1302. DEBUG_INFO("Websocket ping interval changed request.\n");
  1303. changeChageWebSocketPingInterval = FALSE;
  1304. }
  1305. lws_context_destroy(context);
  1306. ConnectionEstablished = 0;
  1307. context = NULL;
  1308. }
  1309. }
  1310. }
  1311. do
  1312. {
  1313. lws_service(context, 0);//timeout_ms
  1314. }while((SendBufLen>0) && (context!=NULL) && GetInternetConn());
  1315. usleep(100000);
  1316. }
  1317. pthread_join(tid_ProcQueue, NULL);
  1318. pthread_join(tid_Watchdog, NULL);
  1319. return FAIL;
  1320. }