]> git.saurik.com Git - wxWidgets.git/blame - src/msw/dialup.cpp
fill in the fields of wxListItem in a wxListEvent before handling the event (closes...
[wxWidgets.git] / src / msw / dialup.cpp
CommitLineData
a0b4c98b 1/////////////////////////////////////////////////////////////////////////////
670f9935 2// Name: src/msw/dialup.cpp
a0b4c98b
VZ
3// Purpose: MSW implementation of network/dialup classes and functions
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 07.07.99
7// RCS-ID: $Id$
8// Copyright: (c) Vadim Zeitlin
65571936 9// Licence: wxWindows licence
a0b4c98b
VZ
10/////////////////////////////////////////////////////////////////////////////
11
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
20// for compilers that support precompilation, includes "wx.h".
21#include "wx/wxprec.h"
22
23#ifdef __BORLANDC__
24 #pragma hdrstop
25#endif
26
a0b4c98b
VZ
27#if wxUSE_DIALUP_MANAGER
28
670f9935
WS
29#include "wx/dialup.h"
30
a0b4c98b
VZ
31#ifndef WX_PRECOMP
32 #include "wx/log.h"
d1f4970d
VZ
33 #include "wx/intl.h"
34 #include "wx/event.h"
670f9935 35 #include "wx/app.h"
c0badb70 36 #include "wx/timer.h"
02761f6c 37 #include "wx/module.h"
a0b4c98b
VZ
38#endif
39
fcec6429
VZ
40#include "wx/generic/choicdgg.h"
41
a0b4c98b 42#include "wx/dynlib.h"
a0b4c98b 43
9b11752c
VZ
44wxDEFINE_EVENT( wxEVT_DIALUP_CONNECTED, wxDialUpEvent );
45wxDEFINE_EVENT( wxEVT_DIALUP_DISCONNECTED, wxDialUpEvent );
2e4df4bf 46
3bce6687
JS
47// Doesn't yet compile under VC++ 4, BC++, Watcom C++,
48// Wine: no wininet.h
3aabb24c 49#if (!defined(__BORLANDC__) || (__BORLANDC__>=0x550)) && \
ce20b5d7 50 (!defined(__GNUWIN32__) || wxCHECK_W32API_VERSION(0, 5)) && \
7ba4fbeb 51 !defined(__GNUWIN32_OLD__) && \
5283098e 52 !defined(__WINE__) && \
7ba4fbeb 53 (!defined(__VISUALC__) || (__VISUALC__ >= 1020))
106f0395 54
a0b4c98b
VZ
55#include <ras.h>
56#include <raserror.h>
57
2690830e
VZ
58#include <wininet.h>
59
a2327a9f
JS
60// Not in VC++ 5
61#ifndef INTERNET_CONNECTION_LAN
62#define INTERNET_CONNECTION_LAN 2
63#endif
64#ifndef INTERNET_CONNECTION_PROXY
65#define INTERNET_CONNECTION_PROXY 4
66#endif
67
8563c6f1
VZ
68// implemented in utils.cpp
69extern "C" WXDLLIMPEXP_BASE HWND
70wxCreateHiddenWindow(LPCTSTR *pclassname, LPCTSTR classname, WNDPROC wndproc);
71
72static const wxChar *
73 wxMSWDIALUP_WNDCLASSNAME = wxT("_wxDialUpManager_Internal_Class");
74static const wxChar *gs_classForDialUpWindow = NULL;
75
a0b4c98b
VZ
76// ----------------------------------------------------------------------------
77// constants
78// ----------------------------------------------------------------------------
79
80// this message is sent by the secondary thread when RAS status changes
81#define wxWM_RAS_STATUS_CHANGED (WM_USER + 10010)
2690830e 82#define wxWM_RAS_DIALING_PROGRESS (WM_USER + 10011)
a0b4c98b
VZ
83
84// ----------------------------------------------------------------------------
85// types
86// ----------------------------------------------------------------------------
87
88// the signatures of RAS functions: all this is quite heavy, but we must do it
89// to allow running wxWin programs on machine which don't have RAS installed
90// (this does exist) - if we link with rasapi32.lib, the program will fail on
91// startup because of the missing DLL...
92
93#ifndef UNICODE
2690830e
VZ
94 typedef DWORD (APIENTRY * RASDIAL)( LPRASDIALEXTENSIONS, LPCSTR, LPRASDIALPARAMSA, DWORD, LPVOID, LPHRASCONN );
95 typedef DWORD (APIENTRY * RASENUMCONNECTIONS)( LPRASCONNA, LPDWORD, LPDWORD );
96 typedef DWORD (APIENTRY * RASENUMENTRIES)( LPCSTR, LPCSTR, LPRASENTRYNAMEA, LPDWORD, LPDWORD );
97 typedef DWORD (APIENTRY * RASGETCONNECTSTATUS)( HRASCONN, LPRASCONNSTATUSA );
98 typedef DWORD (APIENTRY * RASGETERRORSTRING)( UINT, LPSTR, DWORD );
99 typedef DWORD (APIENTRY * RASHANGUP)( HRASCONN );
100 typedef DWORD (APIENTRY * RASGETPROJECTIONINFO)( HRASCONN, RASPROJECTION, LPVOID, LPDWORD );
101 typedef DWORD (APIENTRY * RASCREATEPHONEBOOKENTRY)( HWND, LPCSTR );
102 typedef DWORD (APIENTRY * RASEDITPHONEBOOKENTRY)( HWND, LPCSTR, LPCSTR );
103 typedef DWORD (APIENTRY * RASSETENTRYDIALPARAMS)( LPCSTR, LPRASDIALPARAMSA, BOOL );
104 typedef DWORD (APIENTRY * RASGETENTRYDIALPARAMS)( LPCSTR, LPRASDIALPARAMSA, LPBOOL );
105 typedef DWORD (APIENTRY * RASENUMDEVICES)( LPRASDEVINFOA, LPDWORD, LPDWORD );
106 typedef DWORD (APIENTRY * RASGETCOUNTRYINFO)( LPRASCTRYINFOA, LPDWORD );
107 typedef DWORD (APIENTRY * RASGETENTRYPROPERTIES)( LPCSTR, LPCSTR, LPRASENTRYA, LPDWORD, LPBYTE, LPDWORD );
108 typedef DWORD (APIENTRY * RASSETENTRYPROPERTIES)( LPCSTR, LPCSTR, LPRASENTRYA, DWORD, LPBYTE, DWORD );
109 typedef DWORD (APIENTRY * RASRENAMEENTRY)( LPCSTR, LPCSTR, LPCSTR );
110 typedef DWORD (APIENTRY * RASDELETEENTRY)( LPCSTR, LPCSTR );
111 typedef DWORD (APIENTRY * RASVALIDATEENTRYNAME)( LPCSTR, LPCSTR );
112 typedef DWORD (APIENTRY * RASCONNECTIONNOTIFICATION)( HRASCONN, HANDLE, DWORD );
a0b4c98b 113
f6bcfd97 114 static const wxChar gs_funcSuffix = _T('A');
a0b4c98b 115#else // Unicode
2690830e
VZ
116 typedef DWORD (APIENTRY * RASDIAL)( LPRASDIALEXTENSIONS, LPCWSTR, LPRASDIALPARAMSW, DWORD, LPVOID, LPHRASCONN );
117 typedef DWORD (APIENTRY * RASENUMCONNECTIONS)( LPRASCONNW, LPDWORD, LPDWORD );
118 typedef DWORD (APIENTRY * RASENUMENTRIES)( LPCWSTR, LPCWSTR, LPRASENTRYNAMEW, LPDWORD, LPDWORD );
119 typedef DWORD (APIENTRY * RASGETCONNECTSTATUS)( HRASCONN, LPRASCONNSTATUSW );
120 typedef DWORD (APIENTRY * RASGETERRORSTRING)( UINT, LPWSTR, DWORD );
121 typedef DWORD (APIENTRY * RASHANGUP)( HRASCONN );
122 typedef DWORD (APIENTRY * RASGETPROJECTIONINFO)( HRASCONN, RASPROJECTION, LPVOID, LPDWORD );
123 typedef DWORD (APIENTRY * RASCREATEPHONEBOOKENTRY)( HWND, LPCWSTR );
124 typedef DWORD (APIENTRY * RASEDITPHONEBOOKENTRY)( HWND, LPCWSTR, LPCWSTR );
125 typedef DWORD (APIENTRY * RASSETENTRYDIALPARAMS)( LPCWSTR, LPRASDIALPARAMSW, BOOL );
126 typedef DWORD (APIENTRY * RASGETENTRYDIALPARAMS)( LPCWSTR, LPRASDIALPARAMSW, LPBOOL );
127 typedef DWORD (APIENTRY * RASENUMDEVICES)( LPRASDEVINFOW, LPDWORD, LPDWORD );
128 typedef DWORD (APIENTRY * RASGETCOUNTRYINFO)( LPRASCTRYINFOW, LPDWORD );
129 typedef DWORD (APIENTRY * RASGETENTRYPROPERTIES)( LPCWSTR, LPCWSTR, LPRASENTRYW, LPDWORD, LPBYTE, LPDWORD );
130 typedef DWORD (APIENTRY * RASSETENTRYPROPERTIES)( LPCWSTR, LPCWSTR, LPRASENTRYW, DWORD, LPBYTE, DWORD );
131 typedef DWORD (APIENTRY * RASRENAMEENTRY)( LPCWSTR, LPCWSTR, LPCWSTR );
132 typedef DWORD (APIENTRY * RASDELETEENTRY)( LPCWSTR, LPCWSTR );
133 typedef DWORD (APIENTRY * RASVALIDATEENTRYNAME)( LPCWSTR, LPCWSTR );
134 typedef DWORD (APIENTRY * RASCONNECTIONNOTIFICATION)( HRASCONN, HANDLE, DWORD );
a0b4c98b 135
f6bcfd97 136 static const wxChar gs_funcSuffix = _T('W');
a0b4c98b
VZ
137#endif // ASCII/Unicode
138
139// structure passed to the secondary thread
3b415ba4 140struct WXDLLEXPORT wxRasThreadData
a0b4c98b
VZ
141{
142 wxRasThreadData()
143 {
144 hWnd = 0;
97247d36
VZ
145 hEventRas =
146 hEventQuit = 0;
a0b4c98b
VZ
147 dialUpManager = NULL;
148 }
149
97247d36
VZ
150 ~wxRasThreadData()
151 {
152 if ( hWnd )
153 DestroyWindow(hWnd);
154
155 if ( hEventQuit )
156 CloseHandle(hEventQuit);
157
158 if ( hEventRas )
159 CloseHandle(hEventRas);
160 }
161
a0b4c98b 162 HWND hWnd; // window to send notifications to
97247d36
VZ
163 HANDLE hEventRas, // automatic event which RAS signals when status changes
164 hEventQuit; // manual event which we signal when we terminate
a0b4c98b 165
fb1a4789 166 class WXDLLIMPEXP_FWD_CORE wxDialUpManagerMSW *dialUpManager; // the owner
a0b4c98b
VZ
167};
168
169// ----------------------------------------------------------------------------
170// wxDialUpManager class for MSW
171// ----------------------------------------------------------------------------
172
173class WXDLLEXPORT wxDialUpManagerMSW : public wxDialUpManager
174{
175public:
176 // ctor & dtor
177 wxDialUpManagerMSW();
178 virtual ~wxDialUpManagerMSW();
179
180 // implement base class pure virtuals
181 virtual bool IsOk() const;
2690830e 182 virtual size_t GetISPNames(wxArrayString& names) const;
a0b4c98b
VZ
183 virtual bool Dial(const wxString& nameOfISP,
184 const wxString& username,
185 const wxString& password,
186 bool async);
187 virtual bool IsDialing() const;
188 virtual bool CancelDialing();
189 virtual bool HangUp();
2690830e 190 virtual bool IsAlwaysOnline() const;
a0b4c98b 191 virtual bool IsOnline() const;
d71cc120 192 virtual void SetOnlineStatus(bool isOnline = true);
a0b4c98b
VZ
193 virtual bool EnableAutoCheckOnlineStatus(size_t nSeconds);
194 virtual void DisableAutoCheckOnlineStatus();
195 virtual void SetWellKnownHost(const wxString& hostname, int port);
196 virtual void SetConnectCommand(const wxString& commandDial,
197 const wxString& commandHangup);
198
199 // for RasTimer
200 void CheckRasStatus();
201
202 // for wxRasStatusWindowProc
203 void OnConnectStatusChange();
2690830e 204 void OnDialProgress(RASCONNSTATE rasconnstate, DWORD dwError);
a0b4c98b
VZ
205
206 // for wxRasDialFunc
2690830e 207 static HWND GetRasWindow() { return ms_hwndRas; }
8563c6f1 208 static void ResetRasWindow() { ms_hwndRas = NULL; }
a0b4c98b
VZ
209 static wxDialUpManagerMSW *GetDialer() { return ms_dialer; }
210
211private:
212 // return the error string for the given RAS error code
213 static wxString GetErrorString(DWORD error);
214
215 // find the (first) handle of the active connection
216 static HRASCONN FindActiveConnection();
217
218 // notify the application about status change
d71cc120 219 void NotifyApp(bool connected, bool fromOurselves = false) const;
a0b4c98b
VZ
220
221 // destroy the thread data and the thread itself
222 void CleanUpThreadData();
223
6bba111c
VZ
224 // number of times EnableAutoCheckOnlineStatus() had been called minus the
225 // number of times DisableAutoCheckOnlineStatus() had been called
226 int m_autoCheckLevel;
227
a0b4c98b 228 // timer used for polling RAS status
3b415ba4 229 class WXDLLEXPORT RasTimer : public wxTimer
a0b4c98b
VZ
230 {
231 public:
232 RasTimer(wxDialUpManagerMSW *dialUpManager)
233 { m_dialUpManager = dialUpManager; }
234
235 virtual void Notify() { m_dialUpManager->CheckRasStatus(); }
236
237 private:
238 wxDialUpManagerMSW *m_dialUpManager;
2eb10e2a 239
c0c133e1 240 wxDECLARE_NO_COPY_CLASS(RasTimer);
a0b4c98b
VZ
241 } m_timerStatusPolling;
242
243 // thread handle for the thread sitting on connection change event
244 HANDLE m_hThread;
245
246 // data used by this thread and our hidden window to send messages between
247 // each other
97247d36 248 wxRasThreadData *m_data;
a0b4c98b 249
4f89dbc4 250 // the handle of rasapi32.dll when it's loaded
4522bb3e 251 wxDynamicLibrary m_dllRas;
4f89dbc4 252
2690830e
VZ
253 // the hidden window we use for passing messages between threads
254 static HWND ms_hwndRas;
255
a0b4c98b
VZ
256 // the handle of the connection we initiated or 0 if none
257 static HRASCONN ms_hRasConnection;
258
a0b4c98b
VZ
259 // the pointers to RAS functions
260 static RASDIAL ms_pfnRasDial;
261 static RASENUMCONNECTIONS ms_pfnRasEnumConnections;
262 static RASENUMENTRIES ms_pfnRasEnumEntries;
263 static RASGETCONNECTSTATUS ms_pfnRasGetConnectStatus;
264 static RASGETERRORSTRING ms_pfnRasGetErrorString;
265 static RASHANGUP ms_pfnRasHangUp;
266 static RASGETPROJECTIONINFO ms_pfnRasGetProjectionInfo;
267 static RASCREATEPHONEBOOKENTRY ms_pfnRasCreatePhonebookEntry;
268 static RASEDITPHONEBOOKENTRY ms_pfnRasEditPhonebookEntry;
269 static RASSETENTRYDIALPARAMS ms_pfnRasSetEntryDialParams;
270 static RASGETENTRYDIALPARAMS ms_pfnRasGetEntryDialParams;
271 static RASENUMDEVICES ms_pfnRasEnumDevices;
272 static RASGETCOUNTRYINFO ms_pfnRasGetCountryInfo;
273 static RASGETENTRYPROPERTIES ms_pfnRasGetEntryProperties;
274 static RASSETENTRYPROPERTIES ms_pfnRasSetEntryProperties;
275 static RASRENAMEENTRY ms_pfnRasRenameEntry;
276 static RASDELETEENTRY ms_pfnRasDeleteEntry;
277 static RASVALIDATEENTRYNAME ms_pfnRasValidateEntryName;
278
279 // this function is not supported by Win95
280 static RASCONNECTIONNOTIFICATION ms_pfnRasConnectionNotification;
281
282 // if this flag is different from -1, it overrides IsOnline()
283 static int ms_userSpecifiedOnlineStatus;
284
285 // this flag tells us if we're online
286 static int ms_isConnected;
287
288 // this flag tells us whether a call to RasDial() is in progress
289 static wxDialUpManagerMSW *ms_dialer;
2eb10e2a 290
c0c133e1 291 wxDECLARE_NO_COPY_CLASS(wxDialUpManagerMSW);
a0b4c98b
VZ
292};
293
8563c6f1
VZ
294// module to destroy helper window created by wxDialUpManagerMSW
295class wxDialUpManagerModule : public wxModule
296{
297public:
298 bool OnInit() { return true; }
299 void OnExit()
300 {
301 HWND hwnd = wxDialUpManagerMSW::GetRasWindow();
302 if ( hwnd )
303 {
304 ::DestroyWindow(hwnd);
305 wxDialUpManagerMSW::ResetRasWindow();
306 }
307
308 if ( gs_classForDialUpWindow )
309 {
310 ::UnregisterClass(wxMSWDIALUP_WNDCLASSNAME, wxGetInstance());
311 gs_classForDialUpWindow = NULL;
312 }
313 }
314
315private:
316 DECLARE_DYNAMIC_CLASS(wxDialUpManagerModule)
317};
318
319IMPLEMENT_DYNAMIC_CLASS(wxDialUpManagerModule, wxModule)
320
a0b4c98b
VZ
321// ----------------------------------------------------------------------------
322// private functions
323// ----------------------------------------------------------------------------
324
325static LRESULT WINAPI wxRasStatusWindowProc(HWND hWnd, UINT message,
326 WPARAM wParam, LPARAM lParam);
327
328static DWORD wxRasMonitorThread(wxRasThreadData *data);
329
330static void WINAPI wxRasDialFunc(UINT unMsg,
331 RASCONNSTATE rasconnstate,
332 DWORD dwError);
333
334// ============================================================================
335// implementation
336// ============================================================================
337
338// ----------------------------------------------------------------------------
339// init the static variables
340// ----------------------------------------------------------------------------
341
342HRASCONN wxDialUpManagerMSW::ms_hRasConnection = 0;
343
2690830e
VZ
344HWND wxDialUpManagerMSW::ms_hwndRas = 0;
345
a0b4c98b
VZ
346RASDIAL wxDialUpManagerMSW::ms_pfnRasDial = 0;
347RASENUMCONNECTIONS wxDialUpManagerMSW::ms_pfnRasEnumConnections = 0;
348RASENUMENTRIES wxDialUpManagerMSW::ms_pfnRasEnumEntries = 0;
349RASGETCONNECTSTATUS wxDialUpManagerMSW::ms_pfnRasGetConnectStatus = 0;
350RASGETERRORSTRING wxDialUpManagerMSW::ms_pfnRasGetErrorString = 0;
351RASHANGUP wxDialUpManagerMSW::ms_pfnRasHangUp = 0;
352RASGETPROJECTIONINFO wxDialUpManagerMSW::ms_pfnRasGetProjectionInfo = 0;
353RASCREATEPHONEBOOKENTRY wxDialUpManagerMSW::ms_pfnRasCreatePhonebookEntry = 0;
354RASEDITPHONEBOOKENTRY wxDialUpManagerMSW::ms_pfnRasEditPhonebookEntry = 0;
355RASSETENTRYDIALPARAMS wxDialUpManagerMSW::ms_pfnRasSetEntryDialParams = 0;
356RASGETENTRYDIALPARAMS wxDialUpManagerMSW::ms_pfnRasGetEntryDialParams = 0;
357RASENUMDEVICES wxDialUpManagerMSW::ms_pfnRasEnumDevices = 0;
358RASGETCOUNTRYINFO wxDialUpManagerMSW::ms_pfnRasGetCountryInfo = 0;
359RASGETENTRYPROPERTIES wxDialUpManagerMSW::ms_pfnRasGetEntryProperties = 0;
360RASSETENTRYPROPERTIES wxDialUpManagerMSW::ms_pfnRasSetEntryProperties = 0;
361RASRENAMEENTRY wxDialUpManagerMSW::ms_pfnRasRenameEntry = 0;
362RASDELETEENTRY wxDialUpManagerMSW::ms_pfnRasDeleteEntry = 0;
363RASVALIDATEENTRYNAME wxDialUpManagerMSW::ms_pfnRasValidateEntryName = 0;
364RASCONNECTIONNOTIFICATION wxDialUpManagerMSW::ms_pfnRasConnectionNotification = 0;
365
366int wxDialUpManagerMSW::ms_userSpecifiedOnlineStatus = -1;
367int wxDialUpManagerMSW::ms_isConnected = -1;
368wxDialUpManagerMSW *wxDialUpManagerMSW::ms_dialer = NULL;
369
370// ----------------------------------------------------------------------------
371// ctor and dtor: the dynamic linking happens here
372// ----------------------------------------------------------------------------
373
374// the static creator function is implemented here
375wxDialUpManager *wxDialUpManager::Create()
376{
377 return new wxDialUpManagerMSW;
378}
379
380#ifdef __VISUALC__
381 // warning about "'this' : used in base member initializer list" - so what?
382 #pragma warning(disable:4355)
383#endif // VC++
384
385wxDialUpManagerMSW::wxDialUpManagerMSW()
4522bb3e
VZ
386 : m_timerStatusPolling(this),
387 m_dllRas(_T("RASAPI32"))
a0b4c98b
VZ
388{
389 // initialize our data
6bba111c 390 m_autoCheckLevel = 0;
a0b4c98b 391 m_hThread = 0;
97247d36 392 m_data = new wxRasThreadData;
a0b4c98b 393
4f89dbc4
RL
394 if ( !m_dllRas.IsLoaded() )
395 {
396 wxLogError(_("Dial up functions are unavailable because the remote access service (RAS) is not installed on this machine. Please install it."));
397 }
1c25d245 398 else if ( !ms_pfnRasDial )
a0b4c98b 399 {
4f89dbc4
RL
400 // resolve the functions we need
401
402 // this will contain the name of the function we failed to resolve
403 // if any at the end
404 const char *funcName = NULL;
405
406 // get the function from rasapi32.dll and abort if it's not found
407 #define RESOLVE_RAS_FUNCTION(type, name) \
408 ms_pfn##name = (type)m_dllRas.GetSymbol( wxString(_T(#name)) \
409 + gs_funcSuffix); \
410 if ( !ms_pfn##name ) \
411 { \
412 funcName = #name; \
413 goto exit; \
414 }
415
416 // a variant of above macro which doesn't abort if the function is
417 // not found in the DLL
418 #define RESOLVE_OPTIONAL_RAS_FUNCTION(type, name) \
419 ms_pfn##name = (type)m_dllRas.GetSymbol( wxString(_T(#name)) \
420 + gs_funcSuffix);
421
422 RESOLVE_RAS_FUNCTION(RASDIAL, RasDial);
423 RESOLVE_RAS_FUNCTION(RASENUMCONNECTIONS, RasEnumConnections);
424 RESOLVE_RAS_FUNCTION(RASENUMENTRIES, RasEnumEntries);
425 RESOLVE_RAS_FUNCTION(RASGETCONNECTSTATUS, RasGetConnectStatus);
426 RESOLVE_RAS_FUNCTION(RASGETERRORSTRING, RasGetErrorString);
427 RESOLVE_RAS_FUNCTION(RASHANGUP, RasHangUp);
428 RESOLVE_RAS_FUNCTION(RASGETENTRYDIALPARAMS, RasGetEntryDialParams);
429
430 // suppress error messages about missing (non essential) functions
a0b4c98b 431 {
4f89dbc4
RL
432 wxLogNull noLog;
433
434 RESOLVE_OPTIONAL_RAS_FUNCTION(RASGETPROJECTIONINFO, RasGetProjectionInfo);
435 RESOLVE_OPTIONAL_RAS_FUNCTION(RASCREATEPHONEBOOKENTRY, RasCreatePhonebookEntry);
436 RESOLVE_OPTIONAL_RAS_FUNCTION(RASEDITPHONEBOOKENTRY, RasEditPhonebookEntry);
437 RESOLVE_OPTIONAL_RAS_FUNCTION(RASSETENTRYDIALPARAMS, RasSetEntryDialParams);
438 RESOLVE_OPTIONAL_RAS_FUNCTION(RASGETENTRYPROPERTIES, RasGetEntryProperties);
439 RESOLVE_OPTIONAL_RAS_FUNCTION(RASSETENTRYPROPERTIES, RasSetEntryProperties);
440 RESOLVE_OPTIONAL_RAS_FUNCTION(RASRENAMEENTRY, RasRenameEntry);
441 RESOLVE_OPTIONAL_RAS_FUNCTION(RASDELETEENTRY, RasDeleteEntry);
442 RESOLVE_OPTIONAL_RAS_FUNCTION(RASVALIDATEENTRYNAME, RasValidateEntryName);
443 RESOLVE_OPTIONAL_RAS_FUNCTION(RASGETCOUNTRYINFO, RasGetCountryInfo);
444 RESOLVE_OPTIONAL_RAS_FUNCTION(RASENUMDEVICES, RasEnumDevices);
445 RESOLVE_OPTIONAL_RAS_FUNCTION(RASCONNECTIONNOTIFICATION, RasConnectionNotification);
a0b4c98b 446 }
a0b4c98b 447
4f89dbc4
RL
448 // keep your preprocessor name space clean
449 #undef RESOLVE_RAS_FUNCTION
450 #undef RESOLVE_OPTIONAL_RAS_FUNCTION
a0b4c98b
VZ
451
452exit:
4f89dbc4
RL
453 if ( funcName )
454 {
e6d4038a
VZ
455 wxLogError(_("The version of remote access service (RAS) installed "
456 "on this machine is too old, please upgrade (the "
457 "following required function is missing: %s)."),
458 funcName);
4f89dbc4
RL
459 m_dllRas.Unload();
460 return;
a0b4c98b
VZ
461 }
462 }
463
464 // enable auto check by default
465 EnableAutoCheckOnlineStatus(0);
466}
467
468wxDialUpManagerMSW::~wxDialUpManagerMSW()
469{
470 CleanUpThreadData();
a0b4c98b
VZ
471}
472
473// ----------------------------------------------------------------------------
474// helper functions
475// ----------------------------------------------------------------------------
476
477wxString wxDialUpManagerMSW::GetErrorString(DWORD error)
478{
479 wxChar buffer[512]; // this should be more than enough according to MS docs
480 DWORD dwRet = ms_pfnRasGetErrorString(error, buffer, WXSIZEOF(buffer));
481 switch ( dwRet )
482 {
483 case ERROR_INVALID_PARAMETER:
484 // this was a standard Win32 error probably
485 return wxString(wxSysErrorMsg(error));
486
487 default:
488 {
f6bcfd97
BP
489 wxLogSysError(dwRet,
490 _("Failed to retrieve text of RAS error message"));
a0b4c98b
VZ
491
492 wxString msg;
493 msg.Printf(_("unknown error (error code %08x)."), error);
494 return msg;
495 }
496
497 case 0:
498 // we want the error message to start from a lower case letter
907173e5 499 buffer[0] = (wxChar)wxTolower(buffer[0]);
a0b4c98b
VZ
500
501 return wxString(buffer);
502 }
503}
504
505HRASCONN wxDialUpManagerMSW::FindActiveConnection()
506{
507 // enumerate connections
508 DWORD cbBuf = sizeof(RASCONN);
509 LPRASCONN lpRasConn = (LPRASCONN)malloc(cbBuf);
510 if ( !lpRasConn )
511 {
512 // out of memory
513 return 0;
514 }
515
516 lpRasConn->dwSize = sizeof(RASCONN);
517
518 DWORD nConnections = 0;
519 DWORD dwRet = ERROR_BUFFER_TOO_SMALL;
520
521 while ( dwRet == ERROR_BUFFER_TOO_SMALL )
522 {
523 dwRet = ms_pfnRasEnumConnections(lpRasConn, &cbBuf, &nConnections);
524
525 if ( dwRet == ERROR_BUFFER_TOO_SMALL )
526 {
527 LPRASCONN lpRasConnOld = lpRasConn;
528 lpRasConn = (LPRASCONN)realloc(lpRasConn, cbBuf);
529 if ( !lpRasConn )
530 {
531 // out of memory
532 free(lpRasConnOld);
533
534 return 0;
535 }
536 }
537 else if ( dwRet == 0 )
538 {
539 // ok, success
540 break;
541 }
542 else
543 {
3103e8a9 544 // an error occurred
a0b4c98b 545 wxLogError(_("Cannot find active dialup connection: %s"),
5b09e9c2 546 GetErrorString(dwRet).c_str());
a0b4c98b
VZ
547 return 0;
548 }
549 }
550
551 HRASCONN hrasconn;
552
553 switch ( nConnections )
554 {
555 case 0:
556 // no connections
557 hrasconn = 0;
558 break;
559
560 default:
561 // more than 1 connection - we don't know what to do with this
562 // case, so give a warning but continue (taking the first
563 // connection) - the warning is really needed because this function
564 // is used, for example, to select the connection to hang up and so
565 // we may hang up the wrong connection here...
f6bcfd97 566 wxLogWarning(_("Several active dialup connections found, choosing one randomly."));
a0b4c98b
VZ
567 // fall through
568
569 case 1:
570 // exactly 1 connection, great
571 hrasconn = lpRasConn->hrasconn;
572 }
573
574 free(lpRasConn);
575
576 return hrasconn;
577}
578
579void wxDialUpManagerMSW::CleanUpThreadData()
580{
581 if ( m_hThread )
582 {
97247d36 583 if ( !SetEvent(m_data->hEventQuit) )
a0b4c98b 584 {
fcec6429 585 wxLogLastError(_T("SetEvent(RasThreadQuit)"));
a0b4c98b 586 }
97247d36
VZ
587 else // sent quit request to the background thread
588 {
589 // the thread still needs m_data so we can't free it here, rather
590 // let the thread do it itself
591 m_data = NULL;
592 }
a0b4c98b
VZ
593
594 CloseHandle(m_hThread);
595
596 m_hThread = 0;
597 }
598
97247d36 599 if ( m_data )
a0b4c98b 600 {
97247d36
VZ
601 delete m_data;
602 m_data = NULL;
a0b4c98b
VZ
603 }
604}
605
606// ----------------------------------------------------------------------------
607// connection status
608// ----------------------------------------------------------------------------
609
610void wxDialUpManagerMSW::CheckRasStatus()
611{
612 // use int, not bool to compare with -1
613 int isConnected = FindActiveConnection() != 0;
614 if ( isConnected != ms_isConnected )
615 {
616 if ( ms_isConnected != -1 )
617 {
618 // notify the program
619 NotifyApp(isConnected != 0);
620 }
621 // else: it's the first time we're called, just update the flag
622
623 ms_isConnected = isConnected;
624 }
625}
626
627void wxDialUpManagerMSW::NotifyApp(bool connected, bool fromOurselves) const
628{
629 wxDialUpEvent event(connected, fromOurselves);
630 (void)wxTheApp->ProcessEvent(event);
631}
632
633// this function is called whenever the status of any RAS connection on this
634// machine changes by RAS itself
635void wxDialUpManagerMSW::OnConnectStatusChange()
636{
637 // we know that status changed, but we don't know whether we're connected
638 // or not - so find it out
639 CheckRasStatus();
640}
641
642// this function is called by our callback which we give to RasDial() when
643// calling it asynchronously
644void wxDialUpManagerMSW::OnDialProgress(RASCONNSTATE rasconnstate,
645 DWORD dwError)
646{
647 if ( !GetDialer() )
648 {
649 // this probably means that CancelDialing() was called and we get
650 // "disconnected" notification
651 return;
652 }
653
654 // we're only interested in 2 events: connected and disconnected
655 if ( dwError )
656 {
657 wxLogError(_("Failed to establish dialup connection: %s"),
5b09e9c2 658 GetErrorString(dwError).c_str());
a0b4c98b
VZ
659
660 // we should still call RasHangUp() if we got a non 0 connection
661 if ( ms_hRasConnection )
662 {
663 ms_pfnRasHangUp(ms_hRasConnection);
664 ms_hRasConnection = 0;
665 }
666
667 ms_dialer = NULL;
668
d71cc120 669 NotifyApp(false /* !connected */, true /* we dialed ourselves */);
a0b4c98b
VZ
670 }
671 else if ( rasconnstate == RASCS_Connected )
672 {
d71cc120 673 ms_isConnected = true;
a0b4c98b
VZ
674 ms_dialer = NULL;
675
d71cc120 676 NotifyApp(true /* connected */, true /* we dialed ourselves */);
a0b4c98b
VZ
677 }
678}
679
680// ----------------------------------------------------------------------------
681// implementation of wxDialUpManager functions
682// ----------------------------------------------------------------------------
683
684bool wxDialUpManagerMSW::IsOk() const
685{
4f89dbc4 686 return m_dllRas.IsLoaded();
a0b4c98b
VZ
687}
688
2690830e
VZ
689size_t wxDialUpManagerMSW::GetISPNames(wxArrayString& names) const
690{
691 // fetch the entries
692 DWORD size = sizeof(RASENTRYNAME);
693 RASENTRYNAME *rasEntries = (RASENTRYNAME *)malloc(size);
694 rasEntries->dwSize = sizeof(RASENTRYNAME);
695
696 DWORD nEntries;
697 DWORD dwRet;
698 do
699 {
700 dwRet = ms_pfnRasEnumEntries
701 (
702 NULL, // reserved
703 NULL, // default phone book (or all)
704 rasEntries, // [out] buffer for the entries
705 &size, // [in/out] size of the buffer
706 &nEntries // [out] number of entries fetched
707 );
708
709 if ( dwRet == ERROR_BUFFER_TOO_SMALL )
710 {
711 // reallocate the buffer
fb9bea06
JS
712 void *n = realloc(rasEntries, size);
713 if (n == NULL)
714 {
715 free(rasEntries);
716 return 0;
717 }
718 rasEntries = (RASENTRYNAME *)n;
2690830e
VZ
719 }
720 else if ( dwRet != 0 )
721 {
722 // some other error - abort
5b09e9c2
VZ
723 wxLogError(_("Failed to get ISP names: %s"),
724 GetErrorString(dwRet).c_str());
2690830e
VZ
725
726 free(rasEntries);
727
728 return 0u;
729 }
730 }
731 while ( dwRet != 0 );
732
733 // process them
734 names.Empty();
735 for ( size_t n = 0; n < (size_t)nEntries; n++ )
736 {
737 names.Add(rasEntries[n].szEntryName);
738 }
739
740 free(rasEntries);
741
742 // return the number of entries
743 return names.GetCount();
744}
745
a0b4c98b
VZ
746bool wxDialUpManagerMSW::Dial(const wxString& nameOfISP,
747 const wxString& username,
748 const wxString& password,
749 bool async)
750{
2690830e 751 // check preconditions
d71cc120 752 wxCHECK_MSG( IsOk(), false, wxT("using uninitialized wxDialUpManager") );
a0b4c98b
VZ
753
754 if ( ms_hRasConnection )
755 {
223d09f6 756 wxFAIL_MSG(wxT("there is already an active connection"));
a0b4c98b 757
d71cc120 758 return true;
a0b4c98b
VZ
759 }
760
2690830e
VZ
761 // get the default ISP if none given
762 wxString entryName(nameOfISP);
763 if ( !entryName )
764 {
765 wxArrayString names;
766 size_t count = GetISPNames(names);
767 switch ( count )
768 {
769 case 0:
770 // no known ISPs, abort
771 wxLogError(_("Failed to connect: no ISP to dial."));
772
d71cc120 773 return false;
2690830e
VZ
774
775 case 1:
776 // only one ISP, choose it
777 entryName = names[0u];
778 break;
779
780 default:
781 // several ISPs, let the user choose
782 {
783 wxString *strings = new wxString[count];
784 for ( size_t i = 0; i < count; i++ )
785 {
786 strings[i] = names[i];
787 }
788
789 entryName = wxGetSingleChoice
790 (
791 _("Choose ISP to dial"),
f6bcfd97 792 _("Please choose which ISP do you want to connect to"),
2690830e
VZ
793 count,
794 strings
795 );
796
797 delete [] strings;
798
799 if ( !entryName )
800 {
801 // cancelled by user
d71cc120 802 return false;
2690830e
VZ
803 }
804 }
805 }
806 }
807
a0b4c98b
VZ
808 RASDIALPARAMS rasDialParams;
809 rasDialParams.dwSize = sizeof(rasDialParams);
64accea5 810 wxStrlcpy(rasDialParams.szEntryName, entryName.c_str(), RAS_MaxEntryName);
2690830e
VZ
811
812 // do we have the username and password?
813 if ( !username || !password )
814 {
815 BOOL gotPassword;
816 DWORD dwRet = ms_pfnRasGetEntryDialParams
817 (
818 NULL, // default phonebook
819 &rasDialParams, // [in/out] the params of this entry
820 &gotPassword // [out] did we get password?
821 );
822
823 if ( dwRet != 0 )
824 {
825 wxLogError(_("Failed to connect: missing username/password."));
826
d71cc120 827 return false;
2690830e
VZ
828 }
829 }
4f89dbc4
RL
830 else
831 {
64accea5
VZ
832 wxStrlcpy(rasDialParams.szUserName, username.c_str(), UNLEN);
833 wxStrlcpy(rasDialParams.szPassword, password.c_str(), PWLEN);
4f89dbc4 834 }
2690830e 835
4f89dbc4 836 // default values for other fields
a0b4c98b
VZ
837 rasDialParams.szPhoneNumber[0] = '\0';
838 rasDialParams.szCallbackNumber[0] = '\0';
839 rasDialParams.szCallbackNumber[0] = '\0';
840
a0b4c98b
VZ
841 rasDialParams.szDomain[0] = '*';
842 rasDialParams.szDomain[1] = '\0';
843
844 // apparently, this is not really necessary - passing NULL instead of the
845 // phone book has the same effect
846#if 0
847 wxString phoneBook;
848 if ( wxGetOsVersion() == wxWINDOWS_NT )
849 {
850 // first get the length
851 UINT nLen = ::GetSystemDirectory(NULL, 0);
852 nLen++;
853
854 if ( !::GetSystemDirectory(phoneBook.GetWriteBuf(nLen), nLen) )
855 {
856 wxLogSysError(_("Cannot find the location of address book file"));
857 }
858
859 phoneBook.UngetWriteBuf();
860
861 // this is the default phone book
862 phoneBook << "\\ras\\rasphone.pbk";
863 }
864#endif // 0
865
866 // TODO may be we should disable auto check while async dialing is in
867 // progress?
868
869 ms_dialer = this;
870
871 DWORD dwRet = ms_pfnRasDial
872 (
1c25d245
VZ
873 NULL, // no extended features
874 NULL, // default phone book file (NT only)
a0b4c98b 875 &rasDialParams,
1c25d245
VZ
876 0, // use callback for notifications
877 async ? (void *)wxRasDialFunc // cast needed for gcc 3.1
878 : 0, // no notifications, sync operation
a0b4c98b
VZ
879 &ms_hRasConnection
880 );
881
882 if ( dwRet != 0 )
883 {
bf9b6266 884 // can't pass a wxWCharBuffer through ( ... )
32efa676
VS
885 if ( async )
886 wxLogError(_("Failed to initiate dialup connection: %s"),
887 GetErrorString(dwRet).c_str());
888 else
889 wxLogError(_("Failed to establish dialup connection: %s"),
890 GetErrorString(dwRet).c_str());
a0b4c98b
VZ
891
892 // we should still call RasHangUp() if we got a non 0 connection
893 if ( ms_hRasConnection )
894 {
895 ms_pfnRasHangUp(ms_hRasConnection);
896 ms_hRasConnection = 0;
897 }
898
899 ms_dialer = NULL;
900
d71cc120 901 return false;
a0b4c98b
VZ
902 }
903
904 // for async dialing, we're not yet connected
905 if ( !async )
906 {
d71cc120 907 ms_isConnected = true;
a0b4c98b
VZ
908 }
909
d71cc120 910 return true;
a0b4c98b
VZ
911}
912
913bool wxDialUpManagerMSW::IsDialing() const
914{
915 return GetDialer() != NULL;
916}
917
918bool wxDialUpManagerMSW::CancelDialing()
919{
920 if ( !GetDialer() )
921 {
922 // silently ignore
d71cc120 923 return false;
a0b4c98b
VZ
924 }
925
223d09f6 926 wxASSERT_MSG( ms_hRasConnection, wxT("dialing but no connection?") );
a0b4c98b
VZ
927
928 ms_dialer = NULL;
929
930 return HangUp();
931}
932
933bool wxDialUpManagerMSW::HangUp()
934{
d71cc120 935 wxCHECK_MSG( IsOk(), false, wxT("using uninitialized wxDialUpManager") );
a0b4c98b
VZ
936
937 // we may terminate either the connection we initiated or another one which
938 // is active now
939 HRASCONN hRasConn;
940 if ( ms_hRasConnection )
941 {
942 hRasConn = ms_hRasConnection;
943
944 ms_hRasConnection = 0;
945 }
946 else
947 {
948 hRasConn = FindActiveConnection();
949 }
950
951 if ( !hRasConn )
952 {
953 wxLogError(_("Cannot hang up - no active dialup connection."));
954
d71cc120 955 return false;
a0b4c98b
VZ
956 }
957
fbd3c46d
VZ
958 // note that it's not an error if the connection had been already
959 // terminated
960 const DWORD dwRet = ms_pfnRasHangUp(hRasConn);
961 if ( dwRet != 0 && dwRet != ERROR_NO_CONNECTION )
a0b4c98b
VZ
962 {
963 wxLogError(_("Failed to terminate the dialup connection: %s"),
5b09e9c2 964 GetErrorString(dwRet).c_str());
a0b4c98b
VZ
965 }
966
d71cc120 967 ms_isConnected = false;
a0b4c98b 968
d71cc120 969 return true;
a0b4c98b
VZ
970}
971
2690830e
VZ
972bool wxDialUpManagerMSW::IsAlwaysOnline() const
973{
19caf229 974 // assume no permanent connection by default
d71cc120 975 bool isAlwaysOnline = false;
2690830e 976
19caf229 977 // try to use WinInet functions
4f89dbc4
RL
978
979 // NB: we could probably use wxDynamicLibrary here just as well,
980 // but we allow multiple instances of wxDialUpManagerMSW so
981 // we might as well use the ref counted version here too.
982
4522bb3e 983 wxDynamicLibrary hDll(_T("WININET"));
4f89dbc4 984 if ( hDll.IsLoaded() )
2690830e 985 {
5a56be28 986 typedef BOOL (WINAPI *INTERNETGETCONNECTEDSTATE)(LPDWORD, DWORD);
2690830e
VZ
987 INTERNETGETCONNECTEDSTATE pfnInternetGetConnectedState;
988
989 #define RESOLVE_FUNCTION(type, name) \
4f89dbc4 990 pfn##name = (type)hDll.GetSymbol(_T(#name))
2690830e
VZ
991
992 RESOLVE_FUNCTION(INTERNETGETCONNECTEDSTATE, InternetGetConnectedState);
993
994 if ( pfnInternetGetConnectedState )
995 {
996 DWORD flags = 0;
997 if ( pfnInternetGetConnectedState(&flags, 0 /* reserved */) )
998 {
999 // there is some connection to the net, see of which type
19caf229
VZ
1000 isAlwaysOnline = (flags & (INTERNET_CONNECTION_LAN |
1001 INTERNET_CONNECTION_PROXY)) != 0;
2690830e 1002 }
19caf229 1003 //else: no Internet connection at all
2690830e
VZ
1004 }
1005 }
1006
19caf229 1007 return isAlwaysOnline;
2690830e
VZ
1008}
1009
a0b4c98b
VZ
1010bool wxDialUpManagerMSW::IsOnline() const
1011{
d71cc120 1012 wxCHECK_MSG( IsOk(), false, wxT("using uninitialized wxDialUpManager") );
a0b4c98b 1013
90e9494a
VZ
1014 if ( IsAlwaysOnline() )
1015 {
1016 // always => now
1017 return true;
1018 }
1019
a0b4c98b
VZ
1020 if ( ms_userSpecifiedOnlineStatus != -1 )
1021 {
1022 // user specified flag overrides our logic
1023 return ms_userSpecifiedOnlineStatus != 0;
1024 }
1025 else
1026 {
d71cc120 1027 // return true if there is at least one active connection
a0b4c98b
VZ
1028 return FindActiveConnection() != 0;
1029 }
1030}
1031
1032void wxDialUpManagerMSW::SetOnlineStatus(bool isOnline)
1033{
223d09f6 1034 wxCHECK_RET( IsOk(), wxT("using uninitialized wxDialUpManager") );
a0b4c98b
VZ
1035
1036 ms_userSpecifiedOnlineStatus = isOnline;
1037}
1038
1039bool wxDialUpManagerMSW::EnableAutoCheckOnlineStatus(size_t nSeconds)
1040{
d71cc120 1041 wxCHECK_MSG( IsOk(), false, wxT("using uninitialized wxDialUpManager") );
a0b4c98b 1042
6bba111c
VZ
1043 if ( m_autoCheckLevel++ )
1044 {
1045 // already checking
d71cc120 1046 return true;
6bba111c
VZ
1047 }
1048
a0b4c98b
VZ
1049 bool ok = ms_pfnRasConnectionNotification != 0;
1050
1051 if ( ok )
1052 {
1053 // we're running under NT 4.0, Windows 98 or later and can use
1054 // RasConnectionNotification() to be notified by a secondary thread
1055
1056 // first, see if we don't have this thread already running
1057 if ( m_hThread != 0 )
1058 {
6bba111c 1059 if ( ::ResumeThread(m_hThread) != (DWORD)-1 )
d71cc120 1060 return true;
a0b4c98b 1061
6bba111c
VZ
1062 // we're leaving a zombie thread... but what else can we do?
1063 wxLogLastError(wxT("ResumeThread(RasThread)"));
a0b4c98b 1064
d71cc120 1065 ok = false;
a0b4c98b
VZ
1066 }
1067 }
1068
1069 // create all the stuff we need to be notified about RAS connection
1070 // status change
1071
1072 if ( ok )
1073 {
1074 // first create an event to wait on
d71cc120 1075 m_data->hEventRas = ::CreateEvent
97247d36 1076 (
a0b4c98b 1077 NULL, // security attribute (default)
97247d36 1078 FALSE, // manual reset (no, it is automatic)
a0b4c98b
VZ
1079 FALSE, // initial state (not signaled)
1080 NULL // name (no)
97247d36
VZ
1081 );
1082 if ( !m_data->hEventRas )
a0b4c98b 1083 {
f6bcfd97 1084 wxLogLastError(wxT("CreateEvent(RasStatus)"));
a0b4c98b 1085
d71cc120 1086 ok = false;
a0b4c98b
VZ
1087 }
1088 }
1089
1090 if ( ok )
1091 {
97247d36
VZ
1092 // create the event we use to quit the thread: using a manual event
1093 // here avoids problems with missing the event if wxDialUpManagerMSW
1094 // is created and destroyed immediately, before wxRasStatusWindowProc
1095 // starts waiting on the event
d71cc120 1096 m_data->hEventQuit = ::CreateEvent
97247d36
VZ
1097 (
1098 NULL, // default security
1099 TRUE, // manual event
1100 FALSE, // initially non signalled
1101 NULL // nameless
1102 );
1103 if ( !m_data->hEventQuit )
a0b4c98b 1104 {
f6bcfd97 1105 wxLogLastError(wxT("CreateEvent(RasThreadQuit)"));
a0b4c98b
VZ
1106
1107 CleanUpThreadData();
1108
d71cc120 1109 ok = false;
a0b4c98b
VZ
1110 }
1111 }
1112
2690830e 1113 if ( ok && !ms_hwndRas )
a0b4c98b
VZ
1114 {
1115 // create a hidden window to receive notification about connections
1116 // status change
8563c6f1
VZ
1117 ms_hwndRas = wxCreateHiddenWindow
1118 (
1119 &gs_classForDialUpWindow,
1120 wxMSWDIALUP_WNDCLASSNAME,
1121 wxRasStatusWindowProc
1122 );
2690830e 1123 if ( !ms_hwndRas )
a0b4c98b 1124 {
f6bcfd97 1125 wxLogLastError(wxT("CreateWindow(RasHiddenWindow)"));
a0b4c98b
VZ
1126
1127 CleanUpThreadData();
1128
d71cc120 1129 ok = false;
a0b4c98b 1130 }
a0b4c98b
VZ
1131 }
1132
97247d36 1133 m_data->hWnd = ms_hwndRas;
2690830e 1134
a0b4c98b
VZ
1135 if ( ok )
1136 {
1137 // start the secondary thread
97247d36 1138 m_data->dialUpManager = this;
a0b4c98b
VZ
1139
1140 DWORD tid;
1141 m_hThread = CreateThread
1142 (
1143 NULL,
1144 0,
1145 (LPTHREAD_START_ROUTINE)wxRasMonitorThread,
97247d36 1146 (void *)m_data,
a0b4c98b
VZ
1147 0,
1148 &tid
1149 );
1150
1151 if ( !m_hThread )
1152 {
f6bcfd97 1153 wxLogLastError(wxT("CreateThread(RasStatusThread)"));
a0b4c98b
VZ
1154
1155 CleanUpThreadData();
1156 }
1157 }
1158
1159 if ( ok )
1160 {
1161 // start receiving RAS notifications
1162 DWORD dwRet = ms_pfnRasConnectionNotification
1163 (
1164 (HRASCONN)INVALID_HANDLE_VALUE,
97247d36 1165 m_data->hEventRas,
a0b4c98b
VZ
1166 3 /* RASCN_Connection | RASCN_Disconnection */
1167 );
1168
1169 if ( dwRet != 0 )
1170 {
223d09f6 1171 wxLogDebug(wxT("RasConnectionNotification() failed: %s"),
5b09e9c2 1172 GetErrorString(dwRet).c_str());
a0b4c98b
VZ
1173
1174 CleanUpThreadData();
1175 }
1176 else
1177 {
d71cc120 1178 return true;
a0b4c98b
VZ
1179 }
1180 }
1181
1182 // we're running under Windows 95 and have to poll ourselves
1183 // (or, alternatively, the code above for NT/98 failed)
1184 m_timerStatusPolling.Stop();
1185 if ( nSeconds == 0 )
1186 {
1187 // default value
1188 nSeconds = 60;
1189 }
1190 m_timerStatusPolling.Start(nSeconds * 1000);
1191
d71cc120 1192 return true;
a0b4c98b
VZ
1193}
1194
1195void wxDialUpManagerMSW::DisableAutoCheckOnlineStatus()
1196{
223d09f6 1197 wxCHECK_RET( IsOk(), wxT("using uninitialized wxDialUpManager") );
a0b4c98b 1198
8d7eaf91 1199 if ( --m_autoCheckLevel != 0 )
6bba111c
VZ
1200 {
1201 // still checking
1202 return;
1203 }
1204
a0b4c98b
VZ
1205 if ( m_hThread )
1206 {
1207 // we have running secondary thread, it's just enough to suspend it
1208 if ( SuspendThread(m_hThread) == (DWORD)-1 )
1209 {
f6bcfd97 1210 wxLogLastError(wxT("SuspendThread(RasThread)"));
a0b4c98b
VZ
1211 }
1212 }
1213 else
1214 {
1215 // even simpler - just stop the timer
1216 m_timerStatusPolling.Stop();
1217 }
1218}
1219
1220// ----------------------------------------------------------------------------
1221// stubs which don't do anything in MSW version
1222// ----------------------------------------------------------------------------
1223
1224void wxDialUpManagerMSW::SetWellKnownHost(const wxString& WXUNUSED(hostname),
1225 int WXUNUSED(port))
1226{
223d09f6 1227 wxCHECK_RET( IsOk(), wxT("using uninitialized wxDialUpManager") );
a0b4c98b
VZ
1228
1229 // nothing to do - we don't use this
1230}
1231
1232void wxDialUpManagerMSW::SetConnectCommand(const wxString& WXUNUSED(dial),
1233 const wxString& WXUNUSED(hangup))
1234{
223d09f6 1235 wxCHECK_RET( IsOk(), wxT("using uninitialized wxDialUpManager") );
a0b4c98b
VZ
1236
1237 // nothing to do - we don't use this
1238}
1239
1240// ----------------------------------------------------------------------------
1241// callbacks
1242// ----------------------------------------------------------------------------
1243
1244static DWORD wxRasMonitorThread(wxRasThreadData *data)
1245{
1246 HANDLE handles[2];
1247 handles[0] = data->hEventRas;
1248 handles[1] = data->hEventQuit;
1249
d71cc120 1250 bool cont = true;
a0b4c98b
VZ
1251 while ( cont )
1252 {
d71cc120 1253 DWORD dwRet = ::WaitForMultipleObjects(2, handles, FALSE, INFINITE);
a0b4c98b
VZ
1254
1255 switch ( dwRet )
1256 {
1257 case WAIT_OBJECT_0:
1258 // RAS connection status changed
1259 SendMessage(data->hWnd, wxWM_RAS_STATUS_CHANGED,
1260 0, (LPARAM)data);
1261 break;
1262
1263 case WAIT_OBJECT_0 + 1:
d71cc120 1264 cont = false;
a0b4c98b
VZ
1265 break;
1266
97247d36
VZ
1267 default:
1268 wxFAIL_MSG( _T("unexpected return of WaitForMultipleObjects()") );
1269 // fall through
1270
a0b4c98b 1271 case WAIT_FAILED:
97247d36
VZ
1272 // using wxLogLastError() from here is dangerous: we risk to
1273 // deadlock the main thread if wxLog sends output to GUI
1274 DWORD err = GetLastError();
141f4958
WS
1275 wxMessageOutputDebug dbg;
1276 dbg.Printf
97247d36
VZ
1277 (
1278 wxT("WaitForMultipleObjects(RasMonitor) failed: 0x%08lx (%s)"),
1279 err,
1280 wxSysErrorMsg(err)
1281 );
97247d36
VZ
1282
1283 // no sense in continuing, who knows if the handles we're
1284 // waiting for even exist yet...
1285 return (DWORD)-1;
a0b4c98b
VZ
1286 }
1287 }
1288
97247d36
VZ
1289 // we don't need it any more now and if this thread ran, it is our
1290 // responsability to free the data
1291 delete data;
1292
a0b4c98b
VZ
1293 return 0;
1294}
1295
1296static LRESULT APIENTRY wxRasStatusWindowProc(HWND hWnd, UINT message,
1297 WPARAM wParam, LPARAM lParam)
1298{
cd6af1cb 1299 switch ( message )
a0b4c98b 1300 {
cd6af1cb
VZ
1301 case wxWM_RAS_STATUS_CHANGED:
1302 {
1303 wxRasThreadData *data = (wxRasThreadData *)lParam;
1304 data->dialUpManager->OnConnectStatusChange();
1305 }
1306 break;
2690830e 1307
cd6af1cb
VZ
1308 case wxWM_RAS_DIALING_PROGRESS:
1309 {
1310 wxDialUpManagerMSW *dialMan = wxDialUpManagerMSW::GetDialer();
1311
1312 dialMan->OnDialProgress((RASCONNSTATE)wParam, lParam);
1313 }
1314 break;
1315
1316 default:
1317 return ::DefWindowProc(hWnd, message, wParam, lParam);
2690830e 1318 }
a0b4c98b
VZ
1319
1320 return 0;
1321}
1322
2eb10e2a 1323static void WINAPI wxRasDialFunc(UINT WXUNUSED(unMsg),
a0b4c98b
VZ
1324 RASCONNSTATE rasconnstate,
1325 DWORD dwError)
1326{
1327 wxDialUpManagerMSW *dialUpManager = wxDialUpManagerMSW::GetDialer();
1328
223d09f6 1329 wxCHECK_RET( dialUpManager, wxT("who started to dial then?") );
a0b4c98b 1330
2a1f999f 1331 SendMessage(wxDialUpManagerMSW::GetRasWindow(), wxWM_RAS_DIALING_PROGRESS,
2690830e 1332 rasconnstate, dwError);
a0b4c98b
VZ
1333}
1334
1c25d245
VZ
1335#endif // __BORLANDC__
1336
a0b4c98b 1337#endif // wxUSE_DIALUP_MANAGER