Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
asprintf is never used: bprintf is so swag
[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 #include "xbt/log.h"
15 #include "xbt/misc.h"
16 #include "xbt/asserts.h"
17
18 #include "simgrid_config.h"
19
20 SG_BEGIN_DECL()
21
22 #include <string.h>
23 #include <stdlib.h>
24 #include <stdarg.h>             /* va_list */
25
26 /* They live in asserts.h, but need to be declared before this module.
27    double declaration to cut dependency cycle */
28 /**
29  * @addtogroup XBT_error
30  *
31  * @{
32  */
33 /** @brief Kill the program in silence */
34 XBT_PUBLIC(void) XBT_ATTRIB_NORETURN xbt_abort(void);
35
36 /**
37  * @brief Kill the program with an error message
38  * \param ... a format string and its arguments
39  *
40  * Things are so messed up that the only thing to do now, is to stop the
41  * program.
42  *
43  * The message is handled by a CRITICAL logging request, and may consist of a
44  * format string with arguments.
45  */
46 #define xbt_die(...)                            \
47   do {                                          \
48     XBT_CCRITICAL(xbt, __VA_ARGS__);            \
49     xbt_abort();                                \
50   } while (0)
51 /** @} */
52
53 #ifdef XBT_LOG_LOCALLY_DEFINE_XBT_CHANNEL
54 XBT_LOG_NEW_CATEGORY(xbt, "All XBT categories (simgrid toolbox)");
55 #else
56 XBT_LOG_EXTERNAL_CATEGORY(xbt);
57 #endif
58
59 /** @addtogroup XBT_syscall
60  *  @brief Malloc and associated functions, killing the program on error (with \ref XBT_ex)
61  *
62  *  @{
63  */
64
65 #if defined(_MSC_VER) && !defined(strdup)
66 #  define strdup _strdup /* POSIX name is not ANSI complient blabla */
67 #endif
68
69 /** @brief Like strdup, but xbt_die() on error */
70 static XBT_ALWAYS_INLINE char *xbt_strdup(const char *s) {
71   char *res = NULL;
72   if (s) {
73     res = strdup(s);
74     if (!res)
75       xbt_die("memory allocation error (strdup returned NULL)");
76   }
77   return res;
78 }
79
80 XBT_PUBLIC(void) xbt_backtrace_display_current(void);
81
82 /** @brief Like malloc, but xbt_die() on error
83     @hideinitializer */
84 static XBT_ALWAYS_INLINE void *xbt_malloc(size_t n) {
85   void *res;
86 /*  if (n==0) {
87      xbt_backtrace_display_current();
88      xbt_die("malloc(0) is not portable");
89   }*/
90
91   res = malloc(n);
92   if (!res)
93     xbt_die("Memory allocation of %lu bytes failed", (unsigned long)n);
94   return res;
95 }
96
97 /** @brief like malloc, but xbt_die() on error and memset data to 0
98     @hideinitializer */
99 static XBT_ALWAYS_INLINE void *xbt_malloc0(size_t n) {
100   void *res;
101   //if (n==0) xbt_die("calloc(0) is not portable");
102   res = calloc(n, 1);
103   if (!res)
104     xbt_die("Memory callocation of %lu bytes failed", (unsigned long)n);
105   return res;
106 }
107
108 /** @brief like realloc, but xbt_die() on error
109     @hideinitializer */
110 static XBT_ALWAYS_INLINE void *xbt_realloc(void *p, size_t s) {
111   void *res = NULL;
112   //if (s==0) xbt_die("realloc(0) is not portable");
113   if (s) {
114     if (p) {
115       res = realloc(p, s);
116       if (!res)
117         xbt_die("memory (re)allocation of %lu bytes failed", (unsigned long)s);
118     } else {
119       res = xbt_malloc(s);
120     }
121   } else {
122     free(p);
123   }
124   return res;
125 }
126
127 /** @brief like free
128     @hideinitializer */
129 #define xbt_free(p) free(p) /*nothing specific to do here. A poor valgrind replacement? */
130
131 /** @brief like free, but you can be sure that it is a function  */
132 XBT_PUBLIC(void) xbt_free_f(void *p);
133 /** @brief should be given a pointer to pointer, and frees the second one */
134 XBT_PUBLIC(void) xbt_free_ref(void *d);
135
136 SG_END_DECL()
137
138 #define xbt_new(type, count)  ((type*)xbt_malloc (sizeof (type) * (count)))
139 /** @brief like calloc, but xbt_die() on error
140     @hideinitializer */
141 #define xbt_new0(type, count) ((type*)xbt_malloc0 (sizeof (type) * (count)))
142
143 /** @} */
144
145 #endif                          /* _XBT_SYSDEP_H */