DoComm.c 107 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <stdint.h>
  4. #include <stdarg.h>
  5. #include <string.h>
  6. #include <stdbool.h>
  7. #include <sys/time.h>
  8. #include <sys/timeb.h>
  9. #include <sys/socket.h>
  10. #include <sys/types.h>
  11. #include <sys/ipc.h>
  12. #include <sys/shm.h>
  13. #include <arpa/inet.h>
  14. #include <netinet/in.h>
  15. #include <assert.h>
  16. #include <time.h>
  17. #include <errno.h>
  18. #include <unistd.h>
  19. #include <signal.h>
  20. #include "../Log/log.h"
  21. #include "../ShareMemory/shmMem.h"
  22. #include "../Define/define.h"
  23. #include "../Config.h"
  24. #include "../SelectGun/SelectGun.h"
  25. #include "../timeout.h"
  26. #include "../DataBase/DataBase.h"
  27. #include "DoComm.h"
  28. //------------------------------------------------------------------------------
  29. static DoCommGblData gDoCommGblData = {0};
  30. static MoreInfoReq gMoreInfoReq[2] = {0};
  31. //static ChangePageReq gPageReq[2] = {0};
  32. static ConnectorActReqVar gConnectorActReq[2] = {0};
  33. static struct SysConfigData *pSysConfig = NULL;
  34. static struct SysInfoData *pSysInfo = NULL;
  35. static struct WARNING_CODE_INFO *pSysWarning = NULL;
  36. static struct AlarmCodeData *pAlarmCode = NULL;
  37. static struct PsuData *ShmPsuData = NULL;
  38. static struct OCPP16Data *ShmOCPP16Data = NULL;
  39. static struct PrimaryMcuData *ShmPrimaryMcuData = NULL;
  40. static SelectGunInfo *ShmSelectGunInfo = NULL;
  41. static DcCommonInfo *ShmDcCommonData = NULL;
  42. //static struct ChargingInfoData *ChargingData[CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY]
  43. static struct ChargingInfoData *pDcChargingInfo = NULL;
  44. static struct timeb gRegTimeUp[2][MAX_REGISTER_NUM] = {0};
  45. static struct WARNING_CODE_INFO gPreSysWarningInfo = {0};
  46. // Hexdump
  47. char old_Hexdump[10240];
  48. static uint8_t RemoteStartNoIDState = NO;
  49. static uint8_t ReservationState[2] = {0};
  50. static char ReservationIdTag[2][32];
  51. static uint8_t DeductResultReq[2] = {0};
  52. static int LineStatusCode[2] = {0};
  53. static unsigned int LedIntensity = 0;
  54. static int TimeZoneOffset = 0;
  55. int RxLen;
  56. char Rxdata[1024];
  57. uint8_t _isplugin;
  58. //------------------------------------------------------------------------------
  59. static void removeFaultCodeToBuf(uint8_t *Code);
  60. static void addFaultCodeToBuf(uint8_t *Code);
  61. static int readMiscCommand(int fd, uint8_t id);
  62. static int writeCsuModuleVersion(int fd);
  63. static int writeGroundFaultDetection(int fd, uint8_t status, uint8_t id);
  64. //------------------------------------------------------------------------------
  65. //--- Common function ---
  66. //------------------------------------------------------------------------------
  67. void GetClockTime(struct timespec *_now_time, void *null)
  68. {
  69. clock_gettime(CLOCK_MONOTONIC, _now_time);
  70. }
  71. static int DiffTimeb(struct timeb ST, struct timeb ET)
  72. {
  73. //return milli-second
  74. unsigned int StartTime, StopTime;
  75. StartTime = (unsigned int)ST.time;
  76. StopTime = (unsigned int)ET.time;
  77. return (StopTime - StartTime) * 1000 + ET.millitm - ST.millitm;
  78. }
  79. /**
  80. * [hexdump : check data]
  81. * @Author Jerry
  82. * @DateTime 2018-12-21
  83. * @param p [description]
  84. * @param size [description]
  85. */
  86. static void Hexdump(const void *p, size_t size)
  87. {
  88. const uint8_t *c = p;
  89. char message[10240] = {0};
  90. uint32_t i = 0;
  91. uint32_t message_len = 0;
  92. assert(p);
  93. //printf("Dumping %u bytes from %p:\n", size, p);
  94. message_len += sprintf(&message[message_len], "\nDumping %u bytes from %p:\n", (unsigned int)size, p);
  95. while (size > 0) {
  96. for (i = 0; i < 16; i++) {
  97. if (i < size) {
  98. //printf("%02x ", c[i]);
  99. message_len += sprintf(&message[message_len], "%02x ", c[i]);
  100. } else {
  101. //printf(" ");
  102. message_len += sprintf(&message[message_len], " ");
  103. }
  104. }
  105. for (i = 0; i < 16; i++) {
  106. if (i < size) {
  107. //printf("%c", c[i] >= 32 && c[i] < 127 ? c[i] : '.');
  108. message_len += sprintf(&message[message_len], "%c", c[i] >= 32 && c[i] < 127 ? c[i] : '.');
  109. } else {
  110. //printf(" ");
  111. message_len += sprintf(&message[message_len], " ");
  112. }
  113. }
  114. //printf("\n");
  115. message_len += sprintf(&message[message_len], "\n");
  116. c += 16;
  117. if (size <= 16) {
  118. break;
  119. }
  120. size -= 16;
  121. }
  122. //message_len += sprintf(&message[message_len], "\n");
  123. if( strcmp(old_Hexdump,message) != EQUAL ) {
  124. log_info("%s", message);
  125. strcpy(old_Hexdump,message);
  126. }
  127. }
  128. static int string2ByteArray(char *input, uint8_t *output)
  129. {
  130. int loop = 0;
  131. int i = 0;
  132. while (input[loop] != '\0') {
  133. output[i++] = input[loop++];
  134. }
  135. output[loop] = '\0';
  136. return loop + 1;
  137. }
  138. int string2Date(char* input, uint8_t* output)
  139. {
  140. int loop = 0;
  141. int i = 0;
  142. while (input[loop] != '\0') {
  143. loop++;
  144. }
  145. loop++;
  146. while (input[loop] != '\0') {
  147. output[i++] = input[loop++];
  148. }
  149. output[loop] = '\0';
  150. return loop + 1;
  151. }
  152. static void unixSocketSigPipeHandle(int sig)
  153. {
  154. log_error("socket packet error %x", sig);
  155. }
  156. static void InitSocketSigPipe(void)
  157. {
  158. struct sigaction action;
  159. action.sa_handler = unixSocketSigPipeHandle;
  160. sigemptyset(&action.sa_mask);
  161. action.sa_flags = 0;
  162. sigaction(SIGPIPE, &action, NULL);
  163. }
  164. //------------------------------------------------------------------------------
  165. static void setTcpStatus(uint8_t setValue)
  166. {
  167. pAlarmCode->AlarmEvents.bits.DisconnectedFromDo = setValue;
  168. }
  169. //------------------------------------------------------------------------------
  170. //--- TCP socket function ---
  171. //------------------------------------------------------------------------------
  172. static int sendTcpSocket(int fd, uint8_t *data, uint16_t dataLen)
  173. {
  174. int size = -1;
  175. int i;
  176. char _info[1024];
  177. int len = 0;
  178. // ReadCmdline show network package
  179. if (ShmDcCommonData->showNetPackage) {
  180. len = 0;
  181. len += sprintf(&_info[len], "Net Tx[%d]:", dataLen);
  182. for (i = 0; i < dataLen; i++) {
  183. if (i == 0)
  184. len += sprintf(&_info[len], "[%X]\t", data[i]);
  185. else
  186. len += sprintf(&_info[len], "%X ", data[i]);
  187. }
  188. len += sprintf(&_info[len], "\n");
  189. printf("%s", _info);
  190. }
  191. size = send(fd, data, dataLen , 0);
  192. if ((size < 0) || (errno == EAGAIN)) {
  193. if (size < 0) {
  194. log_error("Send Socket Size = %d, EAGAIN error %d:%s", size, errno, strerror(errno));
  195. }
  196. }
  197. return size;
  198. }
  199. static int recvTcpSocket(int fd, uint8_t *data, uint16_t dataLen,uint8_t ishead)
  200. {
  201. int size = -1;
  202. int i;
  203. uint8_t *pdata = (uint8_t *)data;
  204. size = recv(fd, pdata, dataLen, MSG_WAITALL);
  205. if ((errno == EAGAIN) || (size < 0)) {
  206. log_error("Receive Socket Size = %d, EAGAIN error %d:%s", size, errno, strerror(errno));
  207. }
  208. // ReadCmdline show network package
  209. if (ShmDcCommonData->showNetPackage) {
  210. if (ishead) {
  211. RxLen = 0;
  212. RxLen += sprintf(&Rxdata[RxLen], "Net Rx[%d]:", size);
  213. }
  214. for (i = 0; i < dataLen; i++) {
  215. if (ishead && i == 0)
  216. RxLen += sprintf(&Rxdata[RxLen], "[%X]\t", data[i]);
  217. else
  218. RxLen += sprintf(&Rxdata[RxLen], "%X ", data[i]);
  219. }
  220. if (!ishead) {
  221. RxLen += sprintf(&Rxdata[RxLen], "\n");
  222. printf("%s", Rxdata);
  223. strcpy(Rxdata,"");
  224. }
  225. }
  226. return size;
  227. }
  228. static int getSO_ERROR(int fd)
  229. {
  230. int err = 1;
  231. socklen_t len = sizeof err;
  232. if (-1 == getsockopt(fd, SOL_SOCKET, SO_ERROR, (char *)&err, &len)) {
  233. log_error("getSO_ERROR");
  234. }
  235. if (err) {
  236. errno = err; // set errno to the socket SO_ERROR
  237. }
  238. return err;
  239. }
  240. static void closeSocket(int fd) // *not* the Windows closesocket()
  241. {
  242. if (fd < 0) {
  243. return;
  244. }
  245. getSO_ERROR(fd); // first clear any errors, which can cause close to fail
  246. if (shutdown(fd, SHUT_RDWR) < 0) { // secondly, terminate the 'reliable' delivery
  247. if (errno != ENOTCONN && errno != EINVAL) { // SGI causes EINVAL
  248. log_info("shutdown");
  249. }
  250. }
  251. if (close(fd) < 0) { // finally call close()
  252. log_info("client socket close");
  253. }
  254. }
  255. static int doCommConnToServer(void)
  256. {
  257. struct sockaddr_in dest;
  258. struct timeval tv;
  259. int flag;
  260. int TcpSock = 0;
  261. //if (TcpSock > 0) {
  262. // close(TcpSock);
  263. //}
  264. if ((TcpSock = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
  265. log_error("Open TCP socket NG");
  266. return -1;
  267. }
  268. //flag = fcntl (TcpSock, F_GETFL, 0);
  269. //if (flag >= 0) {
  270. // flag |= O_NONBLOCK;
  271. // fcntl(TcpSock, F_SETFL, flag );
  272. //}
  273. tv.tv_sec = 3;
  274. tv.tv_usec = 0;
  275. setsockopt(TcpSock, SOL_SOCKET, SO_RCVTIMEO, &tv, sizeof(struct timeval)); //設定等待3s
  276. setsockopt(TcpSock, SOL_SOCKET, SO_SNDTIMEO, &tv, sizeof(struct timeval)); //設定傳送3s
  277. flag = 1;
  278. setsockopt(TcpSock, SOL_SOCKET, MSG_NOSIGNAL, &flag, sizeof(flag));
  279. memset(&dest, 0, sizeof(dest));
  280. dest.sin_family = AF_INET;
  281. dest.sin_port = htons(DoTcpPort);
  282. inet_aton(DoIPAddress, (struct in_addr *) &dest.sin_addr.s_addr);
  283. if (connect(TcpSock, (struct sockaddr *) &dest, sizeof(dest)) != 0) {
  284. close(TcpSock);
  285. return -1;
  286. }
  287. return TcpSock;
  288. }
  289. //------------------------------------------------------------------------------
  290. //--- Audi select gun ---
  291. //------------------------------------------------------------------------------
  292. static void clearPricesInfo(uint8_t id)
  293. {
  294. memset(&ShmSelectGunInfo->PricesInfo[id], 0, sizeof(PricesInfo));
  295. ShmSelectGunInfo->PricesInfo[id].Balance = FAIL_BALANCE_PRICES;
  296. }
  297. static void ClearAuthorizedFlag(void)
  298. {
  299. ShmOCPP16Data->SpMsg.bits.AuthorizeConf = NO;
  300. pSysInfo->AuthorizeFlag = NO;
  301. }
  302. static void ClearDetectPluginFlag(void)
  303. {
  304. pSysInfo->WaitForPlugit = NO;
  305. }
  306. static bool isDetectPlugin(void)
  307. {
  308. if (pSysInfo->WaitForPlugit == YES) {
  309. return YES;
  310. }
  311. return NO;
  312. }
  313. static void destroySelectGun(uint8_t curGun)
  314. {
  315. uint8_t i = 0;
  316. uint8_t totalGun = pSysConfig->TotalConnectorCount;
  317. if (curGun == DESTROY_ALL_SEL) {
  318. ShmSelectGunInfo->SelGunInfo.RightGun = SEL_GUN_RELEASE;
  319. ShmSelectGunInfo->SelGunInfo.LeftGun = SEL_GUN_RELEASE;
  320. for (i = 0; i < totalGun; i++) {
  321. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(i);
  322. pDcChargingInfo->TimeoutFlag = Timeout_None;
  323. clearPricesInfo(i);
  324. }
  325. pSysInfo->CurGunSelected = 0;
  326. strcpy((char *)pSysConfig->UserId, "");
  327. }
  328. //for charging timeout or complete
  329. if ((curGun == LEFT_GUN_NUM) && (ShmSelectGunInfo->SelGunInfo.LeftGun != SEL_GUN_RELEASE)) {
  330. ShmSelectGunInfo->SelGunInfo.LeftGun = SEL_GUN_RELEASE;
  331. if (ShmOCPP16Data->SpMsg.bits.AuthorizeConf != NO) {
  332. ClearAuthorizedFlag();
  333. }
  334. clearPricesInfo(curGun);
  335. }
  336. if ((curGun == RIGHT_GUN_NUM) && (ShmSelectGunInfo->SelGunInfo.RightGun != SEL_GUN_RELEASE)) {
  337. if (ShmOCPP16Data->SpMsg.bits.AuthorizeConf != NO) {
  338. ClearAuthorizedFlag();
  339. }
  340. clearPricesInfo(curGun);
  341. }
  342. }
  343. static int getConfirmSelectedGun(uint8_t curSel)
  344. {
  345. if (((curSel == LEFT_GUN_NUM) && (ShmSelectGunInfo->SelGunInfo.LeftGun >= SEL_GUN_CONFIRM)) ||
  346. ((curSel == RIGHT_GUN_NUM) && (ShmSelectGunInfo->SelGunInfo.RightGun >= SEL_GUN_CONFIRM))) {
  347. return PASS;
  348. }
  349. return FAIL;
  350. }
  351. static int getSelGunWaitToAuthor(uint8_t curGun)
  352. {
  353. if (curGun == LEFT_GUN_NUM && ShmSelectGunInfo->SelGunInfo.LeftGun == SEL_GUN_ATHOR) {
  354. return FAIL;
  355. }
  356. if (curGun == RIGHT_GUN_NUM && ShmSelectGunInfo->SelGunInfo.RightGun == SEL_GUN_ATHOR) {
  357. return FAIL;
  358. }
  359. return PASS;
  360. }
  361. static void setConfirmSelGun(uint8_t selGun)
  362. {
  363. if (selGun == LEFT_GUN_NUM && ShmSelectGunInfo->SelGunInfo.LeftGun == SEL_GUN_RELEASE) {
  364. ShmSelectGunInfo->SelGunInfo.LeftGun = SEL_GUN_CONFIRM;
  365. //printf("confirmSelGun left");
  366. } else if (selGun == RIGHT_GUN_NUM && ShmSelectGunInfo->SelGunInfo.RightGun == SEL_GUN_RELEASE) {
  367. ShmSelectGunInfo->SelGunInfo.RightGun = SEL_GUN_CONFIRM;
  368. //printf("confirmSelGun right");
  369. }
  370. }
  371. //------------------------------------------------------------------------------
  372. //--- DoComm function ---
  373. //------------------------------------------------------------------------------
  374. static int compareOpcode(uint8_t opCode)
  375. {
  376. if (opCode != OP_WAIT_RESPONSE) {
  377. //log_error("response operative code fail");
  378. return FAIL;
  379. }
  380. return PASS;
  381. }
  382. static int compareResult(uint8_t result)
  383. {
  384. if (result != COMMAND_RESULT_OK) {
  385. //log_error("response result fail");
  386. return FAIL;
  387. }
  388. return PASS;
  389. }
  390. static int compareRegister(uint8_t srcReg, uint8_t destReg)
  391. {
  392. if (srcReg != destReg) {
  393. //log_error("response register fail");
  394. return FAIL;
  395. }
  396. return PASS;
  397. }
  398. static float transPricesUnit(int prices)
  399. {
  400. //printf("prices = %.2f", prices * PRICES_UNIT);
  401. return (prices * PRICES_UNIT);
  402. }
  403. static void clearMiscCommand(void)
  404. {
  405. gDoCommGblData.MiscCmd = 0;
  406. }
  407. int timecmp(uint8_t* time1, uint8_t* time2)
  408. {
  409. for (int i = 0; i < strlen(time1); i++) {
  410. if (time1[i] != time2[i]) {
  411. return FALSE;
  412. }
  413. }
  414. return TRUE;
  415. }
  416. static int qrCodeUrlInfoHandle(uint8_t *data)
  417. {
  418. //int len = 0;
  419. //char cmdBuf[128] = {0};
  420. char localTime[128] = {0};
  421. uint16_t timeLen = 0;
  422. struct timeb SeqEndTime;
  423. struct tm *tm;
  424. char _setTime[50];
  425. uint8_t cmdBuf[128];
  426. if ((char *)&data[0] == '\0') {
  427. log_error("QR code date error");
  428. return FAIL;
  429. }
  430. //get local system time
  431. ftime(&SeqEndTime);
  432. SeqEndTime.time = time(NULL);
  433. tm = localtime(&SeqEndTime.time);
  434. timeLen = sprintf(localTime, "%04d-%02d-%02d %02d:%02d",
  435. tm->tm_year + 1900,
  436. tm->tm_mon + 1,
  437. tm->tm_mday,
  438. tm->tm_hour,
  439. tm->tm_min);
  440. //copy QR code string
  441. memset(ShmDcCommonData->QRCodeString, '\0', sizeof(ShmDcCommonData->QRCodeString));
  442. //printf("data = %s", data);
  443. //len =
  444. string2ByteArray((char *)data, (uint8_t *)ShmDcCommonData->QRCodeString);
  445. string2Date((char*)data, (uint8_t*)_setTime);
  446. //printf("SystemId = %s", pSysConfig->SystemId);
  447. if (!timecmp(localTime, _setTime)) {
  448. log_info("Set Timer:%s Time Zone:%d", _setTime,ShmDcCommonData->TZOffset);
  449. sprintf((char*)cmdBuf, "date -u -s \"%s\" >> /dev/null &", _setTime);
  450. system((char*)cmdBuf);
  451. system("hwclock -w -u");
  452. system("hwclock -s");
  453. }
  454. //if ((char *)&data[len] == '\0') {
  455. // log_error("power cabinet system date error");
  456. // return FAIL;
  457. //}
  458. //set system date
  459. //if (strncmp((char *)localTime, (char *)&data[len], timeLen) != 0) {
  460. // sprintf(cmdBuf, "date -s \"%s\" >> /dev/null", (char *)&data[len]);
  461. // system(cmdBuf);
  462. // log_info("local time = %s, data time = %s", localTime, (char *)&data[len]);
  463. // ShmOCPP16Data->MsMsg.bits.ResetReq = YES;
  464. // strcpy((char *)ShmOCPP16Data->Reset.Type, "Soft");
  465. // sleep(3);
  466. // //gDoCommGblData.DisConnCount = CHECK_NETWORK_FAIL_COUNT;
  467. //}
  468. return PASS;
  469. }
  470. static int updateFirmwareHandle(uint8_t *imgName)
  471. {
  472. int ret = PASS;
  473. char cmdBuf[1024] = {0};
  474. sprintf(cmdBuf, "/mnt/%s", imgName);
  475. log_info("Program ready to check file %s", cmdBuf);
  476. if ( access(cmdBuf, F_OK) != -1) {
  477. log_info("File '%s' exist.", cmdBuf);
  478. pSysInfo->FirmwareUpdate = YES;
  479. } else {
  480. log_info("File '%s' doesn't exist.", cmdBuf);
  481. ret = FAIL;
  482. }
  483. #if 0
  484. char cmdBuf[1024] = {0};
  485. int status = 0;
  486. system("touch ./tftpUpdate.sh"); //創建shell
  487. sprintf(cmdBuf, "echo tftp -gr %s -l %s/%s %s; > ./tftpUpdate.sh",
  488. imgName,
  489. IMAGE_FILE_PATH,
  490. imgName,
  491. DoIPAddress);
  492. system("chmod +x ./tftpUpdate.sh"); //修改權限
  493. status = system("sh tftpUpdate.sh"); //執行shell
  494. if (-1 == status) {
  495. printf("system error!");
  496. } else {
  497. printf("exit status value = [0x%x]", status);
  498. if (WIFEXITED(status)) {
  499. if (0 == WEXITSTATUS(status)) {
  500. printf("run shell script successfully.");
  501. pSysInfo->FirmwareUpdate = YES;
  502. } else {
  503. printf("run shell script fail, script exit code: %d", WEXITSTATUS(status));
  504. }
  505. } else {
  506. printf("exit status = [%d]", WEXITSTATUS(status));
  507. }
  508. }
  509. system("rm -rf ./tftpUpdate.sh"); //刪除shell
  510. #endif //0
  511. return ret;
  512. }
  513. static int miscCommandHandle(uint8_t dataLen, uint8_t plugNum, uint8_t *data)
  514. {
  515. int ret = PASS;
  516. uint8_t i = 0, j = 0;
  517. uint8_t cmdCount = (dataLen / 6);
  518. uint16_t cmd = 0;
  519. uint32_t value = 0;
  520. float prices = 0;
  521. MiscCommand *pMiscCmd = NULL;
  522. if (cmdCount < 1) {
  523. gDoCommGblData.MiscCmd = 0;
  524. //printf("cmdCount fail = %d, data len = %d", cmdCount, dataLen);
  525. return FAIL;
  526. }
  527. for (i = 0; i < cmdCount; i++) {
  528. pMiscCmd = (MiscCommand *)data + i;
  529. cmd = ntohs(pMiscCmd->CMD);
  530. value = ntohl(*((uint32_t *)&pMiscCmd->Value[0]));
  531. //log_info("misc command = %x, value = %d", cmd, value);
  532. switch (cmd) {
  533. //--- Execute parameter ---
  534. case MISC_CMD_CONNECOTOR_TIMEOUT:
  535. ShmSelectGunInfo->RemoteSetup.ConnectionTimeout = value;
  536. log_info("connection timeout = %d", ShmSelectGunInfo->RemoteSetup.ConnectionTimeout);
  537. clearMiscCommand();
  538. break;
  539. case MISC_CMD_OPERATIVE_STATE:
  540. if ((value > YES) || (value < NO)) {
  541. if (plugNum == 1) {
  542. clearMiscCommand();
  543. }
  544. break;
  545. }
  546. log_info("change availability plugNum = %d, value = %d", plugNum, value);
  547. ShmOCPP16Data->CsMsg.bits[plugNum].ChangeAvailabilityReq = YES;
  548. if (value == YES) {
  549. strcpy((char *)ShmOCPP16Data->ChangeAvailability[plugNum].Type, "Operative");
  550. } else if (value == NO) {
  551. strcpy((char *)ShmOCPP16Data->ChangeAvailability[plugNum].Type, "Inoperative");
  552. }
  553. if (plugNum == 1) {
  554. clearMiscCommand();
  555. }
  556. break;
  557. case MISC_CMD_DEFAULT_PRICES:
  558. prices = transPricesUnit((int)value);
  559. log_info("default prices = %.2f", prices);
  560. if (prices > 0)
  561. ShmDcCommonData->ChargingRate = prices;
  562. //pSysConfig->BillingData.isBilling = YES;
  563. for (j = 0; j < 24; j++) {
  564. pSysConfig->BillingData.Fee[j] = prices;
  565. }
  566. clearMiscCommand();
  567. break;
  568. case MISC_CMD_DEFAULT_CURRENCY:
  569. if (value < 0) {
  570. clearMiscCommand();
  571. return FAIL;
  572. }
  573. //log_info("default currency = %s%c", (uint8_t *)Currency[value]);
  574. log_info("default currency = %s", (uint8_t *)GetCurrency(value));
  575. pSysConfig->BillingData.Currency = value;
  576. clearMiscCommand();
  577. break;
  578. case MISC_CMD_ACCOUNT_BALANCE:
  579. if (pSysInfo->CurGunSelected != (plugNum)) {
  580. clearMiscCommand();
  581. break;
  582. }
  583. #if defined DD360Audi
  584. if (getConfirmSelectedGun(plugNum) == FAIL) {
  585. log_info("Remote start not select gun");
  586. break;
  587. }
  588. #endif //DD360Audi
  589. ShmSelectGunInfo->PricesInfo[plugNum].Balance = transPricesUnit((int)value);
  590. log_info("%d misc balance = %.2f", plugNum, ShmSelectGunInfo->PricesInfo[plugNum].Balance);
  591. clearMiscCommand();
  592. break;
  593. case MISC_CMD_BACKEND_STATUS :
  594. ShmSelectGunInfo->EthDevStatus.Backend = value;
  595. break;
  596. case MISC_CMD_ETHERNET_STATUS :
  597. ShmSelectGunInfo->EthDevStatus.Ethernet = value;
  598. break;
  599. case MISC_CMD_WIFI_STATUS :
  600. ShmSelectGunInfo->EthDevStatus.Wifi = value;
  601. break;
  602. case MISC_CMD_4G_STATUS :
  603. ShmSelectGunInfo->EthDevStatus.FourG = value;
  604. break;
  605. case MISC_CMD_BILLING_INFO:
  606. pSysConfig->BillingData.isBilling = value;
  607. break;
  608. case MISC_CMD_WEB_STOP_CHARGING:
  609. pSysConfig->StopChargingByButton = value;
  610. break;
  611. //--- Control Dispenser ---
  612. case MISC_CMD_HARDWARE_REBOOT:
  613. if (value != YES) {
  614. clearMiscCommand();
  615. break;
  616. }
  617. log_info("Hardware reboot");
  618. ShmOCPP16Data->MsMsg.bits.ResetReq = YES;
  619. strcpy((char *)ShmOCPP16Data->Reset.Type, "Hard");
  620. clearMiscCommand();
  621. break;
  622. case MISC_CMD_SOFTWARE_RESTART:
  623. if (value != YES) {
  624. clearMiscCommand();
  625. break;
  626. }
  627. clearMiscCommand();
  628. log_info("Software reboot");
  629. ShmOCPP16Data->MsMsg.bits.ResetReq = YES;
  630. strcpy((char *)ShmOCPP16Data->Reset.Type, "Soft");
  631. break;
  632. case MISC_CMD_REMOTE_START_CHARGING:
  633. if (value != YES) {
  634. if (plugNum == 1) {
  635. clearMiscCommand();
  636. }
  637. break;
  638. }
  639. log_info("Remote start charging plugNum = %d", plugNum);
  640. if (getSelGunWaitToAuthor(plugNum) == FAIL) {
  641. log_error("Remote start gun already charging");
  642. break;
  643. }
  644. if (pSysInfo->CurGunSelected != (plugNum)) {
  645. if (plugNum == LEFT_GUN_NUM &&
  646. (ShmSelectGunInfo->SelGunInfo.LeftGun == SEL_GUN_CONFIRM ||
  647. ShmSelectGunInfo->SelGunInfo.LeftGun == SEL_GUN_ATHOR)) {
  648. ShmSelectGunInfo->SelGunInfo.LeftGun = SEL_GUN_RELEASE;
  649. strcpy((char *)pSysConfig->UserId, "");
  650. pSysInfo->WaitForPlugit = NO;
  651. sleep(1); //Jerry add
  652. pSysInfo->SystemPage = _LCM_VIEW;
  653. GetClockTime(&pSysInfo->SystemTimeoutTimer, NULL);
  654. pSysInfo->SystemTimeoutFlag = Timeout_None;
  655. }
  656. if (plugNum == RIGHT_GUN_NUM &&
  657. (ShmSelectGunInfo->SelGunInfo.RightGun == SEL_GUN_CONFIRM ||
  658. ShmSelectGunInfo->SelGunInfo.RightGun == SEL_GUN_ATHOR)) {
  659. ShmSelectGunInfo->SelGunInfo.RightGun = SEL_GUN_RELEASE;
  660. strcpy((char *)pSysConfig->UserId, "");
  661. pSysInfo->WaitForPlugit = NO;
  662. sleep(1); //Jerry add
  663. pSysInfo->SystemPage = _LCM_VIEW;
  664. GetClockTime(&pSysInfo->SystemTimeoutTimer, NULL);
  665. pSysInfo->SystemTimeoutFlag = Timeout_None;
  666. }
  667. //pSysInfo->CurGunSelected = (plugNum);
  668. pSysInfo->CurGunSelectedByAc = NO_DEFINE;
  669. }
  670. setConfirmSelGun(pSysInfo->CurGunSelected);
  671. ShmOCPP16Data->CsMsg.bits[plugNum].RemoteStartTransactionReq = YES;
  672. ShmSelectGunInfo->PricesInfo[plugNum].Balance = 0.00;
  673. clearMiscCommand();
  674. break;
  675. case MISC_CMD_REMOTE_STOP_CHARGING:
  676. if (value != YES) {
  677. if (plugNum == 1) {
  678. clearMiscCommand();
  679. }
  680. break;
  681. }
  682. strcpy((char *)pSysConfig->UserId, "");
  683. pSysInfo->WaitForPlugit = NO;
  684. pSysInfo->SystemPage = _LCM_VIEW;
  685. GetClockTime(&pSysInfo->SystemTimeoutTimer, NULL);
  686. pSysInfo->SystemTimeoutFlag = Timeout_None;
  687. destroySelectGun(plugNum);
  688. clearMiscCommand();
  689. break;
  690. case MISC_CMD_REMOTE_UNLOCK:
  691. if (value != YES) {
  692. if (plugNum == 1) {
  693. clearMiscCommand();
  694. }
  695. break;
  696. }
  697. if (isDetectPlugin() == YES) {
  698. ClearDetectPluginFlag();
  699. strcpy((char *)pSysConfig->UserId, "");
  700. pSysInfo->WaitForPlugit = NO;
  701. pSysInfo->SystemPage = _LCM_VIEW;
  702. GetClockTime(&pSysInfo->SystemTimeoutTimer, NULL);
  703. pSysInfo->SystemTimeoutFlag = Timeout_None;
  704. destroySelectGun(plugNum);
  705. } else {
  706. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(plugNum);
  707. pDcChargingInfo->StopChargeFlag = POWER_CABINET_STOP_CHARGING;
  708. }
  709. break;
  710. case MISC_CMD_AUTH_DISABLE:
  711. pSysConfig->AuthorisationMode = value;
  712. log_info("Auto Authorize Disable:%d", pSysConfig->AuthorisationMode);
  713. //clearMiscCommand();
  714. break;
  715. case MISC_CMD_EVCCID_ENABLE:
  716. pSysConfig->isAuthrizeByEVCCID = value;
  717. log_info("Authorize By EVCCID:%d",pSysConfig->isAuthrizeByEVCCID);
  718. //clearMiscCommand();
  719. break;
  720. case MISC_CMD_RESERVATION:
  721. if(value != YES)
  722. {
  723. break;
  724. }
  725. gMoreInfoReq[plugNum].bits.ReservationReq = YES;
  726. break;
  727. case MISC_CMD_CHANGE_LCM_PAGE:
  728. if(value == LCM_PAGE_REMOTE_START_NO_ID)
  729. {
  730. gMoreInfoReq[plugNum].bits.RemoteStartNoID = YES;
  731. }
  732. /*
  733. if(value == LCM_PAGE_JOIN_LINE)
  734. {
  735. if(!gPageReq[plugNum].bits.JoinLine)
  736. {
  737. log_info("Gun %d JoinLine page is trigger", plugNum);
  738. }
  739. gPageReq[plugNum].bits.JoinLine = YES;
  740. }
  741. if(value == LCM_PAGE_PAYMENT_SWITCH)
  742. {
  743. if(!gPageReq[plugNum].bits.PaymentSwitch)
  744. {
  745. log_info("Gun %d PaymentSwitch page is trigger", plugNum);
  746. }
  747. gPageReq[plugNum].bits.PaymentSwitch = YES;
  748. }*/
  749. break;
  750. case MISC_CMD_QR_CODE_REQ:
  751. break;
  752. case MISC_CMD_STATION_INFO_REQ:
  753. if(value != YES)
  754. {
  755. break;
  756. }
  757. gMoreInfoReq[plugNum].bits.StationInfoReq = YES;
  758. break;
  759. case MISC_CMD_FINAL_COST_REQ:
  760. if(value != YES)
  761. {
  762. break;
  763. }
  764. gMoreInfoReq[plugNum].bits.FinalCostReq = YES;
  765. break;
  766. case MISC_CMD_LINE_STATUS_REQ:
  767. LineStatusCode[plugNum] = value;
  768. ShmDcCommonData->LineStatus[plugNum] = value;
  769. log_info("Gun %d Line Status Code: %d", plugNum, LineStatusCode[plugNum]);
  770. break;
  771. case MISC_CMD_LED_INTENSITY:
  772. LedIntensity = value;
  773. log_info("Led Intensity: %d", LedIntensity);
  774. break;
  775. case MISC_CMD_TIME_OFFSET:
  776. TimeZoneOffset = value;
  777. log_info("Time Zone Offset: %d", TimeZoneOffset);
  778. ShmDcCommonData->TZOffset = TimeZoneOffset;
  779. /*
  780. if (TimeZoneOffset == 480) {
  781. system("export TZ=CST-8");
  782. log_info("Set Time Zone CST 8");
  783. }
  784. */
  785. break;
  786. case MISC_CMD_DEFAULT_PRICE_REQ:
  787. if (value != YES)
  788. {
  789. break;
  790. }
  791. gMoreInfoReq[plugNum].bits.DefaultPriceReq = YES;
  792. break;
  793. case MISC_CMD_USER_PRICE_REQ:
  794. if (value != YES)
  795. {
  796. break;
  797. }
  798. gMoreInfoReq[plugNum].bits.UserPriceReq = YES;
  799. break;
  800. case MISC_CMD_RECEIPT_REQ:
  801. if (value != YES)
  802. {
  803. break;
  804. }
  805. gMoreInfoReq[plugNum].bits.ReceiptReq = YES;
  806. break;
  807. default:
  808. clearMiscCommand();
  809. break;
  810. }
  811. usleep(128);
  812. }
  813. return ret;
  814. }
  815. void AddDispenserReq(uint8_t* buff, MiscCommand* req)
  816. {
  817. buff[0] = (req->CMD >> 8) & 0xFF;
  818. buff[1] = req->CMD & 0xFF;
  819. buff[2] = req->Value[0];
  820. buff[3] = req->Value[1];
  821. buff[4] = req->Value[2];
  822. buff[5] = req->Value[3];
  823. }
  824. static int chargingcapabilityHandle(uint8_t *data, uint8_t plugNum)
  825. {
  826. uint8_t addr = 0;
  827. float MaxVolt, MaxCurrent, MaxPower;
  828. static PricesInfo pricesInfo[2] = {0};
  829. CapabilityInfo *pCapabilityInfo = NULL;
  830. AccountInfo *pAccountInfo = NULL;
  831. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(plugNum);
  832. //--- charging capability information --------------------------------------
  833. pCapabilityInfo = (CapabilityInfo *)&data[0];
  834. MaxVolt = (float)(ntohs(pCapabilityInfo->OutputVoltage));
  835. if (MaxVolt >= 0) {
  836. if (MaxVolt > MAX_VOLTAGE) {
  837. MaxVolt = MAX_VOLTAGE;
  838. }
  839. pDcChargingInfo->MaximumChargingVoltage = MaxVolt;
  840. }
  841. MaxCurrent = (float)(ntohs(pCapabilityInfo->OutputCurrent));
  842. if (MaxCurrent >= 0) {
  843. if (MaxCurrent > MAX_CURRENCY) {
  844. MaxCurrent = MAX_CURRENCY;
  845. }
  846. pDcChargingInfo->AvailableChargingCurrent = MaxCurrent;
  847. }
  848. MaxPower = (float)(ntohs(pCapabilityInfo->OutputPower));
  849. if (MaxPower >= 0) {
  850. if (MaxPower > MAX_POWER) {
  851. MaxPower = MAX_POWER;
  852. }
  853. pDcChargingInfo->AvailableChargingPower = MaxPower;
  854. }
  855. //MaxVolt = (float)(data[0] << 8 |data[1]);
  856. //MaxCurrent = (float)(data[2] << 8 | data[3]);
  857. //MaxPower = (float)(data[4] << 8 | data[5]);
  858. //printf("MaxVolt=%f, MaxCurrent=%f, MaxPower=%f,", MaxVolt, MaxCurrent, MaxPower);
  859. //--- user prices information ----------------------------------------------
  860. addr = (sizeof(CapabilityInfo) - 2); //2 byte reserved
  861. pAccountInfo = (AccountInfo *)&data[addr];
  862. pSysConfig->BillingData.Currency = pAccountInfo->Currency;
  863. ShmSelectGunInfo->PricesInfo[plugNum].UserPrices = transPricesUnit(ntohl(pAccountInfo->UserPrices));
  864. pDcChargingInfo->ChargingFee = transPricesUnit(ntohl(pAccountInfo->TotalCost));
  865. ShmSelectGunInfo->PricesInfo[plugNum].Balance = transPricesUnit(ntohl(pAccountInfo->Balance));
  866. ShmSelectGunInfo->PricesInfo[plugNum].Discount = transPricesUnit(ntohl(pAccountInfo->Discount));
  867. ShmSelectGunInfo->PricesInfo[plugNum].TransactionId = ntohl(pAccountInfo->Transaction);
  868. ShmSelectGunInfo->PricesInfo[plugNum].EnergyCost = transPricesUnit(ntohl(pAccountInfo->EnergyCost));
  869. ShmSelectGunInfo->PricesInfo[plugNum].ParkingFee = transPricesUnit(ntohl(pAccountInfo->ParkingFee));
  870. pAccountInfo->RemainAmount = ntohl(pAccountInfo->RemainAmount);
  871. memcpy((char*)&ShmSelectGunInfo->PricesInfo[plugNum].RemainAmount, (char*)&pAccountInfo->RemainAmount, sizeof(uint32_t));
  872. if ((pricesInfo[plugNum].UserPrices != ShmSelectGunInfo->PricesInfo[plugNum].UserPrices) ||
  873. (pricesInfo[plugNum].Balance != ShmSelectGunInfo->PricesInfo[plugNum].Balance) ||
  874. (pricesInfo[plugNum].Discount != ShmSelectGunInfo->PricesInfo[plugNum].Discount) ||
  875. (pricesInfo[plugNum].TransactionId != ShmSelectGunInfo->PricesInfo[plugNum].TransactionId)) {
  876. pricesInfo[plugNum].UserPrices = ShmSelectGunInfo->PricesInfo[plugNum].UserPrices;
  877. pricesInfo[plugNum].Balance = ShmSelectGunInfo->PricesInfo[plugNum].Balance;
  878. pricesInfo[plugNum].Discount = ShmSelectGunInfo->PricesInfo[plugNum].Discount;
  879. pricesInfo[plugNum].TransactionId = ShmSelectGunInfo->PricesInfo[plugNum].TransactionId;
  880. if (ShmSelectGunInfo->PricesInfo[plugNum].TransactionId != 0) {
  881. //ShmDcCommonData->TransactionInfo[plugNum].TransactionId = ShmSelectGunInfo->PricesInfo[plugNum].TransactionId;
  882. //UpdateDeductInfoStatus(plugNum, &ShmDcCommonData->TransactionInfo[plugNum]);
  883. log_info("id = %d, transaction id = %d, user prices = %.2f, Discount = %.2f, Account balances = %.2f, currency = %s",
  884. plugNum,
  885. ShmSelectGunInfo->PricesInfo[plugNum].TransactionId,
  886. ShmSelectGunInfo->PricesInfo[plugNum].UserPrices,
  887. ShmSelectGunInfo->PricesInfo[plugNum].Discount,
  888. ShmSelectGunInfo->PricesInfo[plugNum].Balance,
  889. (uint8_t*)GetCurrency(pSysConfig->BillingData.Currency)
  890. );
  891. }
  892. }
  893. if ((pricesInfo[plugNum].EnergyCost != ShmSelectGunInfo->PricesInfo[plugNum].EnergyCost) ||
  894. (pricesInfo[plugNum].ParkingFee != ShmSelectGunInfo->PricesInfo[plugNum].ParkingFee) ||
  895. (pricesInfo[plugNum].RemainAmount != ShmSelectGunInfo->PricesInfo[plugNum].RemainAmount)) {
  896. pricesInfo[plugNum].ParkingFee = ShmSelectGunInfo->PricesInfo[plugNum].ParkingFee;
  897. pricesInfo[plugNum].EnergyCost = ShmSelectGunInfo->PricesInfo[plugNum].EnergyCost;
  898. pricesInfo[plugNum].RemainAmount = ShmSelectGunInfo->PricesInfo[plugNum].RemainAmount;
  899. log_info("Total Cost:%.2f", pDcChargingInfo->ChargingFee);
  900. log_info("Parking Fee:%.2f", ShmSelectGunInfo->PricesInfo[plugNum].ParkingFee);
  901. log_info("Energy Cost:%.2f", ShmSelectGunInfo->PricesInfo[plugNum].EnergyCost);
  902. log_info("Remain Amount:%.2f", ShmSelectGunInfo->PricesInfo[plugNum].RemainAmount);
  903. }
  904. return PASS;
  905. }
  906. static void addFaultCodeToBuf(uint8_t *Code)
  907. {
  908. uint8_t warningCount = pSysWarning->WarningCount;
  909. if (warningCount < 10) {
  910. memcpy(&pSysWarning->WarningCode[warningCount][0],
  911. Code,
  912. strlen((char *)Code));
  913. pSysWarning->WarningCount++;
  914. }
  915. }
  916. static void removeFaultCodeToBuf(uint8_t *Code)
  917. {
  918. uint8_t find = 0x01;
  919. uint8_t i = 0;
  920. char _code[7] = {0};
  921. sprintf(_code, "%s", Code);
  922. // 把相關的錯誤碼一次移除,避免重複顯示
  923. while (find) {
  924. usleep(128);
  925. find = 0x00;
  926. for (i = 0; i < pSysWarning->WarningCount; i++) {
  927. usleep(128);
  928. if (find == 0x00) {
  929. if (memcmp(&pSysWarning->WarningCode[i][0], _code, 7) == 0) {
  930. find = 0x01;
  931. }
  932. } else {
  933. memcpy(&pSysWarning->WarningCode[i - 1][0],
  934. &pSysWarning->WarningCode[i][0], 7);
  935. }
  936. }
  937. if (find) {
  938. pSysWarning->WarningCount--;
  939. }
  940. }
  941. }
  942. bool CompareArrayIsZero(uint8_t *array, unsigned int array_size)
  943. {
  944. uint8_t i;
  945. if (array != NULL) {
  946. for (i = 0; i < array_size; i++) {
  947. if (array[i] != 0) {
  948. return false;
  949. }
  950. }
  951. }
  952. return true;
  953. }
  954. static int powerCabinetStatusProcess(uint8_t dataLen, uint8_t *data)
  955. {
  956. uint8_t ret = 0;
  957. uint8_t i = 0;
  958. uint8_t count = 0;
  959. uint8_t EventCodeTmp[7] = {0};
  960. uint8_t StatusArray[MAX_REGISTER_NUM][WARNING_CODE_SIZE] = {0};
  961. uint8_t remaindLen = 0;
  962. //uint8_t statusCodeError = 0;
  963. if (dataLen > 0) {
  964. //Hexdump((uint8_t *)data, dataLen);
  965. remaindLen = dataLen % WARNING_CODE_SIZE;
  966. if (remaindLen != 0) {
  967. log_info("fail status code length = %d", dataLen);
  968. dataLen -= remaindLen;
  969. }
  970. if (dataLen < WARNING_CODE_SIZE) {
  971. log_error("fail status code length = %d", dataLen);
  972. //Hexdump(data, dataLen);
  973. if (pSysWarning->WarningCount > 0) {
  974. for (i = 0; i < pSysWarning->WarningCount; i++) {
  975. usleep(128);
  976. if (pSysWarning->WarningCode[i][1] >= '3' || //from backend or power cabinet
  977. (pSysWarning->WarningCode[i][0] >= 'B' &&
  978. pSysWarning->WarningCode[i][1] >= '4')) {
  979. memset(EventCodeTmp, 0, sizeof(EventCodeTmp));
  980. memcpy(EventCodeTmp,
  981. pSysWarning->WarningCode[i],
  982. sizeof(EventCodeTmp));
  983. removeFaultCodeToBuf(EventCodeTmp);
  984. }
  985. }
  986. }
  987. return FAIL;
  988. }
  989. for (count = 0; count < dataLen; count += WARNING_CODE_SIZE) {
  990. usleep(128);
  991. if (strncmp((char *)&data[count + 1], "1", 1) != 0 &&
  992. strncmp((char *)&data[count + 1], "2", 1) != 0 &&
  993. strncmp((char *)&data[count + 1], "3", 1) != 0 &&
  994. (strncmp((char *)&data[count], "B", 1) != 0 &&
  995. strncmp((char *)&data[count + 1], "4", 1) != 0)
  996. ) {
  997. log_error("error status code = %s", (char *)&data[count]);
  998. continue;
  999. }
  1000. // misc command status code handle
  1001. if (strncmp((char *)&data[count], MISC_ST_MISC_CMD, WARNING_CODE_SIZE) == 0) {
  1002. gDoCommGblData.MiscCmd = REG_MISC_CONTROL;
  1003. memset((char *)&data[count], 0, WARNING_CODE_SIZE);
  1004. continue;
  1005. } else if (strncmp((char *)&data[count], MISC_ST_VERSION, WARNING_CODE_SIZE) == 0) {
  1006. gDoCommGblData.MiscCmd = REG_REPORT_CSU_VERSION;
  1007. memset((char *)&data[count], 0, WARNING_CODE_SIZE);
  1008. continue;
  1009. }
  1010. if (CompareArrayIsZero((uint8_t *)&data[count], WARNING_CODE_SIZE) == true) {
  1011. memset(EventCodeTmp, 0, sizeof(EventCodeTmp));
  1012. memcpy(EventCodeTmp, (char *)&data[count], sizeof(EventCodeTmp));
  1013. log_error("error status = %s", EventCodeTmp);
  1014. continue;
  1015. }
  1016. strncpy((char *)&StatusArray[count / WARNING_CODE_SIZE], (char *)&data[count], WARNING_CODE_SIZE);
  1017. ret = 0;
  1018. for (i = 0; i < pSysWarning->WarningCount; i++) {
  1019. usleep(128);
  1020. if (memcmp(&pSysWarning->WarningCode[i][0],
  1021. StatusArray[count / WARNING_CODE_SIZE],
  1022. WARNING_CODE_SIZE) == 0) {
  1023. ret = 1;
  1024. break;
  1025. }
  1026. }
  1027. if (ret == 0) {
  1028. addFaultCodeToBuf(StatusArray[count / WARNING_CODE_SIZE]);
  1029. }
  1030. //Rtn=StatusCodeProcessing(StatusArray[count/6]);
  1031. }
  1032. } else {
  1033. if (CompareArrayIsZero(data, WARNING_CODE_SIZE) == false) {
  1034. log_error("power cabinet status code data length is zero, but have data");
  1035. //Hexdump((uint8_t *)data, WARNING_CODE_SIZE);
  1036. }
  1037. }
  1038. for (i = 0; i < pSysWarning->WarningCount; i++) {
  1039. usleep(128);
  1040. if (pSysWarning->WarningCode[i][1] >= '3' || //from backend or power cabinet 0x33
  1041. (pSysWarning->WarningCode[i][0] >= 'B' &&
  1042. pSysWarning->WarningCode[i][1] >= '4')) {
  1043. ret = 0;
  1044. for (count = 0; count < (dataLen / WARNING_CODE_SIZE); count++) {
  1045. usleep(128);
  1046. if (memcmp(&pSysWarning->WarningCode[i][0],
  1047. StatusArray[count],
  1048. WARNING_CODE_SIZE) == 0) {
  1049. ret = 1;
  1050. break;
  1051. }
  1052. }
  1053. if (ret == 0) {
  1054. memset(EventCodeTmp, 0, sizeof(EventCodeTmp));
  1055. memcpy(EventCodeTmp,
  1056. pSysWarning->WarningCode[i],
  1057. sizeof(EventCodeTmp));
  1058. removeFaultCodeToBuf(EventCodeTmp);
  1059. }
  1060. }
  1061. }
  1062. return PASS;
  1063. }
  1064. void GetCabientDcmRevHandle(uint8_t *data)
  1065. {
  1066. PCDCMVer *pVersion = (PCDCMVer *)&data[0];
  1067. strcpy((char*)ShmDcCommonData->CabinetModelName , (char *)pVersion->CabinetModelName);
  1068. strcpy((char*)ShmDcCommonData->CabinetBoolLoaderVersion, (char*)pVersion->CabinetBoolLoaderVersion);
  1069. strcpy((char*)ShmDcCommonData->CabinetKernelVersion , (char*)pVersion->CabinetKernelVersion);
  1070. strcpy((char*)ShmDcCommonData->CabinetRFSystemVersion , (char*)pVersion->CabinetRFSystemVersion);
  1071. strcpy((char*)ShmDcCommonData->CabinetPrimaryVersion , (char*)pVersion->CabinetPrimaryVersion);
  1072. strcpy((char*)ShmDcCommonData->CabinetIPAddr , (char*)pVersion->CabinetIPAddr);
  1073. }
  1074. void GetCabientOtherRevHandle(uint8_t *data)
  1075. {
  1076. PCOthVer *pVersion = (PCOthVer *)&data[0];
  1077. strcpy((char*)ShmDcCommonData->CabinetRelay0Version , (char*)pVersion->CabinetRelay0Version);
  1078. strcpy((char*)ShmDcCommonData->CabinetRelay1Version , (char*)pVersion->CabinetRelay1Version);
  1079. strcpy((char*)ShmDcCommonData->CabinetFanVersion , (char*)pVersion->CabinetFanVersion);
  1080. }
  1081. void GetCabientEachPsuRevHandle(uint8_t *data)
  1082. {
  1083. PCnPsuVer *pVersion = (PCnPsuVer *)&data[0];
  1084. strcpy((char*)ShmDcCommonData->PsuVer[pVersion->n_PSU].DCVersion, (char*)pVersion->DCVersion);
  1085. strcpy((char*)ShmDcCommonData->PsuVer[pVersion->n_PSU].FPCVersion, (char*)pVersion->FPCVersion);
  1086. }
  1087. static int responsePackeHandle(int fd, uint8_t *pResult, uint8_t plugNum, uint8_t reg)
  1088. {
  1089. int ret = PASS;
  1090. uint8_t rawDataLen = 0;
  1091. CsuResultPkt *pCsuResult = (CsuResultPkt *)pResult;
  1092. SoftwareUpdInfo *pSoftwareUpd = NULL;
  1093. PcPsuOutput *pPcPsuOutput = NULL;
  1094. //Hexdump((uint8_t *)pCsuResult, sizeof(CmdHead) + pCsuResult->Head.DataLen);
  1095. if (compareOpcode(pCsuResult->Head.OP) == FAIL ||
  1096. compareResult(pCsuResult->Data.Result) == FAIL ||
  1097. compareRegister(pCsuResult->Data.Register, reg) == FAIL) {
  1098. if (reg != REG_CHARGING_PERMISSION) {
  1099. return FAIL;
  1100. }
  1101. }
  1102. rawDataLen = (pCsuResult->Head.DataLen - 2); //2 byte = register and result byte
  1103. switch (pCsuResult->Data.Register) {
  1104. case REG_MODEL_NAME:
  1105. break;
  1106. case REG_CONNECTOR_ID:
  1107. gDoCommGblData.ConnectorID[0] = pCsuResult->Data.Data[0];
  1108. gDoCommGblData.ConnectorID[1] = pCsuResult->Data.Data[1];
  1109. ShmDcCommonData->ConnectorId[0] = pCsuResult->Data.Data[0];
  1110. ShmDcCommonData->ConnectorId[1] = pCsuResult->Data.Data[1];
  1111. log_info("OK (Left connector ID = %d, Right connector ID = %d)",
  1112. pCsuResult->Data.Data[0],
  1113. pCsuResult->Data.Data[1]);
  1114. break;
  1115. case REG_POWER_CABINET_STATUS:
  1116. ret = powerCabinetStatusProcess(rawDataLen, pCsuResult->Data.Data);
  1117. break;
  1118. case REG_DISPENSER_STATUS:
  1119. memset(&gPreSysWarningInfo, 0, sizeof(struct WARNING_CODE_INFO));
  1120. memcpy((uint8_t *)&gPreSysWarningInfo,
  1121. pSysWarning,
  1122. sizeof(struct WARNING_CODE_INFO));
  1123. break;
  1124. case REG_CHARGING_CAP:
  1125. chargingcapabilityHandle(pCsuResult->Data.Data, plugNum);
  1126. break;
  1127. case REG_CHARGING_TARGET:
  1128. break;
  1129. case REG_SOFTWARE_UPDATE:
  1130. pSoftwareUpd = (SoftwareUpdInfo *)&pCsuResult->Data.Data[0];
  1131. if ((strcmp((char *)pSoftwareUpd->ImgName, "") == 0) ||
  1132. (rawDataLen == 0) ||
  1133. pSoftwareUpd->UpdateState != 1) {
  1134. ret = FAIL;
  1135. break;
  1136. }
  1137. ret = FAIL;
  1138. ret = updateFirmwareHandle(pSoftwareUpd->ImgName);
  1139. break;
  1140. case REG_PLUG_IN_STATE:
  1141. break;
  1142. case REG_CONNECTOR_STATE:
  1143. break;
  1144. case REG_USER_ID:
  1145. //log_info("USER ID:%s", pCsuResult->Data.Data[0] == 1 ? "Accept" : "Reject" );
  1146. //if (pCsuResult->Data.Data[0] <= 0) {
  1147. // return FAIL;
  1148. //}
  1149. if (pCsuResult->Data.Result == COMMAND_RESULT_NG) {
  1150. return COMMAND_RESULT_NG;
  1151. }
  1152. ShmSelectGunInfo->AuthorStateFromCabinet[plugNum] = pCsuResult->Data.Data[0];
  1153. return pCsuResult->Data.Data[0];
  1154. break;
  1155. case REG_CHARGING_PERMISSION:
  1156. //log_info("id = %d, result = %s, action = %s",
  1157. // pCsuResult->Head.ID,
  1158. // pCsuResult->Data.Result == 1 ? "OK" : "NG",
  1159. // pCsuResult->Data.Data[0] == 1 ? "Permitted" : "NOT permitted");
  1160. if (pCsuResult->Data.Result == COMMAND_RESULT_NG) {
  1161. return COMMAND_RESULT_NG;
  1162. }
  1163. ShmSelectGunInfo->WaitDoCommPermission[plugNum] = pCsuResult->Data.Data[0];
  1164. return pCsuResult->Data.Data[0];
  1165. break;
  1166. case REG_MISC_CONTROL:
  1167. miscCommandHandle(rawDataLen, plugNum, pCsuResult->Data.Data);
  1168. break;
  1169. case REG_REPORT_CSU_VERSION:
  1170. case REG_REPORT_OTHER_VERSION:
  1171. break;
  1172. case REG_PRESENT_CHARGING_INFO:
  1173. pPcPsuOutput = (PcPsuOutput *)&pCsuResult->Data.Data[0];
  1174. ShmDcCommonData->PcPsuOutput[plugNum].Voltage = ntohs((uint16_t)pPcPsuOutput->Voltage);
  1175. ShmDcCommonData->PcPsuOutput[plugNum].Current = ntohs((uint16_t)pPcPsuOutput->Current);
  1176. //log_info("%d power cabinet PSU output vol = %f, cur = %f",
  1177. // plugNum,
  1178. // (float)ShmDcCommonData->PcPsuOutput[plugNum].Voltage,
  1179. // (float)ShmDcCommonData->PcPsuOutput[plugNum].Current);
  1180. break;
  1181. case REG_QRCODE_URL_INFO:
  1182. ret = qrCodeUrlInfoHandle(pCsuResult->Data.Data);
  1183. break;
  1184. case REG_WAIT_PLUG_IT_STATE:
  1185. break;
  1186. case REG_Ground_Fault_Detection:
  1187. if (pCsuResult->Data.Result == COMMAND_RESULT_NG) {
  1188. return COMMAND_RESULT_NG;
  1189. }
  1190. //集電弓relay 不打開才能進入動作
  1191. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(plugNum);
  1192. if(pDcChargingInfo->PantographFlag == YES)
  1193. {
  1194. GroundFaultDetection *gfd = (GroundFaultDetection *)&pCsuResult->Data.Data[0];
  1195. if(pDcChargingInfo->GroundFaultStatus != gfd->Status)
  1196. {
  1197. log_info("id = %d, GFD Result = %d",
  1198. pCsuResult->Head.ID,
  1199. gfd->Status);
  1200. }
  1201. pDcChargingInfo->GroundFaultStatus = gfd->Status;
  1202. }
  1203. break;
  1204. case REG_RESERVATION_IDTAG:
  1205. if (pCsuResult->Data.Result == COMMAND_RESULT_NG) {
  1206. return COMMAND_RESULT_NG;
  1207. }
  1208. uint8_t reservationState = pCsuResult->Data.Data[0] == YES ? YES : NO;
  1209. memset(&ReservationIdTag[plugNum][0], 0x00, 32);
  1210. if(reservationState)
  1211. {
  1212. strcpy(&ReservationIdTag[plugNum][0], (char *)&pCsuResult->Data.Data[1]);
  1213. }
  1214. if(reservationState != ReservationState[plugNum] ||
  1215. (strcmp((char*)ShmDcCommonData->pGunInfo[plugNum].ReservationID, (char*)ReservationIdTag[plugNum]) != EQUAL) )
  1216. {
  1217. log_info("id = %d reservation is %s", pCsuResult->Head.ID, reservationState ? "trigger" : "expired");
  1218. if(reservationState)
  1219. {
  1220. log_info("id = %d reservation idTag: %s", pCsuResult->Head.ID, (char *)&ReservationIdTag[plugNum][0]);
  1221. strcpy(&ShmDcCommonData->pGunInfo[plugNum].ReservationID[0], (char*)&pCsuResult->Data.Data[1]);
  1222. } else {
  1223. strcpy(&ShmDcCommonData->pGunInfo[plugNum].ReservationID[0], "");
  1224. }
  1225. }
  1226. ReservationState[plugNum] = reservationState;
  1227. ShmDcCommonData->pGunInfo[plugNum].ReservationStatus = reservationState;
  1228. break;
  1229. case REG_REMOTE_START_NO_ID:
  1230. if (pCsuResult->Data.Result == COMMAND_RESULT_NG) {
  1231. return COMMAND_RESULT_NG;
  1232. }
  1233. uint8_t remoteStartNoIdState = pCsuResult->Data.Data[0] == YES ? YES : NO;
  1234. if(remoteStartNoIdState != RemoteStartNoIDState)
  1235. {
  1236. log_info("RemoteStartNoID is %s", remoteStartNoIdState ? "trigger" : "expired");
  1237. }
  1238. RemoteStartNoIDState = remoteStartNoIdState;
  1239. break;
  1240. case REG_STATION_INFO:
  1241. if (pCsuResult->Data.Result == COMMAND_RESULT_NG) {
  1242. return COMMAND_RESULT_NG;
  1243. }
  1244. StationVar _stationInfo;
  1245. memset((char *)&_stationInfo, 0x00, sizeof(StationVar));
  1246. _stationInfo.StationID = (pCsuResult->Data.Data[0] << 24) +
  1247. (pCsuResult->Data.Data[1] << 16) +
  1248. (pCsuResult->Data.Data[2] << 8) +
  1249. pCsuResult->Data.Data[3];
  1250. memcpy(_stationInfo.StationName, (char *)&pCsuResult->Data.Data[4], 64);
  1251. _stationInfo.WeatherID |= (pCsuResult->Data.Data[68] << 24);
  1252. _stationInfo.WeatherID |= (pCsuResult->Data.Data[69] << 16);
  1253. _stationInfo.WeatherID |= (pCsuResult->Data.Data[70] << 8);
  1254. _stationInfo.WeatherID |= pCsuResult->Data.Data[71];
  1255. uint8_t *pFloat = (uint8_t *)&_stationInfo.Temperature;
  1256. *(pFloat + 3) = pCsuResult->Data.Data[72];
  1257. *(pFloat + 2) = pCsuResult->Data.Data[73];
  1258. *(pFloat + 1) = pCsuResult->Data.Data[74];
  1259. *(pFloat) = pCsuResult->Data.Data[75];
  1260. ShmDcCommonData->WeatherID = _stationInfo.WeatherID;
  1261. ShmDcCommonData->Temperature = _stationInfo.Temperature;
  1262. ShmDcCommonData->Location = atoi(_stationInfo.StationName);
  1263. log_info("Station Name: %s, ID: %d, Weather: %d, Temperature: %.1f",
  1264. _stationInfo.StationName,
  1265. _stationInfo.StationID,
  1266. _stationInfo.WeatherID,
  1267. _stationInfo.Temperature);
  1268. break;
  1269. case REG_DEDUCT_INFO:
  1270. if (pCsuResult->Data.Result == COMMAND_RESULT_NG) {
  1271. return COMMAND_RESULT_NG;
  1272. }
  1273. break;
  1274. case REG_READ_CABINET_SYSTEMID:
  1275. if (pCsuResult->Data.Result == COMMAND_RESULT_NG) {
  1276. return COMMAND_RESULT_NG;
  1277. }
  1278. if (strcmp((char*)pSysConfig->SystemId, (char*)pCsuResult->Data.Data) != 0) {
  1279. strcpy((char*)pSysConfig->SystemId, (char*)pCsuResult->Data.Data);
  1280. log_info("System ID:%s", pSysConfig->SystemId);
  1281. }
  1282. break;
  1283. case REG_READ_DEFAULT_PRICE:
  1284. if (pCsuResult->Data.Result == COMMAND_RESULT_NG) {
  1285. return COMMAND_RESULT_NG;
  1286. }
  1287. gMoreInfoReq[plugNum].bits.DefaultPriceReq = NO;
  1288. if (strcmp((char*)ShmDcCommonData->DefaultPriceString, (char*)pCsuResult->Data.Data) != EQUAL) {
  1289. strcpy((char*)ShmDcCommonData->DefaultPriceString, (char*)pCsuResult->Data.Data);
  1290. log_info("Default Price:%s", ShmDcCommonData->DefaultPriceString);
  1291. }
  1292. break;
  1293. case REG_READ_USER_PRICE:
  1294. if (pCsuResult->Data.Result == COMMAND_RESULT_NG) {
  1295. return COMMAND_RESULT_NG;
  1296. }
  1297. gMoreInfoReq[plugNum].bits.UserPriceReq = NO;
  1298. if (strcmp((char*)ShmDcCommonData->pGunInfo[plugNum].UserPriceString, (char*)pCsuResult->Data.Data) != EQUAL) {
  1299. strcpy((char*)ShmDcCommonData->pGunInfo[plugNum].UserPriceString, (char*)pCsuResult->Data.Data);
  1300. log_info("User Price:%s", ShmDcCommonData->pGunInfo[plugNum].UserPriceString);
  1301. }
  1302. break;
  1303. case REG_RECEIPT_INFO:
  1304. if (pCsuResult->Data.Result == COMMAND_RESULT_NG) {
  1305. return COMMAND_RESULT_NG;
  1306. }
  1307. gMoreInfoReq[plugNum].bits.ReceiptReq = NO;
  1308. if (strcmp((char*)ShmDcCommonData->pGunInfo[plugNum].ReceiptInfo, (char*)pCsuResult->Data.Data) != EQUAL) {
  1309. strcpy((char*)ShmDcCommonData->pGunInfo[plugNum].ReceiptInfo, (char*)pCsuResult->Data.Data);
  1310. log_info("Gun%d Receipt:%s", plugNum, ShmDcCommonData->pGunInfo[plugNum].ReceiptInfo);
  1311. }
  1312. break;
  1313. case REG_READ_CHARGING_TIMESTAMP:
  1314. if (pCsuResult->Data.Result == COMMAND_RESULT_NG) {
  1315. return COMMAND_RESULT_NG;
  1316. }
  1317. if (rawDataLen <= 2) {
  1318. //log_info("No Charging timestamp");
  1319. break;
  1320. }
  1321. strcpy((char*)ShmDcCommonData->pGunInfo[plugNum].ChargeStartTime, (char*)&pCsuResult->Data.Data[0]);
  1322. int timelen = strlen((char*)ShmDcCommonData->pGunInfo[plugNum].ChargeStartTime);
  1323. if (timelen != 0) {
  1324. timelen = strcpy((char*)ShmDcCommonData->pGunInfo[plugNum].ChargeStopTime, (char*)&pCsuResult->Data.Data[timelen+1]);
  1325. }
  1326. break;
  1327. /*
  1328. case REG_POWER_CONSUMPTION_INFO:
  1329. if (pCsuResult->Data.Result == COMMAND_RESULT_NG) {
  1330. return COMMAND_RESULT_NG;
  1331. }
  1332. PowConsumValue* pValue =NULL;
  1333. pValue = (PowConsumValue*)&pCsuResult->Data.Data[0];
  1334. pValue->Gun1_Consumption = ntohl(pValue->Gun1_Consumption);
  1335. pValue->Gun2_Consumption = ntohl(pValue->Gun2_Consumption);
  1336. pValue->Gun3_Consumption = ntohl(pValue->Gun3_Consumption);
  1337. pValue->Gun4_Consumption = ntohl(pValue->Gun4_Consumption);
  1338. memcpy((char*)&ShmDcCommonData->pConsumption.Gun1_Consumption, (char*)&pValue->Gun1_Consumption, sizeof(uint32_t));
  1339. memcpy((char*)&ShmDcCommonData->pConsumption.Gun2_Consumption, (char*)&pValue->Gun2_Consumption, sizeof(uint32_t));
  1340. memcpy((char*)&ShmDcCommonData->pConsumption.Gun3_Consumption, (char*)&pValue->Gun3_Consumption, sizeof(uint32_t));
  1341. memcpy((char*)&ShmDcCommonData->pConsumption.Gun4_Consumption, (char*)&pValue->Gun4_Consumption, sizeof(uint32_t));
  1342. log_info("Gun1_Consumption:%f", ShmDcCommonData->pConsumption.Gun1_Consumption);
  1343. log_info("Gun2_Consumption:%f", ShmDcCommonData->pConsumption.Gun2_Consumption);
  1344. log_info("Gun3_Consumption:%f", ShmDcCommonData->pConsumption.Gun3_Consumption);
  1345. log_info("Gun4_Consumption:%f", ShmDcCommonData->pConsumption.Gun4_Consumption);
  1346. break;
  1347. */
  1348. default:
  1349. break;
  1350. }
  1351. return ret;
  1352. }
  1353. static int composeSocketData(int fd,
  1354. uint8_t id,
  1355. uint8_t opCode,
  1356. uint8_t reg,
  1357. uint8_t dataLen,
  1358. uint8_t *data)
  1359. {
  1360. int ret = PASS;
  1361. int size = 0;
  1362. int sendPktLen = 0;
  1363. uint8_t i = 0;
  1364. uint8_t plugNum = 0;
  1365. CsuCmdPkt csuCmdPkt = {0};
  1366. CsuResultPkt csuResult = {0};
  1367. csuCmdPkt.Head.SeqNum = gDoCommGblData.SeqNum++;
  1368. csuCmdPkt.Head.ID = id;
  1369. csuCmdPkt.Head.OP = opCode;
  1370. csuCmdPkt.Head.DataLen = dataLen + 1; //+1 for register byte
  1371. csuCmdPkt.Data.Register = reg;
  1372. if ((data != NULL) && (dataLen > 0)) {
  1373. memcpy(csuCmdPkt.Data.Data, data, dataLen);
  1374. }
  1375. sendPktLen = csuCmdPkt.Head.DataLen + sizeof(csuCmdPkt.Head);
  1376. //Hexdump((uint8_t *)&csuCmdPkt, sendPktLen);
  1377. // Not Let ask cabinet version trasmit into FAIL Network
  1378. //send command packet
  1379. if ((size = sendTcpSocket(fd, (uint8_t *)&csuCmdPkt, sendPktLen)) < 0) {
  1380. log_error("TCP socket send packet fail = reg %d size = %d",reg, size);
  1381. gDoCommGblData.DisConnCount++;
  1382. return FAIL;
  1383. }
  1384. //receive result head
  1385. if ((size = recvTcpSocket(fd, (uint8_t *)&csuResult.Head, sizeof(csuResult.Head),1)) < 0) {
  1386. log_error("TCP socket RX head fail = reg %d size = %d",reg, size);
  1387. // 若收不到以下封包,不產生錯誤
  1388. if (reg != REG_CABINET_DCM_VERSION && reg != REG_CABINET_OTHER_VERSION &&
  1389. reg != REG_TOTAL_PSU_QUANTITY && reg != REG_PSU_VERSION ) {
  1390. gDoCommGblData.DisConnCount++;
  1391. }
  1392. return FAIL;
  1393. }
  1394. //receive result raw data
  1395. if ((size = recvTcpSocket(fd, (uint8_t *)&csuResult.Data, csuResult.Head.DataLen,0)) < 0) {
  1396. log_error("TCP socket RX data fail = reg %d size %d",reg, size);
  1397. gDoCommGblData.DisConnCount++;
  1398. return FAIL;
  1399. }
  1400. for (i = 0; i < sizeof(gDoCommGblData.ConnectorID); i++) {
  1401. if (id == gDoCommGblData.ConnectorID[i]) {
  1402. plugNum = i;
  1403. break;
  1404. }
  1405. }
  1406. ret = responsePackeHandle(fd, (uint8_t *)&csuResult, plugNum, csuCmdPkt.Data.Register);
  1407. gDoCommGblData.DisConnCount = 0; //送收資料沒有問題, 清除中斷網路計數
  1408. return ret;
  1409. }
  1410. static int writeDispenserRequest(int fd, uint8_t id, uint8_t gunIndex)
  1411. {
  1412. int ret = PASS;
  1413. int count = 0;
  1414. MiscCommand dispenserReq;
  1415. uint8_t data[6] = { 0 };
  1416. if (gConnectorActReq[gunIndex].bits.ChargingCancel)
  1417. {
  1418. dispenserReq.CMD = DISPENSER_REQ_CHARGING_CANCEL;
  1419. dispenserReq.Value[0] = 0;
  1420. dispenserReq.Value[1] = 0;
  1421. dispenserReq.Value[2] = 0;
  1422. dispenserReq.Value[3] = 1;
  1423. AddDispenserReq(data, &dispenserReq);
  1424. count++;
  1425. log_info("Write Gun %d CHARGING_CANCEL", gunIndex);
  1426. }
  1427. if ((ret = composeSocketData(fd,
  1428. id,
  1429. OP_WRITE_DATA,
  1430. REG_DISPENSER_REQUEST,
  1431. (count * 6),
  1432. &data[0])) == FAIL) {
  1433. return ret;
  1434. }
  1435. return ret;
  1436. }
  1437. static int readReservationState(int fd, uint8_t id)
  1438. {
  1439. int ret = PASS;
  1440. if ((ret = composeSocketData(fd,
  1441. id,
  1442. OP_READ_DATA,
  1443. REG_RESERVATION_IDTAG,
  1444. 0,
  1445. NULL)) == FAIL) {
  1446. return ret;
  1447. }
  1448. return ret;
  1449. }
  1450. static int readRemoteStartNoIDState(int fd)
  1451. {
  1452. int ret = PASS;
  1453. if ((ret = composeSocketData(fd,
  1454. ID_REGISTER,
  1455. OP_READ_DATA,
  1456. REG_REMOTE_START_NO_ID,
  1457. 0,
  1458. NULL)) == FAIL) {
  1459. return ret;
  1460. }
  1461. return ret;
  1462. }
  1463. static int readChargerStationInfo(int fd)
  1464. {
  1465. int ret = PASS;
  1466. if ((ret = composeSocketData(fd,
  1467. ID_REGISTER,
  1468. OP_READ_DATA,
  1469. REG_STATION_INFO,
  1470. 0,
  1471. NULL)) == FAIL) {
  1472. return ret;
  1473. }
  1474. return ret;
  1475. }
  1476. /*
  1477. static int writeDeductInfo(int fd, uint8_t id,uint8_t gunIndex, RecordTransactionInfo *transactionInfo)
  1478. {
  1479. int ret = PASS;
  1480. uint8_t dataBuf[104] = {0};
  1481. //int i;
  1482. memset((char *)dataBuf, 0x00, sizeof(dataBuf));
  1483. dataBuf[0] = transactionInfo->DeductResult;
  1484. dataBuf[1] = transactionInfo->IsDonateInvoice;
  1485. dataBuf[2] = (transactionInfo->TransactionId >> 24) & 0xFF;
  1486. dataBuf[3] = (transactionInfo->TransactionId >> 16) & 0xFF;
  1487. dataBuf[4] = (transactionInfo->TransactionId >> 8) & 0xFF;
  1488. dataBuf[5] = (transactionInfo->TransactionId & 0xFF);
  1489. int amount = (int)(transactionInfo->Amount * 100);
  1490. dataBuf[6] = (amount >> 24) & 0xFF;
  1491. dataBuf[7] = (amount >> 16) & 0xFF;
  1492. dataBuf[8] = (amount >> 8) & 0xFF;
  1493. dataBuf[9] = (amount & 0xFF);
  1494. memcpy((char *)&dataBuf[10], transactionInfo->pCreditCard.ApprovalNo,9);
  1495. memcpy((char *)&dataBuf[19], transactionInfo->pCreditCard.VemData, 64);
  1496. memcpy((char*)&dataBuf[83], transactionInfo->pCreditCard.CardNo, 20);
  1497. log_info("Gun[%d] TransactionId:%d DeductResult:%d IsDonateInvoice:%d Amount:%f Approva Num:'%s' VemData:'%s' CardNo:'%s'",
  1498. transactionInfo->ConnectorID,
  1499. transactionInfo->TransactionId,
  1500. transactionInfo->DeductResult,
  1501. transactionInfo->IsDonateInvoice,
  1502. transactionInfo->Amount,
  1503. transactionInfo->pCreditCard.ApprovalNo,
  1504. transactionInfo->pCreditCard.VemData,
  1505. transactionInfo->pCreditCard.CardNo);
  1506. // copy deduct result to dataBuf here
  1507. if ((ret = composeSocketData(fd,
  1508. id,
  1509. OP_WRITE_DATA,
  1510. REG_DEDUCT_INFO,
  1511. 104,
  1512. &dataBuf[0])) == FAIL) {
  1513. return ret;
  1514. }
  1515. return ret;
  1516. }
  1517. */
  1518. static int readChargingTimeStamp(int fd, uint8_t id)
  1519. {
  1520. int ret = PASS;
  1521. if ((ret = composeSocketData(fd,
  1522. id,
  1523. OP_READ_DATA,
  1524. REG_READ_CHARGING_TIMESTAMP,
  1525. 0,
  1526. NULL)) == FAIL) {
  1527. return ret;
  1528. }
  1529. return ret;
  1530. }
  1531. static int writeWaitPlugItState(int fd, uint8_t id)
  1532. {
  1533. int ret = PASS;
  1534. uint8_t data[2] = {pSysInfo->WaitForPlugit, 0};
  1535. if (_isplugin != pSysInfo->WaitForPlugit) {
  1536. log_info("Wait for plug:%s", pSysInfo->WaitForPlugit == 0 ? "disable" : "enable");
  1537. _isplugin = pSysInfo->WaitForPlugit;
  1538. }
  1539. //printf("WaitForPlugit = %d", pSysInfo->WaitForPlugit);
  1540. if ((ret = composeSocketData(fd,
  1541. id,
  1542. OP_WRITE_DATA,
  1543. REG_WAIT_PLUG_IT_STATE,
  1544. 1,
  1545. &data[0])) == FAIL) {
  1546. return ret;
  1547. }
  1548. return ret;
  1549. }
  1550. static int readQRcodeURLAndSystemDate(int fd)
  1551. {
  1552. int ret = PASS;
  1553. ret = composeSocketData(fd,
  1554. ID_REGISTER,
  1555. OP_READ_DATA,
  1556. REG_QRCODE_URL_INFO,
  1557. 0,
  1558. NULL);
  1559. return ret;
  1560. }
  1561. static int writePresentChargingInfo(int fd, uint8_t plugNum, uint8_t id)
  1562. {
  1563. int ret = PASS;
  1564. uint8_t dataBuf[16] = {0};
  1565. PreChargingInfo *pPreChargingInfo = (PreChargingInfo *)dataBuf;
  1566. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(plugNum);
  1567. if(pDcChargingInfo->PantographFlag == NO)
  1568. {
  1569. pPreChargingInfo->PresentChargingVoltage = htons((uint16_t)(pDcChargingInfo->PresentChargingVoltage * 10));
  1570. pPreChargingInfo->PresentChargingCurrent = htons((uint16_t)(pDcChargingInfo->PresentChargingCurrent * 10));
  1571. }
  1572. else
  1573. {
  1574. pPreChargingInfo->PresentChargingVoltage = htons((uint16_t)(ShmDcCommonData->PcPsuOutput[plugNum].Voltage));
  1575. pPreChargingInfo->PresentChargingCurrent = htons((uint16_t)(ShmDcCommonData->PcPsuOutput[plugNum].Current));
  1576. }
  1577. pPreChargingInfo->RemainChargingDuration = htonl(pDcChargingInfo->RemainChargingDuration);
  1578. pPreChargingInfo->EvBatterySoc = pDcChargingInfo->EvBatterySoc;
  1579. ret = composeSocketData(fd,
  1580. id,
  1581. OP_WRITE_DATA,
  1582. REG_PRESENT_CHARGING_INFO,
  1583. sizeof(PreChargingInfo),
  1584. (uint8_t *)pPreChargingInfo);
  1585. return ret;
  1586. }
  1587. static int writeOtherModuleVersion(int fd)
  1588. {
  1589. int ret = PASS;
  1590. uint8_t data[255] = {0};
  1591. uint8_t dataLen = 0;
  1592. //report other module version message
  1593. memcpy(&data[dataLen], pSysInfo->FanModuleFwRev, VERSION_BUF_SIZE);
  1594. dataLen += VERSION_BUF_SIZE;
  1595. memcpy(&data[dataLen], pSysInfo->RelayModuleFwRev, VERSION_BUF_SIZE);
  1596. dataLen += VERSION_BUF_SIZE;
  1597. memcpy(&data[dataLen], pSysInfo->Connector1FwRev, VERSION_BUF_SIZE);
  1598. dataLen += VERSION_BUF_SIZE;
  1599. memcpy(&data[dataLen], pSysInfo->Connector2FwRev, VERSION_BUF_SIZE);
  1600. dataLen += VERSION_BUF_SIZE;
  1601. memcpy(&data[dataLen], pSysInfo->LedModuleFwRev, VERSION_BUF_SIZE);
  1602. dataLen += VERSION_BUF_SIZE;
  1603. ret = composeSocketData(fd,
  1604. ID_REGISTER,
  1605. OP_WRITE_DATA,
  1606. REG_REPORT_OTHER_VERSION,
  1607. dataLen,
  1608. &data[0]);
  1609. return ret;
  1610. }
  1611. static int writeCsuModuleVersion(int fd)
  1612. {
  1613. int ret = PASS;
  1614. uint8_t data[255] = {0};
  1615. uint8_t dataLen = 0;
  1616. //report CSU platform version message
  1617. memcpy(&data[dataLen], pSysInfo->CsuBootLoadFwRev, VERSION_BUF_SIZE);
  1618. dataLen += VERSION_BUF_SIZE;
  1619. memcpy(&data[dataLen], pSysInfo->CsuKernelFwRev, VERSION_BUF_SIZE);
  1620. dataLen += VERSION_BUF_SIZE;
  1621. memcpy(&data[dataLen], pSysInfo->CsuRootFsFwRev, VERSION_BUF_SIZE);
  1622. dataLen += VERSION_BUF_SIZE;
  1623. memcpy(&data[dataLen], pSysInfo->CsuPrimFwRev, VERSION_BUF_SIZE);
  1624. dataLen += VERSION_BUF_SIZE;
  1625. ret = composeSocketData(fd,
  1626. ID_REGISTER,
  1627. OP_WRITE_DATA,
  1628. REG_REPORT_CSU_VERSION,
  1629. dataLen,
  1630. &data[0]);
  1631. return ret;
  1632. }
  1633. static int readMiscCommand(int fd, uint8_t id)
  1634. {
  1635. int ret = PASS;
  1636. ret = composeSocketData(fd,
  1637. id,
  1638. OP_READ_DATA,
  1639. REG_MISC_CONTROL,
  1640. 0,
  1641. NULL);
  1642. return ret;
  1643. }
  1644. static int readChargePermission(int fd, uint8_t id)
  1645. {
  1646. return composeSocketData(fd,
  1647. id,
  1648. OP_READ_DATA,
  1649. REG_CHARGING_PERMISSION,
  1650. 0,
  1651. NULL);
  1652. }
  1653. static int writeGroundFaultDetection(int fd, uint8_t status, uint8_t id)
  1654. {
  1655. int ret = PASS;
  1656. uint8_t dataBuf[1] = {status};
  1657. ret = composeSocketData(fd,
  1658. id,
  1659. OP_WRITE_DATA,
  1660. REG_Ground_Fault_Detection,
  1661. 1,
  1662. &dataBuf[0]);
  1663. return ret;
  1664. }
  1665. static int writeUserID(int fd, uint8_t id, uint8_t *pUserID)
  1666. {
  1667. if ((strlen((char *)pUserID) <= 0) || (pUserID == NULL)) {
  1668. return FAIL;
  1669. }
  1670. uint8_t data[50];
  1671. int datalen = strlen((char*)pUserID);
  1672. memcpy((uint8_t*)data, pUserID, datalen);
  1673. data[datalen] = '\0';
  1674. data[datalen+1] = ShmDcCommonData->AuthroizeType;
  1675. datalen += 2;
  1676. return composeSocketData(fd,
  1677. id,
  1678. OP_WRITE_DATA,
  1679. REG_USER_ID,
  1680. datalen,
  1681. &data[0]);
  1682. }
  1683. static int writeConnectorState(int fd, uint8_t plugNum, uint8_t id)
  1684. {
  1685. uint8_t dataBuf[15] = {'\0'};
  1686. uint32_t _consumption;
  1687. ConnectorState *pConnState = (ConnectorState *)dataBuf;
  1688. static char vendorErrorCodeTmp[2][WARNING_CODE_SIZE] = {0};
  1689. int ret = PASS;
  1690. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(plugNum);
  1691. pConnState->ConnectorTemp = pDcChargingInfo->ConnectorTemp;
  1692. pConnState->ChillerTemp = pDcChargingInfo->ChillerTemp;
  1693. pConnState->PlugIn = pDcChargingInfo->ConnectorPlugIn;
  1694. if (pDcChargingInfo->SystemStatus <= S_AUTHORIZING) {
  1695. pConnState->State = CONN_ST_IDLE; //idle
  1696. strncpy((char *)ShmOCPP16Data->StatusNotification[plugNum].VendorErrorCode,
  1697. "",
  1698. sizeof(ShmOCPP16Data->StatusNotification[plugNum].VendorErrorCode));
  1699. strncpy(&vendorErrorCodeTmp[plugNum][0], "", WARNING_CODE_SIZE);
  1700. } else if ((pDcChargingInfo->SystemStatus <= S_PREPARING_FOR_EVSE) ||
  1701. (pDcChargingInfo->SystemStatus == S_CCS_PRECHARGE_ST0) ||
  1702. (pDcChargingInfo->SystemStatus == S_CCS_PRECHARGE_ST1)) {
  1703. pConnState->State = CONN_ST_PREPARING; //preparing
  1704. } else if (pDcChargingInfo->SystemStatus == S_CHARGING) {
  1705. pConnState->State = CONN_ST_CHARGING; //charging
  1706. } else if (pDcChargingInfo->SystemStatus == S_TERMINATING ||
  1707. pDcChargingInfo->SystemStatus == S_COMPLETE) {
  1708. pConnState->State = CONN_ST_TERMINATING; //terminating
  1709. } else if ((pDcChargingInfo->SystemStatus == S_ALARM) ||
  1710. (pDcChargingInfo->SystemStatus == S_FAULT)) {
  1711. pConnState->State = CONN_ST_ALARM;
  1712. strncpy((char *)pConnState->WarningCode,
  1713. (char *)ShmOCPP16Data->StatusNotification[plugNum].VendorErrorCode,
  1714. WARNING_CODE_SIZE);
  1715. if (strncmp(&vendorErrorCodeTmp[plugNum][0], "", WARNING_CODE_SIZE) == 0) {
  1716. strncpy(&vendorErrorCodeTmp[plugNum][0],
  1717. (char *)ShmOCPP16Data->StatusNotification[plugNum].VendorErrorCode,
  1718. WARNING_CODE_SIZE);
  1719. vendorErrorCodeTmp[plugNum][6] = '\0';
  1720. /*
  1721. log_info("1 ID = %d, VendorErrorCode = %s",
  1722. plugNum,
  1723. (char *)ShmOCPP16Data->StatusNotification[plugNum].VendorErrorCode);
  1724. _VenderErrorCodeFlag = true;
  1725. */
  1726. } else {
  1727. if (strncmp(&vendorErrorCodeTmp[plugNum][0],
  1728. (char *)ShmOCPP16Data->StatusNotification[plugNum].VendorErrorCode,
  1729. WARNING_CODE_SIZE) != 0
  1730. ) {
  1731. strncpy(&vendorErrorCodeTmp[plugNum][0],
  1732. (char *)ShmOCPP16Data->StatusNotification[plugNum].VendorErrorCode,
  1733. WARNING_CODE_SIZE);
  1734. vendorErrorCodeTmp[plugNum][6] = '\0';
  1735. log_info("2 ID = %d, VendorErrorCode = %s",
  1736. plugNum,
  1737. (char *)ShmOCPP16Data->StatusNotification[plugNum].VendorErrorCode);
  1738. }
  1739. }
  1740. }
  1741. memcpy((char*)&_consumption, (char*)&ShmDcCommonData->pGunInfo[plugNum].PowerConsumption, sizeof(float));
  1742. pConnState->consumption = ntohl(_consumption);
  1743. ret = composeSocketData(fd,
  1744. id,
  1745. OP_WRITE_DATA,
  1746. REG_CONNECTOR_STATE,
  1747. sizeof(dataBuf) - 1,
  1748. &dataBuf[0]);
  1749. return ret;
  1750. }
  1751. static int writePlugInStatus(int fd, uint8_t plugNum, uint8_t id)
  1752. {
  1753. int ret = PASS;
  1754. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(plugNum);
  1755. uint8_t dataBuf[2] = {pDcChargingInfo->ConnectorPlugIn, 0};
  1756. ret = composeSocketData(fd,
  1757. id,
  1758. OP_WRITE_DATA,
  1759. REG_PLUG_IN_STATE,
  1760. 1,
  1761. &dataBuf[0]);
  1762. return ret;
  1763. }
  1764. static int readSoftwareUpdate(int fd, uint8_t gunID)
  1765. {
  1766. int ret = PASS;
  1767. uint8_t dataBuf[2] = {pSysInfo->FirmwareUpdate, 0};
  1768. ret = composeSocketData(fd,
  1769. gunID,
  1770. OP_READ_DATA,
  1771. REG_SOFTWARE_UPDATE,
  1772. 1,
  1773. &dataBuf[0]);
  1774. return ret;
  1775. }
  1776. static int writeChargingTarget(int fd, uint8_t plugNum, uint8_t id)
  1777. {
  1778. int ret = PASS;
  1779. float ChargingVolt, ChargingAmp;
  1780. uint8_t dataBuf[4] = {0};
  1781. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(plugNum);
  1782. ChargingVolt = pDcChargingInfo->EvBatterytargetVoltage;
  1783. ChargingAmp = pDcChargingInfo->EvBatterytargetCurrent;
  1784. ChargingVolt *= 10;
  1785. ChargingAmp *= 10;
  1786. dataBuf[0] = ((uint16_t)ChargingVolt >> 8) & 0xFF;
  1787. dataBuf[1] = ((uint16_t)ChargingVolt) & 0xFF;
  1788. dataBuf[2] = ((uint16_t)ChargingAmp >> 8) & 0xFF;
  1789. dataBuf[3] = ((uint16_t)ChargingAmp) & 0xFF;
  1790. ret = composeSocketData(fd,
  1791. id,
  1792. OP_WRITE_DATA,
  1793. REG_CHARGING_TARGET,
  1794. sizeof(dataBuf),
  1795. &dataBuf[0]);
  1796. return ret;
  1797. }
  1798. static int readChargingCapability(int fd, uint8_t id)
  1799. {
  1800. int ret = PASS;
  1801. ret = composeSocketData(fd,
  1802. id,
  1803. OP_READ_DATA,
  1804. REG_CHARGING_CAP,
  1805. 0,
  1806. NULL);
  1807. return ret;
  1808. }
  1809. static int readCabinetDCMVersion(int fd, uint8_t id)
  1810. {
  1811. int ret = PASS;
  1812. ret = composeSocketData(fd,
  1813. id,
  1814. OP_READ_DATA,
  1815. REG_CABINET_DCM_VERSION,
  1816. 0,
  1817. NULL);
  1818. return ret;
  1819. }
  1820. static int readCabinetOtherVersion(int fd, uint8_t id)
  1821. {
  1822. int ret = PASS;
  1823. ret = composeSocketData(fd,
  1824. id,
  1825. OP_READ_DATA,
  1826. REG_CABINET_OTHER_VERSION,
  1827. 0,
  1828. NULL);
  1829. return ret;
  1830. }
  1831. static int readCabinetPSUNumber(int fd, uint8_t id)
  1832. {
  1833. int ret = PASS;
  1834. ret = composeSocketData(fd,
  1835. id,
  1836. OP_READ_DATA,
  1837. REG_TOTAL_PSU_QUANTITY,
  1838. 0,
  1839. NULL);
  1840. return ret;
  1841. }
  1842. static int readCabinetEachPSUVersion(int fd, uint8_t id,uint8_t n_psu)
  1843. {
  1844. int ret = PASS;
  1845. uint8_t data_buf[0] = {0};
  1846. data_buf[0] = n_psu;
  1847. ret = composeSocketData(fd,
  1848. id,
  1849. OP_READ_DATA,
  1850. REG_PSU_VERSION,
  1851. sizeof(data_buf),
  1852. &data_buf[0]);
  1853. return ret;
  1854. }
  1855. static int readReceiptInfo(int fd, uint8_t id)
  1856. {
  1857. int ret = PASS;
  1858. ret = composeSocketData(fd,
  1859. id,
  1860. OP_READ_DATA,
  1861. REG_RECEIPT_INFO,
  1862. 0,
  1863. NULL);
  1864. return ret;
  1865. }
  1866. static int writeDispenserStatus(int fd, uint8_t gunID)
  1867. {
  1868. uint8_t warningCount = 0;
  1869. uint8_t count = 0;
  1870. uint8_t CurWarnCodeTmp[10][6] = {0};
  1871. uint8_t PreWarnCodeTmp[10][6] = {0};
  1872. int ret = PASS;
  1873. if ((pSysWarning->WarningCount <= 0) &&
  1874. (gPreSysWarningInfo.WarningCount <= 0)) {
  1875. return FAIL;
  1876. }
  1877. warningCount = pSysWarning->WarningCount;
  1878. for (count = 0; count < warningCount; count++) {
  1879. memcpy(CurWarnCodeTmp[count], pSysWarning->WarningCode[count], WARNING_CODE_SIZE);
  1880. }
  1881. warningCount = gPreSysWarningInfo.WarningCount;
  1882. for (count = 0; count < warningCount; count++) {
  1883. memcpy(PreWarnCodeTmp[count], gPreSysWarningInfo.WarningCode[count], WARNING_CODE_SIZE);
  1884. }
  1885. if (strcmp((char *)&CurWarnCodeTmp[0], (char *)&PreWarnCodeTmp[0]) == 0) {
  1886. return FAIL;
  1887. }
  1888. ret = composeSocketData(fd,
  1889. gunID,
  1890. OP_WRITE_DATA,
  1891. REG_DISPENSER_STATUS,
  1892. strlen((char *)CurWarnCodeTmp),
  1893. &CurWarnCodeTmp[0][0]);
  1894. return ret;
  1895. }
  1896. static int readPowerCabinetStatus(int fd, uint8_t gunID)
  1897. {
  1898. int ret = PASS;
  1899. ret = composeSocketData(fd,
  1900. gunID,
  1901. OP_READ_DATA,
  1902. REG_POWER_CABINET_STATUS,
  1903. 0,
  1904. NULL);
  1905. return ret;
  1906. }
  1907. static int readConnectorID(int fd)
  1908. {
  1909. int ret = PASS;
  1910. ret = composeSocketData(fd,
  1911. ID_REGISTER,
  1912. OP_READ_DATA,
  1913. REG_CONNECTOR_ID,
  1914. 0,
  1915. NULL);
  1916. return ret;
  1917. }
  1918. static int readSystemID(int fd)
  1919. {
  1920. int ret = PASS;
  1921. ret = composeSocketData(fd,
  1922. ID_REGISTER,
  1923. OP_READ_DATA,
  1924. REG_READ_CABINET_SYSTEMID,
  1925. 0,
  1926. NULL);
  1927. return ret;
  1928. }
  1929. static int readDefaultPrice(int fd)
  1930. {
  1931. int ret = PASS;
  1932. ret = composeSocketData(fd,
  1933. ID_REGISTER,
  1934. OP_READ_DATA,
  1935. REG_READ_DEFAULT_PRICE,
  1936. 0,
  1937. NULL);
  1938. return ret;
  1939. }
  1940. static int readUserPrice(int fd, uint8_t gunID)
  1941. {
  1942. int ret = PASS;
  1943. ret = composeSocketData(fd,
  1944. gunID,
  1945. OP_READ_DATA,
  1946. REG_READ_USER_PRICE,
  1947. 0,
  1948. NULL);
  1949. return ret;
  1950. }
  1951. /*
  1952. static int readConsumptionInfo(int fd)
  1953. {
  1954. int ret = PASS;
  1955. ret = composeSocketData(fd,
  1956. ID_REGISTER,
  1957. OP_READ_DATA,
  1958. REG_POWER_CONSUMPTION_INFO,
  1959. 0,
  1960. NULL);
  1961. return ret;
  1962. }
  1963. */
  1964. static int WriteModelName(int fd)
  1965. {
  1966. int ret = PASS;
  1967. uint8_t Tmp = 0;
  1968. uint8_t TmpBuf[255] = {0};
  1969. memcpy(TmpBuf,
  1970. pSysConfig->ModelName,
  1971. strlen((char *)pSysConfig->ModelName));
  1972. Tmp = (uint8_t)(ShmPrimaryMcuData->InputDet.bits.Key2 << 2 |
  1973. ShmPrimaryMcuData->InputDet.bits.Key1 << 1 |
  1974. ShmPrimaryMcuData->InputDet.bits.Key0);
  1975. TmpBuf[strlen((char *)pSysConfig->ModelName)] = Tmp; //Dispenser switch value
  1976. ret = composeSocketData(fd,
  1977. ID_REGISTER,
  1978. OP_WRITE_DATA,
  1979. REG_MODEL_NAME,
  1980. strlen((char *)pSysConfig->ModelName) + 1,
  1981. &TmpBuf[0]);
  1982. return ret;
  1983. }
  1984. static void calDisconnectCount(uint8_t *pValue, uint8_t maxCount)
  1985. {
  1986. sleep(3); //wait 1 second
  1987. if ((*pValue) >= maxCount) {
  1988. setTcpStatus(ABNORMAL);
  1989. } else {
  1990. (*pValue)++;
  1991. }
  1992. }
  1993. static int CheckNetworkStatus(void)
  1994. {
  1995. char *ipAddr = (char *)&pSysConfig->Eth0Interface.EthIpAddress;
  1996. if (strstr(ipAddr, CMP_ETH_IP_HEAD) != NULL) {
  1997. return 1;
  1998. }
  1999. return 0;
  2000. }
  2001. static void updateFirmwareProcess(int fd, uint8_t gunID, uint8_t totalConnCount)
  2002. {
  2003. bool canUpdateFirmware = true;
  2004. uint8_t plugNum = 0;
  2005. uint8_t ackCount = 5;
  2006. struct timeb updateTime;
  2007. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(plugNum);
  2008. if (pSysWarning->Level != 2) {
  2009. for (plugNum = 0; plugNum < totalConnCount; plugNum++) {
  2010. if (pDcChargingInfo->SystemStatus != S_IDLE &&
  2011. pDcChargingInfo->SystemStatus != S_RESERVATION &&
  2012. pDcChargingInfo->SystemStatus != S_MAINTAIN) {
  2013. canUpdateFirmware = false;
  2014. }
  2015. }
  2016. }
  2017. if (canUpdateFirmware) {
  2018. ftime(&updateTime);
  2019. if (DiffTimeb(gRegTimeUp[0][REG_SOFTWARE_UPDATE], updateTime) > LOOP_RETRY_TIME * 5) {
  2020. readSoftwareUpdate(fd, gunID);
  2021. ftime(&gRegTimeUp[0][REG_SOFTWARE_UPDATE]);
  2022. }
  2023. if (pSysInfo->FirmwareUpdate == YES) {
  2024. while (ackCount != 0) {
  2025. ftime(&updateTime);
  2026. if (DiffTimeb(gRegTimeUp[0][REG_SOFTWARE_UPDATE], updateTime) > LOOP_RETRY_TIME / 2) {
  2027. readSoftwareUpdate(fd, gunID);
  2028. ftime(&gRegTimeUp[0][REG_SOFTWARE_UPDATE]);
  2029. if (pSysInfo->FirmwareUpdate == NO) {
  2030. ackCount--;
  2031. }
  2032. }
  2033. usleep(128);
  2034. }
  2035. }
  2036. }
  2037. }
  2038. static void checkAuthorProcess(int fd, uint8_t plugNum)
  2039. {
  2040. int ret = 0;
  2041. uint8_t gunID = 0;
  2042. struct timeb AuthNowTime;
  2043. #if defined DD360Audi
  2044. gunID = gDoCommGblData.ConnectorID[pSysInfo->CurGunSelected];
  2045. //gunID = gDoCommGblData.ConnectorID[plugNum];
  2046. if (pSysConfig->AutoAuth_Disable) {
  2047. gunID = ID_REGISTER;
  2048. ShmSelectGunInfo->PricesInfo[pSysInfo->CurGunSelected].Balance = 0.0;
  2049. }
  2050. #else
  2051. gunID = gDoCommGblData.ConnectorID[pSysInfo->CurGunSelected];
  2052. ShmSelectGunInfo->PricesInfo[pSysInfo->CurGunSelected].Balance = 0.0; //非Audi 不需要等待主櫃回報餘額
  2053. #endif // DD360Audi
  2054. if ((ShmOCPP16Data->SpMsg.bits.AuthorizeReq == YES) ||
  2055. (pSysInfo->AuthorizeFlag == YES)) {
  2056. ftime(&AuthNowTime);
  2057. if (DiffTimeb(gRegTimeUp[plugNum][REG_USER_ID], AuthNowTime) > LOOP_RETRY_TIME) {
  2058. ret = writeUserID(fd,
  2059. gunID,
  2060. pSysConfig->UserId);
  2061. if (ret >= 0) {
  2062. memset(ShmOCPP16Data->Authorize.ResponseIdTagInfo.Status,
  2063. 0,
  2064. sizeof(ShmOCPP16Data->Authorize.ResponseIdTagInfo.Status));
  2065. if (ret == 0) {
  2066. strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.Status, "Invalid");
  2067. } else {
  2068. strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.Status, "Accepted");
  2069. }
  2070. //printf("%d Balance = %.2f, %.2f\n",
  2071. // plugNum,
  2072. // ShmSelectGunInfo->PricesInfo[plugNum].Balance,
  2073. // FAIL_BALANCE_PRICES);
  2074. if (ShmSelectGunInfo->PricesInfo[plugNum].Balance != FAIL_BALANCE_PRICES) {
  2075. ShmOCPP16Data->SpMsg.bits.AuthorizeConf = YES; //isAuthorizedComplete
  2076. ShmOCPP16Data->SpMsg.bits.AuthorizeReq = NO;
  2077. pSysInfo->AuthorizeFlag = NO;
  2078. ShmPsuData->SystemAvailablePower = NO;
  2079. ShmPsuData->SystemPresentPsuQuantity = NO;
  2080. }
  2081. }
  2082. ftime(&gRegTimeUp[plugNum][REG_USER_ID]);
  2083. }
  2084. }
  2085. }
  2086. static int messageTrigger(int fd, uint8_t plugNum, uint8_t gunID, uint8_t curReg)
  2087. {
  2088. int ret = DISPENSER_INIT_SUCC;
  2089. int isContinue = 1;
  2090. struct timeb NowTime;
  2091. while (isContinue) {
  2092. usleep(128);
  2093. ftime(&NowTime);
  2094. switch (curReg) {
  2095. case REG_MODEL_NAME:
  2096. if (WriteModelName(fd) == PASS) {
  2097. gDoCommGblData.DisConnCount = 0;
  2098. curReg = REG_CONNECTOR_ID;
  2099. } else {
  2100. sleep(1);
  2101. }
  2102. break;
  2103. case REG_CONNECTOR_ID:
  2104. if (readConnectorID(fd) == PASS) {
  2105. gDoCommGblData.DisConnCount = 0;
  2106. curReg = REG_REPORT_CSU_VERSION;
  2107. } else {
  2108. sleep(1);
  2109. }
  2110. break;
  2111. case REG_POWER_CABINET_STATUS:
  2112. if (DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) > LOOP_RETRY_TIME ||
  2113. DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) < 0) {
  2114. readPowerCabinetStatus(fd, gunID);
  2115. ftime(&gRegTimeUp[plugNum][curReg]);
  2116. }
  2117. curReg = REG_DISPENSER_STATUS;
  2118. break;
  2119. case REG_DISPENSER_STATUS:
  2120. if (DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) > LOOP_RETRY_TIME ||
  2121. DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) < 0) {
  2122. writeDispenserStatus(fd, gunID);
  2123. ftime(&gRegTimeUp[plugNum][curReg]);
  2124. }
  2125. curReg = REG_CHARGING_CAP;
  2126. break;
  2127. case REG_CHARGING_CAP:
  2128. if(gMoreInfoReq[plugNum].bits.FinalCostReq)
  2129. {
  2130. if (readChargingCapability(fd, gunID) == PASS) {
  2131. gMoreInfoReq[plugNum].bits.FinalCostReq = false;
  2132. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(plugNum);
  2133. //ShmDcCommonData->TransactionInfo[plugNum].Amount = pDcChargingInfo->ChargingFee;
  2134. ShmDcCommonData->pGunInfo[plugNum].finalcost_flag = TRUE;
  2135. log_info("Set Final Cost Flag");
  2136. }
  2137. }
  2138. curReg = REG_PLUG_IN_STATE;
  2139. break;
  2140. //case REG_CHARGING_CAP:
  2141. // readChargingCapability(fd, plugNum, gunID);
  2142. // break;
  2143. //case REG_CHARGING_TARGET:
  2144. // writeChargingTarget(fd, plugNum, gunID);
  2145. // break;
  2146. //case REG_SOFTWARE_UPDATE:
  2147. // if (ChargingData[plugNum]->SystemStatus == S_IDLE) {
  2148. // if (DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) > L OOP_RETRY_TIME||
  2149. //DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) < 0 * 1) {
  2150. // readSoftwareUpdate(fd);
  2151. // ftime(&gRegTimeUp[plugNum][curReg]);
  2152. // }
  2153. // while (pSysInfo->FirmwareUpdate == YES) {
  2154. // ftime(&NowTime);
  2155. // if (DiffTimeb(gRegTimeUp[plugNum][curReg], NowT ime) > LOOP_RETRY_TIME||
  2156. //DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) < 0) {
  2157. // readSoftwareUpdate(fd);
  2158. // }
  2159. // usleep(128);
  2160. // }
  2161. // }
  2162. // isContinue = 0;
  2163. // break;
  2164. case REG_PLUG_IN_STATE:
  2165. if (DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) > LOOP_RETRY_TIME ||
  2166. DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) < 0) {
  2167. writePlugInStatus(fd, plugNum, gunID);
  2168. ftime(&gRegTimeUp[plugNum][curReg]);
  2169. }
  2170. curReg = REG_CONNECTOR_STATE;
  2171. break;
  2172. case REG_CONNECTOR_STATE:
  2173. if (DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) > LOOP_RETRY_TIME ||
  2174. DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) < 0) {
  2175. writeConnectorState(fd, plugNum, gunID);
  2176. ftime(&gRegTimeUp[plugNum][curReg]);
  2177. }
  2178. curReg = REG_DISPENSER_REQUEST;
  2179. break;
  2180. case REG_DISPENSER_REQUEST:
  2181. /*
  2182. gConnectorActReq[plugNum].bits.ChargingCancel = ShmDcCommonData->OperateIDLE[plugNum];
  2183. if (gConnectorActReq[plugNum].Value != 0)
  2184. {
  2185. if (DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) > LOOP_RETRY_TIME ||
  2186. DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) < 0) {
  2187. if (writeDispenserRequest(fd, gunID, plugNum) == PASS)
  2188. {
  2189. gConnectorActReq[plugNum].Value = 0;
  2190. log_info("Gun %d CHARGING_CANCEL OK", plugNum);
  2191. ShmDcCommonData->OperateIDLE[plugNum] = 0;
  2192. }
  2193. ftime(&gRegTimeUp[plugNum][curReg]);
  2194. }
  2195. }
  2196. */
  2197. curReg = REG_QRCODE_URL_INFO;
  2198. break;
  2199. case REG_QRCODE_URL_INFO:
  2200. if (gunID == 1) {
  2201. if (DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) > (LOOP_RETRY_TIME * 10) ||
  2202. DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) < 0 ) {
  2203. readQRcodeURLAndSystemDate(fd);
  2204. ftime(&gRegTimeUp[plugNum][curReg]);
  2205. }
  2206. }
  2207. curReg = REG_READ_CABINET_SYSTEMID;
  2208. break;
  2209. //case REG_USER_ID:
  2210. // writeUserID(fd, gunID, uint8_t *pUserID);
  2211. // break;
  2212. //case REG_CHARGING_PERMISSION:
  2213. // readChargePermission(fd, gunID);
  2214. // break;
  2215. case REG_READ_CABINET_SYSTEMID:
  2216. if (DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) > (LOOP_RETRY_TIME * 10) ||
  2217. DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) < 0) {
  2218. readSystemID(fd);
  2219. ftime(&gRegTimeUp[plugNum][curReg]);
  2220. }
  2221. curReg = REG_MISC_CONTROL;
  2222. //check misc command from power cabinet
  2223. /*
  2224. if (gDoCommGblData.MiscCmd != 0) {
  2225. if (gDoCommGblData.MiscCmd != REG_MISC_CONTROL) {
  2226. log_error("misc command failed = %x", gDoCommGblData.MiscCmd);
  2227. }
  2228. curReg = gDoCommGblData.MiscCmd;
  2229. } else if (gMoreInfoReq[plugNum].Value != 0) {
  2230. curReg = REG_RESERVATION_IDTAG;
  2231. } else {
  2232. isContinue = 0;
  2233. }*/
  2234. break;
  2235. case REG_MISC_CONTROL:
  2236. readMiscCommand(fd, gunID);
  2237. if(gMoreInfoReq[plugNum].Value == 0) {
  2238. isContinue = 0;
  2239. } else {
  2240. curReg = REG_RESERVATION_IDTAG;
  2241. }
  2242. break;
  2243. case REG_REPORT_CSU_VERSION:
  2244. case REG_REPORT_OTHER_VERSION:
  2245. if (gDoCommGblData.MiscCmd != 0) {
  2246. writeCsuModuleVersion(fd);
  2247. writeOtherModuleVersion(fd);
  2248. clearMiscCommand();
  2249. isContinue = 0;
  2250. } else {
  2251. //power up write dispenser version and get power cabinet system ID
  2252. if ((writeCsuModuleVersion(fd) == PASS) && (writeOtherModuleVersion(fd) == PASS) &&
  2253. (readQRcodeURLAndSystemDate(fd) == PASS)) {
  2254. //gDoCommGblData.DisConnCount = 0;
  2255. isContinue = 0;
  2256. }
  2257. }
  2258. break;
  2259. /*
  2260. case REG_POWER_CONSUMPTION_INFO:
  2261. if (pSysConfig->ShowInformation || ShmDcCommonData->DebugFlag) {
  2262. if (DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) > LOOP_RETRY_TIME ||
  2263. DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) < 0) {
  2264. readConsumptionInfo(fd);
  2265. ftime(&gRegTimeUp[plugNum][curReg]);
  2266. }
  2267. }
  2268. //check misc command from power cabinet
  2269. if (gDoCommGblData.MiscCmd != 0) {
  2270. if (gDoCommGblData.MiscCmd != REG_MISC_CONTROL) {
  2271. log_error("misc command failed = %x", gDoCommGblData.MiscCmd);
  2272. }
  2273. curReg = gDoCommGblData.MiscCmd;
  2274. } else if (gMoreInfoReq[plugNum].Value != 0) {
  2275. curReg = REG_RESERVATION_IDTAG;
  2276. } else {
  2277. isContinue = 0;
  2278. }
  2279. break;
  2280. */
  2281. case REG_RESERVATION_IDTAG:
  2282. if (gMoreInfoReq[plugNum].bits.ReservationReq) {
  2283. if (DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) > LOOP_RETRY_TIME ||
  2284. DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) < 0) {
  2285. if (readReservationState(fd, gunID) == PASS)
  2286. {
  2287. gMoreInfoReq[plugNum].bits.ReservationReq = ReservationState[plugNum] == NO ? NO : YES;
  2288. }
  2289. ftime(&gRegTimeUp[plugNum][curReg]);
  2290. }
  2291. }
  2292. curReg = REG_REMOTE_START_NO_ID;
  2293. break;
  2294. case REG_REMOTE_START_NO_ID:
  2295. if (gMoreInfoReq[plugNum].bits.RemoteStartNoID) {
  2296. if (DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) > LOOP_RETRY_TIME ||
  2297. DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) < 0) {
  2298. if (readRemoteStartNoIDState(fd) == PASS)
  2299. {
  2300. gMoreInfoReq[plugNum].bits.RemoteStartNoID = RemoteStartNoIDState == NO ? NO : YES;
  2301. }
  2302. ftime(&gRegTimeUp[plugNum][curReg]);
  2303. }
  2304. }
  2305. curReg = REG_STATION_INFO;
  2306. break;
  2307. case REG_STATION_INFO:
  2308. if (gMoreInfoReq[plugNum].bits.StationInfoReq) {
  2309. if (DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) > LOOP_RETRY_TIME ||
  2310. DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) < 0) {
  2311. if (readChargerStationInfo(fd) == PASS)
  2312. {
  2313. gMoreInfoReq[plugNum].bits.StationInfoReq = NO;
  2314. }
  2315. ftime(&gRegTimeUp[plugNum][curReg]);
  2316. }
  2317. }
  2318. //isContinue = 0;
  2319. curReg = REG_READ_DEFAULT_PRICE;
  2320. break;
  2321. case REG_READ_DEFAULT_PRICE:
  2322. if (gMoreInfoReq[plugNum].bits.DefaultPriceReq) {
  2323. if (DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) > LOOP_RETRY_TIME ||
  2324. DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) < 0) {
  2325. readDefaultPrice(fd);
  2326. ftime(&gRegTimeUp[plugNum][curReg]);
  2327. }
  2328. }
  2329. curReg = REG_READ_USER_PRICE;
  2330. break;
  2331. case REG_READ_USER_PRICE:
  2332. if (gMoreInfoReq[plugNum].bits.UserPriceReq) {
  2333. if (DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) > LOOP_RETRY_TIME ||
  2334. DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) < 0) {
  2335. readUserPrice(fd,gunID);
  2336. ftime(&gRegTimeUp[plugNum][curReg]);
  2337. }
  2338. }
  2339. curReg = REG_RECEIPT_INFO;
  2340. break;
  2341. case REG_RECEIPT_INFO:
  2342. if (gMoreInfoReq[plugNum].bits.ReceiptReq) {
  2343. if (DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) > LOOP_RETRY_TIME ||
  2344. DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) < 0) {
  2345. readReceiptInfo(fd, gunID);
  2346. ftime(&gRegTimeUp[plugNum][curReg]);
  2347. }
  2348. }
  2349. curReg = REG_REFUND_AMOUNT;
  2350. break;
  2351. case REG_REFUND_AMOUNT:
  2352. curReg = REG_PREPAYMENT_INFO;
  2353. break;
  2354. case REG_PREPAYMENT_INFO:
  2355. curReg = REG_PAYMENT_FAIL_REASON;
  2356. break;
  2357. case REG_PAYMENT_FAIL_REASON:
  2358. curReg = REG_CONNECTOR_QR_CODE;
  2359. break;
  2360. case REG_CONNECTOR_QR_CODE:
  2361. isContinue = 0;
  2362. break;
  2363. default:
  2364. log_error("error curReg = %x", curReg);
  2365. gDoCommGblData.MiscCmd = 0;
  2366. gDoCommGblData.DisConnCount = CHECK_NETWORK_FAIL_COUNT;
  2367. isContinue = 0;
  2368. break;
  2369. }
  2370. if (gDoCommGblData.DisConnCount >= CHECK_NETWORK_FAIL_COUNT) {
  2371. return DISPENSER_SOCKET_RECONN;
  2372. }
  2373. }//for
  2374. return ret;
  2375. }
  2376. //static bool isDetectPlugin()
  2377. //{
  2378. // if (pSysInfo->WaitForPlugit == YES) {
  2379. // return YES;
  2380. // }
  2381. //
  2382. // return NO;
  2383. //}
  2384. static void systemStatusProcess(int fd, uint8_t totalGun, uint8_t plugNum, uint8_t gunID)
  2385. {
  2386. uint8_t i = 0;
  2387. struct timeb AuthNowTime = {0};
  2388. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(plugNum);
  2389. switch (pDcChargingInfo->SystemStatus) {
  2390. case S_IDLE:
  2391. case S_RESERVATION:
  2392. case S_MAINTAIN:
  2393. case S_ALARM:
  2394. case S_AUTHORIZING:
  2395. if(pDcChargingInfo->SystemStatus == S_ALARM &&
  2396. strlen((char*)ShmDcCommonData->pGunInfo[plugNum].ChargeStopTime) <= 1) {
  2397. ftime(&AuthNowTime);
  2398. if (DiffTimeb(gRegTimeUp[plugNum][REG_READ_CHARGING_TIMESTAMP], AuthNowTime) > LOOP_RETRY_TIME ||
  2399. DiffTimeb(gRegTimeUp[plugNum][REG_READ_CHARGING_TIMESTAMP], AuthNowTime) < 0
  2400. ) {
  2401. readChargingTimeStamp(fd, gunID);
  2402. ftime(&gRegTimeUp[plugNum][REG_READ_CHARGING_TIMESTAMP]);
  2403. }
  2404. }
  2405. checkAuthorProcess(fd, plugNum);
  2406. //authorization complete, write wait plug it state
  2407. if (ShmSelectGunInfo->PricesInfo[plugNum].Balance == FAIL_BALANCE_PRICES) {
  2408. break;
  2409. }
  2410. ftime(&AuthNowTime);
  2411. if (DiffTimeb(gRegTimeUp[plugNum][REG_WAIT_PLUG_IT_STATE], AuthNowTime) > (LOOP_RETRY_TIME / 10) ||
  2412. DiffTimeb(gRegTimeUp[plugNum][REG_WAIT_PLUG_IT_STATE], AuthNowTime) < 0
  2413. ) {
  2414. writeWaitPlugItState(fd, gunID);
  2415. ftime(&gRegTimeUp[plugNum][REG_WAIT_PLUG_IT_STATE]);
  2416. }
  2417. /*
  2418. ftime(&AuthNowTime);
  2419. if (DiffTimeb(gRegTimeUp[plugNum][REG_MISC_CONTROL], AuthNowTime) > (LOOP_RETRY_TIME / 10) ||
  2420. DiffTimeb(gRegTimeUp[plugNum][REG_MISC_CONTROL], AuthNowTime) < 0
  2421. ) {
  2422. readMiscCommand(fd, gunID);
  2423. ftime(&gRegTimeUp[plugNum][REG_MISC_CONTROL]);
  2424. }
  2425. */
  2426. ftime(&AuthNowTime);
  2427. if (DiffTimeb(gRegTimeUp[plugNum][REG_CHARGING_CAP], AuthNowTime) > LOOP_RETRY_TIME ||
  2428. DiffTimeb(gRegTimeUp[plugNum][REG_CHARGING_CAP], AuthNowTime) < 0
  2429. ) {
  2430. readChargingCapability(fd, gunID);
  2431. if (pDcChargingInfo->PantographFlag)
  2432. writeGroundFaultDetection(fd, 0, gunID);
  2433. ftime(&gRegTimeUp[plugNum][REG_CHARGING_CAP]);
  2434. }
  2435. break;
  2436. case S_PREPARNING: //get permission
  2437. ftime(&AuthNowTime);
  2438. if (DiffTimeb(gRegTimeUp[plugNum][REG_CONNECTOR_STATE], AuthNowTime) > LOOP_RETRY_TIME ||
  2439. DiffTimeb(gRegTimeUp[plugNum][REG_CONNECTOR_STATE], AuthNowTime) < 0
  2440. ) {
  2441. writeConnectorState(fd, plugNum, gunID);
  2442. ftime(&gRegTimeUp[plugNum][REG_CONNECTOR_STATE]);
  2443. }
  2444. ftime(&AuthNowTime);
  2445. if (DiffTimeb(gRegTimeUp[plugNum][REG_CHARGING_PERMISSION], AuthNowTime) > (LOOP_RETRY_TIME/2) ||
  2446. DiffTimeb(gRegTimeUp[plugNum][REG_CHARGING_PERMISSION], AuthNowTime) < 0
  2447. ) {
  2448. if (readChargePermission(fd, gunID) && readChargingCapability(fd, gunID)) {
  2449. for (i = 0; i < totalGun; i++) {
  2450. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(i);
  2451. ShmPsuData->SystemAvailablePower += pDcChargingInfo->AvailableChargingPower;
  2452. }
  2453. ShmPsuData->SystemPresentPsuQuantity = (ShmPsuData->SystemAvailablePower / 30);
  2454. }
  2455. ftime(&gRegTimeUp[plugNum][REG_CHARGING_PERMISSION]);
  2456. }
  2457. ftime(&AuthNowTime);
  2458. if (DiffTimeb(gRegTimeUp[plugNum][REG_PRESENT_CHARGING_INFO], AuthNowTime) > LOOP_RETRY_TIME ||
  2459. DiffTimeb(gRegTimeUp[plugNum][REG_PRESENT_CHARGING_INFO], AuthNowTime) < 0
  2460. ) {
  2461. writePresentChargingInfo(fd, plugNum, gunID);
  2462. if (pDcChargingInfo->PantographFlag)
  2463. writeGroundFaultDetection(fd, 0, gunID);
  2464. ftime(&gRegTimeUp[plugNum][REG_PRESENT_CHARGING_INFO]);
  2465. }
  2466. break;
  2467. case S_PREPARING_FOR_EV://wait connector lock
  2468. ftime(&AuthNowTime);
  2469. if (DiffTimeb(gRegTimeUp[plugNum][REG_CHARGING_CAP], AuthNowTime) > LOOP_RETRY_TIME ||
  2470. DiffTimeb(gRegTimeUp[plugNum][REG_CHARGING_CAP], AuthNowTime) < 0
  2471. ) {
  2472. readChargingCapability(fd, gunID);
  2473. ftime(&gRegTimeUp[plugNum][REG_CHARGING_CAP]);
  2474. }
  2475. ftime(&AuthNowTime);
  2476. if (DiffTimeb(gRegTimeUp[plugNum][REG_CHARGING_PERMISSION], AuthNowTime) > LOOP_RETRY_TIME ||
  2477. DiffTimeb(gRegTimeUp[plugNum][REG_CHARGING_PERMISSION], AuthNowTime) < 0
  2478. ) {
  2479. if (readChargePermission(fd, gunID) == 0) {
  2480. log_info("S_PREPARING_FOR_EV Stop charging by power cabinet's permission = %d, %d",
  2481. plugNum,
  2482. REG_CHARGING_PERMISSION);
  2483. pDcChargingInfo->StopChargeFlag = POWER_CABINET_STOP_CHARGING;
  2484. }
  2485. ftime(&gRegTimeUp[plugNum][REG_CHARGING_PERMISSION]);
  2486. }
  2487. ftime(&AuthNowTime);
  2488. if (DiffTimeb(gRegTimeUp[plugNum][REG_PRESENT_CHARGING_INFO], AuthNowTime) > LOOP_RETRY_TIME ||
  2489. DiffTimeb(gRegTimeUp[plugNum][REG_PRESENT_CHARGING_INFO], AuthNowTime) < 0
  2490. ) {
  2491. writePresentChargingInfo(fd, plugNum, gunID);
  2492. if (pDcChargingInfo->PantographFlag)
  2493. writeGroundFaultDetection(fd, 0, gunID);
  2494. ftime(&gRegTimeUp[plugNum][REG_PRESENT_CHARGING_INFO]);
  2495. }
  2496. break;
  2497. case S_PREPARING_FOR_EVSE: //insaulation test
  2498. case S_CCS_PRECHARGE_ST0:
  2499. case S_CCS_PRECHARGE_ST1:
  2500. writeChargingTarget(fd, plugNum, gunID);
  2501. if (pDcChargingInfo->PantographFlag)
  2502. writeGroundFaultDetection(fd, 1, gunID);
  2503. ftime(&AuthNowTime);
  2504. if (DiffTimeb(gRegTimeUp[plugNum][REG_CHARGING_CAP], AuthNowTime) > LOOP_RETRY_TIME ||
  2505. DiffTimeb(gRegTimeUp[plugNum][REG_CHARGING_CAP], AuthNowTime) < 0
  2506. ) {
  2507. readChargingCapability(fd, gunID);
  2508. ftime(&gRegTimeUp[plugNum][REG_CHARGING_CAP]);
  2509. }
  2510. ftime(&AuthNowTime);
  2511. if (DiffTimeb(gRegTimeUp[plugNum][REG_CHARGING_PERMISSION], AuthNowTime) > LOOP_RETRY_TIME ||
  2512. DiffTimeb(gRegTimeUp[plugNum][REG_CHARGING_PERMISSION], AuthNowTime) < 0
  2513. ) {
  2514. if (readChargePermission(fd, gunID) == 0) {
  2515. log_info("S_PREPARING_FOR_EVSE Stop charging by power cabinet's permission = %d, %d",
  2516. plugNum,
  2517. REG_CHARGING_PERMISSION);
  2518. pDcChargingInfo->StopChargeFlag = POWER_CABINET_STOP_CHARGING;
  2519. }
  2520. ftime(&gRegTimeUp[plugNum][REG_CHARGING_PERMISSION]);
  2521. }
  2522. ftime(&AuthNowTime);
  2523. if (DiffTimeb(gRegTimeUp[plugNum][REG_PRESENT_CHARGING_INFO], AuthNowTime) > LOOP_RETRY_TIME ||
  2524. DiffTimeb(gRegTimeUp[plugNum][REG_PRESENT_CHARGING_INFO], AuthNowTime) < 0
  2525. ) {
  2526. writePresentChargingInfo(fd, plugNum, gunID);
  2527. ftime(&gRegTimeUp[plugNum][REG_PRESENT_CHARGING_INFO]);
  2528. }
  2529. break;
  2530. case S_CHARGING: //charging
  2531. case S_TERMINATING:
  2532. if(pDcChargingInfo->Type == _Type_GB || pDcChargingInfo->Type == _Type_Chademo)
  2533. {
  2534. if (pDcChargingInfo->PantographFlag)
  2535. writeGroundFaultDetection(fd, 0, gunID);
  2536. }
  2537. else
  2538. {
  2539. if (pDcChargingInfo->PantographFlag)
  2540. writeGroundFaultDetection(fd, 1, gunID);
  2541. }
  2542. ftime(&AuthNowTime);
  2543. if (DiffTimeb(gRegTimeUp[plugNum][REG_CHARGING_CAP], AuthNowTime) > LOOP_RETRY_TIME ||
  2544. DiffTimeb(gRegTimeUp[plugNum][REG_CHARGING_CAP], AuthNowTime) < 0
  2545. ) {
  2546. readChargingCapability(fd, gunID);
  2547. ftime(&gRegTimeUp[plugNum][REG_CHARGING_CAP]);
  2548. }
  2549. ftime(&AuthNowTime);
  2550. if (DiffTimeb(gRegTimeUp[plugNum][REG_CHARGING_PERMISSION], AuthNowTime) > LOOP_RETRY_TIME ||
  2551. DiffTimeb(gRegTimeUp[plugNum][REG_CHARGING_PERMISSION], AuthNowTime) < 0
  2552. ) {
  2553. if (readChargePermission(fd, gunID) == 0) {
  2554. if (pDcChargingInfo->StopChargeFlag != POWER_CABINET_STOP_CHARGING) {
  2555. log_info("Stop charging by power cabinet's permission = %d, %d",
  2556. plugNum,
  2557. REG_CHARGING_PERMISSION);
  2558. pDcChargingInfo->StopChargeFlag = POWER_CABINET_STOP_CHARGING;
  2559. }
  2560. //printf("%d StopChargeFlag = %d\n", plugNum, pDcChargingInfo->StopChargeFlag);
  2561. }
  2562. ftime(&gRegTimeUp[plugNum][REG_CHARGING_PERMISSION]);
  2563. }
  2564. writeChargingTarget(fd, plugNum, gunID);
  2565. ftime(&AuthNowTime);
  2566. if (DiffTimeb(gRegTimeUp[plugNum][REG_PRESENT_CHARGING_INFO], AuthNowTime) > LOOP_RETRY_TIME ||
  2567. DiffTimeb(gRegTimeUp[plugNum][REG_PRESENT_CHARGING_INFO], AuthNowTime) < 0
  2568. ) {
  2569. writePresentChargingInfo(fd, plugNum, gunID);
  2570. ftime(&gRegTimeUp[plugNum][REG_PRESENT_CHARGING_INFO]);
  2571. }
  2572. // 獲得Charging時間
  2573. if (strlen((char*)ShmDcCommonData->pGunInfo[plugNum].ChargeStopTime) <= 1) {
  2574. ftime(&AuthNowTime);
  2575. if (DiffTimeb(gRegTimeUp[plugNum][REG_READ_CHARGING_TIMESTAMP], AuthNowTime) > LOOP_RETRY_TIME ||
  2576. DiffTimeb(gRegTimeUp[plugNum][REG_READ_CHARGING_TIMESTAMP], AuthNowTime) < 0
  2577. ) {
  2578. readChargingTimeStamp(fd, gunID);
  2579. ftime(&gRegTimeUp[plugNum][REG_READ_CHARGING_TIMESTAMP]);
  2580. }
  2581. }
  2582. break;
  2583. case S_COMPLETE:
  2584. ftime(&AuthNowTime);
  2585. if (DiffTimeb(gRegTimeUp[plugNum][REG_CHARGING_CAP], AuthNowTime) > LOOP_RETRY_TIME ||
  2586. DiffTimeb(gRegTimeUp[plugNum][REG_CHARGING_CAP], AuthNowTime) < 0
  2587. ) {
  2588. readChargingCapability(fd, gunID);
  2589. if (pDcChargingInfo->PantographFlag)
  2590. writeGroundFaultDetection(fd, 0, gunID);
  2591. ftime(&gRegTimeUp[plugNum][REG_CHARGING_CAP]);
  2592. }
  2593. // 獲得Charging時間
  2594. if (strlen((char*)ShmDcCommonData->pGunInfo[plugNum].ChargeStopTime) <= 1) {
  2595. ftime(&AuthNowTime);
  2596. if (DiffTimeb(gRegTimeUp[plugNum][REG_READ_CHARGING_TIMESTAMP], AuthNowTime) > LOOP_RETRY_TIME ||
  2597. DiffTimeb(gRegTimeUp[plugNum][REG_READ_CHARGING_TIMESTAMP], AuthNowTime) < 0
  2598. ) {
  2599. readChargingTimeStamp(fd, gunID);
  2600. ftime(&gRegTimeUp[plugNum][REG_READ_CHARGING_TIMESTAMP]);
  2601. }
  2602. }
  2603. break;
  2604. default:
  2605. break;
  2606. }
  2607. }
  2608. static int networkCreatePorcess(void)
  2609. {
  2610. int fd = 0;
  2611. uint8_t discount = 0;
  2612. while (pSysInfo->SelfTestSeq != _STEST_COMPLETE) {
  2613. usleep(128);
  2614. }
  2615. setTcpStatus(ABNORMAL);
  2616. /**************** Check Network **********/
  2617. //log_info("Check Dispenser Network Information");
  2618. while (pSysInfo->SelfTestSeq != _STEST_COMPLETE) {
  2619. usleep(125);
  2620. }
  2621. while (!CheckNetworkStatus()) {
  2622. calDisconnectCount(&gDoCommGblData.DisConnCount, CHECK_NETWORK_FAIL_COUNT);
  2623. if( gDoCommGblData.DisConnCount != discount ) {
  2624. discount = gDoCommGblData.DisConnCount;
  2625. log_error("disconnect count = % d", gDoCommGblData.DisConnCount);
  2626. }
  2627. }
  2628. log_info("Dispenser Network Information checked: IP = % s Netmask = % s, Gateway = % s",
  2629. pSysConfig->Eth0Interface.EthIpAddress,
  2630. pSysConfig->Eth0Interface.EthSubmaskAddress,
  2631. pSysConfig->Eth0Interface.EthGatewayAddress);
  2632. gDoCommGblData.DisConnCount = 0;
  2633. discount = 0;
  2634. /**************** Power cabinet connection **********/
  2635. log_info("Connect to Power Cabinet");
  2636. while ((fd = doCommConnToServer()) <= 0) {
  2637. calDisconnectCount(&gDoCommGblData.DisConnCount, CONNECT_SERVER_FAIL_COUNT);
  2638. if( gDoCommGblData.DisConnCount != discount && fd == -1) {
  2639. discount = gDoCommGblData.DisConnCount;
  2640. log_error("disconnect count = %d, fd = %d", gDoCommGblData.DisConnCount, fd);
  2641. }
  2642. }
  2643. log_info("Power cabinet connected(fd = % d): IP = % s Netmask = % s, Gateway = % s",
  2644. fd,
  2645. pSysConfig->Eth0Interface.EthIpAddress,
  2646. pSysConfig->Eth0Interface.EthSubmaskAddress,
  2647. pSysConfig->Eth0Interface.EthGatewayAddress);
  2648. gDoCommGblData.DisConnCount = 0;
  2649. destroySelectGun(DESTROY_ALL_SEL);
  2650. sleep(3);
  2651. setTcpStatus(NORMAL);
  2652. return fd;
  2653. }
  2654. int main(int argc, char *argv[])
  2655. {
  2656. uint8_t plugNum = 0, gunID = 0;
  2657. uint8_t index = 0;
  2658. uint8_t totalConnCount = 0;
  2659. uint8_t initDone = DISPENER_INIT_FAIL;
  2660. char tmpbuf[256] = {0};
  2661. int fd = 0;
  2662. int isContinue = 1;
  2663. InitSocketSigPipe();
  2664. /**************** Initialization **********/
  2665. if (CreateAllCsuShareMemory() == FAIL) {
  2666. log_error("create share memory error");
  2667. return FAIL;
  2668. }
  2669. MappingGunChargingInfo("DoComm Task");
  2670. pSysConfig = (struct SysConfigData *)GetShmSysConfigData();
  2671. pSysInfo = (struct SysInfoData *)GetShmSysInfoData();
  2672. pSysWarning = (struct WARNING_CODE_INFO *)GetShmSysWarningInfo();
  2673. pAlarmCode = (struct AlarmCodeData *)GetShmAlarmCodeData();
  2674. ShmPsuData = (struct PsuData *)GetShmPsuData();
  2675. ShmPrimaryMcuData = (struct PrimaryMcuData *)GetShmPrimaryMcuData();
  2676. ShmOCPP16Data = (struct OCPP16Data *)GetShmOCPP16Data();
  2677. ShmSelectGunInfo = (SelectGunInfo *)GetShmSelectGunInfo();
  2678. ShmDcCommonData = (DcCommonInfo *)GetShmDcCommonData();
  2679. totalConnCount = pSysConfig->TotalConnectorCount;
  2680. for (index = 0; index < totalConnCount; index++) {
  2681. clearPricesInfo(index);
  2682. }
  2683. //initial trigger message timer
  2684. for (index = 0; index < MAX_REGISTER_NUM; index++) {
  2685. ftime(&gRegTimeUp[0][index]);
  2686. usleep(128);
  2687. ftime(&gRegTimeUp[1][index]);
  2688. usleep(50000);
  2689. }
  2690. setTcpStatus(NORMAL);
  2691. gDoCommGblData.DisConnCount = 0;
  2692. while (isContinue) {
  2693. if (initDone == DISPENER_INIT_FAIL) {
  2694. fd = networkCreatePorcess();
  2695. initDone = messageTrigger(fd, 0, 0, REG_MODEL_NAME); //first trigger model name and connector id
  2696. } else {
  2697. plugNum = 0;
  2698. gunID = 0;
  2699. for (plugNum = 0; plugNum < totalConnCount; plugNum++) {
  2700. //checkAuthorProcess(fd, plugNum);
  2701. //plugNum : setup chargingData value for bottom layer
  2702. //gunID : connector Id from power cabinet, 1 = left gun, 2 = right gun,
  2703. gunID = gDoCommGblData.ConnectorID[plugNum];
  2704. systemStatusProcess(fd, totalConnCount, plugNum, gunID);
  2705. initDone = messageTrigger(fd,
  2706. plugNum,
  2707. gunID,
  2708. REG_POWER_CABINET_STATUS);
  2709. if (initDone == DISPENSER_SOCKET_RECONN) {
  2710. break;
  2711. }
  2712. }
  2713. }
  2714. if (initDone != DISPENSER_SOCKET_RECONN) {
  2715. //update dispenser firmware
  2716. updateFirmwareProcess(fd, gDoCommGblData.ConnectorID[0], totalConnCount);
  2717. usleep(100000);
  2718. continue;
  2719. }
  2720. //Ethernet error recovery handle
  2721. log_info("Disconnected from power cabinet...re-connecting");
  2722. setTcpStatus(ABNORMAL);
  2723. if (pSysConfig->Eth0Interface.EthDhcpClient == 0) {
  2724. system("pgrep -f \"udhcpc -i eth0\" | xargs kill");
  2725. sprintf(tmpbuf,
  2726. "/sbin/udhcpc -i eth0 -x hostname:CSU3_%s -s /root/dhcp_script/eth0.script > /dev/null &",
  2727. pSysConfig->SystemId);
  2728. system(tmpbuf);
  2729. }
  2730. gDoCommGblData.DisConnCount = 0;
  2731. gDoCommGblData.SeqNum = 0;
  2732. closeSocket(fd);
  2733. fd = 0;
  2734. initDone = DISPENER_INIT_FAIL;
  2735. }
  2736. }