Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
deprecate xbt_mutex and xbt_cond
[simgrid.git] / include / xbt / asserts.h
1 /*  xbt/asserts.h -- assertion mechanism                                    */
2
3 /* Copyright (c) 2005-2019. The SimGrid Team. All rights reserved.          */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 #ifndef XBT_ASSERTS_H
9 #define XBT_ASSERTS_H
10
11 #include <xbt/ex.h>
12 #include <xbt/log.h>
13 #include <xbt/misc.h>
14
15 SG_BEGIN_DECL()
16 XBT_PUBLIC_DATA int xbt_log_no_loc; /* Do not show the backtrace on failed backtrace when doing our tests */
17
18 XBT_PUBLIC void xbt_backtrace_display_current();
19
20 /**
21  * @addtogroup XBT_error
22  * @brief Those are the SimGrid version of the good ol' assert macro.
23  *
24  * You can pass them a format message and arguments, just as if it where a printf.
25  * It is converted to a XBT_CRITICAL logging request.
26  * Be careful: the boolean expression that you want to test should not have side effects, because assertions are
27  * disabled at compile time if NDEBUG is set.
28  *
29  * @{
30  */
31 #ifdef NDEBUG
32 #define xbt_assert(...) ((void)0)
33 #else
34    /** @brief The condition which failed will be displayed.
35    @hideinitializer  */
36 #define xbt_assert(...) \
37   _XBT_IF_ONE_ARG(_xbt_assert_ARG1, _xbt_assert_ARGN, __VA_ARGS__)(__VA_ARGS__)
38 #define _xbt_assert_ARG1(cond) \
39   _xbt_assert_ARGN(cond, "Assertion %s failed", #cond)
40 #define _xbt_assert_ARGN(cond, ...)                                                                                    \
41   do {                                                                                                                 \
42     if (!(cond)) {                                                                                                     \
43       XBT_CCRITICAL(root, __VA_ARGS__);                                                                                \
44       if (!xbt_log_no_loc)                                                                                             \
45         xbt_backtrace_display_current();                                                                               \
46       abort();                                                                                                         \
47     }                                                                                                                  \
48   } while (0)
49 #endif
50
51 /** @} */
52 SG_END_DECL()
53 #endif                          /* XBT_ASSERTS_H */