C/C++ 简单debug宏函数

//debug.h

#ifndef _DEBUG_H__
#define _DEBUG_H__

#ifdef __cplusplus
extern "C"
{
#endif

#include <stdio.h>
#include <stdint.h>
#include <sys/time.h>
#include <errno.h>
#include <string.h>
#include <sys/timeb.h>
#include <time.h>

/*    __FILE__    */
///home/intell/code/test/example.cpp
/*    __FILENAME__ */
//example.cpp
#define __FILENAME__ (strrchr(__FILE__, '/') ? (strrchr(__FILE__, '/') + 1):__FILE__)

#define Error(...) \
do{ \
	struct	tm		*ptm;\
	struct	timeb	stTimeb;\
	static	char	szTime[32] = {0};\
	ftime(&stTimeb);\
	ptm = localtime(&stTimeb.time);\
	sprintf(szTime, "%02d:%02d:%02d.%03d",ptm->tm_hour, ptm->tm_min, ptm->tm_sec, stTimeb.millitm);\
    fprintf(stderr, "%s[ERROR  ]%s:%d:%s()",szTime,__FILENAME__,__LINE__,__FUNCTION__); \
    fprintf(stderr, __VA_ARGS__); \
    fprintf(stderr, "\n"); \
}while(0)    

#define Warning(...) \
do{ \
	struct	tm		*ptm;\
	struct	timeb	stTimeb;\
	static	char	szTime[32] = {0};\
	ftime(&stTimeb);\
	ptm = localtime(&stTimeb.time);\
	sprintf(szTime, "%02d:%02d:%02d.%03d",ptm->tm_hour, ptm->tm_min, ptm->tm_sec, stTimeb.millitm);\
    fprintf(stdout, "%s[WARNING]%s:%d:%s()",szTime,__FILENAME__,__LINE__,__FUNCTION__); \
    fprintf(stdout, __VA_ARGS__); \
    fprintf(stdout, "\n"); \
}while(0)    

#define Info(...) \
do{ \
	struct	tm		*ptm;\
	struct	timeb	stTimeb;\
	static	char	szTime[32] = {0};\
	ftime(&stTimeb);\
	ptm = localtime(&stTimeb.time);\
	sprintf(szTime, "%02d:%02d:%02d.%03d",ptm->tm_hour, ptm->tm_min, ptm->tm_sec, stTimeb.millitm);\
    fprintf(stdout, "%s[INFO   ]%s:%d:%s()",szTime,__FILENAME__,__LINE__,__FUNCTION__);	\
    fprintf(stdout, __VA_ARGS__); \
    fprintf(stdout, "\n"); \
}while(0)  

  
#define Debug(...) \
do{ \
	struct	tm		*ptm;\
	struct	timeb	stTimeb;\
	static	char	szTime[32] = {0};\
	ftime(&stTimeb);\
	ptm = localtime(&stTimeb.time);\
	sprintf(szTime, "%02d:%02d:%02d.%03d",ptm->tm_hour, ptm->tm_min, ptm->tm_sec, stTimeb.millitm);\
    fprintf(stdout, "%s[DEBUG  ]%s:%d:%s()",szTime,__FILENAME__,__LINE__,__FUNCTION__); \
    fprintf(stdout, __VA_ARGS__); \
    fprintf(stdout, "\n"); \
}while(0)    

#ifdef __cplusplus
}
#endif


#endif  /*_DEBUG_H__*/
10:59:17.105[DEBUG  ]main.cpp:111:main()debug
10:59:17.105[INFO   ]main.cpp:112:main()info
10:59:17.105[WARNING]main.cpp:113:main()warning
10:59:17.105[ERROR  ]main.cpp:114:main()error
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值