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