Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
s/_XBT_GNUC/XBT_ATTRIB/ as we will port them to MSVC
[simgrid.git] / include / xbt / sysdep.h
1 /*  xbt/sysdep.h -- all system dependency                                   */
2 /*  no system header should be loaded out of this file so that we have only */
3 /*  one file to check when porting to another OS                            */
4
5 /* Copyright (c) 2004-2015. The SimGrid Team.
6  * All rights reserved.                                                     */
7
8 /* This program is free software; you can redistribute it and/or modify it
9  * under the terms of the license (GNU LGPL) which comes with this package. */
10
11 #ifndef _XBT_SYSDEP_H
12 #define _XBT_SYSDEP_H
13
14 #ifdef __cplusplus
15 #include <type_traits>
16 #endif
17
18 #include "xbt/log.h"
19 #include "xbt/misc.h"
20 #include "xbt/asserts.h"
21
22 #include "simgrid_config.h"
23
24 SG_BEGIN_DECL()
25
26 #include <string.h>
27 #include <stdlib.h>
28 #include <stdarg.h>             /* va_list */
29
30 /* They live in asserts.h, but need to be declared before this module.
31    double declaration to cut dependency cycle */
32 /**
33  * @addtogroup XBT_error
34  *
35  * @{
36  */
37 /** @brief Kill the program in silence */
38 XBT_PUBLIC(void) xbt_abort(void) XBT_ATTRIB_NORETURN;
39
40 /**
41  * @brief Kill the program with an error message
42  * \param ... a format string and its arguments
43  *
44  * Things are so messed up that the only thing to do now, is to stop the
45  * program.
46  *
47  * The message is handled by a CRITICAL logging request, and may consist of a
48  * format string with arguments.
49  */
50 #define xbt_die(...)                            \
51   do {                                          \
52     XBT_CCRITICAL(xbt, __VA_ARGS__);            \
53     xbt_abort();                                \
54   } while (0)
55 /** @} */
56
57 #ifdef XBT_LOG_LOCALLY_DEFINE_XBT_CHANNEL
58 XBT_LOG_NEW_CATEGORY(xbt, "All XBT categories (simgrid toolbox)");
59 #else
60 XBT_LOG_EXTERNAL_CATEGORY(xbt);
61 #endif
62
63 /* these ones live in str.h, but redeclare them here so that we do
64    not need to load the whole str.h and its heavy dependencies */
65 #ifndef __USE_GNU               /* do not redeclare existing headers */
66 XBT_PUBLIC(int) asprintf(char **ptr, const char *fmt,   /*args */
67                          ...) XBT_ATTRIB_PRINTF(2, 3);
68 XBT_PUBLIC(int) vasprintf(char **ptr, const char *fmt, va_list ap);
69 #endif
70 XBT_PUBLIC(char *) bprintf(const char *fmt, ...) XBT_ATTRIB_PRINTF(1, 2);
71
72 /** @addtogroup XBT_syscall
73  *  @brief Malloc and associated functions, killing the program on error (with \ref XBT_ex)
74  *
75  *  @{
76  */
77
78 #if defined(_MSC_VER) && !defined(strdup)
79 #  define strdup _strdup /* POSIX name is not ANSI complient blabla */
80 #endif
81
82 /** @brief Like strdup, but xbt_die() on error */
83 static XBT_ALWAYS_INLINE char *xbt_strdup(const char *s) {
84   char *res = NULL;
85   if (s) {
86     res = strdup(s);
87     if (!res)
88       xbt_die("memory allocation error (strdup returned NULL)");
89   }
90   return res;
91 }
92
93 XBT_PUBLIC(void) xbt_backtrace_display_current(void);
94
95 /** @brief Like malloc, but xbt_die() on error
96     @hideinitializer */
97 static XBT_ALWAYS_INLINE void *xbt_malloc(size_t n) {
98   void *res;
99 /*  if (n==0) {
100      xbt_backtrace_display_current();
101      xbt_die("malloc(0) is not portable");
102   }*/
103
104   res = malloc(n);
105   if (!res)
106     xbt_die("Memory allocation of %lu bytes failed", (unsigned long)n);
107   return res;
108 }
109
110 /** @brief like malloc, but xbt_die() on error and memset data to 0
111     @hideinitializer */
112 static XBT_ALWAYS_INLINE void *xbt_malloc0(size_t n) {
113   void *res;
114   //if (n==0) xbt_die("calloc(0) is not portable");
115   res = calloc(n, 1);
116   if (!res)
117     xbt_die("Memory callocation of %lu bytes failed", (unsigned long)n);
118   return res;
119 }
120
121 /** @brief like realloc, but xbt_die() on error
122     @hideinitializer */
123 static XBT_ALWAYS_INLINE void *xbt_realloc(void *p, size_t s) {
124   void *res = NULL;
125   //if (s==0) xbt_die("realloc(0) is not portable");
126   if (s) {
127     if (p) {
128       res = realloc(p, s);
129       if (!res)
130         xbt_die("memory (re)allocation of %lu bytes failed", (unsigned long)s);
131     } else {
132       res = xbt_malloc(s);
133     }
134   } else {
135     free(p);
136   }
137   return res;
138 }
139
140 /** @brief like free
141     @hideinitializer */
142 #define xbt_free(p) free(p) /*nothing specific to do here. A poor valgrind replacement? */
143
144 /** @brief like free, but you can be sure that it is a function  */
145 XBT_PUBLIC(void) xbt_free_f(void *p);
146 /** @brief should be given a pointer to pointer, and frees the second one */
147 XBT_PUBLIC(void) xbt_free_ref(void *d);
148
149 SG_END_DECL()
150
151 /** @brief like calloc, but xbt_die() on error and don't memset to 0
152     @hideinitializer */
153 #ifndef __cplusplus
154
155 #define xbt_new(type, count)  ((type*)xbt_malloc (sizeof (type) * (count)))
156 /** @brief like calloc, but xbt_die() on error
157     @hideinitializer */
158 #define xbt_new0(type, count) ((type*)xbt_malloc0 (sizeof (type) * (count)))
159
160 #else
161
162 /** C++ wrapper for xtb_new
163  *
164  *  This ensures that we do not xbt_new things that need a constructor.
165  */
166 template<typename T> inline
167 T* xbt_new_(size_t count)
168 {
169   static_assert(std::is_trivial<T>(),
170     "Cannot xbt_new this type");
171   return (T*) xbt_malloc(sizeof(T) * count);
172 }
173
174 template<typename T> inline
175 T* xbt_new0_(size_t count)
176 {
177   static_assert(std::is_trivial<T>(),
178     "Cannot xbt_new0 this type");
179   return (T*) xbt_malloc0(sizeof(T) * count);
180 }
181
182 #define xbt_new(type, count)  ::xbt_new_<type>(count)
183 #define xbt_new0(type, count) ::xbt_new0_<type>(count)
184
185 #endif
186
187 /** @} */
188
189 #endif                          /* _XBT_SYSDEP_H */