DoComm.c 100 KB

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