Module_OcppBackend.c 46 KB

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