Module_OcppBackend.c 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794
  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/mman.h>
  10. #include <linux/wireless.h>
  11. #include <linux/sockios.h>
  12. #include <linux/socket.h>
  13. #include <arpa/inet.h>
  14. #include <netinet/in.h>
  15. #include <unistd.h>
  16. #include <stdarg.h>
  17. #include <stdio.h>
  18. #include <stdlib.h>
  19. #include <unistd.h>
  20. #include <fcntl.h>
  21. #include <termios.h>
  22. #include <errno.h>
  23. #include <string.h>
  24. #include <time.h>
  25. #include <ctype.h>
  26. #include <ifaddrs.h>
  27. #include "libwebsockets.h"
  28. #include <lws_config.h>
  29. #include "hashmap.h"
  30. #include "SystemLogMessage.h"
  31. #include "ShareMemory.h"
  32. #include <pthread.h>
  33. #include "MessageHandler.h"
  34. #include "sqlite3.h"
  35. #ifndef SPEC_LATEST_SUPPORTED
  36. #define SPEC_LATEST_SUPPORTED 13
  37. #endif
  38. #define Debug
  39. //#define ARRAY_SIZE(A) (sizeof(A) / sizeof(A[0]))
  40. #define PASS 1
  41. #define FAIL -1
  42. typedef enum boolean { FALSE, TRUE } BOOL;
  43. struct lws *wsi_client;
  44. struct lws_context *context;
  45. static int sendbuffer = 0;
  46. pthread_t pid;
  47. extern int server_sign;
  48. extern void CheckSystemValue(void);
  49. extern int FirstHeartBeatResponse(void);
  50. extern void OCPP_get_TableAuthlocalAllData(void);
  51. extern int TransactionMessageAttemptsGet(void);
  52. extern int TransactionMessageRetryIntervalGet(void);
  53. extern int GetOcppConnStatus(void);
  54. extern void SetOcppConnStatus(uint8_t status);
  55. extern int GetHeartBeatWithNOResponse(void);
  56. extern void SetHeartBeatWithNOResponse(void);
  57. pthread_mutex_t mutex1 = PTHREAD_MUTEX_INITIALIZER;
  58. pthread_mutex_t lock_sentData = PTHREAD_MUTEX_INITIALIZER;
  59. pthread_mutex_t receiveData = PTHREAD_MUTEX_INITIALIZER;
  60. //==========================================
  61. // Function prototype
  62. //==========================================
  63. void trim(char *s);
  64. int mystrcmp(char *p1,char *p2);
  65. void substr(char *dest, const char* src, unsigned int start, unsigned int cnt);
  66. void getSubStr(char *dest, char* src, char *split, int idx);
  67. void split(char **arr, char *str, const char *del);
  68. int strpos(char *source, char *substr, int skip);
  69. int strposs(char *source, char *substr, int idx);
  70. char *random_uuid( char buf[37] );
  71. static int OCPP16Callback(struct lws *wsi, enum lws_callback_reasons reason, void *user, void *in, size_t len);
  72. char * strchr(const char *p, int ch);
  73. void ReceivedMessage(void *in, size_t len);
  74. struct StartTime
  75. {
  76. unsigned int connect;
  77. unsigned int bootNotification;
  78. }startTime;
  79. #if 0
  80. unsigned char *SendBuffer;
  81. int SendBufLen=(1024*4);//(1024*3);
  82. #endif
  83. int SendBufLen=(1024*4);//(1024*3);
  84. unsigned char SendBuffer[1024*4]={0};
  85. static int ConnectionEstablished=0;
  86. static int TransactionMessageResend = 1; // the number of retry to submit a transaction-related message when the Central System fails to process it.
  87. static int TransactionQueueInterval = 10;//3;
  88. static int TransactionQueueNum = 0;
  89. static int OfflineTransactionQueueNum = 0; // Number of offline transactions
  90. static int OfflineTransaction = 0;
  91. static int IsUsing = FALSE;
  92. int defaultWaitingTime = 10; //10 second
  93. char OcppPath[160]={0};
  94. char OcppProtocol[10]={0},OcppHost[50]={0}, OcppTempPath[50]={0};
  95. //===============================
  96. // OCPP SentQueue TransactionId
  97. //===============================
  98. //static int SentQueueTransactionId[10]={0};
  99. extern int BootNotificationInterval;
  100. //char guid[37];
  101. //map_t hashMap;
  102. //data_struct_t* mapItem; --- remove for temporally
  103. //data_struct_t mapItem[0]={0};
  104. sqlite3 *db;
  105. char *errMsg = NULL;
  106. static char *createsql = "CREATE TABLE IF NOT EXISTS log_buffer("
  107. "idx integer primary key,"
  108. "user_id text,"
  109. "cmd_sn text,"
  110. "charger_id text,"
  111. "gun_type text,"
  112. "gun_no text,"
  113. "rfid_no text,"
  114. "stime text,"
  115. "etime text,"
  116. "time_len text,"
  117. "s_soc text,"
  118. "e_soc text,"
  119. "stop_reason text,"
  120. "power text,"
  121. "meter_before text,"
  122. "meter_after text,"
  123. "charge_price text,"
  124. "reserve text,"
  125. "surplus_before text,"
  126. "surplus_after text,"
  127. "service_price text,"
  128. "is_pay text,"
  129. "charge_strategy text,"
  130. "charge_parameter text,"
  131. "vin text,"
  132. "vehicle_no text,"
  133. "start_method text,"
  134. "card_type text,"
  135. "is_upload text,"
  136. "guid text UNIQUE,"
  137. "is_buf2OK text);";
  138. #if 0
  139. static char *createsChargingRecordsql = "CREATE TABLE IF NOT EXISTS ChargingRecord("
  140. "idx integer primary key,"
  141. "gun_type text,"
  142. "connectorId text,"
  143. "idTag text,"
  144. "transactionId text,"
  145. "stime text,"
  146. "etime text,"
  147. "time_len text,"
  148. "s_soc text,"
  149. "e_soc text,"
  150. "stop_reason text,"
  151. "power text,"
  152. "meter_before text,"
  153. "meter_after text,"
  154. "reservationId text,"
  155. "guid text UNIQUE);";
  156. //"is_buf2OK text);";
  157. #endif
  158. static char *sqlOcppAuthCache = "create table if not exists ocpp_auth_cache (idx integer primary key,"
  159. "idtag text UNIQUE,"
  160. "parent_idtag text,"
  161. "expir_date text,"
  162. "status text);";
  163. static char *sqlOcppAuthLocal = "create table if not exists ocpp_auth_local (idx integer primary key,"
  164. "idtag text UNIQUE,"
  165. "parent_idtag text,"
  166. "expir_date text,"
  167. "status text,"
  168. "version text);";
  169. #if 0
  170. 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')";
  171. #endif
  172. int DiffTimeb(struct timeb ST, struct timeb ET)
  173. {
  174. //return milli-second
  175. unsigned int StartTime,StopTime;
  176. StartTime=(unsigned int)ST.time;
  177. StopTime=(unsigned int)ET.time;
  178. return (StopTime-StartTime)*1000+ET.millitm-ST.millitm;
  179. }
  180. //=================================
  181. // Common routine
  182. //=================================
  183. void trim(char *s)
  184. {
  185. int i=0, j, k, l=0;
  186. while((s[i]==' ')||(s[i]=='\t')||(s[i]=='\n'))
  187. i++;
  188. j = strlen(s)-1;
  189. while((s[j]==' ')||(s[j]=='\t')||(s[j]=='\n'))
  190. j--;
  191. if(i==0 && j==strlen(s)-1) { }
  192. else if(i==0) s[j+1] = '\0';
  193. else {
  194. for(k=i; k<=j; k++) s[l++] = s[k];
  195. s[l] = '\0';
  196. }
  197. }
  198. int mystrcmp(char *p1,char *p2)
  199. {
  200. while(*p1==*p2)
  201. {
  202. if(*p1=='\0' || *p2=='\0')
  203. break;
  204. p1++;
  205. p2++;
  206. }
  207. if(*p1=='\0' && *p2=='\0')
  208. return(PASS);
  209. else
  210. return(FAIL);
  211. }
  212. void substr(char *dest, const char* src, unsigned int start, unsigned int cnt)
  213. {
  214. strncpy(dest, src + start, cnt);
  215. dest[cnt] = 0;
  216. }
  217. void getSubStr(char *dest, char* src, char *split, int idx)
  218. {
  219. int start = (strposs(src,",",idx)+1);
  220. int cnt = (strposs(src,",",idx+1)-2)-(strposs(src,",",idx)+1);
  221. strncpy(dest, src + start, cnt);
  222. dest[cnt] = 0;
  223. }
  224. void split(char **arr, char *str, const char *del)
  225. {
  226. char *s = strtok(str, del);
  227. while(s != NULL)
  228. {
  229. *arr++ = s;
  230. s = strtok(NULL, del);
  231. }
  232. }
  233. int strpos(char *source, char *substr, int skip)
  234. {
  235. char stack[strlen(source)];
  236. strncpy(stack, source+skip, strlen(source)-skip);
  237. char *p = strstr(stack, substr);
  238. if (p)
  239. return p - stack+skip;
  240. return -1;
  241. }
  242. int strposs(char *source, char *substr, int idx)
  243. {
  244. char stack[strlen(source)];
  245. int result=0;
  246. int count=0;
  247. while(count<=idx)
  248. {
  249. memset(stack,0,sizeof stack);
  250. strncpy(stack, source+result, strlen(source)-result);
  251. int loc = strcspn(stack, substr);
  252. if(loc>0)
  253. result += (loc+1);
  254. else
  255. result = -1;
  256. count++;
  257. }
  258. return result;
  259. }
  260. static int testnum = 0;
  261. char *random_uuid( char buf[37] )
  262. {
  263. // const char *c = "89ab";
  264. char *p = buf;
  265. // int n;
  266. #if 1 // test
  267. time_t seconds;
  268. seconds = time(NULL);
  269. testnum = testnum % 999;
  270. testnum = testnum + 1;
  271. //printf("\n testnum:%d\n", testnum);
  272. //printf("\n seconds:%d\n", seconds);
  273. sprintf(p, "%03d%033d", testnum, (unsigned int)(seconds));
  274. //printf("\n p:%s\n", p);
  275. #endif
  276. #if 0
  277. for( n = 0; n < 16; ++n )
  278. {
  279. int b = rand()%255;
  280. switch( n )
  281. {
  282. case 6:
  283. sprintf(p, "4%x", b%15 );
  284. break;
  285. case 8:
  286. sprintf(p, "%c%x", c[rand()%strlen(c)], b%15 );
  287. break;
  288. default:
  289. sprintf(p, "%02x", b);
  290. break;
  291. }
  292. p += 2;
  293. switch( n )
  294. {
  295. case 3:
  296. case 5:
  297. case 7:
  298. case 9:
  299. *p++ = '-';
  300. break;
  301. }
  302. }
  303. *p = 0;
  304. #endif
  305. return buf;
  306. }
  307. int GetTransactionQueueNum(void)
  308. {
  309. return TransactionQueueNum;
  310. }
  311. //==========================================
  312. // Web socket tranceive routine
  313. //==========================================
  314. int SendData(struct lws *wsi)
  315. {
  316. int n;
  317. int len;
  318. char *ret;
  319. unsigned char out[LWS_SEND_BUFFER_PRE_PADDING + 4096 + LWS_SEND_BUFFER_POST_PADDING] = {0};
  320. len = strlen((char *)SendBuffer);
  321. if(len == 0)
  322. return 0;
  323. memcpy (out + LWS_SEND_BUFFER_PRE_PADDING, SendBuffer, len );
  324. ret = strstr((const char *)(out + LWS_SEND_BUFFER_PRE_PADDING), "Heartbeat");
  325. if(ret == NULL)
  326. {
  327. DEBUG_OCPPMESSAGE_INFO(" SendData= %s\n", out + LWS_SEND_BUFFER_PRE_PADDING);
  328. }
  329. n = lws_write(wsi, out + LWS_SEND_BUFFER_PRE_PADDING, len, LWS_WRITE_TEXT);
  330. memset(SendBuffer, 0, len);
  331. return n;
  332. }
  333. static int OCPP16Callback(struct lws *wsi, enum lws_callback_reasons reason, void *user, void *in, size_t len)
  334. {
  335. switch (reason)
  336. {
  337. case LWS_CALLBACK_PROTOCOL_INIT:
  338. #ifdef SystemLogMessage
  339. DEBUG_INFO("LWS_CALLBACK_PROTOCOL_INIT\n");
  340. #endif
  341. break;
  342. case LWS_CALLBACK_CLIENT_FILTER_PRE_ESTABLISH:
  343. #ifdef SystemLogMessage
  344. DEBUG_INFO("LWS_CALLBACK_CLIENT_FILTER_PRE_ESTABLISH\n");
  345. #endif
  346. char buf[64];
  347. char hash[20], key_b64[40];
  348. lws_b64_encode_string(hash, 16, key_b64, sizeof(key_b64));// Sec-WebSocket-Key
  349. DEBUG_OCPPMESSAGE_INFO("------------------Handshake: Client Request START----------------\n");
  350. lws_hdr_copy(wsi, buf, sizeof(buf) - 1, _WSI_TOKEN_CLIENT_URI);
  351. DEBUG_OCPPMESSAGE_INFO("GET %s HTTP/1.1 \n", buf);
  352. lws_hdr_copy(wsi, buf, sizeof(buf) - 1, _WSI_TOKEN_CLIENT_HOST);
  353. DEBUG_OCPPMESSAGE_INFO("Host: %s\n", buf);
  354. //lws_hdr_copy(wsi, buf, sizeof(buf) - 1, _WSI_TOKEN_CLIENT_PEER_ADDRESS);
  355. //DEBUG_OCPPMESSAGE_INFO("_WSI_TOKEN_CLIENT_PEER_ADDRESS %s\n", buf);
  356. DEBUG_OCPPMESSAGE_INFO("Upgrade: websocket\n");
  357. DEBUG_OCPPMESSAGE_INFO("Connection: Upgrade\n");
  358. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Key: %s\n", key_b64);
  359. lws_hdr_copy(wsi, buf, sizeof(buf) - 1, _WSI_TOKEN_CLIENT_SENT_PROTOCOLS);
  360. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Protocol: %s\n", buf);
  361. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Version: %d\n", SPEC_LATEST_SUPPORTED);
  362. DEBUG_OCPPMESSAGE_INFO("------------------Handshake: Client Request END----------------\n");
  363. DEBUG_OCPPMESSAGE_INFO("------------------Handshake: Server response START----------------\n");
  364. lws_hdr_copy(wsi, buf, sizeof(buf) - 1, WSI_TOKEN_HTTP);
  365. DEBUG_OCPPMESSAGE_INFO("HTTP/1.1 %s\n", buf);
  366. lws_hdr_copy(wsi, buf, sizeof(buf) - 1, WSI_TOKEN_UPGRADE);
  367. DEBUG_OCPPMESSAGE_INFO("Upgrade: %s\n", buf);
  368. lws_hdr_copy(wsi, buf, sizeof(buf) - 1, WSI_TOKEN_CONNECTION);
  369. DEBUG_OCPPMESSAGE_INFO("Connection: %s\n", buf);
  370. lws_hdr_copy(wsi, buf, sizeof(buf) - 1, WSI_TOKEN_ACCEPT);
  371. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Accept: %s\n", buf);
  372. lws_hdr_copy(wsi, buf, sizeof(buf) - 1, WSI_TOKEN_PROTOCOL);
  373. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Protocol: %s\n", buf);
  374. DEBUG_OCPPMESSAGE_INFO("------------------Handshake: Server response END----------------\n");
  375. break;
  376. case LWS_CALLBACK_FILTER_PROTOCOL_CONNECTION:
  377. #ifdef SystemLogMessage
  378. DEBUG_INFO("LWS_CALLBACK_FILTER_PROTOCOL_CONNECTION\n");
  379. #endif
  380. break;
  381. case LWS_CALLBACK_WSI_DESTROY:
  382. #ifdef SystemLogMessage
  383. DEBUG_INFO("LWS_CALLBACK_WSI_DESTROY\n");
  384. #endif
  385. pthread_detach(pid);
  386. server_sign = FALSE;
  387. ConnectionEstablished=0;
  388. context = NULL;
  389. break;
  390. case LWS_CALLBACK_LOCK_POLL:
  391. break;
  392. case LWS_CALLBACK_ADD_POLL_FD:
  393. #ifdef SystemLogMessage
  394. DEBUG_INFO("LWS_CALLBACK_ADD_POLL_FD\n");
  395. #endif
  396. break;
  397. case LWS_CALLBACK_DEL_POLL_FD:
  398. #ifdef SystemLogMessage
  399. DEBUG_INFO("LWS_CALLBACK_DEL_POLL_FD\n");
  400. #endif
  401. break;
  402. case LWS_CALLBACK_UNLOCK_POLL:
  403. break;
  404. case LWS_CALLBACK_CHANGE_MODE_POLL_FD:
  405. break;
  406. case LWS_CALLBACK_WSI_CREATE:
  407. #ifdef SystemLogMessage
  408. DEBUG_INFO("LWS_CALLBACK_WSI_CREATE\n");
  409. #endif
  410. break;
  411. case LWS_CALLBACK_GET_THREAD_ID:
  412. break;
  413. case LWS_CALLBACK_CLIENT_APPEND_HANDSHAKE_HEADER:
  414. {
  415. #ifdef SystemLogMessage
  416. DEBUG_INFO("LWS_CALLBACK_CLIENT_APPEND_HANDSHAKE_HEADER\n");
  417. #endif
  418. }
  419. break;
  420. case LWS_CALLBACK_CLIENT_ESTABLISHED: //3
  421. {
  422. #ifdef SystemLogMessage
  423. DEBUG_INFO("LWS_CALLBACK_CLIENT_ESTABLISHED\n");
  424. #endif
  425. char frontUUID[100] ={0};
  426. char frontData[1200] ={0};
  427. int queueNotEmpty = FALSE;
  428. //connected
  429. ConnectionEstablished=1;
  430. queueNotEmpty = queue_operation(1,frontUUID, frontData);
  431. if(queueNotEmpty == TRUE)
  432. {
  433. OfflineTransaction = 1; // 0: no packets in queue. 1: There are packets in queue.
  434. }
  435. TransactionQueueInterval = 0;
  436. TransactionMessageResend = 1;
  437. //get offline number
  438. queue_operation(0,"","");
  439. OfflineTransactionQueueNum =TransactionQueueNum ;
  440. }
  441. break;
  442. case LWS_CALLBACK_CLIENT_CONNECTION_ERROR://1
  443. #ifdef SystemLogMessage
  444. DEBUG_ERROR("LWS_CALLBACK_CLIENT_CONNECTION_ERROR %s\n", (char *)in );
  445. #endif
  446. //disconnected
  447. ConnectionEstablished=0;
  448. char buf1[64];
  449. char hash1[20]={0}, key_b641[40]={0};
  450. lws_b64_encode_string(hash1, 16, key_b641, sizeof(key_b641));// Sec-WebSocket-Key
  451. DEBUG_OCPPMESSAGE_INFO("------------------Handshake: Client START----------------\n");
  452. lws_hdr_copy(wsi, buf, sizeof(buf) - 1, _WSI_TOKEN_CLIENT_URI);
  453. DEBUG_OCPPMESSAGE_INFO("GET %s HTTP/1.1 \n", buf);
  454. lws_hdr_copy(wsi, buf, sizeof(buf) - 1, _WSI_TOKEN_CLIENT_HOST);
  455. DEBUG_OCPPMESSAGE_INFO("Host: %s\n", buf);
  456. //lws_hdr_copy(wsi, buf, sizeof(buf) - 1, _WSI_TOKEN_CLIENT_PEER_ADDRESS);
  457. //DEBUG_OCPPMESSAGE_INFO("_WSI_TOKEN_CLIENT_PEER_ADDRESS %s\n", buf);
  458. DEBUG_OCPPMESSAGE_INFO("Upgrade: websocket\n");
  459. DEBUG_OCPPMESSAGE_INFO("Connection: Upgrade\n");
  460. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Key: %s\n", key_b641);
  461. lws_hdr_copy(wsi, buf, sizeof(buf) - 1, _WSI_TOKEN_CLIENT_SENT_PROTOCOLS);
  462. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Protocol: %s\n", buf);
  463. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Version: %d\n", SPEC_LATEST_SUPPORTED);
  464. DEBUG_OCPPMESSAGE_INFO("------------------Handshake: Client END----------------\n");
  465. DEBUG_OCPPMESSAGE_INFO("------------------Handshake: Server response START----------------\n");
  466. lws_hdr_copy(wsi, buf1, sizeof(buf1) - 1, WSI_TOKEN_HTTP);
  467. DEBUG_OCPPMESSAGE_INFO("HTTP/1.1 %s\n", buf1);
  468. lws_hdr_copy(wsi, buf1, sizeof(buf1) - 1, WSI_TOKEN_UPGRADE);
  469. DEBUG_OCPPMESSAGE_INFO("Upgrade: %s\n", buf1);
  470. lws_hdr_copy(wsi, buf1, sizeof(buf1) - 1, WSI_TOKEN_CONNECTION);
  471. DEBUG_OCPPMESSAGE_INFO("Connection: %s\n", buf1);
  472. lws_hdr_copy(wsi, buf1, sizeof(buf1) - 1, WSI_TOKEN_ACCEPT);
  473. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Accept: %s\n", buf1);
  474. lws_hdr_copy(wsi, buf1, sizeof(buf1) - 1, WSI_TOKEN_PROTOCOL);
  475. DEBUG_OCPPMESSAGE_INFO("Sec-WebSocket-Protocol: %s\n", buf1);
  476. DEBUG_OCPPMESSAGE_INFO("------------------Handshake: Server response END----------------\n");
  477. break;
  478. case LWS_CALLBACK_CLOSED://4
  479. #ifdef SystemLogMessage
  480. DEBUG_INFO("LWS_CALLBACK_CLOSED\n");
  481. #endif
  482. //disconnected
  483. ConnectionEstablished=0;
  484. break;
  485. case LWS_CALLBACK_CLIENT_WRITEABLE://10
  486. //if(need to send message and its relevant data already store into SendBuffer)
  487. #ifdef SystemLogMessage
  488. //DEBUG_INFO("LWS_CALLBACK_CLIENT_WRITEABLE\n");
  489. #endif
  490. SendData(wsi);
  491. //lws_rx_flow_control( wsi, 1 );
  492. break;
  493. case LWS_CALLBACK_CLIENT_RECEIVE://8
  494. ((char *)in)[len] = '\0';
  495. //Print out OCPP Message , except for HeartBeat
  496. {
  497. char *ret, *ret1;
  498. ret = strstr((const char *)in, "currentTime");
  499. ret1 = strstr((const char *)in, "interval");
  500. if(!((ret != NULL)&&(ret1 == NULL)))
  501. {
  502. DEBUG_OCPPMESSAGE_INFO("Original Receive %s\n", (char *)in);
  503. }
  504. }
  505. char tempin[65536]={0};
  506. //char tempin[1024*4]={0};
  507. int c = 0;
  508. char *loc;
  509. char sstr[65536]={ 0 };
  510. //char sstr[600]={ 0 };
  511. //**********Receive Message**********/
  512. c = 0;
  513. loc = strstr((const char *)in, "][2,");
  514. if(loc == NULL)
  515. {
  516. loc = strstr((const char *)in, "][3,");
  517. if(loc == NULL)
  518. {
  519. loc = strstr((const char *)in, "][4,");
  520. }
  521. }
  522. memset(sstr ,0, sizeof(sstr) );
  523. if(loc != NULL)
  524. {
  525. DEBUG_INFO("there are continuous second packet []\n");
  526. while (loc[1+c] != '\0')
  527. {
  528. sstr[c] = loc[1+c];
  529. c++;
  530. }
  531. sstr[c] = '\0';
  532. strcpy(tempin, sstr);
  533. DEBUG_INFO("Final Receive: %s\n", tempin);
  534. }
  535. else
  536. {
  537. strcpy(tempin,(char *)in);
  538. }
  539. ReceivedMessage((void *)tempin, len);
  540. break;
  541. default:
  542. #ifdef Debug
  543. DEBUG_INFO("OCPP16Callback:reason=%d\n", reason);
  544. #endif
  545. break;
  546. }
  547. return 0;
  548. }
  549. static struct lws_protocols protocols[] = {
  550. {
  551. "ocpp1.6",
  552. OCPP16Callback,
  553. 10240,//65536,//10240,
  554. 10240,//65536,//10240,
  555. },
  556. {
  557. "ocpp1.6",
  558. OCPP16Callback,
  559. 10240,//65536,//10240,
  560. 10240,//65536,//10240,
  561. },
  562. {
  563. NULL, NULL, 0 /* End of list */
  564. }
  565. };
  566. void* ConnectWsServer(void* data) //int ConnectWsServer()
  567. {
  568. //pthread_detach(pthread_self());
  569. //int result = PASS;
  570. struct lws_context_creation_info ContextInfo;
  571. struct lws_client_connect_info ConnInfo;
  572. int use_ssl=0;
  573. //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);
  574. if(context!=NULL)
  575. {
  576. pthread_detach(pthread_self());
  577. lws_context_destroy(context);
  578. ConnectionEstablished=0;
  579. context = NULL;
  580. }
  581. memset(&ContextInfo, 0, sizeof(struct lws_context_creation_info));
  582. if((GetOcppServerURL()==0) || (GetOcppPort() == 0) || (GetOcppPath()==0))
  583. {
  584. //result = FAIL;
  585. DEBUG_ERROR("OCPP URL is NULL or OCPP Port is zero or OCPP Path is NULL\n");
  586. goto end;
  587. //return result;
  588. }
  589. if((strcmp(OcppProtocol,"ws")==0)&&(strlen(OcppProtocol)== 2))
  590. {
  591. printf("ws!!! \n");
  592. use_ssl=0;
  593. }
  594. else if((strcmp(OcppProtocol,"wss")==0)&&(strlen(OcppProtocol)== 3))
  595. {
  596. printf("wss!!! \n");
  597. use_ssl=1;
  598. }
  599. ContextInfo.port = CONTEXT_PORT_NO_LISTEN;
  600. ContextInfo.iface = NULL;
  601. ContextInfo.ssl_private_key_password = NULL;
  602. ContextInfo.ssl_cert_filepath = NULL;//"./ssl_key/client_cert.pem";
  603. ContextInfo.ssl_private_key_filepath = NULL;//"./ssl_key/client_key.pem";
  604. ContextInfo.ssl_ca_filepath = "/root/cacert.pem";//"./cacert.pem";
  605. ContextInfo.ssl_cipher_list = NULL; //use default one
  606. ContextInfo.gid = -1;
  607. ContextInfo.uid = -1;
  608. if(use_ssl)
  609. {
  610. ContextInfo.options |= LWS_SERVER_OPTION_DO_SSL_GLOBAL_INIT ;
  611. }
  612. ContextInfo.protocols = protocols;
  613. ContextInfo.timeout_secs = GetWebSocketPingInterval();//WebSocketPingInterval;//30;//9999;//30;
  614. //if(ping pong enabled)
  615. ContextInfo.ws_ping_pong_interval = GetWebSocketPingInterval();//WebSocketPingInterval;//30;//0 for none, else interval in seconds
  616. context = lws_create_context(&ContextInfo);
  617. if (context == NULL)
  618. {
  619. //#ifdef SystemLogMessage
  620. DEBUG_ERROR("lws_create_context NG");
  621. //#endif
  622. //result = FAIL;
  623. goto end;
  624. }
  625. memset(&ConnInfo,0,sizeof(struct lws_client_connect_info));
  626. // fill up below information
  627. ConnInfo.context = context;
  628. ConnInfo.address=(const char *)OcppHost;
  629. printf("\n ConnInfo.address=%s\n",ConnInfo.address);
  630. ConnInfo.port = GetOcppPort();
  631. printf("\n ConnInfo.port=%d\n",ConnInfo.port);
  632. ConnInfo.path=(const char *)OcppPath;
  633. printf("\n ConnInfo.path=%s\n",ConnInfo.path);
  634. char addr_port[256] = { 0 };
  635. sprintf(addr_port, "%s:%u", ConnInfo.address, ConnInfo.port & 65535 );
  636. ConnInfo.host= addr_port; // ConnInfo.address;//lws_canonical_hostname(context);
  637. ConnInfo.origin="origin";
  638. ConnInfo.protocol = protocols[1].name;
  639. ConnInfo.ietf_version_or_minus_one = -1;
  640. if(use_ssl)
  641. ConnInfo.ssl_connection = LCCSCF_USE_SSL | LCCSCF_ALLOW_SELFSIGNED | LCCSCF_SKIP_SERVER_CERT_HOSTNAME_CHECK;;
  642. wsi_client = lws_client_connect_via_info(&ConnInfo);
  643. if (!wsi_client)
  644. {
  645. //#ifdef SystemLogMessage
  646. DEBUG_ERROR("lws_client_connect_via_info NG");
  647. //#endif
  648. //result = FAIL;
  649. goto end;
  650. }
  651. end:
  652. pthread_exit(NULL/*(void *) fname*/);
  653. //return result;
  654. }
  655. //void createq();
  656. int showfront(char *uuid, char *data);
  657. int addq(char *uuid, char *data) ;
  658. int delq();
  659. int sentqueue();
  660. void CheckTransactionPacket(char *uuid);
  661. int queue_operation(int type, char *frontUUID, char *frontData);
  662. int showfront(char *uuid, char *data) {
  663. FILE *fp;
  664. int result = FALSE; // 1: TRUE 0:FALSE
  665. char str[1200]={0};
  666. char sstr[50]={ 0 };//sstr[200]={ 0 };
  667. int c = 0;
  668. char *loc;
  669. char rmFileCmd[100]={0};
  670. struct stat stats;
  671. stat("/Storage/OCPP", &stats);
  672. // Check for directory existence
  673. if (S_ISDIR(stats.st_mode) == 1)
  674. {
  675. //DEBUG_INFO("\n OCPP directory exist \n");
  676. }
  677. else
  678. {
  679. DEBUG_INFO("\n OCPP directory not exist, create dir \n");
  680. sprintf(rmFileCmd,"mkdir -p %s","/Storage/OCPP");
  681. system(rmFileCmd);
  682. }
  683. memset(rmFileCmd, 0, sizeof rmFileCmd);
  684. if((access("/Storage/OCPP/TransactionRelatedQueue",F_OK))!=-1)
  685. {
  686. //DEBUG_INFO("TransactionRelatedQueue exist.\n");
  687. }
  688. else
  689. {
  690. //DEBUG_INFO("TransactionRelatedQueue not exist\n");
  691. FILE *log = fopen("/Storage/OCPP/TransactionRelatedQueue", "w+");
  692. if(log == NULL)
  693. {
  694. DEBUG_INFO("Can't Create File TransactionRelatedQueue \n");
  695. return FALSE;
  696. }
  697. else
  698. {
  699. fclose(log);
  700. }
  701. }
  702. /* opening file for reading */
  703. fp = fopen("/Storage/OCPP/TransactionRelatedQueue" , "r");
  704. if(fp == NULL) {
  705. DEBUG_INFO("Error opening TransactionRelatedQueue file");
  706. return FALSE;
  707. }
  708. if( fgets (str, 1200, fp)!=NULL ) {
  709. /* writing content to stdout */
  710. //DEBUG_INFO("str=%s",str);
  711. if ((str[0] == '\n')||(strcmp(str,"")==0))
  712. {
  713. DEBUG_INFO("It is a blank line");
  714. fclose(fp);
  715. memset(rmFileCmd, 0, sizeof rmFileCmd);
  716. sprintf(rmFileCmd,"rm -f %s","/Storage/OCPP/TransactionRelatedQueue");
  717. system(rmFileCmd);
  718. result = FALSE;
  719. return result;
  720. }
  721. else
  722. {
  723. //puts(str);
  724. //----------------uuid--------------//
  725. loc = strstr(str, "\"");
  726. memset(sstr ,0, sizeof(sstr) );
  727. c = 0;
  728. while (loc[1+c] != '\"')
  729. {
  730. sstr[c] = loc[1+c];
  731. c++;
  732. }
  733. sstr[c] = '\0';
  734. //DEBUG_INFO("\n uuid:%s", sstr);
  735. //DEBUG_INFO("\n data:%s", str);
  736. strcpy(uuid,sstr);
  737. strcpy(data,str);
  738. result = TRUE;
  739. }
  740. }
  741. else
  742. {
  743. //DEBUG_INFO("queue is null\n");
  744. strcpy(uuid,"");
  745. strcpy(data,"");
  746. result = FALSE;
  747. }
  748. fclose(fp);
  749. return result;
  750. }
  751. int addq(char *uuid, char *data) {
  752. FILE *outfile;
  753. char rmFileCmd[100]={0};
  754. struct stat stats;
  755. stat("/Storage/OCPP", &stats);
  756. DEBUG_INFO("addq ");
  757. // Check for directory existence
  758. if (S_ISDIR(stats.st_mode) == 1)
  759. {
  760. //DEBUG_INFO("\n OCPP directory exist \n");
  761. }
  762. else
  763. {
  764. //DEBUG_INFO("\n OCPP directory not exist, create dir \n");
  765. sprintf(rmFileCmd,"mkdir -p %s","/Storage/OCPP");
  766. system(rmFileCmd);
  767. }
  768. memset(rmFileCmd, 0, sizeof rmFileCmd);
  769. if((access("/Storage/OCPP/TransactionRelatedQueue",F_OK))!=-1)
  770. {
  771. //DEBUG_INFO("TransactionRelatedQueue exist.\n");
  772. }
  773. else
  774. {
  775. //DEBUG_INFO("TransactionRelatedQueue not exist\n");
  776. FILE *log = fopen("/Storage/OCPP/TransactionRelatedQueue", "w+");
  777. if(log == NULL)
  778. {
  779. //DEBUG_INFO("Can't Create File TransactionRelatedQueue \n");
  780. return FALSE;
  781. }
  782. else
  783. {
  784. fclose(log);
  785. }
  786. }
  787. // open file for writing
  788. outfile = fopen ("/Storage/OCPP/TransactionRelatedQueue", "a");
  789. DEBUG_INFO("data=%s\n",data);
  790. fputs(data, outfile);
  791. fputs("\n", outfile);
  792. fclose (outfile);
  793. TransactionQueueNum = TransactionQueueNum + 1;
  794. if(OfflineTransaction == 1) // 0: no offline Transaction 1: offline Transaction
  795. {
  796. OfflineTransactionQueueNum = OfflineTransactionQueueNum + 1;
  797. }
  798. DEBUG_INFO("add queue end\n");
  799. return FALSE;
  800. }
  801. int delq() {
  802. char tempfile[] = "/Storage/OCPP/delqtemp.json";
  803. FILE *infile;
  804. FILE *outfile;
  805. int resultRename=0;
  806. char filename[60]={0};
  807. char rmFileCmd[100]={0};
  808. struct stat stats;
  809. stat("/Storage/OCPP", &stats);
  810. DEBUG_INFO("delq()\n");
  811. // Check for directory existence
  812. if (S_ISDIR(stats.st_mode) == 1)
  813. {
  814. //DEBUG_INFO("\n OCPP directory exist \n");
  815. }
  816. else
  817. {
  818. //DEBUG_INFO("\n OCPP directory not exist, create dir \n");
  819. sprintf(rmFileCmd,"mkdir -p %s","/Storage/OCPP");
  820. system(rmFileCmd);
  821. }
  822. memset(rmFileCmd, 0, sizeof rmFileCmd);
  823. if((access("/Storage/OCPP/TransactionRelatedQueue",F_OK))!=-1)
  824. {
  825. //DEBUG_INFO("TransactionRelatedQueue exist.\n");
  826. }
  827. else
  828. {
  829. //DEBUG_INFO("TransactionRelatedQueue not exist\n");
  830. FILE *log = fopen("/Storage/OCPP/TransactionRelatedQueue", "w+");
  831. if(log == NULL)
  832. {
  833. //DEBUG_INFO("log is NULL\n");
  834. return 0;
  835. }
  836. else
  837. {
  838. fclose(log);
  839. }
  840. }
  841. // open file for writing
  842. strcpy(filename, "/Storage/OCPP/TransactionRelatedQueue");
  843. infile = fopen ("/Storage/OCPP/TransactionRelatedQueue", "r");
  844. outfile = fopen (tempfile, "w");
  845. /*检测到文件结束标识返回1,否则返回0。*/
  846. //DEBUG_INFO("feof(infile) =%d\n",feof(infile));
  847. int c;
  848. c = fgetc(infile);
  849. //printf("file c:%d\n",c);
  850. rewind(infile);
  851. if(c == EOF)
  852. {
  853. //DEBUG_INFO("TransactionRelatedQueue is NULL\n");
  854. fclose(infile);
  855. fclose(outfile);
  856. sprintf(rmFileCmd,"rm -f %s",tempfile);
  857. system(rmFileCmd);
  858. }
  859. else
  860. {
  861. char buf[1200]={0};
  862. int i = 0;
  863. //DEBUG_INFO("Orignal File is not NULL\n");
  864. while (fgets(buf, sizeof(buf), infile) != NULL)
  865. {
  866. //printf("Orignal File get strings \n");
  867. buf[strlen(buf) - 1] = '\0'; // eat the newline fgets() stores
  868. if(i==0)
  869. {
  870. TransactionQueueNum = TransactionQueueNum - 1;
  871. TransactionQueueInterval = 0;
  872. TransactionMessageResend = 1;
  873. DEBUG_INFO("delete the item\n");
  874. }
  875. if(i != 0)
  876. {
  877. fprintf(outfile,"%s\n", buf);
  878. }
  879. i = i + 1;
  880. }
  881. fclose(infile);
  882. fclose(outfile);
  883. sprintf(rmFileCmd,"rm -f %s",filename);
  884. system(rmFileCmd);
  885. resultRename = rename(tempfile, filename);
  886. if(resultRename == 0)
  887. {
  888. //DEBUG_INFO("TransactionRelatedQueue file renamed successfully");
  889. }
  890. else
  891. {
  892. //DEBUG_INFO("Error: unable to rename the TransactionRelatedQueue file");
  893. }
  894. DEBUG_INFO("delq() end\n");
  895. }
  896. return 0;
  897. }
  898. int showqueue() {
  899. char rmFileCmd[100]={0};
  900. struct stat stats;
  901. stat("/Storage/OCPP", &stats);
  902. // Check for directory existence
  903. if (S_ISDIR(stats.st_mode) == 1)
  904. {
  905. //DEBUG_INFO("\n OCPP directory exist \n");
  906. }
  907. else
  908. {
  909. //DEBUG_INFO("\n OCPP directory not exist, create dir \n");
  910. sprintf(rmFileCmd,"mkdir -p %s","/Storage/OCPP");
  911. system(rmFileCmd);
  912. }
  913. memset(rmFileCmd, 0, sizeof rmFileCmd);
  914. if((access("/Storage/OCPP/TransactionRelatedQueue",F_OK))!=-1)
  915. {
  916. //DEBUG_INFO("TransactionRelatedQueue exist.\n");
  917. }
  918. else
  919. {
  920. //DEBUG_INFO("TransactionRelatedQueue not exist\n");
  921. FILE *log = fopen("/Storage/OCPP/TransactionRelatedQueue", "w+");
  922. if(log == NULL)
  923. {
  924. DEBUG_INFO("log is NULL\n");
  925. return FALSE;
  926. }
  927. else
  928. {
  929. fclose(log);
  930. }
  931. }
  932. FILE *fp = fopen("/Storage/OCPP/TransactionRelatedQueue", "r");
  933. char line[1200]={0};
  934. // check if file exist (and you can open it) or not
  935. if (fp == NULL) {
  936. DEBUG_INFO("can open file TransactionRelatedQueue!");
  937. return FALSE;
  938. }
  939. TransactionQueueNum = 0; // the number of packets in queue
  940. while(fgets(line, sizeof line, fp) != NULL) {
  941. //DEBUG_INFO("%s\n", line);
  942. TransactionQueueNum = TransactionQueueNum + 1; //the number of packets in queue
  943. }
  944. fclose(fp);
  945. return TRUE;
  946. }
  947. int sentqueue(){
  948. FILE *fp;
  949. int result = FALSE; // 1: TRUE 0:FALSE
  950. int temptransactionId = 0, gettransactionId = 0;
  951. int tempconnectorId = 0;
  952. //int gunIndex = 0;
  953. char guid[37]={0};
  954. char tempdata[65]={0};
  955. char key_value[65]={0};
  956. int IsStopTransaction = FALSE;
  957. //int IsconnectorIdNULL = FALSE;
  958. //int IsIdtagNULL = FALSE;
  959. char str[1200]={0};
  960. char strcomposite[1200]={0};
  961. char rmFileCmd[100]={0};
  962. struct stat stats;
  963. char sstr[28]={0};
  964. unsigned char IdtagStr[20]={0};
  965. unsigned char timestampStr[30]={0};
  966. int tempmeterStart = 0;
  967. int tempreservationId = 0;
  968. int c = 0;
  969. char *loc;
  970. DEBUG_INFO("sentqueue\n");
  971. stat("/Storage/OCPP", &stats);
  972. // Check for directory existence
  973. if (S_ISDIR(stats.st_mode) == 1)
  974. {
  975. //DEBUG_INFO("\n OCPP directory exist \n");
  976. }
  977. else
  978. {
  979. //DEBUG_INFO("\n OCPP directory not exist, create dir \n");
  980. sprintf(rmFileCmd,"mkdir -p %s","/Storage/OCPP");
  981. system(rmFileCmd);
  982. }
  983. memset(rmFileCmd, 0, sizeof rmFileCmd);
  984. /* opening file for reading */
  985. fp = fopen("/Storage/OCPP/TransactionRelatedQueue" , "r");
  986. if(fp == NULL) {
  987. DEBUG_INFO("Error opening file");
  988. return FALSE;
  989. }
  990. if( fgets (str, 1200, fp)!=NULL ) {
  991. //---- writing content to stdout ---//
  992. //*********************StopTransaction***************************/
  993. loc = strstr(str, "StopTransaction");
  994. c = 0;
  995. memset(sstr ,0, sizeof(sstr) );
  996. if(loc != NULL)
  997. {
  998. IsStopTransaction = TRUE;
  999. }
  1000. //*********************Start:connectorId***************************/
  1001. loc = strstr(str, "connectorId");
  1002. c = 0;
  1003. memset(sstr ,0, sizeof(sstr) );
  1004. if(loc != NULL)
  1005. {
  1006. while (loc[strlen("connectorId")+2+c] != ',')
  1007. {
  1008. sstr[c] = loc[strlen("connectorId")+2+c];
  1009. c++;
  1010. }
  1011. sstr[c] = '\0';
  1012. tempconnectorId = atoi(sstr);
  1013. }
  1014. // else
  1015. // {
  1016. // IsconnectorIdNULL = TRUE;
  1017. // }
  1018. //*********************End:connectorId***************************/
  1019. //*********************Start:idTag***************************/
  1020. loc = strstr(str, "idTag");
  1021. c = 0;
  1022. memset(sstr ,0, sizeof(sstr) );
  1023. if(loc != NULL)
  1024. {
  1025. while (loc[3+strlen("idTag")+c] != '\"')
  1026. {
  1027. sstr[c] = loc[3+strlen("idTag")+c];
  1028. c++;
  1029. }
  1030. sstr[c] = '\0';
  1031. strcpy((char*)IdtagStr, sstr);
  1032. }
  1033. // else
  1034. // {
  1035. // IsIdtagNULL = TRUE;
  1036. // }
  1037. //*********************End:idTag***************************/
  1038. //*********************Start: StartTransaction***************************/
  1039. loc = strstr(str, "StartTransaction");
  1040. c = 0;
  1041. memset(sstr ,0, sizeof(sstr) );
  1042. if(loc != NULL)
  1043. {
  1044. // [2,0200000000000000000000000001584415776,StartTransaction,{connectorId:1,idTag:123,meterStart:100,reservationId:0,timestamp:2020-03-17T03:29:36Z}]
  1045. //DEBUG_INFO("\n sent queue StartTransaction\n");
  1046. if(tempconnectorId > 0)
  1047. {
  1048. sprintf(tempdata, "StartTransaction,%d", (tempconnectorId-1));
  1049. }
  1050. //GUID
  1051. memset(sstr ,0, sizeof(sstr) );
  1052. c=0;
  1053. while (str[4+c] != '\"')
  1054. {
  1055. sstr[c] = str[4+c];
  1056. c++;
  1057. }
  1058. sstr[c] = '\0';
  1059. strcpy(guid, sstr);
  1060. //Idtag
  1061. loc = strstr(str, "idTag");
  1062. memset(sstr ,0, sizeof(sstr) );
  1063. c=0;
  1064. while (loc[3+strlen("idTag")+c] != '\"')
  1065. {
  1066. sstr[c] = loc[3+strlen("idTag")+c];
  1067. c++;
  1068. }
  1069. sstr[c] = '\0';
  1070. strcpy((char*)IdtagStr, sstr);
  1071. //meterStart
  1072. loc = strstr(str, "meterStart");
  1073. c = 0;
  1074. memset(sstr ,0, sizeof(sstr) );
  1075. if(loc != NULL)
  1076. {
  1077. while (loc[strlen("meterStart")+2+c] != ',')
  1078. {
  1079. sstr[c] = loc[strlen("meterStart")+2+c];
  1080. c++;
  1081. }
  1082. sstr[c] = '\0';
  1083. tempmeterStart = atoi(sstr);
  1084. }
  1085. //reservationId
  1086. loc = strstr(str, "reservationId");
  1087. c = 0;
  1088. memset(sstr ,0, sizeof(sstr) );
  1089. if(loc != NULL)
  1090. {
  1091. while (loc[strlen("reservationId")+2+c] != ',')
  1092. {
  1093. sstr[c] = loc[strlen("reservationId")+2+c];
  1094. c++;
  1095. }
  1096. sstr[c] = '\0';
  1097. tempreservationId = atoi(sstr);
  1098. }
  1099. //timestamp
  1100. loc = strstr(str, "timestamp");
  1101. memset(sstr ,0, sizeof(sstr) );
  1102. c=0;
  1103. while (loc[3+strlen("timestamp")+c] != '\"')
  1104. {
  1105. sstr[c] = loc[3+strlen("timestamp")+c];
  1106. c++;
  1107. }
  1108. sstr[c] = '\0';
  1109. strcpy((char*)timestampStr, sstr);
  1110. if(hashmap_operation(1, guid, key_value) == TRUE)
  1111. {
  1112. //DEBUG_INFO("\n 1. sent queue guid=%s\n",guid);
  1113. }
  1114. else
  1115. {
  1116. hashmap_operation(0, guid, tempdata);
  1117. FillStartTransaction(tempconnectorId, IdtagStr, tempmeterStart, tempreservationId, timestampStr);
  1118. //DEBUG_INFO("\n 2. sent queue guid=%s\n",guid);
  1119. }
  1120. }
  1121. //*********************End: StartTransaction***************************/
  1122. //****************transactionId********************/
  1123. c=0;
  1124. loc = strstr(str, "transactionId");
  1125. memset(sstr ,0, sizeof(sstr) );
  1126. if(loc != NULL)
  1127. {
  1128. while ((loc[strlen("transactionId")+2+c] != '}') && (loc[strlen("transactionId")+2+c] != ','))
  1129. {
  1130. sstr[c] = loc[strlen("transactionId")+2+c];
  1131. c++;
  1132. }
  1133. sstr[c] = '\0';
  1134. temptransactionId = atoi(sstr);
  1135. gettransactionId = GetTransactionId(tempconnectorId, IdtagStr);
  1136. if((gettransactionId != 0)&&(temptransactionId != gettransactionId))
  1137. {
  1138. strncpy(strcomposite,str, (loc-str)+2+strlen("transactionId"));
  1139. sprintf(strcomposite+((loc-str)+2+strlen("transactionId")),"%d",gettransactionId);
  1140. strcat(strcomposite, loc+strlen("transactionId")+2+c);
  1141. LWS_Send(strcomposite);
  1142. }
  1143. else
  1144. {
  1145. LWS_Send(str);
  1146. }
  1147. if((IsStopTransaction == TRUE)&&(gettransactionId != 0))
  1148. {
  1149. SetTransactionIdZero(gettransactionId);
  1150. }
  1151. }
  1152. else
  1153. {
  1154. LWS_Send(str);
  1155. }
  1156. result = TRUE;
  1157. }
  1158. else
  1159. {
  1160. result = FALSE;
  1161. }
  1162. fclose(fp);
  1163. return result;
  1164. }
  1165. //
  1166. void* processTransactionQueue(void* data) {
  1167. char frontUUID[100] ={0};
  1168. char frontData[1200/*1024*4*/] ={0};
  1169. int queueNotEmpty = FALSE;
  1170. while(1)
  1171. {
  1172. if(FirstHeartBeatResponse() == 1)
  1173. {
  1174. memset(frontUUID, 0, sizeof(frontUUID));
  1175. memset(frontData, 0, sizeof(frontData));
  1176. queueNotEmpty = FALSE;
  1177. queueNotEmpty = queue_operation(1,frontUUID, frontData);//showfront(frontUUID, frontData); ---> remove temporally
  1178. if((queueNotEmpty == TRUE) && (GetOcppConnStatus() == 1)) //OcppConnStatus 0: disconnected, 1: connected
  1179. {
  1180. //DEBUG_INFO("OfflineTransaction=%d\n",OfflineTransaction);
  1181. //DEBUG_INFO("OfflineTransactionQueueNum=%d\n",OfflineTransactionQueueNum);
  1182. if((OfflineTransaction == 1) && (OfflineTransactionQueueNum != 0)) //OfflineTransaction 0: no offline Transaction 1: offline Transaction
  1183. {
  1184. TransactionQueueInterval = 10;//10;//2;
  1185. sendbuffer = 1; // 0: no packets to send 1: send the top packet in queue
  1186. OfflineTransactionQueueNum = OfflineTransactionQueueNum - 1;
  1187. if(OfflineTransactionQueueNum == 0)
  1188. {
  1189. OfflineTransaction = 0;
  1190. }
  1191. //DEBUG_INFO(" Offline Transaction , online sent queue .... \n");
  1192. sleep(TransactionQueueInterval);
  1193. }
  1194. else
  1195. {
  1196. //DEBUG_INFO(" online sent queue .... \n");
  1197. //OfflineTransaction = 0;
  1198. if(TransactionMessageResend <= TransactionMessageAttemptsGet()) //
  1199. {
  1200. DEBUG_INFO("processTransactionQueue queue is not empty!\n");
  1201. TransactionQueueInterval= TransactionMessageRetryIntervalGet()* TransactionMessageResend;
  1202. DEBUG_INFO("TransactionQueueInterval =%d\n",TransactionQueueInterval);
  1203. sleep(TransactionQueueInterval);
  1204. sendbuffer = 1;
  1205. TransactionMessageResend = TransactionMessageResend + 1;
  1206. DEBUG_INFO("After ADD,TransactionMessageResend=%d\n",TransactionMessageResend);
  1207. //sleep(TransactionQueueInterval);
  1208. }
  1209. else
  1210. {
  1211. queue_operation(2,"",""); //// delete item
  1212. TransactionQueueInterval = 0;
  1213. TransactionMessageResend = 1;
  1214. sleep(TransactionQueueInterval);
  1215. }
  1216. }
  1217. }
  1218. else
  1219. {
  1220. TransactionQueueInterval = 0;//10;
  1221. sleep(TransactionQueueInterval);
  1222. }
  1223. }
  1224. if(GetOcppConnStatus() == 0)
  1225. {
  1226. //DEBUG_INFO(" Offline .... \n");
  1227. if(queueNotEmpty == TRUE)
  1228. {
  1229. OfflineTransaction = 1; // 0: no offline Transaction 1: offline Transaction
  1230. //DEBUG_INFO(" Offline Transaction .... \n");
  1231. }
  1232. }
  1233. usleep(5000);
  1234. }
  1235. pthread_exit(NULL); //
  1236. return 0;
  1237. }
  1238. void CheckTransactionPacket(char *uuid)
  1239. {
  1240. char frontUUID[100]={0};
  1241. char frontData[1200]={0};
  1242. int queueNotEmpty = FALSE;
  1243. int cmpResult = 0;
  1244. //queue_operation(0,"","");//showqueue(); ---> remove temporally
  1245. queueNotEmpty = queue_operation(1,frontUUID, frontData);//showfront(frontUUID, frontData); ---> remove temporally
  1246. if(queueNotEmpty == TRUE)
  1247. {
  1248. cmpResult = strcmp(frontUUID, uuid);
  1249. if (cmpResult == 0)
  1250. {
  1251. DEBUG_INFO("TransactionPacket Compare All right!\n");
  1252. //DEBUG_INFO("frontUUID=%s\n",frontUUID);
  1253. //DEBUG_INFO("uuid=%s\n",uuid);
  1254. queue_operation(2,"","");//delq(); ---> remove temporally
  1255. TransactionQueueInterval = 0;
  1256. TransactionMessageResend = 1;
  1257. }
  1258. }
  1259. }
  1260. //---- type: 0 (showqueue ); type: 1(showfront); type: 2(delq) type: 3 (sentqueue) type: 4 (addq) type: 5(store queue to /Storage/OCPP/ ) ---//
  1261. int queue_operation(int type, char *frontUUID, char *frontData)
  1262. {
  1263. int result=0;
  1264. while(1)
  1265. {
  1266. if (!IsUsing )
  1267. {
  1268. IsUsing = TRUE;
  1269. //pthread_mutex_unlock(&lock_sentData);
  1270. //pthread_mutex_lock(&lock_sentData);
  1271. if(type == 0) // show items in queue
  1272. {
  1273. result = showqueue();
  1274. }
  1275. else if(type == 1) // show first item
  1276. {
  1277. result = showfront(frontUUID, frontData);
  1278. }
  1279. else if(type == 2) // delete item
  1280. {
  1281. result = delq();
  1282. }
  1283. else if(type == 3) // sent items in queue
  1284. {
  1285. result = sentqueue();
  1286. }
  1287. else if(type == 4) // add items to the queue
  1288. {
  1289. result = addq(frontUUID, frontData);
  1290. }
  1291. //pthread_mutex_unlock(&lock_sentData);
  1292. IsUsing = FALSE;
  1293. break;
  1294. }
  1295. }
  1296. return result;
  1297. }
  1298. char * strchr(const char *p, int ch)
  1299. {
  1300. char c;
  1301. c = ch;
  1302. for (;; ++p) {
  1303. if (*p == c)
  1304. return ((char *)p);
  1305. if (*p == '\0')
  1306. return (NULL);
  1307. }
  1308. /* NOTREACHED */
  1309. return NULL;
  1310. }
  1311. int removeMessageSentFile(void)
  1312. {
  1313. char rmFileCmd[100]={0};
  1314. struct stat stats;
  1315. //
  1316. stat("/Storage/OCPP", &stats);
  1317. // Check for directory existence
  1318. if (S_ISDIR(stats.st_mode) == 1)
  1319. {
  1320. //DEBUG_INFO("\n OCPP directory exist \n");
  1321. }
  1322. else
  1323. {
  1324. DEBUG_INFO("\n directory not exist, create dir \n");
  1325. sprintf(rmFileCmd,"mkdir -p %s","/Storage/OCPP");
  1326. system(rmFileCmd);
  1327. }
  1328. memset(rmFileCmd, 0, sizeof rmFileCmd);
  1329. if((access("/Storage/OCPP/MessageSent",F_OK))!=-1)
  1330. {
  1331. DEBUG_INFO("MessageSent file exist.\n");
  1332. sprintf(rmFileCmd,"rm -f %s","/Storage/OCPP/MessageSent");
  1333. system(rmFileCmd);
  1334. }
  1335. memset(rmFileCmd, 0, sizeof rmFileCmd);
  1336. return 0;
  1337. }
  1338. void work(char s[]) //删除首尾空格
  1339. {int i,j;
  1340. for(i=0;s[i]==' ';i++); //找到开头第一个非空格
  1341. for(j=0;s[i];)s[j++]=s[i++]; //删除开头空格
  1342. for(i--;s[i]==' ';i--)s[i]='\0'; //删除末尾空格
  1343. }
  1344. static int changeChageWebSocketPingInterval = FALSE;
  1345. void ChageWebSocketPingInterval(int WebSocketPingInterval)
  1346. {
  1347. changeChageWebSocketPingInterval = TRUE;
  1348. }
  1349. #define SystemLogMessage
  1350. //================================================
  1351. // Main process
  1352. //================================================
  1353. int main(void)
  1354. {
  1355. char rmFileCmd[100]={0};
  1356. struct stat stats;
  1357. pthread_t t;
  1358. //pthread_t pid;
  1359. #ifdef SystemLogMessage
  1360. DEBUG_INFO("Initialization...\n");
  1361. #endif
  1362. if(ProcessShareMemory()== FAIL)
  1363. {
  1364. return FAIL;
  1365. }
  1366. //Create OCPP dir
  1367. stat("/Storage/OCPP", &stats);
  1368. // Check for directory existence
  1369. if (S_ISDIR(stats.st_mode) == 1)
  1370. {
  1371. //DEBUG_INFO("\n OCPP directory exist \n");
  1372. }
  1373. else
  1374. {
  1375. DEBUG_INFO("\n OCPP directory not exist, create dir \n");
  1376. sprintf(rmFileCmd,"mkdir -p %s","/Storage/OCPP");
  1377. system(rmFileCmd);
  1378. }
  1379. memset(rmFileCmd, 0, sizeof rmFileCmd);
  1380. //Create Process: Resend Transaction
  1381. pthread_create(&t, NULL, processTransactionQueue, NULL); //
  1382. sqlite3_config(SQLITE_CONFIG_URI,1);
  1383. if(sqlite3_open("file:/Storage/OCPP/charger.db", &db))
  1384. {
  1385. #ifdef Debug
  1386. DEBUG_INFO( "Can't open database: %s\n", sqlite3_errmsg(db));
  1387. #endif
  1388. sqlite3_close( db );
  1389. exit(0);
  1390. }
  1391. else
  1392. {
  1393. #ifdef Debug
  1394. DEBUG_INFO( "Opened database successfully\n");
  1395. #endif
  1396. }
  1397. //Create Table log buffer
  1398. int rc =sqlite3_exec(db, createsql, 0, 0, &errMsg);
  1399. if (SQLITE_OK != rc)
  1400. {
  1401. #ifdef Debug
  1402. DEBUG_INFO( "Create log buffer table error message: %s\n", errMsg);
  1403. #endif
  1404. return 0;
  1405. }
  1406. else
  1407. {
  1408. #ifdef Debug
  1409. DEBUG_INFO( "Opened log buffer table successfully\n");
  1410. #endif
  1411. }
  1412. // Create Table OcppAuthCache
  1413. rc =sqlite3_exec(db, sqlOcppAuthCache, 0, 0, &errMsg);
  1414. if (SQLITE_OK != rc)
  1415. {
  1416. #ifdef Debug
  1417. DEBUG_INFO( "Create OcppAuthCache error message: %s\n", errMsg);
  1418. #endif
  1419. return 0;
  1420. }
  1421. else
  1422. {
  1423. #ifdef Debug
  1424. DEBUG_INFO( "Opened OcppAuthCache table successfully\n");
  1425. #endif
  1426. }
  1427. // Create Table OcppAuthLocal
  1428. rc =sqlite3_exec(db, sqlOcppAuthLocal, 0, 0, &errMsg);
  1429. if (SQLITE_OK != rc)
  1430. {
  1431. #ifdef Debug
  1432. DEBUG_INFO( "Create Table OcppAuthLocal error %s\n",errMsg);
  1433. #endif
  1434. return 0;
  1435. }
  1436. else
  1437. {
  1438. #ifdef Debug
  1439. DEBUG_INFO( "Opened OcppAuthLocal table successfully\n");
  1440. #endif
  1441. }
  1442. initialConfigurationTable();
  1443. removeMessageSentFile();
  1444. //OCPP_get_TableAuthlocalAllData();
  1445. for(;;)
  1446. {
  1447. while(ConnectionEstablished==0) // Check InternetConn 0: disconnected, 1: connected
  1448. {
  1449. SetOcppConnStatus(FALSE);
  1450. if((time((time_t*)NULL)-startTime.connect)>=60)
  1451. {
  1452. #ifdef Debug
  1453. DEBUG_INFO("Execute ConnectWsServer\n");
  1454. #endif
  1455. //ConnectWsServer();
  1456. pthread_create(&pid, NULL, ConnectWsServer, NULL);
  1457. startTime.connect=time((time_t*)NULL);
  1458. }
  1459. // Check System Value, process offline Transaction
  1460. CheckSystemValue();
  1461. usleep(5000);
  1462. lws_service(context, 10000);//timeout_ms
  1463. //lws_service(context, 100);//timeout_ms
  1464. }
  1465. if(( (BootNotificationInterval != 0 && ((time((time_t*)NULL)-startTime.bootNotification)>=BootNotificationInterval) ) || ((time((time_t*)NULL)-startTime.bootNotification)>=defaultWaitingTime) ) && ((server_sign == FALSE)/*|| (server_pending == TRUE)*/))
  1466. {
  1467. //hashmapForMessageNew();
  1468. sendBootNotificationRequest();
  1469. startTime.bootNotification=time((time_t*)NULL);
  1470. }
  1471. if(server_sign == TRUE)
  1472. {
  1473. if(sendbuffer == 1)
  1474. {
  1475. queue_operation(3, "", "");//sentqueue()
  1476. sendbuffer = 0;
  1477. }
  1478. SetOcppConnStatus(TRUE);
  1479. // Check System Value
  1480. CheckSystemValue();
  1481. if(GetHeartBeatWithNOResponse() >= 3)
  1482. {
  1483. lws_context_destroy(context);
  1484. ConnectionEstablished=0;
  1485. context = NULL;
  1486. SetHeartBeatWithNOResponse();
  1487. }
  1488. if((changeChageWebSocketPingInterval == TRUE) || (GetInternetConn() == 0)) // Check InternetConn 0: disconnected, 1: connected
  1489. {
  1490. changeChageWebSocketPingInterval = FALSE;
  1491. lws_context_destroy(context);
  1492. ConnectionEstablished=0;
  1493. context = NULL;
  1494. }
  1495. }
  1496. lws_service(context, 100);//timeout_ms
  1497. }
  1498. pthread_join(t, NULL); //
  1499. //hashmapForMessageFree();
  1500. return FAIL;
  1501. }