Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
smells--
[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 #ifdef __cplusplus
49 #include <string>
50 #include <vector>
51 #include <stdexcept>
52 #include <xbt/exception.hpp>
53 #endif
54
55 #include "xbt/base.h"
56 #include "xbt/sysdep.h"
57 #include "xbt/misc.h"
58 #include "xbt/virtu.h"
59
60 /*-*-* Emergency debuging: define this when the exceptions get crazy *-*-*/
61 #undef __EX_MAYDAY
62 #ifdef __EX_MAYDAY
63 # include <stdio.h>
64 #include <errno.h>
65 #  define MAYDAY_SAVE(m)    printf("%d %s:%d save %p\n",                \
66                                    xbt_getpid(), __FILE__, __LINE__,    \
67                                    (m)->jb                              \
68                                   ),
69 #  define MAYDAY_RESTORE(m) printf("%d %s:%d restore %p\n",             \
70                                    xbt_getpid(), __FILE__, __LINE__,    \
71                                    (m)->jb                              \
72                                   ),
73 #  define MAYDAY_CATCH(e)   printf("%d %s:%d Catched '%s'\n",           \
74                                    xbt_getpid(), __FILE__, __LINE__,    \
75                                    (e).msg                              \
76           ),
77 #else
78 #  define MAYDAY_SAVE(m)
79 #  define MAYDAY_RESTORE(m)
80 #  define MAYDAY_CATCH(e)
81 #endif
82 /*-*-* end of debugging stuff *-*-*/
83
84 /** @brief different kind of errors */
85 typedef enum {
86   unknown_error = 0,            /**< unknown error */
87   arg_error,                    /**< Invalid argument */
88   bound_error,                  /**< Out of bounds argument */
89   mismatch_error,               /**< The provided ID does not match */
90   not_found_error,              /**< The searched element was not found */
91   system_error,                 /**< a syscall did fail */
92   network_error,                /**< error while sending/receiving data */
93   timeout_error,                /**< not quick enough, dude */
94   cancel_error,                 /**< an action was canceled */
95   thread_error,                 /**< error while [un]locking */
96   host_error,                   /**< host failed */
97   tracing_error,                /**< error during the simulation tracing */
98   io_error,                     /**< disk or file error */
99   vm_error                      /**< vm  error */
100 } xbt_errcat_t;
101
102 #ifdef __cplusplus
103 XBT_PUBLIC_CLASS xbt_ex :
104   public std::runtime_error,
105   public simgrid::xbt::WithContextException {
106 public:
107   xbt_ex() : std::runtime_error("") {}
108   xbt_ex(const char* message) : std::runtime_error(message) {}
109   ~xbt_ex() override;
110
111   xbt_errcat_t category;        /**< category like HTTP (what went wrong) */
112   int value;                    /**< like errno (why did it went wrong) */
113   const char *file;             /**< Thrown point */
114   int line;                     /**< Thrown point */
115   const char *func;             /**< Thrown point */
116 };
117 #endif
118
119 SG_BEGIN_DECL()
120
121 XBT_PUBLIC(const char *) xbt_ex_catname(xbt_errcat_t cat);
122
123 typedef struct xbt_ex xbt_ex_t;
124
125 XBT_PUBLIC(void) xbt_throw(char* message, xbt_errcat_t errcat, int value, const char* file, int line, const char* func) XBT_ATTRIB_NORETURN;
126
127 /** @brief Builds and throws an exception
128     @hideinitializer */
129 #define THROW(c, v)             { xbt_throw(NULL, (xbt_errcat_t) c, v, __FILE__, __LINE__, __func__); }
130
131 /** @brief Builds and throws an exception with a printf-like formatted message
132     @hideinitializer */
133 #define THROWF(c, v, ...)       xbt_throw(bprintf(__VA_ARGS__), (xbt_errcat_t) c, v, __FILE__, __LINE__, __func__)
134
135 #define THROW_IMPOSSIBLE \
136   THROWF(unknown_error, 0, "The Impossible Did Happen (yet again)")
137 #define THROW_UNIMPLEMENTED \
138   THROWF(unknown_error, 0, "Function %s unimplemented",__func__)
139 #define THROW_DEADCODE \
140   THROWF(unknown_error, 0, "Function %s was supposed to be DEADCODE, but it's not",__func__)
141
142 #define DIE_IMPOSSIBLE xbt_die("The Impossible Did Happen (yet again)")
143
144 /** @brief The display made by an exception that is not catched */
145 XBT_PUBLIC(void) xbt_ex_display(xbt_ex_t * e);
146
147 SG_END_DECL()
148
149 /** @} */
150 #endif                          /* __XBT_EX_H__ */