Module_OcppBackend.c 37 KB

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