Module_EventLogging.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466
  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 ARRAY_SIZE(A) (sizeof(A) / sizeof(A[0]))
  30. #define PASS 1
  31. #define FAIL -1
  32. #define YES 1
  33. #define NO 0
  34. struct SysConfigAndInfo *ShmSysConfigAndInfo;
  35. struct StatusCodeData *ShmStatusCodeData;
  36. sqlite3 *localDb;
  37. #define DB_FILE "/Storage/ChargeLog/localCgargingRecord.db"
  38. void PRINTF_FUNC(char *string, ...);
  39. int StoreLogMsg(const char *fmt, ...);
  40. #define DEBUG_INFO(format, args...) StoreLogMsg("[%s:%d][%s][Info] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  41. #define DEBUG_WARN(format, args...) StoreLogMsg("[%s:%d][%s][Warn] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  42. #define DEBUG_ERROR(format, args...) StoreLogMsg("[%s:%d][%s][Error] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  43. #define EVENT_INFO(format, args...) StoreEventLogMsg("[%s:%d][%s][Info] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  44. int StoreLogMsg(const char *fmt, ...)
  45. {
  46. char Buf[4096+256];
  47. char buffer[4096];
  48. va_list args;
  49. struct timeb SeqEndTime;
  50. struct tm *tm;
  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. ftime(&SeqEndTime);
  56. SeqEndTime.time = time(NULL);
  57. tm=localtime(&SeqEndTime.time);
  58. if (ShmSysConfigAndInfo->SysConfig.SwitchDebugFlag == YES)
  59. {
  60. sprintf(Buf,"%02d:%02d:%02d:%03d - %s",
  61. tm->tm_hour,tm->tm_min,tm->tm_sec,SeqEndTime.millitm, buffer);
  62. printf("%s \n", Buf);
  63. }
  64. else
  65. {
  66. sprintf(Buf,"echo \"%04d-%02d-%02d %02d:%02d:%02d:%03d - %s\" >> /Storage/SystemLog/[%04d.%02d]SystemLog",
  67. tm->tm_year+1900,tm->tm_mon+1,tm->tm_mday,tm->tm_hour,tm->tm_min,tm->tm_sec,SeqEndTime.millitm,
  68. buffer,
  69. tm->tm_year+1900,tm->tm_mon+1);
  70. system(Buf);
  71. }
  72. return rc;
  73. }
  74. int StoreEventLogMsg(const char *fmt, ...)
  75. {
  76. char Buf[4096+256];
  77. char buffer[4096];
  78. time_t CurrentTime;
  79. struct tm *tm;
  80. struct timeval tv;
  81. va_list args;
  82. va_start(args, fmt);
  83. int rc = vsnprintf(buffer, sizeof(buffer), fmt, args);
  84. va_end(args);
  85. memset(Buf,0,sizeof(Buf));
  86. CurrentTime = time(NULL);
  87. tm=localtime(&CurrentTime);
  88. gettimeofday(&tv, NULL); // get microseconds, 10^-6
  89. if((ShmSysConfigAndInfo->SysConfig.ModelName != NULL) && (ShmSysConfigAndInfo->SysConfig.SerialNumber != NULL) && (strlen((char*)ShmSysConfigAndInfo->SysConfig.ModelName) >= 14))
  90. {
  91. sprintf(Buf,"echo -n \"[%04d.%02d.%02d %02d:%02d:%02d.%06ld]%s\" >> /Storage/EventLog/[%04d.%02d]%s_%s_EventLog",
  92. tm->tm_year+1900,tm->tm_mon+1,tm->tm_mday,tm->tm_hour,tm->tm_min,tm->tm_sec,tv.tv_usec,
  93. buffer,
  94. tm->tm_year+1900,tm->tm_mon+1,
  95. ShmSysConfigAndInfo->SysConfig.ModelName,
  96. ShmSysConfigAndInfo->SysConfig.SerialNumber);
  97. }
  98. else
  99. {
  100. sprintf(Buf,"echo -n \"[%04d.%02d.%02d %02d:%02d:%02d.%06ld]%s\" >> /Storage/EventLog/[%04d.%02d]EventLog",
  101. tm->tm_year+1900,tm->tm_mon+1,tm->tm_mday,tm->tm_hour,tm->tm_min,tm->tm_sec,tv.tv_usec,
  102. buffer,
  103. tm->tm_year+1900,tm->tm_mon+1);
  104. }
  105. #ifdef SystemLogMessage
  106. system(Buf);
  107. #endif
  108. #ifdef ConsloePrintLog
  109. printf("[%04d.%02d.%02d %02d:%02d:%02d.%06ld]%s", tm->tm_year+1900,tm->tm_mon+1,tm->tm_mday,tm->tm_hour,tm->tm_min,tm->tm_sec,tv.tv_usec, buffer);
  110. #endif
  111. return rc;
  112. }
  113. int DiffTimeb(struct timeb ST, struct timeb ET)
  114. {
  115. //return milli-second
  116. unsigned int StartTime,StopTime;
  117. StartTime=(unsigned int)ST.time;
  118. StopTime=(unsigned int)ET.time;
  119. return (StopTime-StartTime)*1000+ET.millitm-ST.millitm;
  120. }
  121. void PRINTF_FUNC(char *string, ...)
  122. {
  123. va_list args;
  124. char buffer[4096];
  125. va_start(args, string);
  126. vsnprintf(buffer, sizeof(buffer), string, args);
  127. va_end(args);
  128. DEBUG_INFO("%s \n", buffer);
  129. }
  130. //=================================
  131. // Common routine
  132. //=================================
  133. char* getTimeString(void)
  134. {
  135. char *result=malloc(21);
  136. time_t timep;
  137. struct tm *p;
  138. time(&timep);
  139. p=gmtime(&timep);
  140. sprintf(result, "[%04d-%02d-%02d %02d:%02d:%02d]", (1900+p->tm_year), (1+p->tm_mon), p->tm_mday, p->tm_hour, p->tm_hour, p->tm_sec);
  141. return result;
  142. }
  143. //==========================================
  144. // Init all share memory
  145. //==========================================
  146. int InitShareMemory()
  147. {
  148. int result = PASS;
  149. int MeterSMId;
  150. //creat ShmSysConfigAndInfo
  151. if ((MeterSMId = shmget(ShmSysConfigAndInfoKey, sizeof(struct SysConfigAndInfo), 0777)) < 0)
  152. {
  153. #ifdef SystemLogMessage
  154. DEBUG_ERROR("shmget ShmSysConfigAndInfo NG\n");
  155. #endif
  156. result = FAIL;
  157. }
  158. else if ((ShmSysConfigAndInfo = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  159. {
  160. #ifdef SystemLogMessage
  161. DEBUG_ERROR("shmat ShmSysConfigAndInfo NG\n");
  162. #endif
  163. result = FAIL;
  164. }
  165. else
  166. {}
  167. //creat ShmStatusCodeData
  168. if ((MeterSMId = shmget(ShmStatusCodeKey, sizeof(struct StatusCodeData), 0777)) < 0)
  169. {
  170. #ifdef SystemLogMessage
  171. DEBUG_ERROR("shmget ShmStatusCodeData NG\n");
  172. #endif
  173. result = FAIL;
  174. }
  175. else if ((ShmStatusCodeData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  176. {
  177. #ifdef SystemLogMessage
  178. DEBUG_ERROR("shmat ShmStatusCodeData NG\n");
  179. #endif
  180. result = FAIL;
  181. }
  182. else
  183. {}
  184. return result;
  185. }
  186. //================================================
  187. // Main process
  188. //================================================
  189. void AddFaultCodeToBuf(unsigned char *Code)
  190. {
  191. if(ShmSysConfigAndInfo->SysWarningInfo.WarningCount < 10)
  192. {
  193. memcpy(&ShmSysConfigAndInfo->SysWarningInfo.WarningCode[ShmSysConfigAndInfo->SysWarningInfo.WarningCount][0], Code, 7);
  194. ShmSysConfigAndInfo->SysWarningInfo.WarningCount++;
  195. }
  196. }
  197. void RemoveFaultCodeToBuf(unsigned char *Code)
  198. {
  199. unsigned char find = 0x01;
  200. char _code[7];
  201. sprintf(_code,"%s", Code);
  202. // 把相關的錯誤碼一次移除,避免重複顯示
  203. while(find)
  204. {
  205. find = 0x00;
  206. for(unsigned char i = 0; i < ShmSysConfigAndInfo->SysWarningInfo.WarningCount; i++)
  207. {
  208. if (find == 0x00)
  209. {
  210. if(memcmp(&ShmSysConfigAndInfo->SysWarningInfo.WarningCode[i][0], _code, 7) == 0)
  211. {
  212. find = 0x01;
  213. }
  214. }
  215. else
  216. {
  217. memcpy(&ShmSysConfigAndInfo->SysWarningInfo.WarningCode[i - 1][0],
  218. &ShmSysConfigAndInfo->SysWarningInfo.WarningCode[i][0], 7);
  219. }
  220. }
  221. if (find)
  222. {
  223. ShmSysConfigAndInfo->SysWarningInfo.WarningCount--;
  224. }
  225. }
  226. }
  227. //==========================================
  228. // SQLite routne
  229. //==========================================
  230. int DB_Open(sqlite3 *db)
  231. {
  232. int result = PASS;
  233. char* errMsg = NULL;
  234. char* createRecordSql="CREATE TABLE IF NOT EXISTS event_record("
  235. "idx integer primary key AUTOINCREMENT, "
  236. "occurDatetime text NOT NULL, "
  237. "statusCode text NOT NULL"
  238. ");";
  239. if(sqlite3_open(DB_FILE, &db))
  240. {
  241. result = FAIL;
  242. DEBUG_ERROR( "Can't open database: %s\n", sqlite3_errmsg(db));
  243. sqlite3_close(db);
  244. }
  245. else
  246. {
  247. DEBUG_INFO( "Local event record database open successfully.\n");
  248. if (sqlite3_exec(db, createRecordSql, 0, 0, &errMsg) != SQLITE_OK)
  249. {
  250. result = FAIL;
  251. DEBUG_ERROR( "Create local event record table error message: %s\n", errMsg);
  252. }
  253. else
  254. {
  255. DEBUG_INFO( "Opened local event record table successfully\n");
  256. }
  257. sqlite3_close(db);
  258. }
  259. return result;
  260. }
  261. int DB_Insert_Record(sqlite3 *db, uint8_t *statusCode)
  262. {
  263. int result = PASS;
  264. char* errMsg = NULL;
  265. char sqlStr[1024];
  266. sprintf(sqlStr, "insert into event_record(occurDatetime, statusCode) values(CURRENT_TIMESTAMP, '%s');", statusCode);
  267. if(sqlite3_open(DB_FILE, &db))
  268. {
  269. result = FAIL;
  270. DEBUG_INFO( "Can't open database: %s\n", sqlite3_errmsg(db));
  271. sqlite3_close(db);
  272. }
  273. else
  274. {
  275. DEBUG_INFO( "Local event record database open successfully.\n");
  276. if (sqlite3_exec(db, sqlStr, 0, 0, &errMsg) != SQLITE_OK)
  277. {
  278. result = FAIL;
  279. DEBUG_INFO( "Insert local event record error message: %s\n", errMsg);
  280. }
  281. else
  282. {
  283. DEBUG_INFO( "Insert local event record successfully\n");
  284. }
  285. sprintf(sqlStr, "delete from event_record where idx < (select idx from event_record order by idx desc limit 1)-2000;");
  286. if (sqlite3_exec(db, sqlStr, 0, 0, &errMsg) != SQLITE_OK)
  287. {
  288. result = FAIL;
  289. DEBUG_INFO( "delete local event_record error message: %s\n", errMsg);
  290. }
  291. else
  292. {
  293. DEBUG_INFO( "delete local event record successfully\n");
  294. }
  295. sqlite3_close(db);
  296. }
  297. return result;
  298. }
  299. int main(void)
  300. {
  301. int ByteCount,BitCount;
  302. unsigned char tmp, EventCodeTmp[7];
  303. if(InitShareMemory() == FAIL)
  304. {
  305. #ifdef SystemLogMessage
  306. DEBUG_ERROR("InitShareMemory NG\n");
  307. #endif
  308. if(ShmStatusCodeData!=NULL)
  309. {
  310. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.FailToCreateShareMemory=1;
  311. }
  312. sleep(5);
  313. return 0;
  314. }
  315. for(;;)
  316. {
  317. //check Fault Status
  318. for(ByteCount=0;ByteCount<4;ByteCount++)
  319. {
  320. if(ShmStatusCodeData->FaultCode.FaultEvents.FaultVal[ByteCount] != ShmStatusCodeData->FaultCode.PreviousFaultVal[ByteCount])
  321. {
  322. tmp=ShmStatusCodeData->FaultCode.FaultEvents.FaultVal[ByteCount]; //prevent be modified during following process
  323. for(BitCount=0;BitCount<8;BitCount++)
  324. {
  325. if(((tmp>>BitCount)&0x01) != ((ShmStatusCodeData->FaultCode.PreviousFaultVal[ByteCount]>>BitCount)&0x01))
  326. {
  327. memset(EventCodeTmp,0,sizeof(EventCodeTmp));
  328. memcpy(EventCodeTmp,FaultStatusCode[ByteCount*8+BitCount],sizeof(EventCodeTmp)-1);
  329. if(((tmp>>BitCount)&0x01)==0)//Recovered
  330. {
  331. //EventCodeTmp[0]=1;
  332. DEBUG_INFO("Recovery Fault Code = %s\n", EventCodeTmp);
  333. ShmStatusCodeData->FaultCode.PreviousFaultVal[ByteCount] &= ~(1<<BitCount);
  334. RemoveFaultCodeToBuf(EventCodeTmp);
  335. }
  336. else
  337. {
  338. DEBUG_INFO("Fault Code = %s\n", EventCodeTmp);
  339. ShmStatusCodeData->FaultCode.PreviousFaultVal[ByteCount] |= (1<<BitCount);
  340. AddFaultCodeToBuf(EventCodeTmp);
  341. }
  342. EVENT_INFO("%s\n", EventCodeTmp);
  343. DB_Insert_Record(localDb, EventCodeTmp);
  344. }
  345. }
  346. }
  347. }
  348. //check Alarm Status
  349. for(ByteCount=0;ByteCount<13;ByteCount++)
  350. {
  351. if(ShmStatusCodeData->AlarmCode.AlarmEvents.AlarmVal[ByteCount] != ShmStatusCodeData->AlarmCode.PreviousAlarmVal[ByteCount])
  352. {
  353. tmp=ShmStatusCodeData->AlarmCode.AlarmEvents.AlarmVal[ByteCount]; //prevent be modified during following process
  354. for(BitCount=0;BitCount<8;BitCount++)
  355. {
  356. if(((tmp>>BitCount)&0x01) != ((ShmStatusCodeData->AlarmCode.PreviousAlarmVal[ByteCount]>>BitCount)&0x01))
  357. {
  358. memset(EventCodeTmp,0,sizeof(EventCodeTmp));
  359. memcpy(EventCodeTmp,AlarmStatusCode[ByteCount*8+BitCount],sizeof(EventCodeTmp)-1);
  360. if(((tmp>>BitCount)&0x01)==0)//Recovered
  361. {
  362. //EventCodeTmp[0]=1;
  363. DEBUG_INFO("Recovery Alarm Code = %s\n", EventCodeTmp);
  364. ShmStatusCodeData->AlarmCode.PreviousAlarmVal[ByteCount] &= ~(1<<BitCount);
  365. RemoveFaultCodeToBuf(EventCodeTmp);
  366. }
  367. else
  368. {
  369. DEBUG_INFO("Alarm Code = %s\n", EventCodeTmp);
  370. ShmStatusCodeData->AlarmCode.PreviousAlarmVal[ByteCount] |= (1<<BitCount);
  371. AddFaultCodeToBuf(EventCodeTmp);
  372. }
  373. EVENT_INFO("%s\n", EventCodeTmp);
  374. DB_Insert_Record(localDb, EventCodeTmp);
  375. }
  376. }
  377. }
  378. }
  379. //check Info Status
  380. for(ByteCount=0;ByteCount<40;ByteCount++)
  381. {
  382. if(ShmStatusCodeData->InfoCode.InfoEvents.InfoVal[ByteCount] != ShmStatusCodeData->InfoCode.PreviousInfoVal[ByteCount])
  383. {
  384. tmp=ShmStatusCodeData->InfoCode.InfoEvents.InfoVal[ByteCount]; //prevent be modified during following process
  385. for(BitCount=0;BitCount<8;BitCount++)
  386. {
  387. if(((tmp>>BitCount)&0x01) != ((ShmStatusCodeData->InfoCode.PreviousInfoVal[ByteCount]>>BitCount)&0x01))
  388. {
  389. memset(EventCodeTmp,0,sizeof(EventCodeTmp));
  390. memcpy(EventCodeTmp,InfoStatusCode[ByteCount*8+BitCount],sizeof(EventCodeTmp)-1);
  391. if(((tmp>>BitCount)&0x01)==0)//Recovered
  392. {
  393. //EventCodeTmp[0]=1;
  394. DEBUG_INFO("Recovery Info Code = %s\n", EventCodeTmp);
  395. ShmStatusCodeData->InfoCode.PreviousInfoVal[ByteCount] &= ~(1<<BitCount);
  396. RemoveFaultCodeToBuf(EventCodeTmp);
  397. }
  398. else
  399. {
  400. DEBUG_INFO("Info Code = %s\n", EventCodeTmp);
  401. ShmStatusCodeData->InfoCode.PreviousInfoVal[ByteCount] |= (1<<BitCount);
  402. AddFaultCodeToBuf(EventCodeTmp);
  403. }
  404. EVENT_INFO("%s\n", EventCodeTmp);
  405. DB_Insert_Record(localDb, EventCodeTmp);
  406. }
  407. }
  408. }
  409. }
  410. usleep(500000);
  411. }
  412. return FAIL;
  413. }