Module_OcppBackend.c 45 KB

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