Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
two new functions to xbt_graph, load and save
[simgrid.git] / include / xbt / asserts.h
1 /*  xbt/asserts.h -- assertion mecanism                                     */
2
3 /* Copyright (c) 2005, 2006, 2007, 2009, 2010. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #ifndef _XBT_ASSERTS_H
10 #define _XBT_ASSERTS_H
11
12 #include "xbt/misc.h"
13 #include "xbt/log.h"
14 #include "xbt/ex.h"
15
16 SG_BEGIN_DECL()
17
18 /**
19  * @addtogroup XBT_error
20  * @brief Those are the SimGrid version of the good ol' assert macro.
21  *
22  * You can pass them a format message and arguments, just as if it where a
23  * printf.
24  * It is converted to a XBT_CRITICAL logging request.
25  * Be careful: the boolean expression that you want to test should not have
26  * side effects, because assertions are disabled at compile time if NDEBUG
27  * 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 { if (!(cond)) THROWF(0, 0, __VA_ARGS__); } while (0)
42 #endif
43
44 #ifdef XBT_USE_DEPRECATED
45
46 #define xbt_assert0(...)        xbt_assert(__VA_ARGS__)
47 #define xbt_assert1(...)        xbt_assert(__VA_ARGS__)
48 #define xbt_assert2(...)        xbt_assert(__VA_ARGS__)
49 #define xbt_assert3(...)        xbt_assert(__VA_ARGS__)
50 #define xbt_assert4(...)        xbt_assert(__VA_ARGS__)
51 #define xbt_assert5(...)        xbt_assert(__VA_ARGS__)
52 #define xbt_assert6(...)        xbt_assert(__VA_ARGS__)
53
54 #endif
55 /** @} */
56     SG_END_DECL()
57 #endif                          /* _XBT_ASSERTS_H */