Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
regenerate flex generated files with a more recent flex (not mandatory, but cmake...
[simgrid.git] / include / xbt / misc.h
1 /* $Id$ */
2
3 /* xbt.h - Public interface to the xbt (gras's toolbox)                     */
4
5 /* Copyright (c) 2004 Martin Quinson.                                       */
6 /* Copyright (c) 2004 Arnaud Legrand.                                       */
7 /* All rights reserved.                                                     */
8
9 /* This program is free software; you can redistribute it and/or modify it
10  * under the terms of the license (GNU LGPL) which comes with this package. */
11
12 #ifndef XBT_MISC_H
13 #define XBT_MISC_H
14
15 /* Attributes are only in recent versions of GCC */
16 #if     __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ > 4)
17 # define _XBT_GNUC_PRINTF( format_idx, arg_idx )    \
18            __attribute__((__format__ (__printf__, format_idx, arg_idx)))
19 # define _XBT_GNUC_SCANF( format_idx, arg_idx )     \
20                __attribute__((__format__ (__scanf__, format_idx, arg_idx)))
21 # define _XBT_GNUC_FORMAT( arg_idx )                \
22                    __attribute__((__format_arg__ (arg_idx)))
23 # define _XBT_GNUC_NORETURN __attribute__((__noreturn__))
24 # define _XBT_GNUC_UNUSED  __attribute__((unused))
25
26 #else /* !__GNUC__ */
27 # define _XBT_GNUC_PRINTF( format_idx, arg_idx )
28 # define _XBT_GNUC_SCANF( format_idx, arg_idx )
29 # define _XBT_GNUC_FORMAT( arg_idx )
30 # define _XBT_GNUC_NORETURN
31 # define _XBT_GNUC_UNUSED
32
33 #endif /* !__GNUC__ */
34
35 /* inline and __FUNCTION__ are only in GCC when -ansi is off */
36
37 #if defined(__GNUC__) && ! defined(__STRICT_ANSI__)
38 # define _XBT_FUNCTION __FUNCTION__
39 #elif (defined(__STDC__) && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L)
40 # define _XBT_FUNC__ __func__   /* ISO-C99 compliant */
41 #else
42 # define _XBT_FUNCTION "function"
43 #endif
44
45 #ifndef __cplusplus
46 #    if defined(__GNUC__) && ! defined(__STRICT_ANSI__)
47 #        define XBT_INLINE inline
48 #    elif (defined(__STDC__) && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L)
49 #        define XBT_INLINE inline
50 #    elif defined(__BORLANDC__) && !defined(__STRICT_ANSI__)
51 #        define XBT_INLINE __inline
52 #    else
53 #        define XBT_INLINE
54 #    endif
55 # else
56 #    define XBT_INLINE  inline
57 #endif
58
59 /* improvable on gcc (by evaluating arguments only once), but wouldn't be portable */
60 #ifdef MIN
61 # undef MIN
62 #endif
63 #define MIN(a,b) ((a)<(b)?(a):(b))
64
65 #ifdef MAX
66 # undef MAX
67 #endif
68 #define MAX(a,b) ((a)>(b)?(a):(b))
69
70
71 /* 
72  * Function calling convention (not used for now) 
73  */
74
75 #ifdef _WIN32
76 #  ifndef _XBT_CALL
77 #    define _XBT_CALL __cdecl
78 #   endif
79 #else
80 #  define _XBT_CALL
81 #endif
82
83 /* Handle import/export stuff
84  * 
85  * Rational of XBT_PUBLIC: 
86  *   * This is for library symbols visible from the application-land.
87  *     Basically, any symbols defined in the include/directory must be 
88  *     like this (plus some other globals). 
89  *
90  *     UNIX coders should just think of it as a special way to say "extern".
91  *
92  *   * If you build the DLL, define the DLL_EXPORT symbol so that all symbols
93  *     actually get exported by this file.
94
95  *   * If you do a static windows compilation, define DLL_STATIC, both when
96  *     compiling the application files and when compiling the library.
97  *
98  *   * If you link your application against the DLL or if you do a UNIX build,
99  *     don't do anything special. This file will do the right thing for you 
100  *     by default.
101  *
102  * 
103  * Rational of XBT_EXPORT_NO_IMPORT: (windows-only cruft)
104  *   * Symbols which must be exported in the DLL, but not imported from it.
105  * 
106  *   * This is obviously useful for initialized globals (which cannot be 
107  *     extern or similar).
108  *   * This is also used in the log mecanism where a macro creates the 
109  *     variable automatically. When the macro is called from within SimGrid,
110  *     the symbol must be exported, but when called  from within the client
111  *     code, it must not try to retrieve the symbol from the DLL since it's
112  *      not in there.
113  * 
114  * Rational of XBT_IMPORT_NO_EXPORT: (windows-only cruft)
115  *   * Symbols which must be imported from the DLL, but not explicitely 
116  *     exported from it.
117  * 
118  *   * The root log category is already exported, but not imported explicitely 
119  *     when creating a subcategory since we cannot import the parent category 
120  *     to deal with the fact that the parent may be in application space, not 
121  *     DLL space.
122  */
123
124
125 /* Build the DLL */
126 #if defined(DLL_EXPORT)
127 #  define XBT_PUBLIC(type)            __declspec(dllexport) type
128 #  define XBT_EXPORT_NO_IMPORT(type)  __declspec(dllexport) type
129 #  define XBT_IMPORT_NO_EXPORT(type)  type
130 #  define XBT_PUBLIC_DATA(type)       __declspec(dllexport) type
131
132 /* Pack everything up statically */
133 #elif defined(DLL_STATIC)
134 #  define XBT_PUBLIC(type)           extern type
135 #  define XBT_EXPORT_NO_IMPORT(type)  type
136 #  define XBT_IMPORT_NO_EXPORT(type)  type
137 #  define XBT_PUBLIC_DATA(type)       extern type
138
139
140 /* Link against the DLL */
141 #elif (defined(_WIN32) && !defined(DLL_EXPORT) && !defined(DLL_STATIC))
142 #  define XBT_PUBLIC(type)              __declspec(dllimport) type
143 #  define XBT_EXPORT_NO_IMPORT(type)    type
144 #  define XBT_IMPORT_NO_EXPORT(type)    __declspec(dllimport) type
145 #  define XBT_PUBLIC_DATA(type)         __declspec(dllimport) type
146
147 /* UNIX build */
148 #else
149 #  define XBT_PUBLIC(type)            extern type
150 #  define XBT_EXPORT_NO_IMPORT(type)  type
151 #  define XBT_IMPORT_NO_EXPORT(type)  type
152 #  define XBT_PUBLIC_DATA(type)       extern type
153 #endif
154
155 #if !defined (max) && !defined(__cplusplus)
156 #  define max(a,b)      (((a) > (b)) ? (a) : (b))
157 #endif
158 #if !defined (min) && !defined(__cplusplus)
159 #  define min(a,b)      (((a) < (b)) ? (a) : (b))
160 #endif
161
162 #define TRUE  1
163 #define FALSE 0
164
165 #define XBT_MAX_CHANNEL 10      /* FIXME: killme */
166 /*! C++ users need love */
167 #ifndef SG_BEGIN_DECL
168 # ifdef __cplusplus
169 #  define SG_BEGIN_DECL() extern "C" {
170 # else
171 #  define SG_BEGIN_DECL()
172 # endif
173 #endif
174
175 #ifndef SG_END_DECL
176 # ifdef __cplusplus
177 #  define SG_END_DECL() }
178 # else
179 #  define SG_END_DECL()
180 # endif
181 #endif
182 /* End of cruft for C++ */
183
184 SG_BEGIN_DECL()
185
186 XBT_PUBLIC(const char *) xbt_procname(void);
187
188 #define XBT_BACKTRACE_SIZE 10   /* FIXME: better place? Do document */
189
190 SG_END_DECL()
191 #endif /* XBT_MISC_H */