WebService.c 150 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631
  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>
  20. #include <fcntl.h>
  21. #include <termios.h>
  22. #include <errno.h>
  23. #include <errno.h>
  24. #include <string.h>
  25. #include <time.h>
  26. #include <ctype.h>
  27. #include <ifaddrs.h>
  28. #include <math.h>
  29. #include "define.h"
  30. #include "json.h"
  31. #define DEBUG_INFO(format, args...) StoreLogMsg("[%s:%d][%s][Info] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  32. #define DEBUG_WARN(format, args...) StoreLogMsg("[%s:%d][%s][Warn] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  33. #define DEBUG_ERROR(format, args...) StoreLogMsg("[%s:%d][%s][Error] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  34. #define Debug
  35. #define SystemLogMessage
  36. #define ARRAY_SIZE(A) (sizeof(A) / sizeof(A[0]))
  37. #define PASS 1
  38. #define FAIL -1
  39. #define MtdBlockSize 0x300000
  40. struct SysConfigAndInfo *ShmSysConfigAndInfo;
  41. struct StatusCodeData *ShmStatusCodeData;
  42. struct CHAdeMOData *ShmCHAdeMOData;
  43. struct GBTData *ShmGBTData;
  44. struct CcsData *ShmCcsData;
  45. struct PsuData *ShmPsuData;
  46. struct PrimaryMcuData *ShmPrimaryMcuData;
  47. void trim(char *s);
  48. int mystrcmp(char *p1, char *p2);
  49. void substr(char *dest, const char* src, unsigned int start, unsigned int cnt);
  50. void split(char **arr, char *str, const char *del);
  51. #ifdef SystemLogMessage
  52. int StoreLogMsg(const char *fmt, ...) {
  53. char Buf[4096 + 256];
  54. char buffer[4096];
  55. time_t CurrentTime;
  56. struct tm *tm;
  57. va_list args;
  58. va_start(args, fmt);
  59. int rc = vsnprintf(buffer, sizeof(buffer), fmt, args);
  60. va_end(args);
  61. memset(Buf, 0, sizeof(Buf));
  62. CurrentTime = time(NULL);
  63. tm = localtime(&CurrentTime);
  64. sprintf(Buf,
  65. "echo \"[%04d.%02d.%02d %02d:%02d:%02d] - %s\" >> /Storage/SystemLog/[%04d.%02d]SystemLog",
  66. tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday, tm->tm_hour,
  67. tm->tm_min, tm->tm_sec, buffer, tm->tm_year + 1900, tm->tm_mon + 1);
  68. system(Buf);
  69. #ifdef Debug
  70. printf("[%04d.%02d.%02d %02d:%02d:%02d] - %s", tm->tm_year + 1900,
  71. tm->tm_mon + 1, tm->tm_mday, tm->tm_hour, tm->tm_min, tm->tm_sec,
  72. buffer);
  73. #endif
  74. return rc;
  75. }
  76. int WriteLogMsg(const char *fmt, ...) {
  77. char Buf[4096 + 256];
  78. char buffer[4096];
  79. time_t CurrentTime;
  80. struct tm *tm;
  81. va_list args;
  82. va_start(args, fmt);
  83. int rc = vsnprintf(buffer, sizeof(buffer), fmt, args);
  84. va_end(args);
  85. memset(Buf, 0, sizeof(Buf));
  86. CurrentTime = time(NULL);
  87. tm = localtime(&CurrentTime);
  88. sprintf(Buf,
  89. "echo \"[%04d.%02d.%02d %02d:%02d:%02d WebService] - %s\" >> /Storage/SystemLog/[%04d.%02d]WebService_SystemLog",
  90. tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday, tm->tm_hour,
  91. tm->tm_min, tm->tm_sec, buffer, tm->tm_year + 1900, tm->tm_mon + 1);
  92. system(Buf);
  93. return rc;
  94. }
  95. #endif
  96. int runShellCmd(const char*cmd)
  97. {
  98. int result = FAIL;
  99. char buf[256];
  100. FILE *fp;
  101. fp = popen(cmd, "r");
  102. if(fp != NULL)
  103. {
  104. while(fgets(buf, sizeof(buf), fp) != NULL)
  105. {
  106. DEBUG_INFO("%s\n", buf);
  107. }
  108. result = PASS;
  109. }
  110. pclose(fp);
  111. return result;
  112. }
  113. int DiffTimeb(struct timeb ST, struct timeb ET) {
  114. //return milli-second
  115. unsigned int StartTime, StopTime;
  116. StartTime = (unsigned int) ST.time;
  117. StopTime = (unsigned int) ET.time;
  118. return (StopTime - StartTime) * 1000 + ET.millitm - ST.millitm;
  119. }
  120. //=================================
  121. // Common routine
  122. //=================================
  123. void trim(char *s) {
  124. int i = 0, j, k, l = 0;
  125. while ((s[i] == ' ') || (s[i] == '\t') || (s[i] == '\n'))
  126. i++;
  127. j = strlen(s) - 1;
  128. while ((s[j] == ' ') || (s[j] == '\t') || (s[j] == '\n'))
  129. j--;
  130. if (i == 0 && j == strlen(s) - 1) {
  131. } else if (i == 0)
  132. s[j + 1] = '\0';
  133. else {
  134. for (k = i; k <= j; k++)
  135. s[l++] = s[k];
  136. s[l] = '\0';
  137. }
  138. }
  139. int mystrcmp(char *p1, char *p2) {
  140. while (*p1 == *p2) {
  141. if (*p1 == '\0' || *p2 == '\0')
  142. break;
  143. p1++;
  144. p2++;
  145. }
  146. if (*p1 == '\0' && *p2 == '\0')
  147. return (PASS);
  148. else
  149. return (FAIL);
  150. }
  151. void substr(char *dest, const char* src, unsigned int start, unsigned int cnt) {
  152. strncpy(dest, src + start, cnt);
  153. dest[cnt] = 0;
  154. }
  155. void split(char **arr, char *str, const char *del) {
  156. char *s = strtok(str, del);
  157. while (s != NULL) {
  158. *arr++ = s;
  159. s = strtok(NULL, del);
  160. }
  161. }
  162. int ConnectorType(char* connector){
  163. int result;
  164. if(strcmp(connector, "0") == 0){
  165. result= 0;
  166. }
  167. else if(strcmp(connector, "U") == 0 || strcmp(connector, "V") == 0 || strcmp(connector, "E") == 0 || strcmp(connector, "F") == 0 || strcmp(connector, "T") == 0 || strcmp(connector, "D") == 0 || strcmp(connector, "M") == 0 || strcmp(connector, "N") == 0 || strcmp(connector, "P") == 0 || strcmp(connector, "R") == 0){
  168. result= 1;//CCS
  169. }
  170. else if(strcmp(connector, "G") == 0){
  171. result= 2;//GB
  172. }
  173. else if(strcmp(connector, "J") == 0 || strcmp(connector, "K") == 0){
  174. result= 3;//CHAdeMO
  175. }
  176. 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 || strcmp(connector, "7") == 0 || strcmp(connector, "8") == 0){
  177. result= 4;//AC
  178. }
  179. else{
  180. result= 0;
  181. }
  182. return result;
  183. }
  184. int ModelType(char* type,char* network){
  185. int result=0;
  186. if(strcmp(type, "A") == 0){
  187. if(strcmp(network, "0") == 0 || strcmp(network, "R") == 0 || strcmp(network, "B") == 0){
  188. result=0;
  189. }
  190. else if(strcmp(network, "E") == 0 || strcmp(network, "W") == 0 || strcmp(network, "T") == 0 || strcmp(network, "U") == 0){
  191. result=1;
  192. }
  193. }
  194. else if(strcmp(type, "D") == 0){
  195. result=2;
  196. }
  197. return result;
  198. }
  199. // 四捨五入 取到 小數點第 2 位
  200. float rounding(float a)
  201. {
  202. return (int)(a*100+0.5)/100.0;
  203. }
  204. //==========================================
  205. // Init all share memory
  206. //==========================================
  207. int InitShareMemory() {
  208. int result = PASS;
  209. int MeterSMId;
  210. //creat ShmSysConfigAndInfo
  211. if ((MeterSMId = shmget(ShmSysConfigAndInfoKey,
  212. sizeof(struct SysConfigAndInfo), 0777)) < 0) {
  213. printf("%s\n","InitShareMemory Error");
  214. #ifdef SystemLogMessage
  215. DEBUG_ERROR("shmget ShmSysConfigAndInfo NG\n");
  216. #endif
  217. result = FAIL;
  218. } else if ((ShmSysConfigAndInfo = shmat(MeterSMId, NULL, 0))
  219. == (void *) -1) {
  220. #ifdef SystemLogMessage
  221. DEBUG_ERROR("shmat ShmSysConfigAndInfo NG\n");
  222. #endif
  223. result = FAIL;
  224. } else {
  225. }
  226. //creat ShmStatusCodeData
  227. if ((MeterSMId = shmget(ShmStatusCodeKey, sizeof(struct StatusCodeData),
  228. 0777)) < 0) {
  229. #ifdef SystemLogMessage
  230. DEBUG_ERROR("shmget ShmStatusCodeData NG\n");
  231. #endif
  232. result = FAIL;
  233. } else if ((ShmStatusCodeData = shmat(MeterSMId, NULL, 0)) == (void *) -1) {
  234. #ifdef SystemLogMessage
  235. DEBUG_ERROR("shmat ShmStatusCodeData NG\n");
  236. #endif
  237. result = FAIL;
  238. } else {
  239. }
  240. //creat ShmPsuData
  241. if ((MeterSMId = shmget(ShmPsuKey, sizeof(struct PsuData),
  242. 0777)) < 0) {
  243. #ifdef SystemLogMessage
  244. DEBUG_ERROR("shmget ShmPsuData NG\n");
  245. #endif
  246. result = FAIL;
  247. } else if ((ShmPsuData = shmat(MeterSMId, NULL, 0)) == (void *) -1) {
  248. #ifdef SystemLogMessage
  249. DEBUG_ERROR("shmat ShmPsuData NG\n");
  250. #endif
  251. result = FAIL;
  252. } else {
  253. }
  254. //creat ShmPrimaryMcuData
  255. if ((MeterSMId = shmget(ShmPrimaryMcuKey, sizeof(struct PrimaryMcuData),
  256. 0777)) < 0) {
  257. #ifdef SystemLogMessage
  258. DEBUG_ERROR("shmget ShmPrimaryMcuData NG\n");
  259. #endif
  260. result = FAIL;
  261. } else if ((ShmPrimaryMcuData = shmat(MeterSMId, NULL, 0)) == (void *) -1) {
  262. #ifdef SystemLogMessage
  263. DEBUG_ERROR("shmat ShmPrimaryMcuData NG\n");
  264. #endif
  265. result = FAIL;
  266. } else {
  267. }
  268. return result;
  269. }
  270. int StoreUsrConfigData(struct SysConfigData *UsrData)
  271. {
  272. int result = PASS;
  273. int fd,wrd;
  274. unsigned int i,Chk;
  275. unsigned char *ptr, *BufTmp;
  276. Chk=0;
  277. ptr=(unsigned char *)UsrData;
  278. if((BufTmp=malloc(MtdBlockSize))!=NULL)
  279. {
  280. memset(BufTmp,0,MtdBlockSize);
  281. memcpy(BufTmp,ptr,sizeof(struct SysConfigData));
  282. for(i=ARRAY_SIZE(UsrData->CsuBootLoadFwRev);i<MtdBlockSize-4;i++)
  283. Chk+=*(BufTmp+i);
  284. memcpy(BufTmp+MtdBlockSize-4, &Chk, 4);
  285. // Output configuration to file.
  286. fd = open("/mnt/EvseConfig.bin", O_RDWR|O_CREAT);
  287. if (fd < 0)
  288. {
  289. DEBUG_ERROR("open /mnt/EvseConfig.bin NG\n");
  290. free(BufTmp);
  291. return 0;
  292. }
  293. wrd=write(fd, BufTmp, MtdBlockSize);
  294. close(fd);
  295. if(wrd<MtdBlockSize)
  296. {
  297. DEBUG_ERROR("write /mnt/EvseConfig.bin NG\n");
  298. free(BufTmp);
  299. return 0;
  300. }
  301. DEBUG_INFO("EvseConfig write to file in /mnt OK.\n");
  302. DEBUG_INFO("Erase /dev/mtd10.\n");
  303. runShellCmd("flash_erase /dev/mtd10 0 0");
  304. DEBUG_INFO("Write /dev/mtd10.\n");
  305. runShellCmd("nandwrite -p /dev/mtd10 /mnt/EvseConfig.bin");
  306. DEBUG_INFO("Erase /dev/mtd11.\n");
  307. runShellCmd("flash_erase /dev/mtd11 0 0");
  308. DEBUG_INFO("Write /dev/mtd11.\n");
  309. runShellCmd("nandwrite -p /dev/mtd11 /mnt/EvseConfig.bin");
  310. system("rm -f /mnt/EvseConfig.bin");
  311. DEBUG_INFO("EvseConfig write to flash OK\n");
  312. }
  313. else
  314. {
  315. DEBUG_ERROR("alloc BlockSize NG\r\n");
  316. result = FAIL;
  317. }
  318. if(BufTmp!=NULL)
  319. free(BufTmp);
  320. return result;
  321. }
  322. //================================================
  323. // Main process
  324. //================================================
  325. int main(int argc, char *argv[]) {
  326. //int InitShMry = 1;
  327. if (InitShareMemory() == FAIL) {
  328. //InitShMry = 0;
  329. #ifdef SystemLogMessage
  330. DEBUG_ERROR("InitShareMemory NG\n");
  331. #endif
  332. if (ShmStatusCodeData != NULL) {
  333. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.FailToCreateShareMemory = 1;
  334. }
  335. sleep(5);
  336. return 0;
  337. }
  338. //web page submit
  339. if ((argc == 3) & (strlen(argv[1]) == 1)) {
  340. //web page submit system
  341. if (strcmp(argv[1], "1") == 0) {
  342. struct json_object *jobj = json_tokener_parse(argv[2]);
  343. json_object *val_obj = NULL;
  344. char *SystemId=NULL;
  345. char *SystemDateTime = NULL;
  346. int PhaseLossPolicy = 0;
  347. int FactoryConfiguration = 0;
  348. int AuthorisationMode = 0;
  349. int RfidCardNumEndian = 0;
  350. int PsuAcInputType = 0;
  351. char isAPP = 0;
  352. char isQRCode = 0;
  353. char isRFID = 0;
  354. char QRCodeMadeMode = 0;
  355. char *QRCodeContent = NULL;
  356. char Intensity = 0;
  357. char *DDSystemId1=NULL;
  358. int DDFactoryConfiguration1 = 0;
  359. int DDAuthorisationMode1 = 0;
  360. int DDRfidCardNumEndian1 = 0;
  361. char DDisAPP1 = 0;
  362. char DDisQRCode1 = 0;
  363. char DDisRFID1 = 0;
  364. char DDQRCodeMadeMode1 = 0;
  365. char *DDQRCodeContent1 = NULL;
  366. char DDIntensity1 = 0;
  367. char *DDSystemId2=NULL;
  368. int DDFactoryConfiguration2 = 0;
  369. int DDAuthorisationMode2 = 0;
  370. int DDRfidCardNumEndian2 = 0;
  371. char DDisAPP2 = 0;
  372. char DDisQRCode2 = 0;
  373. char DDisRFID2 = 0;
  374. char DDQRCodeMadeMode2 = 0;
  375. char *DDQRCodeContent2 = NULL;
  376. char DDIntensity2 = 0;
  377. char *DDSystemId3=NULL;
  378. int DDFactoryConfiguration3 = 0;
  379. int DDAuthorisationMode3 = 0;
  380. int DDRfidCardNumEndian3 = 0;
  381. char DDisAPP3 = 0;
  382. char DDisQRCode3 = 0;
  383. char DDisRFID3 = 0;
  384. char DDQRCodeMadeMode3 = 0;
  385. char *DDQRCodeContent3 = NULL;
  386. char DDIntensity3 = 0;
  387. char *DDSystemId4=NULL;
  388. int DDFactoryConfiguration4 = 0;
  389. int DDAuthorisationMode4 = 0;
  390. int DDRfidCardNumEndian4 = 0;
  391. char DDisAPP4 = 0;
  392. char DDisQRCode4 = 0;
  393. char DDisRFID4 = 0;
  394. char DDQRCodeMadeMode4 = 0;
  395. char *DDQRCodeContent4 = NULL;
  396. char DDIntensity4 = 0;
  397. if( json_object_object_get_ex(jobj, "SystemId", &val_obj) ) {
  398. SystemId = (char*)json_object_get_string(val_obj);
  399. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.SystemId,SystemId);
  400. }
  401. if( json_object_object_get_ex(jobj, "SystemDateTime", &val_obj) ) {
  402. SystemDateTime = (char*)json_object_get_string(val_obj);
  403. if(strlen(SystemDateTime)>0){
  404. char cmd[100];
  405. sprintf(cmd,"date -s '%s'",SystemDateTime);
  406. if(system(cmd)==0){
  407. system("hwclock -w");
  408. }
  409. }
  410. }
  411. if( json_object_object_get_ex(jobj, "PhaseLossPolicy", &val_obj) ) {
  412. PhaseLossPolicy = json_object_get_int(val_obj);
  413. ShmSysConfigAndInfo->SysConfig.PhaseLossPolicy = PhaseLossPolicy;
  414. }
  415. if( json_object_object_get_ex(jobj, "FactoryConfiguration", &val_obj) ) {
  416. FactoryConfiguration = json_object_get_int(val_obj);
  417. ShmSysConfigAndInfo->SysInfo.FactoryConfiguration = FactoryConfiguration;
  418. }
  419. if( json_object_object_get_ex(jobj, "AuthorisationMode", &val_obj) ) {
  420. AuthorisationMode = json_object_get_int(val_obj);
  421. ShmSysConfigAndInfo->SysConfig.AuthorisationMode = AuthorisationMode;
  422. }
  423. if( json_object_object_get_ex(jobj, "RfidCardNumEndian", &val_obj) ) {
  424. RfidCardNumEndian = json_object_get_int(val_obj);
  425. ShmSysConfigAndInfo->SysConfig.RfidCardNumEndian = RfidCardNumEndian;
  426. }
  427. if( json_object_object_get_ex(jobj, "PsuAcInputType", &val_obj) ) {
  428. PsuAcInputType = json_object_get_int(val_obj);
  429. ShmSysConfigAndInfo->SysConfig.PsuAcInputType = PsuAcInputType;
  430. }
  431. if( json_object_object_get_ex(jobj, "isAPP", &val_obj) ) {
  432. isAPP = json_object_get_int(val_obj);
  433. ShmSysConfigAndInfo->SysConfig.isAPP = isAPP;
  434. }
  435. if( json_object_object_get_ex(jobj, "isQRCode", &val_obj) ) {
  436. isQRCode = json_object_get_int(val_obj);
  437. ShmSysConfigAndInfo->SysConfig.isQRCode = isQRCode;
  438. }
  439. if( json_object_object_get_ex(jobj, "isRFID", &val_obj) ) {
  440. isRFID = json_object_get_int(val_obj);
  441. ShmSysConfigAndInfo->SysConfig.isRFID = isRFID;
  442. }
  443. if( json_object_object_get_ex(jobj, "QRCodeMadeMode", &val_obj) ) {
  444. QRCodeMadeMode = json_object_get_int(val_obj);
  445. ShmSysConfigAndInfo->SysConfig.QRCodeMadeMode = QRCodeMadeMode;
  446. }
  447. if( json_object_object_get_ex(jobj, "QRCodeContent", &val_obj) ) {
  448. QRCodeContent = json_object_get_string(val_obj);
  449. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.QRCodeContent,QRCodeContent);
  450. }
  451. if( json_object_object_get_ex(jobj, "Intensity", &val_obj) ) {
  452. Intensity = json_object_get_int(val_obj);
  453. ShmSysConfigAndInfo->SysConfig.LedInfo.Intensity = Intensity;
  454. }
  455. if( json_object_object_get_ex(jobj, "DDSystemId1", &val_obj) ) {
  456. DDSystemId1 = (char*)json_object_get_string(val_obj);
  457. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[0].SystemId,DDSystemId1);
  458. }
  459. if( json_object_object_get_ex(jobj, "DDFactoryConfiguration1", &val_obj) ) {
  460. DDFactoryConfiguration1 = json_object_get_int(val_obj);
  461. ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[0].FactoryConfiguration = DDFactoryConfiguration1;
  462. }
  463. if( json_object_object_get_ex(jobj, "DDAuthorisationMode1", &val_obj) ) {
  464. DDAuthorisationMode1 = json_object_get_int(val_obj);
  465. ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[0].AuthorisationMode = DDAuthorisationMode1;
  466. }
  467. if( json_object_object_get_ex(jobj, "DDRfidCardNumEndian1", &val_obj) ) {
  468. DDRfidCardNumEndian1 = json_object_get_int(val_obj);
  469. ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[0].RfidCardNumEndian = DDRfidCardNumEndian1;
  470. }
  471. if( json_object_object_get_ex(jobj, "DDisAPP1", &val_obj) ) {
  472. DDisAPP1 = json_object_get_int(val_obj);
  473. ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[0].isAPP = DDisAPP1;
  474. }
  475. if( json_object_object_get_ex(jobj, "DDisQRCode1", &val_obj) ) {
  476. DDisQRCode1 = json_object_get_int(val_obj);
  477. ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[0].isQRCode = DDisQRCode1;
  478. }
  479. if( json_object_object_get_ex(jobj, "DDisRFID1", &val_obj) ) {
  480. DDisRFID1 = json_object_get_int(val_obj);
  481. ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[0].isRFID = DDisRFID1;
  482. }
  483. if( json_object_object_get_ex(jobj, "DDQRCodeMadeMode1", &val_obj) ) {
  484. DDQRCodeMadeMode1 = json_object_get_int(val_obj);
  485. ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[0].QRCodeMadeMode = DDQRCodeMadeMode1;
  486. }
  487. if( json_object_object_get_ex(jobj, "DDQRCodeContent1", &val_obj) ) {
  488. DDQRCodeContent1 = json_object_get_string(val_obj);
  489. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[0].QRCodeContent,DDQRCodeContent1);
  490. }
  491. if( json_object_object_get_ex(jobj, "DDIntensity1", &val_obj) ) {
  492. DDIntensity1 = json_object_get_int(val_obj);
  493. ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[0].LedInfo.Intensity = DDIntensity1;
  494. }
  495. if( json_object_object_get_ex(jobj, "DDSystemId2", &val_obj) ) {
  496. DDSystemId2 = (char*)json_object_get_string(val_obj);
  497. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].SystemId,DDSystemId2);
  498. }
  499. if( json_object_object_get_ex(jobj, "DDFactoryConfiguration2", &val_obj) ) {
  500. DDFactoryConfiguration2 = json_object_get_int(val_obj);
  501. ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].FactoryConfiguration = DDFactoryConfiguration2;
  502. }
  503. if( json_object_object_get_ex(jobj, "DDAuthorisationMode2", &val_obj) ) {
  504. DDAuthorisationMode2 = json_object_get_int(val_obj);
  505. ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].AuthorisationMode = DDAuthorisationMode2;
  506. }
  507. if( json_object_object_get_ex(jobj, "DDRfidCardNumEndian2", &val_obj) ) {
  508. DDRfidCardNumEndian2 = json_object_get_int(val_obj);
  509. ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].RfidCardNumEndian = DDRfidCardNumEndian2;
  510. }
  511. if( json_object_object_get_ex(jobj, "DDisAPP2", &val_obj) ) {
  512. DDisAPP2 = json_object_get_int(val_obj);
  513. ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].isAPP = DDisAPP2;
  514. }
  515. if( json_object_object_get_ex(jobj, "DDisQRCode2", &val_obj) ) {
  516. DDisQRCode2 = json_object_get_int(val_obj);
  517. ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].isQRCode = DDisQRCode2;
  518. }
  519. if( json_object_object_get_ex(jobj, "DDisRFID2", &val_obj) ) {
  520. DDisRFID2 = json_object_get_int(val_obj);
  521. ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].isRFID = DDisRFID2;
  522. }
  523. if( json_object_object_get_ex(jobj, "DDQRCodeMadeMode2", &val_obj) ) {
  524. DDQRCodeMadeMode2 = json_object_get_int(val_obj);
  525. ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].QRCodeMadeMode = DDQRCodeMadeMode2;
  526. }
  527. if( json_object_object_get_ex(jobj, "DDQRCodeContent2", &val_obj) ) {
  528. DDQRCodeContent2 = json_object_get_string(val_obj);
  529. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].QRCodeContent,DDQRCodeContent2);
  530. }
  531. if( json_object_object_get_ex(jobj, "DDIntensity2", &val_obj) ) {
  532. DDIntensity2 = json_object_get_int(val_obj);
  533. ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].LedInfo.Intensity = DDIntensity2;
  534. }
  535. if( json_object_object_get_ex(jobj, "DDSystemId3", &val_obj) ) {
  536. DDSystemId3 = (char*)json_object_get_string(val_obj);
  537. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[2].SystemId,DDSystemId3);
  538. }
  539. if( json_object_object_get_ex(jobj, "DDFactoryConfiguration3", &val_obj) ) {
  540. DDFactoryConfiguration3 = json_object_get_int(val_obj);
  541. ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[2].FactoryConfiguration = DDFactoryConfiguration3;
  542. }
  543. if( json_object_object_get_ex(jobj, "DDAuthorisationMode3", &val_obj) ) {
  544. DDAuthorisationMode3 = json_object_get_int(val_obj);
  545. ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[2].AuthorisationMode = DDAuthorisationMode3;
  546. }
  547. if( json_object_object_get_ex(jobj, "DDRfidCardNumEndian3", &val_obj) ) {
  548. DDRfidCardNumEndian3 = json_object_get_int(val_obj);
  549. ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[2].RfidCardNumEndian = DDRfidCardNumEndian3;
  550. }
  551. if( json_object_object_get_ex(jobj, "DDisAPP3", &val_obj) ) {
  552. DDisAPP3 = json_object_get_int(val_obj);
  553. ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[2].isAPP = DDisAPP3;
  554. }
  555. if( json_object_object_get_ex(jobj, "DDisQRCode3", &val_obj) ) {
  556. DDisQRCode3 = json_object_get_int(val_obj);
  557. ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[2].isQRCode = DDisQRCode3;
  558. }
  559. if( json_object_object_get_ex(jobj, "DDisRFID3", &val_obj) ) {
  560. DDisRFID3 = json_object_get_int(val_obj);
  561. ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[2].isRFID = DDisRFID3;
  562. }
  563. if( json_object_object_get_ex(jobj, "DDQRCodeMadeMode3", &val_obj) ) {
  564. DDQRCodeMadeMode3 = json_object_get_int(val_obj);
  565. ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[2].QRCodeMadeMode = DDQRCodeMadeMode3;
  566. }
  567. if( json_object_object_get_ex(jobj, "DDQRCodeContent3", &val_obj) ) {
  568. DDQRCodeContent3 = json_object_get_string(val_obj);
  569. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[2].QRCodeContent,DDQRCodeContent3);
  570. }
  571. if( json_object_object_get_ex(jobj, "DDIntensity3", &val_obj) ) {
  572. DDIntensity3 = json_object_get_int(val_obj);
  573. ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[2].LedInfo.Intensity = DDIntensity3;
  574. }
  575. if( json_object_object_get_ex(jobj, "DDSystemId4", &val_obj) ) {
  576. DDSystemId4 = (char*)json_object_get_string(val_obj);
  577. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[3].SystemId,DDSystemId4);
  578. }
  579. if( json_object_object_get_ex(jobj, "DDFactoryConfiguration4", &val_obj) ) {
  580. DDFactoryConfiguration4 = json_object_get_int(val_obj);
  581. ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[3].FactoryConfiguration = DDFactoryConfiguration4;
  582. }
  583. if( json_object_object_get_ex(jobj, "DDAuthorisationMode4", &val_obj) ) {
  584. DDAuthorisationMode4 = json_object_get_int(val_obj);
  585. ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[3].AuthorisationMode = DDAuthorisationMode4;
  586. }
  587. if( json_object_object_get_ex(jobj, "DDRfidCardNumEndian4", &val_obj) ) {
  588. DDRfidCardNumEndian4 = json_object_get_int(val_obj);
  589. ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[3].RfidCardNumEndian = DDRfidCardNumEndian4;
  590. }
  591. if( json_object_object_get_ex(jobj, "DDisAPP4", &val_obj) ) {
  592. DDisAPP4 = json_object_get_int(val_obj);
  593. ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[3].isAPP = DDisAPP4;
  594. }
  595. if( json_object_object_get_ex(jobj, "DDisQRCode4", &val_obj) ) {
  596. DDisQRCode4 = json_object_get_int(val_obj);
  597. ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[3].isQRCode = DDisQRCode4;
  598. }
  599. if( json_object_object_get_ex(jobj, "DDisRFID4", &val_obj) ) {
  600. DDisRFID4 = json_object_get_int(val_obj);
  601. ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[3].isRFID = DDisRFID4;
  602. }
  603. if( json_object_object_get_ex(jobj, "DDQRCodeMadeMode4", &val_obj) ) {
  604. DDQRCodeMadeMode4 = json_object_get_int(val_obj);
  605. ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[3].QRCodeMadeMode = DDQRCodeMadeMode4;
  606. }
  607. if( json_object_object_get_ex(jobj, "DDQRCodeContent4", &val_obj) ) {
  608. DDQRCodeContent4 = json_object_get_string(val_obj);
  609. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[3].QRCodeContent,DDQRCodeContent4);
  610. }
  611. if( json_object_object_get_ex(jobj, "DDIntensity4", &val_obj) ) {
  612. DDIntensity4 = json_object_get_int(val_obj);
  613. ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[3].LedInfo.Intensity = DDIntensity4;
  614. }
  615. }
  616. if (strcmp(argv[1], "2") == 0) {
  617. struct json_object *jobj = json_tokener_parse(argv[2]);
  618. json_object *val_obj = NULL;
  619. int MaxChargingEnergy= 0;
  620. int MaxChargingPower = 0;
  621. int MaxChargingCurrent = 0;
  622. int AcMaxChargingCurrent = 0;
  623. int MaxChargingDuration = 0;
  624. int StopChargingByButton = 0;
  625. char *LocalWhiteCard0 = NULL;
  626. char *LocalWhiteCard1 = NULL;
  627. char *LocalWhiteCard2 = NULL;
  628. char *LocalWhiteCard3 = NULL;
  629. char *LocalWhiteCard4 = NULL;
  630. char *LocalWhiteCard5 = NULL;
  631. char *LocalWhiteCard6 = NULL;
  632. char *LocalWhiteCard7 = NULL;
  633. char *LocalWhiteCard8 = NULL;
  634. char *LocalWhiteCard9 = NULL;
  635. char isBilling = 0;
  636. char Currency = 0;
  637. float Fee0 = 0;
  638. float Fee1 = 0;
  639. float Fee2 = 0;
  640. float Fee3 = 0;
  641. float Fee4 = 0;
  642. float Fee5 = 0;
  643. float Fee6 = 0;
  644. float Fee7 = 0;
  645. float Fee8 = 0;
  646. float Fee9 = 0;
  647. float Fee10 = 0;
  648. float Fee11 = 0;
  649. float Fee12 = 0;
  650. float Fee13 = 0;
  651. float Fee14 = 0;
  652. float Fee15 = 0;
  653. float Fee16 = 0;
  654. float Fee17 = 0;
  655. float Fee18 = 0;
  656. float Fee19 = 0;
  657. float Fee20 = 0;
  658. float Fee21 = 0;
  659. float Fee22 = 0;
  660. float Fee23 = 0;
  661. if( json_object_object_get_ex(jobj, "MaxChargingEnergy", &val_obj) ) {
  662. MaxChargingEnergy = json_object_get_int(val_obj);
  663. ShmSysConfigAndInfo->SysConfig.MaxChargingEnergy = MaxChargingEnergy;
  664. }
  665. if( json_object_object_get_ex(jobj, "MaxChargingPower", &val_obj) ) {
  666. MaxChargingPower = json_object_get_int(val_obj);
  667. ShmSysConfigAndInfo->SysConfig.MaxChargingPower = MaxChargingPower;
  668. }
  669. if( json_object_object_get_ex(jobj, "MaxChargingCurrent", &val_obj) ) {
  670. MaxChargingCurrent = json_object_get_int(val_obj);
  671. ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent = MaxChargingCurrent;
  672. }
  673. if( json_object_object_get_ex(jobj, "AcMaxChargingCurrent", &val_obj) ) {
  674. AcMaxChargingCurrent = json_object_get_int(val_obj);
  675. ShmSysConfigAndInfo->SysConfig.AcMaxChargingCurrent = AcMaxChargingCurrent;
  676. }
  677. if( json_object_object_get_ex(jobj, "MaxChargingDuration", &val_obj) ) {
  678. MaxChargingDuration = json_object_get_int(val_obj);
  679. ShmSysConfigAndInfo->SysConfig.MaxChargingDuration = MaxChargingDuration;
  680. }
  681. if( json_object_object_get_ex(jobj, "StopChargingByButton", &val_obj) ) {
  682. StopChargingByButton = json_object_get_int(val_obj);
  683. ShmSysConfigAndInfo->SysConfig.StopChargingByButton = StopChargingByButton;
  684. }
  685. if( json_object_object_get_ex(jobj, "LocalWhiteCard0", &val_obj) ) {
  686. LocalWhiteCard0 = (char*)json_object_get_string(val_obj);
  687. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[0],LocalWhiteCard0);
  688. }
  689. if( json_object_object_get_ex(jobj, "LocalWhiteCard1", &val_obj) ) {
  690. LocalWhiteCard1 = (char*)json_object_get_string(val_obj);
  691. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[1],LocalWhiteCard1);
  692. }
  693. if( json_object_object_get_ex(jobj, "LocalWhiteCard2", &val_obj) ) {
  694. LocalWhiteCard2 = (char*)json_object_get_string(val_obj);
  695. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[2],LocalWhiteCard2);
  696. }
  697. if( json_object_object_get_ex(jobj, "LocalWhiteCard3", &val_obj) ) {
  698. LocalWhiteCard3 = (char*)json_object_get_string(val_obj);
  699. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[3],LocalWhiteCard3);
  700. }
  701. if( json_object_object_get_ex(jobj, "LocalWhiteCard4", &val_obj) ) {
  702. LocalWhiteCard4 = (char*)json_object_get_string(val_obj);
  703. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[4],LocalWhiteCard4);
  704. }
  705. if( json_object_object_get_ex(jobj, "LocalWhiteCard5", &val_obj) ) {
  706. LocalWhiteCard5 = (char*)json_object_get_string(val_obj);
  707. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[5],LocalWhiteCard5);
  708. }
  709. if( json_object_object_get_ex(jobj, "LocalWhiteCard6", &val_obj) ) {
  710. LocalWhiteCard6 = (char*)json_object_get_string(val_obj);
  711. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[6],LocalWhiteCard6);
  712. }
  713. if( json_object_object_get_ex(jobj, "LocalWhiteCard7", &val_obj) ) {
  714. LocalWhiteCard7 = (char*)json_object_get_string(val_obj);
  715. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[7],LocalWhiteCard7);
  716. }
  717. if( json_object_object_get_ex(jobj, "LocalWhiteCard8", &val_obj) ) {
  718. LocalWhiteCard8 = (char*)json_object_get_string(val_obj);
  719. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[8],LocalWhiteCard8);
  720. }
  721. if( json_object_object_get_ex(jobj, "LocalWhiteCard9", &val_obj) ) {
  722. LocalWhiteCard9 = (char*)json_object_get_string(val_obj);
  723. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[9],LocalWhiteCard9);
  724. }
  725. if( json_object_object_get_ex(jobj, "isBilling", &val_obj) ) {
  726. isBilling = json_object_get_int(val_obj);
  727. ShmSysConfigAndInfo->SysConfig.BillingData.isBilling = isBilling;
  728. }
  729. if( json_object_object_get_ex(jobj, "Currency", &val_obj) ) {
  730. Currency = json_object_get_int(val_obj);
  731. ShmSysConfigAndInfo->SysConfig.BillingData.Currency = Currency;
  732. }
  733. if( json_object_object_get_ex(jobj, "Fee0", &val_obj) ) {
  734. Fee0 = json_object_get_double(val_obj);
  735. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[0] = rounding(Fee0);
  736. }
  737. if( json_object_object_get_ex(jobj, "Fee1", &val_obj) ) {
  738. Fee1 = json_object_get_double(val_obj);
  739. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[1] = rounding(Fee1);
  740. }
  741. if( json_object_object_get_ex(jobj, "Fee2", &val_obj) ) {
  742. Fee2 = json_object_get_double(val_obj);
  743. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[2] = rounding(Fee2);
  744. }
  745. if( json_object_object_get_ex(jobj, "Fee3", &val_obj) ) {
  746. Fee3 = json_object_get_double(val_obj);
  747. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[3] = rounding(Fee3);
  748. }
  749. if( json_object_object_get_ex(jobj, "Fee4", &val_obj) ) {
  750. Fee4 = json_object_get_double(val_obj);
  751. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[4] = rounding(Fee4);
  752. }
  753. if( json_object_object_get_ex(jobj, "Fee5", &val_obj) ) {
  754. Fee5 = json_object_get_double(val_obj);
  755. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[5] = rounding(Fee5);
  756. }
  757. if( json_object_object_get_ex(jobj, "Fee6", &val_obj) ) {
  758. Fee6 = json_object_get_double(val_obj);
  759. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[6] = rounding(Fee6);
  760. }
  761. if( json_object_object_get_ex(jobj, "Fee7", &val_obj) ) {
  762. Fee7 = json_object_get_double(val_obj);
  763. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[7] = rounding(Fee7);
  764. }
  765. if( json_object_object_get_ex(jobj, "Fee8", &val_obj) ) {
  766. Fee8 = json_object_get_double(val_obj);
  767. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[8] = rounding(Fee8);
  768. }
  769. if( json_object_object_get_ex(jobj, "Fee9", &val_obj) ) {
  770. Fee9 = json_object_get_double(val_obj);
  771. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[9] = rounding(Fee9);
  772. }
  773. if( json_object_object_get_ex(jobj, "Fee10", &val_obj) ) {
  774. Fee10 = json_object_get_double(val_obj);
  775. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[10] = rounding(Fee10);
  776. }
  777. if( json_object_object_get_ex(jobj, "Fee11", &val_obj) ) {
  778. Fee11 = json_object_get_double(val_obj);
  779. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[11] = rounding(Fee11);
  780. }
  781. if( json_object_object_get_ex(jobj, "Fee12", &val_obj) ) {
  782. Fee12 = json_object_get_double(val_obj);
  783. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[12] = rounding(Fee12);
  784. }
  785. if( json_object_object_get_ex(jobj, "Fee13", &val_obj) ) {
  786. Fee13 = json_object_get_double(val_obj);
  787. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[13] = rounding(Fee13);
  788. }
  789. if( json_object_object_get_ex(jobj, "Fee14", &val_obj) ) {
  790. Fee14 = json_object_get_double(val_obj);
  791. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[14] = rounding(Fee14);
  792. }
  793. if( json_object_object_get_ex(jobj, "Fee15", &val_obj) ) {
  794. Fee15 = json_object_get_double(val_obj);
  795. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[15] = rounding(Fee15);
  796. }
  797. if( json_object_object_get_ex(jobj, "Fee16", &val_obj) ) {
  798. Fee16 = json_object_get_double(val_obj);
  799. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[16] = rounding(Fee16);
  800. }
  801. if( json_object_object_get_ex(jobj, "Fee17", &val_obj) ) {
  802. Fee17 = json_object_get_double(val_obj);
  803. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[17] = rounding(Fee17);
  804. }
  805. if( json_object_object_get_ex(jobj, "Fee18", &val_obj) ) {
  806. Fee18 = json_object_get_double(val_obj);
  807. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[18] = rounding(Fee18);
  808. }
  809. if( json_object_object_get_ex(jobj, "Fee19", &val_obj) ) {
  810. Fee19 = json_object_get_double(val_obj);
  811. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[19] = rounding(Fee19);
  812. }
  813. if( json_object_object_get_ex(jobj, "Fee20", &val_obj) ) {
  814. Fee20 = json_object_get_double(val_obj);
  815. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[20] = rounding(Fee20);
  816. }
  817. if( json_object_object_get_ex(jobj, "Fee21", &val_obj) ) {
  818. Fee21 = json_object_get_double(val_obj);
  819. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[21] = rounding(Fee21);
  820. }
  821. if( json_object_object_get_ex(jobj, "Fee22", &val_obj) ) {
  822. Fee22 = json_object_get_double(val_obj);
  823. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[22] = rounding(Fee22);
  824. }
  825. if( json_object_object_get_ex(jobj, "Fee23", &val_obj) ) {
  826. Fee23 = json_object_get_double(val_obj);
  827. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[23] = rounding(Fee23);
  828. }
  829. }
  830. if (strcmp(argv[1], "3") == 0) {
  831. struct json_object *jobj = json_tokener_parse(argv[2]);
  832. json_object *val_obj = NULL;
  833. int Eth0DhcpClient=0;
  834. char *Eth0IpAddress=NULL;
  835. char *Eth0SubmaskAddress=NULL;
  836. char *Eth0GatewayAddress=NULL;
  837. int WifiMode=0;
  838. char *WifiSsid=NULL;
  839. char *WifiPassword=NULL;
  840. int WifiDhcpServer=0;
  841. int WifiDhcpClient=0;
  842. char *WifiIpAddress=NULL;
  843. char *WifiSubmaskAddress=NULL;
  844. char *WifiGatewayAddress=NULL;
  845. char *TelcomApn=NULL;
  846. char *TelcomChapPapId=NULL;
  847. char *TelcomChapPapPwd=NULL;
  848. char *TelcomIpAddress=NULL;
  849. char TelcomEnabled=0;
  850. char Wcnt=0;
  851. char Tcnt=0;
  852. if( json_object_object_get_ex(jobj, "Eth0DhcpClient", &val_obj) ) {
  853. Eth0DhcpClient = json_object_get_int(val_obj);
  854. ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthDhcpClient=Eth0DhcpClient;
  855. }
  856. if( json_object_object_get_ex(jobj, "Eth0IpAddress", &val_obj) ) {
  857. Eth0IpAddress = (char*)json_object_get_string(val_obj);
  858. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthIpAddress,Eth0IpAddress);
  859. }
  860. if( json_object_object_get_ex(jobj, "Eth0SubmaskAddress", &val_obj) ) {
  861. Eth0SubmaskAddress = (char*)json_object_get_string(val_obj);
  862. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthSubmaskAddress,Eth0SubmaskAddress);
  863. }
  864. if( json_object_object_get_ex(jobj, "Eth0GatewayAddress", &val_obj) ) {
  865. Eth0GatewayAddress = (char*)json_object_get_string(val_obj);
  866. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthGatewayAddress,Eth0GatewayAddress);
  867. }
  868. if( json_object_object_get_ex(jobj, "WifiMode", &val_obj) ) {
  869. WifiMode = json_object_get_int(val_obj);
  870. if(WifiMode!=ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMode) Wcnt++;
  871. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMode=WifiMode;
  872. }
  873. if( json_object_object_get_ex(jobj, "WifiSsid", &val_obj) ) {
  874. WifiSsid = (char*)json_object_get_string(val_obj);
  875. if (strcmp(WifiSsid, ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSsid) != 0) Wcnt++;
  876. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSsid,WifiSsid);
  877. }
  878. if( json_object_object_get_ex(jobj, "WifiPassword", &val_obj) ) {
  879. WifiPassword = (char*)json_object_get_string(val_obj);
  880. if (strcmp(WifiSsid, ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSsid) != 0) Wcnt++;
  881. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiPassword,WifiPassword);
  882. }
  883. if( json_object_object_get_ex(jobj, "WifiDhcpServer", &val_obj) ) {
  884. WifiDhcpServer = json_object_get_int(val_obj);
  885. if(WifiDhcpServer!=ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpServer) Wcnt++;
  886. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpServer=WifiDhcpServer;
  887. }
  888. if( json_object_object_get_ex(jobj, "WifiDhcpClient", &val_obj) ) {
  889. WifiDhcpClient = json_object_get_int(val_obj);
  890. if(WifiDhcpClient!=ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpClient) Wcnt++;
  891. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpClient=WifiDhcpClient;
  892. }
  893. if( json_object_object_get_ex(jobj, "WifiIpAddress", &val_obj) ) {
  894. WifiIpAddress = (char*)json_object_get_string(val_obj);
  895. if (strcmp(WifiIpAddress, ShmSysConfigAndInfo->SysConfig.AthInterface.WifiIpAddress) != 0) Wcnt++;
  896. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiIpAddress,WifiIpAddress);
  897. }
  898. if( json_object_object_get_ex(jobj, "WifiSubmaskAddress", &val_obj) ) {
  899. WifiSubmaskAddress = (char*)json_object_get_string(val_obj);
  900. if (strcmp(WifiSubmaskAddress, ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSubmaskAddress) != 0) Wcnt++;
  901. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSubmaskAddress,WifiSubmaskAddress);
  902. }
  903. if( json_object_object_get_ex(jobj, "WifiGatewayAddress", &val_obj) ) {
  904. WifiGatewayAddress = (char*)json_object_get_string(val_obj);
  905. if (strcmp(WifiGatewayAddress, ShmSysConfigAndInfo->SysConfig.AthInterface.WifiGatewayAddress) != 0) Wcnt++;
  906. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiGatewayAddress,WifiGatewayAddress);
  907. }
  908. if( json_object_object_get_ex(jobj, "TelcomApn", &val_obj) ) {
  909. TelcomApn = (char*)json_object_get_string(val_obj);
  910. if (strcmp(TelcomApn, ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomApn) != 0) Tcnt++;
  911. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomApn,TelcomApn);
  912. }
  913. if( json_object_object_get_ex(jobj, "TelcomChapPapId", &val_obj) ) {
  914. TelcomChapPapId = (char*)json_object_get_string(val_obj);
  915. if (strcmp(TelcomChapPapId, ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapId) != 0) Tcnt++;
  916. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapId,TelcomChapPapId);
  917. }
  918. if( json_object_object_get_ex(jobj, "TelcomChapPapPwd", &val_obj) ) {
  919. TelcomChapPapPwd = (char*)json_object_get_string(val_obj);
  920. if (strcmp(TelcomChapPapPwd, ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapPwd) != 0) Tcnt++;
  921. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapPwd,TelcomChapPapPwd);
  922. }
  923. if( json_object_object_get_ex(jobj, "TelcomIpAddress", &val_obj) ) {
  924. TelcomIpAddress = (char*)json_object_get_string(val_obj);
  925. if (strcmp(TelcomIpAddress, ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomIpAddress) != 0) Tcnt++;
  926. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomIpAddress,TelcomIpAddress);
  927. }
  928. if( json_object_object_get_ex(jobj, "TelcomEnabled", &val_obj) ) {
  929. TelcomEnabled = json_object_get_int(val_obj);
  930. if(TelcomEnabled!=ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomEnabled) Tcnt++;
  931. ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomEnabled=TelcomEnabled;
  932. }
  933. if(Wcnt>0){
  934. system ("pkill Module_Wifi");
  935. }
  936. if(Tcnt>0){
  937. system ("pkill Module_4g");
  938. }
  939. }
  940. if (strcmp(argv[1], "4") == 0) {
  941. struct json_object *jobj = json_tokener_parse(argv[2]);
  942. json_object *val_obj = NULL;
  943. int BackendConnTimeout=0;
  944. int OfflinePolicy=0;
  945. int OfflineMaxChargeEnergy=0;
  946. int OfflineMaxChargeDuration=0;
  947. char *OcppServerURL=NULL;
  948. char *ChargeBoxId=NULL;
  949. char *chargePointVendor=NULL;
  950. int OcppSecurityProfile=0;
  951. char *OcppSecurityPassword=NULL;
  952. int isEnableLocalPowerSharging=0;
  953. if( json_object_object_get_ex(jobj, "BackendConnTimeout", &val_obj) ) {
  954. BackendConnTimeout = json_object_get_int(val_obj);
  955. ShmSysConfigAndInfo->SysConfig.BackendConnTimeout = BackendConnTimeout;
  956. }
  957. if( json_object_object_get_ex(jobj, "OfflinePolicy", &val_obj) ) {
  958. OfflinePolicy = json_object_get_int(val_obj);
  959. ShmSysConfigAndInfo->SysConfig.OfflinePolicy = OfflinePolicy;
  960. }
  961. if( json_object_object_get_ex(jobj, "OfflineMaxChargeEnergy", &val_obj) ) {
  962. OfflineMaxChargeEnergy = json_object_get_int(val_obj);
  963. ShmSysConfigAndInfo->SysConfig.OfflineMaxChargeEnergy = OfflineMaxChargeEnergy;
  964. }
  965. if( json_object_object_get_ex(jobj, "OfflineMaxChargeDuration", &val_obj) ) {
  966. OfflineMaxChargeDuration = json_object_get_int(val_obj);
  967. ShmSysConfigAndInfo->SysConfig.OfflineMaxChargeDuration = OfflineMaxChargeDuration;
  968. }
  969. if( json_object_object_get_ex(jobj, "OcppServerURL", &val_obj) ) {
  970. OcppServerURL = (char*)json_object_get_string(val_obj);
  971. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.OcppServerURL,OcppServerURL);
  972. }
  973. if( json_object_object_get_ex(jobj, "ChargeBoxId", &val_obj) ) {
  974. ChargeBoxId = (char*)json_object_get_string(val_obj);
  975. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.ChargeBoxId,ChargeBoxId);
  976. }
  977. if( json_object_object_get_ex(jobj, "chargePointVendor", &val_obj) ) {
  978. chargePointVendor = (char*)json_object_get_string(val_obj);
  979. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.chargePointVendor,chargePointVendor);
  980. }
  981. if( json_object_object_get_ex(jobj, "OcppSecurityProfile", &val_obj) ) {
  982. OcppSecurityProfile = json_object_get_int(val_obj);
  983. ShmSysConfigAndInfo->SysConfig.OcppSecurityProfile = OcppSecurityProfile;
  984. }
  985. if( json_object_object_get_ex(jobj, "OcppSecurityPassword", &val_obj) ) {
  986. OcppSecurityPassword = (char*)json_object_get_string(val_obj);
  987. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.OcppSecurityPassword,OcppSecurityPassword);
  988. }
  989. if( json_object_object_get_ex(jobj, "isEnableLocalPowerSharging", &val_obj) ) {
  990. isEnableLocalPowerSharging = json_object_get_int(val_obj);
  991. ShmSysConfigAndInfo->SysConfig.isEnableLocalPowerSharging = isEnableLocalPowerSharging;
  992. }
  993. }
  994. struct SysConfigData SysConfig;
  995. memcpy(&SysConfig, &ShmSysConfigAndInfo->SysConfig, sizeof(struct SysConfigData));
  996. int result = StoreUsrConfigData(&SysConfig);
  997. if(result != 1){
  998. #ifdef SystemLogMessage
  999. StoreLogMsg("[WebService]StoreUsrConfigData: normal NG");
  1000. #endif
  1001. }
  1002. else{
  1003. #ifdef SystemLogMessage
  1004. StoreLogMsg("[WebService]StoreUsrConfigData: normal OK");
  1005. #endif
  1006. }
  1007. #ifdef SystemLogMessage
  1008. DEBUG_INFO("WebServiceConfig update OK");
  1009. #endif
  1010. }
  1011. if (argc == 2)
  1012. { //init share memory for test
  1013. if (strcmp(argv[1], "aaa") == 0)
  1014. {
  1015. //struct SysConfigData SysConfig;
  1016. //system
  1017. ShmSysConfigAndInfo->SysInfo.DispenserInfo.DispenserQuantity=1;
  1018. ShmSysConfigAndInfo->SysInfo.DispenserInfo.TotalConnectorQuantity=1;
  1019. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.ModelName, "DO0E362001D1P0D");
  1020. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.SerialNumber, "SerialNumber");
  1021. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.SystemId, "1234567890");
  1022. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.SystemDateTime, "2019-12-31 23:59:59");
  1023. ShmSysConfigAndInfo->SysConfig.AcPhaseCount=1;
  1024. ShmSysConfigAndInfo->SysConfig.PhaseLossPolicy=0;
  1025. ShmSysConfigAndInfo->SysInfo.FactoryConfiguration=0;
  1026. ShmSysConfigAndInfo->SysConfig.AuthorisationMode=0;
  1027. ShmSysConfigAndInfo->SysConfig.DefaultLanguage=0;
  1028. ShmSysConfigAndInfo->SysInfo.InputVoltageR=0;
  1029. ShmSysConfigAndInfo->SysInfo.InputVoltageS=0;
  1030. ShmSysConfigAndInfo->SysInfo.InputVoltageT=0;
  1031. ShmSysConfigAndInfo->SysInfo.SystemFanRotaSpeed=0;
  1032. ShmSysConfigAndInfo->SysInfo.PsuFanRotaSpeed=0;
  1033. ShmSysConfigAndInfo->SysConfig.RfidCardNumEndian=0;
  1034. ShmSysConfigAndInfo->SysConfig.RatingCurrent=100;
  1035. ShmSysConfigAndInfo->SysConfig.PsuAcInputType=0;
  1036. ShmSysConfigAndInfo->SysInfo.AuxPower5V=0;
  1037. ShmSysConfigAndInfo->SysInfo.AuxPower12V=0;
  1038. ShmSysConfigAndInfo->SysInfo.AuxPower24V=0;
  1039. ShmSysConfigAndInfo->SysInfo.AuxPower48V=0;
  1040. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.CsuHwRev, "");
  1041. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.CsuBootLoadFwRev, "");
  1042. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.CsuKernelFwRev, "");
  1043. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev, "");
  1044. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.CsuPrimFwRev, "");
  1045. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.LcmHwRev, "");
  1046. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.LcmFwRev, "");
  1047. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.PsuHwRev, "");
  1048. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.PsuPrimFwRev, "");
  1049. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.PsuSecFwRev, "");
  1050. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.AuxPwrHwRev, "");
  1051. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.AuxPwrFwRev, "");
  1052. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.FanModuleHwRev, "");
  1053. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.FanModuleFwRev, "");
  1054. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.RelayModuleHwRev, "");
  1055. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.RelayModuleFwRev, "");
  1056. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.TelcomModemFwRev, "");
  1057. ShmSysConfigAndInfo->SysInfo.SystemAmbientTemp=0;
  1058. ShmSysConfigAndInfo->SysInfo.SystemCriticalTemp=0;
  1059. ShmSysConfigAndInfo->SysInfo.CcsConnectorTemp=0;
  1060. ShmSysConfigAndInfo->SysInfo.PsuAmbientTemp=0;
  1061. ShmSysConfigAndInfo->SysConfig.AcPlugInTimes=0;
  1062. ShmSysConfigAndInfo->SysConfig.GbPlugInTimes=0;
  1063. ShmSysConfigAndInfo->SysConfig.Ccs1PlugInTime=0;
  1064. ShmSysConfigAndInfo->SysConfig.Ccs2PlugInTimes=0;
  1065. ShmSysConfigAndInfo->SysConfig.ChademoPlugInTimes=0;
  1066. // strcpy((char *)&ShmPsuData->PsuVersion[0].FwPrimaryVersion, "DC 9.01");
  1067. // strcpy((char *)&ShmPsuData->PsuVersion[1].FwPrimaryVersion, "DC 9.02");
  1068. // strcpy((char *)&ShmPsuData->PsuVersion[0].FwSecondVersion, "PFC 9.02");
  1069. // strcpy((char *)&ShmPsuData->PsuVersion[1].FwSecondVersion, "PFC 9.03");
  1070. //charging
  1071. ShmSysConfigAndInfo->SysConfig.MaxChargingEnergy=0;
  1072. ShmSysConfigAndInfo->SysConfig.MaxChargingPower=0;
  1073. ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent= 0;
  1074. ShmSysConfigAndInfo->SysConfig.AcMaxChargingCurrent= 0;
  1075. ShmSysConfigAndInfo->SysConfig.MaxChargingDuration=0;
  1076. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[0], "111");
  1077. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[1], "222");
  1078. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[2], "333");
  1079. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[3], "444");
  1080. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[4], "555");
  1081. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[5], "666");
  1082. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[6], "777");
  1083. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[7], "888");
  1084. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[8], "999");
  1085. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[9], "aaa");
  1086. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.UserId, "UserId");
  1087. ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].PresentChargingVoltage=0;
  1088. ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].PresentChargingCurrent=0;
  1089. ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].PresentChargingPower=0;
  1090. ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].PresentChargedEnergy=0;
  1091. ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].PresentChargedDuration=0;
  1092. ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].RemainChargingDuration=0;
  1093. ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].EvBatteryMaxVoltage=0;
  1094. ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].EvBatterytargetVoltage=0;
  1095. ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].EvBatterySoc=0;
  1096. ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].SystemStatus=1;
  1097. ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].EvBatterytargetCurrent=1;
  1098. //network
  1099. ShmSysConfigAndInfo->SysInfo.InternetConn=0;
  1100. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.FtpServer,"");
  1101. ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthDhcpClient=1;
  1102. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthMacAddress,"");
  1103. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthIpAddress,"192.168.1.10");
  1104. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthSubmaskAddress,"255.255.255.0");
  1105. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthGatewayAddress,"192.168.1.1");
  1106. ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthDhcpClient=1;
  1107. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthMacAddress,"");
  1108. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthIpAddress,"192.168.0.10");
  1109. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthSubmaskAddress,"255.255.255.0");
  1110. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthGatewayAddress,"192.168.0.1");
  1111. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMode=1;
  1112. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSsid,"");
  1113. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiPassword,"");
  1114. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiRssi=0;
  1115. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpServer=0;
  1116. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpClient=0;
  1117. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMacAddress,"");
  1118. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiIpAddress,"");
  1119. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSubmaskAddress,"");
  1120. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiGatewayAddress,"");
  1121. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiNetworkConn=1;
  1122. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomApn,"");
  1123. ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomRssi=0;
  1124. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapId,"");
  1125. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapPwd,"");
  1126. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomModemImei,"");
  1127. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomSimImsi,"");
  1128. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomSimIccid,"");
  1129. ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomSimStatus=0;
  1130. ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomModemMode=0;
  1131. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomIpAddress,"");
  1132. //backend
  1133. ShmSysConfigAndInfo->SysConfig.BackendConnTimeout=300;
  1134. ShmSysConfigAndInfo->SysConfig.OfflinePolicy=0;
  1135. ShmSysConfigAndInfo->SysConfig.OfflineMaxChargeEnergy=0;
  1136. ShmSysConfigAndInfo->SysConfig.OfflineMaxChargeDuration=0;
  1137. ShmSysConfigAndInfo->SysInfo.OcppConnStatus=0;
  1138. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.OcppServerURL,"");
  1139. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.ChargeBoxId,"");
  1140. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.chargePointVendor,"Phihong");
  1141. ShmSysConfigAndInfo->SysInfo.FirmwareUpdate=0;
  1142. struct SysConfigData SysConfig;
  1143. memcpy(&SysConfig, &ShmSysConfigAndInfo->SysConfig, sizeof(struct SysConfigData));
  1144. StoreUsrConfigData(&SysConfig);
  1145. // struct PsuModuleVer PsuData;
  1146. // memcpy(&PsuData, &ShmPsuData->PsuVersion, sizeof(struct PsuModuleVer));
  1147. // StoreUsrConfigData(&PsuData);
  1148. #ifdef SystemLogMessage
  1149. DEBUG_INFO("WebService initial OK");
  1150. #endif
  1151. }
  1152. if (strcmp(argv[1], "button") == 0)
  1153. {
  1154. unsigned char Button1;
  1155. unsigned char Button2;
  1156. unsigned char EmergencyButton;
  1157. Button1=ShmPrimaryMcuData->InputDet.bits.Button1;
  1158. Button2=ShmPrimaryMcuData->InputDet.bits.Button2;
  1159. EmergencyButton=ShmPrimaryMcuData->InputDet.bits.EmergencyButton;
  1160. struct json_object *jobj;
  1161. struct json_object *sButton1;
  1162. struct json_object *sButton2;
  1163. struct json_object *sEmergencyButton;
  1164. sButton1 = json_object_new_int(Button1);
  1165. sButton2 = json_object_new_int(Button2);
  1166. sEmergencyButton = json_object_new_int(EmergencyButton);
  1167. jobj=json_object_new_object();
  1168. json_object_object_add(jobj,"Button1",sButton1);
  1169. json_object_object_add(jobj,"Button2",sButton2);
  1170. json_object_object_add(jobj,"EmergencyButton",sEmergencyButton);
  1171. printf("%s\n", json_object_to_json_string(jobj));
  1172. }
  1173. if (strcmp(argv[1], "restart") == 0)
  1174. {
  1175. system("exec /usr/bin/run_evse_restart.sh");
  1176. }
  1177. }
  1178. if(strcmp(argv[1], "log") == 0)
  1179. {
  1180. char cmd[512];
  1181. if((argc == 3) && isdigit(*argv[2]))
  1182. {
  1183. sprintf(cmd, "exec /root/logPackTools 'log' %s", argv[2]);
  1184. }
  1185. else
  1186. {
  1187. sprintf(cmd, "exec /root/logPackTools 'log'");
  1188. }
  1189. if(system(cmd) == 0)
  1190. {
  1191. DEBUG_INFO("Log pack success.\n");
  1192. }
  1193. else
  1194. {
  1195. DEBUG_INFO("Log pack fail.\n");
  1196. }
  1197. }
  1198. //upgrade firmware
  1199. if ((argc == 3) & (strcmp(argv[1], "upgrade") == 0))
  1200. {
  1201. struct json_object *jobj;
  1202. struct json_object *Result;
  1203. struct json_object *Message;
  1204. //char cmd[100];
  1205. jobj=json_object_new_object();
  1206. //system
  1207. //if((char)ShmSysConfigAndInfo->SysInfo.FirmwareUpdate == '0'){
  1208. ShmSysConfigAndInfo->SysInfo.FirmwareUpdate=1;
  1209. Result = json_object_new_string("success");
  1210. Message = json_object_new_string("File is uploaded, please wait a moment to upgrade");
  1211. //}
  1212. /*else{
  1213. sprintf(cmd,"rm /mnt/%s",argv[2]);
  1214. system(cmd);
  1215. Result = json_object_new_string("error");
  1216. Message = json_object_new_string("machine is busy");
  1217. }*/
  1218. json_object_object_add(jobj,"Result",Result);
  1219. json_object_object_add(jobj,"Message",Message);
  1220. printf("%s\n", json_object_to_json_string(jobj));
  1221. }
  1222. //web page query all
  1223. if ((argc == 2) & (strcmp(argv[1], "query") == 0)) {
  1224. char *IsAcDc[2];
  1225. char *IsDO[3];
  1226. char *Connector1[2];
  1227. char *Connector2[2];
  1228. char *Connector3[2];
  1229. char *Network[2];
  1230. unsigned char connector1FwVer[32];
  1231. unsigned char connector2FwVer[32];
  1232. short gunQty;
  1233. char *RatedPower1[2];
  1234. char *RatedPower2[2];
  1235. char *RatedPower3[2];
  1236. short RatedPower;
  1237. short PsuQuantity = 0;
  1238. substr((char *)IsAcDc,(const char *)ShmSysConfigAndInfo->SysConfig.ModelName,0,1);
  1239. substr((char *)IsDO,(const char *)ShmSysConfigAndInfo->SysConfig.ModelName,0,2);
  1240. substr((char *)Connector1,(const char *)ShmSysConfigAndInfo->SysConfig.ModelName,7,1);
  1241. substr((char *)Connector2,(const char *)ShmSysConfigAndInfo->SysConfig.ModelName,9,1);
  1242. substr((char *)Connector3,(const char *)ShmSysConfigAndInfo->SysConfig.ModelName,8,1);
  1243. substr((char *)Network,(const char *)ShmSysConfigAndInfo->SysConfig.ModelName,10,1);
  1244. int connectorType1,connectorType2,connectorType3;
  1245. connectorType1=ConnectorType((char *)Connector1);
  1246. connectorType2=ConnectorType((char *)Connector2);
  1247. connectorType3=ConnectorType((char *)Connector3);
  1248. if(connectorType1 == connectorType2){
  1249. gunQty = 1;
  1250. }
  1251. else{
  1252. gunQty = 0;
  1253. }
  1254. if(connectorType1 != 0){
  1255. if(connectorType1 == 1){
  1256. // strcpy((char *)&connector1FwVer,ShmCcsData->V2GMessage_DIN70121->version);
  1257. // memcpy(connector1FwVer,ShmCcsData->V2GMessage_DIN70121->version,ARRAY_SIZE(ShmCcsData->V2GMessage_DIN70121->version));
  1258. }
  1259. else if(connectorType1 == 2){
  1260. // strcpy((char *)&connector1FwVer,ShmGBTData->evse[0].version);
  1261. // memcpy(connector1FwVer,ShmGBTData->evse[0].version,ARRAY_SIZE(ShmGBTData->evse[0].version));
  1262. }
  1263. else if(connectorType1 == 3){
  1264. // strcpy((char *)&connector1FwVer,ShmCHAdeMOData->evse[0].version);
  1265. // memcpy(connector1FwVer,ShmCHAdeMOData->evse[0].version,ARRAY_SIZE(ShmCHAdeMOData->evse[0].version));
  1266. }
  1267. }
  1268. if(connectorType2 != 0){
  1269. if(connectorType2 == 1){
  1270. // strcpy((char *)&connector2FwVer,ShmCcsData->V2GMessage_DIN70121->version);
  1271. // memcpy(connector2FwVer,ShmCcsData->V2GMessage_DIN70121->version,ARRAY_SIZE(ShmCcsData->V2GMessage_DIN70121->version));
  1272. }
  1273. else if(connectorType2 == 2){
  1274. // strcpy((char *)&connector2FwVer,ShmGBTData->evse[gunQty].version);
  1275. // memcpy(connector2FwVer,ShmGBTData->evse[gunQty].version,ARRAY_SIZE(ShmGBTData->evse[gunQty].version));
  1276. }
  1277. else if(connectorType2 == 3){
  1278. // strcpy((char *)&connector2FwVer,ShmCHAdeMOData->evse[gunQty].version);
  1279. // memcpy(connector2FwVer,ShmCHAdeMOData->evse[gunQty].version,ARRAY_SIZE(ShmCHAdeMOData->evse[gunQty].version));
  1280. }
  1281. }
  1282. substr((char *)RatedPower1,(const char *)ShmSysConfigAndInfo->SysConfig.ModelName,4,1);
  1283. substr((char *)RatedPower2,(const char *)ShmSysConfigAndInfo->SysConfig.ModelName,5,1);
  1284. substr((char *)RatedPower3,(const char *)ShmSysConfigAndInfo->SysConfig.ModelName,6,1);
  1285. int p1=atoi(RatedPower1);
  1286. int p2=atoi(RatedPower2);
  1287. int p3=atoi(RatedPower3);
  1288. if(strcmp(IsAcDc, "D") == 0){
  1289. RatedPower=(p1*10+p2)*pow(10,p3-1);
  1290. if(RatedPower>=30){
  1291. PsuQuantity = RatedPower/30;
  1292. }
  1293. }
  1294. if(strcmp(IsDO, "DO") == 0 || strcmp(IsDO, "DK") == 0){
  1295. }
  1296. struct json_object *jobj1;
  1297. struct json_object *jobj2;
  1298. struct json_object *jobj3;
  1299. struct json_object *jobj4;
  1300. //system
  1301. struct json_object *ModelName;
  1302. struct json_object *AcModelName;
  1303. struct json_object *SerialNumber;
  1304. struct json_object *SystemId;
  1305. struct json_object *AcPhaseCount;
  1306. struct json_object *PhaseLossPolicy;
  1307. struct json_object *FactoryConfiguration;
  1308. struct json_object *AuthorisationMode;
  1309. struct json_object *DefaultLanguage;
  1310. struct json_object *InputVoltageR;
  1311. struct json_object *InputVoltageS;
  1312. struct json_object *InputVoltageT;
  1313. struct json_object *SystemFanRotaSpeed;
  1314. struct json_object *PsuFanRotaSpeed;
  1315. struct json_object *RfidCardNumEndian;
  1316. struct json_object *PsuAcInputType;
  1317. struct json_object *RatingCurrent;
  1318. struct json_object *AcRatingCurrent;
  1319. struct json_object *isAPP;
  1320. struct json_object *isQRCode;
  1321. struct json_object *isRFID;
  1322. struct json_object *QRCodeMadeMode;
  1323. struct json_object *QRCodeContent;
  1324. struct json_object *Intensity;
  1325. struct json_object *AuxPower5V;
  1326. struct json_object *AuxPower12V;
  1327. struct json_object *AuxPower24V;
  1328. struct json_object *AuxPower48V;
  1329. struct json_object *CsuHwRev;
  1330. struct json_object *CsuBootLoadFwRev;
  1331. struct json_object *CsuKernelFwRev;
  1332. struct json_object *CsuRootFsFwRev;
  1333. struct json_object *CsuPrimFwRev;
  1334. struct json_object *LcmHwRev;
  1335. struct json_object *LcmFwRev;
  1336. struct json_object *PsuHwRev;
  1337. struct json_object *PsuPrimFwRev;
  1338. struct json_object *PsuSecFwRev;
  1339. struct json_object *AuxPwrHwRev;
  1340. struct json_object *AuxPwrFwRev;
  1341. struct json_object *FanModuleHwRev;
  1342. struct json_object *FanModuleFwRev;
  1343. struct json_object *RelayModuleHwRev;
  1344. struct json_object *RelayModuleFwRev;
  1345. struct json_object *TelcomModemFwRev;
  1346. struct json_object *Connector1FwRev;
  1347. struct json_object *Connector2FwRev;
  1348. struct json_object *LedModuleFwRev;
  1349. struct json_object *SystemAmbientTemp;
  1350. struct json_object *SystemCriticalTemp;
  1351. struct json_object *CcsConnectorTemp;
  1352. struct json_object *PsuAmbientTemp;
  1353. struct json_object *AcPlugInTimes;
  1354. struct json_object *GbPlugInTimes;
  1355. struct json_object *Ccs1PlugInTime;
  1356. struct json_object *Ccs2PlugInTimes;
  1357. struct json_object *ChademoPlugInTimes;
  1358. struct json_object *FirmwareUpdate;
  1359. struct json_object *FwPrimaryVersion[PsuQuantity];
  1360. struct json_object *FwPrimaryVersionArr= json_object_new_array();
  1361. struct json_object *FwSecondVersion[PsuQuantity];
  1362. struct json_object *FwSecondVersionArr= json_object_new_array();
  1363. /* for DO & DD*/
  1364. struct json_object *DispenserQuantity;
  1365. struct json_object *TotalConnectorQuantity;
  1366. struct json_object *DDModelName[4];
  1367. struct json_object *DDModelNameArr= json_object_new_array();
  1368. struct json_object *DDSerialNumber[4];
  1369. struct json_object *DDSerialNumberArr= json_object_new_array();
  1370. struct json_object *DDSystemId[4];
  1371. struct json_object *DDSystemIdArr= json_object_new_array();
  1372. struct json_object *DDAuthorisationMode[4];
  1373. struct json_object *DDAuthorisationModeArr= json_object_new_array();
  1374. struct json_object *DDRfidCardNumEndian[4];
  1375. struct json_object *DDRfidCardNumEndianArr= json_object_new_array();
  1376. struct json_object *DDisAPP[4];
  1377. struct json_object *DDisAPPArr= json_object_new_array();
  1378. struct json_object *DDisQRCode[4];
  1379. struct json_object *DDisQRCodeArr= json_object_new_array();
  1380. struct json_object *DDisRFID[4];
  1381. struct json_object *DDisRFIDArr= json_object_new_array();
  1382. struct json_object *DDQRCodeMadeMode[4];
  1383. struct json_object *DDQRCodeMadeModeArr= json_object_new_array();
  1384. struct json_object *DDQRCodeContent[4];
  1385. struct json_object *DDQRCodeContentArr= json_object_new_array();
  1386. struct json_object *DDFactoryConfiguration[4];
  1387. struct json_object *DDFactoryConfigurationArr= json_object_new_array();
  1388. struct json_object *DDCsuBootLoadFwRev[4];
  1389. struct json_object *DDCsuBootLoadFwRevArr= json_object_new_array();
  1390. struct json_object *DDCsuKernelFwRev[4];
  1391. struct json_object *DDCsuKernelFwRevArr= json_object_new_array();
  1392. struct json_object *DDCsuRootFsFwRev[4];
  1393. struct json_object *DDCsuRootFsFwRevArr= json_object_new_array();
  1394. struct json_object *DDCsuPrimFwRev[4];
  1395. struct json_object *DDCsuPrimFwRevArr= json_object_new_array();
  1396. struct json_object *DDLcmFwRev[4];
  1397. struct json_object *DDLcmFwRevArr= json_object_new_array();
  1398. struct json_object *DDPsuPrimFwRev[4];
  1399. struct json_object *DDPsuPrimFwRevArr= json_object_new_array();
  1400. struct json_object *DDPsuSecFwRev[4];
  1401. struct json_object *DDPsuSecFwRevArr= json_object_new_array();
  1402. struct json_object *DDFanModuleFwRev[4];
  1403. struct json_object *DDFanModuleFwRevArr= json_object_new_array();
  1404. struct json_object *DDRelayModuleFwRev[4];
  1405. struct json_object *DDRelayModuleFwRevArr= json_object_new_array();
  1406. struct json_object *DDTelcomModemFwRev[4];
  1407. struct json_object *DDTelcomModemFwRevArr= json_object_new_array();
  1408. struct json_object *DDLedModuleFwRev[4];
  1409. struct json_object *DDLedModuleFwRevArr= json_object_new_array();
  1410. struct json_object *DDConnector1FwRev[4];
  1411. struct json_object *DDConnector1FwRevArr= json_object_new_array();
  1412. struct json_object *DDConnector2FwRev[4];
  1413. struct json_object *DDConnector2FwRevArr= json_object_new_array();
  1414. struct json_object *DDIntensity[4];
  1415. struct json_object *DDIntensityArr= json_object_new_array();
  1416. struct json_object *Relay2ModuleFwRev;
  1417. //charging
  1418. struct json_object *MaxChargingEnergy;
  1419. struct json_object *MaxChargingPower;
  1420. struct json_object *MaxChargingCurrent;
  1421. struct json_object *AcMaxChargingCurrent;
  1422. struct json_object *MaxChargingDuration;
  1423. struct json_object *StopChargingByButton;
  1424. struct json_object *LocalWhiteCard[10];
  1425. struct json_object *LocalWhiteCardArr= json_object_new_array();
  1426. struct json_object *isBilling;
  1427. struct json_object *Currency;
  1428. struct json_object *Fee[24];
  1429. struct json_object *FeeArr= json_object_new_array();
  1430. struct json_object *ChargingInfo1;
  1431. struct json_object *ChargingInfo2;
  1432. struct json_object *ChargingInfo3;
  1433. struct json_object *StartUserId[3];
  1434. struct json_object *StartDateTime[3];
  1435. struct json_object *StopDateTime[3];
  1436. struct json_object *StartMethod[3];
  1437. struct json_object *ConnectorTemp[3];
  1438. struct json_object *ChillerTemp[3];
  1439. struct json_object *PresentChargingVoltage[3];
  1440. struct json_object *PresentChargingCurrent[3];
  1441. struct json_object *PresentChargingPower[3];
  1442. struct json_object *PresentChargedEnergy[3];
  1443. struct json_object *PresentChargedDuration[3];
  1444. struct json_object *RemainChargingDuration[3];
  1445. struct json_object *EvBatteryMaxVoltage[3];
  1446. struct json_object *EvBatterytargetVoltage[3];
  1447. struct json_object *EvBatterySoc[3];
  1448. struct json_object *SystemStatus[3];
  1449. struct json_object *EvBatterytargetCurrent[3];
  1450. struct json_object *PowerConsumption[3];
  1451. struct json_object *isCalibratedVaGain[3];
  1452. struct json_object *isCalibratedVbGain[3];
  1453. struct json_object *isCalibratedVcGain[3];
  1454. struct json_object *isCalibratedVaOffset[3];
  1455. struct json_object *isCalibratedVbOffset[3];
  1456. struct json_object *isCalibratedVcOffset[3];
  1457. struct json_object *isCalibratedCaGain[3];
  1458. struct json_object *isCalibratedCbGain[3];
  1459. struct json_object *isCalibratedCcGain[3];
  1460. struct json_object *isCalibratedCaOffset[3];
  1461. struct json_object *isCalibratedCbOffset[3];
  1462. struct json_object *isCalibratedCcOffset[3];
  1463. struct json_object *isCalibratedPa[3];
  1464. struct json_object *isCalibratedPb[3];
  1465. struct json_object *isCalibratedPc[3];
  1466. /* for DO & DD*/
  1467. struct json_object *DDChargingInfo1;
  1468. struct json_object *DDChargingInfo2;
  1469. struct json_object *DDChargingInfo3;
  1470. struct json_object *DDChargingInfo4;
  1471. struct json_object *DDStartUserId[4];
  1472. struct json_object *DDStartDateTime[4];
  1473. struct json_object *DDStopDateTime[4];
  1474. struct json_object *DDStartMethod[4];
  1475. struct json_object *DDConnectorTemp[4];
  1476. struct json_object *DDChillerTemp[4];
  1477. struct json_object *DDPresentChargingVoltage[4];
  1478. struct json_object *DDPresentChargingCurrent[4];
  1479. struct json_object *DDPresentChargingPower[4];
  1480. struct json_object *DDPresentChargedEnergy[4];
  1481. struct json_object *DDPresentChargedDuration[4];
  1482. struct json_object *DDRemainChargingDuration[4];
  1483. struct json_object *DDEvBatteryMaxVoltage[4];
  1484. struct json_object *DDEvBatterytargetVoltage[4];
  1485. struct json_object *DDEvBatterySoc[4];
  1486. struct json_object *DDSystemStatus[4];
  1487. struct json_object *DDEvBatterytargetCurrent[4];
  1488. struct json_object *DDPowerConsumption[4];
  1489. //network
  1490. struct json_object *InternetConn;
  1491. struct json_object *FtpServer;
  1492. struct json_object *Eth0DhcpClient;
  1493. struct json_object *Eth0MacAddress;
  1494. struct json_object *Eth0IpAddress;
  1495. struct json_object *Eth0SubmaskAddress;
  1496. struct json_object *Eth0GatewayAddress;
  1497. struct json_object *Eth1DhcpClient;
  1498. struct json_object *Eth1MacAddress;
  1499. struct json_object *Eth1IpAddress;
  1500. struct json_object *Eth1SubmaskAddress;
  1501. struct json_object *Eth1GatewayAddress;
  1502. struct json_object *WifiMode;
  1503. struct json_object *WifiSsid;
  1504. struct json_object *WifiPassword;
  1505. struct json_object *WifiRssi;
  1506. struct json_object *WifiDhcpServer;
  1507. struct json_object *WifiDhcpClient;
  1508. struct json_object *WifiMacAddress;
  1509. struct json_object *WifiIpAddress;
  1510. struct json_object *WifiSubmaskAddress;
  1511. struct json_object *WifiGatewayAddress;
  1512. struct json_object *WifiNetworkConn;
  1513. struct json_object *TelcomApn;
  1514. struct json_object *TelcomRssi;
  1515. struct json_object *TelcomChapPapId;
  1516. struct json_object *TelcomChapPapPwd;
  1517. struct json_object *TelcomModemImei;
  1518. struct json_object *TelcomSimImsi;
  1519. struct json_object *TelcomSimIccid;
  1520. struct json_object *TelcomSimStatus;
  1521. struct json_object *TelcomModemMode;
  1522. struct json_object *TelcomIpAddress;
  1523. struct json_object *TelcomNetworkConn;
  1524. struct json_object *TelcomEnabled;
  1525. //backend
  1526. struct json_object *BackendConnTimeout;
  1527. struct json_object *OfflinePolicy;
  1528. struct json_object *OfflineMaxChargeEnergy;
  1529. struct json_object *OfflineMaxChargeDuration;
  1530. struct json_object *OcppConnStatus;
  1531. struct json_object *OcppServerURL;
  1532. struct json_object *ChargeBoxId;
  1533. struct json_object *chargePointVendor;
  1534. struct json_object *OcppSecurityProfile;
  1535. struct json_object *OcppSecurityPassword;
  1536. struct json_object *isEnableLocalPowerSharging;
  1537. jobj1=json_object_new_object();
  1538. jobj2=json_object_new_object();
  1539. jobj3=json_object_new_object();
  1540. jobj4=json_object_new_object();
  1541. //system
  1542. ModelName = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.ModelName);
  1543. AcModelName = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.AcModelName);
  1544. SerialNumber = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.SerialNumber);
  1545. SystemId = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.SystemId);
  1546. AcPhaseCount = json_object_new_int(ShmSysConfigAndInfo->SysConfig.AcPhaseCount);
  1547. PhaseLossPolicy = json_object_new_int(ShmSysConfigAndInfo->SysConfig.PhaseLossPolicy);
  1548. FactoryConfiguration = json_object_new_int(ShmSysConfigAndInfo->SysInfo.FactoryConfiguration);
  1549. AuthorisationMode = json_object_new_int(ShmSysConfigAndInfo->SysConfig.AuthorisationMode);
  1550. DefaultLanguage = json_object_new_int(ShmSysConfigAndInfo->SysConfig.DefaultLanguage);
  1551. InputVoltageR = json_object_new_double(ShmSysConfigAndInfo->SysInfo.InputVoltageR);
  1552. InputVoltageS = json_object_new_double(ShmSysConfigAndInfo->SysInfo.InputVoltageS);
  1553. InputVoltageT = json_object_new_double(ShmSysConfigAndInfo->SysInfo.InputVoltageT);
  1554. SystemFanRotaSpeed = json_object_new_int(ShmSysConfigAndInfo->SysInfo.SystemFanRotaSpeed);
  1555. PsuFanRotaSpeed = json_object_new_int(ShmSysConfigAndInfo->SysInfo.PsuFanRotaSpeed);
  1556. RfidCardNumEndian = json_object_new_int(ShmSysConfigAndInfo->SysConfig.RfidCardNumEndian);
  1557. PsuAcInputType = json_object_new_int(ShmSysConfigAndInfo->SysConfig.PsuAcInputType);
  1558. RatingCurrent = json_object_new_int(ShmSysConfigAndInfo->SysConfig.RatingCurrent);
  1559. AcRatingCurrent = json_object_new_int(ShmSysConfigAndInfo->SysConfig.AcRatingCurrent);
  1560. isAPP = json_object_new_int(ShmSysConfigAndInfo->SysConfig.isAPP);
  1561. isQRCode = json_object_new_int(ShmSysConfigAndInfo->SysConfig.isQRCode);
  1562. isRFID = json_object_new_int(ShmSysConfigAndInfo->SysConfig.isRFID);
  1563. QRCodeMadeMode = json_object_new_int(ShmSysConfigAndInfo->SysConfig.QRCodeMadeMode);
  1564. QRCodeContent = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.QRCodeContent);
  1565. Intensity = json_object_new_int(ShmSysConfigAndInfo->SysConfig.LedInfo.Intensity);
  1566. AuxPower5V = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AuxPower5V);
  1567. AuxPower12V = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AuxPower12V);
  1568. AuxPower24V = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AuxPower24V);
  1569. AuxPower48V = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AuxPower48V);
  1570. CsuHwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.CsuHwRev);
  1571. CsuBootLoadFwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.CsuBootLoadFwRev);
  1572. CsuKernelFwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.CsuKernelFwRev);
  1573. CsuRootFsFwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev);
  1574. CsuPrimFwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.CsuPrimFwRev);
  1575. LcmHwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.LcmHwRev);
  1576. LcmFwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.LcmFwRev);
  1577. PsuHwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.PsuHwRev);
  1578. PsuPrimFwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.PsuPrimFwRev);
  1579. PsuSecFwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.PsuSecFwRev);
  1580. AuxPwrHwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.AuxPwrHwRev);
  1581. AuxPwrFwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.AuxPwrFwRev);
  1582. FanModuleHwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.FanModuleHwRev);
  1583. FanModuleFwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.FanModuleFwRev);
  1584. RelayModuleHwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.RelayModuleHwRev);
  1585. RelayModuleFwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.RelayModuleFwRev);
  1586. TelcomModemFwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.TelcomModemFwRev);
  1587. Connector1FwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.Connector1FwRev);
  1588. Connector2FwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.Connector2FwRev);
  1589. LedModuleFwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.LedModuleFwRev);
  1590. SystemAmbientTemp = json_object_new_int(ShmSysConfigAndInfo->SysInfo.SystemAmbientTemp);
  1591. SystemCriticalTemp = json_object_new_int(ShmSysConfigAndInfo->SysInfo.SystemCriticalTemp);
  1592. CcsConnectorTemp = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsConnectorTemp);
  1593. PsuAmbientTemp = json_object_new_int(ShmSysConfigAndInfo->SysInfo.PsuAmbientTemp);
  1594. AcPlugInTimes = json_object_new_int(ShmSysConfigAndInfo->SysConfig.AcPlugInTimes);
  1595. GbPlugInTimes = json_object_new_int(ShmSysConfigAndInfo->SysConfig.GbPlugInTimes);
  1596. Ccs1PlugInTime = json_object_new_int(ShmSysConfigAndInfo->SysConfig.Ccs1PlugInTime);
  1597. Ccs2PlugInTimes = json_object_new_int(ShmSysConfigAndInfo->SysConfig.Ccs2PlugInTimes);
  1598. ChademoPlugInTimes = json_object_new_int(ShmSysConfigAndInfo->SysConfig.ChademoPlugInTimes);
  1599. FirmwareUpdate = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.FirmwareUpdate);
  1600. if(strcmp(IsAcDc, "D") == 0){
  1601. for(int i=0;i<PsuQuantity;i++){
  1602. FwPrimaryVersion[i] = json_object_new_string((char *)&ShmPsuData->PsuVersion[i].FwPrimaryVersion);
  1603. FwSecondVersion[i] = json_object_new_string((char *)&ShmPsuData->PsuVersion[i].FwSecondVersion);
  1604. json_object_array_add(FwPrimaryVersionArr,FwPrimaryVersion[i]);
  1605. json_object_array_add(FwSecondVersionArr,FwSecondVersion[i]);
  1606. }
  1607. }
  1608. if(strcmp(IsDO, "DO") == 0 || strcmp(IsDO, "DK") == 0){
  1609. if(ShmSysConfigAndInfo->SysInfo.DispenserInfo.DispenserQuantity>4 || ShmSysConfigAndInfo->SysInfo.DispenserInfo.DispenserQuantity<0)ShmSysConfigAndInfo->SysInfo.DispenserInfo.DispenserQuantity=0;
  1610. DispenserQuantity = json_object_new_int(ShmSysConfigAndInfo->SysInfo.DispenserInfo.DispenserQuantity);
  1611. TotalConnectorQuantity = json_object_new_int(ShmSysConfigAndInfo->SysInfo.DispenserInfo.TotalConnectorQuantity);
  1612. int DDDispenserQuantity = ShmSysConfigAndInfo->SysInfo.DispenserInfo.DispenserQuantity;
  1613. for(int i=0;i<DDDispenserQuantity;i++){
  1614. DDModelName[i] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].ModelName);
  1615. DDSerialNumber[i] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].SerialNumber);
  1616. DDSystemId[i] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].SystemId);
  1617. DDAuthorisationMode[i] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].AuthorisationMode);
  1618. DDRfidCardNumEndian[i] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].RfidCardNumEndian);
  1619. DDisAPP[i] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].isAPP);
  1620. DDisQRCode[i] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].isQRCode);
  1621. DDisRFID[i] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].isRFID);
  1622. DDQRCodeMadeMode[i] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].QRCodeMadeMode);
  1623. DDQRCodeContent[i] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].QRCodeContent);
  1624. DDFactoryConfiguration[i] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].FactoryConfiguration);
  1625. DDCsuBootLoadFwRev[i] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].CsuBootLoadFwRev);
  1626. DDCsuKernelFwRev[i] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].CsuKernelFwRev);
  1627. DDCsuRootFsFwRev[i] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].CsuRootFsFwRev);
  1628. DDCsuPrimFwRev[i] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].CsuPrimFwRev);
  1629. DDLcmFwRev[i] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].LcmFwRev);
  1630. DDPsuPrimFwRev[i] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].PsuPrimFwRev);
  1631. DDPsuSecFwRev[i] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].PsuSecFwRev);
  1632. DDFanModuleFwRev[i] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].FanModuleFwRev);
  1633. DDRelayModuleFwRev[i] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].RelayModuleFwRev);
  1634. DDTelcomModemFwRev[i] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].TelcomModemFwRev);
  1635. DDLedModuleFwRev[i] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].LedModuleFwRev);
  1636. DDConnector1FwRev[i] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].Connector1FwRev);
  1637. DDConnector2FwRev[i] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].Connector2FwRev);
  1638. DDIntensity[i] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].LedInfo.Intensity);
  1639. json_object_array_add(DDModelNameArr,DDModelName[i]);
  1640. json_object_array_add(DDSerialNumberArr,DDSerialNumber[i]);
  1641. json_object_array_add(DDSystemIdArr,DDSystemId[i]);
  1642. json_object_array_add(DDAuthorisationModeArr,DDAuthorisationMode[i]);
  1643. json_object_array_add(DDRfidCardNumEndianArr,DDRfidCardNumEndian[i]);
  1644. json_object_array_add(DDisAPPArr,DDisAPP[i]);
  1645. json_object_array_add(DDisQRCodeArr,DDisQRCode[i]);
  1646. json_object_array_add(DDisRFIDArr,DDisRFID[i]);
  1647. json_object_array_add(DDQRCodeMadeModeArr,DDQRCodeMadeMode[i]);
  1648. json_object_array_add(DDQRCodeContentArr,DDQRCodeContent[i]);
  1649. json_object_array_add(DDFactoryConfigurationArr,DDFactoryConfiguration[i]);
  1650. json_object_array_add(DDCsuBootLoadFwRevArr,DDCsuBootLoadFwRev[i]);
  1651. json_object_array_add(DDCsuKernelFwRevArr,DDCsuKernelFwRev[i]);
  1652. json_object_array_add(DDCsuRootFsFwRevArr,DDCsuRootFsFwRev[i]);
  1653. json_object_array_add(DDCsuPrimFwRevArr,DDCsuPrimFwRev[i]);
  1654. json_object_array_add(DDLcmFwRevArr,DDLcmFwRev[i]);
  1655. json_object_array_add(DDPsuPrimFwRevArr,DDPsuPrimFwRev[i]);
  1656. json_object_array_add(DDPsuSecFwRevArr,DDPsuSecFwRev[i]);
  1657. json_object_array_add(DDFanModuleFwRevArr,DDFanModuleFwRev[i]);
  1658. json_object_array_add(DDRelayModuleFwRevArr,DDRelayModuleFwRev[i]);
  1659. json_object_array_add(DDTelcomModemFwRevArr,DDTelcomModemFwRev[i]);
  1660. json_object_array_add(DDLedModuleFwRevArr,DDLedModuleFwRev[i]);
  1661. json_object_array_add(DDConnector1FwRevArr,DDConnector1FwRev[i]);
  1662. json_object_array_add(DDConnector2FwRevArr,DDConnector2FwRev[i]);
  1663. json_object_array_add(DDIntensityArr,DDIntensity[i]);
  1664. }
  1665. Relay2ModuleFwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.Relay2ModuleFwRev);
  1666. }
  1667. //charging
  1668. int CcsGunQty=0;
  1669. int GbGunQty=0;
  1670. int CHAdeMOGunQty=0;
  1671. int AcGunQty=0;
  1672. ChargingInfo1=json_object_new_object();
  1673. ChargingInfo2=json_object_new_object();
  1674. ChargingInfo3=json_object_new_object();
  1675. MaxChargingEnergy = json_object_new_int(ShmSysConfigAndInfo->SysConfig.MaxChargingEnergy);
  1676. MaxChargingPower = json_object_new_int(ShmSysConfigAndInfo->SysConfig.MaxChargingPower);
  1677. MaxChargingCurrent = json_object_new_int(ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent);
  1678. AcMaxChargingCurrent = json_object_new_int(ShmSysConfigAndInfo->SysConfig.AcMaxChargingCurrent);
  1679. MaxChargingDuration = json_object_new_int(ShmSysConfigAndInfo->SysConfig.MaxChargingDuration);
  1680. StopChargingByButton = json_object_new_int(ShmSysConfigAndInfo->SysConfig.StopChargingByButton);
  1681. LocalWhiteCard[0] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[0]);
  1682. LocalWhiteCard[1] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[1]);
  1683. LocalWhiteCard[2] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[2]);
  1684. LocalWhiteCard[3] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[3]);
  1685. LocalWhiteCard[4] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[4]);
  1686. LocalWhiteCard[5] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[5]);
  1687. LocalWhiteCard[6] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[6]);
  1688. LocalWhiteCard[7] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[7]);
  1689. LocalWhiteCard[8] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[8]);
  1690. LocalWhiteCard[9] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[9]);
  1691. isBilling = json_object_new_int(ShmSysConfigAndInfo->SysConfig.BillingData.isBilling);
  1692. Currency = json_object_new_int(ShmSysConfigAndInfo->SysConfig.BillingData.Currency);
  1693. Fee[0] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[0]);
  1694. Fee[1] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[1]);
  1695. Fee[2] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[2]);
  1696. Fee[3] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[3]);
  1697. Fee[4] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[4]);
  1698. Fee[5] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[5]);
  1699. Fee[6] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[6]);
  1700. Fee[7] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[7]);
  1701. Fee[8] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[8]);
  1702. Fee[9] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[9]);
  1703. Fee[10] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[10]);
  1704. Fee[11] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[11]);
  1705. Fee[12] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[12]);
  1706. Fee[13] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[13]);
  1707. Fee[14] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[14]);
  1708. Fee[15] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[15]);
  1709. Fee[16] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[16]);
  1710. Fee[17] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[17]);
  1711. Fee[18] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[18]);
  1712. Fee[19] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[19]);
  1713. Fee[20] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[20]);
  1714. Fee[21] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[21]);
  1715. Fee[22] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[22]);
  1716. Fee[23] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[23]);
  1717. if(connectorType1 != 0){
  1718. if(connectorType1 == 1){//CCS
  1719. PresentChargingVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargingVoltage);
  1720. PresentChargingCurrent[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargingCurrent);
  1721. PresentChargingPower[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargingPower);
  1722. PresentChargedEnergy[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargedEnergy);
  1723. PresentChargedDuration[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargedDuration);
  1724. RemainChargingDuration[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].RemainChargingDuration);
  1725. EvBatteryMaxVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].EvBatteryMaxVoltage);
  1726. EvBatterytargetVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].EvBatterytargetVoltage);
  1727. EvBatterySoc[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].EvBatterySoc);
  1728. SystemStatus[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].SystemStatus);
  1729. EvBatterytargetCurrent[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].EvBatterytargetCurrent);
  1730. StartUserId[0] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].StartUserId);
  1731. StartDateTime[0] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].StartDateTime);
  1732. StopDateTime[0] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].StopDateTime);
  1733. StartMethod[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].StartMethod);
  1734. if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ConnectorTemp == 0 || ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ConnectorTemp == 255){
  1735. ConnectorTemp[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ConnectorTemp);
  1736. }
  1737. else{
  1738. ConnectorTemp[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ConnectorTemp-60);
  1739. }
  1740. if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ChillerTemp == 0 || ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ChillerTemp == 255){
  1741. ChillerTemp[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ChillerTemp);
  1742. }
  1743. else{
  1744. ChillerTemp[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ChillerTemp-60);
  1745. }
  1746. PowerConsumption[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PowerConsumption);
  1747. CcsGunQty++;
  1748. }
  1749. else if(connectorType1 == 2){//GB
  1750. PresentChargingVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargingVoltage);
  1751. PresentChargingCurrent[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargingCurrent);
  1752. PresentChargingPower[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargingPower);
  1753. PresentChargedEnergy[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargedEnergy);
  1754. PresentChargedDuration[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargedDuration);
  1755. RemainChargingDuration[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].RemainChargingDuration);
  1756. EvBatteryMaxVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatteryMaxVoltage);
  1757. EvBatterytargetVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatterytargetVoltage);
  1758. EvBatterySoc[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatterySoc);
  1759. SystemStatus[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].SystemStatus);
  1760. EvBatterytargetCurrent[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatterytargetCurrent);
  1761. StartUserId[0] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].StartUserId);
  1762. StartDateTime[0] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].StartDateTime);
  1763. StopDateTime[0] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].StopDateTime);
  1764. StartMethod[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].StartMethod);
  1765. if(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ConnectorTemp == 0 || ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ConnectorTemp == 255){
  1766. ConnectorTemp[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ConnectorTemp);
  1767. }
  1768. else{
  1769. ConnectorTemp[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ConnectorTemp-60);
  1770. }
  1771. if(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ChillerTemp == 0 || ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ChillerTemp == 255){
  1772. ChillerTemp[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ChillerTemp);
  1773. }
  1774. else{
  1775. ChillerTemp[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ChillerTemp-60);
  1776. }
  1777. PowerConsumption[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PowerConsumption);
  1778. GbGunQty++;
  1779. }
  1780. else if(connectorType1 == 3){//CHAdeMO
  1781. PresentChargingVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargingVoltage);
  1782. PresentChargingCurrent[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargingCurrent);
  1783. PresentChargingPower[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargingPower);
  1784. PresentChargedEnergy[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargedEnergy);
  1785. PresentChargedDuration[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargedDuration);
  1786. RemainChargingDuration[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].RemainChargingDuration);
  1787. EvBatteryMaxVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatteryMaxVoltage);
  1788. EvBatterytargetVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatterytargetVoltage);
  1789. EvBatterySoc[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatterySoc);
  1790. SystemStatus[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].SystemStatus);
  1791. EvBatterytargetCurrent[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatterytargetCurrent);
  1792. StartUserId[0] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].StartUserId);
  1793. StartDateTime[0] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].StartDateTime);
  1794. StopDateTime[0] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].StopDateTime);
  1795. StartMethod[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].StartMethod);
  1796. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ConnectorTemp == 0 || ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ConnectorTemp == 255){
  1797. ConnectorTemp[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ConnectorTemp);
  1798. }
  1799. else{
  1800. ConnectorTemp[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ConnectorTemp-60);
  1801. }
  1802. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ChillerTemp == 0 || ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ChillerTemp == 255){
  1803. ChillerTemp[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ChillerTemp);
  1804. }
  1805. else{
  1806. ChillerTemp[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ChillerTemp-60);
  1807. }
  1808. PowerConsumption[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PowerConsumption);
  1809. CHAdeMOGunQty++;
  1810. }
  1811. else if(connectorType1 == 4){//AC
  1812. PresentChargingVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargingVoltage);
  1813. PresentChargingCurrent[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargingCurrent);
  1814. PresentChargingPower[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargingPower);
  1815. PresentChargedEnergy[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargedEnergy);
  1816. PresentChargedDuration[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargedDuration);
  1817. RemainChargingDuration[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].RemainChargingDuration);
  1818. EvBatteryMaxVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatteryMaxVoltage);
  1819. EvBatterytargetVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatterytargetVoltage);
  1820. EvBatterySoc[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatterySoc);
  1821. SystemStatus[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].SystemStatus);
  1822. EvBatterytargetCurrent[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatterytargetCurrent);
  1823. StartUserId[0] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].StartUserId);
  1824. StartDateTime[0] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].StartDateTime);
  1825. StopDateTime[0] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].StopDateTime);
  1826. StartMethod[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].StartMethod);
  1827. ConnectorTemp[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].ConnectorTemp);
  1828. ChillerTemp[0] = json_object_new_int(255);
  1829. PowerConsumption[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PowerConsumption);
  1830. if(strcmp(IsDO, "AX") == 0){
  1831. isCalibratedVaGain[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedVaGain);
  1832. isCalibratedVbGain[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedVbGain);
  1833. isCalibratedVcGain[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedVcGain);
  1834. isCalibratedVaOffset[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedVaOffset);
  1835. isCalibratedVbOffset[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedVbOffset);
  1836. isCalibratedVcOffset[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedVcOffset);
  1837. isCalibratedCaGain[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedCaGain);
  1838. isCalibratedCbGain[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedCbGain);
  1839. isCalibratedCcGain[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedCcGain);
  1840. isCalibratedCaOffset[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedCaOffset);
  1841. isCalibratedCbOffset[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedCbOffset);
  1842. isCalibratedCcOffset[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedCcOffset);
  1843. isCalibratedPa[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedPa);
  1844. isCalibratedPb[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedPb);
  1845. isCalibratedPc[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedPc);
  1846. }
  1847. AcGunQty++;
  1848. }
  1849. }
  1850. if(connectorType2 != 0){
  1851. if(connectorType2 == 1){//CCS
  1852. PresentChargingVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargingVoltage);
  1853. PresentChargingCurrent[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargingCurrent);
  1854. PresentChargingPower[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargingPower);
  1855. PresentChargedEnergy[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargedEnergy);
  1856. PresentChargedDuration[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargedDuration);
  1857. RemainChargingDuration[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].RemainChargingDuration);
  1858. EvBatteryMaxVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].EvBatteryMaxVoltage);
  1859. EvBatterytargetVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].EvBatterytargetVoltage);
  1860. EvBatterySoc[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].EvBatterySoc);
  1861. SystemStatus[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].SystemStatus);
  1862. EvBatterytargetCurrent[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].EvBatterytargetCurrent);
  1863. StartUserId[1] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].StartUserId);
  1864. StartDateTime[1] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].StartDateTime);
  1865. StopDateTime[1] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].StopDateTime);
  1866. StartMethod[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].StartMethod);
  1867. if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ConnectorTemp == 0 || ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ConnectorTemp == 255){
  1868. ConnectorTemp[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ConnectorTemp);
  1869. }
  1870. else{
  1871. ConnectorTemp[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ConnectorTemp-60);
  1872. }
  1873. if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ChillerTemp == 0 || ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ChillerTemp == 255){
  1874. ChillerTemp[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ChillerTemp);
  1875. }
  1876. else{
  1877. ChillerTemp[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ChillerTemp-60);
  1878. }
  1879. PowerConsumption[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PowerConsumption);
  1880. CcsGunQty++;
  1881. }
  1882. else if(connectorType2 == 2){//GB
  1883. PresentChargingVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargingVoltage);
  1884. PresentChargingCurrent[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargingCurrent);
  1885. PresentChargingPower[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargingPower);
  1886. PresentChargedEnergy[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargedEnergy);
  1887. PresentChargedDuration[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargedDuration);
  1888. RemainChargingDuration[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].RemainChargingDuration);
  1889. EvBatteryMaxVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatteryMaxVoltage);
  1890. EvBatterytargetVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatterytargetVoltage);
  1891. EvBatterySoc[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatterySoc);
  1892. SystemStatus[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].SystemStatus);
  1893. EvBatterytargetCurrent[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatterytargetCurrent);
  1894. StartUserId[1] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].StartUserId);
  1895. StartDateTime[1] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].StartDateTime);
  1896. StopDateTime[1] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].StopDateTime);
  1897. StartMethod[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].StartMethod);
  1898. if(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ConnectorTemp == 0 || ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ConnectorTemp == 255){
  1899. ConnectorTemp[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ConnectorTemp);
  1900. }
  1901. else{
  1902. ConnectorTemp[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ConnectorTemp-60);
  1903. }
  1904. if(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ChillerTemp == 0 || ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ChillerTemp == 255){
  1905. ChillerTemp[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ChillerTemp);
  1906. }
  1907. else{
  1908. ChillerTemp[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ChillerTemp-60);
  1909. }
  1910. PowerConsumption[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PowerConsumption);
  1911. GbGunQty++;
  1912. }
  1913. else if(connectorType2 == 3){//CHAdeMO
  1914. PresentChargingVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargingVoltage);
  1915. PresentChargingCurrent[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargingCurrent);
  1916. PresentChargingPower[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargingPower);
  1917. PresentChargedEnergy[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargedEnergy);
  1918. PresentChargedDuration[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargedDuration);
  1919. RemainChargingDuration[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].RemainChargingDuration);
  1920. EvBatteryMaxVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatteryMaxVoltage);
  1921. EvBatterytargetVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatterytargetVoltage);
  1922. EvBatterySoc[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatterySoc);
  1923. SystemStatus[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].SystemStatus);
  1924. EvBatterytargetCurrent[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatterytargetCurrent);
  1925. StartUserId[1] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].StartUserId);
  1926. StartDateTime[1] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].StartDateTime);
  1927. StopDateTime[1] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].StopDateTime);
  1928. StartMethod[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].StartMethod);
  1929. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ConnectorTemp == 0 || ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ConnectorTemp == 255){
  1930. ConnectorTemp[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ConnectorTemp);
  1931. }
  1932. else{
  1933. ConnectorTemp[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ConnectorTemp-60);
  1934. }
  1935. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ChillerTemp == 0 || ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ChillerTemp == 255){
  1936. ChillerTemp[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ChillerTemp);
  1937. }
  1938. else{
  1939. ChillerTemp[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ChillerTemp-60);
  1940. }
  1941. PowerConsumption[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PowerConsumption);
  1942. CHAdeMOGunQty++;
  1943. }
  1944. else if(connectorType2 == 4){//AC
  1945. PresentChargingVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargingVoltage);
  1946. PresentChargingCurrent[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargingCurrent);
  1947. PresentChargingPower[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargingPower);
  1948. PresentChargedEnergy[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargedEnergy);
  1949. PresentChargedDuration[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargedDuration);
  1950. RemainChargingDuration[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].RemainChargingDuration);
  1951. EvBatteryMaxVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatteryMaxVoltage);
  1952. EvBatterytargetVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatterytargetVoltage);
  1953. EvBatterySoc[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatterySoc);
  1954. SystemStatus[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].SystemStatus);
  1955. EvBatterytargetCurrent[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatterytargetCurrent);
  1956. StartUserId[1] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].StartUserId);
  1957. StartDateTime[1] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].StartDateTime);
  1958. StopDateTime[1] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].StopDateTime);
  1959. StartMethod[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].StartMethod);
  1960. ConnectorTemp[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].ConnectorTemp);
  1961. ChillerTemp[1] = json_object_new_int(255);
  1962. PowerConsumption[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PowerConsumption);
  1963. if(strcmp(IsDO, "AX") == 0){
  1964. isCalibratedVaGain[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedVaGain);
  1965. isCalibratedVbGain[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedVbGain);
  1966. isCalibratedVcGain[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedVcGain);
  1967. isCalibratedVaOffset[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedVaOffset);
  1968. isCalibratedVbOffset[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedVbOffset);
  1969. isCalibratedVcOffset[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedVcOffset);
  1970. isCalibratedCaGain[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedCaGain);
  1971. isCalibratedCbGain[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedCbGain);
  1972. isCalibratedCcGain[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedCcGain);
  1973. isCalibratedCaOffset[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedCaOffset);
  1974. isCalibratedCbOffset[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedCbOffset);
  1975. isCalibratedCcOffset[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedCcOffset);
  1976. isCalibratedPa[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedPa);
  1977. isCalibratedPb[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedPb);
  1978. isCalibratedPc[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedPc);
  1979. }
  1980. AcGunQty++;
  1981. }
  1982. }
  1983. if(connectorType3 != 0){
  1984. if(connectorType3 == 1){//CCS
  1985. PresentChargingVoltage[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargingVoltage);
  1986. PresentChargingCurrent[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargingCurrent);
  1987. PresentChargingPower[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargingPower);
  1988. PresentChargedEnergy[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargedEnergy);
  1989. PresentChargedDuration[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargedDuration);
  1990. RemainChargingDuration[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].RemainChargingDuration);
  1991. EvBatteryMaxVoltage[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].EvBatteryMaxVoltage);
  1992. EvBatterytargetVoltage[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].EvBatterytargetVoltage);
  1993. EvBatterySoc[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].EvBatterySoc);
  1994. SystemStatus[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].SystemStatus);
  1995. EvBatterytargetCurrent[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].EvBatterytargetCurrent);
  1996. StartUserId[2] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].StartUserId);
  1997. StartDateTime[2] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].StartDateTime);
  1998. StopDateTime[2] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].StopDateTime);
  1999. StartMethod[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].StartMethod);
  2000. if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ConnectorTemp == 0 ||ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ConnectorTemp == 255){
  2001. ConnectorTemp[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ConnectorTemp);
  2002. }
  2003. else{
  2004. ConnectorTemp[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ConnectorTemp-60);
  2005. }
  2006. if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ChillerTemp == 0 ||ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ChillerTemp == 255){
  2007. ChillerTemp[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ChillerTemp);
  2008. }
  2009. else{
  2010. ChillerTemp[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ChillerTemp-60);
  2011. }
  2012. PowerConsumption[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PowerConsumption);
  2013. CcsGunQty++;
  2014. }
  2015. else if(connectorType3 == 2){//GB
  2016. PresentChargingVoltage[2]= json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargingVoltage);
  2017. PresentChargingCurrent[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargingCurrent);
  2018. PresentChargingPower[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargingPower);
  2019. PresentChargedEnergy[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargedEnergy);
  2020. PresentChargedDuration[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargedDuration);
  2021. RemainChargingDuration[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].RemainChargingDuration);
  2022. EvBatteryMaxVoltage[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatteryMaxVoltage);
  2023. EvBatterytargetVoltage[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatterytargetVoltage);
  2024. EvBatterySoc[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatterySoc);
  2025. SystemStatus[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].SystemStatus);
  2026. EvBatterytargetCurrent[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatterytargetCurrent);
  2027. StartUserId[2] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].StartUserId);
  2028. StartDateTime[2] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].StartDateTime);
  2029. StopDateTime[2] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].StopDateTime);
  2030. StartMethod[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].StartMethod);
  2031. if(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ConnectorTemp == 0 || ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ConnectorTemp == 255){
  2032. ConnectorTemp[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ConnectorTemp);
  2033. }
  2034. else{
  2035. ConnectorTemp[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ConnectorTemp-60);
  2036. }
  2037. if(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ChillerTemp == 0 || ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ChillerTemp == 255){
  2038. ChillerTemp[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ChillerTemp);
  2039. }
  2040. else{
  2041. ChillerTemp[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ChillerTemp-60);
  2042. }
  2043. PowerConsumption[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PowerConsumption);
  2044. GbGunQty++;
  2045. }
  2046. else if(connectorType3 == 3){//CHAdeMO
  2047. PresentChargingVoltage[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargingVoltage);
  2048. PresentChargingCurrent[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargingCurrent);
  2049. PresentChargingPower[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargingPower);
  2050. PresentChargedEnergy[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargedEnergy);
  2051. PresentChargedDuration[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargedDuration);
  2052. RemainChargingDuration[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].RemainChargingDuration);
  2053. EvBatteryMaxVoltage[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatteryMaxVoltage);
  2054. EvBatterytargetVoltage[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatterytargetVoltage);
  2055. EvBatterySoc[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatterySoc);
  2056. SystemStatus[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].SystemStatus);
  2057. EvBatterytargetCurrent[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatterytargetCurrent);
  2058. StartUserId[2] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].StartUserId);
  2059. StartDateTime[2] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].StartDateTime);
  2060. StopDateTime[2] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].StopDateTime);
  2061. StartMethod[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].StartMethod);
  2062. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ConnectorTemp == 0 || ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ConnectorTemp == 255){
  2063. ConnectorTemp[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ConnectorTemp);
  2064. }
  2065. else{
  2066. ConnectorTemp[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ConnectorTemp-60);
  2067. }
  2068. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ChillerTemp == 0 || ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ChillerTemp == 255){
  2069. ChillerTemp[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ChillerTemp);
  2070. }
  2071. else{
  2072. ChillerTemp[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ChillerTemp-60);
  2073. }
  2074. PowerConsumption[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PowerConsumption);
  2075. CHAdeMOGunQty++;
  2076. }
  2077. else if(connectorType3 == 4){//AC
  2078. PresentChargingVoltage[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargingVoltage);
  2079. PresentChargingCurrent[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargingCurrent);
  2080. PresentChargingPower[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargingPower);
  2081. PresentChargedEnergy[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargedEnergy);
  2082. PresentChargedDuration[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargedDuration);
  2083. RemainChargingDuration[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].RemainChargingDuration);
  2084. EvBatteryMaxVoltage[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatteryMaxVoltage);
  2085. EvBatterytargetVoltage[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatterytargetVoltage);
  2086. EvBatterySoc[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatterySoc);
  2087. SystemStatus[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].SystemStatus);
  2088. EvBatterytargetCurrent[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatterytargetCurrent);
  2089. StartUserId[2] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].StartUserId);
  2090. StartDateTime[2] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].StartDateTime);
  2091. StopDateTime[2] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].StopDateTime);
  2092. StartMethod[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].StartMethod);
  2093. ConnectorTemp[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].ConnectorTemp);
  2094. ChillerTemp[2] = json_object_new_int(255);
  2095. PowerConsumption[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PowerConsumption);
  2096. if(strcmp(IsDO, "AX") == 0){
  2097. isCalibratedVaGain[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedVaGain);
  2098. isCalibratedVbGain[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedVbGain);
  2099. isCalibratedVcGain[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedVcGain);
  2100. isCalibratedVaOffset[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedVaOffset);
  2101. isCalibratedVbOffset[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedVbOffset);
  2102. isCalibratedVcOffset[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedVcOffset);
  2103. isCalibratedCaGain[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedCaGain);
  2104. isCalibratedCbGain[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedCbGain);
  2105. isCalibratedCcGain[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedCcGain);
  2106. isCalibratedCaOffset[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedCaOffset);
  2107. isCalibratedCbOffset[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedCbOffset);
  2108. isCalibratedCcOffset[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedCcOffset);
  2109. isCalibratedPa[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedPa);
  2110. isCalibratedPb[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedPb);
  2111. isCalibratedPc[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedPc);
  2112. }
  2113. AcGunQty++;
  2114. }
  2115. }
  2116. if(strcmp(IsDO, "DO") == 0 || strcmp(IsDO, "DK") == 0){
  2117. if(ShmSysConfigAndInfo->SysInfo.DispenserInfo.TotalConnectorQuantity>4 || ShmSysConfigAndInfo->SysInfo.DispenserInfo.TotalConnectorQuantity<0)ShmSysConfigAndInfo->SysInfo.DispenserInfo.TotalConnectorQuantity=0;
  2118. int DDTotalConnectorQuantity = ShmSysConfigAndInfo->SysInfo.DispenserInfo.TotalConnectorQuantity;
  2119. for(int i=0;i<DDTotalConnectorQuantity;i++){
  2120. DDPresentChargingVoltage[i] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.PresentChargingVoltage);
  2121. DDPresentChargingCurrent[i] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.PresentChargingCurrent);
  2122. DDPresentChargingPower[i] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.PresentChargingPower);
  2123. DDPresentChargedEnergy[i] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.PresentChargedEnergy);
  2124. DDPresentChargedDuration[i] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.PresentChargedDuration);
  2125. DDRemainChargingDuration[i] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.RemainChargingDuration);
  2126. DDEvBatteryMaxVoltage[i] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.EvBatteryMaxVoltage);
  2127. DDEvBatterytargetVoltage[i] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.EvBatterytargetVoltage);
  2128. DDEvBatterySoc[i] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.EvBatterySoc);
  2129. DDSystemStatus[i] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.SystemStatus);
  2130. DDEvBatterytargetCurrent[i] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.EvBatterytargetCurrent);
  2131. DDStartUserId[i] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.StartUserId);
  2132. DDStartDateTime[i] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.StartDateTime);
  2133. DDStopDateTime[i] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.StopDateTime);
  2134. DDStartMethod[i] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.StartMethod);
  2135. if(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.ConnectorTemp == 0 || ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.ConnectorTemp == 255){
  2136. DDConnectorTemp[i] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.ConnectorTemp);
  2137. }
  2138. else{
  2139. DDConnectorTemp[i] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.ConnectorTemp-60);
  2140. }
  2141. if(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.ChillerTemp == 0 || ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.ChillerTemp == 255){
  2142. DDChillerTemp[i] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.ChillerTemp);
  2143. }
  2144. else{
  2145. DDChillerTemp[i] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.ChillerTemp-60);
  2146. }
  2147. DDPowerConsumption[i] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.PowerConsumption);
  2148. }
  2149. }
  2150. //network
  2151. InternetConn = json_object_new_int(ShmSysConfigAndInfo->SysInfo.InternetConn);
  2152. FtpServer = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.FtpServer);
  2153. Eth0DhcpClient = json_object_new_int(ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthDhcpClient);
  2154. Eth0MacAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthMacAddress);
  2155. Eth0IpAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthIpAddress);
  2156. Eth0SubmaskAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthSubmaskAddress);
  2157. Eth0GatewayAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthGatewayAddress);
  2158. Eth1DhcpClient = json_object_new_int(ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthDhcpClient);
  2159. Eth1MacAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthMacAddress);
  2160. Eth1IpAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthIpAddress);
  2161. Eth1SubmaskAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthSubmaskAddress);
  2162. Eth1GatewayAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthGatewayAddress);
  2163. WifiMode = json_object_new_int(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMode);
  2164. WifiSsid = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSsid);
  2165. WifiPassword = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiPassword);
  2166. WifiRssi = json_object_new_int(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiRssi);
  2167. WifiDhcpServer = json_object_new_int(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpServer);
  2168. WifiDhcpClient = json_object_new_int(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpClient);
  2169. WifiMacAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMacAddress);
  2170. WifiIpAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiIpAddress);
  2171. WifiSubmaskAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSubmaskAddress);
  2172. WifiGatewayAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiGatewayAddress);
  2173. WifiNetworkConn = json_object_new_int(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiNetworkConn);
  2174. TelcomApn = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomApn);
  2175. TelcomRssi = json_object_new_int(ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomRssi);
  2176. TelcomChapPapId = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapId);
  2177. TelcomChapPapPwd = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapPwd);
  2178. TelcomModemImei = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomModemImei);
  2179. TelcomSimImsi = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomSimImsi);
  2180. TelcomSimIccid = json_object_new_string((char*)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomSimIccid);
  2181. TelcomSimStatus = json_object_new_int(ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomSimStatus);
  2182. TelcomModemMode = json_object_new_int(ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomModemMode);
  2183. TelcomIpAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomIpAddress);
  2184. TelcomNetworkConn = json_object_new_int(ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomNetworkConn);
  2185. TelcomEnabled = json_object_new_int(ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomEnabled);
  2186. //backend
  2187. BackendConnTimeout = json_object_new_int(ShmSysConfigAndInfo->SysConfig.BackendConnTimeout);
  2188. OfflinePolicy = json_object_new_int(ShmSysConfigAndInfo->SysConfig.OfflinePolicy);
  2189. OfflineMaxChargeEnergy = json_object_new_int(ShmSysConfigAndInfo->SysConfig.OfflineMaxChargeEnergy);
  2190. OfflineMaxChargeDuration = json_object_new_int(ShmSysConfigAndInfo->SysConfig.OfflineMaxChargeDuration);
  2191. OcppConnStatus = json_object_new_int(ShmSysConfigAndInfo->SysInfo.OcppConnStatus);
  2192. OcppServerURL = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.OcppServerURL);
  2193. ChargeBoxId = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.ChargeBoxId);
  2194. OcppSecurityProfile = json_object_new_int(ShmSysConfigAndInfo->SysConfig.OcppSecurityProfile);
  2195. OcppSecurityPassword = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.OcppSecurityPassword);
  2196. chargePointVendor = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.chargePointVendor);
  2197. if(strcmp(IsDO, "AX") == 0){
  2198. isEnableLocalPowerSharging = json_object_new_int(ShmSysConfigAndInfo->SysConfig.isEnableLocalPowerSharging);
  2199. }
  2200. //system
  2201. json_object_object_add(jobj1,"ModelName",ModelName);
  2202. json_object_object_add(jobj1,"AcModelName",AcModelName);
  2203. json_object_object_add(jobj1,"SerialNumber",SerialNumber);
  2204. json_object_object_add(jobj1,"SystemId",SystemId);
  2205. json_object_object_add(jobj1,"AcPhaseCount",AcPhaseCount);
  2206. json_object_object_add(jobj1,"PhaseLossPolicy",PhaseLossPolicy);
  2207. json_object_object_add(jobj1,"FactoryConfiguration",FactoryConfiguration);
  2208. json_object_object_add(jobj1,"AuthorisationMode",AuthorisationMode);
  2209. json_object_object_add(jobj1,"DefaultLanguage",DefaultLanguage);
  2210. json_object_object_add(jobj1,"InputVoltageR",InputVoltageR);
  2211. json_object_object_add(jobj1,"InputVoltageS",InputVoltageS);
  2212. json_object_object_add(jobj1,"InputVoltageT",InputVoltageT);
  2213. json_object_object_add(jobj1,"SystemFanRotaSpeed",SystemFanRotaSpeed);
  2214. json_object_object_add(jobj1,"PsuFanRotaSpeed",PsuFanRotaSpeed);
  2215. json_object_object_add(jobj1,"RfidCardNumEndian",RfidCardNumEndian);
  2216. json_object_object_add(jobj1,"PsuAcInputType",PsuAcInputType);
  2217. json_object_object_add(jobj1,"RatingCurrent",RatingCurrent);
  2218. json_object_object_add(jobj1,"AcRatingCurrent",AcRatingCurrent);
  2219. json_object_object_add(jobj1,"isAPP",isAPP);
  2220. json_object_object_add(jobj1,"isQRCode",isQRCode);
  2221. json_object_object_add(jobj1,"isRFID",isRFID);
  2222. json_object_object_add(jobj1,"QRCodeMadeMode",QRCodeMadeMode);
  2223. json_object_object_add(jobj1,"QRCodeContent",QRCodeContent);
  2224. json_object_object_add(jobj1,"Intensity",Intensity);
  2225. json_object_object_add(jobj1,"AuxPower5V",AuxPower5V);
  2226. json_object_object_add(jobj1,"AuxPower12V",AuxPower12V);
  2227. json_object_object_add(jobj1,"AuxPower24V",AuxPower24V);
  2228. json_object_object_add(jobj1,"AuxPower48V",AuxPower48V);
  2229. json_object_object_add(jobj1,"CsuHwRev",CsuHwRev);
  2230. json_object_object_add(jobj1,"CsuBootLoadFwRev",CsuBootLoadFwRev);
  2231. json_object_object_add(jobj1,"CsuKernelFwRev",CsuKernelFwRev);
  2232. json_object_object_add(jobj1,"CsuRootFsFwRev",CsuRootFsFwRev);
  2233. json_object_object_add(jobj1,"CsuPrimFwRev",CsuPrimFwRev);
  2234. json_object_object_add(jobj1,"LcmHwRev",LcmHwRev);
  2235. json_object_object_add(jobj1,"LcmFwRev",LcmFwRev);
  2236. json_object_object_add(jobj1,"PsuHwRev",PsuHwRev);
  2237. json_object_object_add(jobj1,"PsuPrimFwRev",PsuPrimFwRev);
  2238. json_object_object_add(jobj1,"PsuSecFwRev",PsuSecFwRev);
  2239. json_object_object_add(jobj1,"AuxPwrHwRev",AuxPwrHwRev);
  2240. json_object_object_add(jobj1,"AuxPwrFwRev",AuxPwrFwRev);
  2241. json_object_object_add(jobj1,"FanModuleHwRev",FanModuleHwRev);
  2242. json_object_object_add(jobj1,"FanModuleFwRev",FanModuleFwRev);
  2243. json_object_object_add(jobj1,"RelayModuleHwRev",RelayModuleHwRev);
  2244. json_object_object_add(jobj1,"RelayModuleFwRev",RelayModuleFwRev);
  2245. json_object_object_add(jobj1,"TelcomModemFwRev",TelcomModemFwRev);
  2246. json_object_object_add(jobj1,"Connector1FwRev",Connector1FwRev);
  2247. json_object_object_add(jobj1,"Connector2FwRev",Connector2FwRev);
  2248. json_object_object_add(jobj1,"LedModuleFwRev",LedModuleFwRev);
  2249. json_object_object_add(jobj1,"SystemAmbientTemp",SystemAmbientTemp);
  2250. json_object_object_add(jobj1,"SystemCriticalTemp",SystemCriticalTemp);
  2251. json_object_object_add(jobj1,"CcsConnectorTemp",CcsConnectorTemp);
  2252. json_object_object_add(jobj1,"PsuAmbientTemp",PsuAmbientTemp);
  2253. json_object_object_add(jobj1,"AcPlugInTimes",AcPlugInTimes);
  2254. json_object_object_add(jobj1,"GbPlugInTimes",GbPlugInTimes);
  2255. json_object_object_add(jobj1,"Ccs1PlugInTimes",Ccs1PlugInTime);
  2256. json_object_object_add(jobj1,"Ccs2PlugInTimes",Ccs2PlugInTimes);
  2257. json_object_object_add(jobj1,"ChademoPlugInTimes",ChademoPlugInTimes);
  2258. json_object_object_add(jobj1,"FirmwareUpdate",FirmwareUpdate);
  2259. if(strcmp(IsAcDc, "D") == 0){
  2260. json_object_object_add(jobj1,"FwPrimaryVersion",FwPrimaryVersionArr);
  2261. json_object_object_add(jobj1,"FwSecondVersion",FwSecondVersionArr);
  2262. }
  2263. if(strcmp(IsDO, "DO") == 0 || strcmp(IsDO, "DK") == 0){
  2264. json_object_object_add(jobj1,"DispenserQuantity",DispenserQuantity);
  2265. json_object_object_add(jobj1,"TotalConnectorQuantity",TotalConnectorQuantity);
  2266. json_object_object_add(jobj1,"DDModelName",DDModelNameArr);
  2267. json_object_object_add(jobj1,"DDSerialNumber",DDSerialNumberArr);
  2268. json_object_object_add(jobj1,"DDSystemId",DDSystemIdArr);
  2269. json_object_object_add(jobj1,"DDAuthorisationMode",DDAuthorisationModeArr);
  2270. json_object_object_add(jobj1,"DDRfidCardNumEndian",DDRfidCardNumEndianArr);
  2271. json_object_object_add(jobj1,"DDisAPP",DDisAPPArr);
  2272. json_object_object_add(jobj1,"DDisQRCode",DDisQRCodeArr);
  2273. json_object_object_add(jobj1,"DDisRFID",DDisRFIDArr);
  2274. json_object_object_add(jobj1,"DDQRCodeMadeMode",DDQRCodeMadeModeArr);
  2275. json_object_object_add(jobj1,"DDQRCodeContent",DDQRCodeContentArr);
  2276. json_object_object_add(jobj1,"DDFactoryConfiguration",DDFactoryConfigurationArr);
  2277. json_object_object_add(jobj1,"DDCsuBootLoadFwRev",DDCsuBootLoadFwRevArr);
  2278. json_object_object_add(jobj1,"DDCsuKernelFwRev",DDCsuKernelFwRevArr);
  2279. json_object_object_add(jobj1,"DDCsuRootFsFwRev",DDCsuRootFsFwRevArr);
  2280. json_object_object_add(jobj1,"DDCsuPrimFwRev",DDCsuPrimFwRevArr);
  2281. json_object_object_add(jobj1,"DDLcmFwRev",DDLcmFwRevArr);
  2282. json_object_object_add(jobj1,"DDPsuPrimFwRev",DDPsuPrimFwRevArr);
  2283. json_object_object_add(jobj1,"DDPsuSecFwRev",DDPsuSecFwRevArr);
  2284. json_object_object_add(jobj1,"DDFanModuleFwRev",DDFanModuleFwRevArr);
  2285. json_object_object_add(jobj1,"DDRelayModuleFwRev",DDRelayModuleFwRevArr);
  2286. json_object_object_add(jobj1,"DDTelcomModemFwRev",DDTelcomModemFwRevArr);
  2287. json_object_object_add(jobj1,"DDLedModuleFwRev",DDLedModuleFwRevArr);
  2288. json_object_object_add(jobj1,"DDConnector1FwRev",DDConnector1FwRevArr);
  2289. json_object_object_add(jobj1,"DDConnector2FwRev",DDConnector2FwRevArr);
  2290. json_object_object_add(jobj1,"DDIntensity",DDIntensityArr);
  2291. json_object_object_add(jobj1,"Relay2ModuleFwRev",Relay2ModuleFwRev);
  2292. }
  2293. printf("%s\n", json_object_to_json_string(jobj1));
  2294. json_object_put(jobj1);
  2295. //charging
  2296. json_object_object_add(jobj2,"MaxChargingEnergy",MaxChargingEnergy);
  2297. json_object_object_add(jobj2,"MaxChargingPower",MaxChargingPower);
  2298. json_object_object_add(jobj2,"MaxChargingCurrent",MaxChargingCurrent);
  2299. json_object_object_add(jobj2,"AcMaxChargingCurrent",AcMaxChargingCurrent);
  2300. json_object_object_add(jobj2,"MaxChargingDuration",MaxChargingDuration);
  2301. json_object_object_add(jobj2,"StopChargingByButton",StopChargingByButton);
  2302. json_object_array_add(LocalWhiteCardArr,LocalWhiteCard[0]);
  2303. json_object_array_add(LocalWhiteCardArr,LocalWhiteCard[1]);
  2304. json_object_array_add(LocalWhiteCardArr,LocalWhiteCard[2]);
  2305. json_object_array_add(LocalWhiteCardArr,LocalWhiteCard[3]);
  2306. json_object_array_add(LocalWhiteCardArr,LocalWhiteCard[4]);
  2307. json_object_array_add(LocalWhiteCardArr,LocalWhiteCard[5]);
  2308. json_object_array_add(LocalWhiteCardArr,LocalWhiteCard[6]);
  2309. json_object_array_add(LocalWhiteCardArr,LocalWhiteCard[7]);
  2310. json_object_array_add(LocalWhiteCardArr,LocalWhiteCard[8]);
  2311. json_object_array_add(LocalWhiteCardArr,LocalWhiteCard[9]);
  2312. json_object_object_add(jobj2,"LocalWhiteCard",LocalWhiteCardArr);
  2313. json_object_object_add(jobj2,"isBilling",isBilling);
  2314. json_object_object_add(jobj2,"Currency",Currency);
  2315. json_object_array_add(FeeArr,Fee[0]);
  2316. json_object_array_add(FeeArr,Fee[1]);
  2317. json_object_array_add(FeeArr,Fee[2]);
  2318. json_object_array_add(FeeArr,Fee[3]);
  2319. json_object_array_add(FeeArr,Fee[4]);
  2320. json_object_array_add(FeeArr,Fee[5]);
  2321. json_object_array_add(FeeArr,Fee[6]);
  2322. json_object_array_add(FeeArr,Fee[7]);
  2323. json_object_array_add(FeeArr,Fee[8]);
  2324. json_object_array_add(FeeArr,Fee[9]);
  2325. json_object_array_add(FeeArr,Fee[10]);
  2326. json_object_array_add(FeeArr,Fee[11]);
  2327. json_object_array_add(FeeArr,Fee[12]);
  2328. json_object_array_add(FeeArr,Fee[13]);
  2329. json_object_array_add(FeeArr,Fee[14]);
  2330. json_object_array_add(FeeArr,Fee[15]);
  2331. json_object_array_add(FeeArr,Fee[16]);
  2332. json_object_array_add(FeeArr,Fee[17]);
  2333. json_object_array_add(FeeArr,Fee[18]);
  2334. json_object_array_add(FeeArr,Fee[19]);
  2335. json_object_array_add(FeeArr,Fee[20]);
  2336. json_object_array_add(FeeArr,Fee[21]);
  2337. json_object_array_add(FeeArr,Fee[22]);
  2338. json_object_array_add(FeeArr,Fee[23]);
  2339. json_object_object_add(jobj2,"Fee",FeeArr);
  2340. if(connectorType1 != 0){
  2341. json_object_object_add(ChargingInfo1,"StartUserId",StartUserId[0]);
  2342. json_object_object_add(ChargingInfo1,"StartDateTime",StartDateTime[0]);
  2343. json_object_object_add(ChargingInfo1,"StopDateTime",StopDateTime[0]);
  2344. json_object_object_add(ChargingInfo1,"StartMethod",StartMethod[0]);
  2345. json_object_object_add(ChargingInfo1,"ConnectorTemp",ConnectorTemp[0]);
  2346. json_object_object_add(ChargingInfo1,"ChillerTemp",ChillerTemp[0]);
  2347. json_object_object_add(ChargingInfo1,"PresentChargingVoltage",PresentChargingVoltage[0]);
  2348. json_object_object_add(ChargingInfo1,"PresentChargingCurrent",PresentChargingCurrent[0]);
  2349. json_object_object_add(ChargingInfo1,"PresentChargingPower",PresentChargingPower[0]);
  2350. json_object_object_add(ChargingInfo1,"PresentChargedEnergy",PresentChargedEnergy[0]);
  2351. json_object_object_add(ChargingInfo1,"PresentChargedDuration",PresentChargedDuration[0]);
  2352. json_object_object_add(ChargingInfo1,"RemainChargingDuration",RemainChargingDuration[0]);
  2353. json_object_object_add(ChargingInfo1,"EvBatteryMaxVoltage",EvBatteryMaxVoltage[0]);
  2354. json_object_object_add(ChargingInfo1,"EvBatterytargetVoltage",EvBatterytargetVoltage[0]);
  2355. json_object_object_add(ChargingInfo1,"EvBatterySoc",EvBatterySoc[0]);
  2356. json_object_object_add(ChargingInfo1,"SystemStatus",SystemStatus[0]);
  2357. json_object_object_add(ChargingInfo1,"EvBatterytargetCurrent",EvBatterytargetCurrent[0]);
  2358. json_object_object_add(ChargingInfo1,"PowerConsumption",PowerConsumption[0]);
  2359. json_object_object_add(jobj2,"ChargingInfo1",ChargingInfo1);
  2360. }
  2361. if(connectorType2 != 0){
  2362. json_object_object_add(ChargingInfo2,"StartUserId",StartUserId[1]);
  2363. json_object_object_add(ChargingInfo2,"StartDateTime",StartDateTime[1]);
  2364. json_object_object_add(ChargingInfo2,"StopDateTime",StopDateTime[1]);
  2365. json_object_object_add(ChargingInfo2,"StartMethod",StartMethod[1]);
  2366. json_object_object_add(ChargingInfo2,"ConnectorTemp",ConnectorTemp[1]);
  2367. json_object_object_add(ChargingInfo2,"ChillerTemp",ChillerTemp[1]);
  2368. json_object_object_add(ChargingInfo2,"PresentChargingVoltage",PresentChargingVoltage[1]);
  2369. json_object_object_add(ChargingInfo2,"PresentChargingCurrent",PresentChargingCurrent[1]);
  2370. json_object_object_add(ChargingInfo2,"PresentChargingPower",PresentChargingPower[1]);
  2371. json_object_object_add(ChargingInfo2,"PresentChargedEnergy",PresentChargedEnergy[1]);
  2372. json_object_object_add(ChargingInfo2,"PresentChargedDuration",PresentChargedDuration[1]);
  2373. json_object_object_add(ChargingInfo2,"RemainChargingDuration",RemainChargingDuration[1]);
  2374. json_object_object_add(ChargingInfo2,"EvBatteryMaxVoltage",EvBatteryMaxVoltage[1]);
  2375. json_object_object_add(ChargingInfo2,"EvBatterytargetVoltage",EvBatterytargetVoltage[1]);
  2376. json_object_object_add(ChargingInfo2,"EvBatterySoc",EvBatterySoc[1]);
  2377. json_object_object_add(ChargingInfo2,"SystemStatus",SystemStatus[1]);
  2378. json_object_object_add(ChargingInfo2,"EvBatterytargetCurrent",EvBatterytargetCurrent[1]);
  2379. json_object_object_add(ChargingInfo2,"PowerConsumption",PowerConsumption[1]);
  2380. json_object_object_add(jobj2,"ChargingInfo2",ChargingInfo2);
  2381. }
  2382. if(connectorType3 != 0){
  2383. json_object_object_add(ChargingInfo3,"StartUserId",StartUserId[2]);
  2384. json_object_object_add(ChargingInfo3,"StartDateTime",StartDateTime[2]);
  2385. json_object_object_add(ChargingInfo3,"StopDateTime",StopDateTime[2]);
  2386. json_object_object_add(ChargingInfo3,"StartMethod",StartMethod[2]);
  2387. json_object_object_add(ChargingInfo3,"ConnectorTemp",ConnectorTemp[2]);
  2388. json_object_object_add(ChargingInfo3,"ChillerTemp",ChillerTemp[2]);
  2389. json_object_object_add(ChargingInfo3,"PresentChargingVoltage",PresentChargingVoltage[2]);
  2390. json_object_object_add(ChargingInfo3,"PresentChargingCurrent",PresentChargingCurrent[2]);
  2391. json_object_object_add(ChargingInfo3,"PresentChargingPower",PresentChargingPower[2]);
  2392. json_object_object_add(ChargingInfo3,"PresentChargedEnergy",PresentChargedEnergy[2]);
  2393. json_object_object_add(ChargingInfo3,"PresentChargedDuration",PresentChargedDuration[2]);
  2394. json_object_object_add(ChargingInfo3,"RemainChargingDuration",RemainChargingDuration[2]);
  2395. json_object_object_add(ChargingInfo3,"EvBatteryMaxVoltage",EvBatteryMaxVoltage[2]);
  2396. json_object_object_add(ChargingInfo3,"EvBatterytargetVoltage",EvBatterytargetVoltage[2]);
  2397. json_object_object_add(ChargingInfo3,"EvBatterySoc",EvBatterySoc[2]);
  2398. json_object_object_add(ChargingInfo3,"SystemStatus",SystemStatus[2]);
  2399. json_object_object_add(ChargingInfo3,"EvBatterytargetCurrent",EvBatterytargetCurrent[2]);
  2400. json_object_object_add(ChargingInfo3,"PowerConsumption",PowerConsumption[2]);
  2401. json_object_object_add(jobj2,"ChargingInfo3",ChargingInfo3);
  2402. }
  2403. if(strcmp(IsDO, "DO") == 0 || strcmp(IsDO, "DK") == 0){
  2404. if(ShmSysConfigAndInfo->SysInfo.DispenserInfo.TotalConnectorQuantity>4|| ShmSysConfigAndInfo->SysInfo.DispenserInfo.TotalConnectorQuantity<0)ShmSysConfigAndInfo->SysInfo.DispenserInfo.TotalConnectorQuantity=0;
  2405. int DDTotalConnectorQuantity = ShmSysConfigAndInfo->SysInfo.DispenserInfo.TotalConnectorQuantity;
  2406. DDChargingInfo1=json_object_new_object();
  2407. DDChargingInfo2=json_object_new_object();
  2408. DDChargingInfo3=json_object_new_object();
  2409. DDChargingInfo4=json_object_new_object();
  2410. if(DDTotalConnectorQuantity>0){
  2411. json_object_object_add(DDChargingInfo1,"StartUserId",DDStartUserId[0]);
  2412. json_object_object_add(DDChargingInfo1,"StartDateTime",DDStartDateTime[0]);
  2413. json_object_object_add(DDChargingInfo1,"StopDateTime",DDStopDateTime[0]);
  2414. json_object_object_add(DDChargingInfo1,"StartMethod",DDStartMethod[0]);
  2415. json_object_object_add(DDChargingInfo1,"ConnectorTemp",DDConnectorTemp[0]);
  2416. json_object_object_add(DDChargingInfo1,"ChillerTemp",DDChillerTemp[0]);
  2417. json_object_object_add(DDChargingInfo1,"PresentChargingVoltage",DDPresentChargingVoltage[0]);
  2418. json_object_object_add(DDChargingInfo1,"PresentChargingCurrent",DDPresentChargingCurrent[0]);
  2419. json_object_object_add(DDChargingInfo1,"PresentChargingPower",DDPresentChargingPower[0]);
  2420. json_object_object_add(DDChargingInfo1,"PresentChargedEnergy",DDPresentChargedEnergy[0]);
  2421. json_object_object_add(DDChargingInfo1,"PresentChargedDuration",DDPresentChargedDuration[0]);
  2422. json_object_object_add(DDChargingInfo1,"RemainChargingDuration",DDRemainChargingDuration[0]);
  2423. json_object_object_add(DDChargingInfo1,"EvBatteryMaxVoltage",DDEvBatteryMaxVoltage[0]);
  2424. json_object_object_add(DDChargingInfo1,"EvBatterytargetVoltage",DDEvBatterytargetVoltage[0]);
  2425. json_object_object_add(DDChargingInfo1,"EvBatterySoc",DDEvBatterySoc[0]);
  2426. json_object_object_add(DDChargingInfo1,"SystemStatus",DDSystemStatus[0]);
  2427. json_object_object_add(DDChargingInfo1,"EvBatterytargetCurrent",DDEvBatterytargetCurrent[0]);
  2428. json_object_object_add(DDChargingInfo1,"PowerConsumption",DDPowerConsumption[0]);
  2429. json_object_object_add(jobj2,"DDChargingInfo1",DDChargingInfo1);
  2430. }
  2431. if(DDTotalConnectorQuantity>1){
  2432. json_object_object_add(DDChargingInfo2,"StartUserId",DDStartUserId[1]);
  2433. json_object_object_add(DDChargingInfo2,"StartDateTime",DDStartDateTime[1]);
  2434. json_object_object_add(DDChargingInfo2,"StopDateTime",DDStopDateTime[1]);
  2435. json_object_object_add(DDChargingInfo2,"StartMethod",DDStartMethod[1]);
  2436. json_object_object_add(DDChargingInfo2,"ConnectorTemp",DDConnectorTemp[1]);
  2437. json_object_object_add(DDChargingInfo2,"ChillerTemp",DDChillerTemp[1]);
  2438. json_object_object_add(DDChargingInfo2,"PresentChargingVoltage",DDPresentChargingVoltage[1]);
  2439. json_object_object_add(DDChargingInfo2,"PresentChargingCurrent",DDPresentChargingCurrent[1]);
  2440. json_object_object_add(DDChargingInfo2,"PresentChargingPower",DDPresentChargingPower[1]);
  2441. json_object_object_add(DDChargingInfo2,"PresentChargedEnergy",DDPresentChargedEnergy[1]);
  2442. json_object_object_add(DDChargingInfo2,"PresentChargedDuration",DDPresentChargedDuration[1]);
  2443. json_object_object_add(DDChargingInfo2,"RemainChargingDuration",DDRemainChargingDuration[1]);
  2444. json_object_object_add(DDChargingInfo2,"EvBatteryMaxVoltage",DDEvBatteryMaxVoltage[1]);
  2445. json_object_object_add(DDChargingInfo2,"EvBatterytargetVoltage",DDEvBatterytargetVoltage[1]);
  2446. json_object_object_add(DDChargingInfo2,"EvBatterySoc",DDEvBatterySoc[1]);
  2447. json_object_object_add(DDChargingInfo2,"SystemStatus",DDSystemStatus[1]);
  2448. json_object_object_add(DDChargingInfo2,"EvBatterytargetCurrent",DDEvBatterytargetCurrent[1]);
  2449. json_object_object_add(DDChargingInfo2,"PowerConsumption",DDPowerConsumption[1]);
  2450. json_object_object_add(jobj2,"DDChargingInfo2",DDChargingInfo2);
  2451. }
  2452. if(DDTotalConnectorQuantity>2){
  2453. json_object_object_add(DDChargingInfo3,"StartUserId",DDStartUserId[2]);
  2454. json_object_object_add(DDChargingInfo3,"StartDateTime",DDStartDateTime[2]);
  2455. json_object_object_add(DDChargingInfo3,"StopDateTime",DDStopDateTime[2]);
  2456. json_object_object_add(DDChargingInfo3,"StartMethod",DDStartMethod[2]);
  2457. json_object_object_add(DDChargingInfo3,"ConnectorTemp",DDConnectorTemp[2]);
  2458. json_object_object_add(DDChargingInfo3,"ChillerTemp",DDChillerTemp[2]);
  2459. json_object_object_add(DDChargingInfo3,"PresentChargingVoltage",DDPresentChargingVoltage[2]);
  2460. json_object_object_add(DDChargingInfo3,"PresentChargingCurrent",DDPresentChargingCurrent[2]);
  2461. json_object_object_add(DDChargingInfo3,"PresentChargingPower",DDPresentChargingPower[2]);
  2462. json_object_object_add(DDChargingInfo3,"PresentChargedEnergy",DDPresentChargedEnergy[2]);
  2463. json_object_object_add(DDChargingInfo3,"PresentChargedDuration",DDPresentChargedDuration[2]);
  2464. json_object_object_add(DDChargingInfo3,"RemainChargingDuration",DDRemainChargingDuration[2]);
  2465. json_object_object_add(DDChargingInfo3,"EvBatteryMaxVoltage",DDEvBatteryMaxVoltage[2]);
  2466. json_object_object_add(DDChargingInfo3,"EvBatterytargetVoltage",DDEvBatterytargetVoltage[2]);
  2467. json_object_object_add(DDChargingInfo3,"EvBatterySoc",DDEvBatterySoc[2]);
  2468. json_object_object_add(DDChargingInfo3,"SystemStatus",DDSystemStatus[2]);
  2469. json_object_object_add(DDChargingInfo3,"EvBatterytargetCurrent",DDEvBatterytargetCurrent[2]);
  2470. json_object_object_add(DDChargingInfo3,"PowerConsumption",DDPowerConsumption[2]);
  2471. json_object_object_add(jobj2,"DDChargingInfo3",DDChargingInfo3);
  2472. }
  2473. if(DDTotalConnectorQuantity>3){
  2474. json_object_object_add(DDChargingInfo4,"StartUserId",DDStartUserId[3]);
  2475. json_object_object_add(DDChargingInfo4,"StartDateTime",DDStartDateTime[3]);
  2476. json_object_object_add(DDChargingInfo4,"StopDateTime",DDStopDateTime[3]);
  2477. json_object_object_add(DDChargingInfo4,"StartMethod",DDStartMethod[3]);
  2478. json_object_object_add(DDChargingInfo4,"ConnectorTemp",DDConnectorTemp[3]);
  2479. json_object_object_add(DDChargingInfo4,"ChillerTemp",DDChillerTemp[3]);
  2480. json_object_object_add(DDChargingInfo4,"PresentChargingVoltage",DDPresentChargingVoltage[3]);
  2481. json_object_object_add(DDChargingInfo4,"PresentChargingCurrent",DDPresentChargingCurrent[3]);
  2482. json_object_object_add(DDChargingInfo4,"PresentChargingPower",DDPresentChargingPower[3]);
  2483. json_object_object_add(DDChargingInfo4,"PresentChargedEnergy",DDPresentChargedEnergy[3]);
  2484. json_object_object_add(DDChargingInfo4,"PresentChargedDuration",DDPresentChargedDuration[3]);
  2485. json_object_object_add(DDChargingInfo4,"RemainChargingDuration",DDRemainChargingDuration[3]);
  2486. json_object_object_add(DDChargingInfo4,"EvBatteryMaxVoltage",DDEvBatteryMaxVoltage[3]);
  2487. json_object_object_add(DDChargingInfo4,"EvBatterytargetVoltage",DDEvBatterytargetVoltage[3]);
  2488. json_object_object_add(DDChargingInfo4,"EvBatterySoc",DDEvBatterySoc[3]);
  2489. json_object_object_add(DDChargingInfo4,"SystemStatus",DDSystemStatus[3]);
  2490. json_object_object_add(DDChargingInfo4,"EvBatterytargetCurrent",DDEvBatterytargetCurrent[3]);
  2491. json_object_object_add(DDChargingInfo4,"PowerConsumption",DDPowerConsumption[3]);
  2492. json_object_object_add(jobj2,"DDChargingInfo4",DDChargingInfo4);
  2493. }
  2494. }
  2495. printf("%s\n", json_object_to_json_string(jobj2));
  2496. json_object_put(jobj2);
  2497. //network
  2498. json_object_object_add(jobj3,"InternetConn",InternetConn);
  2499. json_object_object_add(jobj3,"FtpServer",FtpServer);
  2500. json_object_object_add(jobj3,"Eth0DhcpClient",Eth0DhcpClient);
  2501. json_object_object_add(jobj3,"Eth0MacAddress",Eth0MacAddress);
  2502. json_object_object_add(jobj3,"Eth0IpAddress",Eth0IpAddress);
  2503. json_object_object_add(jobj3,"Eth0SubmaskAddress",Eth0SubmaskAddress);
  2504. json_object_object_add(jobj3,"Eth0GatewayAddress",Eth0GatewayAddress);
  2505. json_object_object_add(jobj3,"Eth1DhcpClient",Eth1DhcpClient);
  2506. json_object_object_add(jobj3,"Eth1MacAddress",Eth1MacAddress);
  2507. json_object_object_add(jobj3,"Eth1IpAddress",Eth1IpAddress);
  2508. json_object_object_add(jobj3,"Eth1SubmaskAddress",Eth1SubmaskAddress);
  2509. json_object_object_add(jobj3,"Eth1GatewayAddress",Eth1GatewayAddress);
  2510. json_object_object_add(jobj3,"WifiMode",WifiMode);
  2511. json_object_object_add(jobj3,"WifiSsid",WifiSsid);
  2512. json_object_object_add(jobj3,"WifiPassword",WifiPassword);
  2513. json_object_object_add(jobj3,"WifiRssi",WifiRssi);
  2514. json_object_object_add(jobj3,"WifiDhcpServer",WifiDhcpServer);
  2515. json_object_object_add(jobj3,"WifiDhcpClient",WifiDhcpClient);
  2516. json_object_object_add(jobj3,"WifiMacAddress",WifiMacAddress);
  2517. json_object_object_add(jobj3,"WifiIpAddress",WifiIpAddress);
  2518. json_object_object_add(jobj3,"WifiSubmaskAddress",WifiSubmaskAddress);
  2519. json_object_object_add(jobj3,"WifiGatewayAddress",WifiGatewayAddress);
  2520. json_object_object_add(jobj3,"WifiNetworkConn",WifiNetworkConn);
  2521. json_object_object_add(jobj3,"TelcomApn",TelcomApn);
  2522. json_object_object_add(jobj3,"TelcomRssi",TelcomRssi);
  2523. json_object_object_add(jobj3,"TelcomChapPapId",TelcomChapPapId);
  2524. json_object_object_add(jobj3,"TelcomChapPapPwd",TelcomChapPapPwd);
  2525. json_object_object_add(jobj3,"TelcomModemImei",TelcomModemImei);
  2526. json_object_object_add(jobj3,"TelcomSimImsi",TelcomSimImsi);
  2527. json_object_object_add(jobj3,"TelcomSimIccid",TelcomSimIccid);
  2528. json_object_object_add(jobj3,"TelcomSimStatus",TelcomSimStatus);
  2529. json_object_object_add(jobj3,"TelcomModemMode",TelcomModemMode);
  2530. json_object_object_add(jobj3,"TelcomIpAddress",TelcomIpAddress);
  2531. json_object_object_add(jobj3,"TelcomNetworkConn",TelcomNetworkConn);
  2532. json_object_object_add(jobj3,"TelcomEnabled",TelcomEnabled);
  2533. printf("%s\n", json_object_to_json_string(jobj3));
  2534. json_object_put(jobj3);
  2535. //backend
  2536. json_object_object_add(jobj4,"BackendConnTimeout",BackendConnTimeout);
  2537. json_object_object_add(jobj4,"OfflinePolicy",OfflinePolicy);
  2538. json_object_object_add(jobj4,"OfflineMaxChargeEnergy",OfflineMaxChargeEnergy);
  2539. json_object_object_add(jobj4,"OfflineMaxChargeDuration",OfflineMaxChargeDuration);
  2540. json_object_object_add(jobj4,"OcppConnStatus",OcppConnStatus);
  2541. json_object_object_add(jobj4,"OcppServerURL",OcppServerURL);
  2542. json_object_object_add(jobj4,"ChargeBoxId",ChargeBoxId);
  2543. json_object_object_add(jobj4,"chargePointVendor",chargePointVendor);
  2544. json_object_object_add(jobj4,"OcppSecurityProfile",OcppSecurityProfile);
  2545. json_object_object_add(jobj4,"OcppSecurityPassword",OcppSecurityPassword);
  2546. if(strcmp(IsDO, "AX") == 0){
  2547. json_object_object_add(jobj4,"isEnableLocalPowerSharging",isEnableLocalPowerSharging);
  2548. }
  2549. printf("%s\n", json_object_to_json_string(jobj4));
  2550. json_object_put(jobj4);
  2551. }
  2552. // for(;;)
  2553. // {
  2554. // }
  2555. return FAIL;
  2556. }