Module_FactoryConfig.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356
  1. #include <sys/time.h>
  2. #include <sys/timeb.h>
  3. #include <sys/types.h>
  4. #include <sys/stat.h>
  5. #include <sys/types.h>
  6. #include <sys/ioctl.h>
  7. #include <sys/socket.h>
  8. #include <sys/ipc.h>
  9. #include <sys/shm.h>
  10. #include <sys/shm.h>
  11. #include <sys/mman.h>
  12. #include <linux/wireless.h>
  13. #include <arpa/inet.h>
  14. #include <netinet/in.h>
  15. #include <unistd.h>
  16. #include <stdarg.h>
  17. #include <stdio.h> /*標準輸入輸出定義*/
  18. #include <stdlib.h> /*標準函數庫定義*/
  19. #include <unistd.h> /*Unix 標準函數定義*/
  20. #include <fcntl.h> /*檔控制定義*/
  21. #include <termios.h> /*PPSIX 終端控制定義*/
  22. #include <errno.h> /*錯誤號定義*/
  23. #include <errno.h>
  24. #include <string.h>
  25. #include <time.h>
  26. #include <ctype.h>
  27. #include <ifaddrs.h>
  28. #include "define.h"
  29. #define DEBUG_INFO(format, args...) StoreLogMsg("[%s:%d][%s][Info] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  30. #define DEBUG_WARN(format, args...) StoreLogMsg("[%s:%d][%s][Warn] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  31. #define DEBUG_ERROR(format, args...) StoreLogMsg("[%s:%d][%s][Error] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  32. #define Debug
  33. #define ARRAY_SIZE(A) (sizeof(A) / sizeof(A[0]))
  34. #define PASS 1
  35. #define FAIL -1
  36. struct SysConfigData SysConfig;
  37. struct SysConfigAndInfo *ShmSysConfigAndInfo;
  38. struct StatusCodeData *ShmStatusCodeData;
  39. struct FanModuleData *ShmFanModuleData;
  40. void trim(char *s);
  41. int mystrcmp(char *p1,char *p2);
  42. void substr(char *dest, const char* src, unsigned int start, unsigned int cnt);
  43. void split(char **arr, char *str, const char *del);
  44. int StoreLogMsg(const char *fmt, ...)
  45. {
  46. char Buf[4096+256];
  47. char buffer[4096];
  48. time_t CurrentTime;
  49. struct tm *tm;
  50. va_list args;
  51. va_start(args, fmt);
  52. int rc = vsnprintf(buffer, sizeof(buffer), fmt, args);
  53. va_end(args);
  54. memset(Buf,0,sizeof(Buf));
  55. CurrentTime = time(NULL);
  56. tm=localtime(&CurrentTime);
  57. sprintf(Buf,"echo \"[%04d.%02d.%02d %02d:%02d:%02d] - %s\" >> /Storage/SystemLog/%04d-%02d_%s_%s_SystemLog",
  58. tm->tm_year+1900,tm->tm_mon+1,tm->tm_mday,tm->tm_hour,tm->tm_min,tm->tm_sec,
  59. buffer,
  60. tm->tm_year+1900,tm->tm_mon+1,
  61. SysConfig.ModelName,
  62. SysConfig.SerialNumber);
  63. #ifdef SystemLogMessage
  64. system(Buf);
  65. #endif
  66. printf("[%04d.%02d.%02d %02d:%02d:%02d] - %s", tm->tm_year+1900,tm->tm_mon+1,tm->tm_mday,tm->tm_hour,tm->tm_min,tm->tm_sec, buffer);
  67. return rc;
  68. }
  69. int DiffTimeb(struct timeb ST, struct timeb ET)
  70. {
  71. //return milli-second
  72. unsigned int StartTime,StopTime;
  73. StartTime=(unsigned int)ST.time;
  74. StopTime=(unsigned int)ET.time;
  75. return (StopTime-StartTime)*1000+ET.millitm-ST.millitm;
  76. }
  77. //=================================
  78. // Common routine
  79. //=================================
  80. void trim(char *s)
  81. {
  82. int i=0, j, k, l=0;
  83. while((s[i]==' ')||(s[i]=='\t')||(s[i]=='\n'))
  84. i++;
  85. j = strlen(s)-1;
  86. while((s[j]==' ')||(s[j]=='\t')||(s[j]=='\n'))
  87. j--;
  88. if(i==0 && j==strlen(s)-1) { }
  89. else if(i==0) s[j+1] = '\0';
  90. else {
  91. for(k=i; k<=j; k++) s[l++] = s[k];
  92. s[l] = '\0';
  93. }
  94. }
  95. int mystrcmp(char *p1,char *p2)
  96. {
  97. while(*p1==*p2)
  98. {
  99. if(*p1=='\0' || *p2=='\0')
  100. break;
  101. p1++;
  102. p2++;
  103. }
  104. if(*p1=='\0' && *p2=='\0')
  105. return(PASS);
  106. else
  107. return(FAIL);
  108. }
  109. void substr(char *dest, const char* src, unsigned int start, unsigned int cnt)
  110. {
  111. strncpy(dest, src + start, cnt);
  112. dest[cnt] = 0;
  113. }
  114. void split(char **arr, char *str, const char *del)
  115. {
  116. char *s = strtok(str, del);
  117. while(s != NULL)
  118. {
  119. *arr++ = s;
  120. s = strtok(NULL, del);
  121. }
  122. }
  123. //==========================================
  124. // Init all share memory
  125. //==========================================
  126. int InitShareMemory()
  127. {
  128. int result = PASS;
  129. int MeterSMId;
  130. //creat ShmSysConfigAndInfo
  131. if ((MeterSMId = shmget(ShmSysConfigAndInfoKey, sizeof(struct SysConfigAndInfo), 0777)) < 0)
  132. {
  133. DEBUG_ERROR("shmget ShmSysConfigAndInfo NG\n");
  134. result = FAIL;
  135. }
  136. else if ((ShmSysConfigAndInfo = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  137. {
  138. DEBUG_ERROR("shmat ShmSysConfigAndInfo NG\n");
  139. result = FAIL;
  140. }
  141. else
  142. {}
  143. //creat ShmStatusCodeData
  144. if ((MeterSMId = shmget(ShmStatusCodeKey, sizeof(struct StatusCodeData), 0777)) < 0)
  145. {
  146. DEBUG_ERROR("shmget ShmStatusCodeData NG\n");
  147. result = FAIL;
  148. }
  149. else if ((ShmStatusCodeData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  150. {
  151. DEBUG_ERROR("shmat ShmStatusCodeData NG\n");
  152. result = FAIL;
  153. }
  154. else
  155. {}
  156. return result;
  157. }
  158. //================================================
  159. // Main process
  160. //================================================
  161. int main(void)
  162. {
  163. unsigned int i,Chk;
  164. unsigned char *ptr;
  165. int fd,wrd;
  166. ptr=malloc(sizeof(struct SysConfigData));
  167. if(ptr==NULL)
  168. {
  169. DEBUG_ERROR("malloc for SysConfigData NG\r\n");
  170. return 0;
  171. }
  172. memset(ptr,0,sizeof(struct SysConfigData));
  173. memset(&SysConfig,0,sizeof(struct SysConfigData));
  174. /*
  175. * TODO: Set factory default configuration
  176. */
  177. // System configuration
  178. time_t t = time(NULL);
  179. struct tm tm = *localtime(&t);
  180. strcpy((char*)SysConfig.ModelName, "AWLU770100W1P0");
  181. strcpy((char*)SysConfig.SerialNumber, "D195200001A0");
  182. sprintf((char*)SysConfig.SystemId, "%s%s", SysConfig.ModelName, SysConfig.SerialNumber);
  183. sprintf((char*)SysConfig.SystemDateTime, "%d-%d-%d %d:%d:%d", tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday, tm.tm_hour, tm.tm_min, tm.tm_sec);
  184. SysConfig.AuthorisationMode = 0; // 0:PH card 1: OCPP backend 2: PH backend 3: Free Mode
  185. SysConfig.DefaultLanguage = 0; // 0:English 1:Big5 2: GB 3: JN 4: Français 5: Italiano 6: Español 7: Deutsch 8: Nederland 9: Norsk 10: Suomalainen 11: Svenska 12: Pусский 13: ไทย
  186. SysConfig.RfidCardNumEndian = 0; // 0: Little endian 1: Big endian
  187. // Charging configuration
  188. SysConfig.MaxChargingEnergy = 0; // 0: No limit Other: 1~65536 KWH
  189. SysConfig.MaxChargingPower = 0; // 0: No limit Other: 1~65536 KW
  190. SysConfig.MaxChargingCurrent = 0; // 0: Rating value Other: 1~Rating A
  191. SysConfig.MaxChargingDuration = 0; // 0: No limit Other: 1~65536 Minute
  192. SysConfig.PhaseLossPolicy = 0; // 0: Charging 1: Stop charging
  193. SysConfig.AcPhaseCount = 1; // 1: One phase 3: Three phase
  194. // Network configuration
  195. strcpy((char*)SysConfig.FtpServer, "ftp://ipc_ui:pht2016@ftp.phihong.com.tw/");
  196. SysConfig.Eth0Interface.EthDhcpClient = 0;
  197. strcpy((char*)SysConfig.Eth0Interface.EthIpAddress, "192.168.1.10");
  198. strcpy((char*)SysConfig.Eth0Interface.EthSubmaskAddress, "255.255.255.0");
  199. strcpy((char*)SysConfig.Eth0Interface.EthGatewayAddress, "192.168.1.254");
  200. SysConfig.Eth1Interface.EthDhcpClient = 0;
  201. strcpy((char*)SysConfig.Eth1Interface.EthIpAddress, "192.168.0.10");
  202. strcpy((char*)SysConfig.Eth1Interface.EthSubmaskAddress, "255.255.255.0");
  203. strcpy((char*)SysConfig.Eth1Interface.EthGatewayAddress, "192.168.0.254");
  204. SysConfig.AthInterface.WifiMode = 2; // 0: Disable 1: Infrastructure client 2: Infrastructure server 3: Ad-Hoc
  205. SysConfig.AthInterface.WifiRssi = 0; // Wifi rssi value
  206. SysConfig.AthInterface.WifiDhcpServer = 0; // 0: Enable 1: Disable
  207. SysConfig.AthInterface.WifiDhcpClient = 0; // 0: Enable 1: Disable
  208. strcpy((char*)SysConfig.TelecomInterface.TelcomApn, "internet");
  209. SysConfig.TelecomInterface.TelcomSimStatus = 0; // SIM card status
  210. SysConfig.TelecomInterface.TelcomModemMode = 0; //0: No services 1: CDMA 2: GSM/GPRS 3: WCDMA 4: GSM/WCDMA 5: TD_SCDMA 6: Unknown
  211. // Backend configuration
  212. SysConfig.BackendConnTimeout=300; // 300 seconds
  213. SysConfig.OfflinePolicy = 0; // 0: Local list 1: PH RFID 2: Free 3: Deny
  214. SysConfig.OfflineMaxChargeEnergy = 0; // 0: Same as MaxChargeEnergy Other: 1~65535KWH
  215. SysConfig.OfflineMaxChargeDuration = 0; // 0: Same as MaxChargeDuration Other: 1~65535 minutes
  216. strcpy((char*)SysConfig.OcppServerURL, "ws://evsocket.phihong.com.tw/");
  217. sprintf((char*)SysConfig.ChargeBoxId, "%s%s", SysConfig.ModelName, SysConfig.SerialNumber);
  218. // Copy default configuration to pointer
  219. memcpy(ptr,&SysConfig,sizeof(struct SysConfigData));
  220. // Calculate CRC
  221. Chk=0;
  222. for(i=0;i<(sizeof(struct SysConfigData)-4);i++)
  223. {
  224. Chk+=*(ptr+i);
  225. }
  226. SysConfig.Checksum=Chk;
  227. // Save factory default setting value to file
  228. fd = open("/mnt/FactoryDefaultConfig.bin", O_RDWR|O_CREAT);
  229. if (fd < 0)
  230. {
  231. DEBUG_ERROR("open /mnt/FactoryDefaultConfig.bin NG\r\n");
  232. free(ptr);
  233. return 0;
  234. }
  235. wrd=write(fd, &SysConfig, sizeof(struct SysConfigData));
  236. close(fd);
  237. if(wrd!=(sizeof(struct SysConfigData)))
  238. {
  239. DEBUG_ERROR("write /mnt/FactoryDefaultConfig.bin NG\r\n");
  240. free(ptr);
  241. return 0;
  242. }
  243. // Save factory default setting value to flash factory default setting block
  244. fd = open("/dev/mtdblock12", O_RDWR);
  245. if (fd < 0)
  246. {
  247. DEBUG_ERROR("open /dev/mtdblock12 NG\r\n");
  248. free(ptr);
  249. return 0;
  250. }
  251. wrd=write(fd, &SysConfig, sizeof(struct SysConfigData));
  252. close(fd);
  253. if(wrd!=(sizeof(struct SysConfigData)))
  254. {
  255. DEBUG_ERROR("write /dev/mtdblock12 NG\r\n");
  256. free(ptr);
  257. return 0;
  258. }
  259. // Save factory default setting value to flash backup setting block
  260. fd = open("/dev/mtdblock11", O_RDWR);
  261. if (fd < 0)
  262. {
  263. DEBUG_ERROR("open /dev/mtdblock11 NG\r\n");
  264. free(ptr);
  265. return 0;
  266. }
  267. wrd=write(fd, &SysConfig, sizeof(struct SysConfigData));
  268. close(fd);
  269. if(wrd!=(sizeof(struct SysConfigData)))
  270. {
  271. DEBUG_ERROR("write /dev/mtdblock11 NG\r\n");
  272. free(ptr);
  273. return 0;
  274. }
  275. // Save factory default setting value to flash setting block
  276. fd = open("/dev/mtdblock10", O_RDWR);
  277. if (fd < 0)
  278. {
  279. DEBUG_ERROR("open /dev/mtdblock10 NG\r\n");
  280. free(ptr);
  281. return 0;
  282. }
  283. wrd=write(fd, &SysConfig, sizeof(struct SysConfigData));
  284. close(fd);
  285. if(wrd!=(sizeof(struct SysConfigData)))
  286. {
  287. DEBUG_ERROR("write /dev/mtdblock10 NG\r\n");
  288. free(ptr);
  289. return 0;
  290. }
  291. free(ptr);
  292. DEBUG_INFO("FactoryConfig OK\r\n");
  293. return FAIL;
  294. }