]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/debug.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Misc debug functions and macros
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
17 #include "wx/wxchar.h"
19 // ----------------------------------------------------------------------------
21 @name Debugging macros
23 All debugging macros rely on ASSERT() which in turn calls user-defined
24 OnAssert() function. To keep things simple, it's called even when the
25 expression is TRUE (i.e. everything is ok) and by default does nothing: just
26 returns the same value back. But if you redefine it to do something more sexy
27 (popping up a message box in your favourite GUI, sending you e-mail or
28 whatever) it will affect all ASSERTs, FAILs and CHECKs in your code.
31 <b>Warning</b>: if you don't like advices on programming style, don't read
35 Extensive use of these macros is recommended! Remember that ASSERTs are
36 disabled in final (without __WXDEBUG__ defined) build, so they add strictly
37 nothing to your program's code. On the other hand, CHECK macros do stay
38 even in release builds, but in general are not much of a burden, while
39 a judicious use of them might increase your program's stability.
41 @memo Debugging macros (replacement for standard assert()) and more.
43 // ----------------------------------------------------------------------------
46 /** @name Macros which are completely disabled in 'release' mode */
50 this function may be redefined to do something non trivial and is called
51 whenever one of debugging macros fails (i.e. condition is false in an
53 @param szFile and nLine - file name and line number of the ASSERT
54 szMsg - optional message explaining the reason
56 void WXDLLEXPORT
wxOnAssert(const wxChar
*szFile
, int nLine
, const wxChar
*szMsg
= (const wxChar
*) NULL
);
58 /// generic assert macro
59 #define wxASSERT(cond) if ( !(cond) ) wxOnAssert(__TFILE__, __LINE__)
61 #if 0 // defined(__BORLANDC__) && defined(__WIN16__)
62 // Too much text, so make wxASSERT_MSG the same as wxASSERT,
63 // thus removing the text from the program.
64 #define wxASSERT_MSG(x, m) if ( !(x) ) wxOnAssert(__TFILE__, __LINE__)
66 /// assert with additional message explaining it's cause
67 #define wxASSERT_MSG(x, m) if ( !(x) ) wxOnAssert(__TFILE__, __LINE__, m)
71 // nothing to do in release modes (hopefully at this moment there are
73 #define wxASSERT(cond)
74 #define wxASSERT_MSG(x, m)
77 /// special form of assert: always triggers it (in debug mode)
78 #define wxFAIL wxASSERT(wxFalse)
80 #if 0 // defined(__BORLANDC__) && defined(__WIN16__)
81 // Too much text, so make wxFAIL_MSG the same as wxFAIL,
82 // thus removing the text from the program.
83 #define wxFAIL_MSG(msg) wxASSERT(wxFalse)
85 /// FAIL with some message
86 #define wxFAIL_MSG(msg) wxASSERT_MSG(wxFalse, msg)
90 // NB: these macros work also in release mode!
93 These macros must be used only in invalid situation: for example, an
94 invalid parameter (NULL pointer) is passed to a function. Instead of
95 dereferencing it and causing core dump the function might try using
96 CHECK( p != NULL ) or CHECK( p != NULL, return LogError("p is NULL!!") )
98 @name Macros which remain even in 'release' mode
101 /// check that expression is true, "return" if not (also FAILs in debug mode)
102 #define wxCHECK(x, rc) if (!(x)) {wxFAIL; return rc; }
103 /// as wxCHECK but with a message explaining why we fail
104 #define wxCHECK_MSG(x, rc, msg) if (!(x)) {wxFAIL_MSG(msg); return rc; }
105 /// check that expression is true, perform op if not
106 #define wxCHECK2(x, op) if (!(x)) {wxFAIL; op; }
107 /// as wxCHECK2 but with a message explaining why we fail
108 #define wxCHECK2_MSG(x, op, msg) if (!(x)) {wxFAIL_MSG(msg); op; }
109 /// special form of wxCHECK2: as wxCHECK, but for use in void functions
110 // NB: there is only one form (with msg parameter) and it's intentional:
111 // there is no other way to tell the caller what exactly went wrong
112 // from the void function (of course, the function shouldn't be void
114 #define wxCHECK_RET(x, msg) if (!(x)) {wxFAIL_MSG(msg); return; }
119 #endif // _WX_DEBUG_H_