Module_OcppBackend.c 43 KB

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