C/C++ 简单debug宏函数

//debug.h

#ifndef _DEBUG_H__
#define _DEBUG_H__

#ifdef __cplusplus
extern "C"
{
#endif

#include 
#include 
#include 
#include 
#include 
#include 
#include 

/*    __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

你可能感兴趣的:(C/C++)