]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - win/inspircd_win32wrapper.h
Update copyrights for 2009.
[user/henk/code/inspircd.git] / win / inspircd_win32wrapper.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 /* Windows Port
15    Wrapper Functions/Definitions
16    By Burlex */
17
18 #ifndef INSPIRCD_WIN32WRAPPER_H
19 #define INSPIRCD_WIN32WRAPPER_H
20
21 #ifndef CONFIGURE_BUILD
22 #include "win32service.h"
23 #endif
24
25 /* Define the WINDOWS macro. This means we're building on windows to the rest of the server.
26    I think this is more reasonable than using WIN32, especially if we're gonna be doing 64-bit compiles */
27 #define WINDOWS 1
28 #define ENABLE_CRASHDUMPS 0
29
30 /* This defaults to 64, way too small for an ircd! */
31 /* CRT memory debugging */
32 #ifdef DEBUG
33 #define _CRTDBG_MAP_ALLOC
34 #include <stdlib.h>
35 #include <crtdbg.h>
36 #endif
37
38 #define FD_SETSIZE 24000
39
40 /* Make builds smaller, leaner and faster */
41 #define VC_EXTRALEAN
42 #define WIN32_LEAN_AND_MEAN
43
44 /* Not defined in windows */
45 #define SIGHUP 1
46
47 /* Not defined in windows, parameter to shutdown() */
48 #define SHUT_WR 2
49
50 /* They just have to be *different*, don't they. */
51 #define PATH_MAX MAX_PATH
52
53 /* Begone shitty 'safe STL' warnings */
54 #define _SCL_SECURE_NO_WARNINGS
55 #define _CRT_SECURE_NO_WARNINGS
56 #define _AFX_SECURE_NO_WARNINGS
57 #define _ATL_SECURE_NO_WARNINGS
58
59 /* Macros for exporting symbols - dependant on what is being compiled */
60
61 #ifdef DLL_BUILD
62 #define CoreExport __declspec(dllimport)
63 #define DllExport __declspec(dllexport)
64 #else
65 #define CoreExport __declspec(dllexport)
66 #define DllExport __declspec(dllimport)
67 #endif
68
69 /* Redirect main() through a different method in win32service.cpp, to intercept service startup */
70 #define ENTRYPOINT CoreExport int smain(int argc, char** argv)
71
72 /* Disable the deprecation warnings.. it spams :P */
73 #define _CRT_SECURE_NO_DEPRECATE
74 #define _SCL_SECURE_NO_DEPRECATE
75
76 #include <string>
77
78 /* Say we're building on windows 2000. Anyone running something older than this
79  * reeeeeeeally needs to upgrade! */
80
81 #define _WIN32_WINNT 0x500
82
83 /* Normal windows (platform-specific) includes */
84 #include <winsock2.h>
85 #include <windows.h>
86 #include <ws2tcpip.h>
87 #include <sys/types.h>
88 #include <sys/stat.h>
89 #include <direct.h>
90 #include <process.h>
91 #include <stdio.h>
92 #include <algorithm>
93
94 #ifdef ENABLE_CRASHDUMPS
95 #include <DbgHelp.h>
96 #endif
97
98 /* strcasecmp is not defined on windows by default */
99 #define strcasecmp _stricmp
100
101 /* this standard function is nonstarard. go figure. */
102 #define popen _popen
103 #define pclose _pclose
104
105 /* Error macros need to be redirected to winsock error codes */
106 #define ETIMEDOUT WSAETIMEDOUT
107 #define ECONNREFUSED WSAECONNREFUSED
108 #define EADDRINUSE WSAEADDRINUSE
109 #define EINPROGRESS WSAEWOULDBLOCK
110
111 /* Convert formatted (xxx.xxx.xxx.xxx) string to in_addr struct */
112 CoreExport int inet_pton(int af, const char * src, void * dst);
113
114 /* Convert struct to formatted (xxx.xxx.xxx.xxx) string */
115 CoreExport const char * inet_ntop(int af, const void * src, char * dst, socklen_t cnt);
116
117 /* Safe printf functions aren't defined in VC2003 */
118 #define snprintf _snprintf
119 #define vsnprintf _vsnprintf
120
121 /* Since when does the ISO C++ standard *remove* C functions?! */
122 #define mkdir(file,mode) _mkdir(file)
123
124 /* Unix-style sleep (argument is in seconds) */
125 __inline void sleep(int seconds) { Sleep(seconds * 1000); }
126
127 /* IPV4 only convert string to address struct */
128 CoreExport int inet_aton(const char *, struct in_addr *);
129
130 /* Unix-style get running user id */
131 CoreExport int geteuid();
132
133 /* Handles colors in printf */
134 CoreExport int printf_c(const char * format, ...);
135
136 /* getopt() wrapper */
137 # define no_argument            0
138 # define required_argument      1
139 # define optional_argument      2
140 struct option
141 {
142         char *name;
143         int has_arg;
144         int *flag;
145         int val;
146 };
147 extern char optarg[514];
148 int getopt_long_only (int ___argc, char *const *___argv, const char *__shortopts, const struct option *__longopts, int *__longind);
149
150 /* Module Loading */
151 #define dlopen(path, state) (void*)LoadLibrary(path)
152 #define dlsym(handle, export) (void*)GetProcAddress((HMODULE)handle, export)
153 #define dlclose(handle) FreeLibrary((HMODULE)handle)
154 const char * dlerror();
155
156 /* Unix-style directory searching functions */
157 #define chmod(filename, mode)  
158
159 struct dirent
160 {
161         char d_name[MAX_PATH];
162 };
163
164 struct DIR
165 {
166         dirent dirent_pointer;
167         HANDLE find_handle;
168         WIN32_FIND_DATA find_data;
169         bool first;
170 };
171
172 CoreExport DIR * opendir(const char * path);
173 CoreExport dirent * readdir(DIR * handle);
174 CoreExport void closedir(DIR * handle);
175
176 CoreExport int gettimeofday(struct timeval * tv, void * tz);
177
178 /* Disable these stupid warnings.. */
179 #pragma warning(disable:4800)
180 #pragma warning(disable:4251)
181 #pragma warning(disable:4275)
182 #pragma warning(disable:4244)           // warning C4244: '=' : conversion from 'long' to 'short', possible loss of data
183 #pragma warning(disable:4267)           // warning C4267: 'argument' : conversion from 'size_t' to 'int', possible loss of data
184 #pragma warning(disable:4805)           // warning C4805: '!=' : unsafe mix of type 'char' and type 'bool' in operation
185 #pragma warning(disable:4311)           // warning C4311: 'type cast' : pointer truncation from 'accept_overlap *' to 'int'
186 #pragma warning(disable:4312)           // warning C4312: 'type cast' : conversion from 'int' to 'HANDLE' of greater size
187 #pragma warning(disable:4355)           // warning C4355: 'this' : used in base member initializer list
188 #pragma warning(disable:4996)           // warning C4996: 'std::_Traits_helper::move_s' was declared deprecated
189 #pragma warning(disable:4706)           // warning C4706: assignment within conditional expression
190 #pragma warning(disable:4201)           // mmsystem.h generates this warning
191
192 /* Mehhhh... typedefs. */
193
194 typedef unsigned char uint8_t;
195 typedef unsigned long long uint64_t;
196 typedef signed char int8_t;
197 typedef signed long int32_t;
198 typedef signed long long int64_t;
199
200 /* Shared memory allocation functions */
201 void * ::operator new(size_t iSize);
202 void ::operator delete(void * ptr);
203
204 /* IPC Handlers */
205 class InspIRCd;
206 class ValueItem;
207 class ServerConfig;
208
209 /* Look up the nameserver in use from the registry on windows */
210 CoreExport std::string FindNameServerWin();
211
212 /* Clear a windows console */
213 CoreExport void ClearConsole();
214
215 CoreExport DWORD WindowsForkStart(InspIRCd* Instance);
216
217 CoreExport void WindowsForkKillOwner(InspIRCd* Instance);
218
219 CoreExport void ChangeWindowsSpecificPointers(InspIRCd* Instance);
220
221 CoreExport bool ValidateWindowsDnsServer(ServerConfig* conf, const char* tag, const char* value, ValueItem &data);
222
223 CoreExport bool initwmi();
224 CoreExport void donewmi();
225 CoreExport int getcpu();
226
227 CoreExport void usleep(unsigned long usecs);
228
229
230 #endif
231