Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cleanup windows portability in there
[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 #include "xbt/misc.h"
15 /* 
16  * win32 or win64 (__WIN32 is defined for win32 and win64 applications, __TOS_WIN__ is defined by xlC). 
17 */ 
18 #ifdef _WIN32
19 # include "win32/config.h"
20 # include <windows.h>
21 #else
22 #  include "gras_config.h"
23 #endif
24
25 /* Load this asap to make sure that GNU_SOURCE is defined on need when stdio gets loaded by some random system header */
26 #ifdef HAVE_GETLINE
27 #  define _GNU_SOURCE
28 #  include <stdio.h>
29 #endif
30
31 #include <stdarg.h>
32
33 #ifdef HAVE_ERRNO_H
34 #  include <errno.h>
35 #endif
36
37 #ifdef HAVE_UNISTD_H
38 #  include <unistd.h>
39 #endif
40
41 /****
42  **** Networking 
43  ****/
44
45
46 #ifdef HAVE_SYS_SOCKET_H
47 #  include <sys/socket.h>
48 #  include <netinet/in.h>   /* sometimes required for #include <arpa/inet.h> */
49 #  include <netinet/tcp.h>  /* TCP_NODELAY */
50 #  include <netdb.h>        /* getprotobyname() */
51 #  include <arpa/inet.h>    /* inet_ntoa() */
52 #  include <sys/types.h>    /* sometimes required for fd_set */
53 # endif
54
55
56 #ifndef HAVE_WINSOCK_H
57 #       define tcp_read( s, buf, len)   read( s, buf, len )
58 #       define tcp_write( s, buf, len)  write( s, buf, len )
59 #       define sock_errno        errno
60 #       define sock_errstr(err)  strerror(err)
61
62 #       ifdef SHUT_RDWR
63 #               define tcp_close( s )   (shutdown( s, SHUT_RDWR ), close( s ))
64 #       else
65 #               define tcp_close( s )   close( s )
66 #       endif
67 #endif /* windows or unix ? */
68
69 /****
70  **** File handling
71  ****/
72
73 #include <fcntl.h>
74
75 #ifdef HAVE_SYS_STAT_H
76 #  include <sys/stat.h>
77 #endif
78
79 #ifndef O_BINARY
80 #  define O_BINARY 0
81 #endif
82
83 /****
84  **** Time handling
85  ****/
86
87 #ifdef TIME_WITH_SYS_TIME
88 # include <sys/time.h>
89 # include <time.h>
90 #else
91 # if HAVE_SYS_TIME_H
92 #  include <sys/time.h>
93 # else
94 #  include <time.h>
95 # endif
96 #endif
97
98 /****
99  **** Signals
100  ****/
101 #ifdef HAVE_SIGNAL_H
102 # include <signal.h>
103 #endif
104
105 /****
106  **** string handling (parts from http://www.ijs.si/software/snprintf/)
107  ****/
108
109 /* prototype of C99 functions */
110 #if defined(HAVE_SNPRINTF)
111 #include <stdio.h>
112 #else
113    XBT_PUBLIC(int) snprintf(char *, size_t, const char *, /*args*/ ...);
114    XBT_PUBLIC(int) vsnprintf(char *, size_t, const char *, va_list);
115 #endif
116
117
118 /* use internal functions when OS provided ones are borken */
119 #if defined(HAVE_SNPRINTF) && defined(PREFER_PORTABLE_SNPRINTF)
120 extern int portable_snprintf(char *str, size_t str_m, const char *fmt, /*args*/ ...);
121 extern int portable_vsnprintf(char *str, size_t str_m, const char *fmt, va_list ap);
122 #define snprintf  portable_snprintf
123 #define vsnprintf portable_vsnprintf
124 #endif
125
126 /* prototype of GNU functions  */
127 #if defined(__GNUC__)
128 extern int asprintf  (char **ptr, const char *fmt, /*args*/ ...);
129 extern int vasprintf (char **ptr, const char *fmt, va_list ap);
130 #endif
131
132 extern int asnprintf (char **ptr, size_t str_m, const char *fmt, /*args*/ ...);
133 extern int vasnprintf(char **ptr, size_t str_m, const char *fmt, va_list ap);
134
135 /*
136  * That's needed to protect solaris's printf from ever seing NULL associated to a %s format
137  * (without adding an extra check on working platforms :)
138  */
139
140 #ifdef PRINTF_NULL_WORKING
141 #  define PRINTF_STR(a) (a)
142 #else
143 #  define PRINTF_STR(a) (a)?:"(null)"
144 #endif
145
146 /*
147  * What we need to extract the backtrace in exception handling code
148  */
149 #ifdef HAVE_EXECINFO_H
150 #  include <execinfo.h>
151 #endif
152
153 /****
154  **** Some debugging functions. Can't we find a better place for this??
155  ****/
156 void hexa_print(const char*name, unsigned char *data, int size);
157 const char *hexa_str(unsigned char *data, int size, int downside);
158
159 #endif /* GRAS_PORTABLE_H */