Module_OcppBackend.c 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443
  1. #include <sys/time.h>
  2. #include <sys/timeb.h>
  3. #include <sys/types.h>
  4. #include <sys/stat.h>
  5. #include <sys/ioctl.h>
  6. #include <sys/socket.h>
  7. #include <sys/ipc.h>
  8. #include <sys/shm.h>
  9. #include <sys/shm.h>
  10. #include <sys/mman.h>
  11. #include <linux/wireless.h>
  12. #include <linux/sockios.h>
  13. #include <linux/socket.h>
  14. #include <arpa/inet.h>
  15. #include <netinet/in.h>
  16. #include <unistd.h>
  17. #include <stdarg.h>
  18. #include <stdio.h>
  19. #include <stdlib.h>
  20. #include <unistd.h>
  21. #include <fcntl.h>
  22. #include <termios.h>
  23. #include <errno.h>
  24. #include <errno.h>
  25. #include <string.h>
  26. #include <time.h>
  27. #include <ctype.h>
  28. #include <ifaddrs.h>
  29. #include "libwebsockets.h"
  30. #include <lws_config.h>
  31. #include "hashmap.h"
  32. #include "SystemLogMessage.h"
  33. #include "ShareMemory.h"
  34. #include <pthread.h>
  35. #include "MessageHandler.h"
  36. #include "sqlite3.h"
  37. #define Debug
  38. //#define ARRAY_SIZE(A) (sizeof(A) / sizeof(A[0]))
  39. #define PASS 1
  40. #define FAIL -1
  41. typedef enum boolean { FALSE, TRUE } BOOL;
  42. struct lws *wsi_client;
  43. struct lws_context *context;
  44. static int sendbuffer = 0;
  45. extern int server_sign;
  46. //extern int TransactionMessageAttemptsValue;
  47. //extern int TransactionMessageRetryIntervalValue;
  48. //extern int server_pending;
  49. //extern struct OCPP16Data *ShmOCPP16Data;
  50. extern void CheckSystemValue(void);
  51. //extern int TransactionMessageAttemptsGet(void);
  52. extern int FirstHeartBeatResponse(void);
  53. extern void OCPP_get_TableAuthlocalAllData(void);
  54. extern int TransactionMessageAttemptsGet(void);
  55. extern int TransactionMessageRetryIntervalGet(void);
  56. extern int GetOcppConnStatus(void);
  57. extern void SetOcppConnStatus(uint8_t status);
  58. extern int GetHeartBeatWithNOResponse(void);
  59. extern void SetHeartBeatWithNOResponse(void);
  60. //extern int InternetDisconnect(void);
  61. pthread_mutex_t mutex1 = PTHREAD_MUTEX_INITIALIZER;
  62. pthread_mutex_t lock_sentData = PTHREAD_MUTEX_INITIALIZER;
  63. pthread_mutex_t receiveData = PTHREAD_MUTEX_INITIALIZER;
  64. //struct json_object *parsed_json;
  65. //extern struct node Node;
  66. //==========================================
  67. // Function prototype
  68. //==========================================
  69. void trim(char *s);
  70. int mystrcmp(char *p1,char *p2);
  71. void substr(char *dest, const char* src, unsigned int start, unsigned int cnt);
  72. void getSubStr(char *dest, char* src, char *split, int idx);
  73. void split(char **arr, char *str, const char *del);
  74. int strpos(char *source, char *substr, int skip);
  75. int strposs(char *source, char *substr, int idx);
  76. char *random_uuid( char buf[37] );
  77. static int OCPP16Callback(struct lws *wsi, enum lws_callback_reasons reason, void *user, void *in, size_t len);
  78. char * strchr(const char *p, int ch);
  79. void ReceivedMessage(void *in, size_t len);
  80. struct StartTime
  81. {
  82. unsigned int connect;
  83. unsigned int bootNotification;
  84. }startTime;
  85. #if 0
  86. unsigned char *SendBuffer;
  87. int SendBufLen=(1024*4);//(1024*3);
  88. #endif
  89. int SendBufLen=(1024*4);//(1024*3);
  90. unsigned char SendBuffer[1024*4]={0};
  91. static int ConnectionEstablished=0;
  92. static int TransactionMessageResend = 1;
  93. static int TransactionQueueInterval = 10;//3; // TransactionMessageAttempts
  94. static int TransactionQueueNum = 0;
  95. static int OfflineTransaction = 0;
  96. int defaultWaitingTime = 10; //10 second
  97. extern int BootNotificationInterval;
  98. //char guid[37];
  99. //map_t hashMap;
  100. //data_struct_t* mapItem; --- remove for temporally
  101. //data_struct_t mapItem[0]={0};
  102. sqlite3 *db;
  103. char *errMsg = NULL;
  104. static char *createsql = "CREATE TABLE IF NOT EXISTS log_buffer("
  105. "idx integer primary key,"
  106. "user_id text,"
  107. "cmd_sn text,"
  108. "charger_id text,"
  109. "gun_type text,"
  110. "gun_no text,"
  111. "rfid_no text,"
  112. "stime text,"
  113. "etime text,"
  114. "time_len text,"
  115. "s_soc text,"
  116. "e_soc text,"
  117. "stop_reason text,"
  118. "power text,"
  119. "meter_before text,"
  120. "meter_after text,"
  121. "charge_price text,"
  122. "reserve text,"
  123. "surplus_before text,"
  124. "surplus_after text,"
  125. "service_price text,"
  126. "is_pay text,"
  127. "charge_strategy text,"
  128. "charge_parameter text,"
  129. "vin text,"
  130. "vehicle_no text,"
  131. "start_method text,"
  132. "card_type text,"
  133. "is_upload text,"
  134. "guid text UNIQUE,"
  135. "is_buf2OK text);";
  136. #if 0
  137. static char *createsChargingRecordsql = "CREATE TABLE IF NOT EXISTS ChargingRecord("
  138. "idx integer primary key,"
  139. "gun_type text,"
  140. "connectorId text,"
  141. "idTag text,"
  142. "transactionId text,"
  143. "stime text,"
  144. "etime text,"
  145. "time_len text,"
  146. "s_soc text,"
  147. "e_soc text,"
  148. "stop_reason text,"
  149. "power text,"
  150. "meter_before text,"
  151. "meter_after text,"
  152. "reservationId text,"
  153. "guid text UNIQUE);";
  154. //"is_buf2OK text);";
  155. #endif
  156. static char *sqlOcppAuthCache = "create table if not exists ocpp_auth_cache (idx integer primary key,"
  157. "idtag text UNIQUE,"
  158. "parent_idtag text,"
  159. "expir_date text,"
  160. "status text);";
  161. static char *sqlOcppAuthLocal = "create table if not exists ocpp_auth_local (idx integer primary key,"
  162. "idtag text UNIQUE,"
  163. "parent_idtag text,"
  164. "expir_date text,"
  165. "status text,"
  166. "version text);";
  167. #if 0
  168. static char *sqlInitialOcppAuthLocal = "insert or replace into ocpp_auth_local(idtag, parent_idtag, expir_date, status, version) values('PaHdImHiOnNG','none','2099-12-31T23:59:59.999Z','Accepted','0')";
  169. #endif
  170. int DiffTimeb(struct timeb ST, struct timeb ET)
  171. {
  172. //return milli-second
  173. unsigned int StartTime,StopTime;
  174. StartTime=(unsigned int)ST.time;
  175. StopTime=(unsigned int)ET.time;
  176. return (StopTime-StartTime)*1000+ET.millitm-ST.millitm;
  177. }
  178. //=================================
  179. // Common routine
  180. //=================================
  181. void trim(char *s)
  182. {
  183. int i=0, j, k, l=0;
  184. while((s[i]==' ')||(s[i]=='\t')||(s[i]=='\n'))
  185. i++;
  186. j = strlen(s)-1;
  187. while((s[j]==' ')||(s[j]=='\t')||(s[j]=='\n'))
  188. j--;
  189. if(i==0 && j==strlen(s)-1) { }
  190. else if(i==0) s[j+1] = '\0';
  191. else {
  192. for(k=i; k<=j; k++) s[l++] = s[k];
  193. s[l] = '\0';
  194. }
  195. }
  196. int mystrcmp(char *p1,char *p2)
  197. {
  198. while(*p1==*p2)
  199. {
  200. if(*p1=='\0' || *p2=='\0')
  201. break;
  202. p1++;
  203. p2++;
  204. }
  205. if(*p1=='\0' && *p2=='\0')
  206. return(PASS);
  207. else
  208. return(FAIL);
  209. }
  210. void substr(char *dest, const char* src, unsigned int start, unsigned int cnt)
  211. {
  212. strncpy(dest, src + start, cnt);
  213. dest[cnt] = 0;
  214. }
  215. void getSubStr(char *dest, char* src, char *split, int idx)
  216. {
  217. int start = (strposs(src,",",idx)+1);
  218. int cnt = (strposs(src,",",idx+1)-2)-(strposs(src,",",idx)+1);
  219. strncpy(dest, src + start, cnt);
  220. dest[cnt] = 0;
  221. }
  222. void split(char **arr, char *str, const char *del)
  223. {
  224. char *s = strtok(str, del);
  225. while(s != NULL)
  226. {
  227. *arr++ = s;
  228. s = strtok(NULL, del);
  229. }
  230. }
  231. int strpos(char *source, char *substr, int skip)
  232. {
  233. char stack[strlen(source)];
  234. strncpy(stack, source+skip, strlen(source)-skip);
  235. char *p = strstr(stack, substr);
  236. if (p)
  237. return p - stack+skip;
  238. return -1;
  239. }
  240. int strposs(char *source, char *substr, int idx)
  241. {
  242. char stack[strlen(source)];
  243. int result=0;
  244. int count=0;
  245. while(count<=idx)
  246. {
  247. memset(stack,0,sizeof stack);
  248. strncpy(stack, source+result, strlen(source)-result);
  249. int loc = strcspn(stack, substr);
  250. if(loc>0)
  251. result += (loc+1);
  252. else
  253. result = -1;
  254. count++;
  255. }
  256. return result;
  257. }
  258. char *random_uuid( char buf[37] )
  259. {
  260. const char *c = "89ab";
  261. char *p = buf;
  262. int n;
  263. for( n = 0; n < 16; ++n )
  264. {
  265. int b = rand()%255;
  266. switch( n )
  267. {
  268. case 6:
  269. sprintf(p, "4%x", b%15 );
  270. break;
  271. case 8:
  272. sprintf(p, "%c%x", c[rand()%strlen(c)], b%15 );
  273. break;
  274. default:
  275. sprintf(p, "%02x", b);
  276. break;
  277. }
  278. p += 2;
  279. switch( n )
  280. {
  281. case 3:
  282. case 5:
  283. case 7:
  284. case 9:
  285. *p++ = '-';
  286. break;
  287. }
  288. }
  289. *p = 0;
  290. return buf;
  291. }
  292. //==========================================
  293. // Web socket tranceive routine
  294. //==========================================
  295. int SendData(struct lws *wsi)
  296. {
  297. int n;
  298. int len;
  299. unsigned char out[LWS_SEND_BUFFER_PRE_PADDING + 4096 + LWS_SEND_BUFFER_POST_PADDING] = {0};
  300. len = strlen((char *)SendBuffer);
  301. if(len == 0)
  302. return 0;
  303. memcpy (out + LWS_SEND_BUFFER_PRE_PADDING, SendBuffer, len );
  304. DEBUG_OCPPMESSAGE_INFO(" SendData= %s\n", out + LWS_SEND_BUFFER_PRE_PADDING);
  305. n = lws_write(wsi, out + LWS_SEND_BUFFER_PRE_PADDING, len, LWS_WRITE_TEXT);
  306. memset(SendBuffer, 0, len);
  307. return n;
  308. }
  309. static int OCPP16Callback(struct lws *wsi, enum lws_callback_reasons reason, void *user, void *in, size_t len)
  310. {
  311. switch (reason)
  312. {
  313. case LWS_CALLBACK_PROTOCOL_INIT:
  314. #ifdef SystemLogMessage
  315. DEBUG_INFO("LWS_CALLBACK_PROTOCOL_INIT\n");
  316. #endif
  317. break;
  318. case LWS_CALLBACK_CLIENT_FILTER_PRE_ESTABLISH:
  319. #ifdef SystemLogMessage
  320. DEBUG_INFO("LWS_CALLBACK_CLIENT_FILTER_PRE_ESTABLISH\n");
  321. #endif
  322. break;
  323. case LWS_CALLBACK_CLOSED_CLIENT_HTTP:
  324. #ifdef SystemLogMessage
  325. DEBUG_INFO("LWS_CALLBACK_CLOSED_CLIENT_HTTP\n");
  326. #endif
  327. break;
  328. case LWS_CALLBACK_WSI_DESTROY:
  329. #ifdef SystemLogMessage
  330. DEBUG_INFO("LWS_CALLBACK_WSI_DESTROY\n");
  331. #endif
  332. server_sign = FALSE;
  333. break;
  334. case LWS_CALLBACK_LOCK_POLL:
  335. #ifdef SystemLogMessage
  336. //DEBUG_INFO("LWS_CALLBACK_LOCK_POLL\n");
  337. #endif
  338. break;
  339. case LWS_CALLBACK_ADD_POLL_FD:
  340. #ifdef SystemLogMessage
  341. DEBUG_INFO("LWS_CALLBACK_ADD_POLL_FD\n");
  342. #endif
  343. break;
  344. case LWS_CALLBACK_DEL_POLL_FD:
  345. #ifdef SystemLogMessage
  346. DEBUG_INFO("LWS_CALLBACK_DEL_POLL_FD\n");
  347. #endif
  348. break;
  349. case LWS_CALLBACK_UNLOCK_POLL:
  350. #ifdef SystemLogMessage
  351. //DEBUG_INFO("LWS_CALLBACK_UNLOCK_POLL\n");
  352. #endif
  353. break;
  354. case LWS_CALLBACK_CHANGE_MODE_POLL_FD:
  355. #ifdef SystemLogMessage
  356. //DEBUG_INFO("LWS_CALLBACK_CHANGE_MODE_POLL_FD\n");
  357. #endif
  358. break;
  359. case LWS_CALLBACK_WSI_CREATE:
  360. #ifdef SystemLogMessage
  361. DEBUG_INFO("LWS_CALLBACK_WSI_CREATE\n");
  362. #endif
  363. break;
  364. case LWS_CALLBACK_GET_THREAD_ID:
  365. //#ifdef SystemLogMessage
  366. //DEBUG_INFO("LWS_CALLBACK_GET_THREAD_ID\n");
  367. //#endif
  368. break;
  369. case LWS_CALLBACK_CLIENT_APPEND_HANDSHAKE_HEADER:
  370. #ifdef SystemLogMessage
  371. DEBUG_INFO("LWS_CALLBACK_CLIENT_APPEND_HANDSHAKE_HEADER\n");
  372. #endif
  373. break;
  374. case LWS_CALLBACK_CLIENT_ESTABLISHED://3
  375. #ifdef SystemLogMessage
  376. DEBUG_INFO("LWS_CALLBACK_CLIENT_ESTABLISHED\n");
  377. #endif
  378. //connected
  379. ConnectionEstablished=1;
  380. break;
  381. case LWS_CALLBACK_CLIENT_CONNECTION_ERROR://1
  382. #ifdef Debug
  383. DEBUG_ERROR("LWS_CALLBACK_CLIENT_CONNECTION_ERROR:%s\n",in);
  384. #endif
  385. #ifdef SystemLogMessage
  386. DEBUG_ERROR("LWS_CALLBACK_CLIENT_CONNECTION_ERROR\n");
  387. #endif
  388. //disconnected
  389. ConnectionEstablished=0;
  390. break;
  391. case LWS_CALLBACK_CLOSED://4
  392. #ifdef SystemLogMessage
  393. DEBUG_INFO("LWS_CALLBACK_CLOSED\n");
  394. ConnectionEstablished=0;
  395. #endif
  396. //disconnected
  397. break;
  398. case LWS_CALLBACK_CLIENT_WRITEABLE://10
  399. //if(need to send message and its relevant data already store into SendBuffer)
  400. #ifdef SystemLogMessage
  401. DEBUG_INFO("LWS_CALLBACK_CLIENT_WRITEABLE\n");
  402. #endif
  403. SendData(wsi);
  404. break;
  405. case LWS_CALLBACK_CLIENT_RECEIVE://8
  406. ((char *)in)[len] = '\0';
  407. DEBUG_OCPPMESSAGE_INFO("Original Receive %s\n", (char *)in);
  408. char tempin[1024*4]={0};
  409. int c = 0;
  410. char *loc;
  411. char sstr[600]={ 0 };
  412. //**********Receive Message**********/
  413. c = 0;
  414. loc = strstr((const char *)in, "][2,");
  415. if(loc == NULL)
  416. {
  417. loc = strstr((const char *)in, "][3,");
  418. if(loc == NULL)
  419. {
  420. loc = strstr((const char *)in, "][4,");
  421. }
  422. }
  423. //DEBUG_INFO("loc=%s\n",loc);
  424. memset(sstr ,0, sizeof(sstr) );
  425. if(loc != NULL)
  426. {
  427. DEBUG_INFO("there are continuous second packet []\n");
  428. while (loc[1+c] != '\0')
  429. {
  430. sstr[c] = loc[1+c];
  431. c++;
  432. }
  433. sstr[c] = '\0';
  434. strcpy(tempin, sstr);
  435. DEBUG_INFO("Final Receive: %s\n", tempin);
  436. }
  437. else
  438. {
  439. strcpy(tempin,(char *)in);
  440. //DEBUG_INFO("tempin: %s\n", tempin);
  441. }
  442. //#ifdef SystemLogMessage
  443. //DEBUG_INFO("LWS_CALLBACK_CLIENT_RECEIVE, RX length: %d\n", (int)len);
  444. //#endif
  445. //ReceivedMessage(in, len); --- remove temporally
  446. ReceivedMessage((void *)tempin, len);
  447. break;
  448. default:
  449. #ifdef Debug
  450. DEBUG_INFO("OCPP16Callback:reason=%d\n", reason);
  451. #endif
  452. break;
  453. }
  454. return 0;
  455. }
  456. static struct lws_protocols protocols[] = {
  457. {
  458. "ocpp1.6",
  459. OCPP16Callback,
  460. 10240,
  461. 10240,
  462. },
  463. {
  464. "ocpp1.6",
  465. OCPP16Callback,
  466. 10240,
  467. 10240,
  468. },
  469. {
  470. NULL, NULL, 0 /* End of list */
  471. }
  472. };
  473. int ConnectWsServer()
  474. {
  475. int result = PASS;
  476. struct lws_context_creation_info ContextInfo;
  477. struct lws_client_connect_info ConnInfo;
  478. int use_ssl=0;
  479. //lws_set_log_level(LLL_PARSER | LLL_HEADER, NULL);
  480. if(context!=NULL)
  481. lws_context_destroy(context);
  482. memset(&ContextInfo, 0, sizeof(struct lws_context_creation_info));
  483. ContextInfo.port = CONTEXT_PORT_NO_LISTEN;
  484. ContextInfo.iface = NULL;
  485. ContextInfo.ssl_private_key_password = NULL;
  486. ContextInfo.ssl_cert_filepath = NULL;
  487. ContextInfo.ssl_private_key_filepath = NULL;
  488. ContextInfo.ssl_ca_filepath = "/root/cacert.pem";
  489. ContextInfo.ssl_cipher_list = NULL; //use default one
  490. ContextInfo.gid = -1;
  491. ContextInfo.uid = -1;
  492. if(use_ssl)
  493. ContextInfo.options |= LWS_SERVER_OPTION_DO_SSL_GLOBAL_INIT;
  494. ContextInfo.protocols = protocols;
  495. ContextInfo.timeout_secs = 9999;//30;
  496. //if(ping pong enabled)
  497. ContextInfo.ws_ping_pong_interval = 30;//0 for none, else interval in seconds
  498. context = lws_create_context(&ContextInfo);
  499. if (context == NULL)
  500. {
  501. #ifdef SystemLogMessage
  502. DEBUG_ERROR("lws_create_context NG");
  503. #endif
  504. result = FAIL;
  505. }
  506. memset(&ConnInfo,0,sizeof(struct lws_client_connect_info));
  507. // fill up below information
  508. ConnInfo.context = context;
  509. if((strcmp((const char *)GetOcppServerURL(),"")==0) || (GetOcppPort() == 0) || (strcmp((const char *)GetOcppPath(),"")==0) )
  510. {
  511. result = FAIL;
  512. DEBUG_ERROR("OCPP URL is NULL or OCPP Port is zero or OCPP Path is NULL\n");
  513. return result;
  514. }
  515. ConnInfo.address=(const char *)GetOcppServerURL();
  516. ConnInfo.port = GetOcppPort();
  517. ConnInfo.path=(const char *)GetOcppPath();//"/ocpp/RDTEST103";//"/ocpp/OCTT_1";//"/RDTEST103";//"/0591201511030003";//"/RDTEST103";
  518. ConnInfo.host=lws_canonical_hostname(context);
  519. ConnInfo.origin="origin";
  520. ConnInfo.protocol = protocols[1].name;
  521. ConnInfo.ietf_version_or_minus_one = -1;
  522. if(use_ssl)
  523. ConnInfo.ssl_connection = LCCSCF_USE_SSL | LCCSCF_ALLOW_SELFSIGNED | LCCSCF_SKIP_SERVER_CERT_HOSTNAME_CHECK;;
  524. wsi_client = lws_client_connect_via_info(&ConnInfo);
  525. if (!wsi_client)
  526. {
  527. #ifdef SystemLogMessage
  528. DEBUG_ERROR("lws_client_connect_via_info NG");
  529. #endif
  530. result = FAIL;
  531. }
  532. return result;
  533. }
  534. #if 0
  535. struct _node {
  536. char uuid[37];
  537. char data[2000];
  538. struct _node *next;//struct node *next;
  539. }node;
  540. typedef struct _node *pnode;
  541. struct _node staticNodeArray[100]={0};
  542. #endif
  543. //void createq();
  544. int showfront(char *uuid, char *data);
  545. int addq(char *uuid, char *data) ;
  546. int delq();
  547. int sentqueue();
  548. #if 0
  549. int storequeue();
  550. int readfiletoqueue();
  551. #endif
  552. void CheckTransactionPacket(char *uuid);
  553. int queue_operation(int type, char *frontUUID, char *frontData);
  554. #if 0
  555. pnode front, rear;
  556. void createq() {
  557. //front = rear = (pnode)malloc(sizeof(node)); --- remove temporally
  558. //front->next = rear->next = NULL;
  559. front = rear = NULL;
  560. }
  561. #endif
  562. int showfront(char *uuid, char *data) {
  563. FILE *fp;
  564. int result = FALSE; // 1: TRUE 0:FALSE
  565. char str[1200]={0};
  566. char sstr[50]={ 0 };//sstr[200]={ 0 };
  567. int c = 0;
  568. char *loc;
  569. char rmFileCmd[100]={0};
  570. struct stat stats;
  571. stat("../Storage/OCPP", &stats);
  572. // Check for directory existence
  573. if (S_ISDIR(stats.st_mode) == 1)
  574. {
  575. //DEBUG_INFO("\n OCPP directory exist \n");
  576. }
  577. else
  578. {
  579. DEBUG_INFO("\n OCPP directory not exist, create dir \n");
  580. sprintf(rmFileCmd,"mkdir -p %s","../Storage/OCPP");
  581. system(rmFileCmd);
  582. }
  583. memset(rmFileCmd, 0, sizeof rmFileCmd);
  584. if((access("../Storage/OCPP/TransactionRelatedQueue",F_OK))!=-1)
  585. {
  586. //DEBUG_INFO("TransactionRelatedQueue exist.\n");
  587. }
  588. else
  589. {
  590. DEBUG_INFO("TransactionRelatedQueue not exist\n");
  591. FILE *log = fopen("../Storage/OCPP/TransactionRelatedQueue", "w+");
  592. if(log == NULL)
  593. {
  594. DEBUG_INFO("Can't Create File TransactionRelatedQueue \n");
  595. return 0;
  596. }
  597. else
  598. {
  599. fclose(log);
  600. }
  601. }
  602. /* opening file for reading */
  603. fp = fopen("../Storage/OCPP/TransactionRelatedQueue" , "r");
  604. if(fp == NULL) {
  605. DEBUG_INFO("Error opening TransactionRelatedQueue file");
  606. return FALSE;
  607. }
  608. if( fgets (str, 1200, fp)!=NULL ) {
  609. /* writing content to stdout */
  610. if (str[0] == '\n')
  611. {
  612. DEBUG_INFO("It is a blank line");
  613. fclose(fp);
  614. memset(rmFileCmd, 0, sizeof rmFileCmd);
  615. sprintf(rmFileCmd,"rm -f %s","../Storage/OCPP/TransactionRelatedQueue");
  616. system(rmFileCmd);
  617. result = FALSE;
  618. return result;
  619. }
  620. else
  621. {
  622. puts(str);
  623. /*********************uuid***************/
  624. loc = strstr(str, "\"");
  625. memset(sstr ,0, sizeof(sstr) );
  626. c = 0;
  627. while (loc[1+c] != '\"')
  628. {
  629. sstr[c] = loc[1+c];
  630. c++;
  631. }
  632. sstr[c] = '\0';
  633. DEBUG_INFO("\n uuid:%s", sstr);
  634. DEBUG_INFO("\n data:%s", str);
  635. strcpy(uuid,sstr);
  636. strcpy(data,str);
  637. result = TRUE;
  638. }
  639. //return 1;
  640. }
  641. else
  642. {
  643. //DEBUG_INFO("queue is null\n");
  644. strcpy(uuid,"");
  645. strcpy(data,"");
  646. result = FALSE;
  647. //return 0;
  648. }
  649. fclose(fp);
  650. return result;
  651. #if 0
  652. pnode p;
  653. p = front;
  654. if(p)
  655. {
  656. //printf("姓名 %s 電話 %s\n", p->name, p->phone);
  657. printf("\n uuid:%s", p->uuid);
  658. printf("\n data:%s", p->data);
  659. strcpy(uuid,p->uuid);
  660. strcpy(data,p->data);
  661. return 1;
  662. }
  663. else
  664. {
  665. printf("queue is null\n");
  666. strcpy(uuid,"");
  667. strcpy(data,"");
  668. return 0;
  669. }
  670. #endif
  671. }
  672. int addq(char *uuid, char *data) {
  673. FILE *outfile;
  674. char rmFileCmd[100]={0};
  675. struct stat stats;
  676. stat("../Storage/OCPP", &stats);
  677. DEBUG_INFO("addq\n");
  678. // Check for directory existence
  679. if (S_ISDIR(stats.st_mode) == 1)
  680. {
  681. //DEBUG_INFO("\n OCPP directory exist \n");
  682. }
  683. else
  684. {
  685. DEBUG_INFO("\n OCPP directory not exist, create dir \n");
  686. sprintf(rmFileCmd,"mkdir -p %s","../Storage/OCPP");
  687. system(rmFileCmd);
  688. }
  689. memset(rmFileCmd, 0, sizeof rmFileCmd);
  690. if((access("../Storage/OCPP/TransactionRelatedQueue",F_OK))!=-1)
  691. {
  692. //DEBUG_INFO("TransactionRelatedQueue exist.\n");
  693. }
  694. else
  695. {
  696. DEBUG_INFO("TransactionRelatedQueue not exist\n");
  697. FILE *log = fopen("../Storage/OCPP/TransactionRelatedQueue", "w+");
  698. if(log == NULL)
  699. {
  700. DEBUG_INFO("Can't Create File TransactionRelatedQueue \n");
  701. return 0;
  702. }
  703. else
  704. {
  705. fclose(log);
  706. }
  707. }
  708. // open file for writing
  709. outfile = fopen ("../Storage/OCPP/TransactionRelatedQueue", "a");
  710. DEBUG_INFO("data=%s\n",data);
  711. fputs(data, outfile);
  712. fputs("\n", outfile);
  713. fclose (outfile);
  714. TransactionQueueNum = TransactionQueueNum + 1;
  715. return 0;
  716. #if 0
  717. //pnode p = (pnode )malloc(sizeof(node)); --- remove temporally
  718. int nodeCurrentFreeIndex =0;
  719. for (int i = 0; i < 100; i++) // Worst case 100+1
  720. if (staticNodeArray[i].uuid[0] == 0) // Worst case 100
  721. nodeCurrentFreeIndex = i;
  722. pnode p = &staticNodeArray[nodeCurrentFreeIndex];
  723. memset(p, 0, sizeof(node));
  724. if(p)
  725. {
  726. strcpy(p->uuid, uuid);
  727. strcpy(p->data, data);
  728. //printf("請輸入姓名 ");
  729. //scanf("%s", p->name);
  730. //printf("請輸入電話 ");
  731. //scanf("%s", p->phone);
  732. p->next = NULL;
  733. if(rear)
  734. {
  735. rear->next = p;
  736. rear = p;
  737. }
  738. else
  739. {
  740. front = rear = p;
  741. }
  742. }
  743. else
  744. {
  745. printf("無法取得記憶體空間新增資料\n");
  746. }
  747. #endif
  748. }
  749. int delq() {
  750. char tempfile[] = "../Storage/OCPP/temp.json";
  751. FILE *infile;
  752. FILE *outfile;
  753. int resultRename=0;
  754. char filename[60]={0};
  755. char rmFileCmd[100]={0};
  756. struct stat stats;
  757. stat("../Storage/OCPP", &stats);
  758. // Check for directory existence
  759. if (S_ISDIR(stats.st_mode) == 1)
  760. {
  761. //DEBUG_INFO("\n OCPP directory exist \n");
  762. }
  763. else
  764. {
  765. DEBUG_INFO("\n OCPP directory not exist, create dir \n");
  766. sprintf(rmFileCmd,"mkdir -p %s","../Storage/OCPP");
  767. system(rmFileCmd);
  768. }
  769. memset(rmFileCmd, 0, sizeof rmFileCmd);
  770. if((access("../Storage/OCPP/TransactionRelatedQueue",F_OK))!=-1)
  771. {
  772. //DEBUG_INFO("TransactionRelatedQueue exist.\n");
  773. }
  774. else
  775. {
  776. DEBUG_INFO("TransactionRelatedQueue not exist\n");
  777. FILE *log = fopen("../Storage/OCPP/TransactionRelatedQueue", "w+");
  778. if(log == NULL)
  779. {
  780. DEBUG_INFO("log is NULL\n");
  781. return 0;
  782. }
  783. else
  784. {
  785. fclose(log);
  786. }
  787. }
  788. // open file for writing
  789. strcpy(filename, "../Storage/OCPP/TransactionRelatedQueue");
  790. infile = fopen ("../Storage/OCPP/TransactionRelatedQueue", "r");
  791. outfile = fopen (tempfile, "w");
  792. /*检测到文件结束标识返回1,否则返回0。*/
  793. //DEBUG_INFO("feof(infile) =%d\n",feof(infile));
  794. int c;
  795. c = fgetc(infile);
  796. //printf("file c:%d\n",c);
  797. rewind(infile);
  798. if(c == EOF)
  799. {
  800. DEBUG_INFO("TransactionRelatedQueue is NULL\n");
  801. fclose(infile);
  802. fclose(outfile);
  803. sprintf(rmFileCmd,"rm -f %s",tempfile);
  804. system(rmFileCmd);
  805. }
  806. else
  807. {
  808. char buf[1200]={0};
  809. int i = 0;
  810. //DEBUG_INFO("Orignal File is not NULL\n");
  811. while (fgets(buf, sizeof(buf), infile) != NULL)
  812. {
  813. //printf("Orignal File get strings \n");
  814. buf[strlen(buf) - 1] = '\0'; // eat the newline fgets() stores
  815. if(i==0)
  816. {
  817. TransactionQueueNum = TransactionQueueNum - 1;
  818. TransactionQueueInterval = 0;
  819. TransactionMessageResend = 1;
  820. }
  821. if(i != 0)
  822. fprintf(outfile,"%s\n", buf);
  823. i = i + 1;
  824. }
  825. fclose(infile);
  826. fclose(outfile);
  827. sprintf(rmFileCmd,"rm -f %s",filename);
  828. system(rmFileCmd);
  829. resultRename = rename(tempfile, filename);
  830. if(resultRename == 0)
  831. {
  832. DEBUG_INFO("TransactionRelatedQueue file renamed successfully");
  833. }
  834. else
  835. {
  836. DEBUG_INFO("Error: unable to rename the TransactionRelatedQueue file");
  837. }
  838. }
  839. return 0;
  840. #if 0
  841. pnode p;
  842. if(front)
  843. {
  844. p = front;
  845. if(front->next)
  846. front = front->next;
  847. else
  848. front = rear = NULL;
  849. printf("delete uuid: %s data: %s\n", p->uuid, p->data);
  850. //free(p); --- remove temporally
  851. //new
  852. memset(p, 0, sizeof(node));
  853. p=NULL;
  854. }
  855. else
  856. {
  857. printf("queue is Empty\n");
  858. printf("\n delete: queue is null");
  859. }
  860. return 0;
  861. #endif
  862. }
  863. int showqueue() {
  864. char rmFileCmd[100]={0};
  865. struct stat stats;
  866. stat("../Storage/OCPP", &stats);
  867. // Check for directory existence
  868. if (S_ISDIR(stats.st_mode) == 1)
  869. {
  870. //DEBUG_INFO("\n OCPP directory exist \n");
  871. }
  872. else
  873. {
  874. DEBUG_INFO("\n OCPP directory not exist, create dir \n");
  875. sprintf(rmFileCmd,"mkdir -p %s","../Storage/OCPP");
  876. system(rmFileCmd);
  877. }
  878. memset(rmFileCmd, 0, sizeof rmFileCmd);
  879. if((access("../Storage/OCPP/TransactionRelatedQueue",F_OK))!=-1)
  880. {
  881. //DEBUG_INFO("TransactionRelatedQueue exist.\n");
  882. }
  883. else
  884. {
  885. DEBUG_INFO("TransactionRelatedQueue not exist\n");
  886. FILE *log = fopen("../Storage/OCPP/TransactionRelatedQueue", "w+");
  887. if(log == NULL)
  888. {
  889. DEBUG_INFO("log is NULL\n");
  890. return 0;
  891. }
  892. else
  893. {
  894. fclose(log);
  895. }
  896. }
  897. FILE *fp = fopen("../Storage/OCPP/TransactionRelatedQueue", "r");
  898. char line[1200]={0};
  899. // check if file exist (and you can open it) or not
  900. if (fp == NULL) {
  901. DEBUG_INFO("can open file TransactionRelatedQueue!");
  902. return 0;
  903. }
  904. while(fgets(line, sizeof line, fp) != NULL) {
  905. DEBUG_INFO("%s\n", line);
  906. }
  907. fclose(fp);
  908. return 0;
  909. #if 0
  910. pnode p;
  911. p = front;
  912. while(p)
  913. {
  914. printf("uuid: %s data: %s\n", p->uuid, p->data);
  915. p = p->next;
  916. }
  917. return 0;
  918. #endif
  919. }
  920. int sentqueue(){
  921. FILE *fp;
  922. int result = FALSE; // 1: TRUE 0:FALSE
  923. char str[1200]={0};
  924. char rmFileCmd[100]={0};
  925. struct stat stats;
  926. DEBUG_INFO("sentqueue\n");
  927. stat("../Storage/OCPP", &stats);
  928. // Check for directory existence
  929. if (S_ISDIR(stats.st_mode) == 1)
  930. {
  931. //DEBUG_INFO("\n OCPP directory exist \n");
  932. }
  933. else
  934. {
  935. DEBUG_INFO("\n OCPP directory not exist, create dir \n");
  936. sprintf(rmFileCmd,"mkdir -p %s","../Storage/OCPP");
  937. system(rmFileCmd);
  938. }
  939. memset(rmFileCmd, 0, sizeof rmFileCmd);
  940. /* opening file for reading */
  941. fp = fopen("../Storage/OCPP/TransactionRelatedQueue" , "r");
  942. if(fp == NULL) {
  943. DEBUG_INFO("Error opening file");
  944. return FALSE;
  945. }
  946. if( fgets (str, 1200, fp)!=NULL ) {
  947. /* writing content to stdout */
  948. //puts(str);
  949. DEBUG_INFO("\n uuid:%s", "");
  950. DEBUG_INFO("\n data:%s", str);
  951. LWS_Send(str);
  952. result = TRUE;
  953. //return 1;
  954. }
  955. else
  956. {
  957. DEBUG_INFO("queue is null\n");
  958. result = FALSE;
  959. //return 0;
  960. }
  961. fclose(fp);
  962. DEBUG_INFO("sentqueue end\n");
  963. return result;
  964. }
  965. //
  966. void* processTransactionQueue(void* data) {
  967. char frontUUID[100] ={0};
  968. char frontData[1200/*1024*4*/] ={0};
  969. int queueNotEmpty = 0;
  970. while(1)
  971. {
  972. if(FirstHeartBeatResponse() == 1)
  973. {
  974. memset(frontUUID, 0, sizeof(frontUUID));
  975. memset(frontData, 0, sizeof(frontData));
  976. queueNotEmpty = 0;
  977. queueNotEmpty = queue_operation(1,frontUUID, frontData);//showfront(frontUUID, frontData); ---> remove temporally
  978. if((queueNotEmpty == 1) && (GetOcppConnStatus() == 1))
  979. {
  980. if((OfflineTransaction == 1) && (TransactionQueueNum != 0))
  981. {
  982. TransactionQueueInterval = 2;
  983. sleep(TransactionQueueInterval);
  984. sendbuffer = 1;
  985. }
  986. else
  987. {
  988. OfflineTransaction = 0;
  989. if(TransactionMessageResend < TransactionMessageAttemptsGet()) //
  990. {
  991. //DEBUG_INFO("processTransactionQueue queue is not empty!\n");
  992. TransactionQueueInterval= TransactionMessageRetryIntervalGet()* TransactionMessageResend;
  993. sleep(TransactionQueueInterval);
  994. sendbuffer = 1;
  995. TransactionMessageResend = TransactionMessageResend + 1;
  996. }
  997. else
  998. {
  999. queue_operation(2,"",""); //// delete item
  1000. TransactionQueueInterval = 0;
  1001. TransactionMessageResend = 1;
  1002. sleep(TransactionQueueInterval);
  1003. }
  1004. }
  1005. }
  1006. else if((queueNotEmpty == 1) && (GetOcppConnStatus() == 0))
  1007. {
  1008. OfflineTransaction = 1;
  1009. }
  1010. else
  1011. {
  1012. TransactionQueueInterval = 0;//10;
  1013. sleep(TransactionQueueInterval);
  1014. }
  1015. }
  1016. usleep(5000);
  1017. }
  1018. pthread_exit(NULL); //
  1019. return 0;
  1020. }
  1021. void CheckTransactionPacket(char *uuid)
  1022. {
  1023. char frontUUID[100]={0};
  1024. char frontData[1200]={0};
  1025. int queueNotEmpty = 0;
  1026. int cmpResult = 0;
  1027. queue_operation(0,"","");//showqueue(); ---> remove temporally
  1028. queueNotEmpty = queue_operation(1,frontUUID, frontData);//showfront(frontUUID, frontData); ---> remove temporally
  1029. if(queueNotEmpty == 1)
  1030. {
  1031. cmpResult = strcmp(frontUUID, uuid);
  1032. //cmpResult = strcmp(frontData, uuid);
  1033. if (cmpResult == 0)
  1034. {
  1035. DEBUG_INFO("TransactionPacket Compare All right!\n");
  1036. queue_operation(2,"","");//delq(); ---> remove temporally
  1037. }
  1038. }
  1039. }
  1040. /* type: 0 (showqueue ); type: 1(showfront); type: 2(delq) type: 3 (sentqueue) type: 4 (addq) type: 5(store queue to /Storage/OCPP/ )*/
  1041. int queue_operation(int type, char *frontUUID, char *frontData)
  1042. {
  1043. pthread_mutex_unlock(&lock_sentData);
  1044. pthread_mutex_lock(&lock_sentData);
  1045. int result=0;
  1046. if(type == 0) // show items in queue
  1047. result = showqueue();
  1048. else if(type == 1) // show first item
  1049. result = showfront(frontUUID, frontData);
  1050. else if(type == 2) // delete item
  1051. result = delq();
  1052. else if(type == 3) // sent items in queue
  1053. result = sentqueue();
  1054. else if(type == 4) // add items to the queue
  1055. result = addq(frontUUID, frontData);
  1056. pthread_mutex_unlock(&lock_sentData);
  1057. return result;
  1058. }
  1059. char * strchr(const char *p, int ch)
  1060. {
  1061. char c;
  1062. c = ch;
  1063. for (;; ++p) {
  1064. if (*p == c)
  1065. return ((char *)p);
  1066. if (*p == '\0')
  1067. return (NULL);
  1068. }
  1069. /* NOTREACHED */
  1070. return NULL;
  1071. }
  1072. int removeMessageSentFile(void)
  1073. {
  1074. char rmFileCmd[100]={0};
  1075. struct stat stats;
  1076. //
  1077. stat("../Storage/OCPP", &stats);
  1078. // Check for directory existence
  1079. if (S_ISDIR(stats.st_mode) == 1)
  1080. {
  1081. //DEBUG_INFO("\n OCPP directory exist \n");
  1082. }
  1083. else
  1084. {
  1085. DEBUG_INFO("\n directory not exist, create dir \n");
  1086. sprintf(rmFileCmd,"mkdir -p %s","../Storage/OCPP");
  1087. system(rmFileCmd);
  1088. }
  1089. memset(rmFileCmd, 0, sizeof rmFileCmd);
  1090. if((access("../Storage/OCPP/MessageSent",F_OK))!=-1)
  1091. {
  1092. DEBUG_INFO("MessageSent file exist.\n");
  1093. sprintf(rmFileCmd,"rm -f %s","../Storage/OCPP/MessageSent");
  1094. system(rmFileCmd);
  1095. }
  1096. memset(rmFileCmd, 0, sizeof rmFileCmd);
  1097. return 0;
  1098. }
  1099. #define SystemLogMessage
  1100. //================================================
  1101. // Main process
  1102. //================================================
  1103. int main(void)
  1104. {
  1105. char rmFileCmd[100]={0};
  1106. struct stat stats;
  1107. pthread_t t;
  1108. #ifdef SystemLogMessage
  1109. DEBUG_INFO("Initialization...\n");
  1110. #endif
  1111. if(ProcessShareMemory()== FAIL)
  1112. {
  1113. return FAIL;
  1114. }
  1115. //Create OCPP dir
  1116. stat("../Storage/OCPP", &stats);
  1117. // Check for directory existence
  1118. if (S_ISDIR(stats.st_mode) == 1)
  1119. {
  1120. //DEBUG_INFO("\n OCPP directory exist \n");
  1121. }
  1122. else
  1123. {
  1124. DEBUG_INFO("\n OCPP directory not exist, create dir \n");
  1125. sprintf(rmFileCmd,"mkdir -p %s","../Storage/OCPP");
  1126. system(rmFileCmd);
  1127. }
  1128. memset(rmFileCmd, 0, sizeof rmFileCmd);
  1129. //Create Process: Resend Transaction
  1130. pthread_create(&t, NULL, processTransactionQueue, NULL); //
  1131. sqlite3_config(SQLITE_CONFIG_URI,1);
  1132. if(sqlite3_open("file:/../Storage/OCPP/charger.db", &db))
  1133. {
  1134. #ifdef Debug
  1135. DEBUG_INFO( "Can't open database: %s\n", sqlite3_errmsg(db));
  1136. #endif
  1137. sqlite3_close( db );
  1138. exit(0);
  1139. }
  1140. else
  1141. {
  1142. #ifdef Debug
  1143. DEBUG_INFO( "Opened database successfully\n");
  1144. #endif
  1145. }
  1146. //Create Table log buffer
  1147. int rc =sqlite3_exec(db, createsql, 0, 0, &errMsg);
  1148. if (SQLITE_OK != rc)
  1149. {
  1150. #ifdef Debug
  1151. DEBUG_INFO( "Create log buffer table error message: %s\n", errMsg);
  1152. #endif
  1153. return 0;
  1154. }
  1155. else
  1156. {
  1157. #ifdef Debug
  1158. DEBUG_INFO( "Opened log buffer table successfully\n");
  1159. #endif
  1160. }
  1161. // Create Table OcppAuthCache
  1162. rc =sqlite3_exec(db, sqlOcppAuthCache, 0, 0, &errMsg);
  1163. if (SQLITE_OK != rc)
  1164. {
  1165. #ifdef Debug
  1166. DEBUG_INFO( "Create OcppAuthCache error message: %s\n", errMsg);
  1167. #endif
  1168. return 0;
  1169. }
  1170. else
  1171. {
  1172. #ifdef Debug
  1173. DEBUG_INFO( "Opened OcppAuthCache table successfully\n");
  1174. #endif
  1175. }
  1176. // Create Table OcppAuthLocal
  1177. rc =sqlite3_exec(db, sqlOcppAuthLocal, 0, 0, &errMsg);
  1178. if (SQLITE_OK != rc)
  1179. {
  1180. #ifdef Debug
  1181. DEBUG_INFO( "Create Table OcppAuthLocal error %s\n",errMsg);
  1182. #endif
  1183. return 0;
  1184. }
  1185. else
  1186. {
  1187. #ifdef Debug
  1188. DEBUG_INFO( "Opened OcppAuthLocal table successfully\n");
  1189. #endif
  1190. }
  1191. initialConfigurationTable();
  1192. removeMessageSentFile();
  1193. //queryAllData();
  1194. OCPP_get_TableAuthlocalAllData();
  1195. for(;;)
  1196. {
  1197. while(ConnectionEstablished==0)
  1198. {
  1199. SetOcppConnStatus(FALSE);
  1200. if((time((time_t*)NULL)-startTime.connect)>=60)
  1201. {
  1202. #ifdef Debug
  1203. DEBUG_INFO("Execute ConnectWsServer\n");
  1204. #endif
  1205. ConnectWsServer();
  1206. startTime.connect=time((time_t*)NULL);
  1207. }
  1208. // Check System Value, process offline Transaction
  1209. CheckSystemValue();
  1210. lws_service(context, 10000);//timeout_ms
  1211. }
  1212. if(( (BootNotificationInterval != 0 && ((time((time_t*)NULL)-startTime.bootNotification)>=BootNotificationInterval) ) || ((time((time_t*)NULL)-startTime.bootNotification)>=defaultWaitingTime) ) && ((server_sign == FALSE)/*|| (server_pending == TRUE)*/))
  1213. {
  1214. //hashmapForMessageNew();
  1215. sendBootNotificationRequest();
  1216. startTime.bootNotification=time((time_t*)NULL);
  1217. }
  1218. if(server_sign == TRUE)
  1219. {
  1220. if(sendbuffer == 1)
  1221. {
  1222. queue_operation(3, "", "");//sentqueue()
  1223. sendbuffer = 0;
  1224. }
  1225. SetOcppConnStatus(TRUE);
  1226. // Check System Value
  1227. CheckSystemValue();
  1228. if(GetHeartBeatWithNOResponse() >= 3)
  1229. {
  1230. lws_context_destroy(context);
  1231. ConnectionEstablished=0;
  1232. context = NULL;
  1233. SetHeartBeatWithNOResponse();
  1234. }
  1235. }
  1236. lws_service(context, 100);//timeout_ms
  1237. }
  1238. pthread_join(t, NULL); //
  1239. //hashmapForMessageFree();
  1240. return FAIL;
  1241. }