DoComm.c 115 KB

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