Module_OcppBackend.c 42 KB

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