Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
_sleep not implemented in stdlib.h on Windows
[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 /****
77  **** Time handling
78  ****/
79
80 #ifdef TIME_WITH_SYS_TIME
81 # include <sys/time.h>
82 # include <time.h>
83 #else
84 # if HAVE_SYS_TIME_H
85 #  include <sys/time.h>
86 # else
87 #  include <time.h>
88 # endif
89 #endif
90
91
92 /****
93  **** Contexts
94  ****/
95
96 #ifdef USE_UCONTEXT
97 # include <ucontext.h>
98 #endif
99
100 #ifdef _WIN32
101 #  include "xbt/context_win32.h" /* Manual reimplementation for prehistoric platforms */
102 #endif
103
104 /****
105  **** Signals
106  ****/
107 #ifdef HAVE_SIGNAL_H
108 # include <signal.h>
109 #endif
110
111 /****
112  **** string handling (parts from http://www.ijs.si/software/snprintf/)
113  ****/
114
115 /* prototype of C99 functions */
116 #ifdef HAVE_SNPRINTF
117 #include <stdio.h>
118 #else
119 extern int snprintf(char *, size_t, const char *, /*args*/ ...);
120 extern int vsnprintf(char *, size_t, const char *, va_list);
121 #endif
122
123 /* use internal functions when OS provided ones are borken */
124 #if defined(HAVE_SNPRINTF) && defined(PREFER_PORTABLE_SNPRINTF)
125 extern int portable_snprintf(char *str, size_t str_m, const char *fmt, /*args*/ ...);
126 extern int portable_vsnprintf(char *str, size_t str_m, const char *fmt, va_list ap);
127 #define snprintf  portable_snprintf
128 #define vsnprintf portable_vsnprintf
129 #endif
130
131 /* prototype of GNU functions  */
132 extern int asprintf  (char **ptr, const char *fmt, /*args*/ ...);
133 extern int vasprintf (char **ptr, const char *fmt, va_list ap);
134 extern int asnprintf (char **ptr, size_t str_m, const char *fmt, /*args*/ ...);
135 extern int vasnprintf(char **ptr, size_t str_m, const char *fmt, va_list ap);
136
137 /*
138  * That's needed to protect solaris's printf from ever seing NULL associated to a %s format
139  * (without adding an extra check on working platforms :)
140  */
141
142 #ifdef PRINTF_NULL_WORKING
143 #  define PRINTF_STR(a) (a)
144 #else
145 #  define PRINTF_STR(a) (a)?:"(null)"
146 #endif
147
148 /*
149  * What we need to extract the backtrace in exception handling code
150  */
151 #ifdef HAVE_EXECINFO_H
152 #  include <execinfo.h>
153 #endif
154
155 /****
156  **** Some debugging functions. Can't we find a better place for this??
157  ****/
158 void hexa_print(const char*name, unsigned char *data, int size);
159 const char *hexa_str(unsigned char *data, int size, int downside);
160
161 #endif /* GRAS_PORTABLE_H */