WebService.c 99 KB

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