1 /////////////////////////////////////////////////////////////////////////////
2 // Name: msw/dialup.cpp
3 // Purpose: MSW implementation of network/dialup classes and functions
4 // Author: Vadim Zeitlin
8 // Copyright: (c) Vadim Zeitlin
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // for compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
27 // these functions require Win32
28 #if defined(__WIN16__) && wxUSE_DIALUP_MANAGER
29 #undef wxUSE_DIALUP_MANAGER
30 #define wxUSE_DIALUP_MANAGER 0
31 #endif // wxUSE_DIALUP_MANAGER && Win16
33 #if wxUSE_DIALUP_MANAGER
43 #include "wx/generic/choicdgg.h"
45 #include "wx/msw/private.h" // must be before #include "dynlib.h"
47 #if !wxUSE_DYNLIB_CLASS
48 #error You need wxUSE_DYNLIB_CLASS to be 1 to compile dialup.cpp.
51 #include "wx/dynlib.h"
53 #include "wx/dialup.h"
55 // Doesn't yet compile under VC++ 4, BC++, mingw, Watcom C++: no wininet.h
56 #if !defined(__BORLANDC__) && !defined(__GNUWIN32_OLD__) && !defined(__GNUWIN32__) && !defined(__WATCOMC__) && ! (defined(__VISUALC__) && (__VISUALC__ < 1020))
64 #ifndef INTERNET_CONNECTION_LAN
65 #define INTERNET_CONNECTION_LAN 2
67 #ifndef INTERNET_CONNECTION_PROXY
68 #define INTERNET_CONNECTION_PROXY 4
71 // ----------------------------------------------------------------------------
73 // ----------------------------------------------------------------------------
75 // this message is sent by the secondary thread when RAS status changes
76 #define wxWM_RAS_STATUS_CHANGED (WM_USER + 10010)
77 #define wxWM_RAS_DIALING_PROGRESS (WM_USER + 10011)
79 // ----------------------------------------------------------------------------
81 // ----------------------------------------------------------------------------
83 // the signatures of RAS functions: all this is quite heavy, but we must do it
84 // to allow running wxWin programs on machine which don't have RAS installed
85 // (this does exist) - if we link with rasapi32.lib, the program will fail on
86 // startup because of the missing DLL...
89 typedef DWORD (APIENTRY
* RASDIAL
)( LPRASDIALEXTENSIONS
, LPCSTR
, LPRASDIALPARAMSA
, DWORD
, LPVOID
, LPHRASCONN
);
90 typedef DWORD (APIENTRY
* RASENUMCONNECTIONS
)( LPRASCONNA
, LPDWORD
, LPDWORD
);
91 typedef DWORD (APIENTRY
* RASENUMENTRIES
)( LPCSTR
, LPCSTR
, LPRASENTRYNAMEA
, LPDWORD
, LPDWORD
);
92 typedef DWORD (APIENTRY
* RASGETCONNECTSTATUS
)( HRASCONN
, LPRASCONNSTATUSA
);
93 typedef DWORD (APIENTRY
* RASGETERRORSTRING
)( UINT
, LPSTR
, DWORD
);
94 typedef DWORD (APIENTRY
* RASHANGUP
)( HRASCONN
);
95 typedef DWORD (APIENTRY
* RASGETPROJECTIONINFO
)( HRASCONN
, RASPROJECTION
, LPVOID
, LPDWORD
);
96 typedef DWORD (APIENTRY
* RASCREATEPHONEBOOKENTRY
)( HWND
, LPCSTR
);
97 typedef DWORD (APIENTRY
* RASEDITPHONEBOOKENTRY
)( HWND
, LPCSTR
, LPCSTR
);
98 typedef DWORD (APIENTRY
* RASSETENTRYDIALPARAMS
)( LPCSTR
, LPRASDIALPARAMSA
, BOOL
);
99 typedef DWORD (APIENTRY
* RASGETENTRYDIALPARAMS
)( LPCSTR
, LPRASDIALPARAMSA
, LPBOOL
);
100 typedef DWORD (APIENTRY
* RASENUMDEVICES
)( LPRASDEVINFOA
, LPDWORD
, LPDWORD
);
101 typedef DWORD (APIENTRY
* RASGETCOUNTRYINFO
)( LPRASCTRYINFOA
, LPDWORD
);
102 typedef DWORD (APIENTRY
* RASGETENTRYPROPERTIES
)( LPCSTR
, LPCSTR
, LPRASENTRYA
, LPDWORD
, LPBYTE
, LPDWORD
);
103 typedef DWORD (APIENTRY
* RASSETENTRYPROPERTIES
)( LPCSTR
, LPCSTR
, LPRASENTRYA
, DWORD
, LPBYTE
, DWORD
);
104 typedef DWORD (APIENTRY
* RASRENAMEENTRY
)( LPCSTR
, LPCSTR
, LPCSTR
);
105 typedef DWORD (APIENTRY
* RASDELETEENTRY
)( LPCSTR
, LPCSTR
);
106 typedef DWORD (APIENTRY
* RASVALIDATEENTRYNAME
)( LPCSTR
, LPCSTR
);
107 typedef DWORD (APIENTRY
* RASCONNECTIONNOTIFICATION
)( HRASCONN
, HANDLE
, DWORD
);
109 static const wxChar gs_funcSuffix
= _T('A');
111 typedef DWORD (APIENTRY
* RASDIAL
)( LPRASDIALEXTENSIONS
, LPCWSTR
, LPRASDIALPARAMSW
, DWORD
, LPVOID
, LPHRASCONN
);
112 typedef DWORD (APIENTRY
* RASENUMCONNECTIONS
)( LPRASCONNW
, LPDWORD
, LPDWORD
);
113 typedef DWORD (APIENTRY
* RASENUMENTRIES
)( LPCWSTR
, LPCWSTR
, LPRASENTRYNAMEW
, LPDWORD
, LPDWORD
);
114 typedef DWORD (APIENTRY
* RASGETCONNECTSTATUS
)( HRASCONN
, LPRASCONNSTATUSW
);
115 typedef DWORD (APIENTRY
* RASGETERRORSTRING
)( UINT
, LPWSTR
, DWORD
);
116 typedef DWORD (APIENTRY
* RASHANGUP
)( HRASCONN
);
117 typedef DWORD (APIENTRY
* RASGETPROJECTIONINFO
)( HRASCONN
, RASPROJECTION
, LPVOID
, LPDWORD
);
118 typedef DWORD (APIENTRY
* RASCREATEPHONEBOOKENTRY
)( HWND
, LPCWSTR
);
119 typedef DWORD (APIENTRY
* RASEDITPHONEBOOKENTRY
)( HWND
, LPCWSTR
, LPCWSTR
);
120 typedef DWORD (APIENTRY
* RASSETENTRYDIALPARAMS
)( LPCWSTR
, LPRASDIALPARAMSW
, BOOL
);
121 typedef DWORD (APIENTRY
* RASGETENTRYDIALPARAMS
)( LPCWSTR
, LPRASDIALPARAMSW
, LPBOOL
);
122 typedef DWORD (APIENTRY
* RASENUMDEVICES
)( LPRASDEVINFOW
, LPDWORD
, LPDWORD
);
123 typedef DWORD (APIENTRY
* RASGETCOUNTRYINFO
)( LPRASCTRYINFOW
, LPDWORD
);
124 typedef DWORD (APIENTRY
* RASGETENTRYPROPERTIES
)( LPCWSTR
, LPCWSTR
, LPRASENTRYW
, LPDWORD
, LPBYTE
, LPDWORD
);
125 typedef DWORD (APIENTRY
* RASSETENTRYPROPERTIES
)( LPCWSTR
, LPCWSTR
, LPRASENTRYW
, DWORD
, LPBYTE
, DWORD
);
126 typedef DWORD (APIENTRY
* RASRENAMEENTRY
)( LPCWSTR
, LPCWSTR
, LPCWSTR
);
127 typedef DWORD (APIENTRY
* RASDELETEENTRY
)( LPCWSTR
, LPCWSTR
);
128 typedef DWORD (APIENTRY
* RASVALIDATEENTRYNAME
)( LPCWSTR
, LPCWSTR
);
129 typedef DWORD (APIENTRY
* RASCONNECTIONNOTIFICATION
)( HRASCONN
, HANDLE
, DWORD
);
131 static const wxChar gs_funcSuffix
= _T('W');
132 #endif // ASCII/Unicode
134 // structure passed to the secondary thread
135 struct WXDLLEXPORT wxRasThreadData
140 hEventRas
= hEventQuit
= INVALID_HANDLE_VALUE
;
141 dialUpManager
= NULL
;
144 HWND hWnd
; // window to send notifications to
145 HANDLE hEventRas
, // event which RAS signals when status changes
146 hEventQuit
; // event which we signal when we terminate
148 class WXDLLEXPORT wxDialUpManagerMSW
*dialUpManager
; // the owner
151 // ----------------------------------------------------------------------------
152 // wxDialUpManager class for MSW
153 // ----------------------------------------------------------------------------
155 class WXDLLEXPORT wxDialUpManagerMSW
: public wxDialUpManager
159 wxDialUpManagerMSW();
160 virtual ~wxDialUpManagerMSW();
162 // implement base class pure virtuals
163 virtual bool IsOk() const;
164 virtual size_t GetISPNames(wxArrayString
& names
) const;
165 virtual bool Dial(const wxString
& nameOfISP
,
166 const wxString
& username
,
167 const wxString
& password
,
169 virtual bool IsDialing() const;
170 virtual bool CancelDialing();
171 virtual bool HangUp();
172 virtual bool IsAlwaysOnline() const;
173 virtual bool IsOnline() const;
174 virtual void SetOnlineStatus(bool isOnline
= TRUE
);
175 virtual bool EnableAutoCheckOnlineStatus(size_t nSeconds
);
176 virtual void DisableAutoCheckOnlineStatus();
177 virtual void SetWellKnownHost(const wxString
& hostname
, int port
);
178 virtual void SetConnectCommand(const wxString
& commandDial
,
179 const wxString
& commandHangup
);
182 void CheckRasStatus();
184 // for wxRasStatusWindowProc
185 void OnConnectStatusChange();
186 void OnDialProgress(RASCONNSTATE rasconnstate
, DWORD dwError
);
189 static HWND
GetRasWindow() { return ms_hwndRas
; }
190 static wxDialUpManagerMSW
*GetDialer() { return ms_dialer
; }
193 // return the error string for the given RAS error code
194 static wxString
GetErrorString(DWORD error
);
196 // find the (first) handle of the active connection
197 static HRASCONN
FindActiveConnection();
199 // notify the application about status change
200 void NotifyApp(bool connected
, bool fromOurselves
= FALSE
) const;
202 // destroy the thread data and the thread itself
203 void CleanUpThreadData();
205 // timer used for polling RAS status
206 class WXDLLEXPORT RasTimer
: public wxTimer
209 RasTimer(wxDialUpManagerMSW
*dialUpManager
)
210 { m_dialUpManager
= dialUpManager
; }
212 virtual void Notify() { m_dialUpManager
->CheckRasStatus(); }
215 wxDialUpManagerMSW
*m_dialUpManager
;
216 } m_timerStatusPolling
;
218 // thread handle for the thread sitting on connection change event
221 // data used by this thread and our hidden window to send messages between
223 wxRasThreadData m_data
;
225 // the hidden window we use for passing messages between threads
226 static HWND ms_hwndRas
;
228 // the handle of the connection we initiated or 0 if none
229 static HRASCONN ms_hRasConnection
;
231 // the use count of rasapi32.dll
232 static int ms_nDllCount
;
234 // the handle of rasapi32.dll when it's loaded
235 static wxDllType ms_dllRas
;
237 // the pointers to RAS functions
238 static RASDIAL ms_pfnRasDial
;
239 static RASENUMCONNECTIONS ms_pfnRasEnumConnections
;
240 static RASENUMENTRIES ms_pfnRasEnumEntries
;
241 static RASGETCONNECTSTATUS ms_pfnRasGetConnectStatus
;
242 static RASGETERRORSTRING ms_pfnRasGetErrorString
;
243 static RASHANGUP ms_pfnRasHangUp
;
244 static RASGETPROJECTIONINFO ms_pfnRasGetProjectionInfo
;
245 static RASCREATEPHONEBOOKENTRY ms_pfnRasCreatePhonebookEntry
;
246 static RASEDITPHONEBOOKENTRY ms_pfnRasEditPhonebookEntry
;
247 static RASSETENTRYDIALPARAMS ms_pfnRasSetEntryDialParams
;
248 static RASGETENTRYDIALPARAMS ms_pfnRasGetEntryDialParams
;
249 static RASENUMDEVICES ms_pfnRasEnumDevices
;
250 static RASGETCOUNTRYINFO ms_pfnRasGetCountryInfo
;
251 static RASGETENTRYPROPERTIES ms_pfnRasGetEntryProperties
;
252 static RASSETENTRYPROPERTIES ms_pfnRasSetEntryProperties
;
253 static RASRENAMEENTRY ms_pfnRasRenameEntry
;
254 static RASDELETEENTRY ms_pfnRasDeleteEntry
;
255 static RASVALIDATEENTRYNAME ms_pfnRasValidateEntryName
;
257 // this function is not supported by Win95
258 static RASCONNECTIONNOTIFICATION ms_pfnRasConnectionNotification
;
260 // if this flag is different from -1, it overrides IsOnline()
261 static int ms_userSpecifiedOnlineStatus
;
263 // this flag tells us if we're online
264 static int ms_isConnected
;
266 // this flag is the result of the call to IsAlwaysOnline() (-1 if not
268 static int ms_isAlwaysOnline
;
270 // this flag tells us whether a call to RasDial() is in progress
271 static wxDialUpManagerMSW
*ms_dialer
;
274 // ----------------------------------------------------------------------------
276 // ----------------------------------------------------------------------------
278 static LRESULT WINAPI
wxRasStatusWindowProc(HWND hWnd
, UINT message
,
279 WPARAM wParam
, LPARAM lParam
);
281 static DWORD
wxRasMonitorThread(wxRasThreadData
*data
);
283 static void WINAPI
wxRasDialFunc(UINT unMsg
,
284 RASCONNSTATE rasconnstate
,
287 // ============================================================================
289 // ============================================================================
291 // ----------------------------------------------------------------------------
292 // init the static variables
293 // ----------------------------------------------------------------------------
295 HRASCONN
wxDialUpManagerMSW::ms_hRasConnection
= 0;
297 HWND
wxDialUpManagerMSW::ms_hwndRas
= 0;
299 int wxDialUpManagerMSW::ms_nDllCount
= 0;
300 wxDllType
wxDialUpManagerMSW::ms_dllRas
= 0;
302 RASDIAL
wxDialUpManagerMSW::ms_pfnRasDial
= 0;
303 RASENUMCONNECTIONS
wxDialUpManagerMSW::ms_pfnRasEnumConnections
= 0;
304 RASENUMENTRIES
wxDialUpManagerMSW::ms_pfnRasEnumEntries
= 0;
305 RASGETCONNECTSTATUS
wxDialUpManagerMSW::ms_pfnRasGetConnectStatus
= 0;
306 RASGETERRORSTRING
wxDialUpManagerMSW::ms_pfnRasGetErrorString
= 0;
307 RASHANGUP
wxDialUpManagerMSW::ms_pfnRasHangUp
= 0;
308 RASGETPROJECTIONINFO
wxDialUpManagerMSW::ms_pfnRasGetProjectionInfo
= 0;
309 RASCREATEPHONEBOOKENTRY
wxDialUpManagerMSW::ms_pfnRasCreatePhonebookEntry
= 0;
310 RASEDITPHONEBOOKENTRY
wxDialUpManagerMSW::ms_pfnRasEditPhonebookEntry
= 0;
311 RASSETENTRYDIALPARAMS
wxDialUpManagerMSW::ms_pfnRasSetEntryDialParams
= 0;
312 RASGETENTRYDIALPARAMS
wxDialUpManagerMSW::ms_pfnRasGetEntryDialParams
= 0;
313 RASENUMDEVICES
wxDialUpManagerMSW::ms_pfnRasEnumDevices
= 0;
314 RASGETCOUNTRYINFO
wxDialUpManagerMSW::ms_pfnRasGetCountryInfo
= 0;
315 RASGETENTRYPROPERTIES
wxDialUpManagerMSW::ms_pfnRasGetEntryProperties
= 0;
316 RASSETENTRYPROPERTIES
wxDialUpManagerMSW::ms_pfnRasSetEntryProperties
= 0;
317 RASRENAMEENTRY
wxDialUpManagerMSW::ms_pfnRasRenameEntry
= 0;
318 RASDELETEENTRY
wxDialUpManagerMSW::ms_pfnRasDeleteEntry
= 0;
319 RASVALIDATEENTRYNAME
wxDialUpManagerMSW::ms_pfnRasValidateEntryName
= 0;
320 RASCONNECTIONNOTIFICATION
wxDialUpManagerMSW::ms_pfnRasConnectionNotification
= 0;
322 int wxDialUpManagerMSW::ms_userSpecifiedOnlineStatus
= -1;
323 int wxDialUpManagerMSW::ms_isConnected
= -1;
324 int wxDialUpManagerMSW::ms_isAlwaysOnline
= -1;
325 wxDialUpManagerMSW
*wxDialUpManagerMSW::ms_dialer
= NULL
;
327 // ----------------------------------------------------------------------------
328 // ctor and dtor: the dynamic linking happens here
329 // ----------------------------------------------------------------------------
331 // the static creator function is implemented here
332 wxDialUpManager
*wxDialUpManager::Create()
334 return new wxDialUpManagerMSW
;
338 // warning about "'this' : used in base member initializer list" - so what?
339 #pragma warning(disable:4355)
342 wxDialUpManagerMSW::wxDialUpManagerMSW()
343 : m_timerStatusPolling(this)
345 // initialize our data
348 if ( !ms_nDllCount
++ )
350 // load the RAS library
351 ms_dllRas
= wxDllLoader::LoadLibrary("RASAPI32");
354 wxLogError(_("Dial up functions are unavailable because the remote access service (RAS) is not installed on this machine. Please install it."));
358 // resolve the functions we need
360 // this will contain the name of the function we failed to resolve
362 const char *funcName
= NULL
;
364 // get the function from rasapi32.dll and abort if it's not found
365 #define RESOLVE_RAS_FUNCTION(type, name) \
366 ms_pfn##name = (type)wxDllLoader::GetSymbol(ms_dllRas, \
367 wxString(_T(#name)) + gs_funcSuffix); \
368 if ( !ms_pfn##name ) \
374 // a variant of above macro which doesn't abort if the function is
375 // not found in the DLL
376 #define RESOLVE_OPTIONAL_RAS_FUNCTION(type, name) \
377 ms_pfn##name = (type)wxDllLoader::GetSymbol(ms_dllRas, \
378 wxString(_T(#name)) + gs_funcSuffix);
380 RESOLVE_RAS_FUNCTION(RASDIAL
, RasDial
);
381 RESOLVE_RAS_FUNCTION(RASENUMCONNECTIONS
, RasEnumConnections
);
382 RESOLVE_RAS_FUNCTION(RASENUMENTRIES
, RasEnumEntries
);
383 RESOLVE_RAS_FUNCTION(RASGETCONNECTSTATUS
, RasGetConnectStatus
);
384 RESOLVE_RAS_FUNCTION(RASGETERRORSTRING
, RasGetErrorString
);
385 RESOLVE_RAS_FUNCTION(RASHANGUP
, RasHangUp
);
386 RESOLVE_RAS_FUNCTION(RASGETENTRYDIALPARAMS
, RasGetEntryDialParams
);
388 // suppress wxDllLoader messages about missing (non essential)
393 RESOLVE_OPTIONAL_RAS_FUNCTION(RASGETPROJECTIONINFO
, RasGetProjectionInfo
);
394 RESOLVE_OPTIONAL_RAS_FUNCTION(RASCREATEPHONEBOOKENTRY
, RasCreatePhonebookEntry
);
395 RESOLVE_OPTIONAL_RAS_FUNCTION(RASEDITPHONEBOOKENTRY
, RasEditPhonebookEntry
);
396 RESOLVE_OPTIONAL_RAS_FUNCTION(RASSETENTRYDIALPARAMS
, RasSetEntryDialParams
);
397 RESOLVE_OPTIONAL_RAS_FUNCTION(RASGETENTRYPROPERTIES
, RasGetEntryProperties
);
398 RESOLVE_OPTIONAL_RAS_FUNCTION(RASSETENTRYPROPERTIES
, RasSetEntryProperties
);
399 RESOLVE_OPTIONAL_RAS_FUNCTION(RASRENAMEENTRY
, RasRenameEntry
);
400 RESOLVE_OPTIONAL_RAS_FUNCTION(RASDELETEENTRY
, RasDeleteEntry
);
401 RESOLVE_OPTIONAL_RAS_FUNCTION(RASVALIDATEENTRYNAME
, RasValidateEntryName
);
402 RESOLVE_OPTIONAL_RAS_FUNCTION(RASGETCOUNTRYINFO
, RasGetCountryInfo
);
403 RESOLVE_OPTIONAL_RAS_FUNCTION(RASENUMDEVICES
, RasEnumDevices
);
404 RESOLVE_OPTIONAL_RAS_FUNCTION(RASCONNECTIONNOTIFICATION
, RasConnectionNotification
);
407 // keep your preprocessor name space clean
408 #undef RESOLVE_RAS_FUNCTION
409 #undef RESOLVE_OPTIONAL_RAS_FUNCTION
414 static const wxChar
*msg
= wxTRANSLATE(
415 "The version of remote access service (RAS) installed on this machine is too\
416 old, please upgrade (the following required function is missing: %s)."
419 wxLogError(wxGetTranslation(msg
), funcName
);
421 wxDllLoader::UnloadLibrary(ms_dllRas
);
430 // enable auto check by default
431 EnableAutoCheckOnlineStatus(0);
434 wxDialUpManagerMSW::~wxDialUpManagerMSW()
438 if ( !--ms_nDllCount
)
440 // unload the RAS library
441 wxDllLoader::UnloadLibrary(ms_dllRas
);
446 // ----------------------------------------------------------------------------
448 // ----------------------------------------------------------------------------
450 wxString
wxDialUpManagerMSW::GetErrorString(DWORD error
)
452 wxChar buffer
[512]; // this should be more than enough according to MS docs
453 DWORD dwRet
= ms_pfnRasGetErrorString(error
, buffer
, WXSIZEOF(buffer
));
456 case ERROR_INVALID_PARAMETER
:
457 // this was a standard Win32 error probably
458 return wxString(wxSysErrorMsg(error
));
463 _("Failed to retrieve text of RAS error message"));
466 msg
.Printf(_("unknown error (error code %08x)."), error
);
471 // we want the error message to start from a lower case letter
472 buffer
[0] = wxTolower(buffer
[0]);
474 return wxString(buffer
);
478 HRASCONN
wxDialUpManagerMSW::FindActiveConnection()
480 // enumerate connections
481 DWORD cbBuf
= sizeof(RASCONN
);
482 LPRASCONN lpRasConn
= (LPRASCONN
)malloc(cbBuf
);
489 lpRasConn
->dwSize
= sizeof(RASCONN
);
491 DWORD nConnections
= 0;
492 DWORD dwRet
= ERROR_BUFFER_TOO_SMALL
;
494 while ( dwRet
== ERROR_BUFFER_TOO_SMALL
)
496 dwRet
= ms_pfnRasEnumConnections(lpRasConn
, &cbBuf
, &nConnections
);
498 if ( dwRet
== ERROR_BUFFER_TOO_SMALL
)
500 LPRASCONN lpRasConnOld
= lpRasConn
;
501 lpRasConn
= (LPRASCONN
)realloc(lpRasConn
, cbBuf
);
510 else if ( dwRet
== 0 )
518 wxLogError(_("Cannot find active dialup connection: %s"),
519 GetErrorString(dwRet
));
526 switch ( nConnections
)
534 // more than 1 connection - we don't know what to do with this
535 // case, so give a warning but continue (taking the first
536 // connection) - the warning is really needed because this function
537 // is used, for example, to select the connection to hang up and so
538 // we may hang up the wrong connection here...
539 wxLogWarning(_("Several active dialup connections found, choosing one randomly."));
543 // exactly 1 connection, great
544 hrasconn
= lpRasConn
->hrasconn
;
552 void wxDialUpManagerMSW::CleanUpThreadData()
556 if ( !SetEvent(m_data
.hEventQuit
) )
558 wxLogLastError(_T("SetEvent(RasThreadQuit)"));
561 CloseHandle(m_hThread
);
568 DestroyWindow(m_data
.hWnd
);
573 if ( m_data
.hEventQuit
)
575 CloseHandle(m_data
.hEventQuit
);
577 m_data
.hEventQuit
= 0;
580 if ( m_data
.hEventRas
)
582 CloseHandle(m_data
.hEventRas
);
584 m_data
.hEventRas
= 0;
588 // ----------------------------------------------------------------------------
590 // ----------------------------------------------------------------------------
592 void wxDialUpManagerMSW::CheckRasStatus()
594 // use int, not bool to compare with -1
595 int isConnected
= FindActiveConnection() != 0;
596 if ( isConnected
!= ms_isConnected
)
598 if ( ms_isConnected
!= -1 )
600 // notify the program
601 NotifyApp(isConnected
!= 0);
603 // else: it's the first time we're called, just update the flag
605 ms_isConnected
= isConnected
;
609 void wxDialUpManagerMSW::NotifyApp(bool connected
, bool fromOurselves
) const
611 wxDialUpEvent
event(connected
, fromOurselves
);
612 (void)wxTheApp
->ProcessEvent(event
);
615 // this function is called whenever the status of any RAS connection on this
616 // machine changes by RAS itself
617 void wxDialUpManagerMSW::OnConnectStatusChange()
619 // we know that status changed, but we don't know whether we're connected
620 // or not - so find it out
624 // this function is called by our callback which we give to RasDial() when
625 // calling it asynchronously
626 void wxDialUpManagerMSW::OnDialProgress(RASCONNSTATE rasconnstate
,
631 // this probably means that CancelDialing() was called and we get
632 // "disconnected" notification
636 // we're only interested in 2 events: connected and disconnected
639 wxLogError(_("Failed to establish dialup connection: %s"),
640 GetErrorString(dwError
));
642 // we should still call RasHangUp() if we got a non 0 connection
643 if ( ms_hRasConnection
)
645 ms_pfnRasHangUp(ms_hRasConnection
);
646 ms_hRasConnection
= 0;
651 NotifyApp(FALSE
/* !connected */, TRUE
/* we dialed ourselves */);
653 else if ( rasconnstate
== RASCS_Connected
)
655 ms_isConnected
= TRUE
;
658 NotifyApp(TRUE
/* connected */, TRUE
/* we dialed ourselves */);
662 // ----------------------------------------------------------------------------
663 // implementation of wxDialUpManager functions
664 // ----------------------------------------------------------------------------
666 bool wxDialUpManagerMSW::IsOk() const
668 return ms_dllRas
!= 0;
671 size_t wxDialUpManagerMSW::GetISPNames(wxArrayString
& names
) const
674 DWORD size
= sizeof(RASENTRYNAME
);
675 RASENTRYNAME
*rasEntries
= (RASENTRYNAME
*)malloc(size
);
676 rasEntries
->dwSize
= sizeof(RASENTRYNAME
);
682 dwRet
= ms_pfnRasEnumEntries
685 NULL
, // default phone book (or all)
686 rasEntries
, // [out] buffer for the entries
687 &size
, // [in/out] size of the buffer
688 &nEntries
// [out] number of entries fetched
691 if ( dwRet
== ERROR_BUFFER_TOO_SMALL
)
693 // reallocate the buffer
694 rasEntries
= (RASENTRYNAME
*)realloc(rasEntries
, size
);
696 else if ( dwRet
!= 0 )
698 // some other error - abort
699 wxLogError(_("Failed to get ISP names: %s"), GetErrorString(dwRet
));
706 while ( dwRet
!= 0 );
710 for ( size_t n
= 0; n
< (size_t)nEntries
; n
++ )
712 names
.Add(rasEntries
[n
].szEntryName
);
717 // return the number of entries
718 return names
.GetCount();
721 bool wxDialUpManagerMSW::Dial(const wxString
& nameOfISP
,
722 const wxString
& username
,
723 const wxString
& password
,
726 // check preconditions
727 wxCHECK_MSG( IsOk(), FALSE
, wxT("using uninitialized wxDialUpManager") );
729 if ( ms_hRasConnection
)
731 wxFAIL_MSG(wxT("there is already an active connection"));
736 // get the default ISP if none given
737 wxString
entryName(nameOfISP
);
741 size_t count
= GetISPNames(names
);
745 // no known ISPs, abort
746 wxLogError(_("Failed to connect: no ISP to dial."));
751 // only one ISP, choose it
752 entryName
= names
[0u];
756 // several ISPs, let the user choose
758 wxString
*strings
= new wxString
[count
];
759 for ( size_t i
= 0; i
< count
; i
++ )
761 strings
[i
] = names
[i
];
764 entryName
= wxGetSingleChoice
766 _("Choose ISP to dial"),
767 _("Please choose which ISP do you want to connect to"),
783 RASDIALPARAMS rasDialParams
;
784 rasDialParams
.dwSize
= sizeof(rasDialParams
);
785 wxStrncpy(rasDialParams
.szEntryName
, entryName
, RAS_MaxEntryName
);
787 // do we have the username and password?
788 if ( !username
|| !password
)
791 DWORD dwRet
= ms_pfnRasGetEntryDialParams
793 NULL
, // default phonebook
794 &rasDialParams
, // [in/out] the params of this entry
795 &gotPassword
// [out] did we get password?
800 wxLogError(_("Failed to connect: missing username/password."));
807 wxStrncpy(rasDialParams
.szUserName
, username
, UNLEN
);
808 wxStrncpy(rasDialParams
.szPassword
, password
, PWLEN
);
811 // default values for other fields
812 rasDialParams
.szPhoneNumber
[0] = '\0';
813 rasDialParams
.szCallbackNumber
[0] = '\0';
814 rasDialParams
.szCallbackNumber
[0] = '\0';
816 rasDialParams
.szDomain
[0] = '*';
817 rasDialParams
.szDomain
[1] = '\0';
819 // apparently, this is not really necessary - passing NULL instead of the
820 // phone book has the same effect
823 if ( wxGetOsVersion() == wxWINDOWS_NT
)
825 // first get the length
826 UINT nLen
= ::GetSystemDirectory(NULL
, 0);
829 if ( !::GetSystemDirectory(phoneBook
.GetWriteBuf(nLen
), nLen
) )
831 wxLogSysError(_("Cannot find the location of address book file"));
834 phoneBook
.UngetWriteBuf();
836 // this is the default phone book
837 phoneBook
<< "\\ras\\rasphone.pbk";
841 // TODO may be we should disable auto check while async dialing is in
846 DWORD dwRet
= ms_pfnRasDial
848 (LPRASDIALEXTENSIONS
)NULL
, // no extended features
849 NULL
, // default phone book file (NT only)
851 0, // use callback for notifications
852 async
? wxRasDialFunc
// the callback
853 : 0, // no notifications - sync operation
859 wxLogError(_("Failed to %s dialup connection: %s"),
860 async
? _("initiate") : _("establish"),
861 GetErrorString(dwRet
));
863 // we should still call RasHangUp() if we got a non 0 connection
864 if ( ms_hRasConnection
)
866 ms_pfnRasHangUp(ms_hRasConnection
);
867 ms_hRasConnection
= 0;
875 // for async dialing, we're not yet connected
878 ms_isConnected
= TRUE
;
884 bool wxDialUpManagerMSW::IsDialing() const
886 return GetDialer() != NULL
;
889 bool wxDialUpManagerMSW::CancelDialing()
897 wxASSERT_MSG( ms_hRasConnection
, wxT("dialing but no connection?") );
904 bool wxDialUpManagerMSW::HangUp()
906 wxCHECK_MSG( IsOk(), FALSE
, wxT("using uninitialized wxDialUpManager") );
908 // we may terminate either the connection we initiated or another one which
911 if ( ms_hRasConnection
)
913 hRasConn
= ms_hRasConnection
;
915 ms_hRasConnection
= 0;
919 hRasConn
= FindActiveConnection();
924 wxLogError(_("Cannot hang up - no active dialup connection."));
929 DWORD dwRet
= ms_pfnRasHangUp(hRasConn
);
932 wxLogError(_("Failed to terminate the dialup connection: %s"),
933 GetErrorString(dwRet
));
936 ms_isConnected
= FALSE
;
941 bool wxDialUpManagerMSW::IsAlwaysOnline() const
943 // we cache the result (presumably this won't change while the program is
945 if ( ms_isAlwaysOnline
!= -1 )
947 return ms_isAlwaysOnline
!= 0;
950 // try to use WinInet function first
952 wxDllType hDll
= wxDllLoader::LoadLibrary(_T("WININET"), &ok
);
955 typedef BOOL (*INTERNETGETCONNECTEDSTATE
)(LPDWORD
, DWORD
);
956 INTERNETGETCONNECTEDSTATE pfnInternetGetConnectedState
;
958 #define RESOLVE_FUNCTION(type, name) \
959 pfn##name = (type)wxDllLoader::GetSymbol(hDll, _T(#name))
961 RESOLVE_FUNCTION(INTERNETGETCONNECTEDSTATE
, InternetGetConnectedState
);
963 if ( pfnInternetGetConnectedState
)
966 if ( pfnInternetGetConnectedState(&flags
, 0 /* reserved */) )
968 // there is some connection to the net, see of which type
969 ms_isAlwaysOnline
= (flags
& INTERNET_CONNECTION_LAN
!= 0) ||
970 (flags
& INTERNET_CONNECTION_PROXY
!= 0);
974 // no Internet connection at all
975 ms_isAlwaysOnline
= FALSE
;
979 wxDllLoader::UnloadLibrary(hDll
);
982 // did we succeed with WinInet? if not, try something else
983 if ( ms_isAlwaysOnline
== -1 )
987 // definitely no permanent connection because we are not connected
989 ms_isAlwaysOnline
= FALSE
;
993 // of course, having a modem doesn't prevent us from having a
994 // permanent connection as well, but we have to guess somehow and
995 // it's probably more common that a system connected via a modem
996 // doesn't have any other net access, so:
997 ms_isAlwaysOnline
= FALSE
;
1001 wxASSERT_MSG( ms_isAlwaysOnline
!= -1, wxT("logic error") );
1003 return ms_isAlwaysOnline
!= 0;
1006 bool wxDialUpManagerMSW::IsOnline() const
1008 wxCHECK_MSG( IsOk(), FALSE
, wxT("using uninitialized wxDialUpManager") );
1010 if ( ms_userSpecifiedOnlineStatus
!= -1 )
1012 // user specified flag overrides our logic
1013 return ms_userSpecifiedOnlineStatus
!= 0;
1017 // return TRUE if there is at least one active connection
1018 return FindActiveConnection() != 0;
1022 void wxDialUpManagerMSW::SetOnlineStatus(bool isOnline
)
1024 wxCHECK_RET( IsOk(), wxT("using uninitialized wxDialUpManager") );
1026 ms_userSpecifiedOnlineStatus
= isOnline
;
1029 bool wxDialUpManagerMSW::EnableAutoCheckOnlineStatus(size_t nSeconds
)
1031 wxCHECK_MSG( IsOk(), FALSE
, wxT("using uninitialized wxDialUpManager") );
1033 bool ok
= ms_pfnRasConnectionNotification
!= 0;
1037 // we're running under NT 4.0, Windows 98 or later and can use
1038 // RasConnectionNotification() to be notified by a secondary thread
1040 // first, see if we don't have this thread already running
1041 if ( m_hThread
!= 0 )
1043 DWORD dwSuspendCount
= 2;
1044 while ( dwSuspendCount
> 1 )
1046 dwSuspendCount
= ResumeThread(m_hThread
);
1047 if ( dwSuspendCount
== (DWORD
)-1 )
1049 wxLogLastError(wxT("ResumeThread(RasThread)"));
1062 // create all the stuff we need to be notified about RAS connection
1067 // first create an event to wait on
1068 m_data
.hEventRas
= CreateEvent
1070 NULL
, // security attribute (default)
1071 FALSE
, // manual reset (not)
1072 FALSE
, // initial state (not signaled)
1075 if ( !m_data
.hEventRas
)
1077 wxLogLastError(wxT("CreateEvent(RasStatus)"));
1085 // create the event we use to quit the thread
1086 m_data
.hEventQuit
= CreateEvent(NULL
, FALSE
, FALSE
, NULL
);
1087 if ( !m_data
.hEventQuit
)
1089 wxLogLastError(wxT("CreateEvent(RasThreadQuit)"));
1091 CleanUpThreadData();
1097 if ( ok
&& !ms_hwndRas
)
1099 // create a hidden window to receive notification about connections
1101 extern const wxChar
*wxPanelClassName
;
1102 ms_hwndRas
= ::CreateWindow(wxPanelClassName
, NULL
,
1105 (HMENU
)NULL
, wxGetInstance(), 0);
1108 wxLogLastError(wxT("CreateWindow(RasHiddenWindow)"));
1110 CleanUpThreadData();
1116 FARPROC windowProc
= MakeProcInstance
1118 (FARPROC
)wxRasStatusWindowProc
,
1122 ::SetWindowLong(ms_hwndRas
, GWL_WNDPROC
, (LONG
) windowProc
);
1125 m_data
.hWnd
= ms_hwndRas
;
1129 // start the secondary thread
1130 m_data
.dialUpManager
= this;
1133 m_hThread
= CreateThread
1137 (LPTHREAD_START_ROUTINE
)wxRasMonitorThread
,
1145 wxLogLastError(wxT("CreateThread(RasStatusThread)"));
1147 CleanUpThreadData();
1153 // start receiving RAS notifications
1154 DWORD dwRet
= ms_pfnRasConnectionNotification
1156 (HRASCONN
)INVALID_HANDLE_VALUE
,
1158 3 /* RASCN_Connection | RASCN_Disconnection */
1163 wxLogDebug(wxT("RasConnectionNotification() failed: %s"),
1164 GetErrorString(dwRet
));
1166 CleanUpThreadData();
1174 // we're running under Windows 95 and have to poll ourselves
1175 // (or, alternatively, the code above for NT/98 failed)
1176 m_timerStatusPolling
.Stop();
1177 if ( nSeconds
== 0 )
1182 m_timerStatusPolling
.Start(nSeconds
* 1000);
1187 void wxDialUpManagerMSW::DisableAutoCheckOnlineStatus()
1189 wxCHECK_RET( IsOk(), wxT("using uninitialized wxDialUpManager") );
1193 // we have running secondary thread, it's just enough to suspend it
1194 if ( SuspendThread(m_hThread
) == (DWORD
)-1 )
1196 wxLogLastError(wxT("SuspendThread(RasThread)"));
1201 // even simpler - just stop the timer
1202 m_timerStatusPolling
.Stop();
1206 // ----------------------------------------------------------------------------
1207 // stubs which don't do anything in MSW version
1208 // ----------------------------------------------------------------------------
1210 void wxDialUpManagerMSW::SetWellKnownHost(const wxString
& WXUNUSED(hostname
),
1213 wxCHECK_RET( IsOk(), wxT("using uninitialized wxDialUpManager") );
1215 // nothing to do - we don't use this
1218 void wxDialUpManagerMSW::SetConnectCommand(const wxString
& WXUNUSED(dial
),
1219 const wxString
& WXUNUSED(hangup
))
1221 wxCHECK_RET( IsOk(), wxT("using uninitialized wxDialUpManager") );
1223 // nothing to do - we don't use this
1226 // ----------------------------------------------------------------------------
1228 // ----------------------------------------------------------------------------
1230 static DWORD
wxRasMonitorThread(wxRasThreadData
*data
)
1233 handles
[0] = data
->hEventRas
;
1234 handles
[1] = data
->hEventQuit
;
1239 DWORD dwRet
= WaitForMultipleObjects(2, handles
, FALSE
, INFINITE
);
1244 // RAS connection status changed
1245 SendMessage(data
->hWnd
, wxWM_RAS_STATUS_CHANGED
,
1249 case WAIT_OBJECT_0
+ 1:
1254 wxLogLastError(wxT("WaitForMultipleObjects(RasMonitor)"));
1262 static LRESULT APIENTRY
wxRasStatusWindowProc(HWND hWnd
, UINT message
,
1263 WPARAM wParam
, LPARAM lParam
)
1265 if ( message
== wxWM_RAS_STATUS_CHANGED
)
1267 wxRasThreadData
*data
= (wxRasThreadData
*)lParam
;
1268 data
->dialUpManager
->OnConnectStatusChange();
1270 else if ( message
== wxWM_RAS_DIALING_PROGRESS
)
1272 wxDialUpManagerMSW
*dialUpManager
= wxDialUpManagerMSW::GetDialer();
1274 dialUpManager
->OnDialProgress((RASCONNSTATE
)wParam
, lParam
);
1280 static void WINAPI
wxRasDialFunc(UINT unMsg
,
1281 RASCONNSTATE rasconnstate
,
1284 wxDialUpManagerMSW
*dialUpManager
= wxDialUpManagerMSW::GetDialer();
1286 wxCHECK_RET( dialUpManager
, wxT("who started to dial then?") );
1288 SendMessage(dialUpManager
->GetRasWindow(), wxWM_RAS_DIALING_PROGRESS
,
1289 rasconnstate
, dwError
);
1294 #endif // wxUSE_DIALUP_MANAGER