]> granicus.if.org Git - postgresql/blob - src/include/port/win32.h
Back out use of FormatMessage(), does error values, not exception
[postgresql] / src / include / port / win32.h
1 /* $PostgreSQL: pgsql/src/include/port/win32.h,v 1.69 2007/01/23 03:28:49 momjian Exp $ */
2
3 #if defined(_MSC_VER) || defined(__BORLANDC__)
4 #define WIN32_ONLY_COMPILER
5 #endif
6
7 /* undefine and redefine after #include */
8 #undef mkdir
9
10 #undef ERROR
11 #define _WINSOCKAPI_
12 #include <windows.h>
13 #include <winsock2.h>
14 #include <ws2tcpip.h>
15 #undef small
16 #include <process.h>
17 #include <signal.h>
18 #include <errno.h>
19 #include <direct.h>
20 #ifndef __BORLANDC__
21 #include <sys/utime.h>                  /* for non-unicode version */
22 #endif
23 #undef near
24
25 /* Must be here to avoid conflicting with prototype in windows.h */
26 #define mkdir(a,b)      mkdir(a)
27
28 #define HAVE_FSYNC_WRITETHROUGH
29 #define HAVE_FSYNC_WRITETHROUGH_ONLY
30 #define ftruncate(a,b)  chsize(a,b)
31 /*
32  *      Even though we don't support 'fsync' as a wal_sync_method,
33  *      we do fsync() a few other places where _commit() is just fine.
34  */
35 #define fsync(fd) _commit(fd)
36
37 #define USES_WINSOCK
38
39 /* defines for dynamic linking on Win32 platform */
40 #if defined(WIN32) || defined(__CYGWIN__)
41
42 #if __GNUC__ && ! defined (__declspec)
43 #error You need egcs 1.1 or newer for compiling!
44 #endif
45
46 #ifdef BUILDING_DLL
47 #define DLLIMPORT __declspec (dllexport)
48 #else                                                   /* not BUILDING_DLL */
49 #define DLLIMPORT __declspec (dllimport)
50 #endif
51 #else                                                   /* not CYGWIN, not MSVC, not MingW */
52
53 #define DLLIMPORT
54 #endif
55
56
57 /*
58  *      IPC defines
59  */
60 #undef HAVE_UNION_SEMUN
61 #define HAVE_UNION_SEMUN 1
62
63 #define IPC_RMID 256
64 #define IPC_CREAT 512
65 #define IPC_EXCL 1024
66 #define IPC_PRIVATE 234564
67 #define IPC_NOWAIT      2048
68 #define IPC_STAT 4096
69
70 #define EACCESS 2048
71 #define EIDRM 4096
72
73 #define SETALL 8192
74 #define GETNCNT 16384
75 #define GETVAL 65536
76 #define SETVAL 131072
77 #define GETPID 262144
78
79 /*
80  *      Shared memory
81  */
82 struct shmid_ds
83 {
84         int                     dummy;
85         int                     shm_nattch;
86 };
87
88 int                     shmdt(const void *shmaddr);
89 void       *shmat(int memId, void *shmaddr, int flag);
90 int                     shmctl(int shmid, int flag, struct shmid_ds * dummy);
91 int                     shmget(int memKey, int size, int flag);
92
93
94 /*
95  *      Semaphores
96  */
97 union semun
98 {
99         int                     val;
100         struct semid_ds *buf;
101         unsigned short *array;
102 };
103
104 struct sembuf
105 {
106         int                     sem_flg;
107         int                     sem_op;
108         int                     sem_num;
109 };
110
111 int                     semctl(int semId, int semNum, int flag, union semun);
112 int                     semget(int semKey, int semNum, int flags);
113 int                     semop(int semId, struct sembuf * sops, int flag);
114
115
116 /*
117  *      Signal stuff
118  *
119  *      For WIN32, there is no wait() call so there are no wait() macros
120  *      to interpret the return value of system().  Instead, system()
121  *      return values < 0x100 are used for exit() termination, and higher
122  *      values are used to indicated non-exit() termination, which is
123  *      similar to a unix-style signal exit (think SIGSEGV ==
124  *      STATUS_ACCESS_VIOLATION).  Return values are broken up into groups:
125  *
126  *      http://msdn2.microsoft.com/en-gb/library/aa489609.aspx
127  *
128  *              NT_SUCCESS                      0 - 0x3FFFFFFF
129  *              NT_INFORMATION          0x40000000 - 0x7FFFFFFF
130  *              NT_WARNING                      0x80000000 - 0xBFFFFFFF
131  *              NT_ERROR                        0xC0000000 - 0xFFFFFFFF
132  *
133  *      Effectively, we don't care on the severity of the return value from
134  *      system(), we just need to know if it was because of exit() or generated
135  *      by the system, and it seems values >= 0x100 are system-generated.
136  *      See this URL for a list of WIN32 STATUS_* values:
137  *
138  *              Wine (URL used in our error messages) -
139  *                      http://source.winehq.org/source/include/ntstatus.h
140  *              Descriptions - http://www.comp.nus.edu.sg/~wuyongzh/my_doc/ntstatus.txt
141  *              MS SDK - http://www.nologs.com/ntstatus.html
142  *
143  *      Some day we might want to print descriptions for the most common
144  *      exceptions, rather than printing a URL.  FormatMessage() can print
145  *      the text of error values, but not exception values.
146  */
147 #define WIFEXITED(w)    (((w) & 0XFFFFFF00) == 0)
148 #define WIFSIGNALED(w)  (!WIFEXITED(w))
149 #define WEXITSTATUS(w)  (w)
150 #define WTERMSIG(w)     (w)
151
152 #define sigmask(sig) ( 1 << ((sig)-1) )
153
154 /* Signal function return values */
155 #undef SIG_DFL
156 #undef SIG_ERR
157 #undef SIG_IGN
158 #define SIG_DFL ((pqsigfunc)0)
159 #define SIG_ERR ((pqsigfunc)-1)
160 #define SIG_IGN ((pqsigfunc)1)
161
162 /* Some extra signals */
163 #define SIGHUP                          1
164 #define SIGQUIT                         3
165 #define SIGTRAP                         5
166 #define SIGABRT                         22      /* Set to match W32 value -- not UNIX value */
167 #define SIGKILL                         9
168 #define SIGPIPE                         13
169 #define SIGALRM                         14
170 #define SIGSTOP                         17
171 #define SIGTSTP                         18
172 #define SIGCONT                         19
173 #define SIGCHLD                         20
174 #define SIGTTIN                         21
175 #define SIGTTOU                         22      /* Same as SIGABRT -- no problem, I hope */
176 #define SIGWINCH                        28
177 #ifndef __BORLANDC__
178 #define SIGUSR1                         30
179 #define SIGUSR2                         31
180 #endif
181
182 struct timezone
183 {
184         int                     tz_minuteswest; /* Minutes west of GMT.  */
185         int                     tz_dsttime;             /* Nonzero if DST is ever in effect.  */
186 };
187
188 /* for setitimer in backend/port/win32/timer.c */
189 #define ITIMER_REAL 0
190 struct itimerval
191 {
192         struct timeval it_interval;
193         struct timeval it_value;
194 };
195 int                     setitimer(int which, const struct itimerval * value, struct itimerval * ovalue);
196
197
198 /*
199  * Supplement to <sys/types.h>.
200  *
201  * Perl already has typedefs for uid_t and gid_t.
202  */
203 #ifndef PLPERL_HAVE_UID_GID
204 typedef int uid_t;
205 typedef int gid_t;
206 #endif
207 typedef long key_t;
208
209 #ifdef WIN32_ONLY_COMPILER
210 typedef int pid_t;
211 #endif
212
213 /*
214  * Supplement to <sys/stat.h>.
215  */
216 #define lstat(path, sb) stat((path), (sb))
217
218 /*
219  * Supplement to <fcntl.h>.
220  * This is the same value as _O_NOINHERIT in the MS header file. This is
221  * to ensure that we don't collide with a future definition. It means
222  * we cannot use _O_NOINHERIT ourselves.
223  */
224 #define O_DSYNC 0x0080
225
226 /*
227  * Supplement to <errno.h>.
228  */
229 #undef EAGAIN
230 #undef EINTR
231 #define EINTR WSAEINTR
232 #define EAGAIN WSAEWOULDBLOCK
233 #define EMSGSIZE WSAEMSGSIZE
234 #define EAFNOSUPPORT WSAEAFNOSUPPORT
235 #define EWOULDBLOCK WSAEWOULDBLOCK
236 #define ECONNRESET WSAECONNRESET
237 #define EINPROGRESS WSAEINPROGRESS
238 #define ENOBUFS WSAENOBUFS
239 #define EPROTONOSUPPORT WSAEPROTONOSUPPORT
240 #define ECONNREFUSED WSAECONNREFUSED
241 #define EBADFD WSAENOTSOCK
242 #define EOPNOTSUPP WSAEOPNOTSUPP
243
244
245 /* In backend/port/win32/signal.c */
246 extern DLLIMPORT volatile int pg_signal_queue;
247 extern DLLIMPORT int pg_signal_mask;
248 extern HANDLE pgwin32_signal_event;
249 extern HANDLE pgwin32_initial_signal_pipe;
250
251 #define UNBLOCKED_SIGNAL_QUEUE()        (pg_signal_queue & ~pg_signal_mask)
252
253
254 void            pgwin32_signal_initialize(void);
255 HANDLE          pgwin32_create_signal_listener(pid_t pid);
256 void            pgwin32_dispatch_queued_signals(void);
257 void            pg_queue_signal(int signum);
258
259 /* In backend/port/win32/socket.c */
260 #ifndef FRONTEND
261 #define socket(af, type, protocol) pgwin32_socket(af, type, protocol)
262 #define accept(s, addr, addrlen) pgwin32_accept(s, addr, addrlen)
263 #define connect(s, name, namelen) pgwin32_connect(s, name, namelen)
264 #define select(n, r, w, e, timeout) pgwin32_select(n, r, w, e, timeout)
265 #define recv(s, buf, len, flags) pgwin32_recv(s, buf, len, flags)
266 #define send(s, buf, len, flags) pgwin32_send(s, buf, len, flags)
267
268 SOCKET          pgwin32_socket(int af, int type, int protocol);
269 SOCKET          pgwin32_accept(SOCKET s, struct sockaddr * addr, int *addrlen);
270 int                     pgwin32_connect(SOCKET s, const struct sockaddr * name, int namelen);
271 int                     pgwin32_select(int nfds, fd_set *readfs, fd_set *writefds, fd_set *exceptfds, const struct timeval * timeout);
272 int                     pgwin32_recv(SOCKET s, char *buf, int len, int flags);
273 int                     pgwin32_send(SOCKET s, char *buf, int len, int flags);
274
275 const char *pgwin32_socket_strerror(int err);
276 int                     pgwin32_waitforsinglesocket(SOCKET s, int what);
277
278 /* in backend/port/win32/security.c */
279 extern int      pgwin32_is_admin(void);
280 extern int      pgwin32_is_service(void);
281 #endif
282
283 /* in port/win32error.c */
284 extern void _dosmaperr(unsigned long);
285
286
287 /* Things that exist in MingW headers, but need to be added to MSVC */
288 #ifdef WIN32_ONLY_COMPILER
289 #ifndef __BORLANDC__
290 typedef long ssize_t;
291 typedef unsigned short mode_t;
292 #endif
293
294 /*
295  *      Certain "standard edition" versions of MSVC throw a warning
296  *      that later generates an error for "inline" statements, but
297  *      __inline seems to work.  e.g.  Microsoft Visual C++ .NET
298  *      Version 7.1.3088
299  */
300 #define inline __inline
301 #define __inline__ __inline
302
303 #ifndef __BORLANDC__
304 #define _S_IRWXU        (_S_IREAD | _S_IWRITE | _S_IEXEC)
305 #define _S_IXUSR        _S_IEXEC
306 #define _S_IWUSR        _S_IWRITE
307 #define _S_IRUSR        _S_IREAD
308 #define S_IRUSR         _S_IRUSR
309 #define S_IWUSR         _S_IWUSR
310 #define S_IXUSR         _S_IXUSR
311 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
312 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
313 #endif
314
315 #define F_OK 0
316 #define W_OK 2
317 #define R_OK 4
318
319 #define isinf(x) ((_fpclass(x) == _FPCLASS_PINF) || (_fpclass(x) == _FPCLASS_NINF))
320 #define isnan(x) _isnan(x)
321
322 #ifndef                 BIG_ENDIAN
323 #define                 BIG_ENDIAN              4321
324 #endif
325 #ifndef                 LITTLE_ENDIAN
326 #define                 LITTLE_ENDIAN   1234
327 #endif
328 #ifndef                 PDP_ENDIAN
329 #define                 PDP_ENDIAN              3412
330 #endif
331
332 #ifndef BYTE_ORDER
333 #define BYTE_ORDER LITTLE_ENDIAN
334 #endif
335
336 /* Pulled from Makefile.port in mingw */
337 #define DLSUFFIX ".dll"
338
339 #endif