]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - win/inspircd_win32wrapper.h
Tidy up source files:
[user/henk/code/inspircd.git] / win / inspircd_win32wrapper.h
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
5  *   Copyright (C) 2007 Craig Edwards <craigedwards@brainbox.cc>
6  *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
7  *
8  * This file is part of InspIRCd.  InspIRCd is free software: you can
9  * redistribute it and/or modify it under the terms of the GNU General Public
10  * License as published by the Free Software Foundation, version 2.
11  *
12  * This program is distributed in the hope that it will be useful, but WITHOUT
13  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
15  * details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  */
20
21
22 #pragma once
23
24 /* Windows Port
25    Wrapper Functions/Definitions
26    By Burlex */
27 /*
28  * Starting with PSAPI version 2 for Windows 7 and Windows Server 2008 R2, this function is defined as K32GetProcessMemoryInfo in Psapi.h and exported
29  * in Kernel32.lib and Kernel32.dll. However, you should always call this function as GetProcessMemoryInfo. To ensure correct resolution of symbols
30  * for programs that will run on earlier versions of Windows, add Psapi.lib to the TARGETLIBS macro and compile the program with PSAPI_VERSION=1.
31  * 
32  * We do this before anything to make sure it's done.
33  */
34 #define PSAPI_VERSION 1
35
36 #include "win32service.h"
37
38 /* This defaults to 64, way too small for an ircd! */
39
40 #define FD_SETSIZE 24000
41
42 /* Make builds smaller, leaner and faster */
43 #define VC_EXTRALEAN
44 #define WIN32_LEAN_AND_MEAN
45
46 /* They just have to be *different*, don't they. */
47 #define PATH_MAX MAX_PATH
48
49 /* Macros for exporting symbols - dependant on what is being compiled */
50
51 #ifdef DLL_BUILD
52 #define CoreExport __declspec(dllimport)
53 #define DllExport __declspec(dllexport)
54 #else
55 #define CoreExport __declspec(dllexport)
56 #define DllExport __declspec(dllimport)
57 #endif
58
59 /* Redirect main() through a different method in win32service.cpp, to intercept service startup */
60 #define ENTRYPOINT CoreExport int smain(int argc, char** argv)
61
62 /* Disable the deprecation warnings.. it spams :P */
63 #define _CRT_SECURE_NO_DEPRECATE
64
65 /* Normal windows (platform-specific) includes */
66 #include <winsock2.h>
67 #pragma comment(lib, "Ws2_32.lib")
68 #include <windows.h>
69 #include <ws2tcpip.h>
70 #include <sys/types.h>
71 #include <sys/stat.h>
72 #include <direct.h>
73 #include <process.h>
74
75 /* strcasecmp is not defined on windows by default */
76 #define strcasecmp _stricmp
77 #define strncasecmp _strnicmp
78
79 /* Convert formatted (xxx.xxx.xxx.xxx) string to in_addr struct */
80 CoreExport int insp_inet_pton(int af, const char * src, void * dst);
81
82 /* Convert struct to formatted (xxx.xxx.xxx.xxx) string */
83 CoreExport const char * insp_inet_ntop(int af, const void * src, char * dst, socklen_t cnt);
84
85 /* inet_pton/ntop require at least NT 6.0 */
86 #define inet_pton insp_inet_pton
87 #define inet_ntop insp_inet_ntop
88
89 /* Safe printf functions aren't defined in VC++ */
90 #define snprintf _snprintf
91 #define vsnprintf _vsnprintf
92
93 /* Unix-style sleep (argument is in seconds) */
94 __inline void sleep(int seconds) { Sleep(seconds * 1000); }
95
96 /* _popen, _pclose */
97 #define popen _popen
98 #define pclose _pclose
99
100 /* IPV4 only convert string to address struct */
101 __inline int inet_aton(const char *cp, struct in_addr *addr)
102
103         addr->s_addr = inet_addr(cp);
104         return (addr->s_addr == INADDR_NONE) ? 0 : 1;
105 };
106
107 /* getopt() wrapper */
108 #define no_argument            0
109 #define required_argument      1
110 #define optional_argument      2
111 struct option
112 {
113         char *name;
114         int has_arg;
115         int *flag;
116         int val;
117 };
118 extern int optind;
119 extern char optarg[514];
120 int getopt_long(int ___argc, char *const *___argv, const char *__shortopts, const struct option *__longopts, int *__longind);
121
122 struct dirent
123 {
124         char d_name[MAX_PATH];
125 };
126
127 struct DIR
128 {
129         dirent dirent_pointer;
130         HANDLE find_handle;
131         WIN32_FIND_DATAA find_data;
132         bool first;
133 };
134
135 struct timespec
136 {
137         time_t tv_sec;
138         long tv_nsec;
139 };
140
141 CoreExport DIR * opendir(const char * path);
142 CoreExport dirent * readdir(DIR * handle);
143 CoreExport void closedir(DIR * handle);
144
145 // warning: 'identifier' : class 'type' needs to have dll-interface to be used by clients of class 'type2'
146 // Normally, this is a huge problem, but due to our new/delete remap, we can ignore it.
147 #pragma warning(disable:4251)
148
149 // warning: DLL-interface classkey 'identifier' used as base for DLL-interface classkey 'identifier'
150 #pragma warning(disable:4275)
151
152 // warning: unreferenced formal parameter
153 // Unimportant for now, but for the next version, we should take a look at these again.
154 #pragma warning(disable:4100)
155
156 // warning: 'class' : assignment operator could not be generated
157 #pragma warning(disable:4512)
158
159 // warning C4127: conditional expression is constant
160 // This will be triggered like crazy because FOREACH_MOD and similar macros are wrapped in do { ... } while(0) constructs
161 #pragma warning(disable:4127)
162
163 // warning C4996: The POSIX name for this item is deprecated.
164 #pragma warning(disable:4996)
165
166 // warning C4244: conversion from 'x' to 'y', possible loss of data
167 #pragma warning(disable:4244)
168
169 // warning C4267: 'var' : conversion from 'size_t' to 'type', possible loss of data
170 #pragma warning(disable:4267)
171
172 // warning C4706: assignment within conditional expression
173 #pragma warning(disable:4706)
174
175 // warning C4355: 'this' : used in base member initializer list
176 // This warning is disabled by default since VC2012
177 #if _MSC_VER < 1700
178 #pragma warning(disable:4355)
179 #endif
180
181 /* Shared memory allocation functions */
182 void * ::operator new(size_t iSize);
183 void ::operator delete(void * ptr);
184
185 #define DISABLE_WRITEV
186
187 #include <exception>
188
189 class CWin32Exception : public std::exception
190 {
191 public:
192         CWin32Exception();
193         CWin32Exception(const CWin32Exception& other);
194         virtual const char* what() const throw();
195         DWORD GetErrorCode();
196
197 private:
198         char szErrorString[500];
199         DWORD dwErrorCode;
200 };