Module_OcppBackend.c 36 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499
  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. unsigned 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. //---------------- addq(): add the item to the end of queue ----------------//
  577. int addq(char *uuid, char *data)
  578. {
  579. FILE *outfile;
  580. char rmFileCmd[100]={0};
  581. struct stat stats;
  582. stat("/Storage/OCPP", &stats);
  583. DEBUG_INFO("addq ");
  584. // Check for directory existence
  585. if (S_ISDIR(stats.st_mode) == 1)
  586. {
  587. //DEBUG_INFO("\n OCPP directory exist \n");
  588. }
  589. else
  590. {
  591. //DEBUG_INFO("\n OCPP directory not exist, create dir \n");
  592. sprintf(rmFileCmd,"mkdir -p %s","/Storage/OCPP");
  593. system(rmFileCmd);
  594. }
  595. memset(rmFileCmd, 0, sizeof rmFileCmd);
  596. if((access("/Storage/OCPP/TransactionRelatedQueue",F_OK))!=-1)
  597. {
  598. //DEBUG_INFO("TransactionRelatedQueue exist.\n");
  599. }
  600. else
  601. {
  602. //DEBUG_INFO("TransactionRelatedQueue not exist\n");
  603. FILE *log = fopen("/Storage/OCPP/TransactionRelatedQueue", "w+");
  604. if(log == NULL)
  605. {
  606. //DEBUG_INFO("Can't Create File TransactionRelatedQueue \n");
  607. return FALSE;
  608. }
  609. else
  610. {
  611. fclose(log);
  612. }
  613. }
  614. // open file for writing
  615. outfile = fopen ("/Storage/OCPP/TransactionRelatedQueue", "a");
  616. DEBUG_INFO("data = %s\n",data);
  617. fputs(data, outfile);
  618. fputs("\n", outfile);
  619. fclose (outfile);
  620. TransactionQueueNum = TransactionQueueNum + 1;
  621. if(OfflineTransaction == 1) // 0: no offline Transaction 1: offline Transaction
  622. {
  623. OfflineTransactionQueueNum = OfflineTransactionQueueNum + 1;
  624. }
  625. DEBUG_INFO("add queue end\n");
  626. return FALSE;
  627. }
  628. //---------------- delq(): delete the top item --------------//
  629. int delq()
  630. {
  631. char tempfile[] = "/Storage/OCPP/delqtemp.json";
  632. FILE *infile;
  633. FILE *outfile;
  634. int resultRename=0;
  635. char filename[60]={0};
  636. char rmFileCmd[100]={0};
  637. struct stat stats;
  638. stat("/Storage/OCPP", &stats);
  639. DEBUG_INFO("delq()\n");
  640. // Check for directory existence
  641. if (S_ISDIR(stats.st_mode) == 1)
  642. {
  643. //DEBUG_INFO("\n OCPP directory exist \n");
  644. }
  645. else
  646. {
  647. //DEBUG_INFO("\n OCPP directory not exist, create dir \n");
  648. sprintf(rmFileCmd,"mkdir -p %s","/Storage/OCPP");
  649. system(rmFileCmd);
  650. }
  651. memset(rmFileCmd, 0, sizeof rmFileCmd);
  652. if((access("/Storage/OCPP/TransactionRelatedQueue",F_OK))!=-1)
  653. {
  654. //DEBUG_INFO("TransactionRelatedQueue exist.\n");
  655. }
  656. else
  657. {
  658. //DEBUG_INFO("TransactionRelatedQueue not exist\n");
  659. FILE *log = fopen("/Storage/OCPP/TransactionRelatedQueue", "w+");
  660. if(log == NULL)
  661. {
  662. //DEBUG_INFO("log is NULL\n");
  663. return 0;
  664. }
  665. else
  666. {
  667. fclose(log);
  668. }
  669. }
  670. // open file for writing
  671. strcpy(filename, "/Storage/OCPP/TransactionRelatedQueue");
  672. infile = fopen ("/Storage/OCPP/TransactionRelatedQueue", "r");
  673. outfile = fopen (tempfile, "w");
  674. /*检测到文件结束标识返回1,否则返回0。*/
  675. //DEBUG_INFO("feof(infile) =%d\n",feof(infile));
  676. int c;
  677. c = fgetc(infile);
  678. //printf("file c:%d\n",c);
  679. rewind(infile);
  680. if(c == EOF)
  681. {
  682. //DEBUG_INFO("TransactionRelatedQueue is NULL\n");
  683. fclose(infile);
  684. fclose(outfile);
  685. sprintf(rmFileCmd,"rm -f %s",tempfile);
  686. system(rmFileCmd);
  687. }
  688. else
  689. {
  690. char buf[1200]={0};
  691. int i = 0;
  692. //DEBUG_INFO("Orignal File is not NULL\n");
  693. while (fgets(buf, sizeof(buf), infile) != NULL)
  694. {
  695. //printf("Orignal File get strings \n");
  696. buf[strlen(buf) - 1] = '\0'; // eat the newline fgets() stores
  697. if(i==0)
  698. {
  699. TransactionQueueNum = TransactionQueueNum - 1;
  700. TransactionQueueInterval = 0;
  701. TransactionMessageResend = 1;
  702. DEBUG_INFO("delete the item\n");
  703. }
  704. if(i != 0)
  705. {
  706. fprintf(outfile,"%s\n", buf);
  707. }
  708. i = i + 1;
  709. }
  710. fclose(infile);
  711. fclose(outfile);
  712. sprintf(rmFileCmd,"rm -f %s",filename);
  713. system(rmFileCmd);
  714. resultRename = rename(tempfile, filename);
  715. if(resultRename == 0)
  716. {
  717. //DEBUG_INFO("TransactionRelatedQueue file renamed successfully");
  718. }
  719. else
  720. {
  721. //DEBUG_INFO("Error: unable to rename the TransactionRelatedQueue file");
  722. }
  723. DEBUG_INFO("delq() end\n");
  724. }
  725. return 0;
  726. }
  727. int showqueue()
  728. {
  729. char rmFileCmd[100]={0};
  730. struct stat stats;
  731. stat("/Storage/OCPP", &stats);
  732. // Check for directory existence
  733. if (S_ISDIR(stats.st_mode) == 1)
  734. {
  735. //DEBUG_INFO("\n OCPP directory exist \n");
  736. }
  737. else
  738. {
  739. //DEBUG_INFO("\n OCPP directory not exist, create dir \n");
  740. sprintf(rmFileCmd,"mkdir -p %s","/Storage/OCPP");
  741. system(rmFileCmd);
  742. }
  743. memset(rmFileCmd, 0, sizeof rmFileCmd);
  744. if((access("/Storage/OCPP/TransactionRelatedQueue",F_OK))!=-1)
  745. {
  746. //DEBUG_INFO("TransactionRelatedQueue exist.\n");
  747. }
  748. else
  749. {
  750. //DEBUG_INFO("TransactionRelatedQueue not exist\n");
  751. FILE *log = fopen("/Storage/OCPP/TransactionRelatedQueue", "w+");
  752. if(log == NULL)
  753. {
  754. DEBUG_INFO("log is NULL\n");
  755. return FALSE;
  756. }
  757. else
  758. {
  759. fclose(log);
  760. }
  761. }
  762. FILE *fp = fopen("/Storage/OCPP/TransactionRelatedQueue", "r");
  763. char line[1200]={0};
  764. // check if file exist (and you can open it) or not
  765. if (fp == NULL) {
  766. DEBUG_INFO("can open file TransactionRelatedQueue!");
  767. return FALSE;
  768. }
  769. TransactionQueueNum = 0; // the number of packets in queue
  770. while(fgets(line, sizeof line, fp) != NULL) {
  771. //DEBUG_INFO("%s\n", line);
  772. TransactionQueueNum = TransactionQueueNum + 1; //the number of packets in queue
  773. }
  774. fclose(fp);
  775. return TRUE;
  776. }
  777. int sentqueue(){
  778. FILE *fp;
  779. int result = FALSE; // 1: TRUE 0:FALSE
  780. int temptransactionId = 0, gettransactionId = 0;
  781. int tempconnectorId = 0;
  782. //int gunIndex = 0;
  783. char guid[37]={0};
  784. char tempdata[65]={0};
  785. char key_value[65]={0};
  786. int IsStopTransaction = FALSE;
  787. //int IsconnectorIdNULL = FALSE;
  788. //int IsIdtagNULL = FALSE;
  789. char str[1200]={0};
  790. char strcomposite[1200]={0};
  791. char rmFileCmd[100]={0};
  792. char connectorStr[2]={0};
  793. struct stat stats;
  794. char sstr[28]={0};
  795. unsigned char IdtagStr[20]={0};
  796. unsigned char timestampStr[30]={0};
  797. int tempmeterStart = 0;
  798. int tempreservationId = 0;
  799. int c = 0;
  800. char *loc;
  801. DEBUG_INFO("sentqueue\n");
  802. stat("/Storage/OCPP", &stats);
  803. // Check for directory existence
  804. if (S_ISDIR(stats.st_mode) == 1)
  805. {
  806. //DEBUG_INFO("\n OCPP directory exist \n");
  807. }
  808. else
  809. {
  810. //DEBUG_INFO("\n OCPP directory not exist, create dir \n");
  811. sprintf(rmFileCmd,"mkdir -p %s","/Storage/OCPP");
  812. system(rmFileCmd);
  813. }
  814. memset(rmFileCmd, 0, sizeof rmFileCmd);
  815. /* opening file for reading */
  816. fp = fopen("/Storage/OCPP/TransactionRelatedQueue" , "r");
  817. if(fp == NULL) {
  818. DEBUG_INFO("Error opening file");
  819. return FALSE;
  820. }
  821. if( fgets (str, 1200, fp)!=NULL ) {
  822. //---- writing content to stdout ---//
  823. //*********************Start: StopTransaction***************************/
  824. loc = strstr(str, "StopTransaction");
  825. c = 0;
  826. memset(sstr ,0, sizeof(sstr) );
  827. if(loc != NULL)
  828. {
  829. IsStopTransaction = TRUE;
  830. }
  831. memset(connectorStr,0,sizeof(connectorStr));
  832. strncpy(connectorStr, str, 1);
  833. tempconnectorId = atoi(connectorStr);
  834. //*********************End: StopTransaction***************************/
  835. #if 0
  836. //*********************Start:connectorId***************************/
  837. loc = strstr(str, "connectorId");
  838. c = 0;
  839. memset(sstr ,0, sizeof(sstr) );
  840. if(loc != NULL)
  841. {
  842. while (loc[strlen("connectorId")+2+c] != ',')
  843. {
  844. sstr[c] = loc[strlen("connectorId")+2+c];
  845. c++;
  846. }
  847. sstr[c] = '\0';
  848. tempconnectorId = atoi(sstr);
  849. }
  850. // else
  851. // {
  852. // IsconnectorIdNULL = TRUE;
  853. // }
  854. //*********************End:connectorId***************************/
  855. #endif
  856. //*********************Start:idTag***************************/
  857. loc = strstr(str, "idTag");
  858. c = 0;
  859. memset(sstr ,0, sizeof(sstr) );
  860. if(loc != NULL)
  861. {
  862. while (loc[3+strlen("idTag")+c] != '\"')
  863. {
  864. sstr[c] = loc[3+strlen("idTag")+c];
  865. c++;
  866. }
  867. sstr[c] = '\0';
  868. strcpy((char*)IdtagStr, sstr);
  869. }
  870. // else
  871. // {
  872. // IsIdtagNULL = TRUE;
  873. // }
  874. //*********************End:idTag***************************/
  875. //*********************Start: StartTransaction***************************/
  876. loc = strstr(str, "StartTransaction");
  877. c = 0;
  878. memset(sstr ,0, sizeof(sstr) );
  879. if(loc != NULL)
  880. {
  881. // [2,0200000000000000000000000001584415776,StartTransaction,{connectorId:1,idTag:123,meterStart:100,reservationId:0,timestamp:2020-03-17T03:29:36Z}]
  882. //DEBUG_INFO("\n sent queue StartTransaction\n");
  883. if(tempconnectorId > 0)
  884. {
  885. sprintf(tempdata, "StartTransaction,%d", (tempconnectorId-1));
  886. }
  887. //GUID
  888. memset(sstr ,0, sizeof(sstr) );
  889. c=0;
  890. while (str[6+c] != '\"')
  891. {
  892. sstr[c] = str[6+c];
  893. c++;
  894. }
  895. sstr[c] = '\0';
  896. strcpy(guid, sstr);
  897. //Idtag
  898. loc = strstr(str, "idTag");
  899. memset(sstr ,0, sizeof(sstr) );
  900. c=0;
  901. while (loc[3+strlen("idTag")+c] != '\"')
  902. {
  903. sstr[c] = loc[3+strlen("idTag")+c];
  904. c++;
  905. }
  906. sstr[c] = '\0';
  907. strcpy((char*)IdtagStr, sstr);
  908. //meterStart
  909. loc = strstr(str, "meterStart");
  910. c = 0;
  911. memset(sstr ,0, sizeof(sstr) );
  912. if(loc != NULL)
  913. {
  914. while (loc[strlen("meterStart")+2+c] != ',')
  915. {
  916. sstr[c] = loc[strlen("meterStart")+2+c];
  917. c++;
  918. }
  919. sstr[c] = '\0';
  920. tempmeterStart = atoi(sstr);
  921. }
  922. //reservationId
  923. loc = strstr(str, "reservationId");
  924. c = 0;
  925. memset(sstr ,0, sizeof(sstr) );
  926. if(loc != NULL)
  927. {
  928. while (loc[strlen("reservationId")+2+c] != ',')
  929. {
  930. sstr[c] = loc[strlen("reservationId")+2+c];
  931. c++;
  932. }
  933. sstr[c] = '\0';
  934. tempreservationId = atoi(sstr);
  935. }
  936. //timestamp
  937. loc = strstr(str, "timestamp");
  938. memset(sstr ,0, sizeof(sstr) );
  939. c=0;
  940. while (loc[3+strlen("timestamp")+c] != '\"')
  941. {
  942. sstr[c] = loc[3+strlen("timestamp")+c];
  943. c++;
  944. }
  945. sstr[c] = '\0';
  946. strcpy((char*)timestampStr, sstr);
  947. if(hashmap_operation(1, guid, key_value) == TRUE)
  948. {
  949. //DEBUG_INFO("\n 1. sent queue guid=%s\n",guid);
  950. }
  951. else
  952. {
  953. hashmap_operation(0, guid, tempdata);
  954. FillStartTransaction(tempconnectorId, IdtagStr, tempmeterStart, tempreservationId, timestampStr);
  955. //DEBUG_INFO("\n 2. sent queue guid=%s\n",guid);
  956. }
  957. }
  958. //*********************End: StartTransaction***************************/
  959. //****************transactionId********************/
  960. c=0;
  961. loc = strstr(str, "transactionId");
  962. memset(sstr ,0, sizeof(sstr) );
  963. if(loc != NULL)
  964. {
  965. while ((loc[strlen("transactionId")+2+c] != '}') && (loc[strlen("transactionId")+2+c] != ','))
  966. {
  967. sstr[c] = loc[strlen("transactionId")+2+c];
  968. c++;
  969. }
  970. sstr[c] = '\0';
  971. temptransactionId = atoi(sstr);
  972. //gettransactionId = GetTransactionId(tempconnectorId, IdtagStr);
  973. //From StartTransaction取得IdTag, 存到 StartTransactionIdTagTemp,主要是 給Queue中StopTransaction使用(StartTransaction. StopTransaction不同卡號 ),取得真正的TransactionId
  974. GetStartTransactionIdTag(tempconnectorId-1);
  975. DEBUG_INFO("\n StartTransactionIdTagTemp=%s",StartTransactionIdTagTemp);
  976. gettransactionId = GetTransactionId(tempconnectorId, StartTransactionIdTagTemp);
  977. DEBUG_INFO("\n gettransactionId=%d",gettransactionId);
  978. if((gettransactionId != 0)&&(temptransactionId != gettransactionId))
  979. {
  980. //replace transactionId of metervalue or stopTransaction
  981. strncpy(strcomposite,str, (loc-str)+2+strlen("transactionId"));
  982. sprintf(strcomposite+((loc-str)+2+strlen("transactionId")),"%d",gettransactionId);
  983. strcat(strcomposite, loc+strlen("transactionId")+2+c); // 把 字串中transactionId後面的字串串接到 strcomposite後面
  984. LWS_Send(strcomposite+2); // skip 2 bytes字串-> 槍號,
  985. }
  986. else
  987. {
  988. LWS_Send(str+2); // skip 2 bytes字串-> 槍號,
  989. gettransactionId=temptransactionId;
  990. }
  991. if(IsStopTransaction == TRUE)//if((IsStopTransaction == TRUE)&&(gettransactionId != 0))
  992. {
  993. SetTransactionIdZero(gettransactionId);
  994. }
  995. }
  996. else
  997. {
  998. LWS_Send(str+2);
  999. }
  1000. result = TRUE;
  1001. }
  1002. else
  1003. {
  1004. result = FALSE;
  1005. }
  1006. fclose(fp);
  1007. return result;
  1008. }
  1009. void* processTransactionQueue(void* data)
  1010. {
  1011. char frontUUID[100] ={0};
  1012. char frontData[1200/*1024*4*/] ={0};
  1013. int queueNotEmpty = FALSE;
  1014. while(1)
  1015. {
  1016. if(FirstHeartBeatResponse() == 1)
  1017. {
  1018. memset(frontUUID, 0, sizeof(frontUUID));
  1019. memset(frontData, 0, sizeof(frontData));
  1020. queueNotEmpty = FALSE;
  1021. queueNotEmpty = queue_operation(QUEUE_OPERATION_SHOWFRONT,frontUUID, frontData);//showfront(frontUUID, frontData); ---> remove temporally
  1022. if((queueNotEmpty == TRUE) && (GetOcppConnStatus() == 1)) //OcppConnStatus 0: disconnected, 1: connected
  1023. {
  1024. if((OfflineTransaction == 1) && (OfflineTransactionQueueNum != 0)) //OfflineTransaction 0: no offline Transaction 1: offline Transaction
  1025. {
  1026. TransactionQueueInterval = 2;//10;//2;
  1027. sendbuffer = 1; // 0: no packets to send 1: send the top packet in queue
  1028. OfflineTransactionQueueNum = OfflineTransactionQueueNum - 1;
  1029. if(OfflineTransactionQueueNum == 0)
  1030. {
  1031. OfflineTransaction = 0;
  1032. }
  1033. sleep(TransactionQueueInterval);
  1034. }
  1035. else
  1036. {
  1037. if(TransactionMessageResend <= TransactionMessageAttemptsGet()) //
  1038. {
  1039. DEBUG_INFO("processTransactionQueue queue is not empty!\n");
  1040. TransactionQueueInterval= TransactionMessageRetryIntervalGet()* TransactionMessageResend;
  1041. DEBUG_INFO("TransactionQueueInterval =%d\n",TransactionQueueInterval);
  1042. sleep(TransactionQueueInterval);
  1043. sendbuffer = 1;
  1044. TransactionMessageResend = TransactionMessageResend + 1;
  1045. DEBUG_INFO("After ADD,TransactionMessageResend=%d\n",TransactionMessageResend);
  1046. //sleep(TransactionQueueInterval);
  1047. }
  1048. else
  1049. {
  1050. queue_operation(QUEUE_OPERATION_DEL,"",""); //// delete item
  1051. TransactionQueueInterval = 0;
  1052. TransactionMessageResend = 1;
  1053. sleep(TransactionQueueInterval);
  1054. }
  1055. }
  1056. }
  1057. else
  1058. {
  1059. TransactionQueueInterval = 0;//10;
  1060. sleep(TransactionQueueInterval);
  1061. }
  1062. }
  1063. if(GetOcppConnStatus() == 0)
  1064. {
  1065. if(queueNotEmpty == TRUE)
  1066. {
  1067. OfflineTransaction = 1; // 0: no offline Transaction 1: offline Transaction
  1068. }
  1069. }
  1070. usleep(5000);
  1071. }
  1072. pthread_exit(NULL); //
  1073. return 0;
  1074. }
  1075. void CheckTransactionPacket(char *uuid)
  1076. {
  1077. char frontUUID[100]={0};
  1078. char frontData[1200]={0};
  1079. int queueNotEmpty = FALSE;
  1080. int cmpResult = 0;
  1081. queueNotEmpty = queue_operation(1,frontUUID, frontData);//showfront(frontUUID, frontData); ---> remove temporally
  1082. if(queueNotEmpty == TRUE)
  1083. {
  1084. cmpResult = strcmp(frontUUID, uuid);
  1085. if (cmpResult == 0)
  1086. {
  1087. DEBUG_INFO("TransactionPacket Compare All right!\n");
  1088. queue_operation(2,"","");//delq(); ---> remove temporally
  1089. TransactionQueueInterval = 0;
  1090. TransactionMessageResend = 1;
  1091. }
  1092. }
  1093. }
  1094. int queue_operation(int type, char *frontUUID, char *frontData)
  1095. {
  1096. int result=0;
  1097. while(1)
  1098. {
  1099. if (!IsUsing )
  1100. {
  1101. IsUsing = TRUE;
  1102. //pthread_mutex_unlock(&lock_sentData);
  1103. //pthread_mutex_lock(&lock_sentData);
  1104. if(type == QUEUE_OPERATION_SHOWQUEUE) // show items in queue
  1105. {
  1106. result = showqueue();
  1107. }
  1108. else if(type == QUEUE_OPERATION_SHOWFRONT) // show first item
  1109. {
  1110. result = showfront(frontUUID, frontData);
  1111. }
  1112. else if(type == QUEUE_OPERATION_DEL) // delete item
  1113. {
  1114. result = delq();
  1115. }
  1116. else if(type == QUEUE_OPERATION_SENT) // sent items in queue
  1117. {
  1118. result = sentqueue();
  1119. }
  1120. else if(type == QUEUE_OPERATION_ADD) // add items to the queue
  1121. {
  1122. result = addq(frontUUID, frontData);
  1123. }
  1124. //pthread_mutex_unlock(&lock_sentData);
  1125. IsUsing = FALSE;
  1126. break;
  1127. }
  1128. }
  1129. return result;
  1130. }
  1131. int removeMessageSentFile(void)
  1132. {
  1133. char rmFileCmd[100]={0};
  1134. struct stat stats;
  1135. stat("/Storage/OCPP", &stats);
  1136. // Check for directory existence
  1137. if(S_ISDIR(stats.st_mode) == 1)
  1138. {
  1139. //DEBUG_INFO("\n OCPP directory exist \n");
  1140. }
  1141. else
  1142. {
  1143. DEBUG_INFO("\n directory not exist, create dir \n");
  1144. sprintf(rmFileCmd,"mkdir -p %s","/Storage/OCPP");
  1145. system(rmFileCmd);
  1146. }
  1147. memset(rmFileCmd, 0, sizeof rmFileCmd);
  1148. if((access("/Storage/OCPP/MessageSent",F_OK))!=-1)
  1149. {
  1150. DEBUG_INFO("MessageSent file exist.\n");
  1151. sprintf(rmFileCmd,"rm -f %s","/Storage/OCPP/MessageSent");
  1152. system(rmFileCmd);
  1153. }
  1154. memset(rmFileCmd, 0, sizeof rmFileCmd);
  1155. return 0;
  1156. }
  1157. static int changeChageWebSocketPingInterval = FALSE;
  1158. void ChageWebSocketPingInterval(int WebSocketPingInterval)
  1159. {
  1160. changeChageWebSocketPingInterval = TRUE;
  1161. }
  1162. //================================================
  1163. // Main process
  1164. //================================================
  1165. int main(void)
  1166. {
  1167. char rmFileCmd[100]={0};
  1168. struct stat stats;
  1169. pthread_t t_ProcQueue;
  1170. DEBUG_INFO("Module_OcppBackend task initialization...\n");
  1171. if(ProcessShareMemory()== FAIL)
  1172. {
  1173. return FAIL;
  1174. }
  1175. // Check & create OCPP dir
  1176. stat("/Storage/OCPP", &stats);
  1177. if(S_ISDIR(stats.st_mode) != 1)
  1178. {
  1179. DEBUG_INFO("OCPP directory not exist, create dir \n");
  1180. sprintf(rmFileCmd,"mkdir -p /Storage/OCPP");
  1181. system(rmFileCmd);
  1182. }
  1183. memset(rmFileCmd, 0, sizeof rmFileCmd);
  1184. //Create Process: Resend Transaction
  1185. pthread_create(&t_ProcQueue, NULL, processTransactionQueue, NULL);
  1186. sqlite3_config(SQLITE_CONFIG_URI,1);
  1187. if(sqlite3_open("file:/Storage/OCPP/charger.db", &db))
  1188. {
  1189. DEBUG_INFO( "Can't open database: %s\n", sqlite3_errmsg(db));
  1190. sqlite3_close( db );
  1191. exit(0);
  1192. }
  1193. else
  1194. {
  1195. DEBUG_INFO( "Opened database successfully\n");
  1196. }
  1197. //Create Table log buffer
  1198. if(sqlite3_exec(db, createsql, 0, 0, &errMsg) != SQLITE_OK)
  1199. {
  1200. DEBUG_INFO( "Create log buffer table error message: %s\n", errMsg);
  1201. return 0;
  1202. }
  1203. else
  1204. {
  1205. DEBUG_INFO( "Opened log buffer table successfully\n");
  1206. }
  1207. // Create Table OcppAuthCache
  1208. if(sqlite3_exec(db, sqlOcppAuthCache, 0, 0, &errMsg) != SQLITE_OK)
  1209. {
  1210. DEBUG_INFO( "Create OcppAuthCache error message: %s\n", errMsg);
  1211. return 0;
  1212. }
  1213. else
  1214. {
  1215. DEBUG_INFO( "Opened OcppAuthCache table successfully\n");
  1216. }
  1217. // Create Table OcppAuthLocal
  1218. if(sqlite3_exec(db, sqlOcppAuthLocal, 0, 0, &errMsg) != SQLITE_OK)
  1219. {
  1220. DEBUG_INFO( "Create Table OcppAuthLocal error %s\n",errMsg);
  1221. return 0;
  1222. }
  1223. else
  1224. {
  1225. DEBUG_INFO( "Opened OcppAuthLocal table successfully\n");
  1226. }
  1227. initialConfigurationTable();
  1228. removeMessageSentFile();
  1229. for(;;)
  1230. {
  1231. // Connect server
  1232. while(ConnectionEstablished==0) // Check InternetConn 0: disconnected, 1: connected
  1233. {
  1234. SetOcppConnStatus(FALSE);
  1235. SetServerSign(FALSE);
  1236. InitialSystemValue();
  1237. if((time((time_t*)NULL)-startTime.connect) >= 30)
  1238. {
  1239. DEBUG_INFO("Server connecting...\n");
  1240. pthread_create(&pid, NULL, ConnectWsServer, NULL);
  1241. startTime.connect=time((time_t*)NULL);
  1242. }
  1243. CheckSystemValue();
  1244. sleep(5);
  1245. lws_service(context, 10000);//timeout_ms
  1246. }
  1247. // Sign in
  1248. if( ((GetBootNotificationInterval() != 0 && ((time((time_t*)NULL)-startTime.bootNotification)>= GetBootNotificationInterval()) ) ||
  1249. ((time((time_t*)NULL)-startTime.bootNotification) >= defaultWaitingTime) ) && (GetServerSign() == FALSE))
  1250. {
  1251. sendBootNotificationRequest();
  1252. startTime.bootNotification=time((time_t*)NULL);
  1253. }
  1254. // On line operation
  1255. if(GetServerSign() == TRUE)
  1256. {
  1257. if(sendbuffer == 1)
  1258. {
  1259. queue_operation(QUEUE_OPERATION_SENT, "", "");
  1260. sendbuffer = 0;
  1261. }
  1262. SetOcppConnStatus(TRUE);
  1263. // Check System Value
  1264. CheckSystemValue();
  1265. if(GetHeartBeatWithNOResponse() >= 3)
  1266. {
  1267. lws_context_destroy(context);
  1268. ConnectionEstablished=0;
  1269. context = NULL;
  1270. SetHeartBeatWithNOResponse();
  1271. }
  1272. if((changeChageWebSocketPingInterval == TRUE) || (GetInternetConn() == 0))
  1273. {
  1274. DEBUG_INFO("GetInternetConn() = %d\n", GetInternetConn());
  1275. changeChageWebSocketPingInterval = FALSE;
  1276. lws_context_destroy(context);
  1277. ConnectionEstablished=0;
  1278. context = NULL;
  1279. }
  1280. }
  1281. lws_service(context, 100);//timeout_ms
  1282. }
  1283. pthread_join(t_ProcQueue, NULL);
  1284. return FAIL;
  1285. }