📄 dbug32.h
字号:
//Assert based on boolean f in debug, resolve to f in non-debug.
#ifndef SideAssert
#define SideAssert(f) AssertSz((f), NULL)
#endif
//Assert based on boolean f and use string sz in assert message.
#ifndef AssertSz
#define AssertSz(f, sz) (!(f) ? Dbug32AssertSzFn(sz, __FILE__, __LINE__) : 0);
#endif
//Warning based on GetLastError or default message if no last error.
#define TRACEWARN TraceMsg(MAKEFLAGS(TRCSUBSYSNONE, TRCSEVWARN,\
TRCSCOPENONE, TRCDATADEFAULT, TRCDATANONE),\
(DWORD)0, (DWORD)0, __FILE__, __LINE__)
//Error based on GetLastError or default message if no last error.
#define TRACEERROR TraceMsg(MAKEFLAGS(TRCSUBSYSNONE, TRCSEVERR,\
TRCSCOPENONE, TRCDATADEFAULT, TRCDATANONE),\
(DWORD)0, (DWORD)0, __FILE__, __LINE__)
//Warning based on HRESULT hr
#define TRACEWARNHR(hr) TraceMsg(MAKEFLAGS(TRCSUBSYSNONE, TRCSEVWARN,\
TRCSCOPENONE, TRCDATAHRESULT, TRCDATANONE),\
(DWORD)(hr), (DWORD)0, __FILE__, __LINE__)
//Test for a failure HR && warn
#define TESTANDTRACEHR(hr) if( hr < 0 ) { TRACEWARNHR(hr); }
//Error based on HRESULT hr
#define TRACEERRORHR(hr) TraceMsg(MAKEFLAGS(TRCSUBSYSNONE, TRCSEVERR,\
TRCSCOPENONE, TRCDATAHRESULT, TRCDATANONE),\
(DWORD)(hr), (DWORD)0, __FILE__, __LINE__)
//Warning using string sz
#define TRACEWARNSZ(sz) TraceMsg(MAKEFLAGS(TRCSUBSYSNONE, TRCSEVWARN,\
TRCSCOPENONE, TRCDATASTRING, TRCDATANONE),\
(DWORD)(sz), (DWORD)0, __FILE__, __LINE__)
//Error using string sz
#define TRACEERRORSZ(sz) TraceMsg(MAKEFLAGS(TRCSUBSYSNONE, TRCSEVERR,\
TRCSCOPENONE, TRCDATASTRING, TRCDATANONE),\
(DWORD)(sz), (DWORD)0, __FILE__, __LINE__)
//Error using string sz
#define TRACEINFOSZ(sz) TraceMsg(MAKEFLAGS(TRCSUBSYSNONE, TRCSEVINFO,\
TRCSCOPENONE, TRCDATASTRING, TRCDATANONE),\
(DWORD)(sz), (DWORD)0, __FILE__, __LINE__)
//Initiate tracing. This declares an instance of the CTtrace class
//on the stack. Subsystem (ss), Scope (sc), and the function name
//(sz) must be specifed. ss and sc are specified using the macros
//defined in this header (i.e. - TRCSUBSYSTOM, TRCSCOPEEXTERN, etc.).
//sz can be a static string.
#define TRACEBEGIN(ss, sc, sz) CTrace trc(MAKEFLAGS((ss), TRCSEVNONE,\
(sc), TRCDATASTRING, TRCDATANONE),\
(DWORD)(sz), (DWORD)0, __FILE__)
//Same as TRACEBEGIN but it takes the additional param which is interpreted
//by TraceMsg as a Text Message request.
#define TRACEBEGINPARAM(ss, sc, sz, param) \
CTrace trc(MAKEFLAGS((ss), TRCSEVNONE,\
(sc), TRCDATASTRING, TRCDATAPARAM),\
(DWORD)(sz), (DWORD)(param), __FILE__)
//Set Heap Validation for all traces to on (f = TRUE) or off (f = FALSE).
//If this is set to "on", OPTHEAPVALEXT is ignored.
#define SETHEAPVAL(f) ((f) ? (dwDebugOptions |= OPTHEAPVALON) :\
(dwDebugOptions &= ~OPTHEAPVALON))
//Set Heap Validation for EXTERNAL scope calls only to on (f = TRUE)
//or off (f = FALSE). This is only effective if OPTHEAPVALON has not
//been set.
#define SETHEAPVALEXT(f) ((f) ? (dwDebugOptions |= OPTHEAPVALEXT) :\
(dwDebugOptions &= ~OPTHEAPVALEXT))
//Set logging to on (f = TRUE) or off (f = FALSE)
#define SETLOGGING(f) SetLogging(f)
//Set output of process & thread IDs to on (f = TRUE) or off (f = FALSE)
#define SETVERBOSE(f) ((f) ? (dwDebugOptions |= OPTVERBOSEON) :\
(dwDebugOptions &= ~OPTVERBOSEON))
//Set information messages to on (f = TRUE) or off (f = FALSE)
#define SETINFO(f) ((f) ? (dwDebugOptions |= OPTINFOON) :\
(dwDebugOptions &= ~OPTINFOON))
//Set information messages to on (f = TRUE) or off (f = FALSE)
#define SETMEMORY(f) ((f) ? (dwDebugOptions |= OPTMEMORYON) :\
(dwDebugOptions &= ~OPTMEMORYON))
//Set tracing for all functions to on (f = TRUE) or off (f = FALSE).
//If this is set to "on", external and subsystem level tracing
//has no effect since all function traces are enabled. If it is off,
//external and subsystem level tracing remain in whatever state they
//have been set to.
#define SETTRACING(f) ((f) ? (dwDebugOptions |= OPTTRACEON) :\
(dwDebugOptions &= ~OPTTRACEON))
//Set tracing for EXTERNAL scope calls only to on (f = TRUE)
//or off (f = FALSE). This is only effective if OPTTRACEON has not
//been set.
#define SETTRACEEXT(f) ((f) ? (dwDebugOptions |= OPTTRACEEXT) :\
(dwDebugOptions &= ~OPTTRACEEXT))
//This macro turns all function tracing off.
#define SETALLTRACEOFF (dwDebugOptions &= ~(OPTTRACEEXT | OPTTRACEON | 0xfffff000))
//This macro sets a given option or options (if they are or'ed together)
//to on (f = TRUE), or off (f = FALSE). It cannot be used to set logging.
#define SETOPT(opt, f) ((f) ? (dwDebugOptions |= (opt)) :\
(dwDebugOptions &= (~(opt))))
//This macro determines the state of a given option.
#define ISOPTSET(opt) ((opt) & dwDebugOptions)
//Set an assert or trace hook function. The function specified will be called
//before the default functionality executes. Pointers to all parameters are passed
//to the hook to allow it to modify them. If the hook function returns false,
//default functionality is terminated. If the hook function returns true, default
//functionality continues with the potentially modified parameters. pfn can
//be NULL (default functionality only).
#define SETASSERTFN(pfn) (pfnAssert = (pfn))
#define SETTRACEFN(pfn) (pfnTrace = (pfn))
//The following option tests are explicitly defined for convenience.
#define fHeapVal (OPTHEAPVALON & dwDebugOptions)
#define fHeapValExt (OPTHEAPVALEXT & dwDebugOptions)
#define fLogging (OPTLOGGINGON & dwDebugOptions)
#define fVerbose (OPTVERBOSEON & dwDebugOptions)
#define fInfo (OPTINFOON & dwDebugOptions)
#define fMemory (OPTMEMORYON & dwDebugOptions)
#define fTrace (OPTTRACEON & dwDebugOptions)
#define fTraceExt (OPTTRACEEXT & dwDebugOptions)
//IMallocSpy
class CImpIMallocSpy : public IMallocSpy
{
private:
ULONG m_cRef;
public:
ULONG m_cAlloc;
CImpIMallocSpy (void);
~CImpIMallocSpy (void);
//IUnknown members.
STDMETHODIMP QueryInterface (REFIID riid, LPVOID * ppUnk);
STDMETHODIMP_(ULONG) AddRef (void);
STDMETHODIMP_(ULONG) Release (void);
//IMallocSpy members
STDMETHODIMP_(ULONG) PreAlloc (ULONG cbRequest);
STDMETHODIMP_(void *) PostAlloc (void * pActual);
STDMETHODIMP_(void *) PreFree (void * pRequest, BOOL fSpyed);
STDMETHODIMP_(void) PostFree (BOOL fSpyed);
STDMETHODIMP_(ULONG) PreRealloc (void * pRequest,
ULONG cbRequest,
void ** ppNewRequest,
BOOL fSpyed);
STDMETHODIMP_(void *) PostRealloc (void * pActual, BOOL fSpyed);
STDMETHODIMP_(void *) PreGetSize (void * pRequest, BOOL fSpyed);
STDMETHODIMP_(ULONG) PostGetSize (ULONG cbActual, BOOL fSpyed);
STDMETHODIMP_(void *) PreDidAlloc (void * pRequest, BOOL fSpyed);
STDMETHODIMP_(BOOL) PostDidAlloc (void * pRequest, BOOL fSpyed,
BOOL fActual);
STDMETHODIMP_(void) PreHeapMinimize (void);
STDMETHODIMP_(void) PostHeapMinimize (void);
// memory tracing stuff
public:
void MemoryReport(void) { _memlist.Report(); }
public:
class CMemTagList
{
public:
CMemTagList() : _dwAllocId(0), _pmemtHead(NULL) {}
~CMemTagList();
void Add(void *pv); // add a memory alloc tag to the list for alloc @ pv
void Remove(void *pv); // remove the memory alloc tag for alloc @ pv
void Report(void); // report on un-deallocated memory blocks
private:
struct MemTag
{
void *_pvLoc;
DWORD _dwId;
MemTag *_pmemtNext;
// rewrite these if you want to use a different allocator to
// maintain the memory allocation tag list
#if 0
void *operator new(size_t stSize)
{ return ::operator new(stSize); }
void operator delete(void *pv) { ::operator delete(pv); }
#endif
};
DWORD _dwAllocId;
MemTag *_pmemtHead;
} _memlist;
};
#else //DEBUG
#pragma warning(disable:4390) // disable warning about empty-statement caused by the null defn of Tracef & TRACEINFOSZ below
#define Tracef ;/##/
#define INITDEBUGSERVICES(f, pfnA, pfnT)
#define INSTALLIMALLOCSPY()
#define REMOVEIMALLOCSPY(f)
#define IMALLOCSPYREPORT()
#define TRACEERRSZSC(sz, sc)
#ifndef Assert
#define Assert(f)
#endif
#ifndef SideAssert
#define SideAssert(f) (f)
#endif
#ifndef AssertSz
#define AssertSz(f, sz)
#endif
#define TRACEWARN
#define TRACEERROR
#define TRACEWARNHR(hr)
#define TESTANDTRACEHR(hr)
#define TRACEERRORHR(hr)
#define TRACEWARNSZ(sz)
#define TRACEERRORSZ(sz)
#define TRACEINFOSZ(sz)
#define TRACEBEGIN(ss, sc, sz)
#define TRACEBEGINPARAM(ss, sc, sz, param)
#define SETHEAPVAL(f)
#define SETHEAPVALEXT(f)
#define SETLOGGING(f)
#define SETVERBOSE(f)
#define SETINFO(f)
#define SETMEMORY(f)
#define SETTRACING(f)
#define SETTRACEEXT(f)
#define SETALLTRACEOFF
#define SETOPT(opt, f)
#define ISOPTSET(opt)
#define SETASSERTFN(pfn)
#define SETTRACEFN(pfn)
// debugging for Mac, maybe someday we'll convert dbug32.dll to run on Macs, for now, use Mso debuggin stuff.
#ifdef MACPORTMsoTrace
#if defined(DEBUG) || defined(_DEBUG) // For Mac, MsoTraceSz writes to trace.txt, a file, and is slow
#undef TRACEBEGIN // because of constant vol flushing, but if you need it turned on...
#define TRACEBEGIN(ss, sc, sz) MsoTraceSz(sz)
#endif
#endif
#define Dbug32AssertSzFn(sz, __FILE__, __LINE__) // MACPORT ADDED THIS - Dbug32AssertSzFn
#define TraceError(_sz, _sc) // MACPORT ADDED THIS - TraceError
#endif //DEBUG
#endif //USERDBUG
#endif //DBUG_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -