log.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555
  1. /************** Begin of Log.h *******************************************/
  2. /************************************************************************
  3. * Log.h
  4. *
  5. * edit by jesse in 2010-07-22
  6. * 日志相关代码的头文件
  7. ************************************************************************/
  8. #if !defined(LOG_H_INCLUDED_)
  9. #define LOG_H_INCLUDED_
  10. #if _MSC_VER > 1000
  11. #pragma once
  12. #endif // _MSC_VER > 1000
  13. ///用户不需要使用日志,不要定义LOG_USELOG4CXX和LOG4C_ENABLE宏命令就可以了
  14. #if !defined(LOG_USELOG4CXX) && !defined(LOG4C_ENABLE)
  15. #define LOG4C(X)
  16. #define LOG4C_INIT()
  17. #define LOG4C_PARAM_CFG_FILE_NAME(strCfgFileName)
  18. #define LOG4C_PARAM_LOG_LEVEL(strLogLevel)
  19. #define LOG4C_PARAM_LOG_FILE_NAME(strLogFileName)
  20. #define LOG4C_PARAM_LOG_FILE_SIZE(iFileSize)
  21. #define LOG4C_PARAM_LOG_FILE_NUM(iFileNum)
  22. #define LOG4C_PARAM_REREAD_LOG_CFG_FILE(bReReadLogCfgFile)
  23. #define LOG4C_INIT_WITH_PARAM()
  24. #define LOG4C_INIT_WITH_PARAM_MULTI_PROCESS()
  25. #define LOG4C_FINI()
  26. #define LOG4C_INIT_DEFAULT()
  27. #define LOG4C_NO_FILENUM(X)
  28. #define LOG4C_NO_FILENUM_NO_LAYOUT(X)
  29. #define LOG4C_ORIGIN LOG4C_NO_FILENUM_NO_LAYOUT
  30. #define LOG4C_BLOCK_BEGIN(X)
  31. #define LOG4C_BLOCK_END(X)
  32. #define LOG4C_FUN(X)
  33. #define LOG4C_IF(X)
  34. #define LOG4C_LINE()
  35. #define LOG4C_HEX_DUMP(X)
  36. #define LOG4C_RETURN(X)
  37. #define LOG4C_RETURN_WITH_VALUE(X, reurnValue)
  38. #else
  39. #include <stdlib.h>
  40. /**日志记录模块初始化宏定义
  41. 注意事项: 必须初始化日志模块后才能正确记录日志
  42. 本初始化不要求应用程序所在目录有日志配置文件log4crc,会自动生成一个缺省的log4crc文件
  43. 使用例子: LOG4C_INIT_DEFAULT();
  44. 作者:Jesse 日期:2010-07-22
  45. */
  46. #define LOG4C_INIT_DEFAULT() \
  47. log_init_with_string("", "")
  48. /**日志记录模块初始化宏定义
  49. 注意事项: 必须初始化日志模块后才能正确记录日志
  50. 本初始化要求应用程序所在目录有日志配置文件log4crc才行
  51. 使用例子: LOG4C_INIT();
  52. 作者:Jesse 日期:2010-07-22
  53. */
  54. #define LOG4C_INIT() \
  55. log_init()
  56. /************************************************************************
  57. 下面的为通过设置参数设置日志模块参数的宏定义(功能和LOG4C_INIT和LOG4C_INIT_DEFAULT类似):
  58. 1.必须先调用LOG_PARAM_XXXX系列宏定义设置参数,
  59. 1.1.如设置日志记录级别、生成日志文件名等。
  60. 1.2.若不LOG_PARAM_XXXX系列宏定义则将使用默认设置参数。
  61. 2.然后调用LOG_INIT_WITH_PARAM宏定义来初始化日志模块。
  62. 3.此时就可以记录日志了。
  63. */
  64. #define LOG4C_PARAM_CFG_FILE_NAME(strCfgFileName) \
  65. log_set_log_cfg_file_name(strCfgFileName)
  66. #define LOG4C_PARAM_LOG_LEVEL(strLogLevel) \
  67. log_set_log_level(strLogLevel)
  68. #define LOG4C_PARAM_LOG_FILE_NAME(strLogFileName) \
  69. log_set_log_file_name(strLogFileName)
  70. #define LOG4C_PARAM_LOG_FILE_SIZE(iFileSize) \
  71. log_set_log_file_size(iFileSize)
  72. #define LOG4C_PARAM_LOG_FILE_NUM(iFileNum) \
  73. log_set_log_file_num(iFileNum)
  74. #define LOG4C_PARAM_REREAD_LOG_CFG_FILE(bReReadLogCfgFile) \
  75. log_set_reread_log_cfg_file(bReReadLogCfgFile)
  76. #define LOG4C_INIT_WITH_PARAM() \
  77. log_init_with_param()
  78. #define LOG4C_INIT_WITH_PARAM_MULTI_PROCESS() \
  79. log_init_with_param_multi_process()
  80. /************************************************************************/
  81. /**日志记录模块结束宏定义
  82. 注意事项: 必须正确结束日志模块后才不会造成内存、资源泄漏
  83. 使用例子: LOG4C_FINI();
  84. 作者:Jesse 日期:2010-07-22
  85. */
  86. #define LOG4C_FINI() \
  87. log_fini()
  88. ///进行LOG宏定义参数获取的结果
  89. typedef struct __LOG_PARAM
  90. {
  91. char strMsg[LOG4C_BUFFER_SIZE_DEFAULT];
  92. int iPriority;
  93. ///LOG4C_IF时的条件参数
  94. int iCondition;
  95. ///LOG4C_HEX_DUMP时的参数
  96. char *strHexBuf;
  97. int iHexBufLen;
  98. }LOG_PARAM;
  99. /*
  100. */
  101. #define LOG4C(X) \
  102. { \
  103. const LOG_PARAM log_param = log_vsprintf_wrapper X; \
  104. log_msg( __FILE__, __LINE__, DEFAULT_LOG_CATEGORY_NAME, log_param.iPriority, log_param.strMsg ); \
  105. }
  106. #define LOG4C_NO_FILENUM(X) \
  107. { \
  108. const LOG_PARAM log_param = log_vsprintf_wrapper X; \
  109. log_msg_no_file_num( DEFAULT_LOG_CATEGORY_NAME, log_param.iPriority, log_param.strMsg ); \
  110. }
  111. #define LOG4C_NO_FILENUM_NO_LAYOUT(X) \
  112. { \
  113. const LOG_PARAM log_param = log_vsprintf_wrapper X; \
  114. log_msg_no_file_num_no_layout( DEFAULT_LOG_CATEGORY_NAME, log_param.iPriority, log_param.strMsg ); \
  115. }
  116. #define LOG4C_ORIGIN LOG4C_NO_FILENUM_NO_LAYOUT
  117. #define LOG4C_BLOCK_BEGIN(X) \
  118. { \
  119. const LOG_PARAM log_param = log_vsnprintf_wrapper_msg X; \
  120. log4c_block_begin(__FILE__, __LINE__, log_param.strMsg); \
  121. }
  122. #define LOG4C_BLOCK_END(X) \
  123. { \
  124. const LOG_PARAM log_param = log_vsnprintf_wrapper_msg X; \
  125. log4c_block_end(__FILE__, __LINE__, log_param.strMsg); \
  126. }
  127. #define LOG4C_FUN(X) \
  128. { \
  129. const LOG_PARAM log_param = log_vsnprintf_wrapper_msg X; \
  130. log_msg_func(__FILE__, __FUNCTION__, __LINE__, DEFAULT_LOG_CATEGORY_NAME, LOG4C_PRIORITY_TRACE, log_param.strMsg ); \
  131. }
  132. /** Output trace on condition.
  133. This macro outputs a trace of any information needed, using standard stream
  134. output operators. The output is only made if the conditional is TRUE.
  135. example: LOG4C_IF((4>3, LOG4C_PRIORITY_TRACE, "HELLO"));
  136. */
  137. #define LOG4C_IF(X) \
  138. { \
  139. const LOG_PARAM log_param = log_condition_vsnprintf_wrapper X; \
  140. if( log_param.iCondition ) {\
  141. log_msg( \
  142. __FILE__, \
  143. __LINE__, \
  144. DEFAULT_LOG_CATEGORY_NAME, \
  145. log_param.iPriority, \
  146. log_param.strMsg\
  147. ); \
  148. }\
  149. }
  150. /** Trace the execution of a line.
  151. This macro outputs a trace of a source file line execution.
  152. */
  153. #define LOG4C_LINE() \
  154. { \
  155. char strBuffer[128] = {0}; \
  156. snprintf(strBuffer, sizeof(strBuffer), "line:%d", __LINE__); \
  157. log_msg( \
  158. __FILE__, \
  159. __LINE__, \
  160. DEFAULT_LOG_CATEGORY_NAME, \
  161. LOG4C_PRIORITY_TRACE, \
  162. strBuffer \
  163. ); \
  164. }
  165. /**将内存中数据以十六进制方式打印出来的一个宏定义
  166. example:LOG4C_HEX_DUMP((LOG4C_PRIORITY_TRACE, strHexBuf, iHexBufLen));
  167. 作者:Jesse 日期:2010-07-22
  168. */
  169. #define LOG4C_HEX_DUMP(X) \
  170. { \
  171. log_hex_dump_vsnprintf_wrapper X; \
  172. }
  173. /** 输出文件名和行号的日志输出宏,记录完日志直接return
  174. 然后再输入到LOG宏定义中
  175. 作者:Jesse 日期:2010-07-22
  176. */
  177. #define LOG4C_RETURN(X) \
  178. { \
  179. LOG4C(X); \
  180. return; \
  181. }
  182. /** 输出文件名和行号的日志输出宏,记录完日志直接return returnValue;
  183. 然后再输入到LOG宏定义中
  184. example:LOG4C_RETURN_WITH_VALUE(( LOG4C_PRIORITY_TRACE, "message%d", 1), returnValue);
  185. 作者:Jesse 日期:2010-07-22
  186. */
  187. #define LOG4C_RETURN_WITH_VALUE(X, returnValue) \
  188. { \
  189. LOG4C(X); \
  190. return returnValue; \
  191. }
  192. #endif ///!defined(LOG_USELOG4CXX) && !defined(LOG4C_ENABLE)
  193. #if ((defined(LOG_USELOG4CXX) && defined(__cplusplus)) || defined(LOG4C_ENABLE))
  194. #ifdef _WIN32
  195. ///log4c正确使用必须的一些宏定义
  196. #define snprintf _snprintf
  197. #ifndef HAVE_CONFIG_H
  198. #define HAVE_CONFIG_H
  199. #endif
  200. ///#define LOG4C_EXPORTS
  201. #endif
  202. ///定义linux下使用到而不存在的类型
  203. #ifdef linux
  204. ///typedef int BOOL;
  205. #ifndef BOOL
  206. #define BOOL int
  207. #define FALSE 0
  208. #define TRUE 1
  209. #endif
  210. #define sprintf_s snprintf
  211. ///#define strcpy_s strncpy
  212. #endif
  213. /// 日志输出缺省category
  214. #ifndef DEFAULT_LOG_CATEGORY_NAME
  215. #define DEFAULT_LOG_CATEGORY_NAME "root"
  216. #endif
  217. /** 日志记录级别
  218. */
  219. /** fatal */ #define LOG_FATAL LOG4C_PRIORITY_FATAL
  220. /** alert */ #define LOG_ALERT LOG4C_PRIORITY_ALERT
  221. /** crit */ #define LOG_CRIT LOG4C_PRIORITY_CRIT
  222. /** error */ #define LOG_ERROR LOG4C_PRIORITY_ERROR
  223. /** warn */ #define LOG_WARN LOG4C_PRIORITY_WARN
  224. /** notice */ #define LOG_NOTICE LOG4C_PRIORITY_NOTICE
  225. /** info */ #define LOG_INFO LOG4C_PRIORITY_INFO
  226. /** debug */ #define LOG_DEBUG LOG4C_PRIORITY_DEBUG
  227. /** trace */ #define LOG_TRACE LOG4C_PRIORITY_TRACE
  228. /** notset */ #define LOG_NOTSET LOG4C_PRIORITY_NOTSET
  229. /** unknown */ #define LOG_UNKNOWN LOG4C_PRIORITY_UNKNOWN
  230. #include <log4c/defs.h>
  231. __LOG4C_BEGIN_DECLS
  232. /** 日志模块初始化
  233. @return int:return 0 for success
  234. 作者:Jesse 日期:2010-07-22
  235. */
  236. LOG4C_API int log_init();
  237. /** 日志模块初始化,指定配置文件名称
  238. @return int:return 0 for success
  239. 作者:Jesse 日期:2010-07-22
  240. */
  241. LOG4C_API int log_init_with_cfg_file(const char *strCfgFileName);
  242. /** 日志模块清理
  243. @return int:return 0 for success
  244. 作者:Jesse 日期:2010-07-22
  245. */
  246. LOG4C_API int log_fini();
  247. /**宏参数抽取priority函数
  248. 本函数接受LOG_DEBUG(X)的参数,并从该宏定义的参数中返回priority的值
  249. @return const int : iPriority.
  250. 作者:Jesse 日期:2010-07-22
  251. */
  252. LOG4C_API const int log_get_priority_wrapper(
  253. const int iPriority, ///日志记录级别
  254. const char* strFormat, ///日志内容格式
  255. ... ///日志内容
  256. );
  257. /**
  258. 将大小为count的缓冲区中内容按字节以16进制字符串打印出来,
  259. 返回值即为指向相应的字符串,
  260. 该返回指向的存储区域要调用本函数的用户显示的进行删除
  261. */
  262. LOG4C_API void log4c_sprintf_data(char *buff, int count, char *dest_buffer);
  263. /**日志记录宏定义
  264. 注意事项: 使用时参数必须使用两个括号括起来,LOG4C((X));见下面例子
  265. 使用例子: LOG4C((LOG_ERROR, "Hello World! My Name is %s, and my age is %d ", "Jess", "28" ));
  266. 作者:Jesse 日期:2010-07-22
  267. */
  268. LOG4C_API const LOG_PARAM log_vsprintf_wrapper(
  269. const int iPriority, ///日志记录级别
  270. const char* strFormat, ///日志内容格式
  271. ... ///日志内容
  272. );
  273. LOG4C_API const LOG_PARAM log_condition_vsnprintf_wrapper(
  274. const int iCondition, ///条件
  275. const int iPriority, ///日志记录级别
  276. const char* strFormat, ///日志内容格式
  277. ... ///日志内容
  278. );
  279. LOG4C_API void log_hex_dump_vsnprintf_wrapper(
  280. const int iPriority, ///日志记录级别
  281. const char* strHexBuf, ///缓冲区首地址
  282. const int iHexBufLen, ///缓冲区长度
  283. ... ///日志内容
  284. );
  285. LOG4C_API const LOG_PARAM log_vsnprintf_wrapper_msg(
  286. const char* strFormat, ///日志内容格式
  287. ... ///日志内容
  288. );
  289. /** 日志记录
  290. 日志记录为一个字符串指针指向的内容
  291. @return void
  292. 作者:Jesse 日期:2010-07-22
  293. */
  294. LOG4C_API void log_msg(
  295. const char *strFile, ///文件名
  296. const int iLineNum, ///行号
  297. const char *strCatName, ///category名
  298. const int iPriority, ///日志记录级别
  299. const char *strFormat, ///日志内容格式
  300. ... ///日志内容
  301. );
  302. LOG4C_API void log_msg_func(
  303. const char *strFile, ///文件名
  304. const char *strFuncName,///函数名
  305. const int iLineNum, ///行号
  306. const char *strCatName, ///category名
  307. const int iPriority, ///日志记录级别
  308. const char *strFormat, ///日志内容格式
  309. ... ///日志内容
  310. );
  311. /** 日志记录,不记录文件名和行号
  312. 日志记录为一个字符串指针指向的内容
  313. @return void
  314. 作者:Jesse 日期:2010-07-22
  315. */
  316. LOG4C_API void log_msg_no_file_num(
  317. const char *strCatName, ///category名
  318. const int iPriority, ///日志记录级别
  319. const char *strFormat, ///日志内容格式
  320. ... ///日志内容
  321. );
  322. /** 日志记录,不记录文件名和行号,没有任何layout转换,直接输出相应的字符文本到日志中
  323. 此条记录没有行号,也没有线程号,也没有回车等
  324. 日志记录为一个字符串指针指向的内容
  325. @return void
  326. 作者:Jesse 日期:2010-07-22
  327. */
  328. LOG4C_API void log_msg_no_file_num_no_layout(
  329. const char *strCatName, ///category名
  330. const int iPriority, ///日志记录级别
  331. const char *strFormat, ///日志内容格式
  332. ... ///日志内容
  333. );
  334. /** 日志模块初始化
  335. 以日志配置文件字符串内容和日志配置文件命作为参数
  336. 若相应配置文件存在则使用,否则按照给定内容和文件名创建日志配置文件并使用之
  337. @return int,0 表成功
  338. 作者:Jesse 日期:2010-07-22
  339. */
  340. LOG4C_API int log_init_with_string(
  341. const char *strFileContent,
  342. const char *strFileName
  343. );
  344. /** 日志模块初始化
  345. 以日志配置文件命作为参数
  346. @return int,0 表成功
  347. 作者:Jesse 日期:2010-07-22
  348. */
  349. LOG4C_API int log_init_with_cfg_file_wrapper(
  350. const char * strConfigFile
  351. );
  352. /** 日志模块初始化-日志配置文件的文件名设置
  353. 以日志配置文件命作为参数
  354. @return void
  355. 作者:Jesse 日期:2010-07-22
  356. */
  357. LOG4C_API void log_set_log_cfg_file_name(const char *strFileName);
  358. /** 日志模块初始化-生成的日志文件的文件名设置
  359. 以日志文件命作为参数
  360. @return void
  361. 作者:Jesse 日期:2010-07-22
  362. */
  363. LOG4C_API void log_set_log_file_name(const char *strFileName);
  364. /** 日志模块初始化-日志记录级别设置
  365. @return void
  366. 作者:Jesse 日期:2010-07-22
  367. */
  368. LOG4C_API void log_set_log_level(const char *strLogLevel);
  369. /** 日志模块初始化-日志记录文件的大设置
  370. @return void
  371. 作者:Jesse 日期:2010-07-22
  372. */
  373. LOG4C_API void log_set_log_file_size(const int iFileSize);
  374. /** 日志模块初始化-日志记录文件的个数设置
  375. 记录到最大个数后将回滚重复覆盖第一个日志文件,依次类推
  376. @return void
  377. 作者:Jesse 日期:2010-07-22
  378. */
  379. LOG4C_API void log_set_log_file_num(const int iFileNum);
  380. /** 日志模块初始化-是否实时读取日志配置文件
  381. 设置是否每次记录时都读取日志配置文件
  382. @param:const BOOL m_bReReadLogCfgFile
  383. @return void
  384. 作者:Jesse 日期:2010-07-22
  385. */
  386. LOG4C_API void log_set_reread_log_cfg_file(const BOOL bReReadLogCfgFile);
  387. /** 日志模块初始化-带参数进行日志模块初始化
  388. 这里的参数则为上面的几个API设置的参数,
  389. 所以本函数一定要在日志配置参数设置好之后调用设置的参数才能生效的
  390. @return int,OK,成功;FAILURE,失败
  391. 作者:Jesse 日期:2010-07-22
  392. */
  393. LOG4C_API int log_init_with_param();
  394. /** 日志模块初始化-带参数进行日志模块初始化,程序的多个运行实例产生的日志不互相冲突
  395. 这里的参数则为上面的几个API设置的参数,
  396. 所以本函数一定要在日志配置参数设置好之后调用设置的参数才能生效的
  397. @return int,OK,成功;FAILURE,失败
  398. 作者:Jesse 日期:2010-07-22
  399. */
  400. LOG4C_API int log_init_with_param_multi_process();
  401. /** 日志记录Block方式能清楚的表明调用层次
  402. 类似下面这种B-Entry类型日志:
  403. main.cpp(87) B-Entry ==> main
  404. main.cpp(90) B-Entry ====> main_01
  405. main.cpp(92) B-Entry ======> main_02
  406. main.cpp(92) B-Exit <====== main_02
  407. main.cpp(90) B-Exit <==== main_01
  408. @return void
  409. 作者:Jesse 日期:2010-07-22
  410. */
  411. LOG4C_API void log4c_block_begin(const char * fileName, int lineNum, const char * traceName);
  412. /** 日志记录Block方式能清楚的表明调用层次
  413. 类似下面这种B-Exit类型日志:
  414. main.cpp(87) B-Entry ==> main
  415. main.cpp(90) B-Entry ====> main_01
  416. main.cpp(92) B-Entry ======> main_02
  417. main.cpp(92) B-Exit <====== main_02
  418. main.cpp(90) B-Exit <==== main_01
  419. @return void
  420. 作者:Jesse 日期:2010-07-22
  421. */
  422. LOG4C_API void log4c_block_end(const char * fileName, int lineNum, const char * traceName);
  423. /**检测配置文件是否存在
  424. @return const int : iPriority.
  425. 作者:Jesse 日期:2010-07-22
  426. */
  427. extern const int log_check(void);
  428. /**检测配置文件是否存在,只检测传入的配置文件名
  429. @return const int : iPriority.
  430. 作者:Jesse 日期:2010-07-22
  431. */
  432. extern const int log_check_with_cfg_file(const char *strCfgFileName);
  433. /**宏参数抽取format函数
  434. 本函数接受LOG_DEBUG(X)的参数,并从该宏定义的参数中返回format的值
  435. @return const char* : strFormat
  436. 作者:Jesse 日期:2010-07-22
  437. */
  438. extern const char* log_get_format_wrapper(
  439. const int iPriority, ///日志记录级别
  440. const char* strFormat, ///日志内容格式
  441. ... ///日志内容
  442. );
  443. /** 设置appender
  444. @return int:
  445. 作者:Jesse 日期:2010-07-22
  446. */
  447. extern int log_setappender(
  448. const char *strCatName, ///category名
  449. const char *strAppenderName ///appender名
  450. );
  451. /** 日志记录
  452. 支持类似printf函数的带格式输出
  453. @return void
  454. 作者:Jesse 日期:2010-07-22
  455. */
  456. extern void log_log(
  457. const char *strCatName, ///category名
  458. const int iPriority, ///日志记录级别
  459. const char *strFormat, ///日志内容格式
  460. ... ///日志内容
  461. );
  462. /** 日志模块初始化-日志模块使用实例个数自增
  463. @return void
  464. 作者:Jesse 日期:2010-07-22
  465. */
  466. extern void IncreaseLogModuleUsage();
  467. __LOG4C_END_DECLS
  468. ///#include "log4c.h"
  469. #endif ///((defined(LOG_USELOG4CXX) && defined(__cplusplus)) || defined(LOG4C_ENABLE))
  470. #endif // !defined(LOG_H_INCLUDED_)
  471. /************** End of Log.h *******************************************/