1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of global functions
4 // Author: wxWidgets team
6 // Licence: wxWindows licence
7 /////////////////////////////////////////////////////////////////////////////
9 /** @addtogroup group_funcmacro_debug */
13 Exits the program immediately.
15 This is a simple wrapper for the standard abort() function which is not
16 available under all platforms (currently only Windows CE doesn't provide
26 Preprocessor symbol defining the level of debug support available.
28 This symbol is defined to 1 by default meaning that asserts are compiled in
29 (although they may be disabled by a call to wxDisableAsserts()). You may
30 predefine it as 0 prior to including any wxWidgets headers to omit the
31 calls to wxASSERT() and related macros entirely in your own code and you
32 may also predefine it as 0 when building wxWidgets to also avoid including
33 any asserts in wxWidgets itself.
35 Alternatively, you may predefine it as 2 to include wxASSERT_LEVEL_2() and
36 similar macros which are used for asserts which have non-trivial run-time
37 costs and so are disabled by default.
48 Compatibility macro indicating presence of debug support.
50 This symbol is defined if wxDEBUG_LEVEL is greater than 0 and undefined
58 Type for the function called in case of assert failure.
60 @see wxSetAssertHandler()
62 typedef void (*wxAssertHandler_t
)(const wxString
& file
,
69 Assert macro. An error message will be generated if the condition is @false in
70 debug mode, but nothing will be done in the release build.
72 Please note that the condition in wxASSERT() should have no side effects
73 because it will not be executed in release mode at all.
75 This macro should be used to catch (in debug builds) logical errors done
78 @see wxASSERT_MSG(), wxCOMPILE_TIME_ASSERT()
82 #define wxASSERT( condition )
85 Assert macro for expensive run-time checks.
87 This macro does nothing unless wxDEBUG_LEVEL is 2 or more and is meant to
88 be used for the assertions with noticeable performance impact and which,
89 hence, should be disabled during run-time.
91 If wxDEBUG_LEVEL is 2 or more, it becomes the same as wxASSERT().
95 #define wxASSERT_LEVEL_2( condition )
98 Assert macro with a custom message for expensive run-time checks.
100 If wxDEBUG_LEVEL is 2 or more, this is the same as wxASSERT_MSG(),
101 otherwise it doesn't do anything at all.
103 @see wxASSERT_LEVEL_2()
107 #define wxASSERT_LEVEL_2_MSG( condition, msg)
111 This macro results in a @ref wxCOMPILE_TIME_ASSERT "compile time assertion failure"
112 if the size of the given @c type is less than @c size bits.
114 This macro should be used to catch (in debug builds) logical errors done
117 You may use it like this, for example:
120 // we rely on the int being able to hold values up to 2^32
121 wxASSERT_MIN_BITSIZE(int, 32);
123 // can't work with the platforms using UTF-8 for wchar_t
124 wxASSERT_MIN_BITSIZE(wchar_t, 16);
129 #define wxASSERT_MIN_BITSIZE( type, size )
132 Assert macro with message.
133 An error message will be generated if the condition is @false.
135 This macro should be used to catch (in debug builds) logical errors done
138 @see wxASSERT(), wxCOMPILE_TIME_ASSERT()
142 #define wxASSERT_MSG( condition, message )
145 Checks that the condition is @true, returns with the given return value if
146 not (stops execution in debug mode). This check is done even in release mode.
148 This macro should be used to catch (both in debug and release builds) logical
149 errors done by the programmer.
153 #define wxCHECK( condition, retValue )
156 Checks that the condition is @true, returns with the given return value if
157 not (stops execution in debug mode). This check is done even in release mode.
159 This macro may be only used in non-void functions, see also wxCHECK_RET().
161 This macro should be used to catch (both in debug and release builds) logical
162 errors done by the programmer.
166 #define wxCHECK_MSG( condition, retValue, message )
169 Checks that the condition is @true, and returns if not (stops execution
170 with the given error message in debug mode). This check is done even in
173 This macro should be used in void functions instead of wxCHECK_MSG().
175 This macro should be used to catch (both in debug and release builds) logical
176 errors done by the programmer.
180 #define wxCHECK_RET( condition, message )
183 Checks that the condition is @true, and if not, it will wxFAIL() and
184 execute the given @c operation if it is not. This is a generalisation of
185 wxCHECK() and may be used when something else than just returning from the
186 function must be done when the @c condition is @false. This check is done
187 even in release mode.
189 This macro should be used to catch (both in debug and release builds) logical
190 errors done by the programmer.
194 #define wxCHECK2(condition, operation)
197 This is the same as wxCHECK2(), but wxFAIL_MSG() with the specified
198 @c message is called instead of wxFAIL() if the @c condition is @false.
200 This macro should be used to catch (both in debug and release builds) logical
201 errors done by the programmer.
205 #define wxCHECK2_MSG( condition, operation, message )
208 Using wxCOMPILE_TIME_ASSERT() results in a compilation error if the
209 specified @c condition is @false. The compiler error message should include
210 the @c message identifier - please note that it must be a valid C++
211 identifier and not a string unlike in the other cases.
213 This macro is mostly useful for testing the expressions involving the
214 @c sizeof operator as they can't be tested by the preprocessor but it is
215 sometimes desirable to test them at the compile time.
217 Note that this macro internally declares a struct whose name it tries to
218 make unique by using the @c __LINE__ in it but it may still not work if you
219 use it on the same line in two different source files. In this case you may
220 either change the line in which either of them appears on or use the
221 wxCOMPILE_TIME_ASSERT2() macro.
223 Also note that Microsoft Visual C++ has a bug which results in compiler
224 errors if you use this macro with 'Program Database For Edit And Continue'
225 (@c /ZI) option, so you shouldn't use it ('Program Database' (@c /Zi) is ok
226 though) for the code making use of this macro.
228 This macro should be used to catch misconfigurations at compile-time.
230 @see wxASSERT_MSG(), wxASSERT_MIN_BITSIZE()
234 #define wxCOMPILE_TIME_ASSERT( condition, message )
237 This macro is identical to wxCOMPILE_TIME_ASSERT() except that it allows
238 you to specify a unique @c name for the struct internally defined by this
239 macro to avoid getting the compilation errors described for
240 wxCOMPILE_TIME_ASSERT().
242 This macro should be used to catch misconfigurations at compile-time.
246 #define wxCOMPILE_TIME_ASSERT2(condition, message, name)
249 Disable the condition checks in the assertions.
251 This is the same as calling wxSetAssertHandler() with @NULL handler.
257 void wxDisableAsserts();
260 @def wxDISABLE_ASSERTS_IN_RELEASE_BUILD
262 Use this macro to disable asserts in release build when not using
265 By default, assert message boxes are suppressed in release build by
266 wxIMPLEMENT_APP() which uses this macro. If you don't use wxIMPLEMENT_APP()
267 because your application initializes wxWidgets directly (e.g. calls
268 wxEntry() or wxEntryStart() itself) but still want to suppress assert
269 notifications in release build you need to use this macro directly.
271 @see wxDISABLE_DEBUG_SUPPORT()
277 #define wxDISABLE_ASSERTS_IN_RELEASE_BUILD() wxDisableAsserts()
280 Will always generate an assert error if this code is reached (in debug mode).
281 Note that you don't have to (and cannot) use brackets when invoking this
285 if (...some condition...) {
290 This macro should be used to catch (in debug builds) logical errors done
300 Will always generate an assert error with specified message if this code is
301 reached (in debug mode).
303 This macro is useful for marking "unreachable" code areas, for example it
304 may be used in the "default:" branch of a switch statement if all possible
305 cases are processed above.
307 This macro should be used to catch (in debug builds) logical errors done
314 #define wxFAIL_MSG( message )
317 Returns @true if the program is running under debugger, @false otherwise.
319 Please note that this function is currently only implemented for Win32 and
320 always returns @false elsewhere.
324 bool wxIsDebuggerRunning();
327 Sets the function to be called in case of assertion failure.
329 The default assert handler forwards to wxApp::OnAssertFailure() whose
330 default behaviour is, in turn, to show the standard assertion failure
331 dialog if a wxApp object exists or shows the same dialog itself directly
334 While usually it is enough -- and more convenient -- to just override
335 OnAssertFailure(), to handle all assertion failures, including those
336 occurring even before wxApp object creation of after its destruction you
337 need to provide your assertion handler function.
339 This function also provides a simple way to disable all asserts: simply
340 pass @NULL pointer to it. Doing this will result in not even evaluating
341 assert conditions at all, avoiding almost all run-time cost of asserts.
343 Notice that this function is not MT-safe, so you should call it before
344 starting any other threads.
346 The return value of this function is the previous assertion handler. It can
347 be called after any pre-processing by your handler and can also be restored
348 later if you uninstall your handler.
351 The function to call in case of assertion failure or @NULL.
353 The previous assert handler which is not @NULL by default but could be
354 @NULL if it had been previously set to this value using this function.
360 wxAssertHandler_t
wxSetAssertHandler(wxAssertHandler_t handler
);
363 Reset the assert handler to default function which shows a message box when
366 This can be useful for the applications compiled in release build (with @c
367 NDEBUG defined) for which the asserts are by default disabled: if you wish
368 to enable them even in this case you need to call this function.
374 void wxSetDefaultAssertHandler();
377 Generate a debugger exception meaning that the control is passed to the
378 debugger if one is attached to the process.
380 Otherwise the program just terminates abnormally.
382 If @c wxDEBUG_LEVEL is 0 (which is not the default) this function does