DoComm.c 87 KB

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