WebService.c 100 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851
  1. #include <sys/time.h>
  2. #include <sys/timeb.h>
  3. #include <sys/types.h>
  4. #include <sys/stat.h>
  5. #include <sys/types.h>
  6. #include <sys/ioctl.h>
  7. #include <sys/socket.h>
  8. #include <sys/ipc.h>
  9. #include <sys/shm.h>
  10. #include <sys/shm.h>
  11. #include <sys/mman.h>
  12. #include <linux/wireless.h>
  13. #include <arpa/inet.h>
  14. #include <netinet/in.h>
  15. #include <unistd.h>
  16. #include <stdarg.h>
  17. #include <stdio.h> /*標準輸入輸出定義*/
  18. #include <stdlib.h> /*標準函數庫定義*/
  19. #include <unistd.h> /*Unix 標準函數定義*/
  20. #include <fcntl.h> /*檔控制定義*/
  21. #include <termios.h> /*PPSIX 終端控制定義*/
  22. #include <errno.h> /*錯誤號定義*/
  23. #include <errno.h>
  24. #include <string.h>
  25. #include <time.h>
  26. #include <ctype.h>
  27. #include <ifaddrs.h>
  28. #include <math.h>
  29. #include "define.h"
  30. #include "json.h"
  31. #define DEBUG_INFO(format, args...) StoreLogMsg("[%s:%d][%s][Info] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  32. #define DEBUG_WARN(format, args...) StoreLogMsg("[%s:%d][%s][Warn] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  33. #define DEBUG_ERROR(format, args...) StoreLogMsg("[%s:%d][%s][Error] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  34. #define Debug
  35. #define SystemLogMessage
  36. #define ARRAY_SIZE(A) (sizeof(A) / sizeof(A[0]))
  37. #define PASS 1
  38. #define FAIL -1
  39. #define MtdBlockSize 0x600000
  40. struct SysConfigAndInfo *ShmSysConfigAndInfo;
  41. struct StatusCodeData *ShmStatusCodeData;
  42. struct CHAdeMOData *ShmCHAdeMOData;
  43. struct GBTData *ShmGBTData;
  44. struct CcsData *ShmCcsData;
  45. struct PsuData *ShmPsuData;
  46. void trim(char *s);
  47. int mystrcmp(char *p1, char *p2);
  48. void substr(char *dest, const char* src, unsigned int start, unsigned int cnt);
  49. void split(char **arr, char *str, const char *del);
  50. #ifdef SystemLogMessage
  51. int StoreLogMsg(const char *fmt, ...) {
  52. char Buf[4096 + 256];
  53. char buffer[4096];
  54. time_t CurrentTime;
  55. struct tm *tm;
  56. va_list args;
  57. va_start(args, fmt);
  58. int rc = vsnprintf(buffer, sizeof(buffer), fmt, args);
  59. va_end(args);
  60. memset(Buf, 0, sizeof(Buf));
  61. CurrentTime = time(NULL);
  62. tm = localtime(&CurrentTime);
  63. sprintf(Buf,
  64. "echo \"[%04d.%02d.%02d %02d:%02d:%02d] - %s\" >> /Storage/SystemLog/[%04d.%02d]SystemLog",
  65. tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday, tm->tm_hour,
  66. tm->tm_min, tm->tm_sec, buffer, tm->tm_year + 1900, tm->tm_mon + 1);
  67. system(Buf);
  68. #ifdef Debug
  69. printf("[%04d.%02d.%02d %02d:%02d:%02d] - %s", tm->tm_year + 1900,
  70. tm->tm_mon + 1, tm->tm_mday, tm->tm_hour, tm->tm_min, tm->tm_sec,
  71. buffer);
  72. #endif
  73. return rc;
  74. }
  75. int WriteLogMsg(const char *fmt, ...) {
  76. char Buf[4096 + 256];
  77. char buffer[4096];
  78. time_t CurrentTime;
  79. struct tm *tm;
  80. va_list args;
  81. va_start(args, fmt);
  82. int rc = vsnprintf(buffer, sizeof(buffer), fmt, args);
  83. va_end(args);
  84. memset(Buf, 0, sizeof(Buf));
  85. CurrentTime = time(NULL);
  86. tm = localtime(&CurrentTime);
  87. sprintf(Buf,
  88. "echo \"[%04d.%02d.%02d %02d:%02d:%02d WebService] - %s\" >> /Storage/SystemLog/[%04d.%02d]WebService_SystemLog",
  89. tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday, tm->tm_hour,
  90. tm->tm_min, tm->tm_sec, buffer, tm->tm_year + 1900, tm->tm_mon + 1);
  91. system(Buf);
  92. return rc;
  93. }
  94. #endif
  95. int DiffTimeb(struct timeb ST, struct timeb ET) {
  96. //return milli-second
  97. unsigned int StartTime, StopTime;
  98. StartTime = (unsigned int) ST.time;
  99. StopTime = (unsigned int) ET.time;
  100. return (StopTime - StartTime) * 1000 + ET.millitm - ST.millitm;
  101. }
  102. //=================================
  103. // Common routine
  104. //=================================
  105. void trim(char *s) {
  106. int i = 0, j, k, l = 0;
  107. while ((s[i] == ' ') || (s[i] == '\t') || (s[i] == '\n'))
  108. i++;
  109. j = strlen(s) - 1;
  110. while ((s[j] == ' ') || (s[j] == '\t') || (s[j] == '\n'))
  111. j--;
  112. if (i == 0 && j == strlen(s) - 1) {
  113. } else if (i == 0)
  114. s[j + 1] = '\0';
  115. else {
  116. for (k = i; k <= j; k++)
  117. s[l++] = s[k];
  118. s[l] = '\0';
  119. }
  120. }
  121. int mystrcmp(char *p1, char *p2) {
  122. while (*p1 == *p2) {
  123. if (*p1 == '\0' || *p2 == '\0')
  124. break;
  125. p1++;
  126. p2++;
  127. }
  128. if (*p1 == '\0' && *p2 == '\0')
  129. return (PASS);
  130. else
  131. return (FAIL);
  132. }
  133. void substr(char *dest, const char* src, unsigned int start, unsigned int cnt) {
  134. strncpy(dest, src + start, cnt);
  135. dest[cnt] = 0;
  136. }
  137. void split(char **arr, char *str, const char *del) {
  138. char *s = strtok(str, del);
  139. while (s != NULL) {
  140. *arr++ = s;
  141. s = strtok(NULL, del);
  142. }
  143. }
  144. int ConnectorType(char* connector){
  145. int result;
  146. if(strcmp(connector, "0") == 0){
  147. result= 0;
  148. }
  149. else if(strcmp(connector, "U") == 0 || strcmp(connector, "E") == 0){
  150. result= 1;//CCS
  151. }
  152. else if(strcmp(connector, "G") == 0 || strcmp(connector, "D") == 0){
  153. result= 2;//GB
  154. }
  155. else if(strcmp(connector, "J") == 0){
  156. result= 3;//CHAdeMO
  157. }
  158. else if(strcmp(connector, "1") == 0 || strcmp(connector, "2") == 0 || strcmp(connector, "3") == 0 || strcmp(connector, "4") == 0 || strcmp(connector, "5") == 0 || strcmp(connector, "6") == 0){
  159. result= 4;//AC
  160. }
  161. else{
  162. result= 0;
  163. }
  164. return result;
  165. }
  166. int ModelType(char* type,char* network){
  167. int result=0;
  168. if(strcmp(type, "A") == 0){
  169. if(strcmp(network, "0") == 0 || strcmp(network, "R") == 0 || strcmp(network, "B") == 0){
  170. result=0;
  171. }
  172. else if(strcmp(network, "E") == 0 || strcmp(network, "W") == 0 || strcmp(network, "T") == 0 || strcmp(network, "U") == 0){
  173. result=1;
  174. }
  175. }
  176. else if(strcmp(type, "D") == 0){
  177. result=2;
  178. }
  179. return result;
  180. }
  181. // 四捨五入 取到 小數點第 2 位
  182. float rounding(float a)
  183. {
  184. return (int)(a*100+0.5)/100.0;
  185. }
  186. //==========================================
  187. // Init all share memory
  188. //==========================================
  189. int InitShareMemory() {
  190. int result = PASS;
  191. int MeterSMId;
  192. //creat ShmSysConfigAndInfo
  193. if ((MeterSMId = shmget(ShmSysConfigAndInfoKey,
  194. sizeof(struct SysConfigAndInfo), 0777)) < 0) {
  195. printf("%s\n","InitShareMemory Error");
  196. #ifdef SystemLogMessage
  197. DEBUG_ERROR("shmget ShmSysConfigAndInfo NG\n");
  198. #endif
  199. result = FAIL;
  200. } else if ((ShmSysConfigAndInfo = shmat(MeterSMId, NULL, 0))
  201. == (void *) -1) {
  202. #ifdef SystemLogMessage
  203. DEBUG_ERROR("shmat ShmSysConfigAndInfo NG\n");
  204. #endif
  205. result = FAIL;
  206. } else {
  207. }
  208. //creat ShmStatusCodeData
  209. if ((MeterSMId = shmget(ShmStatusCodeKey, sizeof(struct StatusCodeData),
  210. 0777)) < 0) {
  211. #ifdef SystemLogMessage
  212. DEBUG_ERROR("shmget ShmStatusCodeData NG\n");
  213. #endif
  214. result = FAIL;
  215. } else if ((ShmStatusCodeData = shmat(MeterSMId, NULL, 0)) == (void *) -1) {
  216. #ifdef SystemLogMessage
  217. DEBUG_ERROR("shmat ShmStatusCodeData NG\n");
  218. #endif
  219. result = FAIL;
  220. } else {
  221. }
  222. //creat ShmPsuData
  223. if ((MeterSMId = shmget(ShmPsuKey, sizeof(struct PsuData),
  224. 0777)) < 0) {
  225. #ifdef SystemLogMessage
  226. DEBUG_ERROR("shmget ShmPsuData NG\n");
  227. #endif
  228. result = FAIL;
  229. } else if ((ShmPsuData = shmat(MeterSMId, NULL, 0)) == (void *) -1) {
  230. #ifdef SystemLogMessage
  231. DEBUG_ERROR("shmat ShmPsuData NG\n");
  232. #endif
  233. result = FAIL;
  234. } else {
  235. }
  236. return result;
  237. }
  238. int StoreUsrConfigData(struct SysConfigData *UsrData)
  239. {
  240. int result = PASS;
  241. int fd,wrd;
  242. unsigned int i,Chk;
  243. unsigned char *ptr, *BufTmp;
  244. Chk=0;
  245. ptr=(unsigned char *)UsrData;
  246. if((BufTmp=malloc(MtdBlockSize))!=NULL)
  247. {
  248. memset(BufTmp,0,MtdBlockSize);
  249. memcpy(BufTmp,ptr,sizeof(struct SysConfigData));
  250. for(i=0;i<MtdBlockSize-4;i++)
  251. Chk+=*(BufTmp+i);
  252. memcpy( BufTmp+MtdBlockSize-4,&Chk,4);
  253. fd = open("/dev/mtdblock10", O_RDWR);
  254. if (fd>0)
  255. {
  256. wrd=write(fd, BufTmp, MtdBlockSize);
  257. close(fd);
  258. if(wrd>=MtdBlockSize)
  259. {
  260. fd = open("/dev/mtdblock11", O_RDWR);
  261. if (fd>0)
  262. {
  263. wrd=write(fd, BufTmp, MtdBlockSize);
  264. close(fd);
  265. if(wrd<MtdBlockSize)
  266. {
  267. DEBUG_ERROR("write /dev/mtdblock11(backup) NG\r\n");
  268. result = FAIL;
  269. }
  270. }
  271. else
  272. {
  273. DEBUG_ERROR("open /dev/mtdblock11(backup) NG\r\n");
  274. result = FAIL;
  275. }
  276. }
  277. else
  278. {
  279. DEBUG_ERROR("write /dev/mtdblock10 NG\r\n");
  280. result = FAIL;
  281. }
  282. }
  283. else
  284. {
  285. DEBUG_ERROR("open /dev/mtdblock10 NG\r\n");
  286. result = FAIL;
  287. }
  288. }
  289. else
  290. {
  291. DEBUG_ERROR("alloc BlockSize NG\r\n");
  292. result = FAIL;
  293. }
  294. if(BufTmp!=NULL)
  295. free(BufTmp);
  296. return result;
  297. }
  298. //================================================
  299. // Main process
  300. //================================================
  301. int main(int argc, char *argv[]) {
  302. //int InitShMry = 1;
  303. if (InitShareMemory() == FAIL) {
  304. //InitShMry = 0;
  305. #ifdef SystemLogMessage
  306. DEBUG_ERROR("InitShareMemory NG\n");
  307. #endif
  308. if (ShmStatusCodeData != NULL) {
  309. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.FailToCreateShareMemory = 1;
  310. }
  311. sleep(5);
  312. return 0;
  313. }
  314. //web page submit
  315. if ((argc == 3) & (strlen(argv[1]) == 1)) {
  316. //web page submit system
  317. if (strcmp(argv[1], "1") == 0) {
  318. struct json_object *jobj = json_tokener_parse(argv[2]);
  319. json_object *val_obj = NULL;
  320. char *SystemId=NULL;
  321. char *SystemDateTime = NULL;
  322. int FactoryConfiguration = 0;
  323. int AuthorisationMode = 0;
  324. int RfidCardNumEndian = 0;
  325. int PsuAcInputType = 0;
  326. char isAPP = NULL;
  327. char isQRCode = NULL;
  328. char isRFID = NULL;
  329. char QRCodeMadeMode = NULL;
  330. char *QRCodeContent = NULL;
  331. if( json_object_object_get_ex(jobj, "SystemId", &val_obj) ) {
  332. SystemId = (char*)json_object_get_string(val_obj);
  333. }
  334. if( json_object_object_get_ex(jobj, "SystemDateTime", &val_obj) ) {
  335. SystemDateTime = (char*)json_object_get_string(val_obj);
  336. }
  337. if( json_object_object_get_ex(jobj, "FactoryConfiguration", &val_obj) ) {
  338. FactoryConfiguration = json_object_get_int(val_obj);
  339. }
  340. if( json_object_object_get_ex(jobj, "AuthorisationMode", &val_obj) ) {
  341. AuthorisationMode = json_object_get_int(val_obj);
  342. }
  343. if( json_object_object_get_ex(jobj, "RfidCardNumEndian", &val_obj) ) {
  344. RfidCardNumEndian = json_object_get_int(val_obj);
  345. }
  346. if( json_object_object_get_ex(jobj, "PsuAcInputType", &val_obj) ) {
  347. PsuAcInputType = json_object_get_int(val_obj);
  348. }
  349. if( json_object_object_get_ex(jobj, "isAPP", &val_obj) ) {
  350. isAPP = json_object_get_int(val_obj);
  351. }
  352. if( json_object_object_get_ex(jobj, "isQRCode", &val_obj) ) {
  353. isQRCode = json_object_get_int(val_obj);
  354. }
  355. if( json_object_object_get_ex(jobj, "isRFID", &val_obj) ) {
  356. isRFID = json_object_get_int(val_obj);
  357. }
  358. if( json_object_object_get_ex(jobj, "QRCodeMadeMode", &val_obj) ) {
  359. QRCodeMadeMode = json_object_get_int(val_obj);
  360. }
  361. if( json_object_object_get_ex(jobj, "QRCodeContent", &val_obj) ) {
  362. QRCodeContent = json_object_get_string(val_obj);
  363. }
  364. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.SystemId,SystemId);
  365. ShmSysConfigAndInfo->SysInfo.FactoryConfiguration = FactoryConfiguration;
  366. ShmSysConfigAndInfo->SysConfig.AuthorisationMode = AuthorisationMode;
  367. ShmSysConfigAndInfo->SysConfig.RfidCardNumEndian = RfidCardNumEndian;
  368. ShmSysConfigAndInfo->SysConfig.PsuAcInputType = PsuAcInputType;
  369. ShmSysConfigAndInfo->SysConfig.isAPP = isAPP;
  370. ShmSysConfigAndInfo->SysConfig.isQRCode = isQRCode;
  371. ShmSysConfigAndInfo->SysConfig.isRFID = isRFID;
  372. ShmSysConfigAndInfo->SysConfig.QRCodeMadeMode = QRCodeMadeMode;
  373. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.QRCodeContent,QRCodeContent);
  374. if(strlen(SystemDateTime)>0){
  375. char cmd[100];
  376. sprintf(cmd,"date -s '%s'",SystemDateTime);
  377. if(system(cmd)==0){
  378. system("hwclock -w");
  379. }
  380. }
  381. }
  382. if (strcmp(argv[1], "2") == 0) {
  383. struct json_object *jobj = json_tokener_parse(argv[2]);
  384. json_object *val_obj = NULL;
  385. int MaxChargingEnergy= 0;
  386. int MaxChargingPower = 0;
  387. int MaxChargingCurrent = 0;
  388. int MaxChargingDuration = 0;
  389. int PhaseLossPolicy = 0;
  390. char *LocalWhiteCard0 = NULL;
  391. char *LocalWhiteCard1 = NULL;
  392. char *LocalWhiteCard2 = NULL;
  393. char *LocalWhiteCard3 = NULL;
  394. char *LocalWhiteCard4 = NULL;
  395. char *LocalWhiteCard5 = NULL;
  396. char *LocalWhiteCard6 = NULL;
  397. char *LocalWhiteCard7 = NULL;
  398. char *LocalWhiteCard8 = NULL;
  399. char *LocalWhiteCard9 = NULL;
  400. char isBilling = 0;
  401. char Currency = 0;
  402. float Fee0 = 0;
  403. float Fee1 = 0;
  404. float Fee2 = 0;
  405. float Fee3 = 0;
  406. float Fee4 = 0;
  407. float Fee5 = 0;
  408. float Fee6 = 0;
  409. float Fee7 = 0;
  410. float Fee8 = 0;
  411. float Fee9 = 0;
  412. float Fee10 = 0;
  413. float Fee11 = 0;
  414. float Fee12 = 0;
  415. float Fee13 = 0;
  416. float Fee14 = 0;
  417. float Fee15 = 0;
  418. float Fee16 = 0;
  419. float Fee17 = 0;
  420. float Fee18 = 0;
  421. float Fee19 = 0;
  422. float Fee20 = 0;
  423. float Fee21 = 0;
  424. float Fee22 = 0;
  425. float Fee23 = 0;
  426. if( json_object_object_get_ex(jobj, "MaxChargingEnergy", &val_obj) ) {
  427. MaxChargingEnergy = json_object_get_int(val_obj);
  428. }
  429. if( json_object_object_get_ex(jobj, "MaxChargingPower", &val_obj) ) {
  430. MaxChargingPower = json_object_get_int(val_obj);
  431. }
  432. if( json_object_object_get_ex(jobj, "MaxChargingCurrent", &val_obj) ) {
  433. MaxChargingCurrent = json_object_get_int(val_obj);
  434. }
  435. if( json_object_object_get_ex(jobj, "MaxChargingDuration", &val_obj) ) {
  436. MaxChargingDuration = json_object_get_int(val_obj);
  437. }
  438. if( json_object_object_get_ex(jobj, "PhaseLossPolicy", &val_obj) ) {
  439. PhaseLossPolicy = json_object_get_int(val_obj);
  440. }
  441. if( json_object_object_get_ex(jobj, "LocalWhiteCard0", &val_obj) ) {
  442. LocalWhiteCard0 = (char*)json_object_get_string(val_obj);
  443. }
  444. if( json_object_object_get_ex(jobj, "LocalWhiteCard1", &val_obj) ) {
  445. LocalWhiteCard1 = (char*)json_object_get_string(val_obj);
  446. }
  447. if( json_object_object_get_ex(jobj, "LocalWhiteCard2", &val_obj) ) {
  448. LocalWhiteCard2 = (char*)json_object_get_string(val_obj);
  449. }
  450. if( json_object_object_get_ex(jobj, "LocalWhiteCard3", &val_obj) ) {
  451. LocalWhiteCard3 = (char*)json_object_get_string(val_obj);
  452. }
  453. if( json_object_object_get_ex(jobj, "LocalWhiteCard4", &val_obj) ) {
  454. LocalWhiteCard4 = (char*)json_object_get_string(val_obj);
  455. }
  456. if( json_object_object_get_ex(jobj, "LocalWhiteCard5", &val_obj) ) {
  457. LocalWhiteCard5 = (char*)json_object_get_string(val_obj);
  458. }
  459. if( json_object_object_get_ex(jobj, "LocalWhiteCard6", &val_obj) ) {
  460. LocalWhiteCard6 = (char*)json_object_get_string(val_obj);
  461. }
  462. if( json_object_object_get_ex(jobj, "LocalWhiteCard7", &val_obj) ) {
  463. LocalWhiteCard7 = (char*)json_object_get_string(val_obj);
  464. }
  465. if( json_object_object_get_ex(jobj, "LocalWhiteCard8", &val_obj) ) {
  466. LocalWhiteCard8 = (char*)json_object_get_string(val_obj);
  467. }
  468. if( json_object_object_get_ex(jobj, "LocalWhiteCard9", &val_obj) ) {
  469. LocalWhiteCard9 = (char*)json_object_get_string(val_obj);
  470. }
  471. if( json_object_object_get_ex(jobj, "isBilling", &val_obj) ) {
  472. isBilling = json_object_get_int(val_obj);
  473. }
  474. if( json_object_object_get_ex(jobj, "Currency", &val_obj) ) {
  475. Currency = json_object_get_int(val_obj);
  476. }
  477. if( json_object_object_get_ex(jobj, "Fee0", &val_obj) ) {
  478. Fee0 = json_object_get_double(val_obj);
  479. }
  480. if( json_object_object_get_ex(jobj, "Fee1", &val_obj) ) {
  481. Fee1 = json_object_get_double(val_obj);
  482. }
  483. if( json_object_object_get_ex(jobj, "Fee2", &val_obj) ) {
  484. Fee2 = json_object_get_double(val_obj);
  485. }
  486. if( json_object_object_get_ex(jobj, "Fee3", &val_obj) ) {
  487. Fee3 = json_object_get_double(val_obj);
  488. }
  489. if( json_object_object_get_ex(jobj, "Fee4", &val_obj) ) {
  490. Fee4 = json_object_get_double(val_obj);
  491. }
  492. if( json_object_object_get_ex(jobj, "Fee5", &val_obj) ) {
  493. Fee5 = json_object_get_double(val_obj);
  494. }
  495. if( json_object_object_get_ex(jobj, "Fee6", &val_obj) ) {
  496. Fee6 = json_object_get_double(val_obj);
  497. }
  498. if( json_object_object_get_ex(jobj, "Fee7", &val_obj) ) {
  499. Fee7 = json_object_get_double(val_obj);
  500. }
  501. if( json_object_object_get_ex(jobj, "Fee8", &val_obj) ) {
  502. Fee8 = json_object_get_double(val_obj);
  503. }
  504. if( json_object_object_get_ex(jobj, "Fee9", &val_obj) ) {
  505. Fee9 = json_object_get_double(val_obj);
  506. }
  507. if( json_object_object_get_ex(jobj, "Fee10", &val_obj) ) {
  508. Fee10 = json_object_get_double(val_obj);
  509. }
  510. if( json_object_object_get_ex(jobj, "Fee11", &val_obj) ) {
  511. Fee11 = json_object_get_double(val_obj);
  512. }
  513. if( json_object_object_get_ex(jobj, "Fee12", &val_obj) ) {
  514. Fee12 = json_object_get_double(val_obj);
  515. }
  516. if( json_object_object_get_ex(jobj, "Fee13", &val_obj) ) {
  517. Fee13 = json_object_get_double(val_obj);
  518. }
  519. if( json_object_object_get_ex(jobj, "Fee14", &val_obj) ) {
  520. Fee14 = json_object_get_double(val_obj);
  521. }
  522. if( json_object_object_get_ex(jobj, "Fee15", &val_obj) ) {
  523. Fee15 = json_object_get_double(val_obj);
  524. }
  525. if( json_object_object_get_ex(jobj, "Fee16", &val_obj) ) {
  526. Fee16 = json_object_get_double(val_obj);
  527. }
  528. if( json_object_object_get_ex(jobj, "Fee17", &val_obj) ) {
  529. Fee17 = json_object_get_double(val_obj);
  530. }
  531. if( json_object_object_get_ex(jobj, "Fee18", &val_obj) ) {
  532. Fee18 = json_object_get_double(val_obj);
  533. }
  534. if( json_object_object_get_ex(jobj, "Fee19", &val_obj) ) {
  535. Fee19 = json_object_get_double(val_obj);
  536. }
  537. if( json_object_object_get_ex(jobj, "Fee20", &val_obj) ) {
  538. Fee20 = json_object_get_double(val_obj);
  539. }
  540. if( json_object_object_get_ex(jobj, "Fee21", &val_obj) ) {
  541. Fee21 = json_object_get_double(val_obj);
  542. }
  543. if( json_object_object_get_ex(jobj, "Fee22", &val_obj) ) {
  544. Fee22 = json_object_get_double(val_obj);
  545. }
  546. if( json_object_object_get_ex(jobj, "Fee23", &val_obj) ) {
  547. Fee23 = json_object_get_double(val_obj);
  548. }
  549. ShmSysConfigAndInfo->SysConfig.MaxChargingEnergy = MaxChargingEnergy;
  550. ShmSysConfigAndInfo->SysConfig.MaxChargingPower = MaxChargingPower;
  551. ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent = MaxChargingCurrent;
  552. ShmSysConfigAndInfo->SysConfig.MaxChargingDuration = MaxChargingDuration;
  553. ShmSysConfigAndInfo->SysConfig.PhaseLossPolicy = PhaseLossPolicy;
  554. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[0],LocalWhiteCard0);
  555. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[1],LocalWhiteCard1);
  556. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[2],LocalWhiteCard2);
  557. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[3],LocalWhiteCard3);
  558. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[4],LocalWhiteCard4);
  559. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[5],LocalWhiteCard5);
  560. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[6],LocalWhiteCard6);
  561. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[7],LocalWhiteCard7);
  562. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[8],LocalWhiteCard8);
  563. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[9],LocalWhiteCard9);
  564. ShmSysConfigAndInfo->SysConfig.BillingData.isBilling = isBilling;
  565. ShmSysConfigAndInfo->SysConfig.BillingData.Currency = Currency;
  566. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[0] = rounding(Fee0);
  567. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[1] = rounding(Fee1);
  568. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[2] = rounding(Fee2);
  569. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[3] = rounding(Fee3);
  570. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[4] = rounding(Fee4);
  571. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[5] = rounding(Fee5);
  572. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[6] = rounding(Fee6);
  573. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[7] = rounding(Fee7);
  574. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[8] = rounding(Fee8);
  575. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[9] = rounding(Fee9);
  576. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[10] = rounding(Fee10);
  577. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[11] = rounding(Fee11);
  578. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[12] = rounding(Fee12);
  579. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[13] = rounding(Fee13);
  580. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[14] = rounding(Fee14);
  581. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[15] = rounding(Fee15);
  582. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[16] = rounding(Fee16);
  583. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[17] = rounding(Fee17);
  584. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[18] = rounding(Fee18);
  585. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[19] = rounding(Fee19);
  586. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[20] = rounding(Fee20);
  587. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[21] = rounding(Fee21);
  588. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[22] = rounding(Fee22);
  589. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[23] = rounding(Fee23);
  590. }
  591. if (strcmp(argv[1], "3") == 0) {
  592. struct json_object *jobj = json_tokener_parse(argv[2]);
  593. json_object *val_obj = NULL;
  594. int Eth0DhcpClient=0;
  595. char *Eth0IpAddress=NULL;
  596. char *Eth0SubmaskAddress=NULL;
  597. char *Eth0GatewayAddress=NULL;
  598. int Eth1DhcpClient=0;
  599. int WifiMode=0;
  600. char *WifiSsid=NULL;
  601. char *WifiPassword=NULL;
  602. int WifiDhcpServer=0;
  603. int WifiDhcpClient=0;
  604. char *WifiIpAddress=NULL;
  605. char *WifiSubmaskAddress=NULL;
  606. char *WifiGatewayAddress=NULL;
  607. char *TelcomApn=NULL;
  608. char *TelcomChapPapId=NULL;
  609. char *TelcomChapPapPwd=NULL;
  610. char *TelcomIpAddress=NULL;
  611. if( json_object_object_get_ex(jobj, "Eth0DhcpClient", &val_obj) ) {
  612. Eth0DhcpClient = json_object_get_int(val_obj);
  613. }
  614. if( json_object_object_get_ex(jobj, "Eth0IpAddress", &val_obj) ) {
  615. Eth0IpAddress = (char*)json_object_get_string(val_obj);
  616. }
  617. if( json_object_object_get_ex(jobj, "Eth0SubmaskAddress", &val_obj) ) {
  618. Eth0SubmaskAddress = (char*)json_object_get_string(val_obj);
  619. }
  620. if( json_object_object_get_ex(jobj, "Eth0GatewayAddress", &val_obj) ) {
  621. Eth0GatewayAddress = (char*)json_object_get_string(val_obj);
  622. }
  623. if( json_object_object_get_ex(jobj, "WifiMode", &val_obj) ) {
  624. WifiMode = json_object_get_int(val_obj);
  625. }
  626. if( json_object_object_get_ex(jobj, "WifiSsid", &val_obj) ) {
  627. WifiSsid = (char*)json_object_get_string(val_obj);
  628. }
  629. if( json_object_object_get_ex(jobj, "WifiPassword", &val_obj) ) {
  630. WifiPassword = (char*)json_object_get_string(val_obj);
  631. }
  632. if( json_object_object_get_ex(jobj, "WifiDhcpServer", &val_obj) ) {
  633. WifiDhcpServer = json_object_get_int(val_obj);
  634. }
  635. if( json_object_object_get_ex(jobj, "WifiDhcpClient", &val_obj) ) {
  636. WifiDhcpClient = json_object_get_int(val_obj);
  637. }
  638. if( json_object_object_get_ex(jobj, "WifiIpAddress", &val_obj) ) {
  639. WifiIpAddress = (char*)json_object_get_string(val_obj);
  640. }
  641. if( json_object_object_get_ex(jobj, "WifiSubmaskAddress", &val_obj) ) {
  642. WifiSubmaskAddress = (char*)json_object_get_string(val_obj);
  643. }
  644. if( json_object_object_get_ex(jobj, "WifiGatewayAddress", &val_obj) ) {
  645. WifiGatewayAddress = (char*)json_object_get_string(val_obj);
  646. }
  647. if( json_object_object_get_ex(jobj, "TelcomApn", &val_obj) ) {
  648. TelcomApn = (char*)json_object_get_string(val_obj);
  649. }
  650. if( json_object_object_get_ex(jobj, "TelcomChapPapId", &val_obj) ) {
  651. TelcomChapPapId = (char*)json_object_get_string(val_obj);
  652. }
  653. if( json_object_object_get_ex(jobj, "TelcomChapPapPwd", &val_obj) ) {
  654. TelcomChapPapPwd = (char*)json_object_get_string(val_obj);
  655. }
  656. if( json_object_object_get_ex(jobj, "TelcomIpAddress", &val_obj) ) {
  657. TelcomIpAddress = (char*)json_object_get_string(val_obj);
  658. }
  659. ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthDhcpClient=Eth0DhcpClient;
  660. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthIpAddress,Eth0IpAddress);
  661. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthSubmaskAddress,Eth0SubmaskAddress);
  662. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthGatewayAddress,Eth0GatewayAddress);
  663. ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthDhcpClient=Eth1DhcpClient;
  664. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMode=WifiMode;
  665. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSsid,WifiSsid);
  666. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiPassword,WifiPassword);
  667. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpServer=WifiDhcpServer;
  668. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpClient=WifiDhcpClient;
  669. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiIpAddress,WifiIpAddress);
  670. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSubmaskAddress,WifiSubmaskAddress);
  671. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiGatewayAddress,WifiGatewayAddress);
  672. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomApn,TelcomApn);
  673. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapId,TelcomChapPapId);
  674. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapPwd,TelcomChapPapPwd);
  675. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomIpAddress,TelcomIpAddress);
  676. }
  677. if (strcmp(argv[1], "4") == 0) {
  678. struct json_object *jobj = json_tokener_parse(argv[2]);
  679. json_object *val_obj = NULL;
  680. int BackendConnTimeout=0;
  681. int OfflinePolicy=0;
  682. int OfflineMaxChargeEnergy=0;
  683. int OfflineMaxChargeDuration=0;
  684. char *OcppServerURL=NULL;
  685. char *ChargeBoxId=NULL;
  686. char *chargePointVendor=NULL;
  687. if( json_object_object_get_ex(jobj, "BackendConnTimeout", &val_obj) ) {
  688. BackendConnTimeout = json_object_get_int(val_obj);
  689. }
  690. if( json_object_object_get_ex(jobj, "OfflinePolicy", &val_obj) ) {
  691. OfflinePolicy = json_object_get_int(val_obj);
  692. }
  693. if( json_object_object_get_ex(jobj, "OfflineMaxChargeEnergy", &val_obj) ) {
  694. OfflineMaxChargeEnergy = json_object_get_int(val_obj);
  695. }
  696. if( json_object_object_get_ex(jobj, "OfflineMaxChargeDuration", &val_obj) ) {
  697. OfflineMaxChargeDuration = json_object_get_int(val_obj);
  698. }
  699. if( json_object_object_get_ex(jobj, "OcppServerURL", &val_obj) ) {
  700. OcppServerURL = (char*)json_object_get_string(val_obj);
  701. }
  702. if( json_object_object_get_ex(jobj, "ChargeBoxId", &val_obj) ) {
  703. ChargeBoxId = (char*)json_object_get_string(val_obj);
  704. }
  705. if( json_object_object_get_ex(jobj, "chargePointVendor", &val_obj) ) {
  706. chargePointVendor = (char*)json_object_get_string(val_obj);
  707. }
  708. ShmSysConfigAndInfo->SysConfig.BackendConnTimeout = BackendConnTimeout;
  709. ShmSysConfigAndInfo->SysConfig.OfflinePolicy = OfflinePolicy;
  710. ShmSysConfigAndInfo->SysConfig.OfflineMaxChargeEnergy = OfflineMaxChargeEnergy;
  711. ShmSysConfigAndInfo->SysConfig.OfflineMaxChargeDuration = OfflineMaxChargeDuration;
  712. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.OcppServerURL,OcppServerURL);
  713. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.ChargeBoxId,ChargeBoxId);
  714. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.chargePointVendor,chargePointVendor);
  715. }
  716. struct SysConfigData SysConfig;
  717. memcpy(&SysConfig, &ShmSysConfigAndInfo->SysConfig, sizeof(struct SysConfigData));
  718. int result = StoreUsrConfigData(&SysConfig);
  719. if(result != 1){
  720. #ifdef SystemLogMessage
  721. StoreLogMsg("[WebService]StoreUsrConfigData: normal NG");
  722. #endif
  723. }
  724. else{
  725. #ifdef SystemLogMessage
  726. StoreLogMsg("[WebService]StoreUsrConfigData: normal OK");
  727. #endif
  728. }
  729. #ifdef SystemLogMessage
  730. DEBUG_INFO("WebServiceConfig update OK");
  731. #endif
  732. }
  733. if (argc == 2) { //init share memory for test
  734. if (strcmp(argv[1], "aaa") == 0) {
  735. //struct SysConfigData SysConfig;
  736. //system
  737. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.ModelName, "DSLU601001T1P0D");
  738. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.SerialNumber, "SerialNumber");
  739. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.SystemId, "1234567890");
  740. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.SystemDateTime, "2019-12-31 23:59:59");
  741. ShmSysConfigAndInfo->SysConfig.AcPhaseCount=1;
  742. ShmSysConfigAndInfo->SysInfo.FactoryConfiguration=0;
  743. ShmSysConfigAndInfo->SysConfig.AuthorisationMode=0;
  744. ShmSysConfigAndInfo->SysConfig.DefaultLanguage=0;
  745. ShmSysConfigAndInfo->SysInfo.InputVoltageR=0;
  746. ShmSysConfigAndInfo->SysInfo.InputVoltageS=0;
  747. ShmSysConfigAndInfo->SysInfo.InputVoltageT=0;
  748. ShmSysConfigAndInfo->SysInfo.SystemFanRotaSpeed=0;
  749. ShmSysConfigAndInfo->SysInfo.PsuFanRotaSpeed=0;
  750. ShmSysConfigAndInfo->SysConfig.RfidCardNumEndian=0;
  751. ShmSysConfigAndInfo->SysConfig.RatingCurrent=100;
  752. ShmSysConfigAndInfo->SysConfig.PsuAcInputType=0;
  753. ShmSysConfigAndInfo->SysInfo.AuxPower5V=0;
  754. ShmSysConfigAndInfo->SysInfo.AuxPower12V=0;
  755. ShmSysConfigAndInfo->SysInfo.AuxPower24V=0;
  756. ShmSysConfigAndInfo->SysInfo.AuxPower48V=0;
  757. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.CsuHwRev, "");
  758. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.CsuBootLoadFwRev, "");
  759. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.CsuKernelFwRev, "");
  760. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev, "");
  761. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.CsuPrimFwRev, "");
  762. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.LcmHwRev, "");
  763. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.LcmFwRev, "");
  764. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.PsuHwRev, "");
  765. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.PsuPrimFwRev, "");
  766. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.PsuSecFwRev, "");
  767. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.AuxPwrHwRev, "");
  768. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.AuxPwrFwRev, "");
  769. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.FanModuleHwRev, "");
  770. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.FanModuleFwRev, "");
  771. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.RelayModuleHwRev, "");
  772. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.RelayModuleFwRev, "");
  773. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.TelcomModemFwRev, "");
  774. ShmSysConfigAndInfo->SysInfo.SystemAmbientTemp=0;
  775. ShmSysConfigAndInfo->SysInfo.SystemCriticalTemp=0;
  776. ShmSysConfigAndInfo->SysInfo.CcsConnectorTemp=0;
  777. ShmSysConfigAndInfo->SysInfo.PsuAmbientTemp=0;
  778. ShmSysConfigAndInfo->SysConfig.AcPlugInTimes=0;
  779. ShmSysConfigAndInfo->SysConfig.GbPlugInTimes=0;
  780. ShmSysConfigAndInfo->SysConfig.Ccs1PlugInTime=0;
  781. ShmSysConfigAndInfo->SysConfig.Ccs2PlugInTimes=0;
  782. ShmSysConfigAndInfo->SysConfig.ChademoPlugInTimes=0;
  783. // strcpy((char *)&ShmPsuData->PsuVersion[0].FwPrimaryVersion, "DC 9.01");
  784. // strcpy((char *)&ShmPsuData->PsuVersion[1].FwPrimaryVersion, "DC 9.02");
  785. // strcpy((char *)&ShmPsuData->PsuVersion[0].FwSecondVersion, "PFC 9.02");
  786. // strcpy((char *)&ShmPsuData->PsuVersion[1].FwSecondVersion, "PFC 9.03");
  787. //charging
  788. ShmSysConfigAndInfo->SysConfig.MaxChargingEnergy=0;
  789. ShmSysConfigAndInfo->SysConfig.MaxChargingPower=0;
  790. ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent= 0;
  791. ShmSysConfigAndInfo->SysConfig.MaxChargingDuration=0;
  792. ShmSysConfigAndInfo->SysConfig.PhaseLossPolicy=0;
  793. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[0], "111");
  794. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[1], "222");
  795. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[2], "333");
  796. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[3], "444");
  797. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[4], "555");
  798. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[5], "666");
  799. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[6], "777");
  800. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[7], "888");
  801. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[8], "999");
  802. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[9], "aaa");
  803. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.UserId, "UserId");
  804. ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].PresentChargingVoltage=0;
  805. ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].PresentChargingCurrent=0;
  806. ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].PresentChargingPower=0;
  807. ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].PresentChargedEnergy=0;
  808. ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].PresentChargedDuration=0;
  809. ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].RemainChargingDuration=0;
  810. ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].EvBatteryMaxVoltage=0;
  811. ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].EvBatterytargetVoltage=0;
  812. ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].EvBatterySoc=0;
  813. ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].SystemStatus=1;
  814. ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].Index=0;
  815. ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].Type=0;
  816. ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].type_index=0;
  817. ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].EvBatterytargetCurrent=1;
  818. //network
  819. ShmSysConfigAndInfo->SysInfo.InternetConn=0;
  820. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.FtpServer,"");
  821. ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthDhcpClient=1;
  822. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthMacAddress,"");
  823. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthIpAddress,"192.168.1.10");
  824. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthSubmaskAddress,"255.255.255.0");
  825. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthGatewayAddress,"192.168.1.1");
  826. ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthDhcpClient=1;
  827. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthMacAddress,"");
  828. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthIpAddress,"192.168.0.10");
  829. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthSubmaskAddress,"255.255.255.0");
  830. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthGatewayAddress,"192.168.0.1");
  831. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMode=1;
  832. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSsid,"");
  833. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiPassword,"");
  834. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiRssi=0;
  835. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpServer=0;
  836. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpClient=0;
  837. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMacAddress,"");
  838. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiIpAddress,"");
  839. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSubmaskAddress,"");
  840. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiGatewayAddress,"");
  841. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiNetworkConn=1;
  842. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomApn,"");
  843. ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomRssi=0;
  844. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapId,"");
  845. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapPwd,"");
  846. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomModemImei,"");
  847. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomSimImsi,"");
  848. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomSimIccid,"");
  849. ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomSimStatus=0;
  850. ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomModemMode=0;
  851. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomIpAddress,"");
  852. //backend
  853. ShmSysConfigAndInfo->SysConfig.BackendConnTimeout=300;
  854. ShmSysConfigAndInfo->SysConfig.OfflinePolicy=0;
  855. ShmSysConfigAndInfo->SysConfig.OfflineMaxChargeEnergy=0;
  856. ShmSysConfigAndInfo->SysConfig.OfflineMaxChargeDuration=0;
  857. ShmSysConfigAndInfo->SysInfo.OcppConnStatus=0;
  858. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.OcppServerURL,"");
  859. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.ChargeBoxId,"");
  860. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.chargePointVendor,"Phihong");
  861. ShmSysConfigAndInfo->SysInfo.FirmwareUpdate=0;
  862. struct SysConfigData SysConfig;
  863. memcpy(&SysConfig, &ShmSysConfigAndInfo->SysConfig, sizeof(struct SysConfigData));
  864. StoreUsrConfigData(&SysConfig);
  865. // struct PsuModuleVer PsuData;
  866. // memcpy(&PsuData, &ShmPsuData->PsuVersion, sizeof(struct PsuModuleVer));
  867. // StoreUsrConfigData(&PsuData);
  868. #ifdef SystemLogMessage
  869. DEBUG_INFO("WebService initial OK");
  870. #endif
  871. }
  872. if (strcmp(argv[1], "log") == 0) {
  873. unsigned char ModelName[64];;
  874. unsigned char SerialNo[64];;
  875. memcpy(ModelName,ShmSysConfigAndInfo->SysConfig.ModelName,ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.ModelName));
  876. printf("%s", ModelName);
  877. memcpy(SerialNo,ShmSysConfigAndInfo->SysConfig.SerialNumber,ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.SerialNumber));
  878. printf("%s", SerialNo);
  879. time_t tt = time(0); //獲取當前時間
  880. int year,month;
  881. char cmd[512];
  882. struct tm *pst = localtime(&tt); //把time_t類型轉換為struct tm類型
  883. year = pst->tm_year + 1900;
  884. month = pst->tm_mon + 1;
  885. sprintf(cmd,"cp /mnt/*%s*%s*.zip /var/www/log.zip",ModelName,SerialNo);
  886. if(system("exec /root/logPackTools 'log'")==0){
  887. system(cmd);
  888. }
  889. }
  890. if (strcmp(argv[1], "restart") == 0) {
  891. system("exec /usr/bin/run_evse_restart.sh");
  892. }
  893. }
  894. //upgrade firmware
  895. if ((argc == 3) & (strcmp(argv[1], "upgrade") == 0)) {
  896. struct json_object *jobj;
  897. struct json_object *Result;
  898. struct json_object *Message;
  899. //char cmd[100];
  900. jobj=json_object_new_object();
  901. //system
  902. //if((char)ShmSysConfigAndInfo->SysInfo.FirmwareUpdate == '0'){
  903. ShmSysConfigAndInfo->SysInfo.FirmwareUpdate=1;
  904. Result = json_object_new_string("success");
  905. Message = json_object_new_string("file is uploaded");
  906. //}
  907. /*else{
  908. sprintf(cmd,"rm /mnt/%s",argv[2]);
  909. system(cmd);
  910. Result = json_object_new_string("error");
  911. Message = json_object_new_string("machine is busy");
  912. }*/
  913. json_object_object_add(jobj,"Result",Result);
  914. json_object_object_add(jobj,"Message",Message);
  915. printf("%s\n", json_object_to_json_string(jobj));
  916. }
  917. //web page query all
  918. if ((argc == 2) & (strcmp(argv[1], "query") == 0)) {
  919. char *IsAcDc[2];
  920. char *Connector1[2];
  921. char *Connector2[2];
  922. char *Connector3[2];
  923. char *Network[2];
  924. unsigned char connector1FwVer[32];
  925. unsigned char connector2FwVer[32];
  926. short gunQty;
  927. char *RatedPower1[2];
  928. char *RatedPower2[2];
  929. char *RatedPower3[2];
  930. short RatedPower;
  931. short PsuQuantity = 0;
  932. substr((char *)IsAcDc,(const char *)ShmSysConfigAndInfo->SysConfig.ModelName,0,1);
  933. substr((char *)Connector1,(const char *)ShmSysConfigAndInfo->SysConfig.ModelName,7,1);
  934. substr((char *)Connector2,(const char *)ShmSysConfigAndInfo->SysConfig.ModelName,9,1);
  935. substr((char *)Connector3,(const char *)ShmSysConfigAndInfo->SysConfig.ModelName,8,1);
  936. substr((char *)Network,(const char *)ShmSysConfigAndInfo->SysConfig.ModelName,10,1);
  937. int connectorType1,connectorType2,connectorType3;
  938. connectorType1=ConnectorType((char *)Connector1);
  939. connectorType2=ConnectorType((char *)Connector2);
  940. connectorType3=ConnectorType((char *)Connector3);
  941. if(connectorType1 == connectorType2){
  942. gunQty = 1;
  943. }
  944. else{
  945. gunQty = 0;
  946. }
  947. if(connectorType1 != 0){
  948. if(connectorType1 == 1){
  949. // strcpy((char *)&connector1FwVer,ShmCcsData->V2GMessage_DIN70121->version);
  950. // memcpy(connector1FwVer,ShmCcsData->V2GMessage_DIN70121->version,ARRAY_SIZE(ShmCcsData->V2GMessage_DIN70121->version));
  951. }
  952. else if(connectorType1 == 2){
  953. // strcpy((char *)&connector1FwVer,ShmGBTData->evse[0].version);
  954. // memcpy(connector1FwVer,ShmGBTData->evse[0].version,ARRAY_SIZE(ShmGBTData->evse[0].version));
  955. }
  956. else if(connectorType1 == 3){
  957. // strcpy((char *)&connector1FwVer,ShmCHAdeMOData->evse[0].version);
  958. // memcpy(connector1FwVer,ShmCHAdeMOData->evse[0].version,ARRAY_SIZE(ShmCHAdeMOData->evse[0].version));
  959. }
  960. }
  961. if(connectorType2 != 0){
  962. if(connectorType2 == 1){
  963. // strcpy((char *)&connector2FwVer,ShmCcsData->V2GMessage_DIN70121->version);
  964. // memcpy(connector2FwVer,ShmCcsData->V2GMessage_DIN70121->version,ARRAY_SIZE(ShmCcsData->V2GMessage_DIN70121->version));
  965. }
  966. else if(connectorType2 == 2){
  967. // strcpy((char *)&connector2FwVer,ShmGBTData->evse[gunQty].version);
  968. // memcpy(connector2FwVer,ShmGBTData->evse[gunQty].version,ARRAY_SIZE(ShmGBTData->evse[gunQty].version));
  969. }
  970. else if(connectorType2 == 3){
  971. // strcpy((char *)&connector2FwVer,ShmCHAdeMOData->evse[gunQty].version);
  972. // memcpy(connector2FwVer,ShmCHAdeMOData->evse[gunQty].version,ARRAY_SIZE(ShmCHAdeMOData->evse[gunQty].version));
  973. }
  974. }
  975. substr((char *)RatedPower1,(const char *)ShmSysConfigAndInfo->SysConfig.ModelName,4,1);
  976. substr((char *)RatedPower2,(const char *)ShmSysConfigAndInfo->SysConfig.ModelName,5,1);
  977. substr((char *)RatedPower3,(const char *)ShmSysConfigAndInfo->SysConfig.ModelName,6,1);
  978. int p1=atoi(RatedPower1);
  979. int p2=atoi(RatedPower2);
  980. int p3=atoi(RatedPower3);
  981. if(strcmp(IsAcDc, "D") == 0){
  982. RatedPower=(p1*10+p2)*pow(10,p3-1);
  983. if(RatedPower>=30){
  984. PsuQuantity = RatedPower/30;
  985. }
  986. }
  987. struct json_object *jobj1;
  988. struct json_object *jobj2;
  989. struct json_object *jobj3;
  990. struct json_object *jobj4;
  991. //system
  992. struct json_object *ModelName;
  993. struct json_object *SerialNumber;
  994. struct json_object *SystemId;
  995. struct json_object *AcPhaseCount;
  996. struct json_object *FactoryConfiguration;
  997. struct json_object *AuthorisationMode;
  998. struct json_object *DefaultLanguage;
  999. struct json_object *InputVoltageR;
  1000. struct json_object *InputVoltageS;
  1001. struct json_object *InputVoltageT;
  1002. struct json_object *SystemFanRotaSpeed;
  1003. struct json_object *PsuFanRotaSpeed;
  1004. struct json_object *RfidCardNumEndian;
  1005. struct json_object *PsuAcInputType;
  1006. struct json_object *RatingCurrent;
  1007. struct json_object *AcRatingCurrent;
  1008. struct json_object *isAPP;
  1009. struct json_object *isQRCode;
  1010. struct json_object *isRFID;
  1011. struct json_object *QRCodeMadeMode;
  1012. struct json_object *QRCodeContent;
  1013. struct json_object *AuxPower5V;
  1014. struct json_object *AuxPower12V;
  1015. struct json_object *AuxPower24V;
  1016. struct json_object *AuxPower48V;
  1017. struct json_object *CsuHwRev;
  1018. struct json_object *CsuBootLoadFwRev;
  1019. struct json_object *CsuKernelFwRev;
  1020. struct json_object *CsuRootFsFwRev;
  1021. struct json_object *CsuPrimFwRev;
  1022. struct json_object *LcmHwRev;
  1023. struct json_object *LcmFwRev;
  1024. struct json_object *PsuHwRev;
  1025. struct json_object *PsuPrimFwRev;
  1026. struct json_object *PsuSecFwRev;
  1027. struct json_object *AuxPwrHwRev;
  1028. struct json_object *AuxPwrFwRev;
  1029. struct json_object *FanModuleHwRev;
  1030. struct json_object *FanModuleFwRev;
  1031. struct json_object *RelayModuleHwRev;
  1032. struct json_object *RelayModuleFwRev;
  1033. struct json_object *TelcomModemFwRev;
  1034. struct json_object *Connector1FwRev;
  1035. struct json_object *Connector2FwRev;
  1036. struct json_object *LedModuleFwRev;
  1037. struct json_object *SystemAmbientTemp;
  1038. struct json_object *SystemCriticalTemp;
  1039. struct json_object *CcsConnectorTemp;
  1040. struct json_object *PsuAmbientTemp;
  1041. struct json_object *AcPlugInTimes;
  1042. struct json_object *GbPlugInTimes;
  1043. struct json_object *Ccs1PlugInTime;
  1044. struct json_object *Ccs2PlugInTimes;
  1045. struct json_object *ChademoPlugInTimes;
  1046. struct json_object *FirmwareUpdate;
  1047. struct json_object *FwPrimaryVersion[PsuQuantity];
  1048. struct json_object *FwPrimaryVersionArr= json_object_new_array();
  1049. struct json_object *FwSecondVersion[PsuQuantity];
  1050. struct json_object *FwSecondVersionArr= json_object_new_array();
  1051. //charging
  1052. struct json_object *MaxChargingEnergy;
  1053. struct json_object *MaxChargingPower;
  1054. struct json_object *MaxChargingCurrent;
  1055. struct json_object *MaxChargingDuration;
  1056. struct json_object *PhaseLossPolicy;
  1057. struct json_object *LocalWhiteCard[10];
  1058. struct json_object *LocalWhiteCardArr= json_object_new_array();
  1059. struct json_object *isBilling;
  1060. struct json_object *Currency;
  1061. struct json_object *Fee[24];
  1062. struct json_object *FeeArr= json_object_new_array();
  1063. struct json_object *ChargingInfo1;
  1064. struct json_object *ChargingInfo2;
  1065. struct json_object *ChargingInfo3;
  1066. struct json_object *StartUserId[3];
  1067. struct json_object *StartDateTime[3];
  1068. struct json_object *StopDateTime[3];
  1069. struct json_object *StartMethod[3];
  1070. struct json_object *ConnectorTemp[3];
  1071. struct json_object *PresentChargingVoltage[3];
  1072. struct json_object *PresentChargingCurrent[3];
  1073. struct json_object *PresentChargingPower[3];
  1074. struct json_object *PresentChargedEnergy[3];
  1075. struct json_object *PresentChargedDuration[3];
  1076. struct json_object *RemainChargingDuration[3];
  1077. struct json_object *EvBatteryMaxVoltage[3];
  1078. struct json_object *EvBatterytargetVoltage[3];
  1079. struct json_object *EvBatterySoc[3];
  1080. struct json_object *SystemStatus[3];
  1081. struct json_object *Index[3];
  1082. struct json_object *Type[3];
  1083. struct json_object *type_index[3];
  1084. struct json_object *EvBatterytargetCurrent[3];
  1085. //network
  1086. struct json_object *InternetConn;
  1087. struct json_object *FtpServer;
  1088. struct json_object *Eth0DhcpClient;
  1089. struct json_object *Eth0MacAddress;
  1090. struct json_object *Eth0IpAddress;
  1091. struct json_object *Eth0SubmaskAddress;
  1092. struct json_object *Eth0GatewayAddress;
  1093. struct json_object *Eth1DhcpClient;
  1094. struct json_object *Eth1MacAddress;
  1095. struct json_object *Eth1IpAddress;
  1096. struct json_object *Eth1SubmaskAddress;
  1097. struct json_object *Eth1GatewayAddress;
  1098. struct json_object *WifiMode;
  1099. struct json_object *WifiSsid;
  1100. struct json_object *WifiPassword;
  1101. struct json_object *WifiRssi;
  1102. struct json_object *WifiDhcpServer;
  1103. struct json_object *WifiDhcpClient;
  1104. struct json_object *WifiMacAddress;
  1105. struct json_object *WifiIpAddress;
  1106. struct json_object *WifiSubmaskAddress;
  1107. struct json_object *WifiGatewayAddress;
  1108. struct json_object *WifiNetworkConn;
  1109. struct json_object *TelcomApn;
  1110. struct json_object *TelcomRssi;
  1111. struct json_object *TelcomChapPapId;
  1112. struct json_object *TelcomChapPapPwd;
  1113. struct json_object *TelcomModemImei;
  1114. struct json_object *TelcomSimImsi;
  1115. struct json_object *TelcomSimIccid;
  1116. struct json_object *TelcomSimStatus;
  1117. struct json_object *TelcomModemMode;
  1118. struct json_object *TelcomIpAddress;
  1119. struct json_object *TelcomNetworkConn;
  1120. //backend
  1121. struct json_object *BackendConnTimeout;
  1122. struct json_object *OfflinePolicy;
  1123. struct json_object *OfflineMaxChargeEnergy;
  1124. struct json_object *OfflineMaxChargeDuration;
  1125. struct json_object *OcppConnStatus;
  1126. struct json_object *OcppServerURL;
  1127. struct json_object *ChargeBoxId;
  1128. struct json_object *chargePointVendor;
  1129. jobj1=json_object_new_object();
  1130. jobj2=json_object_new_object();
  1131. jobj3=json_object_new_object();
  1132. jobj4=json_object_new_object();
  1133. //system
  1134. ModelName = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.ModelName);
  1135. SerialNumber = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.SerialNumber);
  1136. SystemId = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.SystemId);
  1137. AcPhaseCount = json_object_new_int(ShmSysConfigAndInfo->SysConfig.AcPhaseCount);
  1138. FactoryConfiguration = json_object_new_int(ShmSysConfigAndInfo->SysInfo.FactoryConfiguration);
  1139. AuthorisationMode = json_object_new_int(ShmSysConfigAndInfo->SysConfig.AuthorisationMode);
  1140. DefaultLanguage = json_object_new_int(ShmSysConfigAndInfo->SysConfig.DefaultLanguage);
  1141. InputVoltageR = json_object_new_double(ShmSysConfigAndInfo->SysInfo.InputVoltageR);
  1142. InputVoltageS = json_object_new_double(ShmSysConfigAndInfo->SysInfo.InputVoltageS);
  1143. InputVoltageT = json_object_new_double(ShmSysConfigAndInfo->SysInfo.InputVoltageT);
  1144. SystemFanRotaSpeed = json_object_new_int(ShmSysConfigAndInfo->SysInfo.SystemFanRotaSpeed);
  1145. PsuFanRotaSpeed = json_object_new_int(ShmSysConfigAndInfo->SysInfo.PsuFanRotaSpeed);
  1146. RfidCardNumEndian = json_object_new_int(ShmSysConfigAndInfo->SysConfig.RfidCardNumEndian);
  1147. PsuAcInputType = json_object_new_int(ShmSysConfigAndInfo->SysConfig.PsuAcInputType);
  1148. RatingCurrent = json_object_new_int(ShmSysConfigAndInfo->SysConfig.RatingCurrent);
  1149. AcRatingCurrent = json_object_new_int(ShmSysConfigAndInfo->SysConfig.AcRatingCurrent);
  1150. isAPP = json_object_new_int(ShmSysConfigAndInfo->SysConfig.isAPP);
  1151. isQRCode = json_object_new_int(ShmSysConfigAndInfo->SysConfig.isQRCode);
  1152. isRFID = json_object_new_int(ShmSysConfigAndInfo->SysConfig.isRFID);
  1153. QRCodeMadeMode = json_object_new_int(ShmSysConfigAndInfo->SysConfig.QRCodeMadeMode);
  1154. QRCodeContent = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.QRCodeContent);
  1155. AuxPower5V = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AuxPower5V);
  1156. AuxPower12V = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AuxPower12V);
  1157. AuxPower24V = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AuxPower24V);
  1158. AuxPower48V = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AuxPower48V);
  1159. CsuHwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.CsuHwRev);
  1160. CsuBootLoadFwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.CsuBootLoadFwRev);
  1161. CsuKernelFwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.CsuKernelFwRev);
  1162. CsuRootFsFwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev);
  1163. CsuPrimFwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.CsuPrimFwRev);
  1164. LcmHwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.LcmHwRev);
  1165. LcmFwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.LcmFwRev);
  1166. PsuHwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.PsuHwRev);
  1167. PsuPrimFwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.PsuPrimFwRev);
  1168. PsuSecFwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.PsuSecFwRev);
  1169. AuxPwrHwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.AuxPwrHwRev);
  1170. AuxPwrFwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.AuxPwrFwRev);
  1171. FanModuleHwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.FanModuleHwRev);
  1172. FanModuleFwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.FanModuleFwRev);
  1173. RelayModuleHwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.RelayModuleHwRev);
  1174. RelayModuleFwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.RelayModuleFwRev);
  1175. TelcomModemFwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.TelcomModemFwRev);
  1176. Connector1FwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.Connector1FwRev);
  1177. Connector2FwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.Connector2FwRev);
  1178. LedModuleFwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.LedModuleFwRev);
  1179. SystemAmbientTemp = json_object_new_int(ShmSysConfigAndInfo->SysInfo.SystemAmbientTemp);
  1180. SystemCriticalTemp = json_object_new_int(ShmSysConfigAndInfo->SysInfo.SystemCriticalTemp);
  1181. CcsConnectorTemp = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsConnectorTemp);
  1182. PsuAmbientTemp = json_object_new_int(ShmSysConfigAndInfo->SysInfo.PsuAmbientTemp);
  1183. AcPlugInTimes = json_object_new_int(ShmSysConfigAndInfo->SysConfig.AcPlugInTimes);
  1184. GbPlugInTimes = json_object_new_int(ShmSysConfigAndInfo->SysConfig.GbPlugInTimes);
  1185. Ccs1PlugInTime = json_object_new_int(ShmSysConfigAndInfo->SysConfig.Ccs1PlugInTime);
  1186. Ccs2PlugInTimes = json_object_new_int(ShmSysConfigAndInfo->SysConfig.Ccs2PlugInTimes);
  1187. ChademoPlugInTimes = json_object_new_int(ShmSysConfigAndInfo->SysConfig.ChademoPlugInTimes);
  1188. FirmwareUpdate = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.FirmwareUpdate);
  1189. if(strcmp(IsAcDc, "D") == 0){
  1190. for(int i=0;i<PsuQuantity;i++){
  1191. FwPrimaryVersion[i] = json_object_new_string((char *)&ShmPsuData->PsuVersion[i].FwPrimaryVersion);
  1192. FwSecondVersion[i] = json_object_new_string((char *)&ShmPsuData->PsuVersion[i].FwSecondVersion);
  1193. json_object_array_add(FwPrimaryVersionArr,FwPrimaryVersion[i]);
  1194. json_object_array_add(FwSecondVersionArr,FwSecondVersion[i]);
  1195. }
  1196. }
  1197. //charging
  1198. int CcsGunQty=0;
  1199. int GbGunQty=0;
  1200. int CHAdeMOGunQty=0;
  1201. int AcGunQty=0;
  1202. ChargingInfo1=json_object_new_object();
  1203. ChargingInfo2=json_object_new_object();
  1204. ChargingInfo3=json_object_new_object();
  1205. MaxChargingEnergy = json_object_new_int(ShmSysConfigAndInfo->SysConfig.MaxChargingEnergy);
  1206. MaxChargingPower = json_object_new_int(ShmSysConfigAndInfo->SysConfig.MaxChargingPower);
  1207. MaxChargingCurrent = json_object_new_int(ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent);
  1208. MaxChargingDuration = json_object_new_int(ShmSysConfigAndInfo->SysConfig.MaxChargingDuration);
  1209. PhaseLossPolicy = json_object_new_int(ShmSysConfigAndInfo->SysConfig.PhaseLossPolicy);
  1210. LocalWhiteCard[0] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[0]);
  1211. LocalWhiteCard[1] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[1]);
  1212. LocalWhiteCard[2] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[2]);
  1213. LocalWhiteCard[3] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[3]);
  1214. LocalWhiteCard[4] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[4]);
  1215. LocalWhiteCard[5] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[5]);
  1216. LocalWhiteCard[6] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[6]);
  1217. LocalWhiteCard[7] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[7]);
  1218. LocalWhiteCard[8] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[8]);
  1219. LocalWhiteCard[9] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[9]);
  1220. isBilling = json_object_new_int(ShmSysConfigAndInfo->SysConfig.BillingData.isBilling);
  1221. Currency = json_object_new_int(ShmSysConfigAndInfo->SysConfig.BillingData.Currency);
  1222. Fee[0] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[0]);
  1223. Fee[1] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[1]);
  1224. Fee[2] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[2]);
  1225. Fee[3] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[3]);
  1226. Fee[4] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[4]);
  1227. Fee[5] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[5]);
  1228. Fee[6] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[6]);
  1229. Fee[7] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[7]);
  1230. Fee[8] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[8]);
  1231. Fee[9] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[9]);
  1232. Fee[10] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[10]);
  1233. Fee[11] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[11]);
  1234. Fee[12] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[12]);
  1235. Fee[13] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[13]);
  1236. Fee[14] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[14]);
  1237. Fee[15] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[15]);
  1238. Fee[16] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[16]);
  1239. Fee[17] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[17]);
  1240. Fee[18] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[18]);
  1241. Fee[19] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[19]);
  1242. Fee[20] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[20]);
  1243. Fee[21] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[21]);
  1244. Fee[22] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[22]);
  1245. Fee[23] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[23]);
  1246. if(connectorType1 != 0){
  1247. if(connectorType1 == 1){//CCS
  1248. PresentChargingVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargingVoltage);
  1249. PresentChargingCurrent[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargingCurrent);
  1250. PresentChargingPower[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargingPower);
  1251. PresentChargedEnergy[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargedEnergy);
  1252. PresentChargedDuration[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargedDuration);
  1253. RemainChargingDuration[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].RemainChargingDuration);
  1254. EvBatteryMaxVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].EvBatteryMaxVoltage);
  1255. EvBatterytargetVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].EvBatterytargetVoltage);
  1256. EvBatterySoc[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].EvBatterySoc);
  1257. SystemStatus[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].SystemStatus);
  1258. Index[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].Index);
  1259. Type[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].Type);
  1260. type_index[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].type_index);
  1261. EvBatterytargetCurrent[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].EvBatterytargetCurrent);
  1262. StartUserId[0] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].StartUserId);
  1263. StartDateTime[0] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].StartDateTime);
  1264. StopDateTime[0] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].StopDateTime);
  1265. StartMethod[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].StartMethod);
  1266. ConnectorTemp[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ConnectorTemp);
  1267. CcsGunQty++;
  1268. }
  1269. else if(connectorType1 == 2){//GB
  1270. PresentChargingVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargingVoltage);
  1271. PresentChargingCurrent[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargingCurrent);
  1272. PresentChargingPower[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargingPower);
  1273. PresentChargedEnergy[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargedEnergy);
  1274. PresentChargedDuration[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargedDuration);
  1275. RemainChargingDuration[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].RemainChargingDuration);
  1276. EvBatteryMaxVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatteryMaxVoltage);
  1277. EvBatterytargetVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatterytargetVoltage);
  1278. EvBatterySoc[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatterySoc);
  1279. SystemStatus[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].SystemStatus);
  1280. Index[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].Index);
  1281. Type[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].Type);
  1282. type_index[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].type_index);
  1283. EvBatterytargetCurrent[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatterytargetCurrent);
  1284. StartUserId[0] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].StartUserId);
  1285. StartDateTime[0] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].StartDateTime);
  1286. StopDateTime[0] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].StopDateTime);
  1287. StartMethod[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].StartMethod);
  1288. ConnectorTemp[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ConnectorTemp);
  1289. GbGunQty++;
  1290. }
  1291. else if(connectorType1 == 3){//CHAdeMO
  1292. PresentChargingVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargingVoltage);
  1293. PresentChargingCurrent[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargingCurrent);
  1294. PresentChargingPower[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargingPower);
  1295. PresentChargedEnergy[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargedEnergy);
  1296. PresentChargedDuration[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargedDuration);
  1297. RemainChargingDuration[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].RemainChargingDuration);
  1298. EvBatteryMaxVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatteryMaxVoltage);
  1299. EvBatterytargetVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatterytargetVoltage);
  1300. EvBatterySoc[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatterySoc);
  1301. SystemStatus[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].SystemStatus);
  1302. Index[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].Index);
  1303. Type[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].Type);
  1304. type_index[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].type_index);
  1305. EvBatterytargetCurrent[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatterytargetCurrent);
  1306. StartUserId[0] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].StartUserId);
  1307. StartDateTime[0] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].StartDateTime);
  1308. StopDateTime[0] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].StopDateTime);
  1309. StartMethod[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].StartMethod);
  1310. ConnectorTemp[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ConnectorTemp);
  1311. CHAdeMOGunQty++;
  1312. }
  1313. else if(connectorType1 == 4){//AC
  1314. PresentChargingVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargingVoltage);
  1315. PresentChargingCurrent[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargingCurrent);
  1316. PresentChargingPower[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargingPower);
  1317. PresentChargedEnergy[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargedEnergy);
  1318. PresentChargedDuration[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargedDuration);
  1319. RemainChargingDuration[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].RemainChargingDuration);
  1320. EvBatteryMaxVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatteryMaxVoltage);
  1321. EvBatterytargetVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatterytargetVoltage);
  1322. EvBatterySoc[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatterySoc);
  1323. SystemStatus[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].SystemStatus);
  1324. Index[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].Index);
  1325. Type[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].Type);
  1326. type_index[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].type_index);
  1327. EvBatterytargetCurrent[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatterytargetCurrent);
  1328. StartUserId[0] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].StartUserId);
  1329. StartDateTime[0] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].StartDateTime);
  1330. StopDateTime[0] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].StopDateTime);
  1331. StartMethod[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].StartMethod);
  1332. ConnectorTemp[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].ConnectorTemp);
  1333. AcGunQty++;
  1334. }
  1335. }
  1336. if(connectorType2 != 0){
  1337. if(connectorType2 == 1){//CCS
  1338. PresentChargingVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargingVoltage);
  1339. PresentChargingCurrent[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargingCurrent);
  1340. PresentChargingPower[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargingPower);
  1341. PresentChargedEnergy[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargedEnergy);
  1342. PresentChargedDuration[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargedDuration);
  1343. RemainChargingDuration[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].RemainChargingDuration);
  1344. EvBatteryMaxVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].EvBatteryMaxVoltage);
  1345. EvBatterytargetVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].EvBatterytargetVoltage);
  1346. EvBatterySoc[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].EvBatterySoc);
  1347. SystemStatus[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].SystemStatus);
  1348. Index[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].Index);
  1349. Type[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].Type);
  1350. type_index[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].type_index);
  1351. EvBatterytargetCurrent[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].EvBatterytargetCurrent);
  1352. StartUserId[1] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].StartUserId);
  1353. StartDateTime[1] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].StartDateTime);
  1354. StopDateTime[1] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].StopDateTime);
  1355. StartMethod[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].StartMethod);
  1356. ConnectorTemp[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ConnectorTemp);
  1357. CcsGunQty++;
  1358. }
  1359. else if(connectorType2 == 2){//GB
  1360. PresentChargingVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargingVoltage);
  1361. PresentChargingCurrent[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargingCurrent);
  1362. PresentChargingPower[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargingPower);
  1363. PresentChargedEnergy[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargedEnergy);
  1364. PresentChargedDuration[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargedDuration);
  1365. RemainChargingDuration[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].RemainChargingDuration);
  1366. EvBatteryMaxVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatteryMaxVoltage);
  1367. EvBatterytargetVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatterytargetVoltage);
  1368. EvBatterySoc[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatterySoc);
  1369. SystemStatus[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].SystemStatus);
  1370. Index[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].Index);
  1371. Type[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].Type);
  1372. type_index[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].type_index);
  1373. EvBatterytargetCurrent[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatterytargetCurrent);
  1374. StartUserId[1] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].StartUserId);
  1375. StartDateTime[1] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].StartDateTime);
  1376. StopDateTime[1] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].StopDateTime);
  1377. StartMethod[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].StartMethod);
  1378. ConnectorTemp[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ConnectorTemp);
  1379. GbGunQty++;
  1380. }
  1381. else if(connectorType2 == 3){//CHAdeMO
  1382. PresentChargingVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargingVoltage);
  1383. PresentChargingCurrent[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargingCurrent);
  1384. PresentChargingPower[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargingPower);
  1385. PresentChargedEnergy[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargedEnergy);
  1386. PresentChargedDuration[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargedDuration);
  1387. RemainChargingDuration[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].RemainChargingDuration);
  1388. EvBatteryMaxVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatteryMaxVoltage);
  1389. EvBatterytargetVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatterytargetVoltage);
  1390. EvBatterySoc[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatterySoc);
  1391. SystemStatus[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].SystemStatus);
  1392. Index[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].Index);
  1393. Type[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].Type);
  1394. type_index[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].type_index);
  1395. EvBatterytargetCurrent[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatterytargetCurrent);
  1396. StartUserId[1] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].StartUserId);
  1397. StartDateTime[1] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].StartDateTime);
  1398. StopDateTime[1] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].StopDateTime);
  1399. StartMethod[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].StartMethod);
  1400. ConnectorTemp[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ConnectorTemp);
  1401. CHAdeMOGunQty++;
  1402. }
  1403. else if(connectorType2 == 4){//AC
  1404. PresentChargingVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargingVoltage);
  1405. PresentChargingCurrent[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargingCurrent);
  1406. PresentChargingPower[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargingPower);
  1407. PresentChargedEnergy[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargedEnergy);
  1408. PresentChargedDuration[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargedDuration);
  1409. RemainChargingDuration[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].RemainChargingDuration);
  1410. EvBatteryMaxVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatteryMaxVoltage);
  1411. EvBatterytargetVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatterytargetVoltage);
  1412. EvBatterySoc[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatterySoc);
  1413. SystemStatus[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].SystemStatus);
  1414. Index[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].Index);
  1415. Type[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].Type);
  1416. type_index[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].type_index);
  1417. EvBatterytargetCurrent[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatterytargetCurrent);
  1418. StartUserId[1] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].StartUserId);
  1419. StartDateTime[1] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].StartDateTime);
  1420. StopDateTime[1] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].StopDateTime);
  1421. StartMethod[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].StartMethod);
  1422. ConnectorTemp[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].ConnectorTemp);
  1423. AcGunQty++;
  1424. }
  1425. }
  1426. if(connectorType3 != 0){
  1427. if(connectorType3 == 1){//CCS
  1428. PresentChargingVoltage[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargingVoltage);
  1429. PresentChargingCurrent[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargingCurrent);
  1430. PresentChargingPower[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargingPower);
  1431. PresentChargedEnergy[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargedEnergy);
  1432. PresentChargedDuration[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargedDuration);
  1433. RemainChargingDuration[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].RemainChargingDuration);
  1434. EvBatteryMaxVoltage[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].EvBatteryMaxVoltage);
  1435. EvBatterytargetVoltage[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].EvBatterytargetVoltage);
  1436. EvBatterySoc[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].EvBatterySoc);
  1437. SystemStatus[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].SystemStatus);
  1438. Index[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].Index);
  1439. Type[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].Type);
  1440. type_index[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].type_index);
  1441. EvBatterytargetCurrent[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].EvBatterytargetCurrent);
  1442. StartUserId[2] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].StartUserId);
  1443. StartDateTime[2] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].StartDateTime);
  1444. StopDateTime[2] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].StopDateTime);
  1445. StartMethod[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].StartMethod);
  1446. ConnectorTemp[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ConnectorTemp);
  1447. CcsGunQty++;
  1448. }
  1449. else if(connectorType3 == 2){//GB
  1450. PresentChargingVoltage[2]= json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargingVoltage);
  1451. PresentChargingCurrent[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargingCurrent);
  1452. PresentChargingPower[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargingPower);
  1453. PresentChargedEnergy[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargedEnergy);
  1454. PresentChargedDuration[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargedDuration);
  1455. RemainChargingDuration[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].RemainChargingDuration);
  1456. EvBatteryMaxVoltage[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatteryMaxVoltage);
  1457. EvBatterytargetVoltage[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatterytargetVoltage);
  1458. EvBatterySoc[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatterySoc);
  1459. SystemStatus[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].SystemStatus);
  1460. Index[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].Index);
  1461. Type[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].Type);
  1462. type_index[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].type_index);
  1463. EvBatterytargetCurrent[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatterytargetCurrent);
  1464. StartUserId[2] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].StartUserId);
  1465. StartDateTime[2] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].StartDateTime);
  1466. StopDateTime[2] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].StopDateTime);
  1467. StartMethod[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].StartMethod);
  1468. ConnectorTemp[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ConnectorTemp);
  1469. GbGunQty++;
  1470. }
  1471. else if(connectorType3 == 3){//CHAdeMO
  1472. PresentChargingVoltage[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargingVoltage);
  1473. PresentChargingCurrent[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargingCurrent);
  1474. PresentChargingPower[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargingPower);
  1475. PresentChargedEnergy[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargedEnergy);
  1476. PresentChargedDuration[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargedDuration);
  1477. RemainChargingDuration[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].RemainChargingDuration);
  1478. EvBatteryMaxVoltage[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatteryMaxVoltage);
  1479. EvBatterytargetVoltage[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatterytargetVoltage);
  1480. EvBatterySoc[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatterySoc);
  1481. SystemStatus[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].SystemStatus);
  1482. Index[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].Index);
  1483. Type[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].Type);
  1484. type_index[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].type_index);
  1485. EvBatterytargetCurrent[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatterytargetCurrent);
  1486. StartUserId[2] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].StartUserId);
  1487. StartDateTime[2] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].StartDateTime);
  1488. StopDateTime[2] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].StopDateTime);
  1489. StartMethod[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].StartMethod);
  1490. ConnectorTemp[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ConnectorTemp);
  1491. CHAdeMOGunQty++;
  1492. }
  1493. else if(connectorType3 == 4){//AC
  1494. PresentChargingVoltage[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargingVoltage);
  1495. PresentChargingCurrent[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargingCurrent);
  1496. PresentChargingPower[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargingPower);
  1497. PresentChargedEnergy[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargedEnergy);
  1498. PresentChargedDuration[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargedDuration);
  1499. RemainChargingDuration[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].RemainChargingDuration);
  1500. EvBatteryMaxVoltage[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatteryMaxVoltage);
  1501. EvBatterytargetVoltage[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatterytargetVoltage);
  1502. EvBatterySoc[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatterySoc);
  1503. SystemStatus[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].SystemStatus);
  1504. Index[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].Index);
  1505. Type[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].Type);
  1506. type_index[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].type_index);
  1507. EvBatterytargetCurrent[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatterytargetCurrent);
  1508. StartUserId[2] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].StartUserId);
  1509. StartDateTime[2] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].StartDateTime);
  1510. StopDateTime[2] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].StopDateTime);
  1511. StartMethod[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].StartMethod);
  1512. ConnectorTemp[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].ConnectorTemp);
  1513. AcGunQty++;
  1514. }
  1515. }
  1516. //network
  1517. InternetConn = json_object_new_int(ShmSysConfigAndInfo->SysInfo.InternetConn);
  1518. FtpServer = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.FtpServer);
  1519. Eth0DhcpClient = json_object_new_int(ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthDhcpClient);
  1520. Eth0MacAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthMacAddress);
  1521. Eth0IpAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthIpAddress);
  1522. Eth0SubmaskAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthSubmaskAddress);
  1523. Eth0GatewayAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthGatewayAddress);
  1524. Eth1DhcpClient = json_object_new_int(ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthDhcpClient);
  1525. Eth1MacAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthMacAddress);
  1526. Eth1IpAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthIpAddress);
  1527. Eth1SubmaskAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthSubmaskAddress);
  1528. Eth1GatewayAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthGatewayAddress);
  1529. WifiMode = json_object_new_int(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMode);
  1530. WifiSsid = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSsid);
  1531. WifiPassword = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiPassword);
  1532. WifiRssi = json_object_new_int(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiRssi);
  1533. WifiDhcpServer = json_object_new_int(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpServer);
  1534. WifiDhcpClient = json_object_new_int(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpClient);
  1535. WifiMacAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMacAddress);
  1536. WifiIpAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiIpAddress);
  1537. WifiSubmaskAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSubmaskAddress);
  1538. WifiGatewayAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiGatewayAddress);
  1539. WifiNetworkConn = json_object_new_int(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiNetworkConn);
  1540. TelcomApn = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomApn);
  1541. TelcomRssi = json_object_new_int(ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomRssi);
  1542. TelcomChapPapId = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapId);
  1543. TelcomChapPapPwd = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapPwd);
  1544. TelcomModemImei = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomModemImei);
  1545. TelcomSimImsi = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomSimImsi);
  1546. TelcomSimIccid = json_object_new_string((char*)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomSimIccid);
  1547. TelcomSimStatus = json_object_new_int(ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomSimStatus);
  1548. TelcomModemMode = json_object_new_int(ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomModemMode);
  1549. TelcomIpAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomIpAddress);
  1550. TelcomNetworkConn = json_object_new_int(ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomNetworkConn);
  1551. //backend
  1552. BackendConnTimeout = json_object_new_int(ShmSysConfigAndInfo->SysConfig.BackendConnTimeout);
  1553. OfflinePolicy = json_object_new_int(ShmSysConfigAndInfo->SysConfig.OfflinePolicy);
  1554. OfflineMaxChargeEnergy = json_object_new_int(ShmSysConfigAndInfo->SysConfig.OfflineMaxChargeEnergy);
  1555. OfflineMaxChargeDuration = json_object_new_int(ShmSysConfigAndInfo->SysConfig.OfflineMaxChargeDuration);
  1556. OcppConnStatus = json_object_new_int(ShmSysConfigAndInfo->SysInfo.OcppConnStatus);
  1557. OcppServerURL = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.OcppServerURL);
  1558. ChargeBoxId = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.ChargeBoxId);
  1559. chargePointVendor = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.chargePointVendor);
  1560. //system
  1561. json_object_object_add(jobj1,"ModelName",ModelName);
  1562. json_object_object_add(jobj1,"SerialNumber",SerialNumber);
  1563. json_object_object_add(jobj1,"SystemId",SystemId);
  1564. json_object_object_add(jobj1,"AcPhaseCount",AcPhaseCount);
  1565. json_object_object_add(jobj1,"FactoryConfiguration",FactoryConfiguration);
  1566. json_object_object_add(jobj1,"AuthorisationMode",AuthorisationMode);
  1567. json_object_object_add(jobj1,"DefaultLanguage",DefaultLanguage);
  1568. json_object_object_add(jobj1,"InputVoltageR",InputVoltageR);
  1569. json_object_object_add(jobj1,"InputVoltageS",InputVoltageS);
  1570. json_object_object_add(jobj1,"InputVoltageT",InputVoltageT);
  1571. json_object_object_add(jobj1,"SystemFanRotaSpeed",SystemFanRotaSpeed);
  1572. json_object_object_add(jobj1,"PsuFanRotaSpeed",PsuFanRotaSpeed);
  1573. json_object_object_add(jobj1,"RfidCardNumEndian",RfidCardNumEndian);
  1574. json_object_object_add(jobj1,"PsuAcInputType",PsuAcInputType);
  1575. json_object_object_add(jobj1,"RatingCurrent",RatingCurrent);
  1576. json_object_object_add(jobj1,"AcRatingCurrent",AcRatingCurrent);
  1577. json_object_object_add(jobj1,"isAPP",isAPP);
  1578. json_object_object_add(jobj1,"isQRCode",isQRCode);
  1579. json_object_object_add(jobj1,"isRFID",isRFID);
  1580. json_object_object_add(jobj1,"QRCodeMadeMode",QRCodeMadeMode);
  1581. json_object_object_add(jobj1,"QRCodeContent",QRCodeContent);
  1582. json_object_object_add(jobj1,"AuxPower5V",AuxPower5V);
  1583. json_object_object_add(jobj1,"AuxPower12V",AuxPower12V);
  1584. json_object_object_add(jobj1,"AuxPower24V",AuxPower24V);
  1585. json_object_object_add(jobj1,"AuxPower48V",AuxPower48V);
  1586. json_object_object_add(jobj1,"CsuHwRev",CsuHwRev);
  1587. json_object_object_add(jobj1,"CsuBootLoadFwRev",CsuBootLoadFwRev);
  1588. json_object_object_add(jobj1,"CsuKernelFwRev",CsuKernelFwRev);
  1589. json_object_object_add(jobj1,"CsuRootFsFwRev",CsuRootFsFwRev);
  1590. json_object_object_add(jobj1,"CsuPrimFwRev",CsuPrimFwRev);
  1591. json_object_object_add(jobj1,"LcmHwRev",LcmHwRev);
  1592. json_object_object_add(jobj1,"LcmFwRev",LcmFwRev);
  1593. json_object_object_add(jobj1,"PsuHwRev",PsuHwRev);
  1594. json_object_object_add(jobj1,"PsuPrimFwRev",PsuPrimFwRev);
  1595. json_object_object_add(jobj1,"PsuSecFwRev",PsuSecFwRev);
  1596. json_object_object_add(jobj1,"AuxPwrHwRev",AuxPwrHwRev);
  1597. json_object_object_add(jobj1,"AuxPwrFwRev",AuxPwrFwRev);
  1598. json_object_object_add(jobj1,"FanModuleHwRev",FanModuleHwRev);
  1599. json_object_object_add(jobj1,"FanModuleFwRev",FanModuleFwRev);
  1600. json_object_object_add(jobj1,"RelayModuleHwRev",RelayModuleHwRev);
  1601. json_object_object_add(jobj1,"RelayModuleFwRev",RelayModuleFwRev);
  1602. json_object_object_add(jobj1,"TelcomModemFwRev",TelcomModemFwRev);
  1603. json_object_object_add(jobj1,"Connector1FwRev",Connector1FwRev);
  1604. json_object_object_add(jobj1,"Connector2FwRev",Connector2FwRev);
  1605. json_object_object_add(jobj1,"LedModuleFwRev",LedModuleFwRev);
  1606. json_object_object_add(jobj1,"SystemAmbientTemp",SystemAmbientTemp);
  1607. json_object_object_add(jobj1,"SystemCriticalTemp",SystemCriticalTemp);
  1608. json_object_object_add(jobj1,"CcsConnectorTemp",CcsConnectorTemp);
  1609. json_object_object_add(jobj1,"PsuAmbientTemp",PsuAmbientTemp);
  1610. json_object_object_add(jobj1,"AcPlugInTimes",AcPlugInTimes);
  1611. json_object_object_add(jobj1,"GbPlugInTimes",GbPlugInTimes);
  1612. json_object_object_add(jobj1,"Ccs1PlugInTimes",Ccs1PlugInTime);
  1613. json_object_object_add(jobj1,"Ccs2PlugInTimes",Ccs2PlugInTimes);
  1614. json_object_object_add(jobj1,"ChademoPlugInTimes",ChademoPlugInTimes);
  1615. json_object_object_add(jobj1,"FirmwareUpdate",FirmwareUpdate);
  1616. if(strcmp(IsAcDc, "D") == 0){
  1617. json_object_object_add(jobj1,"FwPrimaryVersion",FwPrimaryVersionArr);
  1618. json_object_object_add(jobj1,"FwSecondVersion",FwSecondVersionArr);
  1619. }
  1620. printf("%s\n", json_object_to_json_string(jobj1));
  1621. json_object_put(jobj1);
  1622. //charging
  1623. json_object_object_add(jobj2,"MaxChargingEnergy",MaxChargingEnergy);
  1624. json_object_object_add(jobj2,"MaxChargingPower",MaxChargingPower);
  1625. json_object_object_add(jobj2,"MaxChargingCurrent",MaxChargingCurrent);
  1626. json_object_object_add(jobj2,"MaxChargingDuration",MaxChargingDuration);
  1627. json_object_object_add(jobj2,"PhaseLossPolicy",PhaseLossPolicy);
  1628. json_object_array_add(LocalWhiteCardArr,LocalWhiteCard[0]);
  1629. json_object_array_add(LocalWhiteCardArr,LocalWhiteCard[1]);
  1630. json_object_array_add(LocalWhiteCardArr,LocalWhiteCard[2]);
  1631. json_object_array_add(LocalWhiteCardArr,LocalWhiteCard[3]);
  1632. json_object_array_add(LocalWhiteCardArr,LocalWhiteCard[4]);
  1633. json_object_array_add(LocalWhiteCardArr,LocalWhiteCard[5]);
  1634. json_object_array_add(LocalWhiteCardArr,LocalWhiteCard[6]);
  1635. json_object_array_add(LocalWhiteCardArr,LocalWhiteCard[7]);
  1636. json_object_array_add(LocalWhiteCardArr,LocalWhiteCard[8]);
  1637. json_object_array_add(LocalWhiteCardArr,LocalWhiteCard[9]);
  1638. json_object_object_add(jobj2,"LocalWhiteCard",LocalWhiteCardArr);
  1639. json_object_object_add(jobj2,"isBilling",isBilling);
  1640. json_object_object_add(jobj2,"Currency",Currency);
  1641. json_object_array_add(FeeArr,Fee[0]);
  1642. json_object_array_add(FeeArr,Fee[1]);
  1643. json_object_array_add(FeeArr,Fee[2]);
  1644. json_object_array_add(FeeArr,Fee[3]);
  1645. json_object_array_add(FeeArr,Fee[4]);
  1646. json_object_array_add(FeeArr,Fee[5]);
  1647. json_object_array_add(FeeArr,Fee[6]);
  1648. json_object_array_add(FeeArr,Fee[7]);
  1649. json_object_array_add(FeeArr,Fee[8]);
  1650. json_object_array_add(FeeArr,Fee[9]);
  1651. json_object_array_add(FeeArr,Fee[10]);
  1652. json_object_array_add(FeeArr,Fee[11]);
  1653. json_object_array_add(FeeArr,Fee[12]);
  1654. json_object_array_add(FeeArr,Fee[13]);
  1655. json_object_array_add(FeeArr,Fee[14]);
  1656. json_object_array_add(FeeArr,Fee[15]);
  1657. json_object_array_add(FeeArr,Fee[16]);
  1658. json_object_array_add(FeeArr,Fee[17]);
  1659. json_object_array_add(FeeArr,Fee[18]);
  1660. json_object_array_add(FeeArr,Fee[19]);
  1661. json_object_array_add(FeeArr,Fee[20]);
  1662. json_object_array_add(FeeArr,Fee[21]);
  1663. json_object_array_add(FeeArr,Fee[22]);
  1664. json_object_array_add(FeeArr,Fee[23]);
  1665. json_object_object_add(jobj2,"Fee",FeeArr);
  1666. if(connectorType1 != 0){
  1667. json_object_object_add(ChargingInfo1,"StartUserId",StartUserId[0]);
  1668. json_object_object_add(ChargingInfo1,"StartDateTime",StartDateTime[0]);
  1669. json_object_object_add(ChargingInfo1,"StopDateTime",StopDateTime[0]);
  1670. json_object_object_add(ChargingInfo1,"StartMethod",StartMethod[0]);
  1671. json_object_object_add(ChargingInfo1,"ConnectorTemp",ConnectorTemp[0]);
  1672. json_object_object_add(ChargingInfo1,"PresentChargingVoltage",PresentChargingVoltage[0]);
  1673. json_object_object_add(ChargingInfo1,"PresentChargingCurrent",PresentChargingCurrent[0]);
  1674. json_object_object_add(ChargingInfo1,"PresentChargingPower",PresentChargingPower[0]);
  1675. json_object_object_add(ChargingInfo1,"PresentChargedEnergy",PresentChargedEnergy[0]);
  1676. json_object_object_add(ChargingInfo1,"PresentChargedDuration",PresentChargedDuration[0]);
  1677. json_object_object_add(ChargingInfo1,"RemainChargingDuration",RemainChargingDuration[0]);
  1678. json_object_object_add(ChargingInfo1,"EvBatteryMaxVoltage",EvBatteryMaxVoltage[0]);
  1679. json_object_object_add(ChargingInfo1,"EvBatterytargetVoltage",EvBatterytargetVoltage[0]);
  1680. json_object_object_add(ChargingInfo1,"EvBatterySoc",EvBatterySoc[0]);
  1681. json_object_object_add(ChargingInfo1,"SystemStatus",SystemStatus[0]);
  1682. json_object_object_add(ChargingInfo1,"Index",Index[0]);
  1683. json_object_object_add(ChargingInfo1,"Type",Type[0]);
  1684. json_object_object_add(ChargingInfo1,"type_index",type_index[0]);
  1685. json_object_object_add(ChargingInfo1,"EvBatterytargetCurrent",EvBatterytargetCurrent[0]);
  1686. json_object_object_add(jobj2,"ChargingInfo1",ChargingInfo1);
  1687. }
  1688. if(connectorType2 != 0){
  1689. json_object_object_add(ChargingInfo2,"StartUserId",StartUserId[1]);
  1690. json_object_object_add(ChargingInfo2,"StartDateTime",StartDateTime[1]);
  1691. json_object_object_add(ChargingInfo2,"StopDateTime",StopDateTime[1]);
  1692. json_object_object_add(ChargingInfo2,"StartMethod",StartMethod[1]);
  1693. json_object_object_add(ChargingInfo2,"ConnectorTemp",ConnectorTemp[1]);
  1694. json_object_object_add(ChargingInfo2,"PresentChargingVoltage",PresentChargingVoltage[1]);
  1695. json_object_object_add(ChargingInfo2,"PresentChargingCurrent",PresentChargingCurrent[1]);
  1696. json_object_object_add(ChargingInfo2,"PresentChargingPower",PresentChargingPower[1]);
  1697. json_object_object_add(ChargingInfo2,"PresentChargedEnergy",PresentChargedEnergy[1]);
  1698. json_object_object_add(ChargingInfo2,"PresentChargedDuration",PresentChargedDuration[1]);
  1699. json_object_object_add(ChargingInfo2,"RemainChargingDuration",RemainChargingDuration[1]);
  1700. json_object_object_add(ChargingInfo2,"EvBatteryMaxVoltage",EvBatteryMaxVoltage[1]);
  1701. json_object_object_add(ChargingInfo2,"EvBatterytargetVoltage",EvBatterytargetVoltage[1]);
  1702. json_object_object_add(ChargingInfo2,"EvBatterySoc",EvBatterySoc[1]);
  1703. json_object_object_add(ChargingInfo2,"SystemStatus",SystemStatus[1]);
  1704. json_object_object_add(ChargingInfo2,"Index",Index[1]);
  1705. json_object_object_add(ChargingInfo2,"Type",Type[1]);
  1706. json_object_object_add(ChargingInfo2,"type_index",type_index[1]);
  1707. json_object_object_add(ChargingInfo2,"EvBatterytargetCurrent",EvBatterytargetCurrent[1]);
  1708. json_object_object_add(jobj2,"ChargingInfo2",ChargingInfo2);
  1709. }
  1710. if(connectorType3 != 0){
  1711. json_object_object_add(ChargingInfo3,"StartUserId",StartUserId[2]);
  1712. json_object_object_add(ChargingInfo3,"StartDateTime",StartDateTime[2]);
  1713. json_object_object_add(ChargingInfo3,"StopDateTime",StopDateTime[2]);
  1714. json_object_object_add(ChargingInfo3,"StartMethod",StartMethod[2]);
  1715. json_object_object_add(ChargingInfo3,"ConnectorTemp",ConnectorTemp[2]);
  1716. json_object_object_add(ChargingInfo3,"PresentChargingVoltage",PresentChargingVoltage[2]);
  1717. json_object_object_add(ChargingInfo3,"PresentChargingCurrent",PresentChargingCurrent[2]);
  1718. json_object_object_add(ChargingInfo3,"PresentChargingPower",PresentChargingPower[2]);
  1719. json_object_object_add(ChargingInfo3,"PresentChargedEnergy",PresentChargedEnergy[2]);
  1720. json_object_object_add(ChargingInfo3,"PresentChargedDuration",PresentChargedDuration[2]);
  1721. json_object_object_add(ChargingInfo3,"RemainChargingDuration",RemainChargingDuration[2]);
  1722. json_object_object_add(ChargingInfo3,"EvBatteryMaxVoltage",EvBatteryMaxVoltage[2]);
  1723. json_object_object_add(ChargingInfo3,"EvBatterytargetVoltage",EvBatterytargetVoltage[2]);
  1724. json_object_object_add(ChargingInfo3,"EvBatterySoc",EvBatterySoc[2]);
  1725. json_object_object_add(ChargingInfo3,"SystemStatus",SystemStatus[2]);
  1726. json_object_object_add(ChargingInfo3,"Index",Index[2]);
  1727. json_object_object_add(ChargingInfo3,"Type",Type[2]);
  1728. json_object_object_add(ChargingInfo3,"type_index",type_index[2]);
  1729. json_object_object_add(ChargingInfo3,"EvBatterytargetCurrent",EvBatterytargetCurrent[2]);
  1730. json_object_object_add(jobj2,"ChargingInfo3",ChargingInfo3);
  1731. }
  1732. printf("%s\n", json_object_to_json_string(jobj2));
  1733. json_object_put(jobj2);
  1734. //network
  1735. json_object_object_add(jobj3,"InternetConn",InternetConn);
  1736. json_object_object_add(jobj3,"FtpServer",FtpServer);
  1737. json_object_object_add(jobj3,"Eth0DhcpClient",Eth0DhcpClient);
  1738. json_object_object_add(jobj3,"Eth0MacAddress",Eth0MacAddress);
  1739. json_object_object_add(jobj3,"Eth0IpAddress",Eth0IpAddress);
  1740. json_object_object_add(jobj3,"Eth0SubmaskAddress",Eth0SubmaskAddress);
  1741. json_object_object_add(jobj3,"Eth0GatewayAddress",Eth0GatewayAddress);
  1742. json_object_object_add(jobj3,"Eth1DhcpClient",Eth1DhcpClient);
  1743. json_object_object_add(jobj3,"Eth1MacAddress",Eth1MacAddress);
  1744. json_object_object_add(jobj3,"Eth1IpAddress",Eth1IpAddress);
  1745. json_object_object_add(jobj3,"Eth1SubmaskAddress",Eth1SubmaskAddress);
  1746. json_object_object_add(jobj3,"Eth1GatewayAddress",Eth1GatewayAddress);
  1747. json_object_object_add(jobj3,"WifiMode",WifiMode);
  1748. json_object_object_add(jobj3,"WifiSsid",WifiSsid);
  1749. json_object_object_add(jobj3,"WifiPassword",WifiPassword);
  1750. json_object_object_add(jobj3,"WifiRssi",WifiRssi);
  1751. json_object_object_add(jobj3,"WifiDhcpServer",WifiDhcpServer);
  1752. json_object_object_add(jobj3,"WifiDhcpClient",WifiDhcpClient);
  1753. json_object_object_add(jobj3,"WifiMacAddress",WifiMacAddress);
  1754. json_object_object_add(jobj3,"WifiIpAddress",WifiIpAddress);
  1755. json_object_object_add(jobj3,"WifiSubmaskAddress",WifiSubmaskAddress);
  1756. json_object_object_add(jobj3,"WifiGatewayAddress",WifiGatewayAddress);
  1757. json_object_object_add(jobj3,"WifiNetworkConn",WifiNetworkConn);
  1758. json_object_object_add(jobj3,"TelcomApn",TelcomApn);
  1759. json_object_object_add(jobj3,"TelcomRssi",TelcomRssi);
  1760. json_object_object_add(jobj3,"TelcomChapPapId",TelcomChapPapId);
  1761. json_object_object_add(jobj3,"TelcomChapPapPwd",TelcomChapPapPwd);
  1762. json_object_object_add(jobj3,"TelcomModemImei",TelcomModemImei);
  1763. json_object_object_add(jobj3,"TelcomSimImsi",TelcomSimImsi);
  1764. json_object_object_add(jobj3,"TelcomSimIccid",TelcomSimIccid);
  1765. json_object_object_add(jobj3,"TelcomSimStatus",TelcomSimStatus);
  1766. json_object_object_add(jobj3,"TelcomModemMode",TelcomModemMode);
  1767. json_object_object_add(jobj3,"TelcomIpAddress",TelcomIpAddress);
  1768. json_object_object_add(jobj3,"TelcomNetworkConn",TelcomNetworkConn);
  1769. printf("%s\n", json_object_to_json_string(jobj3));
  1770. json_object_put(jobj3);
  1771. //backend
  1772. json_object_object_add(jobj4,"BackendConnTimeout",BackendConnTimeout);
  1773. json_object_object_add(jobj4,"OfflinePolicy",OfflinePolicy);
  1774. json_object_object_add(jobj4,"OfflineMaxChargeEnergy",OfflineMaxChargeEnergy);
  1775. json_object_object_add(jobj4,"OfflineMaxChargeDuration",OfflineMaxChargeDuration);
  1776. json_object_object_add(jobj4,"OcppConnStatus",OcppConnStatus);
  1777. json_object_object_add(jobj4,"OcppServerURL",OcppServerURL);
  1778. json_object_object_add(jobj4,"ChargeBoxId",ChargeBoxId);
  1779. json_object_object_add(jobj4,"chargePointVendor",chargePointVendor);
  1780. printf("%s\n", json_object_to_json_string(jobj4));
  1781. json_object_put(jobj4);
  1782. }
  1783. // for(;;)
  1784. // {
  1785. // }
  1786. return FAIL;
  1787. }