Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
479eb6094680ee2d0970b5a1d31f589912164e56
[simgrid.git] / include / xbt / asserts.h
1 /* $Id$ */
2 /*  xbt/asserts.h -- assertion mecanism                                     */
3
4 /* Copyright (c) 2004,2005 Martin Quinson. 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   
14 BEGIN_DECL()
15
16 /**
17  * \name 4. assert macro familly
18  *
19  * Those are the GRAS version of the good ol' assert macro. You can pass them a format message and
20  * arguments, just as if it where a printf. It is converted to a CRITICALn logging request.
21  *
22  * @{
23  */
24 #ifdef NDEBUG
25 #define xbt_assert(cond)
26 #define xbt_assert0(cond,msg)
27 #define xbt_assert1(cond,msg,a)
28 #define xbt_assert2(cond,msg,a,b)
29 #define xbt_assert3(cond,msg,a,b,c)
30 #define xbt_assert4(cond,msg,a,b,c,d)
31 #define xbt_assert5(cond,msg,a,b,c,d,e)
32 #define xbt_assert6(cond,msg,a,b,c,d,e,f)
33 #else
34      /** @brief The condition which failed will be displayed.
35          @hideinitializer  */
36 #define xbt_assert(cond)                  if (!(cond)) { CRITICAL1("Assertion %s failed", #cond); xbt_abort(); }
37      /** @hideinitializer  */
38 #define xbt_assert0(cond,msg)             if (!(cond)) { CRITICAL0(msg); xbt_abort(); }
39      /** @hideinitializer  */
40 #define xbt_assert1(cond,msg,a)           if (!(cond)) { CRITICAL1(msg,a); xbt_abort(); }
41      /** @hideinitializer  */
42 #define xbt_assert2(cond,msg,a,b)         if (!(cond)) { CRITICAL2(msg,a,b); xbt_abort(); }
43      /** @hideinitializer  */
44 #define xbt_assert3(cond,msg,a,b,c)       if (!(cond)) { CRITICAL3(msg,a,b,c); xbt_abort(); }
45      /** @hideinitializer  */
46 #define xbt_assert4(cond,msg,a,b,c,d)     if (!(cond)) { CRITICAL4(msg,a,b,c,d); xbt_abort(); }
47      /** @hideinitializer  */
48 #define xbt_assert5(cond,msg,a,b,c,d,e)   if (!(cond)) { CRITICAL5(msg,a,b,c,d,e); xbt_abort(); }
49      /** @hideinitializer  */
50 #define xbt_assert6(cond,msg,a,b,c,d,e,f) if (!(cond)) { CRITICAL6(msg,a,b,c,d,e,f); xbt_abort(); }
51 #endif
52      
53 /** @} */
54      
55 void xbt_abort(void) _XBT_GNUC_NORETURN;
56 void xbt_die(const char *msg) _XBT_GNUC_NORETURN;
57   
58 END_DECL()
59
60 #endif /* _XBT_ASSERTS_H */