WebService.c 184 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219
  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 || strcmp(connector, "Y") == 0 || strcmp(connector, "Z") == 0 || strcmp(connector, "I") == 0 || strcmp(connector, "Q") == 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 || strcmp(connector, "L") == 0 || strcmp(connector, "S") == 0 || strcmp(connector, "O") == 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 MaxChargingVoltage = 0;
  678. int AcMaxChargingCurrent = 0;
  679. int MaxChargingDuration = 0;
  680. int MaxChargingSoc = 0;
  681. int StopChargingByButton = 0;
  682. int FanControlPolicy = 0;
  683. char *LocalWhiteCard0 = NULL;
  684. char *LocalWhiteCard1 = NULL;
  685. char *LocalWhiteCard2 = NULL;
  686. char *LocalWhiteCard3 = NULL;
  687. char *LocalWhiteCard4 = NULL;
  688. char *LocalWhiteCard5 = NULL;
  689. char *LocalWhiteCard6 = NULL;
  690. char *LocalWhiteCard7 = NULL;
  691. char *LocalWhiteCard8 = NULL;
  692. char *LocalWhiteCard9 = NULL;
  693. char isBilling = 0;
  694. char Currency = 0;
  695. float Fee0 = 0;
  696. float Fee1 = 0;
  697. float Fee2 = 0;
  698. float Fee3 = 0;
  699. float Fee4 = 0;
  700. float Fee5 = 0;
  701. float Fee6 = 0;
  702. float Fee7 = 0;
  703. float Fee8 = 0;
  704. float Fee9 = 0;
  705. float Fee10 = 0;
  706. float Fee11 = 0;
  707. float Fee12 = 0;
  708. float Fee13 = 0;
  709. float Fee14 = 0;
  710. float Fee15 = 0;
  711. float Fee16 = 0;
  712. float Fee17 = 0;
  713. float Fee18 = 0;
  714. float Fee19 = 0;
  715. float Fee20 = 0;
  716. float Fee21 = 0;
  717. float Fee22 = 0;
  718. float Fee23 = 0;
  719. if( json_object_object_get_ex(jobj, "MaxChargingEnergy", &val_obj) ) {
  720. MaxChargingEnergy = json_object_get_int(val_obj);
  721. ShmSysConfigAndInfo->SysConfig.MaxChargingEnergy = MaxChargingEnergy;
  722. }
  723. if( json_object_object_get_ex(jobj, "MaxChargingPower", &val_obj) ) {
  724. MaxChargingPower = json_object_get_int(val_obj);
  725. ShmSysConfigAndInfo->SysConfig.MaxChargingPower = MaxChargingPower;
  726. }
  727. if( json_object_object_get_ex(jobj, "MaxChargingCurrent", &val_obj) ) {
  728. MaxChargingCurrent = json_object_get_int(val_obj);
  729. ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent = MaxChargingCurrent;
  730. }
  731. if( json_object_object_get_ex(jobj, "MaxChargingVoltage", &val_obj) ) {
  732. MaxChargingVoltage = json_object_get_int(val_obj);
  733. ShmSysConfigAndInfo->SysConfig.MaxChargingVoltage = MaxChargingVoltage;
  734. }
  735. if( json_object_object_get_ex(jobj, "AcMaxChargingCurrent", &val_obj) ) {
  736. AcMaxChargingCurrent = json_object_get_int(val_obj);
  737. ShmSysConfigAndInfo->SysConfig.AcMaxChargingCurrent = AcMaxChargingCurrent;
  738. }
  739. if( json_object_object_get_ex(jobj, "MaxChargingDuration", &val_obj) ) {
  740. MaxChargingDuration = json_object_get_int(val_obj);
  741. ShmSysConfigAndInfo->SysConfig.MaxChargingDuration = MaxChargingDuration;
  742. }
  743. if( json_object_object_get_ex(jobj, "MaxChargingSoc", &val_obj) ) {
  744. MaxChargingSoc = json_object_get_int(val_obj);
  745. ShmSysConfigAndInfo->SysConfig.MaxChargingSoc = MaxChargingSoc;
  746. }
  747. if( json_object_object_get_ex(jobj, "StopChargingByButton", &val_obj) ) {
  748. StopChargingByButton = json_object_get_int(val_obj);
  749. ShmSysConfigAndInfo->SysConfig.StopChargingByButton = StopChargingByButton;
  750. }
  751. if( json_object_object_get_ex(jobj, "FanControlPolicy", &val_obj) ) {
  752. FanControlPolicy = json_object_get_int(val_obj);
  753. ShmSysConfigAndInfo->SysConfig.FanControlPolicy = FanControlPolicy;
  754. }
  755. if( json_object_object_get_ex(jobj, "LocalWhiteCard0", &val_obj) ) {
  756. LocalWhiteCard0 = (char*)json_object_get_string(val_obj);
  757. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[0],LocalWhiteCard0);
  758. }
  759. if( json_object_object_get_ex(jobj, "LocalWhiteCard1", &val_obj) ) {
  760. LocalWhiteCard1 = (char*)json_object_get_string(val_obj);
  761. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[1],LocalWhiteCard1);
  762. }
  763. if( json_object_object_get_ex(jobj, "LocalWhiteCard2", &val_obj) ) {
  764. LocalWhiteCard2 = (char*)json_object_get_string(val_obj);
  765. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[2],LocalWhiteCard2);
  766. }
  767. if( json_object_object_get_ex(jobj, "LocalWhiteCard3", &val_obj) ) {
  768. LocalWhiteCard3 = (char*)json_object_get_string(val_obj);
  769. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[3],LocalWhiteCard3);
  770. }
  771. if( json_object_object_get_ex(jobj, "LocalWhiteCard4", &val_obj) ) {
  772. LocalWhiteCard4 = (char*)json_object_get_string(val_obj);
  773. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[4],LocalWhiteCard4);
  774. }
  775. if( json_object_object_get_ex(jobj, "LocalWhiteCard5", &val_obj) ) {
  776. LocalWhiteCard5 = (char*)json_object_get_string(val_obj);
  777. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[5],LocalWhiteCard5);
  778. }
  779. if( json_object_object_get_ex(jobj, "LocalWhiteCard6", &val_obj) ) {
  780. LocalWhiteCard6 = (char*)json_object_get_string(val_obj);
  781. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[6],LocalWhiteCard6);
  782. }
  783. if( json_object_object_get_ex(jobj, "LocalWhiteCard7", &val_obj) ) {
  784. LocalWhiteCard7 = (char*)json_object_get_string(val_obj);
  785. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[7],LocalWhiteCard7);
  786. }
  787. if( json_object_object_get_ex(jobj, "LocalWhiteCard8", &val_obj) ) {
  788. LocalWhiteCard8 = (char*)json_object_get_string(val_obj);
  789. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[8],LocalWhiteCard8);
  790. }
  791. if( json_object_object_get_ex(jobj, "LocalWhiteCard9", &val_obj) ) {
  792. LocalWhiteCard9 = (char*)json_object_get_string(val_obj);
  793. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[9],LocalWhiteCard9);
  794. }
  795. if( json_object_object_get_ex(jobj, "isBilling", &val_obj) ) {
  796. isBilling = json_object_get_int(val_obj);
  797. ShmSysConfigAndInfo->SysConfig.BillingData.isBilling = isBilling;
  798. }
  799. if( json_object_object_get_ex(jobj, "Currency", &val_obj) ) {
  800. Currency = json_object_get_int(val_obj);
  801. ShmSysConfigAndInfo->SysConfig.BillingData.Currency = Currency;
  802. }
  803. if( json_object_object_get_ex(jobj, "Fee0", &val_obj) ) {
  804. Fee0 = json_object_get_double(val_obj);
  805. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[0] = rounding(Fee0);
  806. }
  807. if( json_object_object_get_ex(jobj, "Fee1", &val_obj) ) {
  808. Fee1 = json_object_get_double(val_obj);
  809. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[1] = rounding(Fee1);
  810. }
  811. if( json_object_object_get_ex(jobj, "Fee2", &val_obj) ) {
  812. Fee2 = json_object_get_double(val_obj);
  813. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[2] = rounding(Fee2);
  814. }
  815. if( json_object_object_get_ex(jobj, "Fee3", &val_obj) ) {
  816. Fee3 = json_object_get_double(val_obj);
  817. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[3] = rounding(Fee3);
  818. }
  819. if( json_object_object_get_ex(jobj, "Fee4", &val_obj) ) {
  820. Fee4 = json_object_get_double(val_obj);
  821. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[4] = rounding(Fee4);
  822. }
  823. if( json_object_object_get_ex(jobj, "Fee5", &val_obj) ) {
  824. Fee5 = json_object_get_double(val_obj);
  825. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[5] = rounding(Fee5);
  826. }
  827. if( json_object_object_get_ex(jobj, "Fee6", &val_obj) ) {
  828. Fee6 = json_object_get_double(val_obj);
  829. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[6] = rounding(Fee6);
  830. }
  831. if( json_object_object_get_ex(jobj, "Fee7", &val_obj) ) {
  832. Fee7 = json_object_get_double(val_obj);
  833. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[7] = rounding(Fee7);
  834. }
  835. if( json_object_object_get_ex(jobj, "Fee8", &val_obj) ) {
  836. Fee8 = json_object_get_double(val_obj);
  837. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[8] = rounding(Fee8);
  838. }
  839. if( json_object_object_get_ex(jobj, "Fee9", &val_obj) ) {
  840. Fee9 = json_object_get_double(val_obj);
  841. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[9] = rounding(Fee9);
  842. }
  843. if( json_object_object_get_ex(jobj, "Fee10", &val_obj) ) {
  844. Fee10 = json_object_get_double(val_obj);
  845. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[10] = rounding(Fee10);
  846. }
  847. if( json_object_object_get_ex(jobj, "Fee11", &val_obj) ) {
  848. Fee11 = json_object_get_double(val_obj);
  849. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[11] = rounding(Fee11);
  850. }
  851. if( json_object_object_get_ex(jobj, "Fee12", &val_obj) ) {
  852. Fee12 = json_object_get_double(val_obj);
  853. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[12] = rounding(Fee12);
  854. }
  855. if( json_object_object_get_ex(jobj, "Fee13", &val_obj) ) {
  856. Fee13 = json_object_get_double(val_obj);
  857. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[13] = rounding(Fee13);
  858. }
  859. if( json_object_object_get_ex(jobj, "Fee14", &val_obj) ) {
  860. Fee14 = json_object_get_double(val_obj);
  861. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[14] = rounding(Fee14);
  862. }
  863. if( json_object_object_get_ex(jobj, "Fee15", &val_obj) ) {
  864. Fee15 = json_object_get_double(val_obj);
  865. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[15] = rounding(Fee15);
  866. }
  867. if( json_object_object_get_ex(jobj, "Fee16", &val_obj) ) {
  868. Fee16 = json_object_get_double(val_obj);
  869. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[16] = rounding(Fee16);
  870. }
  871. if( json_object_object_get_ex(jobj, "Fee17", &val_obj) ) {
  872. Fee17 = json_object_get_double(val_obj);
  873. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[17] = rounding(Fee17);
  874. }
  875. if( json_object_object_get_ex(jobj, "Fee18", &val_obj) ) {
  876. Fee18 = json_object_get_double(val_obj);
  877. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[18] = rounding(Fee18);
  878. }
  879. if( json_object_object_get_ex(jobj, "Fee19", &val_obj) ) {
  880. Fee19 = json_object_get_double(val_obj);
  881. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[19] = rounding(Fee19);
  882. }
  883. if( json_object_object_get_ex(jobj, "Fee20", &val_obj) ) {
  884. Fee20 = json_object_get_double(val_obj);
  885. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[20] = rounding(Fee20);
  886. }
  887. if( json_object_object_get_ex(jobj, "Fee21", &val_obj) ) {
  888. Fee21 = json_object_get_double(val_obj);
  889. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[21] = rounding(Fee21);
  890. }
  891. if( json_object_object_get_ex(jobj, "Fee22", &val_obj) ) {
  892. Fee22 = json_object_get_double(val_obj);
  893. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[22] = rounding(Fee22);
  894. }
  895. if( json_object_object_get_ex(jobj, "Fee23", &val_obj) ) {
  896. Fee23 = json_object_get_double(val_obj);
  897. ShmSysConfigAndInfo->SysConfig.BillingData.Fee[23] = rounding(Fee23);
  898. }
  899. }
  900. if (strcmp(argv[1], "3") == 0) {
  901. struct json_object *jobj = json_tokener_parse(argv[2]);
  902. json_object *val_obj = NULL;
  903. int Eth0DhcpClient=0;
  904. char *Eth0IpAddress=NULL;
  905. char *Eth0SubmaskAddress=NULL;
  906. char *Eth0GatewayAddress=NULL;
  907. int WifiMode=0;
  908. char *WifiSsid=NULL;
  909. char *WifiPassword=NULL;
  910. int WifiBroadcastSsid=0;
  911. char *WifiTargetBssidMac=NULL;
  912. int WifiDhcpServer=0;
  913. int WifiDhcpClient=0;
  914. char *WifiIpAddress=NULL;
  915. char *WifiSubmaskAddress=NULL;
  916. char *WifiGatewayAddress=NULL;
  917. char *TelcomApn=NULL;
  918. char *TelcomChapPapId=NULL;
  919. char *TelcomChapPapPwd=NULL;
  920. char *TelcomIpAddress=NULL;
  921. char TelcomEnabled=0;
  922. char TelcomNetworkType=0;
  923. char Wcnt=0;
  924. char Tcnt=0;
  925. if( json_object_object_get_ex(jobj, "Eth0DhcpClient", &val_obj) ) {
  926. Eth0DhcpClient = json_object_get_int(val_obj);
  927. ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthDhcpClient=Eth0DhcpClient;
  928. }
  929. if( json_object_object_get_ex(jobj, "Eth0IpAddress", &val_obj) ) {
  930. Eth0IpAddress = (char*)json_object_get_string(val_obj);
  931. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthIpAddress,Eth0IpAddress);
  932. }
  933. if( json_object_object_get_ex(jobj, "Eth0SubmaskAddress", &val_obj) ) {
  934. Eth0SubmaskAddress = (char*)json_object_get_string(val_obj);
  935. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthSubmaskAddress,Eth0SubmaskAddress);
  936. }
  937. if( json_object_object_get_ex(jobj, "Eth0GatewayAddress", &val_obj) ) {
  938. Eth0GatewayAddress = (char*)json_object_get_string(val_obj);
  939. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthGatewayAddress,Eth0GatewayAddress);
  940. }
  941. if( json_object_object_get_ex(jobj, "WifiMode", &val_obj) ) {
  942. WifiMode = json_object_get_int(val_obj);
  943. if(WifiMode!=ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMode) Wcnt++;
  944. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMode=WifiMode;
  945. }
  946. if( json_object_object_get_ex(jobj, "WifiSsid", &val_obj) ) {
  947. WifiSsid = (char*)json_object_get_string(val_obj);
  948. if (strcmp(WifiSsid, (char*)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSsid) != 0) Wcnt++;
  949. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSsid,WifiSsid);
  950. }
  951. if( json_object_object_get_ex(jobj, "WifiPassword", &val_obj) ) {
  952. WifiPassword = (char*)json_object_get_string(val_obj);
  953. if (strcmp(WifiSsid, (char*)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSsid) != 0) Wcnt++;
  954. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiPassword,WifiPassword);
  955. }
  956. if( json_object_object_get_ex(jobj, "WifiBroadcastSsid", &val_obj) ) {
  957. WifiBroadcastSsid = json_object_get_int(val_obj);
  958. if(WifiBroadcastSsid!=ShmSysConfigAndInfo->SysConfig.AthInterface.WifiBroadcastSsid) Wcnt++;
  959. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiBroadcastSsid=WifiBroadcastSsid;
  960. }
  961. if( json_object_object_get_ex(jobj, "WifiTargetBssidMac", &val_obj) ) {
  962. WifiTargetBssidMac = (char*)json_object_get_string(val_obj);
  963. if (strcmp(WifiTargetBssidMac, (char*)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiTargetBssidMac) != 0) Wcnt++;
  964. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiTargetBssidMac,WifiTargetBssidMac);
  965. }
  966. if( json_object_object_get_ex(jobj, "WifiDhcpServer", &val_obj) ) {
  967. WifiDhcpServer = json_object_get_int(val_obj);
  968. if(WifiDhcpServer!=ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpServer) Wcnt++;
  969. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpServer=WifiDhcpServer;
  970. }
  971. if( json_object_object_get_ex(jobj, "WifiDhcpClient", &val_obj) ) {
  972. WifiDhcpClient = json_object_get_int(val_obj);
  973. if(WifiDhcpClient!=ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpClient) Wcnt++;
  974. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpClient=WifiDhcpClient;
  975. }
  976. if( json_object_object_get_ex(jobj, "WifiIpAddress", &val_obj) ) {
  977. WifiIpAddress = (char*)json_object_get_string(val_obj);
  978. if (strcmp(WifiIpAddress, (char*)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiIpAddress) != 0) Wcnt++;
  979. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiIpAddress,WifiIpAddress);
  980. }
  981. if( json_object_object_get_ex(jobj, "WifiSubmaskAddress", &val_obj) ) {
  982. WifiSubmaskAddress = (char*)json_object_get_string(val_obj);
  983. if (strcmp(WifiSubmaskAddress, (char*)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSubmaskAddress) != 0) Wcnt++;
  984. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSubmaskAddress,WifiSubmaskAddress);
  985. }
  986. if( json_object_object_get_ex(jobj, "WifiGatewayAddress", &val_obj) ) {
  987. WifiGatewayAddress = (char*)json_object_get_string(val_obj);
  988. if (strcmp(WifiGatewayAddress, (char*)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiGatewayAddress) != 0) Wcnt++;
  989. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiGatewayAddress,WifiGatewayAddress);
  990. }
  991. if( json_object_object_get_ex(jobj, "TelcomApn", &val_obj) ) {
  992. TelcomApn = (char*)json_object_get_string(val_obj);
  993. if (strcmp(TelcomApn, (char*)ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomApn) != 0) Tcnt++;
  994. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomApn,TelcomApn);
  995. }
  996. if( json_object_object_get_ex(jobj, "TelcomChapPapId", &val_obj) ) {
  997. TelcomChapPapId = (char*)json_object_get_string(val_obj);
  998. if (strcmp(TelcomChapPapId, (char*)ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapId) != 0) Tcnt++;
  999. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapId,TelcomChapPapId);
  1000. }
  1001. if( json_object_object_get_ex(jobj, "TelcomChapPapPwd", &val_obj) ) {
  1002. TelcomChapPapPwd = (char*)json_object_get_string(val_obj);
  1003. if (strcmp(TelcomChapPapPwd, (char*)ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapPwd) != 0) Tcnt++;
  1004. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapPwd,TelcomChapPapPwd);
  1005. }
  1006. if( json_object_object_get_ex(jobj, "TelcomIpAddress", &val_obj) ) {
  1007. TelcomIpAddress = (char*)json_object_get_string(val_obj);
  1008. if (strcmp(TelcomIpAddress, (char*)ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomIpAddress) != 0) Tcnt++;
  1009. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomIpAddress,TelcomIpAddress);
  1010. }
  1011. if( json_object_object_get_ex(jobj, "TelcomEnabled", &val_obj) ) {
  1012. TelcomEnabled = json_object_get_int(val_obj);
  1013. if(TelcomEnabled!=ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomEnabled) Tcnt++;
  1014. ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomEnabled=TelcomEnabled;
  1015. }
  1016. if( json_object_object_get_ex(jobj, "TelcomNetworkType", &val_obj) ) {
  1017. TelcomNetworkType = json_object_get_int(val_obj);
  1018. if(TelcomNetworkType!=ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomNetworkType) Tcnt++;
  1019. ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomNetworkType=TelcomNetworkType;
  1020. }
  1021. if(Wcnt>0){
  1022. system ("pkill Module_Wifi");
  1023. }
  1024. if(Tcnt>0){
  1025. system ("pkill Module_4g");
  1026. system ("killall 4GDetection");
  1027. system ("killall pppd");
  1028. }
  1029. }
  1030. if (strcmp(argv[1], "4") == 0) {
  1031. struct json_object *jobj = json_tokener_parse(argv[2]);
  1032. json_object *val_obj = NULL;
  1033. int BackendConnTimeout=0;
  1034. int OfflinePolicy=0;
  1035. int OfflineMaxChargeEnergy=0;
  1036. int OfflineMaxChargeDuration=0;
  1037. char *OcppServerURL=NULL;
  1038. char *ChargeBoxId=NULL;
  1039. char *chargePointVendor=NULL;
  1040. int OcppSecurityProfile=0;
  1041. int MaintainServerSecurityProfile=0;
  1042. char *OcppSecurityPassword=NULL;
  1043. char *MaintainServerSecurityPassword=NULL;
  1044. int isEnableLocalPowerSharging=0;
  1045. int PowerSharingCapacity=0;
  1046. char *PowerSharingServerIP=NULL;
  1047. char *OcppReceiptrURL=NULL;
  1048. char *MaintainServerURL=NULL;
  1049. /*for TTIA*/
  1050. char isEnableTTIA=0;
  1051. char *server_addr=NULL;
  1052. int server_port=0;
  1053. int busVenderId=0;
  1054. char *EquipmentProvider=NULL;
  1055. char TransportationCompanyNo=0;
  1056. char TTIAChargeBoxId=0;
  1057. char *evseStation=NULL;
  1058. if( json_object_object_get_ex(jobj, "BackendConnTimeout", &val_obj) ) {
  1059. BackendConnTimeout = json_object_get_int(val_obj);
  1060. ShmSysConfigAndInfo->SysConfig.BackendConnTimeout = BackendConnTimeout;
  1061. }
  1062. if( json_object_object_get_ex(jobj, "OfflinePolicy", &val_obj) ) {
  1063. OfflinePolicy = json_object_get_int(val_obj);
  1064. ShmSysConfigAndInfo->SysConfig.OfflinePolicy = OfflinePolicy;
  1065. }
  1066. if( json_object_object_get_ex(jobj, "OfflineMaxChargeEnergy", &val_obj) ) {
  1067. OfflineMaxChargeEnergy = json_object_get_int(val_obj);
  1068. ShmSysConfigAndInfo->SysConfig.OfflineMaxChargeEnergy = OfflineMaxChargeEnergy;
  1069. }
  1070. if( json_object_object_get_ex(jobj, "OfflineMaxChargeDuration", &val_obj) ) {
  1071. OfflineMaxChargeDuration = json_object_get_int(val_obj);
  1072. ShmSysConfigAndInfo->SysConfig.OfflineMaxChargeDuration = OfflineMaxChargeDuration;
  1073. }
  1074. if( json_object_object_get_ex(jobj, "OcppServerURL", &val_obj) ) {
  1075. OcppServerURL = (char*)json_object_get_string(val_obj);
  1076. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.OcppServerURL,OcppServerURL);
  1077. }
  1078. if( json_object_object_get_ex(jobj, "ChargeBoxId", &val_obj) ) {
  1079. ChargeBoxId = (char*)json_object_get_string(val_obj);
  1080. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.ChargeBoxId,ChargeBoxId);
  1081. }
  1082. if( json_object_object_get_ex(jobj, "chargePointVendor", &val_obj) ) {
  1083. chargePointVendor = (char*)json_object_get_string(val_obj);
  1084. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.chargePointVendor,chargePointVendor);
  1085. }
  1086. if( json_object_object_get_ex(jobj, "OcppSecurityProfile", &val_obj) ) {
  1087. OcppSecurityProfile = json_object_get_int(val_obj);
  1088. ShmSysConfigAndInfo->SysConfig.OcppSecurityProfile = OcppSecurityProfile;
  1089. }
  1090. if( json_object_object_get_ex(jobj, "OcppSecurityPassword", &val_obj) ) {
  1091. OcppSecurityPassword = (char*)json_object_get_string(val_obj);
  1092. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.OcppSecurityPassword,OcppSecurityPassword);
  1093. }
  1094. if( json_object_object_get_ex(jobj, "MaintainServerSecurityProfile", &val_obj) ) {
  1095. MaintainServerSecurityProfile = json_object_get_int(val_obj);
  1096. ShmSysConfigAndInfo->SysConfig.MaintainServerSecurityProfile = MaintainServerSecurityProfile;
  1097. }
  1098. if( json_object_object_get_ex(jobj, "MaintainServerSecurityPassword", &val_obj) ) {
  1099. MaintainServerSecurityPassword = (char*)json_object_get_string(val_obj);
  1100. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.MaintainServerSecurityPassword,MaintainServerSecurityPassword);
  1101. }
  1102. if( json_object_object_get_ex(jobj, "isEnableLocalPowerSharging", &val_obj) ) {
  1103. isEnableLocalPowerSharging = json_object_get_int(val_obj);
  1104. ShmSysConfigAndInfo->SysConfig.isEnableLocalPowerSharing = isEnableLocalPowerSharging;
  1105. }
  1106. if( json_object_object_get_ex(jobj, "PowerSharingCapacity", &val_obj) ) {
  1107. PowerSharingCapacity = json_object_get_int(val_obj);
  1108. ShmSysConfigAndInfo->SysConfig.PowerSharingCapacityPower = PowerSharingCapacity;
  1109. }
  1110. if( json_object_object_get_ex(jobj, "PowerSharingServerIP", &val_obj) ) {
  1111. PowerSharingServerIP = (char*)json_object_get_string(val_obj);
  1112. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.PowerSharingServerIP,PowerSharingServerIP);
  1113. }
  1114. if( json_object_object_get_ex(jobj, "OcppReceiptrURL", &val_obj) ) {
  1115. OcppReceiptrURL = (char*)json_object_get_string(val_obj);
  1116. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.OcppReceiptrURL,OcppReceiptrURL);
  1117. }
  1118. if( json_object_object_get_ex(jobj, "MaintainServerURL", &val_obj) ) {
  1119. MaintainServerURL = (char*)json_object_get_string(val_obj);
  1120. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.MaintainServerURL,MaintainServerURL);
  1121. }
  1122. /*for TTIA*/
  1123. if( json_object_object_get_ex(jobj, "isEnableTTIA", &val_obj) ) {
  1124. isEnableTTIA = json_object_get_int(val_obj);
  1125. ShmSysConfigAndInfo->SysConfig.TTIA_Info.isEnableTTIA = isEnableTTIA;
  1126. }
  1127. if( json_object_object_get_ex(jobj, "server_addr", &val_obj) ) {
  1128. server_addr = (char*)json_object_get_string(val_obj);
  1129. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TTIA_Info.server_addr,server_addr);
  1130. }
  1131. if( json_object_object_get_ex(jobj, "server_port", &val_obj) ) {
  1132. server_port = json_object_get_int(val_obj);
  1133. ShmSysConfigAndInfo->SysConfig.TTIA_Info.server_port = server_port;
  1134. }
  1135. if( json_object_object_get_ex(jobj, "busVenderId", &val_obj) ) {
  1136. busVenderId = json_object_get_int(val_obj);
  1137. ShmSysConfigAndInfo->SysConfig.TTIA_Info.busVenderId = busVenderId;
  1138. }
  1139. if( json_object_object_get_ex(jobj, "EquipmentProvider", &val_obj) ) {
  1140. EquipmentProvider = (char*)json_object_get_string(val_obj);
  1141. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TTIA_Info.EquipmentProvider,EquipmentProvider);
  1142. }
  1143. if( json_object_object_get_ex(jobj, "TransportationCompanyNo", &val_obj) ) {
  1144. TransportationCompanyNo = json_object_get_int(val_obj);
  1145. ShmSysConfigAndInfo->SysConfig.TTIA_Info.TransportationCompanyNo = TransportationCompanyNo;
  1146. }
  1147. if( json_object_object_get_ex(jobj, "TTIAChargeBoxId", &val_obj) ) {
  1148. TTIAChargeBoxId = json_object_get_int(val_obj);
  1149. ShmSysConfigAndInfo->SysConfig.TTIA_Info.ChargeBoxId = TTIAChargeBoxId;
  1150. }
  1151. if( json_object_object_get_ex(jobj, "evseStation", &val_obj) ) {
  1152. evseStation = (char*)json_object_get_string(val_obj);
  1153. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TTIA_Info.evseStation,evseStation);
  1154. }
  1155. }
  1156. struct SysConfigData SysConfig;
  1157. memcpy(&SysConfig, &ShmSysConfigAndInfo->SysConfig, sizeof(struct SysConfigData));
  1158. int result = StoreUsrConfigData(&SysConfig);
  1159. if(result != 1){
  1160. #ifdef SystemLogMessage
  1161. StoreLogMsg("[WebService]StoreUsrConfigData: normal NG");
  1162. #endif
  1163. }
  1164. else{
  1165. #ifdef SystemLogMessage
  1166. StoreLogMsg("[WebService]StoreUsrConfigData: normal OK");
  1167. #endif
  1168. }
  1169. #ifdef SystemLogMessage
  1170. DEBUG_INFO("WebServiceConfig update OK");
  1171. #endif
  1172. }
  1173. //web api
  1174. if ((argc == 3) & (strlen(argv[1]) == 2)) {
  1175. if (strcmp(argv[1], "21") == 0) {
  1176. struct json_object *jobj = json_tokener_parse(argv[2]);
  1177. json_object *val_obj = NULL;
  1178. int MaxChargingEnergy= 0;
  1179. int MaxChargingPower = 0;
  1180. int MaxChargingCurrent = 0;
  1181. int MaxChargingVoltage = 0;
  1182. int AcMaxChargingCurrent = 0;
  1183. int MaxChargingDuration = 0;
  1184. int MaxChargingSoc = 0;
  1185. if( json_object_object_get_ex(jobj, "MaxChargingEnergy", &val_obj) ) {
  1186. MaxChargingEnergy = json_object_get_int(val_obj);
  1187. ShmSysConfigAndInfo->SysConfig.MaxChargingEnergy = MaxChargingEnergy;
  1188. }
  1189. if( json_object_object_get_ex(jobj, "MaxChargingPower", &val_obj) ) {
  1190. MaxChargingPower = json_object_get_int(val_obj);
  1191. ShmSysConfigAndInfo->SysConfig.MaxChargingPower = MaxChargingPower;
  1192. }
  1193. if( json_object_object_get_ex(jobj, "MaxChargingCurrent", &val_obj) ) {
  1194. MaxChargingCurrent = json_object_get_int(val_obj);
  1195. ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent = MaxChargingCurrent;
  1196. }
  1197. if( json_object_object_get_ex(jobj, "MaxChargingVoltage", &val_obj) ) {
  1198. MaxChargingVoltage = json_object_get_int(val_obj);
  1199. ShmSysConfigAndInfo->SysConfig.MaxChargingVoltage = MaxChargingVoltage;
  1200. }
  1201. if( json_object_object_get_ex(jobj, "AcMaxChargingCurrent", &val_obj) ) {
  1202. AcMaxChargingCurrent = json_object_get_int(val_obj);
  1203. ShmSysConfigAndInfo->SysConfig.AcMaxChargingCurrent = AcMaxChargingCurrent;
  1204. }
  1205. if( json_object_object_get_ex(jobj, "MaxChargingDuration", &val_obj) ) {
  1206. MaxChargingDuration = json_object_get_int(val_obj);
  1207. ShmSysConfigAndInfo->SysConfig.MaxChargingDuration = MaxChargingDuration;
  1208. }
  1209. if( json_object_object_get_ex(jobj, "MaxChargingSoc", &val_obj) ) {
  1210. MaxChargingSoc = json_object_get_int(val_obj);
  1211. ShmSysConfigAndInfo->SysConfig.MaxChargingSoc = MaxChargingSoc;
  1212. }
  1213. DEBUG_INFO("WebService Remote Api update OK");
  1214. }
  1215. }
  1216. if (argc == 2)
  1217. { //init share memory for test
  1218. if (strcmp(argv[1], "aaa") == 0)
  1219. {
  1220. //struct SysConfigData SysConfig;
  1221. //system
  1222. ShmSysConfigAndInfo->SysInfo.DispenserInfo.DispenserQuantity=1;
  1223. ShmSysConfigAndInfo->SysInfo.DispenserInfo.TotalConnectorQuantity=1;
  1224. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.ModelName, "DO0E362001D1P0D");
  1225. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.SerialNumber, "SerialNumber");
  1226. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.SystemId, "1234567890");
  1227. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.SystemDateTime, "2019-12-31 23:59:59");
  1228. ShmSysConfigAndInfo->SysConfig.AcPhaseCount=1;
  1229. ShmSysConfigAndInfo->SysConfig.PhaseLossPolicy=0;
  1230. ShmSysConfigAndInfo->SysInfo.FactoryConfiguration=0;
  1231. ShmSysConfigAndInfo->SysConfig.AuthorisationMode=0;
  1232. ShmSysConfigAndInfo->SysConfig.DefaultLanguage=0;
  1233. ShmSysConfigAndInfo->SysInfo.InputVoltageR=0;
  1234. ShmSysConfigAndInfo->SysInfo.InputVoltageS=0;
  1235. ShmSysConfigAndInfo->SysInfo.InputVoltageT=0;
  1236. ShmSysConfigAndInfo->SysInfo.SystemFanRotaSpeed=0;
  1237. ShmSysConfigAndInfo->SysInfo.PsuFanRotaSpeed=0;
  1238. ShmSysConfigAndInfo->SysConfig.RfidCardNumEndian=0;
  1239. ShmSysConfigAndInfo->SysConfig.RatingCurrent=100;
  1240. ShmSysConfigAndInfo->SysConfig.PsuAcInputType=0;
  1241. ShmSysConfigAndInfo->SysInfo.AuxPower5V=0;
  1242. ShmSysConfigAndInfo->SysInfo.AuxPower12V=0;
  1243. ShmSysConfigAndInfo->SysInfo.AuxPower24V=0;
  1244. ShmSysConfigAndInfo->SysInfo.AuxPower48V=0;
  1245. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.CsuHwRev, "");
  1246. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.CsuBootLoadFwRev, "");
  1247. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.CsuKernelFwRev, "");
  1248. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev, "");
  1249. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.CsuPrimFwRev, "");
  1250. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.LcmHwRev, "");
  1251. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.LcmFwRev, "");
  1252. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.PsuHwRev, "");
  1253. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.PsuPrimFwRev, "");
  1254. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.PsuSecFwRev, "");
  1255. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.AuxPwrHwRev, "");
  1256. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.AuxPwrFwRev, "");
  1257. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.FanModuleHwRev, "");
  1258. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.FanModuleFwRev, "");
  1259. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.RelayModuleHwRev, "");
  1260. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.RelayModuleFwRev, "");
  1261. strcpy((char *)&ShmSysConfigAndInfo->SysInfo.TelcomModemFwRev, "");
  1262. ShmSysConfigAndInfo->SysInfo.SystemAmbientTemp=0;
  1263. ShmSysConfigAndInfo->SysInfo.SystemCriticalTemp=0;
  1264. ShmSysConfigAndInfo->SysInfo.CcsConnectorTemp=0;
  1265. ShmSysConfigAndInfo->SysInfo.PsuAmbientTemp=0;
  1266. ShmSysConfigAndInfo->SysConfig.AcPlugInTimes=0;
  1267. ShmSysConfigAndInfo->SysConfig.GbPlugInTimes=0;
  1268. ShmSysConfigAndInfo->SysConfig.Ccs1PlugInTime=0;
  1269. ShmSysConfigAndInfo->SysConfig.Ccs2PlugInTimes=0;
  1270. ShmSysConfigAndInfo->SysConfig.ChademoPlugInTimes=0;
  1271. // strcpy((char *)&ShmPsuData->PsuVersion[0].FwPrimaryVersion, "DC 9.01");
  1272. // strcpy((char *)&ShmPsuData->PsuVersion[1].FwPrimaryVersion, "DC 9.02");
  1273. // strcpy((char *)&ShmPsuData->PsuVersion[0].FwSecondVersion, "PFC 9.02");
  1274. // strcpy((char *)&ShmPsuData->PsuVersion[1].FwSecondVersion, "PFC 9.03");
  1275. //charging
  1276. ShmSysConfigAndInfo->SysConfig.MaxChargingEnergy=0;
  1277. ShmSysConfigAndInfo->SysConfig.MaxChargingPower=0;
  1278. ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent= 0;
  1279. ShmSysConfigAndInfo->SysConfig.MaxChargingVoltage= 0;
  1280. ShmSysConfigAndInfo->SysConfig.AcMaxChargingCurrent= 0;
  1281. ShmSysConfigAndInfo->SysConfig.MaxChargingDuration=0;
  1282. ShmSysConfigAndInfo->SysConfig.MaxChargingSoc=0;
  1283. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[0], "111");
  1284. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[1], "222");
  1285. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[2], "333");
  1286. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[3], "444");
  1287. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[4], "555");
  1288. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[5], "666");
  1289. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[6], "777");
  1290. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[7], "888");
  1291. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[8], "999");
  1292. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[9], "aaa");
  1293. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.UserId, "UserId");
  1294. ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].PresentChargingVoltage=0;
  1295. ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].PresentChargingCurrent=0;
  1296. ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].PresentChargingPower=0;
  1297. ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].PresentChargedEnergy=0;
  1298. ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].PresentChargedDuration=0;
  1299. ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].RemainChargingDuration=0;
  1300. ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].EvBatteryMaxVoltage=0;
  1301. ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].EvBatterytargetVoltage=0;
  1302. ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].EvBatterySoc=0;
  1303. ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].SystemStatus=1;
  1304. ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].EvBatterytargetCurrent=1;
  1305. //network
  1306. ShmSysConfigAndInfo->SysInfo.InternetConn=0;
  1307. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.FtpServer,"");
  1308. ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthDhcpClient=1;
  1309. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthMacAddress,"");
  1310. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthIpAddress,"192.168.1.10");
  1311. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthSubmaskAddress,"255.255.255.0");
  1312. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthGatewayAddress,"192.168.1.1");
  1313. ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthDhcpClient=1;
  1314. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthMacAddress,"");
  1315. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthIpAddress,"192.168.0.10");
  1316. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthSubmaskAddress,"255.255.255.0");
  1317. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthGatewayAddress,"192.168.0.1");
  1318. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMode=1;
  1319. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSsid,"");
  1320. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiPassword,"");
  1321. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiRssi=0;
  1322. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpServer=0;
  1323. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpClient=0;
  1324. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMacAddress,"");
  1325. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiIpAddress,"");
  1326. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSubmaskAddress,"");
  1327. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiGatewayAddress,"");
  1328. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiNetworkConn=1;
  1329. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomApn,"");
  1330. ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomRssi=0;
  1331. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapId,"");
  1332. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapPwd,"");
  1333. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomModemImei,"");
  1334. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomSimImsi,"");
  1335. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomSimIccid,"");
  1336. ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomSimStatus=0;
  1337. ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomModemMode=0;
  1338. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomIpAddress,"");
  1339. //backend
  1340. ShmSysConfigAndInfo->SysConfig.BackendConnTimeout=300;
  1341. ShmSysConfigAndInfo->SysConfig.OfflinePolicy=0;
  1342. ShmSysConfigAndInfo->SysConfig.OfflineMaxChargeEnergy=0;
  1343. ShmSysConfigAndInfo->SysConfig.OfflineMaxChargeDuration=0;
  1344. ShmSysConfigAndInfo->SysInfo.OcppConnStatus=0;
  1345. ShmSysConfigAndInfo->SysInfo.MaintainServerConnStatus=0;
  1346. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.OcppServerURL,"");
  1347. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.ChargeBoxId,"");
  1348. strcpy((char *)&ShmSysConfigAndInfo->SysConfig.chargePointVendor,"Phihong");
  1349. ShmSysConfigAndInfo->SysInfo.FirmwareUpdate=0;
  1350. struct SysConfigData SysConfig;
  1351. memcpy(&SysConfig, &ShmSysConfigAndInfo->SysConfig, sizeof(struct SysConfigData));
  1352. StoreUsrConfigData(&SysConfig);
  1353. // struct PsuModuleVer PsuData;
  1354. // memcpy(&PsuData, &ShmPsuData->PsuVersion, sizeof(struct PsuModuleVer));
  1355. // StoreUsrConfigData(&PsuData);
  1356. #ifdef SystemLogMessage
  1357. DEBUG_INFO("WebService initial OK");
  1358. #endif
  1359. }
  1360. if (strcmp(argv[1], "button") == 0)
  1361. {
  1362. unsigned char Button1;
  1363. unsigned char Button2;
  1364. unsigned char EmergencyButton;
  1365. Button1=ShmPrimaryMcuData->InputDet.bits.Button1;
  1366. Button2=ShmPrimaryMcuData->InputDet.bits.Button2;
  1367. EmergencyButton=ShmPrimaryMcuData->InputDet.bits.EmergencyButton;
  1368. struct json_object *jobj;
  1369. struct json_object *sButton1;
  1370. struct json_object *sButton2;
  1371. struct json_object *sEmergencyButton;
  1372. sButton1 = json_object_new_int(Button1);
  1373. sButton2 = json_object_new_int(Button2);
  1374. sEmergencyButton = json_object_new_int(EmergencyButton);
  1375. jobj=json_object_new_object();
  1376. json_object_object_add(jobj,"Button1",sButton1);
  1377. json_object_object_add(jobj,"Button2",sButton2);
  1378. json_object_object_add(jobj,"EmergencyButton",sEmergencyButton);
  1379. printf("%s\n", json_object_to_json_string(jobj));
  1380. }
  1381. if (strcmp(argv[1], "restart") == 0)
  1382. {
  1383. if((ShmSysConfigAndInfo->SysInfo.OcppRunningVer == OCPP_RUNNING_VERSION_16) && (system("pidof -s OcppBackend > /dev/null") == 0))
  1384. {
  1385. sprintf((char*)ShmOCPP16Data->Reset.Type, "Soft");
  1386. ShmOCPP16Data->MsMsg.bits.ResetReq = 1;
  1387. DEBUG_INFO("Soft reset by OCPP1.6 form web page.\n");
  1388. }
  1389. else if((ShmSysConfigAndInfo->SysInfo.OcppRunningVer == OCPP_RUNNING_VERSION_20) && (system("pidof -s OcppBackend20 > /dev/null") == 0))
  1390. {
  1391. sprintf((char*)ShmOCPP20Data->Reset.type, "OnIdle");
  1392. ShmOCPP20Data->MsMsg.bits.ResetReq = 1;
  1393. DEBUG_INFO("Soft reset by OCPP2.0.1 form web page.\n");
  1394. }
  1395. else
  1396. {
  1397. system("exec /usr/bin/run_evse_restart.sh");
  1398. DEBUG_INFO("Soft reset directly form web page.\n");
  1399. }
  1400. }
  1401. }
  1402. if(strcmp(argv[1], "log") == 0)
  1403. {
  1404. char cmd[512];
  1405. if((argc == 3) && isdigit(*argv[2]))
  1406. {
  1407. sprintf(cmd, "exec /root/logPackTools 'log' %s", argv[2]);
  1408. }
  1409. else
  1410. {
  1411. sprintf(cmd, "exec /root/logPackTools 'log'");
  1412. }
  1413. if(system(cmd) == 0)
  1414. {
  1415. DEBUG_INFO("Log pack success.\n");
  1416. }
  1417. else
  1418. {
  1419. DEBUG_INFO("Log pack fail.\n");
  1420. }
  1421. }
  1422. //upgrade firmware
  1423. if ((argc == 3) & (strcmp(argv[1], "upgrade") == 0))
  1424. {
  1425. struct json_object *jobj;
  1426. struct json_object *Result;
  1427. struct json_object *Message;
  1428. //char cmd[100];
  1429. jobj=json_object_new_object();
  1430. //system
  1431. //if((char)ShmSysConfigAndInfo->SysInfo.FirmwareUpdate == '0'){
  1432. ShmSysConfigAndInfo->SysInfo.FirmwareUpdate=1;
  1433. Result = json_object_new_string("success");
  1434. Message = json_object_new_string("File is uploaded, please wait a moment to upgrade");
  1435. //}
  1436. /*else{
  1437. sprintf(cmd,"rm /mnt/%s",argv[2]);
  1438. system(cmd);
  1439. Result = json_object_new_string("error");
  1440. Message = json_object_new_string("machine is busy");
  1441. }*/
  1442. json_object_object_add(jobj,"Result",Result);
  1443. json_object_object_add(jobj,"Message",Message);
  1444. printf("%s\n", json_object_to_json_string(jobj));
  1445. }
  1446. #ifdef DO360
  1447. //set power cabinet
  1448. // ./WebService "PowerCabinet" Cmd "{'FTargetVoltage': val,'FTargetCurrent': val, 'Gun': val}"
  1449. if ((strcmp(argv[1], "PowerCabinet") == 0)) {
  1450. char *IsDO[3];
  1451. substr((char *)IsDO,(const char *)ShmSysConfigAndInfo->SysConfig.ModelName,0,2);
  1452. if(strcmp(IsDO, "DO") == 0 || strcmp(IsDO, "DK") == 0 || strcmp(IsDO, "DB") == 0 || strcmp(IsDO, "DL") == 0){
  1453. struct json_object *jobj2;
  1454. jobj2=json_object_new_object();
  1455. int Gun = 0;
  1456. //force charging
  1457. if (strcmp(argv[2], "1") == 0) {
  1458. json_object_object_add(jobj2,"Cmd",json_object_new_string("1"));
  1459. int FTargetVoltage = 0;
  1460. int FTargetCurrent = 0;
  1461. if(strlen(argv[3]) >0){
  1462. struct json_object *jobj = json_tokener_parse(argv[3]);
  1463. json_object *val_obj = NULL;
  1464. if( json_object_object_get_ex(jobj, "Gun", &val_obj) ) {
  1465. Gun = json_object_get_int(val_obj);
  1466. if( json_object_object_get_ex(jobj, "FTargetVoltage", &val_obj) ) {
  1467. FTargetVoltage = json_object_get_int(val_obj);
  1468. ShmChargerInfo->Control.FCharging[Gun].FTargetVoltage = FTargetVoltage * 10;
  1469. json_object_object_add(jobj2,"FTargetVoltage",json_object_new_int(FTargetVoltage));
  1470. }
  1471. if( json_object_object_get_ex(jobj, "FTargetCurrent", &val_obj) ) {
  1472. FTargetCurrent = json_object_get_int(val_obj);
  1473. ShmChargerInfo->Control.FCharging[Gun].FTargetCurrent = FTargetCurrent * 10;
  1474. json_object_object_add(jobj2,"FTargetCurrent",json_object_new_int(FTargetCurrent));
  1475. }
  1476. ShmChargerInfo->Control.FCharging[Gun].FCtrl.bits.EnableForceCharging=1;
  1477. ShmChargerInfo->Control.FCharging[Gun].FCtrl.bits.StartForceCharging=1;
  1478. ShmChargerInfo->Control.FCharging[Gun].FCtrl.bits.WebApiTrigger=1;
  1479. }
  1480. }
  1481. printf("%s\n", json_object_to_json_string(jobj2));
  1482. }
  1483. //remote stop
  1484. if (strcmp(argv[2], "2") == 0) {
  1485. if(strlen(argv[3]) >0){
  1486. struct json_object *jobj = json_tokener_parse(argv[3]);
  1487. json_object *val_obj = NULL;
  1488. if( json_object_object_get_ex(jobj, "Gun", &val_obj) ) {
  1489. Gun = json_object_get_int(val_obj);
  1490. json_object_object_add(jobj2,"Cmd",json_object_new_string("2"));
  1491. ShmSysConfigAndInfo->SysInfo.ConnectorInfo[Gun].GeneralChargingData.ChargingStopFlag.bits.ManualStop=1;
  1492. printf("%s\n", json_object_to_json_string(jobj2));
  1493. }
  1494. }
  1495. }
  1496. if (strcmp(argv[2], "0") == 0) {
  1497. struct json_object *jobj;
  1498. jobj=json_object_new_object();
  1499. struct json_object *FTargetVoltage;
  1500. struct json_object *FTargetCurrent;
  1501. struct json_object *EnableForceCharging;
  1502. struct json_object *StartForceCharging;
  1503. struct json_object *WebApiTrigger;
  1504. struct json_object *ManualStop;
  1505. FTargetVoltage = json_object_new_int(ShmChargerInfo->Control.FCharging[0].FTargetVoltage);
  1506. FTargetCurrent = json_object_new_int(ShmChargerInfo->Control.FCharging[0].FTargetCurrent);
  1507. EnableForceCharging = json_object_new_int(ShmChargerInfo->Control.FCharging[0].FCtrl.bits.EnableForceCharging);
  1508. StartForceCharging = json_object_new_int(ShmChargerInfo->Control.FCharging[0].FCtrl.bits.StartForceCharging);
  1509. WebApiTrigger = json_object_new_int(ShmChargerInfo->Control.FCharging[0].FCtrl.bits.WebApiTrigger);
  1510. ManualStop = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[0].GeneralChargingData.ChargingStopFlag.bits.ManualStop);
  1511. json_object_object_add(jobj,"FTargetVoltage0",FTargetVoltage);
  1512. json_object_object_add(jobj,"FTargetCurrent0",FTargetCurrent);
  1513. json_object_object_add(jobj,"EnableForceCharging0",EnableForceCharging);
  1514. json_object_object_add(jobj,"StartForceCharging0",StartForceCharging);
  1515. json_object_object_add(jobj,"WebApiTrigger0",WebApiTrigger);
  1516. json_object_object_add(jobj,"ManualStop0",ManualStop);
  1517. FTargetVoltage = json_object_new_int(ShmChargerInfo->Control.FCharging[1].FTargetVoltage);
  1518. FTargetCurrent = json_object_new_int(ShmChargerInfo->Control.FCharging[1].FTargetCurrent);
  1519. EnableForceCharging = json_object_new_int(ShmChargerInfo->Control.FCharging[1].FCtrl.bits.EnableForceCharging);
  1520. StartForceCharging = json_object_new_int(ShmChargerInfo->Control.FCharging[1].FCtrl.bits.StartForceCharging);
  1521. WebApiTrigger = json_object_new_int(ShmChargerInfo->Control.FCharging[1].FCtrl.bits.WebApiTrigger);
  1522. ManualStop = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[1].GeneralChargingData.ChargingStopFlag.bits.ManualStop);
  1523. json_object_object_add(jobj,"FTargetVoltage1",FTargetVoltage);
  1524. json_object_object_add(jobj,"FTargetCurrent1",FTargetCurrent);
  1525. json_object_object_add(jobj,"EnableForceCharging1",EnableForceCharging);
  1526. json_object_object_add(jobj,"StartForceCharging1",StartForceCharging);
  1527. json_object_object_add(jobj,"WebApiTrigger1",WebApiTrigger);
  1528. json_object_object_add(jobj,"ManualStop1",ManualStop);
  1529. FTargetVoltage = json_object_new_int(ShmChargerInfo->Control.FCharging[2].FTargetVoltage);
  1530. FTargetCurrent = json_object_new_int(ShmChargerInfo->Control.FCharging[2].FTargetCurrent);
  1531. EnableForceCharging = json_object_new_int(ShmChargerInfo->Control.FCharging[2].FCtrl.bits.EnableForceCharging);
  1532. StartForceCharging = json_object_new_int(ShmChargerInfo->Control.FCharging[2].FCtrl.bits.StartForceCharging);
  1533. WebApiTrigger = json_object_new_int(ShmChargerInfo->Control.FCharging[2].FCtrl.bits.WebApiTrigger);
  1534. ManualStop = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[2].GeneralChargingData.ChargingStopFlag.bits.ManualStop);
  1535. json_object_object_add(jobj,"FTargetVoltage2",FTargetVoltage);
  1536. json_object_object_add(jobj,"FTargetCurrent2",FTargetCurrent);
  1537. json_object_object_add(jobj,"EnableForceCharging2",EnableForceCharging);
  1538. json_object_object_add(jobj,"StartForceCharging2",StartForceCharging);
  1539. json_object_object_add(jobj,"WebApiTrigger2",WebApiTrigger);
  1540. json_object_object_add(jobj,"ManualStop2",ManualStop);
  1541. FTargetVoltage = json_object_new_int(ShmChargerInfo->Control.FCharging[3].FTargetVoltage);
  1542. FTargetCurrent = json_object_new_int(ShmChargerInfo->Control.FCharging[3].FTargetCurrent);
  1543. EnableForceCharging = json_object_new_int(ShmChargerInfo->Control.FCharging[3].FCtrl.bits.EnableForceCharging);
  1544. StartForceCharging = json_object_new_int(ShmChargerInfo->Control.FCharging[3].FCtrl.bits.StartForceCharging);
  1545. WebApiTrigger = json_object_new_int(ShmChargerInfo->Control.FCharging[3].FCtrl.bits.WebApiTrigger);
  1546. ManualStop = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[3].GeneralChargingData.ChargingStopFlag.bits.ManualStop);
  1547. json_object_object_add(jobj,"FTargetVoltage3",FTargetVoltage);
  1548. json_object_object_add(jobj,"FTargetCurrent3",FTargetCurrent);
  1549. json_object_object_add(jobj,"EnableForceCharging3",EnableForceCharging);
  1550. json_object_object_add(jobj,"StartForceCharging3",StartForceCharging);
  1551. json_object_object_add(jobj,"WebApiTrigger3",WebApiTrigger);
  1552. json_object_object_add(jobj,"ManualStop3",ManualStop);
  1553. printf("%s\n", json_object_to_json_string(jobj));
  1554. json_object_put(jobj);
  1555. }
  1556. }
  1557. }
  1558. #endif
  1559. //web page query all
  1560. if ((argc == 2) & (strcmp(argv[1], "query") == 0)) {
  1561. char *IsAcDc[2];
  1562. char *SafetyRegulation[2];
  1563. char *IsDO[3];
  1564. char *Connector1[2];
  1565. char *Connector2[2];
  1566. char *Connector3[2];
  1567. char *Network[2];
  1568. //unsigned char connector1FwVer[32];
  1569. //unsigned char connector2FwVer[32];
  1570. short gunQty;
  1571. char *RatedPower1[2];
  1572. char *RatedPower2[2];
  1573. char *RatedPower3[2];
  1574. short RatedPower;
  1575. short PsuQuantity = 0;
  1576. substr((char *)IsAcDc,(const char *)ShmSysConfigAndInfo->SysConfig.ModelName,0,1);
  1577. substr((char *)SafetyRegulation,(const char *)ShmSysConfigAndInfo->SysConfig.ModelName,3,1);
  1578. substr((char *)IsDO,(const char *)ShmSysConfigAndInfo->SysConfig.ModelName,0,2);
  1579. substr((char *)Connector1,(const char *)ShmSysConfigAndInfo->SysConfig.ModelName,7,1);
  1580. substr((char *)Connector2,(const char *)ShmSysConfigAndInfo->SysConfig.ModelName,9,1);
  1581. substr((char *)Connector3,(const char *)ShmSysConfigAndInfo->SysConfig.ModelName,8,1);
  1582. substr((char *)Network,(const char *)ShmSysConfigAndInfo->SysConfig.ModelName,10,1);
  1583. int connectorType1,connectorType2,connectorType3;
  1584. connectorType1=ConnectorType((char *)Connector1);
  1585. connectorType2=ConnectorType((char *)Connector2);
  1586. connectorType3=ConnectorType((char *)Connector3);
  1587. if(connectorType1 == connectorType2){
  1588. gunQty = 1;
  1589. }
  1590. else{
  1591. gunQty = 0;
  1592. }
  1593. if(connectorType1 != 0){
  1594. if(connectorType1 == 1){
  1595. // strcpy((char *)&connector1FwVer,ShmCcsData->V2GMessage_DIN70121->version);
  1596. // memcpy(connector1FwVer,ShmCcsData->V2GMessage_DIN70121->version,ARRAY_SIZE(ShmCcsData->V2GMessage_DIN70121->version));
  1597. }
  1598. else if(connectorType1 == 2){
  1599. // strcpy((char *)&connector1FwVer,ShmGBTData->evse[0].version);
  1600. // memcpy(connector1FwVer,ShmGBTData->evse[0].version,ARRAY_SIZE(ShmGBTData->evse[0].version));
  1601. }
  1602. else if(connectorType1 == 3){
  1603. // strcpy((char *)&connector1FwVer,ShmCHAdeMOData->evse[0].version);
  1604. // memcpy(connector1FwVer,ShmCHAdeMOData->evse[0].version,ARRAY_SIZE(ShmCHAdeMOData->evse[0].version));
  1605. }
  1606. }
  1607. if(connectorType2 != 0){
  1608. if(connectorType2 == 1){
  1609. // strcpy((char *)&connector2FwVer,ShmCcsData->V2GMessage_DIN70121->version);
  1610. // memcpy(connector2FwVer,ShmCcsData->V2GMessage_DIN70121->version,ARRAY_SIZE(ShmCcsData->V2GMessage_DIN70121->version));
  1611. }
  1612. else if(connectorType2 == 2){
  1613. // strcpy((char *)&connector2FwVer,ShmGBTData->evse[gunQty].version);
  1614. // memcpy(connector2FwVer,ShmGBTData->evse[gunQty].version,ARRAY_SIZE(ShmGBTData->evse[gunQty].version));
  1615. }
  1616. else if(connectorType2 == 3){
  1617. // strcpy((char *)&connector2FwVer,ShmCHAdeMOData->evse[gunQty].version);
  1618. // memcpy(connector2FwVer,ShmCHAdeMOData->evse[gunQty].version,ARRAY_SIZE(ShmCHAdeMOData->evse[gunQty].version));
  1619. }
  1620. }
  1621. substr((char *)RatedPower1,(const char *)ShmSysConfigAndInfo->SysConfig.ModelName,4,1);
  1622. substr((char *)RatedPower2,(const char *)ShmSysConfigAndInfo->SysConfig.ModelName,5,1);
  1623. substr((char *)RatedPower3,(const char *)ShmSysConfigAndInfo->SysConfig.ModelName,6,1);
  1624. int p1=atoi((char *)RatedPower1);
  1625. int p2=atoi((char *)RatedPower2);
  1626. int p3=atoi((char *)RatedPower3);
  1627. if(strcmp(IsAcDc, "D") == 0){
  1628. RatedPower=(p1*10+p2)*pow(10,p3-1);
  1629. if(RatedPower==50){
  1630. PsuQuantity = 3;
  1631. }
  1632. else{
  1633. // if(RatedPower>=30){
  1634. PsuQuantity = RatedPower/30;
  1635. // }
  1636. }
  1637. }
  1638. if(strcmp(IsDO, "DO") == 0 || strcmp(IsDO, "DK") == 0 || strcmp(IsDO, "DB") == 0 || strcmp(IsDO, "DL") == 0){
  1639. }
  1640. struct json_object *jobj1;
  1641. struct json_object *jobj2;
  1642. struct json_object *jobj3;
  1643. struct json_object *jobj4;
  1644. //system
  1645. struct json_object *ModelName;
  1646. struct json_object *AcModelName;
  1647. struct json_object *SerialNumber;
  1648. struct json_object *SystemId;
  1649. struct json_object *AcPhaseCount;
  1650. struct json_object *PhaseLossPolicy;
  1651. struct json_object *FactoryConfiguration;
  1652. struct json_object *AuthorisationMode;
  1653. struct json_object *DefaultLanguage;
  1654. struct json_object *InputVoltageR;
  1655. struct json_object *InputVoltageS;
  1656. struct json_object *InputVoltageT;
  1657. struct json_object *InputVoltageDc;
  1658. struct json_object *SystemFanRotaSpeed;
  1659. struct json_object *PsuFanRotaSpeed;
  1660. struct json_object *RfidCardNumEndian;
  1661. struct json_object *PsuAcInputType;
  1662. struct json_object *RatingCurrent;
  1663. struct json_object *AcRatingCurrent;
  1664. struct json_object *isAPP;
  1665. struct json_object *isQRCode;
  1666. struct json_object *isRFID;
  1667. struct json_object *QRCodeMadeMode;
  1668. struct json_object *QRCodeContent;
  1669. struct json_object *Intensity;
  1670. struct json_object *isAuthrizeByEVCCID;
  1671. struct json_object *AuxPower5V;
  1672. struct json_object *AuxPower12V;
  1673. struct json_object *AuxPower24V;
  1674. struct json_object *AuxPower48V;
  1675. struct json_object *CsuHwRev;
  1676. struct json_object *CsuBootLoadFwRev;
  1677. struct json_object *CsuKernelFwRev;
  1678. struct json_object *CsuRootFsFwRev;
  1679. struct json_object *CsuPrimFwRev;
  1680. struct json_object *LcmHwRev;
  1681. struct json_object *LcmFwRev;
  1682. struct json_object *PsuHwRev;
  1683. struct json_object *PsuPrimFwRev;
  1684. struct json_object *PsuSecFwRev;
  1685. struct json_object *AuxPwrHwRev;
  1686. struct json_object *AuxPwrFwRev;
  1687. struct json_object *FanModuleHwRev;
  1688. struct json_object *FanModuleFwRev;
  1689. struct json_object *RelayModuleHwRev;
  1690. struct json_object *RelayModuleFwRev;
  1691. struct json_object *TelcomModemFwRev;
  1692. struct json_object *Connector1FwRev;
  1693. struct json_object *Connector2FwRev;
  1694. struct json_object *PsuLostQuantity;
  1695. /* for DC+AC*/
  1696. struct json_object *Connector3FwRev;
  1697. struct json_object *LedModuleFwRev;
  1698. struct json_object *SystemAmbientTemp;
  1699. struct json_object *SystemCriticalTemp;
  1700. struct json_object *CcsConnectorTemp;
  1701. struct json_object *PsuAmbientTemp;
  1702. struct json_object *AcPlugInTimes;
  1703. struct json_object *GbPlugInTimes;
  1704. struct json_object *Ccs1PlugInTime;
  1705. struct json_object *Ccs2PlugInTimes;
  1706. struct json_object *ChademoPlugInTimes;
  1707. struct json_object *FirmwareUpdate;
  1708. struct json_object *FwPrimaryVersion[PsuQuantity];
  1709. struct json_object *FwPrimaryVersionArr= json_object_new_array();
  1710. struct json_object *FwSecondVersion[PsuQuantity];
  1711. struct json_object *FwSecondVersionArr= json_object_new_array();
  1712. /* for DO & DD*/
  1713. struct json_object *DispenserQuantity;
  1714. struct json_object *TotalConnectorQuantity;
  1715. struct json_object *DDLocalStatus[4];
  1716. struct json_object *DDLocalStatusArr= json_object_new_array();
  1717. struct json_object *DDModelName[4];
  1718. struct json_object *DDModelNameArr= json_object_new_array();
  1719. struct json_object *DDSerialNumber[4];
  1720. struct json_object *DDSerialNumberArr= json_object_new_array();
  1721. struct json_object *DDSystemId[4];
  1722. struct json_object *DDSystemIdArr= json_object_new_array();
  1723. struct json_object *DDAuthorisationMode[4];
  1724. struct json_object *DDAuthorisationModeArr= json_object_new_array();
  1725. struct json_object *DDRfidCardNumEndian[4];
  1726. struct json_object *DDRfidCardNumEndianArr= json_object_new_array();
  1727. struct json_object *DDisAPP[4];
  1728. struct json_object *DDisAPPArr= json_object_new_array();
  1729. struct json_object *DDisQRCode[4];
  1730. struct json_object *DDisQRCodeArr= json_object_new_array();
  1731. struct json_object *DDisRFID[4];
  1732. struct json_object *DDisRFIDArr= json_object_new_array();
  1733. struct json_object *DDQRCodeMadeMode[4];
  1734. struct json_object *DDQRCodeMadeModeArr= json_object_new_array();
  1735. struct json_object *DDQRCodeContent[4];
  1736. struct json_object *DDQRCodeContentArr= json_object_new_array();
  1737. struct json_object *DDFactoryConfiguration[4];
  1738. struct json_object *DDFactoryConfigurationArr= json_object_new_array();
  1739. struct json_object *DDCsuBootLoadFwRev[4];
  1740. struct json_object *DDCsuBootLoadFwRevArr= json_object_new_array();
  1741. struct json_object *DDCsuKernelFwRev[4];
  1742. struct json_object *DDCsuKernelFwRevArr= json_object_new_array();
  1743. struct json_object *DDCsuRootFsFwRev[4];
  1744. struct json_object *DDCsuRootFsFwRevArr= json_object_new_array();
  1745. struct json_object *DDCsuPrimFwRev[4];
  1746. struct json_object *DDCsuPrimFwRevArr= json_object_new_array();
  1747. struct json_object *DDLcmFwRev[4];
  1748. struct json_object *DDLcmFwRevArr= json_object_new_array();
  1749. struct json_object *DDPsuPrimFwRev[4];
  1750. struct json_object *DDPsuPrimFwRevArr= json_object_new_array();
  1751. struct json_object *DDPsuSecFwRev[4];
  1752. struct json_object *DDPsuSecFwRevArr= json_object_new_array();
  1753. struct json_object *DDFanModuleFwRev[4];
  1754. struct json_object *DDFanModuleFwRevArr= json_object_new_array();
  1755. struct json_object *DDRelayModuleFwRev[4];
  1756. struct json_object *DDRelayModuleFwRevArr= json_object_new_array();
  1757. struct json_object *DDTelcomModemFwRev[4];
  1758. struct json_object *DDTelcomModemFwRevArr= json_object_new_array();
  1759. struct json_object *DDLedModuleFwRev[4];
  1760. struct json_object *DDLedModuleFwRevArr= json_object_new_array();
  1761. struct json_object *DDConnector1FwRev[4];
  1762. struct json_object *DDConnector1FwRevArr= json_object_new_array();
  1763. struct json_object *DDConnector2FwRev[4];
  1764. struct json_object *DDConnector2FwRevArr= json_object_new_array();
  1765. struct json_object *DDIntensity[4];
  1766. struct json_object *DDIntensityArr= json_object_new_array();
  1767. struct json_object *Relay2ModuleFwRev;
  1768. //charging
  1769. struct json_object *MaxChargingEnergy;
  1770. struct json_object *MaxChargingPower;
  1771. struct json_object *MaxChargingCurrent;
  1772. struct json_object *MaxChargingVoltage;
  1773. struct json_object *AcMaxChargingCurrent;
  1774. struct json_object *MaxChargingDuration;
  1775. struct json_object *MaxChargingSoc;
  1776. struct json_object *StopChargingByButton;
  1777. struct json_object *FanControlPolicy;
  1778. struct json_object *LocalWhiteCard[10];
  1779. struct json_object *LocalWhiteCardArr= json_object_new_array();
  1780. struct json_object *isBilling;
  1781. struct json_object *Currency;
  1782. struct json_object *Fee[24];
  1783. struct json_object *FeeArr= json_object_new_array();
  1784. struct json_object *ChargingInfo1;
  1785. struct json_object *ChargingInfo2;
  1786. struct json_object *ChargingInfo3;
  1787. struct json_object *StartUserId[3];
  1788. struct json_object *StartDateTime[3];
  1789. struct json_object *StopDateTime[3];
  1790. struct json_object *StartMethod[3];
  1791. struct json_object *ConnectorTemp[3];
  1792. struct json_object *ChillerTemp[3];
  1793. struct json_object *PresentChargingVoltage[3];
  1794. struct json_object *PresentChargingCurrent[3];
  1795. struct json_object *PresentChargingPower[3];
  1796. struct json_object *PresentChargedEnergy[3];
  1797. struct json_object *PresentChargedDuration[3];
  1798. struct json_object *RemainChargingDuration[3];
  1799. struct json_object *EvBatteryMaxVoltage[3];
  1800. struct json_object *EvBatterytargetVoltage[3];
  1801. struct json_object *EvBatterySoc[3];
  1802. struct json_object *PilotVoltage[3];
  1803. struct json_object *SystemStatus[3];
  1804. struct json_object *EvBatterytargetCurrent[3];
  1805. struct json_object *PowerConsumption[3];
  1806. struct json_object *isCalibratedVaGain[3];
  1807. struct json_object *isCalibratedVbGain[3];
  1808. struct json_object *isCalibratedVcGain[3];
  1809. struct json_object *isCalibratedVaOffset[3];
  1810. struct json_object *isCalibratedVbOffset[3];
  1811. struct json_object *isCalibratedVcOffset[3];
  1812. struct json_object *isCalibratedCaGain[3];
  1813. struct json_object *isCalibratedCbGain[3];
  1814. struct json_object *isCalibratedCcGain[3];
  1815. struct json_object *isCalibratedCaOffset[3];
  1816. struct json_object *isCalibratedCbOffset[3];
  1817. struct json_object *isCalibratedCcOffset[3];
  1818. struct json_object *isCalibratedPa[3];
  1819. struct json_object *isCalibratedPb[3];
  1820. struct json_object *isCalibratedPc[3];
  1821. /* for DO & DD*/
  1822. struct json_object *DDChargingInfo1;
  1823. struct json_object *DDChargingInfo2;
  1824. struct json_object *DDChargingInfo3;
  1825. struct json_object *DDChargingInfo4;
  1826. struct json_object *DDStartUserId[4];
  1827. struct json_object *DDStartDateTime[4];
  1828. struct json_object *DDStopDateTime[4];
  1829. struct json_object *DDStartMethod[4];
  1830. struct json_object *DDConnectorTemp[4];
  1831. struct json_object *DDChillerTemp[4];
  1832. struct json_object *DDPresentChargingVoltage[4];
  1833. struct json_object *DDPresentChargingCurrent[4];
  1834. struct json_object *DDPresentChargingPower[4];
  1835. struct json_object *DDPresentChargedEnergy[4];
  1836. struct json_object *DDPresentChargedDuration[4];
  1837. struct json_object *DDRemainChargingDuration[4];
  1838. struct json_object *DDEvBatteryMaxVoltage[4];
  1839. struct json_object *DDEvBatterytargetVoltage[4];
  1840. struct json_object *DDEvBatterySoc[4];
  1841. struct json_object *DDSystemStatus[4];
  1842. struct json_object *DDEvBatterytargetCurrent[4];
  1843. struct json_object *DDPowerConsumption[4];
  1844. //network
  1845. struct json_object *InternetConn;
  1846. struct json_object *FtpServer;
  1847. struct json_object *Eth0DhcpClient;
  1848. struct json_object *Eth0MacAddress;
  1849. struct json_object *Eth0IpAddress;
  1850. struct json_object *Eth0SubmaskAddress;
  1851. struct json_object *Eth0GatewayAddress;
  1852. struct json_object *Eth1DhcpClient;
  1853. struct json_object *Eth1MacAddress;
  1854. struct json_object *Eth1IpAddress;
  1855. struct json_object *Eth1SubmaskAddress;
  1856. struct json_object *Eth1GatewayAddress;
  1857. struct json_object *WifiMode;
  1858. struct json_object *WifiSsid;
  1859. struct json_object *WifiPassword;
  1860. struct json_object *WifiBroadcastSsid;
  1861. struct json_object *WifiTargetBssidMac;
  1862. struct json_object *WifiRssi;
  1863. struct json_object *WifiDhcpServer;
  1864. struct json_object *WifiDhcpClient;
  1865. struct json_object *WifiMacAddress;
  1866. struct json_object *WifiIpAddress;
  1867. struct json_object *WifiSubmaskAddress;
  1868. struct json_object *WifiGatewayAddress;
  1869. struct json_object *WifiNetworkConn;
  1870. struct json_object *TelcomApn;
  1871. struct json_object *TelcomRssi;
  1872. struct json_object *TelcomChapPapId;
  1873. struct json_object *TelcomChapPapPwd;
  1874. struct json_object *TelcomModemImei;
  1875. struct json_object *TelcomSimImsi;
  1876. struct json_object *TelcomSimIccid;
  1877. struct json_object *TelcomSimStatus;
  1878. struct json_object *TelcomModemMode;
  1879. struct json_object *TelcomIpAddress;
  1880. struct json_object *TelcomNetworkConn;
  1881. struct json_object *TelcomEnabled;
  1882. struct json_object *TelcomNetworkType;
  1883. //backend
  1884. struct json_object *BackendConnTimeout;
  1885. struct json_object *OfflinePolicy;
  1886. struct json_object *OfflineMaxChargeEnergy;
  1887. struct json_object *OfflineMaxChargeDuration;
  1888. struct json_object *OcppConnStatus;
  1889. struct json_object *MaintainServerConnStatus;
  1890. struct json_object *OcppServerURL;
  1891. struct json_object *ChargeBoxId;
  1892. struct json_object *chargePointVendor;
  1893. struct json_object *OcppSecurityProfile;
  1894. struct json_object *OcppSecurityPassword;
  1895. struct json_object *MaintainServerSecurityProfile;
  1896. struct json_object *MaintainServerSecurityPassword;
  1897. struct json_object *isEnableLocalPowerSharging;
  1898. struct json_object *PowerSharingCapacity;
  1899. struct json_object *PowerSharingServerIP;
  1900. struct json_object *OcppReceiptrURL;
  1901. struct json_object *MaintainServerURL;
  1902. struct json_object *Private_Key;
  1903. struct json_object *Certificate;
  1904. /*for TTIA*/
  1905. struct json_object *isEnableTTIA;
  1906. struct json_object *server_addr;
  1907. struct json_object *server_port;
  1908. struct json_object *busVenderId;
  1909. struct json_object *EquipmentProvider;
  1910. struct json_object *TransportationCompanyNo;
  1911. struct json_object *TTIAChargeBoxId;
  1912. struct json_object *evseStation;
  1913. jobj1=json_object_new_object();
  1914. jobj2=json_object_new_object();
  1915. jobj3=json_object_new_object();
  1916. jobj4=json_object_new_object();
  1917. //system
  1918. ModelName = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.ModelName);
  1919. AcModelName = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.AcModelName);
  1920. SerialNumber = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.SerialNumber);
  1921. SystemId = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.SystemId);
  1922. AcPhaseCount = json_object_new_int(ShmSysConfigAndInfo->SysConfig.AcPhaseCount);
  1923. PhaseLossPolicy = json_object_new_int(ShmSysConfigAndInfo->SysConfig.PhaseLossPolicy);
  1924. FactoryConfiguration = json_object_new_int(ShmSysConfigAndInfo->SysInfo.FactoryConfiguration);
  1925. AuthorisationMode = json_object_new_int(ShmSysConfigAndInfo->SysConfig.AuthorisationMode);
  1926. DefaultLanguage = json_object_new_int(ShmSysConfigAndInfo->SysConfig.DefaultLanguage);
  1927. InputVoltageR = json_object_new_double(ShmSysConfigAndInfo->SysInfo.InputVoltageR);
  1928. InputVoltageS = json_object_new_double(ShmSysConfigAndInfo->SysInfo.InputVoltageS);
  1929. InputVoltageT = json_object_new_double(ShmSysConfigAndInfo->SysInfo.InputVoltageT);
  1930. InputVoltageDc = json_object_new_double(ShmSysConfigAndInfo->SysInfo.InputVoltageDc);
  1931. SystemFanRotaSpeed = json_object_new_int(ShmSysConfigAndInfo->SysInfo.SystemFanRotaSpeed);
  1932. PsuFanRotaSpeed = json_object_new_int(ShmSysConfigAndInfo->SysInfo.PsuFanRotaSpeed);
  1933. RfidCardNumEndian = json_object_new_int(ShmSysConfigAndInfo->SysConfig.RfidCardNumEndian);
  1934. PsuAcInputType = json_object_new_int(ShmSysConfigAndInfo->SysConfig.PsuAcInputType);
  1935. RatingCurrent = json_object_new_int(ShmSysConfigAndInfo->SysConfig.RatingCurrent);
  1936. AcRatingCurrent = json_object_new_int(ShmSysConfigAndInfo->SysConfig.AcRatingCurrent);
  1937. isAPP = json_object_new_int(ShmSysConfigAndInfo->SysConfig.isAPP);
  1938. isQRCode = json_object_new_int(ShmSysConfigAndInfo->SysConfig.isQRCode);
  1939. isRFID = json_object_new_int(ShmSysConfigAndInfo->SysConfig.isRFID);
  1940. QRCodeMadeMode = json_object_new_int(ShmSysConfigAndInfo->SysConfig.QRCodeMadeMode);
  1941. QRCodeContent = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.QRCodeContent);
  1942. Intensity = json_object_new_int(ShmSysConfigAndInfo->SysConfig.LedInfo.Intensity);
  1943. isAuthrizeByEVCCID = json_object_new_int(ShmSysConfigAndInfo->SysConfig.isAuthrizeByEVCCID);
  1944. AuxPower5V = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AuxPower5V);
  1945. AuxPower12V = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AuxPower12V);
  1946. AuxPower24V = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AuxPower24V);
  1947. AuxPower48V = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AuxPower48V);
  1948. CsuHwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.CsuHwRev);
  1949. CsuBootLoadFwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.CsuBootLoadFwRev);
  1950. CsuKernelFwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.CsuKernelFwRev);
  1951. CsuRootFsFwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev);
  1952. CsuPrimFwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.CsuPrimFwRev);
  1953. LcmHwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.LcmHwRev);
  1954. LcmFwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.LcmFwRev);
  1955. PsuHwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.PsuHwRev);
  1956. PsuPrimFwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.PsuPrimFwRev);
  1957. PsuSecFwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.PsuSecFwRev);
  1958. AuxPwrHwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.AuxPwrHwRev);
  1959. AuxPwrFwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.AuxPwrFwRev);
  1960. FanModuleHwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.FanModuleHwRev);
  1961. FanModuleFwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.FanModuleFwRev);
  1962. RelayModuleHwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.RelayModuleHwRev);
  1963. RelayModuleFwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.RelayModuleFwRev);
  1964. TelcomModemFwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.TelcomModemFwRev);
  1965. Connector1FwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.Connector1FwRev);
  1966. Connector2FwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.Connector2FwRev);
  1967. PsuLostQuantity = json_object_new_int(ShmSysConfigAndInfo->SysInfo.PsuLostQuantity);
  1968. /* for DC+AC*/
  1969. if(connectorType3==4){
  1970. Connector3FwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.AcChargingData[0].version);
  1971. }
  1972. LedModuleFwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.LedModuleFwRev);
  1973. SystemAmbientTemp = json_object_new_int(ShmSysConfigAndInfo->SysInfo.SystemAmbientTemp);
  1974. SystemCriticalTemp = json_object_new_int(ShmSysConfigAndInfo->SysInfo.SystemCriticalTemp);
  1975. CcsConnectorTemp = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsConnectorTemp);
  1976. PsuAmbientTemp = json_object_new_int(ShmSysConfigAndInfo->SysInfo.PsuAmbientTemp);
  1977. AcPlugInTimes = json_object_new_int(ShmSysConfigAndInfo->SysConfig.AcPlugInTimes);
  1978. GbPlugInTimes = json_object_new_int(ShmSysConfigAndInfo->SysConfig.GbPlugInTimes);
  1979. Ccs1PlugInTime = json_object_new_int(ShmSysConfigAndInfo->SysConfig.Ccs1PlugInTime);
  1980. Ccs2PlugInTimes = json_object_new_int(ShmSysConfigAndInfo->SysConfig.Ccs2PlugInTimes);
  1981. ChademoPlugInTimes = json_object_new_int(ShmSysConfigAndInfo->SysConfig.ChademoPlugInTimes);
  1982. FirmwareUpdate = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.FirmwareUpdate);
  1983. if(strcmp(IsAcDc, "D") == 0){
  1984. for(int i=0;i<PsuQuantity;i++){
  1985. FwPrimaryVersion[i] = json_object_new_string((char *)&ShmPsuData->PsuVersion[i].FwPrimaryVersion);
  1986. FwSecondVersion[i] = json_object_new_string((char *)&ShmPsuData->PsuVersion[i].FwSecondVersion);
  1987. json_object_array_add(FwPrimaryVersionArr,FwPrimaryVersion[i]);
  1988. json_object_array_add(FwSecondVersionArr,FwSecondVersion[i]);
  1989. }
  1990. }
  1991. if(strcmp(IsDO, "DO") == 0 || strcmp(IsDO, "DK") == 0 || strcmp(IsDO, "DB") == 0 || strcmp(IsDO, "DL") == 0){
  1992. if(ShmSysConfigAndInfo->SysInfo.DispenserInfo.DispenserQuantity>4 || ShmSysConfigAndInfo->SysInfo.DispenserInfo.DispenserQuantity<0)ShmSysConfigAndInfo->SysInfo.DispenserInfo.DispenserQuantity=0;
  1993. DispenserQuantity = json_object_new_int(ShmSysConfigAndInfo->SysInfo.DispenserInfo.DispenserQuantity);
  1994. TotalConnectorQuantity = json_object_new_int(ShmSysConfigAndInfo->SysInfo.DispenserInfo.TotalConnectorQuantity);
  1995. int DDDispenserQuantity = ShmSysConfigAndInfo->SysInfo.DispenserInfo.DispenserQuantity;
  1996. for(int i=0;i<DDDispenserQuantity;i++){
  1997. DDLocalStatus[i] = json_object_new_int((char *)&ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].LocalStatus);
  1998. DDModelName[i] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].ModelName);
  1999. DDSerialNumber[i] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].SerialNumber);
  2000. DDSystemId[i] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].SystemId);
  2001. DDAuthorisationMode[i] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].AuthorisationMode);
  2002. DDRfidCardNumEndian[i] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].RfidCardNumEndian);
  2003. DDisAPP[i] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].isAPP);
  2004. DDisQRCode[i] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].isQRCode);
  2005. DDisRFID[i] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].isRFID);
  2006. DDQRCodeMadeMode[i] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].QRCodeMadeMode);
  2007. DDQRCodeContent[i] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].QRCodeContent);
  2008. DDFactoryConfiguration[i] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].FactoryConfiguration);
  2009. DDCsuBootLoadFwRev[i] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].CsuBootLoadFwRev);
  2010. DDCsuKernelFwRev[i] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].CsuKernelFwRev);
  2011. DDCsuRootFsFwRev[i] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].CsuRootFsFwRev);
  2012. DDCsuPrimFwRev[i] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].CsuPrimFwRev);
  2013. DDLcmFwRev[i] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].LcmFwRev);
  2014. DDPsuPrimFwRev[i] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].PsuPrimFwRev);
  2015. DDPsuSecFwRev[i] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].PsuSecFwRev);
  2016. DDFanModuleFwRev[i] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].FanModuleFwRev);
  2017. DDRelayModuleFwRev[i] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].RelayModuleFwRev);
  2018. DDTelcomModemFwRev[i] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].TelcomModemFwRev);
  2019. DDLedModuleFwRev[i] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].LedModuleFwRev);
  2020. DDConnector1FwRev[i] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].Connector1FwRev);
  2021. DDConnector2FwRev[i] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].Connector2FwRev);
  2022. DDIntensity[i] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[i].LedInfo.Intensity);
  2023. json_object_array_add(DDLocalStatusArr,DDLocalStatus[i]);
  2024. json_object_array_add(DDModelNameArr,DDModelName[i]);
  2025. json_object_array_add(DDSerialNumberArr,DDSerialNumber[i]);
  2026. json_object_array_add(DDSystemIdArr,DDSystemId[i]);
  2027. json_object_array_add(DDAuthorisationModeArr,DDAuthorisationMode[i]);
  2028. json_object_array_add(DDRfidCardNumEndianArr,DDRfidCardNumEndian[i]);
  2029. json_object_array_add(DDisAPPArr,DDisAPP[i]);
  2030. json_object_array_add(DDisQRCodeArr,DDisQRCode[i]);
  2031. json_object_array_add(DDisRFIDArr,DDisRFID[i]);
  2032. json_object_array_add(DDQRCodeMadeModeArr,DDQRCodeMadeMode[i]);
  2033. json_object_array_add(DDQRCodeContentArr,DDQRCodeContent[i]);
  2034. json_object_array_add(DDFactoryConfigurationArr,DDFactoryConfiguration[i]);
  2035. json_object_array_add(DDCsuBootLoadFwRevArr,DDCsuBootLoadFwRev[i]);
  2036. json_object_array_add(DDCsuKernelFwRevArr,DDCsuKernelFwRev[i]);
  2037. json_object_array_add(DDCsuRootFsFwRevArr,DDCsuRootFsFwRev[i]);
  2038. json_object_array_add(DDCsuPrimFwRevArr,DDCsuPrimFwRev[i]);
  2039. json_object_array_add(DDLcmFwRevArr,DDLcmFwRev[i]);
  2040. json_object_array_add(DDPsuPrimFwRevArr,DDPsuPrimFwRev[i]);
  2041. json_object_array_add(DDPsuSecFwRevArr,DDPsuSecFwRev[i]);
  2042. json_object_array_add(DDFanModuleFwRevArr,DDFanModuleFwRev[i]);
  2043. json_object_array_add(DDRelayModuleFwRevArr,DDRelayModuleFwRev[i]);
  2044. json_object_array_add(DDTelcomModemFwRevArr,DDTelcomModemFwRev[i]);
  2045. json_object_array_add(DDLedModuleFwRevArr,DDLedModuleFwRev[i]);
  2046. json_object_array_add(DDConnector1FwRevArr,DDConnector1FwRev[i]);
  2047. json_object_array_add(DDConnector2FwRevArr,DDConnector2FwRev[i]);
  2048. json_object_array_add(DDIntensityArr,DDIntensity[i]);
  2049. }
  2050. Relay2ModuleFwRev = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.Relay2ModuleFwRev);
  2051. }
  2052. //charging
  2053. int CcsGunQty=0;
  2054. int GbGunQty=0;
  2055. int CHAdeMOGunQty=0;
  2056. int AcGunQty=0;
  2057. ChargingInfo1=json_object_new_object();
  2058. ChargingInfo2=json_object_new_object();
  2059. ChargingInfo3=json_object_new_object();
  2060. MaxChargingEnergy = json_object_new_int(ShmSysConfigAndInfo->SysConfig.MaxChargingEnergy);
  2061. MaxChargingPower = json_object_new_int(ShmSysConfigAndInfo->SysConfig.MaxChargingPower);
  2062. MaxChargingCurrent = json_object_new_int(ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent);
  2063. MaxChargingVoltage = json_object_new_int(ShmSysConfigAndInfo->SysConfig.MaxChargingVoltage);
  2064. AcMaxChargingCurrent = json_object_new_int(ShmSysConfigAndInfo->SysConfig.AcMaxChargingCurrent);
  2065. MaxChargingDuration = json_object_new_int(ShmSysConfigAndInfo->SysConfig.MaxChargingDuration);
  2066. MaxChargingSoc = json_object_new_int(ShmSysConfigAndInfo->SysConfig.MaxChargingSoc);
  2067. StopChargingByButton = json_object_new_int(ShmSysConfigAndInfo->SysConfig.StopChargingByButton);
  2068. FanControlPolicy = json_object_new_int(ShmSysConfigAndInfo->SysConfig.FanControlPolicy);
  2069. LocalWhiteCard[0] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[0]);
  2070. LocalWhiteCard[1] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[1]);
  2071. LocalWhiteCard[2] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[2]);
  2072. LocalWhiteCard[3] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[3]);
  2073. LocalWhiteCard[4] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[4]);
  2074. LocalWhiteCard[5] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[5]);
  2075. LocalWhiteCard[6] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[6]);
  2076. LocalWhiteCard[7] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[7]);
  2077. LocalWhiteCard[8] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[8]);
  2078. LocalWhiteCard[9] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[9]);
  2079. isBilling = json_object_new_int(ShmSysConfigAndInfo->SysConfig.BillingData.isBilling);
  2080. Currency = json_object_new_int(ShmSysConfigAndInfo->SysConfig.BillingData.Currency);
  2081. Fee[0] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[0]);
  2082. Fee[1] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[1]);
  2083. Fee[2] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[2]);
  2084. Fee[3] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[3]);
  2085. Fee[4] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[4]);
  2086. Fee[5] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[5]);
  2087. Fee[6] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[6]);
  2088. Fee[7] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[7]);
  2089. Fee[8] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[8]);
  2090. Fee[9] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[9]);
  2091. Fee[10] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[10]);
  2092. Fee[11] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[11]);
  2093. Fee[12] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[12]);
  2094. Fee[13] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[13]);
  2095. Fee[14] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[14]);
  2096. Fee[15] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[15]);
  2097. Fee[16] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[16]);
  2098. Fee[17] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[17]);
  2099. Fee[18] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[18]);
  2100. Fee[19] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[19]);
  2101. Fee[20] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[20]);
  2102. Fee[21] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[21]);
  2103. Fee[22] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[22]);
  2104. Fee[23] = json_object_new_double(ShmSysConfigAndInfo->SysConfig.BillingData.Fee[23]);
  2105. if(connectorType1 != 0){
  2106. if(connectorType1 == 1){//CCS
  2107. PresentChargingVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargingVoltage);
  2108. PresentChargingCurrent[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargingCurrent);
  2109. PresentChargingPower[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargingPower);
  2110. PresentChargedEnergy[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargedEnergy);
  2111. PresentChargedDuration[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargedDuration);
  2112. RemainChargingDuration[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].RemainChargingDuration);
  2113. EvBatteryMaxVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].EvBatteryMaxVoltage);
  2114. EvBatterytargetVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].EvBatterytargetVoltage);
  2115. EvBatterySoc[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].EvBatterySoc);
  2116. PilotVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PilotVoltage);
  2117. SystemStatus[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].SystemStatus);
  2118. EvBatterytargetCurrent[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].EvBatterytargetCurrent);
  2119. StartUserId[0] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].StartUserId);
  2120. StartDateTime[0] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].StartDateTime);
  2121. StopDateTime[0] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].StopDateTime);
  2122. StartMethod[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].StartMethod);
  2123. if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ConnectorTemp == 0 || ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ConnectorTemp == 255){
  2124. ConnectorTemp[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ConnectorTemp);
  2125. }
  2126. else{
  2127. ConnectorTemp[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ConnectorTemp-60);
  2128. }
  2129. if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ChillerTemp == 0 || ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ChillerTemp == 255){
  2130. ChillerTemp[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ChillerTemp);
  2131. }
  2132. else{
  2133. ChillerTemp[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ChillerTemp-60);
  2134. }
  2135. PowerConsumption[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PowerConsumption);
  2136. CcsGunQty++;
  2137. }
  2138. else if(connectorType1 == 2){//GB
  2139. PresentChargingVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargingVoltage);
  2140. PresentChargingCurrent[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargingCurrent);
  2141. PresentChargingPower[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargingPower);
  2142. PresentChargedEnergy[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargedEnergy);
  2143. PresentChargedDuration[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargedDuration);
  2144. RemainChargingDuration[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].RemainChargingDuration);
  2145. EvBatteryMaxVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatteryMaxVoltage);
  2146. EvBatterytargetVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatterytargetVoltage);
  2147. EvBatterySoc[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatterySoc);
  2148. PilotVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PilotVoltage);
  2149. SystemStatus[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].SystemStatus);
  2150. EvBatterytargetCurrent[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatterytargetCurrent);
  2151. StartUserId[0] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].StartUserId);
  2152. StartDateTime[0] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].StartDateTime);
  2153. StopDateTime[0] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].StopDateTime);
  2154. StartMethod[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].StartMethod);
  2155. if(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ConnectorTemp == 0 || ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ConnectorTemp == 255){
  2156. ConnectorTemp[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ConnectorTemp);
  2157. }
  2158. else{
  2159. ConnectorTemp[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ConnectorTemp-60);
  2160. }
  2161. if(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ChillerTemp == 0 || ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ChillerTemp == 255){
  2162. ChillerTemp[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ChillerTemp);
  2163. }
  2164. else{
  2165. ChillerTemp[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ChillerTemp-60);
  2166. }
  2167. PowerConsumption[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PowerConsumption);
  2168. GbGunQty++;
  2169. }
  2170. else if(connectorType1 == 3){//CHAdeMO
  2171. PresentChargingVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargingVoltage);
  2172. PresentChargingCurrent[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargingCurrent);
  2173. PresentChargingPower[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargingPower);
  2174. PresentChargedEnergy[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargedEnergy);
  2175. PresentChargedDuration[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargedDuration);
  2176. RemainChargingDuration[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].RemainChargingDuration);
  2177. EvBatteryMaxVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatteryMaxVoltage);
  2178. EvBatterytargetVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatterytargetVoltage);
  2179. EvBatterySoc[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatterySoc);
  2180. PilotVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PilotVoltage);
  2181. SystemStatus[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].SystemStatus);
  2182. EvBatterytargetCurrent[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatterytargetCurrent);
  2183. StartUserId[0] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].StartUserId);
  2184. StartDateTime[0] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].StartDateTime);
  2185. StopDateTime[0] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].StopDateTime);
  2186. StartMethod[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].StartMethod);
  2187. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ConnectorTemp == 0 || ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ConnectorTemp == 255){
  2188. ConnectorTemp[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ConnectorTemp);
  2189. }
  2190. else{
  2191. ConnectorTemp[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ConnectorTemp-60);
  2192. }
  2193. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ChillerTemp == 0 || ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ChillerTemp == 255){
  2194. ChillerTemp[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ChillerTemp);
  2195. }
  2196. else{
  2197. ChillerTemp[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ChillerTemp-60);
  2198. }
  2199. PowerConsumption[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PowerConsumption);
  2200. CHAdeMOGunQty++;
  2201. }
  2202. else if(connectorType1 == 4){//AC
  2203. PresentChargingVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargingVoltage);
  2204. PresentChargingCurrent[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargingCurrent);
  2205. PresentChargingPower[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargingPower);
  2206. PresentChargedEnergy[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargedEnergy);
  2207. PresentChargedDuration[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargedDuration);
  2208. RemainChargingDuration[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].RemainChargingDuration);
  2209. EvBatteryMaxVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatteryMaxVoltage);
  2210. EvBatterytargetVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatterytargetVoltage);
  2211. EvBatterySoc[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatterySoc);
  2212. PilotVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PilotVoltage);
  2213. SystemStatus[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].SystemStatus);
  2214. EvBatterytargetCurrent[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatterytargetCurrent);
  2215. StartUserId[0] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].StartUserId);
  2216. StartDateTime[0] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].StartDateTime);
  2217. StopDateTime[0] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].StopDateTime);
  2218. StartMethod[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].StartMethod);
  2219. ConnectorTemp[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].ConnectorTemp);
  2220. ChillerTemp[0] = json_object_new_int(255);
  2221. PowerConsumption[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PowerConsumption);
  2222. if(strcmp(IsDO, "AX") == 0){
  2223. isCalibratedVaGain[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedVaGain);
  2224. isCalibratedVbGain[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedVbGain);
  2225. isCalibratedVcGain[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedVcGain);
  2226. isCalibratedVaOffset[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedVaOffset);
  2227. isCalibratedVbOffset[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedVbOffset);
  2228. isCalibratedVcOffset[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedVcOffset);
  2229. isCalibratedCaGain[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedCaGain);
  2230. isCalibratedCbGain[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedCbGain);
  2231. isCalibratedCcGain[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedCcGain);
  2232. isCalibratedCaOffset[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedCaOffset);
  2233. isCalibratedCbOffset[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedCbOffset);
  2234. isCalibratedCcOffset[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedCcOffset);
  2235. isCalibratedPa[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedPa);
  2236. isCalibratedPb[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedPb);
  2237. isCalibratedPc[0] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedPc);
  2238. }
  2239. AcGunQty++;
  2240. }
  2241. }
  2242. if(connectorType2 != 0){
  2243. if(connectorType2 == 1){//CCS
  2244. PresentChargingVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargingVoltage);
  2245. PresentChargingCurrent[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargingCurrent);
  2246. PresentChargingPower[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargingPower);
  2247. PresentChargedEnergy[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargedEnergy);
  2248. PresentChargedDuration[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargedDuration);
  2249. RemainChargingDuration[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].RemainChargingDuration);
  2250. EvBatteryMaxVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].EvBatteryMaxVoltage);
  2251. EvBatterytargetVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].EvBatterytargetVoltage);
  2252. EvBatterySoc[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].EvBatterySoc);
  2253. PilotVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PilotVoltage);
  2254. SystemStatus[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].SystemStatus);
  2255. EvBatterytargetCurrent[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].EvBatterytargetCurrent);
  2256. StartUserId[1] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].StartUserId);
  2257. StartDateTime[1] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].StartDateTime);
  2258. StopDateTime[1] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].StopDateTime);
  2259. StartMethod[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].StartMethod);
  2260. if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ConnectorTemp == 0 || ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ConnectorTemp == 255){
  2261. ConnectorTemp[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ConnectorTemp);
  2262. }
  2263. else{
  2264. ConnectorTemp[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ConnectorTemp-60);
  2265. }
  2266. if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ChillerTemp == 0 || ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ChillerTemp == 255){
  2267. ChillerTemp[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ChillerTemp);
  2268. }
  2269. else{
  2270. ChillerTemp[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ChillerTemp-60);
  2271. }
  2272. PowerConsumption[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PowerConsumption);
  2273. CcsGunQty++;
  2274. }
  2275. else if(connectorType2 == 2){//GB
  2276. PresentChargingVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargingVoltage);
  2277. PresentChargingCurrent[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargingCurrent);
  2278. PresentChargingPower[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargingPower);
  2279. PresentChargedEnergy[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargedEnergy);
  2280. PresentChargedDuration[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargedDuration);
  2281. RemainChargingDuration[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].RemainChargingDuration);
  2282. EvBatteryMaxVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatteryMaxVoltage);
  2283. EvBatterytargetVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatterytargetVoltage);
  2284. EvBatterySoc[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatterySoc);
  2285. PilotVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PilotVoltage);
  2286. SystemStatus[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].SystemStatus);
  2287. EvBatterytargetCurrent[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatterytargetCurrent);
  2288. StartUserId[1] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].StartUserId);
  2289. StartDateTime[1] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].StartDateTime);
  2290. StopDateTime[1] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].StopDateTime);
  2291. StartMethod[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].StartMethod);
  2292. if(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ConnectorTemp == 0 || ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ConnectorTemp == 255){
  2293. ConnectorTemp[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ConnectorTemp);
  2294. }
  2295. else{
  2296. ConnectorTemp[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ConnectorTemp-60);
  2297. }
  2298. if(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ChillerTemp == 0 || ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ChillerTemp == 255){
  2299. ChillerTemp[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ChillerTemp);
  2300. }
  2301. else{
  2302. ChillerTemp[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ChillerTemp-60);
  2303. }
  2304. PowerConsumption[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PowerConsumption);
  2305. GbGunQty++;
  2306. }
  2307. else if(connectorType2 == 3){//CHAdeMO
  2308. PresentChargingVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargingVoltage);
  2309. PresentChargingCurrent[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargingCurrent);
  2310. PresentChargingPower[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargingPower);
  2311. PresentChargedEnergy[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargedEnergy);
  2312. PresentChargedDuration[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargedDuration);
  2313. RemainChargingDuration[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].RemainChargingDuration);
  2314. EvBatteryMaxVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatteryMaxVoltage);
  2315. EvBatterytargetVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatterytargetVoltage);
  2316. EvBatterySoc[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatterySoc);
  2317. PilotVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PilotVoltage);
  2318. SystemStatus[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].SystemStatus);
  2319. EvBatterytargetCurrent[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatterytargetCurrent);
  2320. StartUserId[1] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].StartUserId);
  2321. StartDateTime[1] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].StartDateTime);
  2322. StopDateTime[1] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].StopDateTime);
  2323. StartMethod[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].StartMethod);
  2324. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ConnectorTemp == 0 || ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ConnectorTemp == 255){
  2325. ConnectorTemp[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ConnectorTemp);
  2326. }
  2327. else{
  2328. ConnectorTemp[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ConnectorTemp-60);
  2329. }
  2330. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ChillerTemp == 0 || ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ChillerTemp == 255){
  2331. ChillerTemp[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ChillerTemp);
  2332. }
  2333. else{
  2334. ChillerTemp[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ChillerTemp-60);
  2335. }
  2336. PowerConsumption[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PowerConsumption);
  2337. CHAdeMOGunQty++;
  2338. }
  2339. else if(connectorType2 == 4){//AC
  2340. PresentChargingVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargingVoltage);
  2341. PresentChargingCurrent[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargingCurrent);
  2342. PresentChargingPower[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargingPower);
  2343. PresentChargedEnergy[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargedEnergy);
  2344. PresentChargedDuration[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargedDuration);
  2345. RemainChargingDuration[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].RemainChargingDuration);
  2346. EvBatteryMaxVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatteryMaxVoltage);
  2347. EvBatterytargetVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatterytargetVoltage);
  2348. EvBatterySoc[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatterySoc);
  2349. PilotVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PilotVoltage);
  2350. SystemStatus[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].SystemStatus);
  2351. EvBatterytargetCurrent[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatterytargetCurrent);
  2352. StartUserId[1] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].StartUserId);
  2353. StartDateTime[1] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].StartDateTime);
  2354. StopDateTime[1] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].StopDateTime);
  2355. StartMethod[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].StartMethod);
  2356. ConnectorTemp[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].ConnectorTemp);
  2357. ChillerTemp[1] = json_object_new_int(255);
  2358. PowerConsumption[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PowerConsumption);
  2359. if(strcmp(IsDO, "AX") == 0){
  2360. isCalibratedVaGain[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedVaGain);
  2361. isCalibratedVbGain[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedVbGain);
  2362. isCalibratedVcGain[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedVcGain);
  2363. isCalibratedVaOffset[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedVaOffset);
  2364. isCalibratedVbOffset[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedVbOffset);
  2365. isCalibratedVcOffset[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedVcOffset);
  2366. isCalibratedCaGain[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedCaGain);
  2367. isCalibratedCbGain[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedCbGain);
  2368. isCalibratedCcGain[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedCcGain);
  2369. isCalibratedCaOffset[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedCaOffset);
  2370. isCalibratedCbOffset[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedCbOffset);
  2371. isCalibratedCcOffset[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedCcOffset);
  2372. isCalibratedPa[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedPa);
  2373. isCalibratedPb[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedPb);
  2374. isCalibratedPc[1] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedPc);
  2375. }
  2376. AcGunQty++;
  2377. }
  2378. }
  2379. if(connectorType3 != 0){
  2380. if(connectorType3 == 1){//CCS
  2381. PresentChargingVoltage[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargingVoltage);
  2382. PresentChargingCurrent[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargingCurrent);
  2383. PresentChargingPower[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargingPower);
  2384. PresentChargedEnergy[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargedEnergy);
  2385. PresentChargedDuration[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PresentChargedDuration);
  2386. RemainChargingDuration[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].RemainChargingDuration);
  2387. EvBatteryMaxVoltage[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].EvBatteryMaxVoltage);
  2388. EvBatterytargetVoltage[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].EvBatterytargetVoltage);
  2389. EvBatterySoc[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].EvBatterySoc);
  2390. PilotVoltage[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PilotVoltage);
  2391. SystemStatus[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].SystemStatus);
  2392. EvBatterytargetCurrent[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].EvBatterytargetCurrent);
  2393. StartUserId[2] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].StartUserId);
  2394. StartDateTime[2] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].StartDateTime);
  2395. StopDateTime[2] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].StopDateTime);
  2396. StartMethod[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].StartMethod);
  2397. if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ConnectorTemp == 0 ||ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ConnectorTemp == 255){
  2398. ConnectorTemp[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ConnectorTemp);
  2399. }
  2400. else{
  2401. ConnectorTemp[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ConnectorTemp-60);
  2402. }
  2403. if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ChillerTemp == 0 ||ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ChillerTemp == 255){
  2404. ChillerTemp[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ChillerTemp);
  2405. }
  2406. else{
  2407. ChillerTemp[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].ChillerTemp-60);
  2408. }
  2409. PowerConsumption[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[CcsGunQty].PowerConsumption);
  2410. CcsGunQty++;
  2411. }
  2412. else if(connectorType3 == 2){//GB
  2413. PresentChargingVoltage[2]= json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargingVoltage);
  2414. PresentChargingCurrent[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargingCurrent);
  2415. PresentChargingPower[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargingPower);
  2416. PresentChargedEnergy[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargedEnergy);
  2417. PresentChargedDuration[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PresentChargedDuration);
  2418. RemainChargingDuration[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].RemainChargingDuration);
  2419. EvBatteryMaxVoltage[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatteryMaxVoltage);
  2420. EvBatterytargetVoltage[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatterytargetVoltage);
  2421. EvBatterySoc[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatterySoc);
  2422. PilotVoltage[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PilotVoltage);
  2423. SystemStatus[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].SystemStatus);
  2424. EvBatterytargetCurrent[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatterytargetCurrent);
  2425. StartUserId[2] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].StartUserId);
  2426. StartDateTime[2] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].StartDateTime);
  2427. StopDateTime[2] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].StopDateTime);
  2428. StartMethod[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].StartMethod);
  2429. if(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ConnectorTemp == 0 || ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ConnectorTemp == 255){
  2430. ConnectorTemp[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ConnectorTemp);
  2431. }
  2432. else{
  2433. ConnectorTemp[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ConnectorTemp-60);
  2434. }
  2435. if(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ChillerTemp == 0 || ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ChillerTemp == 255){
  2436. ChillerTemp[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ChillerTemp);
  2437. }
  2438. else{
  2439. ChillerTemp[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].ChillerTemp-60);
  2440. }
  2441. PowerConsumption[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].PowerConsumption);
  2442. GbGunQty++;
  2443. }
  2444. else if(connectorType3 == 3){//CHAdeMO
  2445. PresentChargingVoltage[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargingVoltage);
  2446. PresentChargingCurrent[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargingCurrent);
  2447. PresentChargingPower[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargingPower);
  2448. PresentChargedEnergy[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargedEnergy);
  2449. PresentChargedDuration[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PresentChargedDuration);
  2450. RemainChargingDuration[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].RemainChargingDuration);
  2451. EvBatteryMaxVoltage[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatteryMaxVoltage);
  2452. EvBatterytargetVoltage[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatterytargetVoltage);
  2453. EvBatterySoc[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatterySoc);
  2454. PilotVoltage[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PilotVoltage);
  2455. SystemStatus[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].SystemStatus);
  2456. EvBatterytargetCurrent[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatterytargetCurrent);
  2457. StartUserId[2] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].StartUserId);
  2458. StartDateTime[2] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].StartDateTime);
  2459. StopDateTime[2] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].StopDateTime);
  2460. StartMethod[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].StartMethod);
  2461. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ConnectorTemp == 0 || ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ConnectorTemp == 255){
  2462. ConnectorTemp[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ConnectorTemp);
  2463. }
  2464. else{
  2465. ConnectorTemp[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ConnectorTemp-60);
  2466. }
  2467. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ChillerTemp == 0 || ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ChillerTemp == 255){
  2468. ChillerTemp[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ChillerTemp);
  2469. }
  2470. else{
  2471. ChillerTemp[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].ChillerTemp-60);
  2472. }
  2473. PowerConsumption[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].PowerConsumption);
  2474. CHAdeMOGunQty++;
  2475. }
  2476. else if(connectorType3 == 4){//AC
  2477. PresentChargingVoltage[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargingVoltage);
  2478. PresentChargingCurrent[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargingCurrent);
  2479. PresentChargingPower[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargingPower);
  2480. PresentChargedEnergy[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargedEnergy);
  2481. PresentChargedDuration[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargedDuration);
  2482. RemainChargingDuration[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].RemainChargingDuration);
  2483. EvBatteryMaxVoltage[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatteryMaxVoltage);
  2484. EvBatterytargetVoltage[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatterytargetVoltage);
  2485. EvBatterySoc[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatterySoc);
  2486. PilotVoltage[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PilotVoltage);
  2487. SystemStatus[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].SystemStatus);
  2488. EvBatterytargetCurrent[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatterytargetCurrent);
  2489. StartUserId[2] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].StartUserId);
  2490. StartDateTime[2] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].StartDateTime);
  2491. StopDateTime[2] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].StopDateTime);
  2492. StartMethod[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].StartMethod);
  2493. ConnectorTemp[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].ConnectorTemp);
  2494. ChillerTemp[2] = json_object_new_int(255);
  2495. PowerConsumption[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PowerConsumption);
  2496. if(strcmp(IsDO, "AX") == 0){
  2497. isCalibratedVaGain[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedVaGain);
  2498. isCalibratedVbGain[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedVbGain);
  2499. isCalibratedVcGain[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedVcGain);
  2500. isCalibratedVaOffset[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedVaOffset);
  2501. isCalibratedVbOffset[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedVbOffset);
  2502. isCalibratedVcOffset[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedVcOffset);
  2503. isCalibratedCaGain[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedCaGain);
  2504. isCalibratedCbGain[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedCbGain);
  2505. isCalibratedCcGain[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedCcGain);
  2506. isCalibratedCaOffset[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedCaOffset);
  2507. isCalibratedCbOffset[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedCbOffset);
  2508. isCalibratedCcOffset[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedCcOffset);
  2509. isCalibratedPa[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedPa);
  2510. isCalibratedPb[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedPb);
  2511. isCalibratedPc[2] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].meterIcCalInfo.isCalibratedPc);
  2512. }
  2513. AcGunQty++;
  2514. }
  2515. }
  2516. if(strcmp(IsDO, "DO") == 0 || strcmp(IsDO, "DK") == 0 || strcmp(IsDO, "DB") == 0 || strcmp(IsDO, "DL") == 0){
  2517. if(ShmSysConfigAndInfo->SysInfo.DispenserInfo.TotalConnectorQuantity>4 || ShmSysConfigAndInfo->SysInfo.DispenserInfo.TotalConnectorQuantity<0)ShmSysConfigAndInfo->SysInfo.DispenserInfo.TotalConnectorQuantity=0;
  2518. int DDTotalConnectorQuantity = ShmSysConfigAndInfo->SysInfo.DispenserInfo.TotalConnectorQuantity;
  2519. for(int i=0;i<DDTotalConnectorQuantity;i++){
  2520. DDPresentChargingVoltage[i] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.PresentChargingVoltage);
  2521. DDPresentChargingCurrent[i] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.PresentChargingCurrent);
  2522. DDPresentChargingPower[i] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.PresentChargingPower);
  2523. DDPresentChargedEnergy[i] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.PresentChargedEnergy);
  2524. DDPresentChargedDuration[i] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.PresentChargedDuration);
  2525. DDRemainChargingDuration[i] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.RemainChargingDuration);
  2526. DDEvBatteryMaxVoltage[i] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.EvBatteryMaxVoltage);
  2527. DDEvBatterytargetVoltage[i] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.EvBatterytargetVoltage);
  2528. DDEvBatterySoc[i] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.EvBatterySoc);
  2529. DDSystemStatus[i] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.SystemStatus);
  2530. DDEvBatterytargetCurrent[i] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.EvBatterytargetCurrent);
  2531. DDStartUserId[i] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.StartUserId);
  2532. DDStartDateTime[i] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.StartDateTime);
  2533. DDStopDateTime[i] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.StopDateTime);
  2534. DDStartMethod[i] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.StartMethod);
  2535. if(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.ConnectorTemp == 0 || ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.ConnectorTemp == 255){
  2536. DDConnectorTemp[i] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.ConnectorTemp);
  2537. }
  2538. else{
  2539. DDConnectorTemp[i] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.ConnectorTemp-60);
  2540. }
  2541. if(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.ChillerTemp == 0 || ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.ChillerTemp == 255){
  2542. DDChillerTemp[i] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.ChillerTemp);
  2543. }
  2544. else{
  2545. DDChillerTemp[i] = json_object_new_int(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.ChillerTemp-60);
  2546. }
  2547. DDPowerConsumption[i] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[i].GeneralChargingData.PowerConsumption);
  2548. }
  2549. }
  2550. //network
  2551. InternetConn = json_object_new_int(ShmSysConfigAndInfo->SysInfo.InternetConn);
  2552. FtpServer = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.FtpServer);
  2553. Eth0DhcpClient = json_object_new_int(ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthDhcpClient);
  2554. Eth0MacAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthMacAddress);
  2555. Eth0IpAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthIpAddress);
  2556. Eth0SubmaskAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthSubmaskAddress);
  2557. Eth0GatewayAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthGatewayAddress);
  2558. Eth1DhcpClient = json_object_new_int(ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthDhcpClient);
  2559. Eth1MacAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthMacAddress);
  2560. Eth1IpAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthIpAddress);
  2561. Eth1SubmaskAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthSubmaskAddress);
  2562. Eth1GatewayAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthGatewayAddress);
  2563. WifiMode = json_object_new_int(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMode);
  2564. WifiSsid = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSsid);
  2565. WifiPassword = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiPassword);
  2566. WifiBroadcastSsid = json_object_new_int(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiBroadcastSsid);
  2567. WifiTargetBssidMac = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiTargetBssidMac);
  2568. WifiRssi = json_object_new_int(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiRssi);
  2569. WifiDhcpServer = json_object_new_int(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpServer);
  2570. WifiDhcpClient = json_object_new_int(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpClient);
  2571. WifiMacAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMacAddress);
  2572. WifiIpAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiIpAddress);
  2573. WifiSubmaskAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSubmaskAddress);
  2574. WifiGatewayAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiGatewayAddress);
  2575. WifiNetworkConn = json_object_new_int(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiNetworkConn);
  2576. TelcomApn = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomApn);
  2577. TelcomRssi = json_object_new_int(ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomRssi);
  2578. TelcomChapPapId = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapId);
  2579. TelcomChapPapPwd = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapPwd);
  2580. TelcomModemImei = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomModemImei);
  2581. TelcomSimImsi = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomSimImsi);
  2582. TelcomSimIccid = json_object_new_string((char*)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomSimIccid);
  2583. TelcomSimStatus = json_object_new_int(ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomSimStatus);
  2584. TelcomModemMode = json_object_new_int(ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomModemMode);
  2585. TelcomIpAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomIpAddress);
  2586. TelcomNetworkConn = json_object_new_int(ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomNetworkConn);
  2587. TelcomEnabled = json_object_new_int(ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomEnabled);
  2588. TelcomNetworkType = json_object_new_int(ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomNetworkType);
  2589. //backend
  2590. BackendConnTimeout = json_object_new_int(ShmSysConfigAndInfo->SysConfig.BackendConnTimeout);
  2591. OfflinePolicy = json_object_new_int(ShmSysConfigAndInfo->SysConfig.OfflinePolicy);
  2592. OfflineMaxChargeEnergy = json_object_new_int(ShmSysConfigAndInfo->SysConfig.OfflineMaxChargeEnergy);
  2593. OfflineMaxChargeDuration = json_object_new_int(ShmSysConfigAndInfo->SysConfig.OfflineMaxChargeDuration);
  2594. OcppConnStatus = json_object_new_int(ShmSysConfigAndInfo->SysInfo.OcppConnStatus);
  2595. MaintainServerConnStatus = json_object_new_int(ShmSysConfigAndInfo->SysInfo.MaintainServerConnStatus);
  2596. OcppServerURL = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.OcppServerURL);
  2597. ChargeBoxId = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.ChargeBoxId);
  2598. OcppSecurityProfile = json_object_new_int(ShmSysConfigAndInfo->SysConfig.OcppSecurityProfile);
  2599. OcppSecurityPassword = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.OcppSecurityPassword);
  2600. MaintainServerSecurityProfile = json_object_new_int(ShmSysConfigAndInfo->SysConfig.MaintainServerSecurityProfile);
  2601. MaintainServerSecurityPassword = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.MaintainServerSecurityPassword);
  2602. chargePointVendor = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.chargePointVendor);
  2603. MaintainServerURL = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.MaintainServerURL);
  2604. FILE *file;
  2605. char line[0];
  2606. Private_Key = json_object_new_string("");
  2607. file = popen("sha256sum /Storage/OCPP/certCP.key", "r");
  2608. if (NULL != file)
  2609. {
  2610. int i=0;
  2611. while (fgets(line, 65, file) != NULL)
  2612. {
  2613. if(i==0){
  2614. Private_Key = json_object_new_string(line);
  2615. }
  2616. i++;
  2617. }
  2618. }
  2619. pclose(file);
  2620. Certificate = json_object_new_string("");
  2621. file = popen("sha256sum /Storage/OCPP/certCP.pem", "r");
  2622. if (NULL != file)
  2623. {
  2624. int i=0;
  2625. while (fgets(line, 65, file) != NULL)
  2626. {
  2627. if(i==0){
  2628. Certificate = json_object_new_string(line);
  2629. }
  2630. i++;
  2631. }
  2632. }
  2633. pclose(file);
  2634. if(strcmp(IsDO, "AX") == 0 || strcmp(IsDO, "AW") == 0 || strcmp(IsAcDc, "D") == 0){
  2635. isEnableLocalPowerSharging = json_object_new_int(ShmSysConfigAndInfo->SysConfig.isEnableLocalPowerSharing);
  2636. PowerSharingCapacity = json_object_new_int(ShmSysConfigAndInfo->SysConfig.PowerSharingCapacityPower);
  2637. PowerSharingServerIP = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.PowerSharingServerIP);
  2638. OcppReceiptrURL = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.OcppReceiptrURL);
  2639. }
  2640. /*for TTIA*/
  2641. if(strcmp(IsAcDc, "D") == 0 && strcmp(SafetyRegulation, "C") == 0){
  2642. isEnableTTIA = json_object_new_int(ShmSysConfigAndInfo->SysConfig.TTIA_Info.isEnableTTIA);
  2643. server_addr = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.TTIA_Info.server_addr);
  2644. server_port = json_object_new_int(ShmSysConfigAndInfo->SysConfig.TTIA_Info.server_port);
  2645. busVenderId = json_object_new_int(ShmSysConfigAndInfo->SysConfig.TTIA_Info.busVenderId);
  2646. EquipmentProvider = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.TTIA_Info.EquipmentProvider);
  2647. TransportationCompanyNo = json_object_new_int(ShmSysConfigAndInfo->SysConfig.TTIA_Info.TransportationCompanyNo);
  2648. TTIAChargeBoxId = json_object_new_int(ShmSysConfigAndInfo->SysConfig.TTIA_Info.ChargeBoxId);
  2649. evseStation = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.TTIA_Info.evseStation);
  2650. }
  2651. //system
  2652. json_object_object_add(jobj1,"ModelName",ModelName);
  2653. json_object_object_add(jobj1,"AcModelName",AcModelName);
  2654. json_object_object_add(jobj1,"SerialNumber",SerialNumber);
  2655. json_object_object_add(jobj1,"SystemId",SystemId);
  2656. json_object_object_add(jobj1,"AcPhaseCount",AcPhaseCount);
  2657. json_object_object_add(jobj1,"PhaseLossPolicy",PhaseLossPolicy);
  2658. json_object_object_add(jobj1,"FactoryConfiguration",FactoryConfiguration);
  2659. json_object_object_add(jobj1,"AuthorisationMode",AuthorisationMode);
  2660. json_object_object_add(jobj1,"DefaultLanguage",DefaultLanguage);
  2661. json_object_object_add(jobj1,"InputVoltageR",InputVoltageR);
  2662. json_object_object_add(jobj1,"InputVoltageS",InputVoltageS);
  2663. json_object_object_add(jobj1,"InputVoltageT",InputVoltageT);
  2664. json_object_object_add(jobj1,"InputVoltageDc",InputVoltageDc);
  2665. json_object_object_add(jobj1,"SystemFanRotaSpeed",SystemFanRotaSpeed);
  2666. json_object_object_add(jobj1,"PsuFanRotaSpeed",PsuFanRotaSpeed);
  2667. json_object_object_add(jobj1,"RfidCardNumEndian",RfidCardNumEndian);
  2668. json_object_object_add(jobj1,"PsuAcInputType",PsuAcInputType);
  2669. json_object_object_add(jobj1,"RatingCurrent",RatingCurrent);
  2670. json_object_object_add(jobj1,"AcRatingCurrent",AcRatingCurrent);
  2671. json_object_object_add(jobj1,"isAPP",isAPP);
  2672. json_object_object_add(jobj1,"isQRCode",isQRCode);
  2673. json_object_object_add(jobj1,"isRFID",isRFID);
  2674. json_object_object_add(jobj1,"QRCodeMadeMode",QRCodeMadeMode);
  2675. json_object_object_add(jobj1,"QRCodeContent",QRCodeContent);
  2676. json_object_object_add(jobj1,"Intensity",Intensity);
  2677. json_object_object_add(jobj1,"isAuthrizeByEVCCID",isAuthrizeByEVCCID);
  2678. json_object_object_add(jobj1,"AuxPower5V",AuxPower5V);
  2679. json_object_object_add(jobj1,"AuxPower12V",AuxPower12V);
  2680. json_object_object_add(jobj1,"AuxPower24V",AuxPower24V);
  2681. json_object_object_add(jobj1,"AuxPower48V",AuxPower48V);
  2682. json_object_object_add(jobj1,"CsuHwRev",CsuHwRev);
  2683. json_object_object_add(jobj1,"CsuBootLoadFwRev",CsuBootLoadFwRev);
  2684. json_object_object_add(jobj1,"CsuKernelFwRev",CsuKernelFwRev);
  2685. json_object_object_add(jobj1,"CsuRootFsFwRev",CsuRootFsFwRev);
  2686. json_object_object_add(jobj1,"CsuPrimFwRev",CsuPrimFwRev);
  2687. json_object_object_add(jobj1,"LcmHwRev",LcmHwRev);
  2688. json_object_object_add(jobj1,"LcmFwRev",LcmFwRev);
  2689. json_object_object_add(jobj1,"PsuHwRev",PsuHwRev);
  2690. json_object_object_add(jobj1,"PsuPrimFwRev",PsuPrimFwRev);
  2691. json_object_object_add(jobj1,"PsuSecFwRev",PsuSecFwRev);
  2692. json_object_object_add(jobj1,"AuxPwrHwRev",AuxPwrHwRev);
  2693. json_object_object_add(jobj1,"AuxPwrFwRev",AuxPwrFwRev);
  2694. json_object_object_add(jobj1,"FanModuleHwRev",FanModuleHwRev);
  2695. json_object_object_add(jobj1,"FanModuleFwRev",FanModuleFwRev);
  2696. json_object_object_add(jobj1,"RelayModuleHwRev",RelayModuleHwRev);
  2697. json_object_object_add(jobj1,"RelayModuleFwRev",RelayModuleFwRev);
  2698. json_object_object_add(jobj1,"TelcomModemFwRev",TelcomModemFwRev);
  2699. json_object_object_add(jobj1,"Connector1FwRev",Connector1FwRev);
  2700. json_object_object_add(jobj1,"Connector2FwRev",Connector2FwRev);
  2701. json_object_object_add(jobj1,"PsuLostQuantity",PsuLostQuantity);
  2702. /* for DC+AC*/
  2703. if(connectorType3==4){
  2704. json_object_object_add(jobj1,"Connector3FwRev",Connector3FwRev);
  2705. }
  2706. json_object_object_add(jobj1,"LedModuleFwRev",LedModuleFwRev);
  2707. json_object_object_add(jobj1,"SystemAmbientTemp",SystemAmbientTemp);
  2708. json_object_object_add(jobj1,"SystemCriticalTemp",SystemCriticalTemp);
  2709. json_object_object_add(jobj1,"CcsConnectorTemp",CcsConnectorTemp);
  2710. json_object_object_add(jobj1,"PsuAmbientTemp",PsuAmbientTemp);
  2711. json_object_object_add(jobj1,"AcPlugInTimes",AcPlugInTimes);
  2712. json_object_object_add(jobj1,"GbPlugInTimes",GbPlugInTimes);
  2713. json_object_object_add(jobj1,"Ccs1PlugInTimes",Ccs1PlugInTime);
  2714. json_object_object_add(jobj1,"Ccs2PlugInTimes",Ccs2PlugInTimes);
  2715. json_object_object_add(jobj1,"ChademoPlugInTimes",ChademoPlugInTimes);
  2716. json_object_object_add(jobj1,"FirmwareUpdate",FirmwareUpdate);
  2717. if(strcmp(IsAcDc, "D") == 0){
  2718. json_object_object_add(jobj1,"FwPrimaryVersion",FwPrimaryVersionArr);
  2719. json_object_object_add(jobj1,"FwSecondVersion",FwSecondVersionArr);
  2720. }
  2721. if(strcmp(IsDO, "DO") == 0 || strcmp(IsDO, "DK") == 0|| strcmp(IsDO, "DB") == 0|| strcmp(IsDO, "DL") == 0){
  2722. json_object_object_add(jobj1,"DispenserQuantity",DispenserQuantity);
  2723. json_object_object_add(jobj1,"TotalConnectorQuantity",TotalConnectorQuantity);
  2724. json_object_object_add(jobj1,"DDLocalStatus",DDLocalStatusArr);
  2725. json_object_object_add(jobj1,"DDModelName",DDModelNameArr);
  2726. json_object_object_add(jobj1,"DDSerialNumber",DDSerialNumberArr);
  2727. json_object_object_add(jobj1,"DDSystemId",DDSystemIdArr);
  2728. json_object_object_add(jobj1,"DDAuthorisationMode",DDAuthorisationModeArr);
  2729. json_object_object_add(jobj1,"DDRfidCardNumEndian",DDRfidCardNumEndianArr);
  2730. json_object_object_add(jobj1,"DDisAPP",DDisAPPArr);
  2731. json_object_object_add(jobj1,"DDisQRCode",DDisQRCodeArr);
  2732. json_object_object_add(jobj1,"DDisRFID",DDisRFIDArr);
  2733. json_object_object_add(jobj1,"DDQRCodeMadeMode",DDQRCodeMadeModeArr);
  2734. json_object_object_add(jobj1,"DDQRCodeContent",DDQRCodeContentArr);
  2735. json_object_object_add(jobj1,"DDFactoryConfiguration",DDFactoryConfigurationArr);
  2736. json_object_object_add(jobj1,"DDCsuBootLoadFwRev",DDCsuBootLoadFwRevArr);
  2737. json_object_object_add(jobj1,"DDCsuKernelFwRev",DDCsuKernelFwRevArr);
  2738. json_object_object_add(jobj1,"DDCsuRootFsFwRev",DDCsuRootFsFwRevArr);
  2739. json_object_object_add(jobj1,"DDCsuPrimFwRev",DDCsuPrimFwRevArr);
  2740. json_object_object_add(jobj1,"DDLcmFwRev",DDLcmFwRevArr);
  2741. json_object_object_add(jobj1,"DDPsuPrimFwRev",DDPsuPrimFwRevArr);
  2742. json_object_object_add(jobj1,"DDPsuSecFwRev",DDPsuSecFwRevArr);
  2743. json_object_object_add(jobj1,"DDFanModuleFwRev",DDFanModuleFwRevArr);
  2744. json_object_object_add(jobj1,"DDRelayModuleFwRev",DDRelayModuleFwRevArr);
  2745. json_object_object_add(jobj1,"DDTelcomModemFwRev",DDTelcomModemFwRevArr);
  2746. json_object_object_add(jobj1,"DDLedModuleFwRev",DDLedModuleFwRevArr);
  2747. json_object_object_add(jobj1,"DDConnector1FwRev",DDConnector1FwRevArr);
  2748. json_object_object_add(jobj1,"DDConnector2FwRev",DDConnector2FwRevArr);
  2749. json_object_object_add(jobj1,"DDIntensity",DDIntensityArr);
  2750. json_object_object_add(jobj1,"Relay2ModuleFwRev",Relay2ModuleFwRev);
  2751. }
  2752. printf("%s\n", json_object_to_json_string(jobj1));
  2753. json_object_put(jobj1);
  2754. //charging
  2755. json_object_object_add(jobj2,"MaxChargingEnergy",MaxChargingEnergy);
  2756. json_object_object_add(jobj2,"MaxChargingPower",MaxChargingPower);
  2757. json_object_object_add(jobj2,"MaxChargingCurrent",MaxChargingCurrent);
  2758. json_object_object_add(jobj2,"MaxChargingVoltage",MaxChargingVoltage);
  2759. json_object_object_add(jobj2,"AcMaxChargingCurrent",AcMaxChargingCurrent);
  2760. json_object_object_add(jobj2,"MaxChargingDuration",MaxChargingDuration);
  2761. json_object_object_add(jobj2,"MaxChargingSoc",MaxChargingSoc);
  2762. json_object_object_add(jobj2,"StopChargingByButton",StopChargingByButton);
  2763. json_object_object_add(jobj2,"FanControlPolicy",FanControlPolicy);
  2764. json_object_array_add(LocalWhiteCardArr,LocalWhiteCard[0]);
  2765. json_object_array_add(LocalWhiteCardArr,LocalWhiteCard[1]);
  2766. json_object_array_add(LocalWhiteCardArr,LocalWhiteCard[2]);
  2767. json_object_array_add(LocalWhiteCardArr,LocalWhiteCard[3]);
  2768. json_object_array_add(LocalWhiteCardArr,LocalWhiteCard[4]);
  2769. json_object_array_add(LocalWhiteCardArr,LocalWhiteCard[5]);
  2770. json_object_array_add(LocalWhiteCardArr,LocalWhiteCard[6]);
  2771. json_object_array_add(LocalWhiteCardArr,LocalWhiteCard[7]);
  2772. json_object_array_add(LocalWhiteCardArr,LocalWhiteCard[8]);
  2773. json_object_array_add(LocalWhiteCardArr,LocalWhiteCard[9]);
  2774. json_object_object_add(jobj2,"LocalWhiteCard",LocalWhiteCardArr);
  2775. json_object_object_add(jobj2,"isBilling",isBilling);
  2776. json_object_object_add(jobj2,"Currency",Currency);
  2777. json_object_array_add(FeeArr,Fee[0]);
  2778. json_object_array_add(FeeArr,Fee[1]);
  2779. json_object_array_add(FeeArr,Fee[2]);
  2780. json_object_array_add(FeeArr,Fee[3]);
  2781. json_object_array_add(FeeArr,Fee[4]);
  2782. json_object_array_add(FeeArr,Fee[5]);
  2783. json_object_array_add(FeeArr,Fee[6]);
  2784. json_object_array_add(FeeArr,Fee[7]);
  2785. json_object_array_add(FeeArr,Fee[8]);
  2786. json_object_array_add(FeeArr,Fee[9]);
  2787. json_object_array_add(FeeArr,Fee[10]);
  2788. json_object_array_add(FeeArr,Fee[11]);
  2789. json_object_array_add(FeeArr,Fee[12]);
  2790. json_object_array_add(FeeArr,Fee[13]);
  2791. json_object_array_add(FeeArr,Fee[14]);
  2792. json_object_array_add(FeeArr,Fee[15]);
  2793. json_object_array_add(FeeArr,Fee[16]);
  2794. json_object_array_add(FeeArr,Fee[17]);
  2795. json_object_array_add(FeeArr,Fee[18]);
  2796. json_object_array_add(FeeArr,Fee[19]);
  2797. json_object_array_add(FeeArr,Fee[20]);
  2798. json_object_array_add(FeeArr,Fee[21]);
  2799. json_object_array_add(FeeArr,Fee[22]);
  2800. json_object_array_add(FeeArr,Fee[23]);
  2801. json_object_object_add(jobj2,"Fee",FeeArr);
  2802. if(connectorType1 != 0){
  2803. json_object_object_add(ChargingInfo1,"StartUserId",StartUserId[0]);
  2804. json_object_object_add(ChargingInfo1,"StartDateTime",StartDateTime[0]);
  2805. json_object_object_add(ChargingInfo1,"StopDateTime",StopDateTime[0]);
  2806. json_object_object_add(ChargingInfo1,"StartMethod",StartMethod[0]);
  2807. json_object_object_add(ChargingInfo1,"ConnectorTemp",ConnectorTemp[0]);
  2808. json_object_object_add(ChargingInfo1,"ChillerTemp",ChillerTemp[0]);
  2809. json_object_object_add(ChargingInfo1,"PresentChargingVoltage",PresentChargingVoltage[0]);
  2810. json_object_object_add(ChargingInfo1,"PresentChargingCurrent",PresentChargingCurrent[0]);
  2811. json_object_object_add(ChargingInfo1,"PresentChargingPower",PresentChargingPower[0]);
  2812. json_object_object_add(ChargingInfo1,"PresentChargedEnergy",PresentChargedEnergy[0]);
  2813. json_object_object_add(ChargingInfo1,"PresentChargedDuration",PresentChargedDuration[0]);
  2814. json_object_object_add(ChargingInfo1,"RemainChargingDuration",RemainChargingDuration[0]);
  2815. json_object_object_add(ChargingInfo1,"EvBatteryMaxVoltage",EvBatteryMaxVoltage[0]);
  2816. json_object_object_add(ChargingInfo1,"EvBatterytargetVoltage",EvBatterytargetVoltage[0]);
  2817. json_object_object_add(ChargingInfo1,"EvBatterySoc",EvBatterySoc[0]);
  2818. json_object_object_add(ChargingInfo1,"PilotVoltage",PilotVoltage[0]);
  2819. json_object_object_add(ChargingInfo1,"SystemStatus",SystemStatus[0]);
  2820. json_object_object_add(ChargingInfo1,"EvBatterytargetCurrent",EvBatterytargetCurrent[0]);
  2821. json_object_object_add(ChargingInfo1,"PowerConsumption",PowerConsumption[0]);
  2822. if(strcmp(IsDO, "AX") == 0){
  2823. json_object_object_add(ChargingInfo1,"isCalibratedVaGain",isCalibratedVaGain[0]);
  2824. json_object_object_add(ChargingInfo1,"isCalibratedVbGain",isCalibratedVbGain[0]);
  2825. json_object_object_add(ChargingInfo1,"isCalibratedVcGain",isCalibratedVcGain[0]);
  2826. json_object_object_add(ChargingInfo1,"isCalibratedVaOffset",isCalibratedVaOffset[0]);
  2827. json_object_object_add(ChargingInfo1,"isCalibratedVbOffset",isCalibratedVbOffset[0]);
  2828. json_object_object_add(ChargingInfo1,"isCalibratedVcOffset",isCalibratedVcOffset[0]);
  2829. json_object_object_add(ChargingInfo1,"isCalibratedCaGain",isCalibratedCaGain[0]);
  2830. json_object_object_add(ChargingInfo1,"isCalibratedCbGain",isCalibratedCbGain[0]);
  2831. json_object_object_add(ChargingInfo1,"isCalibratedCcGain",isCalibratedCcGain[0]);
  2832. json_object_object_add(ChargingInfo1,"isCalibratedCaOffset",isCalibratedCaOffset[0]);
  2833. json_object_object_add(ChargingInfo1,"isCalibratedCbOffset",isCalibratedCbOffset[0]);
  2834. json_object_object_add(ChargingInfo1,"isCalibratedCcOffset",isCalibratedCcOffset[0]);
  2835. json_object_object_add(ChargingInfo1,"isCalibratedPa",isCalibratedPa[0]);
  2836. json_object_object_add(ChargingInfo1,"isCalibratedPb",isCalibratedPb[0]);
  2837. json_object_object_add(ChargingInfo1,"isCalibratedPc",isCalibratedPc[0]);
  2838. }
  2839. json_object_object_add(jobj2,"ChargingInfo1",ChargingInfo1);
  2840. }
  2841. if(connectorType2 != 0){
  2842. json_object_object_add(ChargingInfo2,"StartUserId",StartUserId[1]);
  2843. json_object_object_add(ChargingInfo2,"StartDateTime",StartDateTime[1]);
  2844. json_object_object_add(ChargingInfo2,"StopDateTime",StopDateTime[1]);
  2845. json_object_object_add(ChargingInfo2,"StartMethod",StartMethod[1]);
  2846. json_object_object_add(ChargingInfo2,"ConnectorTemp",ConnectorTemp[1]);
  2847. json_object_object_add(ChargingInfo2,"ChillerTemp",ChillerTemp[1]);
  2848. json_object_object_add(ChargingInfo2,"PresentChargingVoltage",PresentChargingVoltage[1]);
  2849. json_object_object_add(ChargingInfo2,"PresentChargingCurrent",PresentChargingCurrent[1]);
  2850. json_object_object_add(ChargingInfo2,"PresentChargingPower",PresentChargingPower[1]);
  2851. json_object_object_add(ChargingInfo2,"PresentChargedEnergy",PresentChargedEnergy[1]);
  2852. json_object_object_add(ChargingInfo2,"PresentChargedDuration",PresentChargedDuration[1]);
  2853. json_object_object_add(ChargingInfo2,"RemainChargingDuration",RemainChargingDuration[1]);
  2854. json_object_object_add(ChargingInfo2,"EvBatteryMaxVoltage",EvBatteryMaxVoltage[1]);
  2855. json_object_object_add(ChargingInfo2,"EvBatterytargetVoltage",EvBatterytargetVoltage[1]);
  2856. json_object_object_add(ChargingInfo2,"EvBatterySoc",EvBatterySoc[1]);
  2857. json_object_object_add(ChargingInfo2,"PilotVoltage",PilotVoltage[1]);
  2858. json_object_object_add(ChargingInfo2,"SystemStatus",SystemStatus[1]);
  2859. json_object_object_add(ChargingInfo2,"EvBatterytargetCurrent",EvBatterytargetCurrent[1]);
  2860. json_object_object_add(ChargingInfo2,"PowerConsumption",PowerConsumption[1]);
  2861. if(strcmp(IsDO, "AX") == 0){
  2862. json_object_object_add(ChargingInfo2,"isCalibratedVaGain",isCalibratedVaGain[1]);
  2863. json_object_object_add(ChargingInfo2,"isCalibratedVbGain",isCalibratedVbGain[1]);
  2864. json_object_object_add(ChargingInfo2,"isCalibratedVcGain",isCalibratedVcGain[1]);
  2865. json_object_object_add(ChargingInfo2,"isCalibratedVaOffset",isCalibratedVaOffset[1]);
  2866. json_object_object_add(ChargingInfo2,"isCalibratedVbOffset",isCalibratedVbOffset[1]);
  2867. json_object_object_add(ChargingInfo2,"isCalibratedVcOffset",isCalibratedVcOffset[1]);
  2868. json_object_object_add(ChargingInfo2,"isCalibratedCaGain",isCalibratedCaGain[1]);
  2869. json_object_object_add(ChargingInfo2,"isCalibratedCbGain",isCalibratedCbGain[1]);
  2870. json_object_object_add(ChargingInfo2,"isCalibratedCcGain",isCalibratedCcGain[1]);
  2871. json_object_object_add(ChargingInfo2,"isCalibratedCaOffset",isCalibratedCaOffset[1]);
  2872. json_object_object_add(ChargingInfo2,"isCalibratedCbOffset",isCalibratedCbOffset[1]);
  2873. json_object_object_add(ChargingInfo2,"isCalibratedCcOffset",isCalibratedCcOffset[1]);
  2874. json_object_object_add(ChargingInfo2,"isCalibratedPa",isCalibratedPa[1]);
  2875. json_object_object_add(ChargingInfo2,"isCalibratedPb",isCalibratedPb[1]);
  2876. json_object_object_add(ChargingInfo2,"isCalibratedPc",isCalibratedPc[1]);
  2877. }
  2878. json_object_object_add(jobj2,"ChargingInfo2",ChargingInfo2);
  2879. }
  2880. if(connectorType3 != 0){
  2881. json_object_object_add(ChargingInfo3,"StartUserId",StartUserId[2]);
  2882. json_object_object_add(ChargingInfo3,"StartDateTime",StartDateTime[2]);
  2883. json_object_object_add(ChargingInfo3,"StopDateTime",StopDateTime[2]);
  2884. json_object_object_add(ChargingInfo3,"StartMethod",StartMethod[2]);
  2885. json_object_object_add(ChargingInfo3,"ConnectorTemp",ConnectorTemp[2]);
  2886. json_object_object_add(ChargingInfo3,"ChillerTemp",ChillerTemp[2]);
  2887. json_object_object_add(ChargingInfo3,"PresentChargingVoltage",PresentChargingVoltage[2]);
  2888. json_object_object_add(ChargingInfo3,"PresentChargingCurrent",PresentChargingCurrent[2]);
  2889. json_object_object_add(ChargingInfo3,"PresentChargingPower",PresentChargingPower[2]);
  2890. json_object_object_add(ChargingInfo3,"PresentChargedEnergy",PresentChargedEnergy[2]);
  2891. json_object_object_add(ChargingInfo3,"PresentChargedDuration",PresentChargedDuration[2]);
  2892. json_object_object_add(ChargingInfo3,"RemainChargingDuration",RemainChargingDuration[2]);
  2893. json_object_object_add(ChargingInfo3,"EvBatteryMaxVoltage",EvBatteryMaxVoltage[2]);
  2894. json_object_object_add(ChargingInfo3,"EvBatterytargetVoltage",EvBatterytargetVoltage[2]);
  2895. json_object_object_add(ChargingInfo3,"EvBatterySoc",EvBatterySoc[2]);
  2896. json_object_object_add(ChargingInfo3,"PilotVoltage",PilotVoltage[2]);
  2897. json_object_object_add(ChargingInfo3,"SystemStatus",SystemStatus[2]);
  2898. json_object_object_add(ChargingInfo3,"EvBatterytargetCurrent",EvBatterytargetCurrent[2]);
  2899. json_object_object_add(ChargingInfo3,"PowerConsumption",PowerConsumption[2]);
  2900. if(strcmp(IsDO, "AX") == 0){
  2901. json_object_object_add(ChargingInfo3,"isCalibratedVaGain",isCalibratedVaGain[2]);
  2902. json_object_object_add(ChargingInfo3,"isCalibratedVbGain",isCalibratedVbGain[2]);
  2903. json_object_object_add(ChargingInfo3,"isCalibratedVcGain",isCalibratedVcGain[2]);
  2904. json_object_object_add(ChargingInfo3,"isCalibratedVaOffset",isCalibratedVaOffset[2]);
  2905. json_object_object_add(ChargingInfo3,"isCalibratedVbOffset",isCalibratedVbOffset[2]);
  2906. json_object_object_add(ChargingInfo3,"isCalibratedVcOffset",isCalibratedVcOffset[2]);
  2907. json_object_object_add(ChargingInfo3,"isCalibratedCaGain",isCalibratedCaGain[2]);
  2908. json_object_object_add(ChargingInfo3,"isCalibratedCbGain",isCalibratedCbGain[2]);
  2909. json_object_object_add(ChargingInfo3,"isCalibratedCcGain",isCalibratedCcGain[2]);
  2910. json_object_object_add(ChargingInfo3,"isCalibratedCaOffset",isCalibratedCaOffset[2]);
  2911. json_object_object_add(ChargingInfo3,"isCalibratedCbOffset",isCalibratedCbOffset[2]);
  2912. json_object_object_add(ChargingInfo3,"isCalibratedCcOffset",isCalibratedCcOffset[2]);
  2913. json_object_object_add(ChargingInfo3,"isCalibratedPa",isCalibratedPa[2]);
  2914. json_object_object_add(ChargingInfo3,"isCalibratedPb",isCalibratedPb[2]);
  2915. json_object_object_add(ChargingInfo3,"isCalibratedPc",isCalibratedPc[2]);
  2916. }
  2917. json_object_object_add(jobj2,"ChargingInfo3",ChargingInfo3);
  2918. }
  2919. if(strcmp(IsDO, "DO") == 0 || strcmp(IsDO, "DK") == 0 || strcmp(IsDO, "DB") == 0 || strcmp(IsDO, "DL") == 0){
  2920. if(ShmSysConfigAndInfo->SysInfo.DispenserInfo.TotalConnectorQuantity>4|| ShmSysConfigAndInfo->SysInfo.DispenserInfo.TotalConnectorQuantity<0)ShmSysConfigAndInfo->SysInfo.DispenserInfo.TotalConnectorQuantity=0;
  2921. int DDTotalConnectorQuantity = ShmSysConfigAndInfo->SysInfo.DispenserInfo.TotalConnectorQuantity;
  2922. DDChargingInfo1=json_object_new_object();
  2923. DDChargingInfo2=json_object_new_object();
  2924. DDChargingInfo3=json_object_new_object();
  2925. DDChargingInfo4=json_object_new_object();
  2926. if(DDTotalConnectorQuantity>0){
  2927. json_object_object_add(DDChargingInfo1,"StartUserId",DDStartUserId[0]);
  2928. json_object_object_add(DDChargingInfo1,"StartDateTime",DDStartDateTime[0]);
  2929. json_object_object_add(DDChargingInfo1,"StopDateTime",DDStopDateTime[0]);
  2930. json_object_object_add(DDChargingInfo1,"StartMethod",DDStartMethod[0]);
  2931. json_object_object_add(DDChargingInfo1,"ConnectorTemp",DDConnectorTemp[0]);
  2932. json_object_object_add(DDChargingInfo1,"ChillerTemp",DDChillerTemp[0]);
  2933. json_object_object_add(DDChargingInfo1,"PresentChargingVoltage",DDPresentChargingVoltage[0]);
  2934. json_object_object_add(DDChargingInfo1,"PresentChargingCurrent",DDPresentChargingCurrent[0]);
  2935. json_object_object_add(DDChargingInfo1,"PresentChargingPower",DDPresentChargingPower[0]);
  2936. json_object_object_add(DDChargingInfo1,"PresentChargedEnergy",DDPresentChargedEnergy[0]);
  2937. json_object_object_add(DDChargingInfo1,"PresentChargedDuration",DDPresentChargedDuration[0]);
  2938. json_object_object_add(DDChargingInfo1,"RemainChargingDuration",DDRemainChargingDuration[0]);
  2939. json_object_object_add(DDChargingInfo1,"EvBatteryMaxVoltage",DDEvBatteryMaxVoltage[0]);
  2940. json_object_object_add(DDChargingInfo1,"EvBatterytargetVoltage",DDEvBatterytargetVoltage[0]);
  2941. json_object_object_add(DDChargingInfo1,"EvBatterySoc",DDEvBatterySoc[0]);
  2942. json_object_object_add(DDChargingInfo1,"SystemStatus",DDSystemStatus[0]);
  2943. json_object_object_add(DDChargingInfo1,"EvBatterytargetCurrent",DDEvBatterytargetCurrent[0]);
  2944. json_object_object_add(DDChargingInfo1,"PowerConsumption",DDPowerConsumption[0]);
  2945. json_object_object_add(jobj2,"DDChargingInfo1",DDChargingInfo1);
  2946. }
  2947. if(DDTotalConnectorQuantity>1){
  2948. json_object_object_add(DDChargingInfo2,"StartUserId",DDStartUserId[1]);
  2949. json_object_object_add(DDChargingInfo2,"StartDateTime",DDStartDateTime[1]);
  2950. json_object_object_add(DDChargingInfo2,"StopDateTime",DDStopDateTime[1]);
  2951. json_object_object_add(DDChargingInfo2,"StartMethod",DDStartMethod[1]);
  2952. json_object_object_add(DDChargingInfo2,"ConnectorTemp",DDConnectorTemp[1]);
  2953. json_object_object_add(DDChargingInfo2,"ChillerTemp",DDChillerTemp[1]);
  2954. json_object_object_add(DDChargingInfo2,"PresentChargingVoltage",DDPresentChargingVoltage[1]);
  2955. json_object_object_add(DDChargingInfo2,"PresentChargingCurrent",DDPresentChargingCurrent[1]);
  2956. json_object_object_add(DDChargingInfo2,"PresentChargingPower",DDPresentChargingPower[1]);
  2957. json_object_object_add(DDChargingInfo2,"PresentChargedEnergy",DDPresentChargedEnergy[1]);
  2958. json_object_object_add(DDChargingInfo2,"PresentChargedDuration",DDPresentChargedDuration[1]);
  2959. json_object_object_add(DDChargingInfo2,"RemainChargingDuration",DDRemainChargingDuration[1]);
  2960. json_object_object_add(DDChargingInfo2,"EvBatteryMaxVoltage",DDEvBatteryMaxVoltage[1]);
  2961. json_object_object_add(DDChargingInfo2,"EvBatterytargetVoltage",DDEvBatterytargetVoltage[1]);
  2962. json_object_object_add(DDChargingInfo2,"EvBatterySoc",DDEvBatterySoc[1]);
  2963. json_object_object_add(DDChargingInfo2,"SystemStatus",DDSystemStatus[1]);
  2964. json_object_object_add(DDChargingInfo2,"EvBatterytargetCurrent",DDEvBatterytargetCurrent[1]);
  2965. json_object_object_add(DDChargingInfo2,"PowerConsumption",DDPowerConsumption[1]);
  2966. json_object_object_add(jobj2,"DDChargingInfo2",DDChargingInfo2);
  2967. }
  2968. if(DDTotalConnectorQuantity>2){
  2969. json_object_object_add(DDChargingInfo3,"StartUserId",DDStartUserId[2]);
  2970. json_object_object_add(DDChargingInfo3,"StartDateTime",DDStartDateTime[2]);
  2971. json_object_object_add(DDChargingInfo3,"StopDateTime",DDStopDateTime[2]);
  2972. json_object_object_add(DDChargingInfo3,"StartMethod",DDStartMethod[2]);
  2973. json_object_object_add(DDChargingInfo3,"ConnectorTemp",DDConnectorTemp[2]);
  2974. json_object_object_add(DDChargingInfo3,"ChillerTemp",DDChillerTemp[2]);
  2975. json_object_object_add(DDChargingInfo3,"PresentChargingVoltage",DDPresentChargingVoltage[2]);
  2976. json_object_object_add(DDChargingInfo3,"PresentChargingCurrent",DDPresentChargingCurrent[2]);
  2977. json_object_object_add(DDChargingInfo3,"PresentChargingPower",DDPresentChargingPower[2]);
  2978. json_object_object_add(DDChargingInfo3,"PresentChargedEnergy",DDPresentChargedEnergy[2]);
  2979. json_object_object_add(DDChargingInfo3,"PresentChargedDuration",DDPresentChargedDuration[2]);
  2980. json_object_object_add(DDChargingInfo3,"RemainChargingDuration",DDRemainChargingDuration[2]);
  2981. json_object_object_add(DDChargingInfo3,"EvBatteryMaxVoltage",DDEvBatteryMaxVoltage[2]);
  2982. json_object_object_add(DDChargingInfo3,"EvBatterytargetVoltage",DDEvBatterytargetVoltage[2]);
  2983. json_object_object_add(DDChargingInfo3,"EvBatterySoc",DDEvBatterySoc[2]);
  2984. json_object_object_add(DDChargingInfo3,"SystemStatus",DDSystemStatus[2]);
  2985. json_object_object_add(DDChargingInfo3,"EvBatterytargetCurrent",DDEvBatterytargetCurrent[2]);
  2986. json_object_object_add(DDChargingInfo3,"PowerConsumption",DDPowerConsumption[2]);
  2987. json_object_object_add(jobj2,"DDChargingInfo3",DDChargingInfo3);
  2988. }
  2989. if(DDTotalConnectorQuantity>3){
  2990. json_object_object_add(DDChargingInfo4,"StartUserId",DDStartUserId[3]);
  2991. json_object_object_add(DDChargingInfo4,"StartDateTime",DDStartDateTime[3]);
  2992. json_object_object_add(DDChargingInfo4,"StopDateTime",DDStopDateTime[3]);
  2993. json_object_object_add(DDChargingInfo4,"StartMethod",DDStartMethod[3]);
  2994. json_object_object_add(DDChargingInfo4,"ConnectorTemp",DDConnectorTemp[3]);
  2995. json_object_object_add(DDChargingInfo4,"ChillerTemp",DDChillerTemp[3]);
  2996. json_object_object_add(DDChargingInfo4,"PresentChargingVoltage",DDPresentChargingVoltage[3]);
  2997. json_object_object_add(DDChargingInfo4,"PresentChargingCurrent",DDPresentChargingCurrent[3]);
  2998. json_object_object_add(DDChargingInfo4,"PresentChargingPower",DDPresentChargingPower[3]);
  2999. json_object_object_add(DDChargingInfo4,"PresentChargedEnergy",DDPresentChargedEnergy[3]);
  3000. json_object_object_add(DDChargingInfo4,"PresentChargedDuration",DDPresentChargedDuration[3]);
  3001. json_object_object_add(DDChargingInfo4,"RemainChargingDuration",DDRemainChargingDuration[3]);
  3002. json_object_object_add(DDChargingInfo4,"EvBatteryMaxVoltage",DDEvBatteryMaxVoltage[3]);
  3003. json_object_object_add(DDChargingInfo4,"EvBatterytargetVoltage",DDEvBatterytargetVoltage[3]);
  3004. json_object_object_add(DDChargingInfo4,"EvBatterySoc",DDEvBatterySoc[3]);
  3005. json_object_object_add(DDChargingInfo4,"SystemStatus",DDSystemStatus[3]);
  3006. json_object_object_add(DDChargingInfo4,"EvBatterytargetCurrent",DDEvBatterytargetCurrent[3]);
  3007. json_object_object_add(DDChargingInfo4,"PowerConsumption",DDPowerConsumption[3]);
  3008. json_object_object_add(jobj2,"DDChargingInfo4",DDChargingInfo4);
  3009. }
  3010. }
  3011. printf("%s\n", json_object_to_json_string(jobj2));
  3012. json_object_put(jobj2);
  3013. //network
  3014. json_object_object_add(jobj3,"InternetConn",InternetConn);
  3015. json_object_object_add(jobj3,"FtpServer",FtpServer);
  3016. json_object_object_add(jobj3,"Eth0DhcpClient",Eth0DhcpClient);
  3017. json_object_object_add(jobj3,"Eth0MacAddress",Eth0MacAddress);
  3018. json_object_object_add(jobj3,"Eth0IpAddress",Eth0IpAddress);
  3019. json_object_object_add(jobj3,"Eth0SubmaskAddress",Eth0SubmaskAddress);
  3020. json_object_object_add(jobj3,"Eth0GatewayAddress",Eth0GatewayAddress);
  3021. json_object_object_add(jobj3,"Eth1DhcpClient",Eth1DhcpClient);
  3022. json_object_object_add(jobj3,"Eth1MacAddress",Eth1MacAddress);
  3023. json_object_object_add(jobj3,"Eth1IpAddress",Eth1IpAddress);
  3024. json_object_object_add(jobj3,"Eth1SubmaskAddress",Eth1SubmaskAddress);
  3025. json_object_object_add(jobj3,"Eth1GatewayAddress",Eth1GatewayAddress);
  3026. json_object_object_add(jobj3,"WifiMode",WifiMode);
  3027. json_object_object_add(jobj3,"WifiSsid",WifiSsid);
  3028. json_object_object_add(jobj3,"WifiPassword",WifiPassword);
  3029. json_object_object_add(jobj3,"WifiBroadcastSsid",WifiBroadcastSsid);
  3030. json_object_object_add(jobj3,"WifiTargetBssidMac",WifiTargetBssidMac);
  3031. json_object_object_add(jobj3,"WifiRssi",WifiRssi);
  3032. json_object_object_add(jobj3,"WifiDhcpServer",WifiDhcpServer);
  3033. json_object_object_add(jobj3,"WifiDhcpClient",WifiDhcpClient);
  3034. json_object_object_add(jobj3,"WifiMacAddress",WifiMacAddress);
  3035. json_object_object_add(jobj3,"WifiIpAddress",WifiIpAddress);
  3036. json_object_object_add(jobj3,"WifiSubmaskAddress",WifiSubmaskAddress);
  3037. json_object_object_add(jobj3,"WifiGatewayAddress",WifiGatewayAddress);
  3038. json_object_object_add(jobj3,"WifiNetworkConn",WifiNetworkConn);
  3039. json_object_object_add(jobj3,"TelcomApn",TelcomApn);
  3040. json_object_object_add(jobj3,"TelcomRssi",TelcomRssi);
  3041. json_object_object_add(jobj3,"TelcomChapPapId",TelcomChapPapId);
  3042. json_object_object_add(jobj3,"TelcomChapPapPwd",TelcomChapPapPwd);
  3043. json_object_object_add(jobj3,"TelcomModemImei",TelcomModemImei);
  3044. json_object_object_add(jobj3,"TelcomSimImsi",TelcomSimImsi);
  3045. json_object_object_add(jobj3,"TelcomSimIccid",TelcomSimIccid);
  3046. json_object_object_add(jobj3,"TelcomSimStatus",TelcomSimStatus);
  3047. json_object_object_add(jobj3,"TelcomModemMode",TelcomModemMode);
  3048. json_object_object_add(jobj3,"TelcomIpAddress",TelcomIpAddress);
  3049. json_object_object_add(jobj3,"TelcomNetworkConn",TelcomNetworkConn);
  3050. json_object_object_add(jobj3,"TelcomEnabled",TelcomEnabled);
  3051. json_object_object_add(jobj3,"TelcomNetworkType",TelcomNetworkType);
  3052. printf("%s\n", json_object_to_json_string(jobj3));
  3053. json_object_put(jobj3);
  3054. //backend
  3055. json_object_object_add(jobj4,"BackendConnTimeout",BackendConnTimeout);
  3056. json_object_object_add(jobj4,"OfflinePolicy",OfflinePolicy);
  3057. json_object_object_add(jobj4,"OfflineMaxChargeEnergy",OfflineMaxChargeEnergy);
  3058. json_object_object_add(jobj4,"OfflineMaxChargeDuration",OfflineMaxChargeDuration);
  3059. json_object_object_add(jobj4,"OcppConnStatus",OcppConnStatus);
  3060. json_object_object_add(jobj4,"MaintainServerConnStatus",MaintainServerConnStatus);
  3061. json_object_object_add(jobj4,"OcppServerURL",OcppServerURL);
  3062. json_object_object_add(jobj4,"ChargeBoxId",ChargeBoxId);
  3063. json_object_object_add(jobj4,"chargePointVendor",chargePointVendor);
  3064. json_object_object_add(jobj4,"OcppSecurityProfile",OcppSecurityProfile);
  3065. json_object_object_add(jobj4,"OcppSecurityPassword",OcppSecurityPassword);
  3066. json_object_object_add(jobj4,"MaintainServerSecurityProfile",MaintainServerSecurityProfile);
  3067. json_object_object_add(jobj4,"MaintainServerSecurityPassword",MaintainServerSecurityPassword);
  3068. json_object_object_add(jobj4,"MaintainServerURL",MaintainServerURL);
  3069. json_object_object_add(jobj4,"Private_Key",Private_Key);
  3070. json_object_object_add(jobj4,"Certificate",Certificate);
  3071. if(strcmp(IsDO, "AX") == 0 || strcmp(IsDO, "AW") == 0 || strcmp(IsAcDc, "D") == 0){
  3072. json_object_object_add(jobj4,"isEnableLocalPowerSharging",isEnableLocalPowerSharging);
  3073. json_object_object_add(jobj4,"PowerSharingCapacity",PowerSharingCapacity);
  3074. json_object_object_add(jobj4,"PowerSharingServerIP",PowerSharingServerIP);
  3075. json_object_object_add(jobj4,"OcppReceiptrURL",OcppReceiptrURL);
  3076. }
  3077. /*for TTIA*/
  3078. if(strcmp(IsAcDc, "D") == 0 && strcmp(SafetyRegulation, "C") == 0){
  3079. json_object_object_add(jobj4,"isEnableTTIA",isEnableTTIA);
  3080. json_object_object_add(jobj4,"server_addr",server_addr);
  3081. json_object_object_add(jobj4,"server_port",server_port);
  3082. json_object_object_add(jobj4,"busVenderId",busVenderId);
  3083. json_object_object_add(jobj4,"EquipmentProvider",EquipmentProvider);
  3084. json_object_object_add(jobj4,"TransportationCompanyNo",TransportationCompanyNo);
  3085. json_object_object_add(jobj4,"TTIAChargeBoxId",TTIAChargeBoxId);
  3086. json_object_object_add(jobj4,"evseStation",evseStation);
  3087. }
  3088. printf("%s\n", json_object_to_json_string(jobj4));
  3089. json_object_put(jobj4);
  3090. }
  3091. // get status code
  3092. if(strcmp(argv[1], "StatusCode") == 0)
  3093. {
  3094. int type = atoi(argv[2]);
  3095. int bytes = atoi(argv[3]);
  3096. int bits = atoi(argv[4]);
  3097. struct json_object *jobj1;
  3098. //FaultCode
  3099. struct json_object *FaultCode;
  3100. //AlarmCode
  3101. struct json_object *AlarmCode;
  3102. //InfoCode
  3103. struct json_object *InfoCode;
  3104. jobj1=json_object_new_object();
  3105. //FaultCode
  3106. if(type==1){
  3107. FaultCode = json_object_new_int(((ShmStatusCodeData->FaultCode.FaultEvents.FaultVal[bytes]) >> bits) & 1);//(num >> n) & 1
  3108. json_object_object_add(jobj1,"FaultCode",FaultCode);
  3109. }
  3110. //AlarmCode
  3111. if(type==2){
  3112. AlarmCode = json_object_new_int(((ShmStatusCodeData->AlarmCode.AlarmEvents.AlarmVal[bytes]) >> bits) & 1);//(num >> n) & 1
  3113. json_object_object_add(jobj1,"AlarmCode",AlarmCode);
  3114. }
  3115. //InfoCode
  3116. if(type==3){
  3117. InfoCode = json_object_new_int(((ShmStatusCodeData->InfoCode.InfoEvents.InfoVal[bytes]) >> bits) & 1);//(num >> n) & 1
  3118. json_object_object_add(jobj1,"InfoCode",InfoCode);
  3119. }
  3120. printf("%s\n", json_object_to_json_string(jobj1));
  3121. json_object_put(jobj1);
  3122. }
  3123. // for(;;)
  3124. // {
  3125. // }
  3126. return FAIL;
  3127. }