Module_EventLogging.c 15 KB

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