Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Kill old context implementations on windows. We now use xbt_threads for this on this...
[simgrid.git] / src / portable.h
1 /* $Id$ */
2
3 /* portable -- header loading to write portable code                         */
4 /* loads much more stuff than sysdep.h since the latter is in public interface*/
5
6 /* Copyright (c) 2004 Martin Quinson. 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 GRAS_PORTABLE_H
12 #define GRAS_PORTABLE_H
13
14 /* 
15  * win32 or win64 (__WIN32 is defined for win32 and win64 applications, __TOS_WIN__ is defined by xlC). 
16 */ 
17 #ifdef _WIN32
18 # include "win32/config.h"
19 # include <windows.h>
20 #else
21 #  include "gras_config.h"
22 #endif
23
24 #include <stdarg.h>
25
26 #ifdef HAVE_ERRNO_H
27 #  include <errno.h>
28 #endif
29
30 #ifdef HAVE_UNISTD_H
31 #  include <unistd.h>
32 #endif
33
34 /****
35  **** Networking 
36  ****/
37
38
39 #ifdef HAVE_SYS_SOCKET_H
40 #  include <sys/socket.h>
41 #  include <netinet/in.h>   /* sometimes required for #include <arpa/inet.h> */
42 #  include <netinet/tcp.h>  /* TCP_NODELAY */
43 #  include <netdb.h>        /* getprotobyname() */
44 #  include <arpa/inet.h>    /* inet_ntoa() */
45 #  include <sys/types.h>    /* sometimes required for fd_set */
46 # endif
47
48
49 #ifndef HAVE_WINSOCK_H
50 #       define tcp_read( s, buf, len)   read( s, buf, len )
51 #       define tcp_write( s, buf, len)  write( s, buf, len )
52 #       define sock_errno        errno
53 #       define sock_errstr(err)  strerror(err)
54
55 #       ifdef SHUT_RDWR
56 #               define tcp_close( s )   (shutdown( s, SHUT_RDWR ), close( s ))
57 #       else
58 #               define tcp_close( s )   close( s )
59 #       endif
60 #endif /* windows or unix ? */
61
62 /****
63  **** File handling
64  ****/
65
66 #include <fcntl.h>
67
68 #ifdef HAVE_SYS_STAT_H
69 #  include <sys/stat.h>
70 #endif
71
72 #ifndef O_BINARY
73 #  define O_BINARY 0
74 #endif
75
76 #ifdef HAVE_GETLINE
77 #  define _GNU_SOURCE
78 #  include <stdio.h>
79 #endif
80
81 /****
82  **** Time handling
83  ****/
84
85 #ifdef TIME_WITH_SYS_TIME
86 # include <sys/time.h>
87 # include <time.h>
88 #else
89 # if HAVE_SYS_TIME_H
90 #  include <sys/time.h>
91 # else
92 #  include <time.h>
93 # endif
94 #endif
95
96
97 /****
98  **** Contexts
99  ****/
100
101 #ifdef USE_UCONTEXT
102 # include <ucontext.h>
103 #endif
104
105 #ifdef _WIN32
106 #  include "xbt/context_win32.h" /* Manual reimplementation for prehistoric platforms */
107 #endif
108
109 /****
110  **** Signals
111  ****/
112 #ifdef HAVE_SIGNAL_H
113 # include <signal.h>
114 #endif
115
116 /****
117  **** string handling (parts from http://www.ijs.si/software/snprintf/)
118  ****/
119
120 /* prototype of C99 functions */
121 #ifdef HAVE_SNPRINTF
122 #include <stdio.h>
123 #else
124 #  if (defined(_MSC_VER) && defined(DLL_EXPORT))
125     __declspec(dllexport) int snprintf(char *, size_t, const char *, /*args*/ ...);
126     __declspec(dllexport)  int vsnprintf(char *, size_t, const char *, va_list);
127 #  elif (defined(_MSC_VER) && !defined(DLL_EXPORT) && !defined(DLL_STATIC) )
128     __declspec(dllimport) int snprintf(char *, size_t, const char *, /*args*/ ...);
129     __declspec(dllimport)  int vsnprintf(char *, size_t, const char *, va_list);
130 #else
131 extern int snprintf(char *, size_t, const char *, /*args*/ ...);
132 extern int vsnprintf(char *, size_t, const char *, va_list);
133 #endif
134
135 #endif
136
137 /* use internal functions when OS provided ones are borken */
138 #if defined(HAVE_SNPRINTF) && defined(PREFER_PORTABLE_SNPRINTF)
139 extern int portable_snprintf(char *str, size_t str_m, const char *fmt, /*args*/ ...);
140 extern int portable_vsnprintf(char *str, size_t str_m, const char *fmt, va_list ap);
141 #define snprintf  portable_snprintf
142 #define vsnprintf portable_vsnprintf
143 #endif
144
145 /* prototype of GNU functions  */
146 extern int asprintf  (char **ptr, const char *fmt, /*args*/ ...);
147 extern int vasprintf (char **ptr, const char *fmt, va_list ap);
148 extern int asnprintf (char **ptr, size_t str_m, const char *fmt, /*args*/ ...);
149 extern int vasnprintf(char **ptr, size_t str_m, const char *fmt, va_list ap);
150
151 /*
152  * That's needed to protect solaris's printf from ever seing NULL associated to a %s format
153  * (without adding an extra check on working platforms :)
154  */
155
156 #ifdef PRINTF_NULL_WORKING
157 #  define PRINTF_STR(a) (a)
158 #else
159 #  define PRINTF_STR(a) (a)?:"(null)"
160 #endif
161
162 /*
163  * What we need to extract the backtrace in exception handling code
164  */
165 #ifdef HAVE_EXECINFO_H
166 #  include <execinfo.h>
167 #endif
168
169 /****
170  **** Some debugging functions. Can't we find a better place for this??
171  ****/
172 void hexa_print(const char*name, unsigned char *data, int size);
173 const char *hexa_str(unsigned char *data, int size, int downside);
174
175 #endif /* GRAS_PORTABLE_H */