]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - win/inspircd_win32wrapper.h
A ton more clear() and empty() stuff thats been lingering on the long term todo for...
[user/henk/code/inspircd.git] / win / inspircd_win32wrapper.h
1 /*       +------------------------------------+\r
2  *       | Inspire Internet Relay Chat Daemon |\r
3  *       +------------------------------------+\r
4  *\r
5  *  InspIRCd: (C) 2002-2007 InspIRCd Development Team\r
6  * See: http://www.inspircd.org/wiki/index.php/Credits\r
7  *\r
8  * This program is free but copyrighted software; see\r
9  *            the file COPYING for details.\r
10  *\r
11  * ---------------------------------------------------\r
12  */\r
13 \r
14 /* Windows Port\r
15    Wrapper Functions/Definitions\r
16    By Burlex */\r
17 \r
18 #ifndef INSPIRCD_WIN32WRAPPER_H\r
19 #define INSPIRCD_WIN32WRAPPER_H\r
20 \r
21 /* Define the WINDOWS macro. This means we're building on windows to the rest of the server.\r
22    I think this is more reasonable than using WIN32, especially if we're gonna be doing 64-bit compiles */\r
23 #define WINDOWS 1\r
24 \r
25 /* Make builds smaller, leaner and faster */\r
26 #define VC_EXTRALEAN\r
27 \r
28 /* They just have to be *different*, don't they. */\r
29 #define PATH_MAX MAX_PATH\r
30 \r
31 /* Begone shitty 'safe STL' warnings */\r
32 #define _SCL_SECURE_NO_WARNINGS\r
33 #define _CRT_SECURE_NO_WARNINGS\r
34 #define _AFX_SECURE_NO_WARNINGS\r
35 #define _ATL_SECURE_NO_WARNINGS\r
36 \r
37 /* Macros for exporting symbols - dependant on what is being compiled */\r
38 \r
39 #ifdef DLL_BUILD\r
40 #define CoreExport __declspec(dllimport)\r
41 #define DllExport __declspec(dllexport)\r
42 #else\r
43 #define CoreExport __declspec(dllexport)\r
44 #define DllExport __declspec(dllimport)\r
45 #endif\r
46 \r
47 /* Disable the deprecation warnings.. it spams :P */\r
48 #define _CRT_SECURE_NO_DEPRECATE\r
49 #define _SCL_SECURE_NO_DEPRECATE\r
50 \r
51 #include <string>\r
52 \r
53 /* Say we're building on windows 2000. Anyone running something older than this\r
54  * reeeeeeeally needs to upgrade! */\r
55 \r
56 #define _WIN32_WINNT 0x500\r
57 \r
58 /* Normal windows (platform-specific) includes */\r
59 #include <winsock2.h>\r
60 #include <windows.h>\r
61 #include <ws2tcpip.h>\r
62 #include <sys/types.h>\r
63 #include <sys/stat.h>\r
64 #include <direct.h>\r
65 #include <process.h>\r
66 #include <stdio.h>\r
67 #include <algorithm>\r
68 \r
69 /* strcasecmp is not defined on windows by default */\r
70 #define strcasecmp _stricmp\r
71 \r
72 /* Error macros need to be redirected to winsock error codes */\r
73 #define ETIMEDOUT WSAETIMEDOUT\r
74 #define ECONNREFUSED WSAECONNREFUSED\r
75 #define EADDRINUSE WSAEADDRINUSE\r
76 #define EINPROGRESS WSAEWOULDBLOCK\r
77 \r
78 /* Remember file descriptors are treated differently on windows ;) */\r
79 __inline int close(int socket) { return closesocket(socket); }\r
80 \r
81 /* Convert formatted (xxx.xxx.xxx.xxx) string to in_addr struct */\r
82 CoreExport int inet_pton(int af, const char * src, void * dst);\r
83 \r
84 /* Convert struct to formatted (xxx.xxx.xxx.xxx) string */\r
85 CoreExport const char * inet_ntop(int af, const void * src, char * dst, socklen_t cnt);\r
86 \r
87 /* Safe printf functions aren't defined in VC2003 */\r
88 #define snprintf _snprintf\r
89 #define vsnprintf _vsnprintf\r
90 \r
91 /* Recursive token function doesn't exist in VC++ */\r
92 CoreExport char * strtok_r(char *_String, const char *_Control, char **_Context);\r
93 \r
94 /* Unix-style sleep (argument is in seconds) */\r
95 __inline void sleep(int seconds) { Sleep(seconds * 1000); }\r
96 \r
97 /* IPV4 only convert string to address struct */\r
98 CoreExport int inet_aton(const char *, struct in_addr *);\r
99 \r
100 /* Unix-style get running user id */\r
101 CoreExport int geteuid();\r
102 \r
103 /* Handles colors in printf */\r
104 CoreExport int printf_c(const char * format, ...);\r
105 \r
106 /* getopt() wrapper */\r
107 # define no_argument            0\r
108 # define required_argument      1\r
109 # define optional_argument      2\r
110 struct option\r
111 {\r
112         char *name;\r
113         int has_arg;\r
114         int *flag;\r
115         int val;\r
116 };\r
117 extern char optarg[514];\r
118 int getopt_long_only (int ___argc, char *const *___argv, const char *__shortopts, const struct option *__longopts, int *__longind);\r
119 \r
120 /* Accept Handlers */\r
121 CoreExport int __accept_socket(SOCKET s, sockaddr * addr, int * addrlen, void * acceptevent);\r
122 CoreExport int __getsockname(SOCKET s, sockaddr * name, int * namelen, void * acceptevent);\r
123 \r
124 /* Module Loading */\r
125 #define dlopen(path, state) (void*)LoadLibrary(path)\r
126 #define dlsym(handle, export) (void*)GetProcAddress((HMODULE)handle, export)\r
127 #define dlclose(handle) FreeLibrary((HMODULE)handle)\r
128 const char * dlerror();\r
129 \r
130 /* Unix-style directory searching functions */\r
131 #define chmod(filename, mode)  \r
132 struct dirent\r
133 {\r
134         char d_name[MAX_PATH];\r
135 };\r
136 \r
137 struct DIR\r
138 {\r
139         dirent dirent_pointer;\r
140         HANDLE find_handle;\r
141         WIN32_FIND_DATA find_data;\r
142         bool first;\r
143 };\r
144 \r
145 CoreExport DIR * opendir(const char * path);\r
146 CoreExport dirent * readdir(DIR * handle);\r
147 CoreExport void closedir(DIR * handle);\r
148 \r
149 /* Disable these stupid warnings.. */\r
150 #pragma warning(disable:4800)\r
151 #pragma warning(disable:4251)\r
152 #pragma warning(disable:4275)\r
153 #pragma warning(disable:4244)           // warning C4244: '=' : conversion from 'long' to 'short', possible loss of data\r
154 #pragma warning(disable:4267)           // warning C4267: 'argument' : conversion from 'size_t' to 'int', possible loss of data\r
155 #pragma warning(disable:4805)           // warning C4805: '!=' : unsafe mix of type 'char' and type 'bool' in operation\r
156 #pragma warning(disable:4311)           // warning C4311: 'type cast' : pointer truncation from 'accept_overlap *' to 'int'\r
157 #pragma warning(disable:4312)           // warning C4312: 'type cast' : conversion from 'int' to 'HANDLE' of greater size\r
158 #pragma warning(disable:4355)           // warning C4355: 'this' : used in base member initializer list\r
159 #pragma warning(disable:4996)           // warning C4996: 'std::_Traits_helper::move_s' was declared deprecated\r
160 \r
161 /* Mehhhh... typedefs. */\r
162 \r
163 typedef unsigned char uint8_t;\r
164 typedef unsigned long long uint64_t;\r
165 typedef signed char int8_t;\r
166 typedef signed long int32_t;\r
167 typedef signed long long int64_t;\r
168 \r
169 /* Shared memory allocation functions */\r
170 void * ::operator new(size_t iSize);\r
171 void ::operator delete(void * ptr);\r
172 \r
173 /* IPC Handlers */\r
174 class InspIRCd;\r
175 \r
176 void InitIPC();\r
177 void CheckIPC(InspIRCd * Instance);\r
178 void CloseIPC();\r
179 \r
180 /* Look up the nameserver in use from the registry on windows */\r
181 std::string FindNameServerWin();\r
182 \r
183 /* Clear a windows console */\r
184 void ClearConsole();\r
185 \r
186 #endif\r
187 \r