WebService.c 172 KB

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