diff options
Diffstat (limited to 'src/compat/win32.h')
-rw-r--r-- | src/compat/win32.h | 131 |
1 files changed, 131 insertions, 0 deletions
diff --git a/src/compat/win32.h b/src/compat/win32.h new file mode 100644 index 0000000..6304d4c --- /dev/null +++ b/src/compat/win32.h | |||
@@ -0,0 +1,131 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007-2010 Xagasoft, All rights reserved. | ||
3 | * | ||
4 | * This file is part of the libbu++ library and is released under the | ||
5 | * terms of the license contained in the file LICENSE. | ||
6 | */ | ||
7 | |||
8 | #ifndef WIN32_COMPATIBILITY__H | ||
9 | #define WIN32_COMPATIBILITY__H | ||
10 | |||
11 | #ifdef WIN32 | ||
12 | |||
13 | #ifdef __cplusplus | ||
14 | extern "C" | ||
15 | { | ||
16 | #include <Winsock2.h> | ||
17 | #include <ws2tcpip.h> | ||
18 | } | ||
19 | #endif | ||
20 | |||
21 | #include "bu/fstring.h" | ||
22 | #include "bu/singleton.h" | ||
23 | |||
24 | #ifndef TEMP_FAILURE_RETRY | ||
25 | #define TEMP_FAILURE_RETRY(expression) \ | ||
26 | (__extension__ \ | ||
27 | ({ long int __result; \ | ||
28 | do __result = (long int) (expression); \ | ||
29 | while (__result == -1L && errno == EINTR); \ | ||
30 | __result; })) | ||
31 | #endif | ||
32 | |||
33 | #define decltype( ret, name, ... ) \ | ||
34 | typedef ret (__cdecl *FNDEF_DYN_ ##name)( __VA_ARGS__ ); \ | ||
35 | static FNDEF_DYN_ ##name _fnptr_ ##name; \ | ||
36 | static ret name( __VA_ARGS__ ) | ||
37 | |||
38 | __extension__ typedef int socklen_t; | ||
39 | |||
40 | #ifdef gai_strerror | ||
41 | #undef gai_strerror | ||
42 | #endif | ||
43 | |||
44 | namespace Bu | ||
45 | { | ||
46 | class Winsock2 : public Bu::Singleton<Winsock2> | ||
47 | { | ||
48 | friend class Bu::Singleton<Winsock2>; | ||
49 | private: | ||
50 | Winsock2(); | ||
51 | virtual ~Winsock2(); | ||
52 | |||
53 | WSADATA wsaData; | ||
54 | HINSTANCE Ws2_32; | ||
55 | |||
56 | public: | ||
57 | // decltype( return type, function name<, optional parameters> ) | ||
58 | decltype( int, WSAStartup, WORD, LPWSADATA ); | ||
59 | decltype( int, WSACleanup ); | ||
60 | decltype( int, WSAGetLastError ); | ||
61 | decltype( char *, inet_ntoa, struct in_addr ); | ||
62 | decltype( unsigned long, inet_addr, const char *s_in ); | ||
63 | decltype( int, select, int nfds, fd_set *readfds, fd_set *writefds, | ||
64 | fd_set *exceptfds, const struct timeval *timeout ); | ||
65 | decltype( SOCKET, socket, int domain, int type, int protocol ); | ||
66 | decltype( int, shutdown, SOCKET s, int how ); | ||
67 | decltype( int, ioctlsocket, SOCKET s, long cmd, u_long *argp ); | ||
68 | decltype( u_short, htons, u_short in ); | ||
69 | decltype( u_long, htonl, u_long in ); | ||
70 | decltype( struct hostent *, gethostbyname, const char *name ); | ||
71 | decltype( void, freeaddrinfo, struct addrinfo *ai ); | ||
72 | decltype( int, getaddrinfo, const char *nodename, const char *servname, | ||
73 | const struct addrinfo *hints, struct addrinfo **res ); | ||
74 | decltype( int, connect, SOCKET s, const struct sockaddr *serv_addr, | ||
75 | int addrlen ); | ||
76 | decltype( int, getpeername, SOCKET s, struct sockaddr *name, | ||
77 | int *namelen ); | ||
78 | decltype( int, setsockopt, SOCKET s, int level, int optname, | ||
79 | const char *optval, int optlen ); | ||
80 | decltype( int, bind, SOCKET s, const struct sockaddr *my_addr, | ||
81 | int addrlen ); | ||
82 | decltype( int, listen, SOCKET s, int backlog ); | ||
83 | decltype( SOCKET, accept, SOCKET s, struct sockaddr *addr, | ||
84 | int *addrlen); | ||
85 | decltype( int, recv, SOCKET s, char *buf, int len, int flags ); | ||
86 | decltype( int, send, SOCKET s, const char *buf, int len, int flags ); | ||
87 | decltype( int, __WSAFDIsSet, SOCKET s, fd_set *set ); | ||
88 | |||
89 | static char scode[15]; | ||
90 | static char *gai_strerror( int iCode ); | ||
91 | }; | ||
92 | }; | ||
93 | |||
94 | #ifdef FD_ISSET | ||
95 | #undef FD_ISSET | ||
96 | #endif | ||
97 | |||
98 | #define bu_WSAStartup (*Bu::Winsock2::WSAStartup) | ||
99 | #define bu_WSACleanup (*Bu::Winsock2::WSACleanup) | ||
100 | #define bu_WSAGetLastError (*Bu::Winsock2::WSAGetLastError) | ||
101 | #define bu_inet_ntoa (*Bu::Winsock2::inet_ntoa) | ||
102 | #define bu_inet_addr (*Bu::Winsock2::inet_addr) | ||
103 | #define bu_select (*Bu::Winsock2::select) | ||
104 | #define bu_socket (*Bu::Winsock2::socket) | ||
105 | #define bu_shutdown (*Bu::Winsock2::shutdown) | ||
106 | #define bu_ioctlsocket (*Bu::Winsock2::ioctlsocket) | ||
107 | #define bu_htons (*Bu::Winsock2::htons) | ||
108 | #define bu_htonl (*Bu::Winsock2::htonl) | ||
109 | #define bu_gethostbyname (*Bu::Winsock2::gethostbyname) | ||
110 | #define bu_freeaddrinfo (*Bu::Winsock2::freeaddrinfo) | ||
111 | #define bu_getaddrinfo (*Bu::Winsock2::getaddrinfo) | ||
112 | #define bu_connect (*Bu::Winsock2::connect) | ||
113 | #define bu_getpeername (*Bu::Winsock2::getpeername) | ||
114 | #define bu_setsockopt (*Bu::Winsock2::setsockopt) | ||
115 | #define bu_bind (*Bu::Winsock2::bind) | ||
116 | #define bu_listen (*Bu::Winsock2::listen) | ||
117 | #define bu_accept (*Bu::Winsock2::accept) | ||
118 | #define bu_recv (*Bu::Winsock2::recv) | ||
119 | #define bu_send (*Bu::Winsock2::send) | ||
120 | #define bu___WSAFDIsSet (*Bu::Winsock2::__WSAFDIsSet) | ||
121 | |||
122 | #define FD_ISSET (*Bu::Winsock2::__WSAFDIsSet) | ||
123 | #define bu_gai_strerror Bu::Winsock2::gai_strerror | ||
124 | |||
125 | #undef decltype | ||
126 | |||
127 | #undef USE_64BIT_IO | ||
128 | |||
129 | #endif /* WIN32 */ | ||
130 | #endif | ||
131 | |||