Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Avoid depending on C++11 stuff when including C/SMPI headers
[simgrid.git] / include / xbt / ex.h
1 /* Copyright (c) 2005-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /*  Copyright (c) 2002-2004 Ralf S. Engelschall <rse@engelschall.com>       */
5 /*  Copyright (c) 2002-2004 The OSSP Project <http://www.ossp.org/>         */
6 /*  Copyright (c) 2002-2004 Cable & Wireless <http://www.cw.com/>           */
7 /*  All rights reserved.                                                    */
8
9 /* This code is inspirated from the OSSP version (as retrieved back in 2004)*/
10 /* It was heavily modified to fit the SimGrid framework.                    */
11
12 /* The OSSP version has the following copyright notice:
13 **  OSSP ex - Exception Handling
14 **  Copyright (c) 2002-2004 Ralf S. Engelschall <rse@engelschall.com>
15 **  Copyright (c) 2002-2004 The OSSP Project <http://www.ossp.org/>
16 **  Copyright (c) 2002-2004 Cable & Wireless <http://www.cw.com/>
17 **
18 **  This file is part of OSSP ex, an exception handling library
19 **  which can be found at http://www.ossp.org/pkg/lib/ex/.
20 **
21 **  Permission to use, copy, modify, and distribute this software for
22 **  any purpose with or without fee is hereby granted, provided that
23 **  the above copyright notice and this permission notice appear in all
24 **  copies.
25 **
26 **  THIS SOFTWARE IS PROVIDED `AS IS'' AND ANY EXPRESSED OR IMPLIED
27 **  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
28 **  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
29 **  IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
30 **  CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
31 **  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
32 **  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
33 **  USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
34 **  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
35 **  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
36 **  OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 **  SUCH DAMAGE.
38  */
39
40 /* The extensions made for the SimGrid project can either be distributed    */
41 /* under the same license, or under the LGPL v2.1                           */
42
43 #ifndef __XBT_EX_H__
44 #define __XBT_EX_H__
45
46 #include <stdlib.h>
47
48 #include "xbt/base.h"
49 #include "xbt/sysdep.h"
50 #include "xbt/misc.h"
51 #include "xbt/virtu.h"
52
53 /*-*-* Emergency debuging: define this when the exceptions get crazy *-*-*/
54 #undef __EX_MAYDAY
55 #ifdef __EX_MAYDAY
56 # include <stdio.h>
57 #include <errno.h>
58 #  define MAYDAY_SAVE(m)    printf("%d %s:%d save %p\n",                \
59                                    xbt_getpid(), __FILE__, __LINE__,    \
60                                    (m)->jb                              \
61                                   ),
62 #  define MAYDAY_RESTORE(m) printf("%d %s:%d restore %p\n",             \
63                                    xbt_getpid(), __FILE__, __LINE__,    \
64                                    (m)->jb                              \
65                                   ),
66 #  define MAYDAY_CATCH(e)   printf("%d %s:%d Catched '%s'\n",           \
67                                    xbt_getpid(), __FILE__, __LINE__,    \
68                                    (e).msg                              \
69           ),
70 #else
71 #  define MAYDAY_SAVE(m)
72 #  define MAYDAY_RESTORE(m)
73 #  define MAYDAY_CATCH(e)
74 #endif
75 /*-*-* end of debugging stuff *-*-*/
76
77 /** @brief different kind of errors */
78 typedef enum {
79   unknown_error = 0,            /**< unknown error */
80   arg_error,                    /**< Invalid argument */
81   bound_error,                  /**< Out of bounds argument */
82   mismatch_error,               /**< The provided ID does not match */
83   not_found_error,              /**< The searched element was not found */
84   system_error,                 /**< a syscall did fail */
85   network_error,                /**< error while sending/receiving data */
86   timeout_error,                /**< not quick enough, dude */
87   cancel_error,                 /**< an action was canceled */
88   thread_error,                 /**< error while [un]locking */
89   host_error,                   /**< host failed */
90   tracing_error,                /**< error during the simulation tracing */
91   io_error,                     /**< disk or file error */
92   vm_error                      /**< vm  error */
93 } xbt_errcat_t;
94
95 SG_BEGIN_DECL()
96
97 XBT_PUBLIC(const char *) xbt_ex_catname(xbt_errcat_t cat);
98
99 typedef struct xbt_ex xbt_ex_t;
100
101 XBT_PUBLIC(void) xbt_throw(char* message, xbt_errcat_t errcat, int value, const char* file, int line, const char* func) XBT_ATTRIB_NORETURN;
102
103 /** @brief Builds and throws an exception
104     @hideinitializer */
105 #define THROW(c, v)             { xbt_throw(NULL, (xbt_errcat_t) c, v, __FILE__, __LINE__, __func__); }
106
107 /** @brief Builds and throws an exception with a printf-like formatted message
108     @hideinitializer */
109 #define THROWF(c, v, ...)       xbt_throw(bprintf(__VA_ARGS__), (xbt_errcat_t) c, v, __FILE__, __LINE__, __func__)
110
111 #define THROW_IMPOSSIBLE \
112   THROWF(unknown_error, 0, "The Impossible Did Happen (yet again)")
113 #define THROW_UNIMPLEMENTED \
114   THROWF(unknown_error, 0, "Function %s unimplemented",__func__)
115 #define THROW_DEADCODE \
116   THROWF(unknown_error, 0, "Function %s was supposed to be DEADCODE, but it's not",__func__)
117
118 #define DIE_IMPOSSIBLE xbt_die("The Impossible Did Happen (yet again)")
119
120 /** @brief The display made by an exception that is not catched */
121 XBT_PUBLIC(void) xbt_ex_display(xbt_ex_t * e);
122
123 SG_END_DECL()
124
125 /** @} */
126 #endif                          /* __XBT_EX_H__ */