Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'models_type_rework_part2_try2' into 'master'
[simgrid.git] / include / xbt / ex.h
1 /* Copyright (c) 2005-2021. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef XBT_EX_H
7 #define XBT_EX_H
8
9 #include <stdlib.h>
10
11 #include <xbt/base.h>
12 #include <xbt/misc.h>
13 #include <xbt/sysdep.h>
14 #include <xbt/virtu.h>
15
16 /** @addtogroup XBT_ex_c
17  *  @brief Exceptions support (C)
18  *
19  *  Those functions are used to throw C++ exceptions from C code. This feature
20  *  should probably be removed in the future because C and exception do not
21  *  exactly play nicely together.
22  */
23
24 SG_BEGIN_DECL
25
26 /** Helper function used to throw exceptions in C */
27 XBT_ATTRIB_NORETURN XBT_PUBLIC void _xbt_throw(char* message, const char* file, int line, const char* func);
28
29 /** Builds and throws an exception with a printf-like formatted message
30  *  @ingroup XBT_ex_c
31  *  @hideinitializer
32  */
33 #define THROW(...) _xbt_throw(bprintf(__VA_ARGS__), __FILE__, __LINE__, __func__)
34
35 XBT_ATTRIB_NORETURN void xbt_throw_impossible(const char* file, int line, const char* func);
36 /** Throw an exception because something impossible happened
37  *  @ingroup XBT_ex_c
38  */
39 #define THROW_IMPOSSIBLE xbt_throw_impossible(__FILE__, __LINE__, __func__)
40
41 /** Throw an exception because something unimplemented stuff has been attempted
42  *  @ingroup XBT_ex_c
43  */
44 XBT_ATTRIB_NORETURN XBT_PUBLIC void xbt_throw_unimplemented(const char* file, int line, const char* func);
45 #define THROW_UNIMPLEMENTED xbt_throw_unimplemented(__FILE__, __LINE__, __func__)
46
47 /** Die because something impossible happened
48  *  @ingroup XBT_ex_c
49  */
50 #define DIE_IMPOSSIBLE xbt_die("The Impossible Did Happen (yet again)")
51
52 SG_END_DECL
53
54 /** @} */
55 #endif /* XBT_EX_H */