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 DEFINE_EVENT_TYPE(wxEVT_DIALUP_CONNECTED
)
56 DEFINE_EVENT_TYPE(wxEVT_DIALUP_DISCONNECTED
)
58 // Doesn't yet compile under VC++ 4, BC++, mingw, Watcom C++: no wininet.h
59 #if !defined(__BORLANDC__) && !defined(__GNUWIN32_OLD__) && !defined(__GNUWIN32__) && !defined(__WATCOMC__) && ! (defined(__VISUALC__) && (__VISUALC__ < 1020))
67 #ifndef INTERNET_CONNECTION_LAN
68 #define INTERNET_CONNECTION_LAN 2
70 #ifndef INTERNET_CONNECTION_PROXY
71 #define INTERNET_CONNECTION_PROXY 4
74 // ----------------------------------------------------------------------------
76 // ----------------------------------------------------------------------------
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)
82 // ----------------------------------------------------------------------------
84 // ----------------------------------------------------------------------------
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...
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
);
112 static const wxChar gs_funcSuffix
= _T('A');
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
);
134 static const wxChar gs_funcSuffix
= _T('W');
135 #endif // ASCII/Unicode
137 // structure passed to the secondary thread
138 struct WXDLLEXPORT wxRasThreadData
143 hEventRas
= hEventQuit
= INVALID_HANDLE_VALUE
;
144 dialUpManager
= NULL
;
147 HWND hWnd
; // window to send notifications to
148 HANDLE hEventRas
, // event which RAS signals when status changes
149 hEventQuit
; // event which we signal when we terminate
151 class WXDLLEXPORT wxDialUpManagerMSW
*dialUpManager
; // the owner
154 // ----------------------------------------------------------------------------
155 // wxDialUpManager class for MSW
156 // ----------------------------------------------------------------------------
158 class WXDLLEXPORT wxDialUpManagerMSW
: public wxDialUpManager
162 wxDialUpManagerMSW();
163 virtual ~wxDialUpManagerMSW();
165 // implement base class pure virtuals
166 virtual bool IsOk() const;
167 virtual size_t GetISPNames(wxArrayString
& names
) const;
168 virtual bool Dial(const wxString
& nameOfISP
,
169 const wxString
& username
,
170 const wxString
& password
,
172 virtual bool IsDialing() const;
173 virtual bool CancelDialing();
174 virtual bool HangUp();
175 virtual bool IsAlwaysOnline() const;
176 virtual bool IsOnline() const;
177 virtual void SetOnlineStatus(bool isOnline
= TRUE
);
178 virtual bool EnableAutoCheckOnlineStatus(size_t nSeconds
);
179 virtual void DisableAutoCheckOnlineStatus();
180 virtual void SetWellKnownHost(const wxString
& hostname
, int port
);
181 virtual void SetConnectCommand(const wxString
& commandDial
,
182 const wxString
& commandHangup
);
185 void CheckRasStatus();
187 // for wxRasStatusWindowProc
188 void OnConnectStatusChange();
189 void OnDialProgress(RASCONNSTATE rasconnstate
, DWORD dwError
);
192 static HWND
GetRasWindow() { return ms_hwndRas
; }
193 static wxDialUpManagerMSW
*GetDialer() { return ms_dialer
; }
196 // return the error string for the given RAS error code
197 static wxString
GetErrorString(DWORD error
);
199 // find the (first) handle of the active connection
200 static HRASCONN
FindActiveConnection();
202 // notify the application about status change
203 void NotifyApp(bool connected
, bool fromOurselves
= FALSE
) const;
205 // destroy the thread data and the thread itself
206 void CleanUpThreadData();
208 // timer used for polling RAS status
209 class WXDLLEXPORT RasTimer
: public wxTimer
212 RasTimer(wxDialUpManagerMSW
*dialUpManager
)
213 { m_dialUpManager
= dialUpManager
; }
215 virtual void Notify() { m_dialUpManager
->CheckRasStatus(); }
218 wxDialUpManagerMSW
*m_dialUpManager
;
219 } m_timerStatusPolling
;
221 // thread handle for the thread sitting on connection change event
224 // data used by this thread and our hidden window to send messages between
226 wxRasThreadData m_data
;
228 // the hidden window we use for passing messages between threads
229 static HWND ms_hwndRas
;
231 // the handle of the connection we initiated or 0 if none
232 static HRASCONN ms_hRasConnection
;
234 // the use count of rasapi32.dll
235 static int ms_nDllCount
;
237 // the handle of rasapi32.dll when it's loaded
238 static wxDllType ms_dllRas
;
240 // the pointers to RAS functions
241 static RASDIAL ms_pfnRasDial
;
242 static RASENUMCONNECTIONS ms_pfnRasEnumConnections
;
243 static RASENUMENTRIES ms_pfnRasEnumEntries
;
244 static RASGETCONNECTSTATUS ms_pfnRasGetConnectStatus
;
245 static RASGETERRORSTRING ms_pfnRasGetErrorString
;
246 static RASHANGUP ms_pfnRasHangUp
;
247 static RASGETPROJECTIONINFO ms_pfnRasGetProjectionInfo
;
248 static RASCREATEPHONEBOOKENTRY ms_pfnRasCreatePhonebookEntry
;
249 static RASEDITPHONEBOOKENTRY ms_pfnRasEditPhonebookEntry
;
250 static RASSETENTRYDIALPARAMS ms_pfnRasSetEntryDialParams
;
251 static RASGETENTRYDIALPARAMS ms_pfnRasGetEntryDialParams
;
252 static RASENUMDEVICES ms_pfnRasEnumDevices
;
253 static RASGETCOUNTRYINFO ms_pfnRasGetCountryInfo
;
254 static RASGETENTRYPROPERTIES ms_pfnRasGetEntryProperties
;
255 static RASSETENTRYPROPERTIES ms_pfnRasSetEntryProperties
;
256 static RASRENAMEENTRY ms_pfnRasRenameEntry
;
257 static RASDELETEENTRY ms_pfnRasDeleteEntry
;
258 static RASVALIDATEENTRYNAME ms_pfnRasValidateEntryName
;
260 // this function is not supported by Win95
261 static RASCONNECTIONNOTIFICATION ms_pfnRasConnectionNotification
;
263 // if this flag is different from -1, it overrides IsOnline()
264 static int ms_userSpecifiedOnlineStatus
;
266 // this flag tells us if we're online
267 static int ms_isConnected
;
269 // this flag is the result of the call to IsAlwaysOnline() (-1 if not
271 static int ms_isAlwaysOnline
;
273 // this flag tells us whether a call to RasDial() is in progress
274 static wxDialUpManagerMSW
*ms_dialer
;
277 // ----------------------------------------------------------------------------
279 // ----------------------------------------------------------------------------
281 static LRESULT WINAPI
wxRasStatusWindowProc(HWND hWnd
, UINT message
,
282 WPARAM wParam
, LPARAM lParam
);
284 static DWORD
wxRasMonitorThread(wxRasThreadData
*data
);
286 static void WINAPI
wxRasDialFunc(UINT unMsg
,
287 RASCONNSTATE rasconnstate
,
290 // ============================================================================
292 // ============================================================================
294 // ----------------------------------------------------------------------------
295 // init the static variables
296 // ----------------------------------------------------------------------------
298 HRASCONN
wxDialUpManagerMSW::ms_hRasConnection
= 0;
300 HWND
wxDialUpManagerMSW::ms_hwndRas
= 0;
302 int wxDialUpManagerMSW::ms_nDllCount
= 0;
303 wxDllType
wxDialUpManagerMSW::ms_dllRas
= 0;
305 RASDIAL
wxDialUpManagerMSW::ms_pfnRasDial
= 0;
306 RASENUMCONNECTIONS
wxDialUpManagerMSW::ms_pfnRasEnumConnections
= 0;
307 RASENUMENTRIES
wxDialUpManagerMSW::ms_pfnRasEnumEntries
= 0;
308 RASGETCONNECTSTATUS
wxDialUpManagerMSW::ms_pfnRasGetConnectStatus
= 0;
309 RASGETERRORSTRING
wxDialUpManagerMSW::ms_pfnRasGetErrorString
= 0;
310 RASHANGUP
wxDialUpManagerMSW::ms_pfnRasHangUp
= 0;
311 RASGETPROJECTIONINFO
wxDialUpManagerMSW::ms_pfnRasGetProjectionInfo
= 0;
312 RASCREATEPHONEBOOKENTRY
wxDialUpManagerMSW::ms_pfnRasCreatePhonebookEntry
= 0;
313 RASEDITPHONEBOOKENTRY
wxDialUpManagerMSW::ms_pfnRasEditPhonebookEntry
= 0;
314 RASSETENTRYDIALPARAMS
wxDialUpManagerMSW::ms_pfnRasSetEntryDialParams
= 0;
315 RASGETENTRYDIALPARAMS
wxDialUpManagerMSW::ms_pfnRasGetEntryDialParams
= 0;
316 RASENUMDEVICES
wxDialUpManagerMSW::ms_pfnRasEnumDevices
= 0;
317 RASGETCOUNTRYINFO
wxDialUpManagerMSW::ms_pfnRasGetCountryInfo
= 0;
318 RASGETENTRYPROPERTIES
wxDialUpManagerMSW::ms_pfnRasGetEntryProperties
= 0;
319 RASSETENTRYPROPERTIES
wxDialUpManagerMSW::ms_pfnRasSetEntryProperties
= 0;
320 RASRENAMEENTRY
wxDialUpManagerMSW::ms_pfnRasRenameEntry
= 0;
321 RASDELETEENTRY
wxDialUpManagerMSW::ms_pfnRasDeleteEntry
= 0;
322 RASVALIDATEENTRYNAME
wxDialUpManagerMSW::ms_pfnRasValidateEntryName
= 0;
323 RASCONNECTIONNOTIFICATION
wxDialUpManagerMSW::ms_pfnRasConnectionNotification
= 0;
325 int wxDialUpManagerMSW::ms_userSpecifiedOnlineStatus
= -1;
326 int wxDialUpManagerMSW::ms_isConnected
= -1;
327 int wxDialUpManagerMSW::ms_isAlwaysOnline
= -1;
328 wxDialUpManagerMSW
*wxDialUpManagerMSW::ms_dialer
= NULL
;
330 // ----------------------------------------------------------------------------
331 // ctor and dtor: the dynamic linking happens here
332 // ----------------------------------------------------------------------------
334 // the static creator function is implemented here
335 wxDialUpManager
*wxDialUpManager::Create()
337 return new wxDialUpManagerMSW
;
341 // warning about "'this' : used in base member initializer list" - so what?
342 #pragma warning(disable:4355)
345 wxDialUpManagerMSW::wxDialUpManagerMSW()
346 : m_timerStatusPolling(this)
348 // initialize our data
351 if ( !ms_nDllCount
++ )
353 // load the RAS library
354 ms_dllRas
= wxDllLoader::LoadLibrary("RASAPI32");
357 wxLogError(_("Dial up functions are unavailable because the remote access service (RAS) is not installed on this machine. Please install it."));
361 // resolve the functions we need
363 // this will contain the name of the function we failed to resolve
365 const char *funcName
= NULL
;
367 // get the function from rasapi32.dll and abort if it's not found
368 #define RESOLVE_RAS_FUNCTION(type, name) \
369 ms_pfn##name = (type)wxDllLoader::GetSymbol(ms_dllRas, \
370 wxString(_T(#name)) + gs_funcSuffix); \
371 if ( !ms_pfn##name ) \
377 // a variant of above macro which doesn't abort if the function is
378 // not found in the DLL
379 #define RESOLVE_OPTIONAL_RAS_FUNCTION(type, name) \
380 ms_pfn##name = (type)wxDllLoader::GetSymbol(ms_dllRas, \
381 wxString(_T(#name)) + gs_funcSuffix);
383 RESOLVE_RAS_FUNCTION(RASDIAL
, RasDial
);
384 RESOLVE_RAS_FUNCTION(RASENUMCONNECTIONS
, RasEnumConnections
);
385 RESOLVE_RAS_FUNCTION(RASENUMENTRIES
, RasEnumEntries
);
386 RESOLVE_RAS_FUNCTION(RASGETCONNECTSTATUS
, RasGetConnectStatus
);
387 RESOLVE_RAS_FUNCTION(RASGETERRORSTRING
, RasGetErrorString
);
388 RESOLVE_RAS_FUNCTION(RASHANGUP
, RasHangUp
);
389 RESOLVE_RAS_FUNCTION(RASGETENTRYDIALPARAMS
, RasGetEntryDialParams
);
391 // suppress wxDllLoader messages about missing (non essential)
396 RESOLVE_OPTIONAL_RAS_FUNCTION(RASGETPROJECTIONINFO
, RasGetProjectionInfo
);
397 RESOLVE_OPTIONAL_RAS_FUNCTION(RASCREATEPHONEBOOKENTRY
, RasCreatePhonebookEntry
);
398 RESOLVE_OPTIONAL_RAS_FUNCTION(RASEDITPHONEBOOKENTRY
, RasEditPhonebookEntry
);
399 RESOLVE_OPTIONAL_RAS_FUNCTION(RASSETENTRYDIALPARAMS
, RasSetEntryDialParams
);
400 RESOLVE_OPTIONAL_RAS_FUNCTION(RASGETENTRYPROPERTIES
, RasGetEntryProperties
);
401 RESOLVE_OPTIONAL_RAS_FUNCTION(RASSETENTRYPROPERTIES
, RasSetEntryProperties
);
402 RESOLVE_OPTIONAL_RAS_FUNCTION(RASRENAMEENTRY
, RasRenameEntry
);
403 RESOLVE_OPTIONAL_RAS_FUNCTION(RASDELETEENTRY
, RasDeleteEntry
);
404 RESOLVE_OPTIONAL_RAS_FUNCTION(RASVALIDATEENTRYNAME
, RasValidateEntryName
);
405 RESOLVE_OPTIONAL_RAS_FUNCTION(RASGETCOUNTRYINFO
, RasGetCountryInfo
);
406 RESOLVE_OPTIONAL_RAS_FUNCTION(RASENUMDEVICES
, RasEnumDevices
);
407 RESOLVE_OPTIONAL_RAS_FUNCTION(RASCONNECTIONNOTIFICATION
, RasConnectionNotification
);
410 // keep your preprocessor name space clean
411 #undef RESOLVE_RAS_FUNCTION
412 #undef RESOLVE_OPTIONAL_RAS_FUNCTION
417 static const wxChar
*msg
= wxTRANSLATE(
418 "The version of remote access service (RAS) installed on this machine is too\
419 old, please upgrade (the following required function is missing: %s)."
422 wxLogError(wxGetTranslation(msg
), funcName
);
424 wxDllLoader::UnloadLibrary(ms_dllRas
);
433 // enable auto check by default
434 EnableAutoCheckOnlineStatus(0);
437 wxDialUpManagerMSW::~wxDialUpManagerMSW()
441 if ( !--ms_nDllCount
)
443 // unload the RAS library
444 wxDllLoader::UnloadLibrary(ms_dllRas
);
449 // ----------------------------------------------------------------------------
451 // ----------------------------------------------------------------------------
453 wxString
wxDialUpManagerMSW::GetErrorString(DWORD error
)
455 wxChar buffer
[512]; // this should be more than enough according to MS docs
456 DWORD dwRet
= ms_pfnRasGetErrorString(error
, buffer
, WXSIZEOF(buffer
));
459 case ERROR_INVALID_PARAMETER
:
460 // this was a standard Win32 error probably
461 return wxString(wxSysErrorMsg(error
));
466 _("Failed to retrieve text of RAS error message"));
469 msg
.Printf(_("unknown error (error code %08x)."), error
);
474 // we want the error message to start from a lower case letter
475 buffer
[0] = wxTolower(buffer
[0]);
477 return wxString(buffer
);
481 HRASCONN
wxDialUpManagerMSW::FindActiveConnection()
483 // enumerate connections
484 DWORD cbBuf
= sizeof(RASCONN
);
485 LPRASCONN lpRasConn
= (LPRASCONN
)malloc(cbBuf
);
492 lpRasConn
->dwSize
= sizeof(RASCONN
);
494 DWORD nConnections
= 0;
495 DWORD dwRet
= ERROR_BUFFER_TOO_SMALL
;
497 while ( dwRet
== ERROR_BUFFER_TOO_SMALL
)
499 dwRet
= ms_pfnRasEnumConnections(lpRasConn
, &cbBuf
, &nConnections
);
501 if ( dwRet
== ERROR_BUFFER_TOO_SMALL
)
503 LPRASCONN lpRasConnOld
= lpRasConn
;
504 lpRasConn
= (LPRASCONN
)realloc(lpRasConn
, cbBuf
);
513 else if ( dwRet
== 0 )
521 wxLogError(_("Cannot find active dialup connection: %s"),
522 GetErrorString(dwRet
).c_str());
529 switch ( nConnections
)
537 // more than 1 connection - we don't know what to do with this
538 // case, so give a warning but continue (taking the first
539 // connection) - the warning is really needed because this function
540 // is used, for example, to select the connection to hang up and so
541 // we may hang up the wrong connection here...
542 wxLogWarning(_("Several active dialup connections found, choosing one randomly."));
546 // exactly 1 connection, great
547 hrasconn
= lpRasConn
->hrasconn
;
555 void wxDialUpManagerMSW::CleanUpThreadData()
559 if ( !SetEvent(m_data
.hEventQuit
) )
561 wxLogLastError(_T("SetEvent(RasThreadQuit)"));
564 CloseHandle(m_hThread
);
571 DestroyWindow(m_data
.hWnd
);
576 if ( m_data
.hEventQuit
)
578 CloseHandle(m_data
.hEventQuit
);
580 m_data
.hEventQuit
= 0;
583 if ( m_data
.hEventRas
)
585 CloseHandle(m_data
.hEventRas
);
587 m_data
.hEventRas
= 0;
591 // ----------------------------------------------------------------------------
593 // ----------------------------------------------------------------------------
595 void wxDialUpManagerMSW::CheckRasStatus()
597 // use int, not bool to compare with -1
598 int isConnected
= FindActiveConnection() != 0;
599 if ( isConnected
!= ms_isConnected
)
601 if ( ms_isConnected
!= -1 )
603 // notify the program
604 NotifyApp(isConnected
!= 0);
606 // else: it's the first time we're called, just update the flag
608 ms_isConnected
= isConnected
;
612 void wxDialUpManagerMSW::NotifyApp(bool connected
, bool fromOurselves
) const
614 wxDialUpEvent
event(connected
, fromOurselves
);
615 (void)wxTheApp
->ProcessEvent(event
);
618 // this function is called whenever the status of any RAS connection on this
619 // machine changes by RAS itself
620 void wxDialUpManagerMSW::OnConnectStatusChange()
622 // we know that status changed, but we don't know whether we're connected
623 // or not - so find it out
627 // this function is called by our callback which we give to RasDial() when
628 // calling it asynchronously
629 void wxDialUpManagerMSW::OnDialProgress(RASCONNSTATE rasconnstate
,
634 // this probably means that CancelDialing() was called and we get
635 // "disconnected" notification
639 // we're only interested in 2 events: connected and disconnected
642 wxLogError(_("Failed to establish dialup connection: %s"),
643 GetErrorString(dwError
).c_str());
645 // we should still call RasHangUp() if we got a non 0 connection
646 if ( ms_hRasConnection
)
648 ms_pfnRasHangUp(ms_hRasConnection
);
649 ms_hRasConnection
= 0;
654 NotifyApp(FALSE
/* !connected */, TRUE
/* we dialed ourselves */);
656 else if ( rasconnstate
== RASCS_Connected
)
658 ms_isConnected
= TRUE
;
661 NotifyApp(TRUE
/* connected */, TRUE
/* we dialed ourselves */);
665 // ----------------------------------------------------------------------------
666 // implementation of wxDialUpManager functions
667 // ----------------------------------------------------------------------------
669 bool wxDialUpManagerMSW::IsOk() const
671 return ms_dllRas
!= 0;
674 size_t wxDialUpManagerMSW::GetISPNames(wxArrayString
& names
) const
677 DWORD size
= sizeof(RASENTRYNAME
);
678 RASENTRYNAME
*rasEntries
= (RASENTRYNAME
*)malloc(size
);
679 rasEntries
->dwSize
= sizeof(RASENTRYNAME
);
685 dwRet
= ms_pfnRasEnumEntries
688 NULL
, // default phone book (or all)
689 rasEntries
, // [out] buffer for the entries
690 &size
, // [in/out] size of the buffer
691 &nEntries
// [out] number of entries fetched
694 if ( dwRet
== ERROR_BUFFER_TOO_SMALL
)
696 // reallocate the buffer
697 rasEntries
= (RASENTRYNAME
*)realloc(rasEntries
, size
);
699 else if ( dwRet
!= 0 )
701 // some other error - abort
702 wxLogError(_("Failed to get ISP names: %s"),
703 GetErrorString(dwRet
).c_str());
710 while ( dwRet
!= 0 );
714 for ( size_t n
= 0; n
< (size_t)nEntries
; n
++ )
716 names
.Add(rasEntries
[n
].szEntryName
);
721 // return the number of entries
722 return names
.GetCount();
725 bool wxDialUpManagerMSW::Dial(const wxString
& nameOfISP
,
726 const wxString
& username
,
727 const wxString
& password
,
730 // check preconditions
731 wxCHECK_MSG( IsOk(), FALSE
, wxT("using uninitialized wxDialUpManager") );
733 if ( ms_hRasConnection
)
735 wxFAIL_MSG(wxT("there is already an active connection"));
740 // get the default ISP if none given
741 wxString
entryName(nameOfISP
);
745 size_t count
= GetISPNames(names
);
749 // no known ISPs, abort
750 wxLogError(_("Failed to connect: no ISP to dial."));
755 // only one ISP, choose it
756 entryName
= names
[0u];
760 // several ISPs, let the user choose
762 wxString
*strings
= new wxString
[count
];
763 for ( size_t i
= 0; i
< count
; i
++ )
765 strings
[i
] = names
[i
];
768 entryName
= wxGetSingleChoice
770 _("Choose ISP to dial"),
771 _("Please choose which ISP do you want to connect to"),
787 RASDIALPARAMS rasDialParams
;
788 rasDialParams
.dwSize
= sizeof(rasDialParams
);
789 wxStrncpy(rasDialParams
.szEntryName
, entryName
, RAS_MaxEntryName
);
791 // do we have the username and password?
792 if ( !username
|| !password
)
795 DWORD dwRet
= ms_pfnRasGetEntryDialParams
797 NULL
, // default phonebook
798 &rasDialParams
, // [in/out] the params of this entry
799 &gotPassword
// [out] did we get password?
804 wxLogError(_("Failed to connect: missing username/password."));
811 wxStrncpy(rasDialParams
.szUserName
, username
, UNLEN
);
812 wxStrncpy(rasDialParams
.szPassword
, password
, PWLEN
);
815 // default values for other fields
816 rasDialParams
.szPhoneNumber
[0] = '\0';
817 rasDialParams
.szCallbackNumber
[0] = '\0';
818 rasDialParams
.szCallbackNumber
[0] = '\0';
820 rasDialParams
.szDomain
[0] = '*';
821 rasDialParams
.szDomain
[1] = '\0';
823 // apparently, this is not really necessary - passing NULL instead of the
824 // phone book has the same effect
827 if ( wxGetOsVersion() == wxWINDOWS_NT
)
829 // first get the length
830 UINT nLen
= ::GetSystemDirectory(NULL
, 0);
833 if ( !::GetSystemDirectory(phoneBook
.GetWriteBuf(nLen
), nLen
) )
835 wxLogSysError(_("Cannot find the location of address book file"));
838 phoneBook
.UngetWriteBuf();
840 // this is the default phone book
841 phoneBook
<< "\\ras\\rasphone.pbk";
845 // TODO may be we should disable auto check while async dialing is in
850 DWORD dwRet
= ms_pfnRasDial
852 (LPRASDIALEXTENSIONS
)NULL
, // no extended features
853 NULL
, // default phone book file (NT only)
855 0, // use callback for notifications
856 async
? wxRasDialFunc
// the callback
857 : 0, // no notifications - sync operation
863 wxLogError(_("Failed to %s dialup connection: %s"),
864 async
? _("initiate") : _("establish"),
865 GetErrorString(dwRet
).c_str());
867 // we should still call RasHangUp() if we got a non 0 connection
868 if ( ms_hRasConnection
)
870 ms_pfnRasHangUp(ms_hRasConnection
);
871 ms_hRasConnection
= 0;
879 // for async dialing, we're not yet connected
882 ms_isConnected
= TRUE
;
888 bool wxDialUpManagerMSW::IsDialing() const
890 return GetDialer() != NULL
;
893 bool wxDialUpManagerMSW::CancelDialing()
901 wxASSERT_MSG( ms_hRasConnection
, wxT("dialing but no connection?") );
908 bool wxDialUpManagerMSW::HangUp()
910 wxCHECK_MSG( IsOk(), FALSE
, wxT("using uninitialized wxDialUpManager") );
912 // we may terminate either the connection we initiated or another one which
915 if ( ms_hRasConnection
)
917 hRasConn
= ms_hRasConnection
;
919 ms_hRasConnection
= 0;
923 hRasConn
= FindActiveConnection();
928 wxLogError(_("Cannot hang up - no active dialup connection."));
933 DWORD dwRet
= ms_pfnRasHangUp(hRasConn
);
936 wxLogError(_("Failed to terminate the dialup connection: %s"),
937 GetErrorString(dwRet
).c_str());
940 ms_isConnected
= FALSE
;
945 bool wxDialUpManagerMSW::IsAlwaysOnline() const
947 // we cache the result (presumably this won't change while the program is
949 if ( ms_isAlwaysOnline
!= -1 )
951 return ms_isAlwaysOnline
!= 0;
954 // try to use WinInet function first
956 wxDllType hDll
= wxDllLoader::LoadLibrary(_T("WININET"), &ok
);
959 typedef BOOL (*INTERNETGETCONNECTEDSTATE
)(LPDWORD
, DWORD
);
960 INTERNETGETCONNECTEDSTATE pfnInternetGetConnectedState
;
962 #define RESOLVE_FUNCTION(type, name) \
963 pfn##name = (type)wxDllLoader::GetSymbol(hDll, _T(#name))
965 RESOLVE_FUNCTION(INTERNETGETCONNECTEDSTATE
, InternetGetConnectedState
);
967 if ( pfnInternetGetConnectedState
)
970 if ( pfnInternetGetConnectedState(&flags
, 0 /* reserved */) )
972 // there is some connection to the net, see of which type
973 ms_isAlwaysOnline
= (flags
& INTERNET_CONNECTION_LAN
!= 0) ||
974 (flags
& INTERNET_CONNECTION_PROXY
!= 0);
978 // no Internet connection at all
979 ms_isAlwaysOnline
= FALSE
;
983 wxDllLoader::UnloadLibrary(hDll
);
986 // did we succeed with WinInet? if not, try something else
987 if ( ms_isAlwaysOnline
== -1 )
991 // definitely no permanent connection because we are not connected
993 ms_isAlwaysOnline
= FALSE
;
997 // of course, having a modem doesn't prevent us from having a
998 // permanent connection as well, but we have to guess somehow and
999 // it's probably more common that a system connected via a modem
1000 // doesn't have any other net access, so:
1001 ms_isAlwaysOnline
= FALSE
;
1005 wxASSERT_MSG( ms_isAlwaysOnline
!= -1, wxT("logic error") );
1007 return ms_isAlwaysOnline
!= 0;
1010 bool wxDialUpManagerMSW::IsOnline() const
1012 wxCHECK_MSG( IsOk(), FALSE
, wxT("using uninitialized wxDialUpManager") );
1014 if ( ms_userSpecifiedOnlineStatus
!= -1 )
1016 // user specified flag overrides our logic
1017 return ms_userSpecifiedOnlineStatus
!= 0;
1021 // return TRUE if there is at least one active connection
1022 return FindActiveConnection() != 0;
1026 void wxDialUpManagerMSW::SetOnlineStatus(bool isOnline
)
1028 wxCHECK_RET( IsOk(), wxT("using uninitialized wxDialUpManager") );
1030 ms_userSpecifiedOnlineStatus
= isOnline
;
1033 bool wxDialUpManagerMSW::EnableAutoCheckOnlineStatus(size_t nSeconds
)
1035 wxCHECK_MSG( IsOk(), FALSE
, wxT("using uninitialized wxDialUpManager") );
1037 bool ok
= ms_pfnRasConnectionNotification
!= 0;
1041 // we're running under NT 4.0, Windows 98 or later and can use
1042 // RasConnectionNotification() to be notified by a secondary thread
1044 // first, see if we don't have this thread already running
1045 if ( m_hThread
!= 0 )
1047 DWORD dwSuspendCount
= 2;
1048 while ( dwSuspendCount
> 1 )
1050 dwSuspendCount
= ResumeThread(m_hThread
);
1051 if ( dwSuspendCount
== (DWORD
)-1 )
1053 wxLogLastError(wxT("ResumeThread(RasThread)"));
1066 // create all the stuff we need to be notified about RAS connection
1071 // first create an event to wait on
1072 m_data
.hEventRas
= CreateEvent
1074 NULL
, // security attribute (default)
1075 FALSE
, // manual reset (not)
1076 FALSE
, // initial state (not signaled)
1079 if ( !m_data
.hEventRas
)
1081 wxLogLastError(wxT("CreateEvent(RasStatus)"));
1089 // create the event we use to quit the thread
1090 m_data
.hEventQuit
= CreateEvent(NULL
, FALSE
, FALSE
, NULL
);
1091 if ( !m_data
.hEventQuit
)
1093 wxLogLastError(wxT("CreateEvent(RasThreadQuit)"));
1095 CleanUpThreadData();
1101 if ( ok
&& !ms_hwndRas
)
1103 // create a hidden window to receive notification about connections
1105 extern const wxChar
*wxPanelClassName
;
1106 ms_hwndRas
= ::CreateWindow(wxPanelClassName
, NULL
,
1109 (HMENU
)NULL
, wxGetInstance(), 0);
1112 wxLogLastError(wxT("CreateWindow(RasHiddenWindow)"));
1114 CleanUpThreadData();
1120 FARPROC windowProc
= MakeProcInstance
1122 (FARPROC
)wxRasStatusWindowProc
,
1126 ::SetWindowLong(ms_hwndRas
, GWL_WNDPROC
, (LONG
) windowProc
);
1129 m_data
.hWnd
= ms_hwndRas
;
1133 // start the secondary thread
1134 m_data
.dialUpManager
= this;
1137 m_hThread
= CreateThread
1141 (LPTHREAD_START_ROUTINE
)wxRasMonitorThread
,
1149 wxLogLastError(wxT("CreateThread(RasStatusThread)"));
1151 CleanUpThreadData();
1157 // start receiving RAS notifications
1158 DWORD dwRet
= ms_pfnRasConnectionNotification
1160 (HRASCONN
)INVALID_HANDLE_VALUE
,
1162 3 /* RASCN_Connection | RASCN_Disconnection */
1167 wxLogDebug(wxT("RasConnectionNotification() failed: %s"),
1168 GetErrorString(dwRet
).c_str());
1170 CleanUpThreadData();
1178 // we're running under Windows 95 and have to poll ourselves
1179 // (or, alternatively, the code above for NT/98 failed)
1180 m_timerStatusPolling
.Stop();
1181 if ( nSeconds
== 0 )
1186 m_timerStatusPolling
.Start(nSeconds
* 1000);
1191 void wxDialUpManagerMSW::DisableAutoCheckOnlineStatus()
1193 wxCHECK_RET( IsOk(), wxT("using uninitialized wxDialUpManager") );
1197 // we have running secondary thread, it's just enough to suspend it
1198 if ( SuspendThread(m_hThread
) == (DWORD
)-1 )
1200 wxLogLastError(wxT("SuspendThread(RasThread)"));
1205 // even simpler - just stop the timer
1206 m_timerStatusPolling
.Stop();
1210 // ----------------------------------------------------------------------------
1211 // stubs which don't do anything in MSW version
1212 // ----------------------------------------------------------------------------
1214 void wxDialUpManagerMSW::SetWellKnownHost(const wxString
& WXUNUSED(hostname
),
1217 wxCHECK_RET( IsOk(), wxT("using uninitialized wxDialUpManager") );
1219 // nothing to do - we don't use this
1222 void wxDialUpManagerMSW::SetConnectCommand(const wxString
& WXUNUSED(dial
),
1223 const wxString
& WXUNUSED(hangup
))
1225 wxCHECK_RET( IsOk(), wxT("using uninitialized wxDialUpManager") );
1227 // nothing to do - we don't use this
1230 // ----------------------------------------------------------------------------
1232 // ----------------------------------------------------------------------------
1234 static DWORD
wxRasMonitorThread(wxRasThreadData
*data
)
1237 handles
[0] = data
->hEventRas
;
1238 handles
[1] = data
->hEventQuit
;
1243 DWORD dwRet
= WaitForMultipleObjects(2, handles
, FALSE
, INFINITE
);
1248 // RAS connection status changed
1249 SendMessage(data
->hWnd
, wxWM_RAS_STATUS_CHANGED
,
1253 case WAIT_OBJECT_0
+ 1:
1258 wxLogLastError(wxT("WaitForMultipleObjects(RasMonitor)"));
1266 static LRESULT APIENTRY
wxRasStatusWindowProc(HWND hWnd
, UINT message
,
1267 WPARAM wParam
, LPARAM lParam
)
1269 if ( message
== wxWM_RAS_STATUS_CHANGED
)
1271 wxRasThreadData
*data
= (wxRasThreadData
*)lParam
;
1272 data
->dialUpManager
->OnConnectStatusChange();
1274 else if ( message
== wxWM_RAS_DIALING_PROGRESS
)
1276 wxDialUpManagerMSW
*dialUpManager
= wxDialUpManagerMSW::GetDialer();
1278 dialUpManager
->OnDialProgress((RASCONNSTATE
)wParam
, lParam
);
1284 static void WINAPI
wxRasDialFunc(UINT unMsg
,
1285 RASCONNSTATE rasconnstate
,
1288 wxDialUpManagerMSW
*dialUpManager
= wxDialUpManagerMSW::GetDialer();
1290 wxCHECK_RET( dialUpManager
, wxT("who started to dial then?") );
1292 SendMessage(dialUpManager
->GetRasWindow(), wxWM_RAS_DIALING_PROGRESS
,
1293 rasconnstate
, dwError
);
1298 #endif // wxUSE_DIALUP_MANAGER