Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Damn, there was an undefined symbol in the header file. Damn, I got bitten by it...
[simgrid.git] / include / xbt / ex.h
1 /*
2 **  OSSP ex - Exception Handling (modified to fit into SimGrid)
3 **  Copyright (c) 2005 Martin Quinson.
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 **
8 **  This file is part of OSSP ex, an exception handling library
9 **  which can be found at http://www.ossp.org/pkg/lib/ex/.
10 **
11 **  Permission to use, copy, modify, and distribute this software for
12 **  any purpose with or without fee is hereby granted, provided that
13 **  the above copyright notice and this permission notice appear in all
14 **  copies.
15 **
16 **  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
17 **  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
18 **  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 **  IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
20 **  CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 **  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 **  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
23 **  USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24 **  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
25 **  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
26 **  OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 **  SUCH DAMAGE.
28 **
29 **  ex.h: exception handling (pre-processor part)
30 */
31
32 #ifndef __XBT_EX_H__
33 #define __XBT_EX_H__
34
35 #include <xbt/misc.h>
36 #include <xbt/sysdep.h>
37
38 /* do not include execinfo.h directly since it's not always available. 
39    Instead, copy the parts we need (and fake when it's not there) */
40 extern int backtrace (void **__array, int __size);
41
42 /* required ISO-C standard facilities */
43 #include <errno.h>
44 #include <stdio.h>
45
46 /* the machine context */
47 #if defined(__EX_MCTX_MCSC__)
48 #include <ucontext.h>            /* POSIX.1 ucontext(3) */
49 #define __ex_mctx_struct         ucontext_t uc;
50 #define __ex_mctx_save(mctx)     (getcontext(&(mctx)->uc) == 0)
51 #define __ex_mctx_restored(mctx) /* noop */
52 #define __ex_mctx_restore(mctx)  (void)setcontext(&(mctx)->uc)
53
54 #elif defined(__EX_MCTX_SSJLJ__)
55 #include <setjmp.h>              /* POSIX.1 sigjmp_buf(3) */
56 #define __ex_mctx_struct         sigjmp_buf jb;
57 #define __ex_mctx_save(mctx)     (sigsetjmp((mctx)->jb, 1) == 0)
58 #define __ex_mctx_restored(mctx) /* noop */
59 #define __ex_mctx_restore(mctx)  (void)siglongjmp((mctx)->jb, 1)
60
61 #elif defined(__EX_MCTX_SJLJ__) || !defined(__EX_MCTX_CUSTOM__)
62 #include <setjmp.h>              /* ISO-C jmp_buf(3) */
63 #define __ex_mctx_struct         jmp_buf jb;
64 #define __ex_mctx_save(mctx)     (setjmp((mctx)->jb) == 0)
65 #define __ex_mctx_restored(mctx) /* noop */
66 #define __ex_mctx_restore(mctx)  (void)longjmp((mctx)->jb, 1)
67 #endif
68
69 /* declare the machine context type */
70 typedef struct { __ex_mctx_struct } __ex_mctx_t;
71  
72 /** @addtogroup XBT_ex
73  *  @brief A set of macros providing exception a la C++ in ANSI C (grounding feature)
74  *
75  * <center><table><tr><td><b>Top</b>    <td> [\ref index]::[\ref XBT_API]
76  *                <tr><td><b>Prev</b>   <td> [\ref XBT_syscall]
77  *                <tr><td><b>Next</b>   <td> [\ref XBT_log]            </table></center>
78  *
79  * This module is a small ISO-C++ style exception handling library
80  * for use in the ISO-C language. It allows you to use the paradigm 
81  * of throwing and catching exceptions in order to reduce the amount
82  * of error handling code without hindering program robustness.
83  *               
84  * This is achieved by directly transferring exceptional return codes
85  * (and the program control flow) from the location where the exception
86  * is raised (throw point) to the location where it is handled (catch
87  * point) -- usually from a deeply nested sub-routine to a parent 
88  * routine. All intermediate routines no longer have to make sure that 
89  * the exceptional return codes from sub-routines are correctly passed 
90  * back to the parent.
91  *
92  * These features are brought to you by a modified version of the libex 
93  * library, one of the numerous masterpiece of Ralf S. Engelschall.
94  *
95  * @section XBT_ex_toc TABLE OF CONTENTS
96  *
97  *  - \ref XBT_ex_intro
98  *  - \ref XBT_ex_base
99  *  - \ref XBT_ex_pitfalls
100  *
101  * @section XBT_ex_intro DESCRIPTION
102  * 
103  * In SimGrid, an exception is a triple <\a msg , \a category , \a value> 
104  * where \a msg is a human-readable text describing the exceptional 
105  * condition, \a code an integer describing what went wrong and \a value
106  * providing a sort of sub-category. (this is different in the original libex).
107  *
108  * @section XBT_ex_base BASIC USAGE
109  *
110  * \em TRY \b TRIED_BLOCK [\em CLEANUP \b CLEANUP_BLOCK] \em CATCH (variable) \b CATCH_BLOCK
111  *
112  * This is the primary syntactical construct provided. It is modeled after the
113  * ISO-C++ try-catch clause and should sound familiar to most of you.
114  *
115  * Any exception thrown directly from the TRIED_BLOCK block or from called
116  * subroutines is caught. Cleanups which must be done after this block
117  * (whenever an exception arised or not) should be placed into the optionnal
118  * CLEANUP_BLOCK. The code dealing with the exceptions when they arise should
119  * be placed into the (mandatory) CATCH_BLOCK.
120  *
121  * 
122  * In absence of exception, the control flow goes into the blocks TRIED_BLOCK
123  * and CLEANUP_BLOCK (if present); The CATCH_BLOCK block is then ignored. 
124  *
125  * When an exception is thrown, the control flow goes through the following
126  * blocks: TRIED_BLOCK (up to the statement throwing the exception),
127  * CLEANUP_BLOCK (if any) and CATCH_BLOCK. The exception is stored in a
128  * variable for inspection inside the CATCH_BLOCK. This variable must be
129  * declared in the outter scope, but its value is only valid within the
130  * CATCH_BLOCK block. 
131  *
132  * Some notes:
133  *  - TRY, CLEANUP and CATCH cannot be used separately, they work
134  *    only in combination and form a language clause as a whole.
135  *  - In contrast to the syntax of other languages (such as C++ or Jave) there
136  *    is only one CATCH block and not multiple ones (all exceptions are
137  *    of the same \em xbt_ex_t C type). 
138  *  - the variable of CATCH can naturally be reused in subsequent 
139  *    CATCH clauses.
140  *  - it is possible to nest TRY clauses.
141  *
142  * The TRY block is a regular ISO-C language statement block, but it is not
143  * allowed to jump into it via "goto" or longjmp(3) or out of it via "break",
144  * "return", "goto" or longjmp(3) because there is some hidden setup and
145  * cleanup that needs to be done regardless of whether an exception is
146  * caught. Bypassing these steps will break the exception handling facility.
147  *     
148  * The CLEANUP and CATCH blocks are regular ISO-C language statement
149  * blocks without any restrictions. You are even allowed to throw (and, in the
150  * CATCH block, to re-throw) exceptions.
151  *
152  * There is one subtle detail you should remember about TRY blocks:
153  * Variables used in the CLEANUP or CATCH clauses must be declared with
154  * the storage class "volatile", otherwise they might contain outdated
155  * information if an exception it thrown.
156  *
157  *
158  * This is because you usually do not know which commands in the TRY
159  * were already successful before the exception was thrown (logically speaking)
160  * and because the underlying ISO-C setjmp(3) facility applies those
161  * restrictions (technically speaking). As a matter of fact, value changes
162  * between the TRY and the THROW may be discarded if you forget the
163  * "volatile" keyword. 
164  * 
165  * \section XBT_ex_pitfalls PROGRAMMING PITFALLS 
166  *
167  * Exception handling is a very elegant and efficient way of dealing with
168  * exceptional situation. Nevertheless it requires additional discipline in
169  * programming and there are a few pitfalls one must be aware of. Look the
170  * following code which shows some pitfalls and contains many errors (assuming
171  * a mallocex() function which throws an exception if malloc(3) fails):
172  *
173  * \dontinclude ex_test.c
174  * \skip BAD_EXAMPLE
175  * \until end_of_bad_example
176  *
177  * This example raises a few issues:
178  *  -# \b variable \b scope \n
179  *     Variables which are used in the CLEANUP or CATCH clauses must be
180  *     declared before the TRY clause, otherwise they only exist inside the
181  *     TRY block. In the example above, cp1, cp2 and cp3 only exist in the
182  *     TRY block and are invisible from the CLEANUP and CATCH
183  *     blocks.
184  *  -# \b variable \b initialization \n
185  *     Variables which are used in the CLEANUP or CATCH clauses must
186  *     be initialized before the point of the first possible THROW is
187  *     reached. In the example above, CLEANUP would have trouble using cp3
188  *     if mallocex() throws a exception when allocating a TOOBIG buffer.
189  *  -# \b volatile \b variable \n
190  *     Variables which are used in the CLEANUP or CATCH clauses MUST BE
191  *     DECLARED AS "volatile", otherwise they might contain outdated
192  *     information when an exception is thrown. 
193  *  -# \b clean \b before \b catch \n
194  *     The CLEANUP clause is not only place before the CATCH clause in
195  *     the source code, it also occures before in the control flow. So,
196  *     resources being cleaned up cannot be used in the CATCH block. In the
197  *     example, c3 gets freed before the printf placed in CATCH.
198  *  -# \b variable \b uninitialization \n
199  *     If resources are passed out of the scope of the
200  *     TRY/CLEANUP/CATCH construct, they naturally shouldn't get
201  *     cleaned up. The example above does free(3) cp1 in CLEANUP although
202  *     its value was affected to globalcontext->first, invalidating this
203  *     pointer.
204
205  * The following is fixed version of the code (annotated with the pitfall items
206  * for reference): 
207  *
208  * \skip GOOD_EXAMPLE
209  * \until end_of_good_example
210  *
211  * @{
212  */
213
214 typedef enum {
215   unknown_error=0,  /**< unknown error */
216   arg_error,        /**< Invalid argument */
217   mismatch_error,   /**< The provided ID does not match */
218   not_found_error,  /**< The searched element was not found */
219   
220   system_error,   /**< a syscall did fail */
221   network_error,  /**< error while sending/receiving data */
222   timeout_error,  /**< not quick enough, dude */
223   thread_error    /**< error while [un]locking */
224 } xbt_errcat_t;
225
226 const char * xbt_ex_catname(xbt_errcat_t cat);
227
228 /** @brief Structure describing an exception */
229 typedef struct {
230   char        *msg;      /**< human readable message; to be freed */
231   xbt_errcat_t category; /**< category like HTTP (what went wrong) */
232   int          value;    /**< like errno (why did it went wrong) */
233   /* throw point */
234   char *host;     /* NULL for localhost; hostname:port if remote */
235   char *procname; 
236   char *file;     /**< to be freed only for remote exceptions */
237   int   line;     
238   char *func;     /**< to be freed only for remote exceptions */
239   /* Backtrace */
240   void *bt[10];
241   int   used;
242 } xbt_ex_t;
243
244 /* declare the context type (private) */
245 typedef struct {
246     __ex_mctx_t  *ctx_mctx;     /* permanent machine context of enclosing try/catch */
247     int           ctx_caught;   /* temporary flag whether exception was caught */
248     volatile xbt_ex_t ctx_ex;       /* temporary exception storage */
249 } ex_ctx_t;
250
251 /* the static and dynamic initializers for a context structure */
252 #define XBT_CTX_INITIALIZER \
253     { NULL, 0, { /* content */ NULL, unknown_error, 0, \
254                  /* throw point*/ NULL, NULL, NULL, 0, NULL,\
255                  /* backtrace */ {NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL},0 } }
256 #define XBT_CTX_INITIALIZE(ctx) \
257     do { \
258         (ctx)->ctx_mctx        = NULL; \
259         (ctx)->ctx_caught      = 0;    \
260         (ctx)->ctx_ex.msg      = NULL; \
261         (ctx)->ctx_ex.category = 0;    \
262         (ctx)->ctx_ex.value    = 0;    \
263         (ctx)->ctx_ex.host     = NULL; \
264         (ctx)->ctx_ex.procname = NULL; \
265         (ctx)->ctx_ex.file     = NULL; \
266         (ctx)->ctx_ex.line     = 0;    \
267         (ctx)->ctx_ex.func     = NULL; \
268         (ctx)->ctx_ex.bt[0]    = NULL; \
269         (ctx)->ctx_ex.bt[1]    = NULL; \
270         (ctx)->ctx_ex.bt[2]    = NULL; \
271         (ctx)->ctx_ex.bt[3]    = NULL; \
272         (ctx)->ctx_ex.bt[4]    = NULL; \
273         (ctx)->ctx_ex.bt[5]    = NULL; \
274         (ctx)->ctx_ex.bt[6]    = NULL; \
275         (ctx)->ctx_ex.bt[7]    = NULL; \
276         (ctx)->ctx_ex.bt[8]    = NULL; \
277         (ctx)->ctx_ex.bt[9]    = NULL; \
278         (ctx)->ctx_ex.used     = 0; \
279     } while (0)
280
281 /* the exception context */
282 typedef ex_ctx_t *(*ex_ctx_cb_t)(void);
283 extern ex_ctx_cb_t __xbt_ex_ctx;
284 extern ex_ctx_t *__xbt_ex_ctx_default(void);
285
286 /* the termination handler */
287 typedef void (*ex_term_cb_t)(xbt_ex_t *);
288 extern ex_term_cb_t __xbt_ex_terminate;
289 extern void __xbt_ex_terminate_default(xbt_ex_t *e);
290
291 /** @brief Introduce a block where exception may be dealed with 
292  *  @hideinitializer
293  */
294 #define TRY \
295     { \
296         ex_ctx_t *__xbt_ex_ctx_ptr = __xbt_ex_ctx(); \
297         int __ex_cleanup = 0; \
298         __ex_mctx_t *__ex_mctx_en; \
299         __ex_mctx_t __ex_mctx_me; \
300         __ex_mctx_en = __xbt_ex_ctx_ptr->ctx_mctx; \
301         __xbt_ex_ctx_ptr->ctx_mctx = &__ex_mctx_me; \
302         if (__ex_mctx_save(&__ex_mctx_me)) { \
303             if (1)
304
305 /** @brief optional(!) block for cleanup 
306  *  @hideinitializer
307  */
308 #define CLEANUP \
309             else { \
310             } \
311             __xbt_ex_ctx_ptr->ctx_caught = 0; \
312         } else { \
313             __ex_mctx_restored(&__ex_mctx_me); \
314             __xbt_ex_ctx_ptr->ctx_caught = 1; \
315         } \
316         __xbt_ex_ctx_ptr->ctx_mctx = __ex_mctx_en; \
317         __ex_cleanup = 1; \
318         if (1) { \
319             if (1)
320
321 #ifndef DOXYGEN_SKIP
322 #  ifdef __cplusplus
323 #    define XBT_EX_T_CPLUSPLUSCAST (xbt_ex_t&)
324 #  else
325 #    define XBT_EX_T_CPLUSPLUSCAST 
326 #  endif
327 #endif
328
329 /** @brief the block for catching (ie, deal with) an exception 
330  *  @hideinitializer
331  */
332 #define CATCH(e) \
333             else { \
334             } \
335             if (!(__ex_cleanup)) \
336                 __xbt_ex_ctx_ptr->ctx_caught = 0; \
337         } else { \
338             if (!(__ex_cleanup)) { \
339                 __ex_mctx_restored(&__ex_mctx_me); \
340                 __xbt_ex_ctx_ptr->ctx_caught = 1; \
341             } \
342         } \
343         __xbt_ex_ctx_ptr->ctx_mctx = __ex_mctx_en; \
344     } \
345     if (   !(__xbt_ex_ctx()->ctx_caught) \
346         || ((e) = XBT_EX_T_CPLUSPLUSCAST __xbt_ex_ctx()->ctx_ex, 0)) { \
347     } \
348     else
349
350 /** @brief Helper macro for THROWS0-6
351  *  @hideinitializer
352  *
353  *  @param c: category code (integer)
354  *  @param v: value (integer)
355  *  @param m: message text
356  *
357  * If called from within a TRY/CATCH construct, this exception 
358  * is copied into the CATCH relevant variable program control flow 
359  * is derouted to the CATCH (after the optional sg_cleanup). 
360  *
361  * If no TRY/CATCH construct embeeds this call, the program calls
362  * abort(3). 
363  *
364  * The THROW can be performed everywhere, including inside TRY, 
365  * CLEANUP and CATCH blocks.
366  */
367
368 #define _THROW(c,v,m) \
369   do { /* change this sequence into one block */                               \
370      /* build the exception */ \
371      __xbt_ex_ctx()->ctx_ex.msg      = (m); \
372      __xbt_ex_ctx()->ctx_ex.category = (c); \
373      __xbt_ex_ctx()->ctx_ex.value    = (v);  \
374      __xbt_ex_ctx()->ctx_ex.host     = (char*)NULL;                            \
375      __xbt_ex_ctx()->ctx_ex.procname = strdup(xbt_procname());                 \
376      __xbt_ex_ctx()->ctx_ex.file     = (char*)__FILE__;                        \
377      __xbt_ex_ctx()->ctx_ex.line     = __LINE__;                               \
378      __xbt_ex_ctx()->ctx_ex.func     = (char*)_XBT_FUNCTION;                   \
379      __xbt_ex_ctx()->ctx_ex.used     = backtrace((void**)__xbt_ex_ctx()->ctx_ex.bt,10);\
380      /* deal with the exception */                                             \
381      if (__xbt_ex_ctx()->ctx_mctx == NULL)                                     \
382        __xbt_ex_terminate((xbt_ex_t *)&(__xbt_ex_ctx()->ctx_ex)); /* not catched */\
383      else                                                                      \
384        __ex_mctx_restore(__xbt_ex_ctx()->ctx_mctx); /* catched somewhere */    \
385      abort();/* nope, stupid GCC, we won't survive a THROW (this won't be reached) */ \
386   } while (0)
387
388 /** @brief Builds and throws an exception with a string taking no arguments
389     @hideinitializer */
390 #define THROW0(c,v,m)                   _THROW(c,v,(m?bprintf(m):NULL))
391 /** @brief Builds and throws an exception with a string taking one argument
392     @hideinitializer */
393 #define THROW1(c,v,m,a1)                _THROW(c,v,bprintf(m,a1))
394 /** @brief Builds and throws an exception with a string taking two arguments
395     @hideinitializer */
396 #define THROW2(c,v,m,a1,a2)             _THROW(c,v,bprintf(m,a1,a2))
397 /** @brief Builds and throws an exception with a string taking three arguments
398     @hideinitializer */
399 #define THROW3(c,v,m,a1,a2,a3)          _THROW(c,v,bprintf(m,a1,a2,a3))
400 /** @brief Builds and throws an exception with a string taking four arguments
401     @hideinitializer */
402 #define THROW4(c,v,m,a1,a2,a3,a4)       _THROW(c,v,bprintf(m,a1,a2,a3,a4))
403 /** @brief Builds and throws an exception with a string taking five arguments
404     @hideinitializer */
405 #define THROW5(c,v,m,a1,a2,a3,a4,a5)    _THROW(c,v,bprintf(m,a1,a2,a3,a4,a5))
406 /** @brief Builds and throws an exception with a string taking six arguments
407     @hideinitializer */
408 #define THROW6(c,v,m,a1,a2,a3,a4,a5,a6) _THROW(c,v,bprintf(m,a1,a2,a3,a4,a5,a6))
409
410 #define THROW_IMPOSSIBLE     THROW0(unknown_error,0,"The Impossible Did Happen (yet again)")
411 #define DIE_IMPOSSIBLE       xbt_assert0(0,"The Impossible Did Happen (yet again)")
412 #define THROW_UNIMPLEMENTED  THROW1(unknown_error,0,"Function %s unimplemented",__FUNCTION__)
413
414 /** @brief re-throwing of an already caught exception (ie, pass it to the upper catch block) 
415  *  @hideinitializer
416  */
417 #define RETHROW \
418   do { \
419    if (__xbt_ex_ctx()->ctx_mctx == NULL) \
420      __xbt_ex_terminate((xbt_ex_t *)&(__xbt_ex_ctx()->ctx_ex)); \
421    else \
422      __ex_mctx_restore(__xbt_ex_ctx()->ctx_mctx); \
423    abort();\
424   } while(0)
425
426
427 #ifndef DOXYGEN_SKIP
428 #define _XBT_PRE_RETHROW \
429   do {                                                               \
430     char *_xbt_ex_internal_msg = __xbt_ex_ctx()->ctx_ex.msg;         \
431     __xbt_ex_ctx()->ctx_ex.msg = bprintf(
432 #define _XBT_POST_RETHROW \
433  _xbt_ex_internal_msg); \
434     free(_xbt_ex_internal_msg);                                      \
435     RETHROW;                                                         \
436   } while (0)
437 #endif
438
439 /** @brief like THROW0, but adding some details to the message of an existing exception
440  *  @hideinitializer
441  */
442 #define RETHROW0(msg)           _XBT_PRE_RETHROW msg,          _XBT_POST_RETHROW
443 /** @brief like THROW1, but adding some details to the message of an existing exception
444  *  @hideinitializer
445  */
446 #define RETHROW1(msg,a)         _XBT_PRE_RETHROW msg,a,        _XBT_POST_RETHROW
447 /** @brief like THROW2, but adding some details to the message of an existing exception
448  *  @hideinitializer
449  */
450 #define RETHROW2(msg,a,b)       _XBT_PRE_RETHROW msg,a,b,      _XBT_POST_RETHROW
451 /** @brief like THROW3, but adding some details to the message of an existing exception
452  *  @hideinitializer
453  */
454 #define RETHROW3(msg,a,b,c)     _XBT_PRE_RETHROW msg,a,b,c,    _XBT_POST_RETHROW
455 /** @brief like THROW4, but adding some details to the message of an existing exception
456  *  @hideinitializer
457  */
458 #define RETHROW4(msg,a,b,c,d)   _XBT_PRE_RETHROW msg,a,b,c,    _XBT_POST_RETHROW
459 /** @brief like THROW5, but adding some details to the message of an existing exception
460  *  @hideinitializer
461  */
462 #define RETHROW5(msg,a,b,c,d,e) _XBT_PRE_RETHROW msg,a,b,c,d,e _XBT_POST_RETHROW
463
464 /** @brief Exception destructor */
465 void xbt_ex_free(xbt_ex_t e);
466
467 void xbt_ex_display(xbt_ex_t *e);
468
469 /** @} */
470 #endif /* __XBT_EX_H__ */
471