Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[Doc] Updated deployment description file.
[simgrid.git] / include / xbt / base.h
1 /* xbt.h - Public interface to the xbt (simgrid's toolbox)                     */
2
3 /* Copyright (c) 2004-2015. The SimGrid Team.
4  * 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_BASE_H
10 #define XBT_BASE_H
11
12 #include "simgrid_config.h"
13
14 /* Define _GNU_SOURCE for getline, isfinite, etc. */
15 #ifndef _GNU_SOURCE
16         #define _GNU_SOURCE
17 #endif
18
19 /* Attributes are only in recent versions of GCC */
20 #if defined(__GNUC__) && (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ > 4))
21
22 /* On MinGW, stdio.h defines __MINGW_PRINTF_FORMAT and __MINGW_SCANF_FORMAT
23    which are the suitable format style (either gnu_printf or ms_printf)
24    depending on which version is available (__USE_MINGW_ANSI_STDIO): */
25 #ifdef __MINGW32__
26   #include <stdio.h>
27 #endif
28
29 #if defined(__MINGW32__) && defined(__MINGW_PRINTF_FORMAT)
30   # define _XBT_GNUC_PRINTF( format_idx, arg_idx )    \
31      __attribute__((__format__ (__MINGW_PRINTF_FORMAT, format_idx, arg_idx)))
32 #else
33   # define _XBT_GNUC_PRINTF( format_idx, arg_idx )    \
34      __attribute__((__format__ (__printf__, format_idx, arg_idx)))
35 #endif
36
37 #if defined(__MINGW32__) && defined(__MINGW_SCANF_FORMAT)
38   # define _XBT_GNUC_SCANF( format_idx, arg_idx )     \
39          __attribute__((__MINGW_SCANF_FORMAT (__scanf__, format_idx, arg_idx)))
40 #else
41   # define _XBT_GNUC_SCANF( format_idx, arg_idx )     \
42          __attribute__((__format__ (__scanf__, format_idx, arg_idx)))
43 #endif
44
45 # define _XBT_GNUC_NORETURN __attribute__((__noreturn__))
46 # define _XBT_GNUC_UNUSED  __attribute__((__unused__))
47
48 /* Constructor priorities exist since gcc 4.3.  Apparently, they are however not
49  * supported on Macs. */
50 # if (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)) && !defined(__APPLE__)
51 #  define _XBT_GNUC_CONSTRUCTOR(prio) __attribute__((__constructor__ (prio)))
52 #  define _XBT_GNUC_DESTRUCTOR(prio) __attribute__((__destructor__ (prio)))
53 # else
54 #  define _XBT_GNUC_CONSTRUCTOR(prio) __attribute__((__constructor__))
55 #  define _XBT_GNUC_DESTRUCTOR(prio) __attribute__((__destructor__))
56 # endif
57 # undef _XBT_NEED_INIT_PRAGMA
58
59 #else                           /* !__GNUC__ */
60 # define _XBT_GNUC_PRINTF( format_idx, arg_idx )
61 # define _XBT_GNUC_SCANF( format_idx, arg_idx )
62 # define _XBT_GNUC_NORETURN
63 # define _XBT_GNUC_UNUSED
64 # define _XBT_GNUC_CONSTRUCTOR(prio)
65 # define _XBT_GNUC_DESTRUCTOR(prio)
66 # define  _XBT_NEED_INIT_PRAGMA 1
67
68 #endif                          /* !__GNUC__ */
69
70 /* inline and __FUNCTION__ are only in GCC when -ansi is off */
71
72 #if defined(__GNUC__) && ! defined(__STRICT_ANSI__)
73 # define _XBT_FUNCTION __FUNCTION__
74 #elif (defined(__STDC__) && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L)
75 # define _XBT_FUNCTION __func__ /* ISO-C99 compliant */
76 #else
77 # define _XBT_FUNCTION "function"
78 #endif
79
80 #ifdef DOXYGEN
81 #  define XBT_INLINE
82 #else
83 #  ifndef __cplusplus
84 #    if defined(__GNUC__) && ! defined(__STRICT_ANSI__)
85 #        define XBT_INLINE inline
86 #    elif (defined(__STDC__) && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L)
87 #        define XBT_INLINE inline
88 #    else
89 #        define XBT_INLINE
90 #    endif
91 #  else
92 #     if defined (__VISUALC__)
93 #       define XBT_INLINE __inline
94 #     else
95 #       define XBT_INLINE  inline
96 #     endif
97 #  endif /* __cplusplus */
98 #endif
99
100 /* improvable on gcc (by evaluating arguments only once), but wouldn't be portable */
101 #ifdef MIN
102 # undef MIN
103 #endif
104 #define MIN(a,b) ((a)<(b)?(a):(b))
105
106 #ifdef MAX
107 # undef MAX
108 #endif
109 #define MAX(a,b) ((a)>(b)?(a):(b))
110
111 /*
112  * Expands to `one' if there is only one argument for the variadic part.
113  * Otherwise, expands to `more'.
114  * Works with up to 63 arguments, which is the maximum mandated by the C99
115  * standard.
116  */
117 #define _XBT_IF_ONE_ARG(one, more, ...)                                 \
118     _XBT_IF_ONE_ARG_(__VA_ARGS__,                                       \
119                      more, more, more, more, more, more, more, more,    \
120                      more, more, more, more, more, more, more, more,    \
121                      more, more, more, more, more, more, more, more,    \
122                      more, more, more, more, more, more, more, more,    \
123                      more, more, more, more, more, more, more, more,    \
124                      more, more, more, more, more, more, more, more,    \
125                      more, more, more, more, more, more, more, more,    \
126                      more, more, more, more, more, more, more, one)
127 #define _XBT_IF_ONE_ARG_(a64, a63, a62, a61, a60, a59, a58, a57,        \
128                          a56, a55, a54, a53, a52, a51, a50, a49,        \
129                          a48, a47, a46, a45, a44, a43, a42, a41,        \
130                          a40, a39, a38, a37, a36, a35, a34, a33,        \
131                          a32, a31, a30, a29, a28, a27, a26, a25,        \
132                          a24, a23, a22, a21, a20, a19, a18, a17,        \
133                          a16, a15, a14, a13, a12, a11, a10, a9,         \
134                          a8, a7, a6, a5, a4, a3, a2, a1, N, ...) N
135
136 /*
137  * Function calling convention (not used for now)
138  */
139
140 #ifdef _XBT_WIN32
141 #  ifndef _XBT_CALL
142 #    define _XBT_CALL __cdecl
143 #   endif
144 #else
145 #  define _XBT_CALL
146 #endif
147
148 /* Handle import/export stuff
149  *
150  * Rational of XBT_PUBLIC:
151  *   * This is for library symbols visible from the application-land.
152  *     Basically, any symbols defined in the include/directory must be
153  *     like this (plus some other globals).
154  *
155  *     UNIX coders should just think of it as a special way to say "extern".
156  *
157  *   * If you build the DLL, define the DLL_EXPORT symbol so that all symbols
158  *     actually get exported by this file.
159
160  *   * If you do a static windows compilation, define DLL_STATIC, both when
161  *     compiling the application files and when compiling the library.
162  *
163  *   * If you link your application against the DLL or if you do a UNIX build,
164  *     don't do anything special. This file will do the right thing for you
165  *     by default.
166  *
167  *
168  * Rational of XBT_EXPORT_NO_IMPORT: (windows-only)
169  *   * Symbols which must be exported in the DLL, but not imported from it.
170  *
171  *   * This is obviously useful for initialized globals (which cannot be
172  *     extern or similar).
173  *   * This is also used in the log mechanism where a macro creates the
174  *     variable automatically. When the macro is called from within SimGrid,
175  *     the symbol must be exported, but when called  from within the client
176  *     code, it must not try to retrieve the symbol from the DLL since it's
177  *      not in there.
178  *
179  * Rational of XBT_IMPORT_NO_EXPORT: (windows-only)
180  *   * Symbols which must be imported from the DLL, but not explicitly
181  *     exported from it.
182  *
183  *   * The root log category is already exported, but not imported explicitly
184  *     when creating a subcategory since we cannot import the parent category
185  *     to deal with the fact that the parent may be in application space, not
186  *     DLL space.
187  */
188
189 /* Build the DLL */
190 #if defined(DLL_EXPORT)
191 #  define XBT_PUBLIC(type)            __declspec(dllexport) type
192 #  define XBT_EXPORT_NO_IMPORT(type)  __declspec(dllexport) type
193 #  define XBT_IMPORT_NO_EXPORT(type)  type
194 #  define XBT_PUBLIC_DATA(type)       extern __declspec(dllexport) type
195 #  define XBT_PUBLIC_CLASS            class __declspec(dllexport)
196
197
198 /* Pack everything up statically */
199 #elif defined(DLL_STATIC)
200 #  define XBT_PUBLIC(type)            type
201 #  define XBT_EXPORT_NO_IMPORT(type)  type
202 #  define XBT_IMPORT_NO_EXPORT(type)  type
203 #  define XBT_PUBLIC_DATA(type)       extern type
204 #  define XBT_PUBLIC_CLASS            class
205
206
207 /* Link against the DLL */
208 #elif (defined(_XBT_WIN32) && !defined(DLL_EXPORT) && !defined(DLL_STATIC))
209 #  define XBT_PUBLIC(type)            __declspec(dllimport) type
210 #  define XBT_EXPORT_NO_IMPORT(type)  type
211 #  define XBT_IMPORT_NO_EXPORT(type)  __declspec(dllimport) type
212 #  define XBT_PUBLIC_DATA(type)       extern __declspec(dllimport) type
213 #  define XBT_PUBLIC_CLASS            class __declspec(dllimport)
214
215
216 /* UNIX build */
217 #else
218 #  define XBT_PUBLIC(type)            type
219 #  define XBT_EXPORT_NO_IMPORT(type)  type
220 #  define XBT_IMPORT_NO_EXPORT(type)  type
221 #  define XBT_PUBLIC_DATA(type)       extern type
222 #  define XBT_PUBLIC_CLASS            class
223
224 #endif
225
226 #ifdef _XBT_WIN32
227 #define XBT_INTERNAL
228 #else
229 #define XBT_INTERNAL __attribute__((visibility ("hidden")))
230 #endif
231
232 #if !defined (max) && !defined(__cplusplus)
233 #  define max(a,b)  (((a) > (b)) ? (a) : (b))
234 #endif
235 #if !defined (min) && !defined(__cplusplus)
236 #  define min(a,b)  (((a) < (b)) ? (a) : (b))
237 #endif
238
239 #define TRUE  1
240 #define FALSE 0
241
242 /*! C++ users need love */
243 #ifndef SG_BEGIN_DECL
244 # ifdef __cplusplus
245 #  define SG_BEGIN_DECL() extern "C" {
246 # else
247 #  define SG_BEGIN_DECL()
248 # endif
249 #endif
250
251 #ifndef SG_END_DECL
252 # ifdef __cplusplus
253 #  define SG_END_DECL() }
254 # else
255 #  define SG_END_DECL()
256 # endif
257 #endif
258 /* End of cruft for C++ */
259
260 #endif