]> git.saurik.com Git - wxWidgets.git/blame_incremental - src/msw/gsockmsw.cpp
don't hard code the menu bar height under WinCE (closes #10248)
[wxWidgets.git] / src / msw / gsockmsw.cpp
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: src/msw/gsockmsw.cpp
3// Purpose: MSW-specific socket support
4// Authors: Guilhem Lavaux, Guillermo Rodriguez Garcia
5// Created: April 1997
6// Copyright: (C) 1999-1997, Guilhem Lavaux
7// (C) 1999-2000, Guillermo Rodriguez Garcia
8// (C) 2008 Vadim Zeitlin
9// RCS_ID: $Id$
10// License: wxWindows licence
11/////////////////////////////////////////////////////////////////////////////
12
13
14// For compilers that support precompilation, includes "wx.h".
15#include "wx/wxprec.h"
16
17#ifdef __BORLANDC__
18 #pragma hdrstop
19#endif
20
21#if wxUSE_SOCKETS
22
23/*
24 * DONE: for WinCE we need to replace WSAAsyncSelect
25 * (Windows message-based notification of network events for a socket)
26 * with another mechanism.
27 * As WSAAsyncSelect is not present on WinCE, it now uses
28 * WSACreateEvent, WSAEventSelect, WSAWaitForMultipleEvents and WSAEnumNetworkEvents.
29 * When enabling eventhandling for a socket a new thread it created that keeps track of the events
30 * and posts a messageto the hidden window to use the standard message loop.
31 */
32
33/* including rasasync.h (included from windows.h itself included from
34 * wx/setup.h and/or winsock.h results in this warning for
35 * RPCNOTIFICATION_ROUTINE
36 */
37#ifdef _MSC_VER
38# pragma warning(disable:4115) /* named type definition in parentheses */
39#endif
40
41#include "wx/private/socket.h"
42#include "wx/apptrait.h"
43#include "wx/link.h"
44
45wxFORCE_LINK_THIS_MODULE(gsockmsw)
46
47extern "C" WXDLLIMPEXP_BASE HINSTANCE wxGetInstance();
48#define INSTANCE wxGetInstance()
49
50#ifdef __WXWINCE__
51#include <winsock.h>
52#include "wx/msw/wince/net.h"
53#include "wx/hashmap.h"
54WX_DECLARE_HASH_MAP(int,bool,wxIntegerHash,wxIntegerEqual,SocketHash);
55#endif
56
57#include <string.h>
58#include <stdio.h>
59#include <stdlib.h>
60#include <stddef.h>
61#include <ctype.h>
62
63#include <winsock.h>
64
65#ifdef _MSC_VER
66# pragma warning(default:4115) /* named type definition in parentheses */
67#endif
68
69#define CLASSNAME TEXT("_wxSocket_Internal_Window_Class")
70
71/* implemented in utils.cpp */
72extern "C" WXDLLIMPEXP_BASE HWND
73wxCreateHiddenWindow(LPCTSTR *pclassname, LPCTSTR classname, WNDPROC wndproc);
74
75/* Maximum number of different wxSocket objects at a given time.
76 * This value can be modified at will, but it CANNOT be greater
77 * than (0x7FFF - WM_USER + 1)
78 */
79#define MAXSOCKETS 1024
80
81#if (MAXSOCKETS > (0x7FFF - WM_USER + 1))
82#error "MAXSOCKETS is too big!"
83#endif
84
85#ifndef __WXWINCE__
86typedef int (PASCAL *WSAAsyncSelectFunc)(SOCKET,HWND,u_int,long);
87#else
88/* Typedef the needed function prototypes and the WSANETWORKEVENTS structure
89*/
90typedef struct _WSANETWORKEVENTS {
91 long lNetworkEvents;
92 int iErrorCode[10];
93} WSANETWORKEVENTS, FAR * LPWSANETWORKEVENTS;
94typedef HANDLE (PASCAL *WSACreateEventFunc)();
95typedef int (PASCAL *WSAEventSelectFunc)(SOCKET,HANDLE,long);
96typedef int (PASCAL *WSAWaitForMultipleEventsFunc)(long,HANDLE,BOOL,long,BOOL);
97typedef int (PASCAL *WSAEnumNetworkEventsFunc)(SOCKET,HANDLE,LPWSANETWORKEVENTS);
98#endif //__WXWINCE__
99
100LRESULT CALLBACK wxSocket_Internal_WinProc(HWND, UINT, WPARAM, LPARAM);
101
102/* Global variables */
103
104static HWND hWin;
105static CRITICAL_SECTION critical;
106static wxSocketImplMSW *socketList[MAXSOCKETS];
107static int firstAvailable;
108
109#ifndef __WXWINCE__
110static WSAAsyncSelectFunc gs_WSAAsyncSelect = NULL;
111#else
112static SocketHash socketHash;
113static unsigned int currSocket;
114HANDLE hThread[MAXSOCKETS];
115static WSACreateEventFunc gs_WSACreateEvent = NULL;
116static WSAEventSelectFunc gs_WSAEventSelect = NULL;
117static WSAWaitForMultipleEventsFunc gs_WSAWaitForMultipleEvents = NULL;
118static WSAEnumNetworkEventsFunc gs_WSAEnumNetworkEvents = NULL;
119/* This structure will be used to pass data on to the thread that handles socket events.
120*/
121typedef struct thread_data{
122 HWND hEvtWin;
123 unsigned long msgnumber;
124 unsigned long fd;
125 unsigned long lEvent;
126}thread_data;
127#endif
128
129static HMODULE gs_wsock32dll = 0;
130
131
132#ifdef __WXWINCE__
133/* This thread handles socket events on WinCE using WSAEventSelect() as WSAAsyncSelect is not supported.
134* When an event occures for the socket, it is checked what kind of event happend and the correct message gets posted
135* so that the hidden window can handle it as it would in other MSW builds.
136*/
137DWORD WINAPI SocketThread(LPVOID data)
138{
139 WSANETWORKEVENTS NetworkEvents;
140 thread_data* d = (thread_data *)data;
141
142 HANDLE NetworkEvent = gs_WSACreateEvent();
143 gs_WSAEventSelect(d->fd, NetworkEvent, d->lEvent);
144
145 while(socketHash[d->fd] == true)
146 {
147 if ((gs_WSAWaitForMultipleEvents(1, &NetworkEvent, FALSE,INFINITE, FALSE)) == WAIT_FAILED)
148 {
149 printf("WSAWaitForMultipleEvents failed with error %d\n", WSAGetLastError());
150 return 0;
151 }
152 if (gs_WSAEnumNetworkEvents(d->fd ,NetworkEvent, &NetworkEvents) == SOCKET_ERROR)
153 {
154 printf("WSAEnumNetworkEvents failed with error %d\n", WSAGetLastError());
155 return 0;
156 }
157
158 long flags = NetworkEvents.lNetworkEvents;
159 if (flags & FD_READ)
160 ::PostMessage(d->hEvtWin, d->msgnumber,d->fd, FD_READ);
161 if (flags & FD_WRITE)
162 ::PostMessage(d->hEvtWin, d->msgnumber,d->fd, FD_WRITE);
163 if (flags & FD_OOB)
164 ::PostMessage(d->hEvtWin, d->msgnumber,d->fd, FD_OOB);
165 if (flags & FD_ACCEPT)
166 ::PostMessage(d->hEvtWin, d->msgnumber,d->fd, FD_ACCEPT);
167 if (flags & FD_CONNECT)
168 ::PostMessage(d->hEvtWin, d->msgnumber,d->fd, FD_CONNECT);
169 if (flags & FD_CLOSE)
170 ::PostMessage(d->hEvtWin, d->msgnumber,d->fd, FD_CLOSE);
171
172 }
173 gs_WSAEventSelect(d->fd, NetworkEvent, 0);
174 ExitThread(0);
175 return 0;
176}
177#endif
178
179// ----------------------------------------------------------------------------
180// MSW implementation of wxSocketManager
181// ----------------------------------------------------------------------------
182
183class wxSocketMSWManager : public wxSocketManager
184{
185public:
186 virtual bool OnInit();
187 virtual void OnExit();
188
189 virtual wxSocketImpl *CreateSocket(wxSocketBase& wxsocket)
190 {
191 return new wxSocketImplMSW(wxsocket);
192 }
193 virtual void Install_Callback(wxSocketImpl *socket, wxSocketNotify event);
194 virtual void Uninstall_Callback(wxSocketImpl *socket, wxSocketNotify event);
195};
196
197/* Global initializers */
198
199bool wxSocketMSWManager::OnInit()
200{
201 static LPCTSTR pclassname = NULL;
202 int i;
203
204 /* Create internal window for event notifications */
205 hWin = wxCreateHiddenWindow(&pclassname, CLASSNAME, wxSocket_Internal_WinProc);
206 if (!hWin)
207 return false;
208
209 /* Initialize socket list */
210 InitializeCriticalSection(&critical);
211
212 for (i = 0; i < MAXSOCKETS; i++)
213 {
214 socketList[i] = NULL;
215 }
216 firstAvailable = 0;
217
218 /* Load WSAAsyncSelect from wsock32.dll (we don't link against it
219 statically to avoid dependency on wsock32.dll for apps that don't use
220 sockets): */
221#ifndef __WXWINCE__
222 gs_wsock32dll = LoadLibrary(wxT("wsock32.dll"));
223 if (!gs_wsock32dll)
224 return false;
225 gs_WSAAsyncSelect =(WSAAsyncSelectFunc)GetProcAddress(gs_wsock32dll,
226 "WSAAsyncSelect");
227 if (!gs_WSAAsyncSelect)
228 return false;
229#else
230/* On WinCE we load ws2.dll which will provide the needed functions.
231*/
232 gs_wsock32dll = LoadLibrary(wxT("ws2.dll"));
233 if (!gs_wsock32dll)
234 return false;
235 gs_WSAEventSelect =(WSAEventSelectFunc)GetProcAddress(gs_wsock32dll,
236 wxT("WSAEventSelect"));
237 if (!gs_WSAEventSelect)
238 return false;
239
240 gs_WSACreateEvent =(WSACreateEventFunc)GetProcAddress(gs_wsock32dll,
241 wxT("WSACreateEvent"));
242 if (!gs_WSACreateEvent)
243 return false;
244
245 gs_WSAWaitForMultipleEvents =(WSAWaitForMultipleEventsFunc)GetProcAddress(gs_wsock32dll,
246 wxT("WSAWaitForMultipleEvents"));
247 if (!gs_WSAWaitForMultipleEvents)
248 return false;
249
250 gs_WSAEnumNetworkEvents =(WSAEnumNetworkEventsFunc)GetProcAddress(gs_wsock32dll,
251 wxT("WSAEnumNetworkEvents"));
252 if (!gs_WSAEnumNetworkEvents)
253 return false;
254
255 currSocket = 0;
256#endif
257
258 // finally initialize WinSock
259 WSADATA wsaData;
260 return WSAStartup((1 << 8) | 1, &wsaData) == 0;
261}
262
263void wxSocketMSWManager::OnExit()
264{
265#ifdef __WXWINCE__
266/* Delete the threads here */
267 for(unsigned int i=0; i < currSocket; i++)
268 CloseHandle(hThread[i]);
269#endif
270 /* Destroy internal window */
271 DestroyWindow(hWin);
272 UnregisterClass(CLASSNAME, INSTANCE);
273
274 /* Unlock wsock32.dll */
275 if (gs_wsock32dll)
276 {
277 FreeLibrary(gs_wsock32dll);
278 gs_wsock32dll = 0;
279 }
280
281 /* Delete critical section */
282 DeleteCriticalSection(&critical);
283
284 WSACleanup();
285}
286
287/* Per-socket GUI initialization / cleanup */
288
289wxSocketImplMSW::wxSocketImplMSW(wxSocketBase& wxsocket)
290 : wxSocketImpl(wxsocket)
291{
292 /* Allocate a new message number for this socket */
293 EnterCriticalSection(&critical);
294
295 int i = firstAvailable;
296 while (socketList[i] != NULL)
297 {
298 i = (i + 1) % MAXSOCKETS;
299
300 if (i == firstAvailable) /* abort! */
301 {
302 LeaveCriticalSection(&critical);
303 m_msgnumber = 0; // invalid
304 return;
305 }
306 }
307 socketList[i] = this;
308 firstAvailable = (i + 1) % MAXSOCKETS;
309 m_msgnumber = (i + WM_USER);
310
311 LeaveCriticalSection(&critical);
312}
313
314wxSocketImplMSW::~wxSocketImplMSW()
315{
316 /* Remove the socket from the list */
317 EnterCriticalSection(&critical);
318
319 if ( m_msgnumber )
320 {
321 // we need to remove any pending messages for this socket to avoid having
322 // them sent to a new socket which could reuse the same message number as
323 // soon as we destroy this one
324 MSG msg;
325 while ( ::PeekMessage(&msg, hWin, m_msgnumber, m_msgnumber, PM_REMOVE) )
326 ;
327
328 socketList[m_msgnumber - WM_USER] = NULL;
329 }
330 //else: the socket has never been created successfully
331
332 LeaveCriticalSection(&critical);
333}
334
335/* Windows proc for asynchronous event handling */
336
337LRESULT CALLBACK wxSocket_Internal_WinProc(HWND hWnd,
338 UINT uMsg,
339 WPARAM wParam,
340 LPARAM lParam)
341{
342 wxSocketImplMSW *socket;
343 wxSocketNotify event;
344
345 if (uMsg >= WM_USER && uMsg <= (WM_USER + MAXSOCKETS - 1))
346 {
347 EnterCriticalSection(&critical);
348 socket = socketList[(uMsg - WM_USER)];
349 event = (wxSocketNotify) -1;
350
351 /* Check that the socket still exists (it has not been
352 * destroyed) and for safety, check that the m_fd field
353 * is what we expect it to be.
354 */
355 if ((socket != NULL) && ((WPARAM)socket->m_fd == wParam))
356 {
357 switch WSAGETSELECTEVENT(lParam)
358 {
359 case FD_READ: event = wxSOCKET_INPUT; break;
360 case FD_WRITE: event = wxSOCKET_OUTPUT; break;
361 case FD_ACCEPT: event = wxSOCKET_CONNECTION; break;
362 case FD_CONNECT:
363 {
364 if (WSAGETSELECTERROR(lParam) != 0)
365 event = wxSOCKET_LOST;
366 else
367 event = wxSOCKET_CONNECTION;
368 break;
369 }
370 case FD_CLOSE: event = wxSOCKET_LOST; break;
371 }
372
373 if (event != -1)
374 {
375 if (event == wxSOCKET_LOST)
376 socket->m_detected = wxSOCKET_LOST_FLAG;
377 else
378 socket->m_detected |= (1 << event);
379 }
380 }
381
382 LeaveCriticalSection(&critical);
383
384 if ( socket )
385 socket->NotifyOnStateChange(event);
386
387 return (LRESULT) 0;
388 }
389 else
390 return DefWindowProc(hWnd, uMsg, wParam, lParam);
391}
392
393/*
394 * Enable all event notifications; we need to be notified of all
395 * events for internal processing, but we will only notify users
396 * when an appropriate callback function has been installed.
397 */
398void wxSocketMSWManager::Install_Callback(wxSocketImpl *socket_,
399 wxSocketNotify WXUNUSED(event))
400{
401 wxSocketImplMSW * const socket = static_cast<wxSocketImplMSW *>(socket_);
402
403 if (socket->m_fd != INVALID_SOCKET)
404 {
405 /* We could probably just subscribe to all events regardless
406 * of the socket type, but MS recommends to do it this way.
407 */
408 long lEvent = socket->m_server?
409 FD_ACCEPT : (FD_READ | FD_WRITE | FD_CONNECT | FD_CLOSE);
410#ifndef __WXWINCE__
411 gs_WSAAsyncSelect(socket->m_fd, hWin, socket->m_msgnumber, lEvent);
412#else
413/*
414* WinCE creates a thread for socket event handling.
415* All needed parameters get passed through the thread_data structure.
416*/
417
418 thread_data* d = new thread_data;
419 d->lEvent = lEvent;
420 d->hEvtWin = hWin;
421 d->msgnumber = socket->m_msgnumber;
422 d->fd = socket->m_fd;
423 socketHash[socket->m_fd] = true;
424 hThread[currSocket++] = CreateThread(NULL, 0, &SocketThread,(LPVOID)d, 0, NULL);
425#endif
426 }
427}
428
429/*
430 * Disable event notifications (used when shutting down the socket)
431 */
432void wxSocketMSWManager::Uninstall_Callback(wxSocketImpl *socket_,
433 wxSocketNotify WXUNUSED(event))
434{
435 wxSocketImplMSW * const socket = static_cast<wxSocketImplMSW *>(socket_);
436
437 if (socket->m_fd != INVALID_SOCKET)
438 {
439#ifndef __WXWINCE__
440 gs_WSAAsyncSelect(socket->m_fd, hWin, socket->m_msgnumber, 0);
441#else
442 //Destroy the thread
443 socketHash[socket->m_fd] = false;
444#endif
445 }
446}
447
448// set the wxBase variable to point to our wxSocketManager implementation
449//
450// see comments in wx/apptrait.h for the explanation of why do we do it
451// like this
452static struct ManagerSetter
453{
454 ManagerSetter()
455 {
456 static wxSocketMSWManager s_manager;
457 wxAppTraits::SetDefaultSocketManager(&s_manager);
458 }
459} gs_managerSetter;
460
461#endif // wxUSE_SOCKETS