DoComm.c 94 KB

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