netchck.cpp
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:14k
源码类别:

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: netchck.cpp,v 1.4.46.1 2004/07/09 02:07:34 hubbe Exp $
  3.  * 
  4.  * Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserved.
  5.  * 
  6.  * The contents of this file, and the files included with this file,
  7.  * are subject to the current version of the RealNetworks Public
  8.  * Source License (the "RPSL") available at
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed
  10.  * the file under the current version of the RealNetworks Community
  11.  * Source License (the "RCSL") available at
  12.  * http://www.helixcommunity.org/content/rcsl, in which case the RCSL
  13.  * will apply. You may also obtain the license terms directly from
  14.  * RealNetworks.  You may not use this file except in compliance with
  15.  * the RPSL or, if you have a valid RCSL with RealNetworks applicable
  16.  * to this file, the RCSL.  Please see the applicable RPSL or RCSL for
  17.  * the rights, obligations and limitations governing use of the
  18.  * contents of the file.
  19.  * 
  20.  * Alternatively, the contents of this file may be used under the
  21.  * terms of the GNU General Public License Version 2 or later (the
  22.  * "GPL") in which case the provisions of the GPL are applicable
  23.  * instead of those above. If you wish to allow use of your version of
  24.  * this file only under the terms of the GPL, and not to allow others
  25.  * to use your version of this file under the terms of either the RPSL
  26.  * or RCSL, indicate your decision by deleting the provisions above
  27.  * and replace them with the notice and other provisions required by
  28.  * the GPL. If you do not delete the provisions above, a recipient may
  29.  * use your version of this file under the terms of any one of the
  30.  * RPSL, the RCSL or the GPL.
  31.  * 
  32.  * This file is part of the Helix DNA Technology. RealNetworks is the
  33.  * developer of the Original Code and owns the copyrights in the
  34.  * portions it created.
  35.  * 
  36.  * This file, and the files included with this file, is distributed
  37.  * and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY
  38.  * KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS
  39.  * ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES
  40.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET
  41.  * ENJOYMENT OR NON-INFRINGEMENT.
  42.  * 
  43.  * Technology Compatibility Kit Test Suite(s) Location:
  44.  *    http://www.helixcommunity.org/content/tck
  45.  * 
  46.  * Contributor(s):
  47.  * 
  48.  * ***** END LICENSE BLOCK ***** */
  49. #ifndef _MAC_MACHO
  50. #include "OpenTransport.h"
  51. #include "OpenTptInternet.h"
  52. #endif
  53. #include "prefdefs.h"
  54. #include "netchck.h"
  55. #include "hxtick.h"
  56. #define DEF_HTTP_PORT      80
  57. #define DEF_DNS_PORT      53 //tcp
  58. enum {
  59. kOTTCPDialUnknown = 0,
  60. kOTTCPDialTCPDisabled,
  61. kOTTCPDialYes,
  62. kOTTCPDialNo
  63. };
  64. // From SCNetwork.h in SystemConfiguration.framework
  65. typedef Boolean (*SCNetworkCheckReachabilityByNameProcPtr) ( const char *nodename,
  66.                                                              int *flags );
  67. CHXNetCheck::CHXNetCheck(UINT32 timeout) :
  68. XHXNetCheck(timeout)
  69. , m_pRmaNetServices(0)
  70. , m_pRmaTCPSocket(0)
  71. , m_pContext(0)
  72. , m_fConnected(FALSE)
  73. , m_fFailed(FALSE)
  74. , m_lRefCount(0)
  75. {
  76. }
  77. CHXNetCheck::~CHXNetCheck()
  78. {
  79. if (m_pContext)
  80. m_pContext->Release();
  81. m_pContext = NULL;
  82. if (m_pRmaNetServices)
  83. m_pRmaNetServices->Release();
  84. m_pRmaNetServices = NULL;
  85. if (m_pRmaTCPSocket)
  86. m_pRmaTCPSocket->Release();
  87. m_pRmaTCPSocket = NULL;
  88. }
  89. /////////////////////////////////////////////////////////////////////////
  90. //  Method:
  91. // IUnknown::QueryInterface
  92. //  Purpose:
  93. // Implement this to export the interfaces supported by your 
  94. // object.
  95. //
  96. STDMETHODIMP CHXNetCheck::QueryInterface(REFIID riid, void** ppvObj)
  97. {
  98.     if (IsEqualIID(riid, IID_IUnknown))
  99.     {
  100.     AddRef();
  101.     *ppvObj = this;
  102.     return HXR_OK;
  103.     }
  104.     if (IsEqualIID(riid, IID_IHXTCPResponse))
  105.     {
  106.     AddRef();
  107.     *ppvObj = (IHXTCPResponse*)this;
  108.     return HXR_OK;
  109.     }
  110.     *ppvObj = NULL;
  111.     return HXR_NOINTERFACE;
  112. }
  113. /////////////////////////////////////////////////////////////////////////
  114. //  Method:
  115. // IUnknown::AddRef
  116. //  Purpose:
  117. // Everyone usually implements this the same... feel free to use
  118. // this implementation.
  119. //
  120. STDMETHODIMP_(UINT32) CHXNetCheck::AddRef()
  121. {
  122.     return InterlockedIncrement(&m_lRefCount);
  123. }
  124. /////////////////////////////////////////////////////////////////////////
  125. //  Method:
  126. // IUnknown::Release
  127. //  Purpose:
  128. // Everyone usually implements this the same... feel free to use
  129. // this implementation.
  130. //
  131. STDMETHODIMP_(UINT32) CHXNetCheck::Release()
  132. {
  133.     if (InterlockedDecrement(&m_lRefCount) > 0)
  134.     {
  135.         return m_lRefCount;
  136.     }
  137.     delete this;
  138.     return 0;
  139. }
  140. /*
  141.  * IHXTCPResponse methods
  142.  */
  143. /************************************************************************
  144.  * Method:
  145.  *     IHXTCPResponse::ConnectDone
  146.  * Purpose:
  147.  *     A Connect operation has been completed or an error has occurred.
  148.  */
  149. STDMETHODIMP CHXNetCheck::ConnectDone (HX_RESULT status)
  150. {
  151. HX_ASSERT(m_fConnected == FALSE); // We shouldn't be getting called if 
  152. // we aren't expecting it.
  153. if (status == HXR_OK)
  154. m_fConnected = TRUE;
  155. else
  156. m_fFailed = TRUE;
  157. return HXR_OK;
  158. }
  159. /************************************************************************
  160.  * Method:
  161.  *     IHXTCPResponse::ReadDone
  162.  * Purpose:
  163.  *     A Read operation has been completed or an error has occurred.
  164.  *     The data is returned in the IHXBuffer.
  165.  */
  166. STDMETHODIMP CHXNetCheck::ReadDone (HX_RESULT status,
  167. IHXBuffer* pBuffer)
  168. {
  169. HX_ASSERT(FALSE);
  170. return HXR_OK;
  171. }
  172. /************************************************************************
  173.  * Method:
  174.  *     IHXTCPResponse::WriteReady
  175.  * Purpose:
  176.  *     This is the response method for WantWrite.
  177.  *     If HX_RESULT is ok, then the TCP channel is ok to Write to.
  178.  */
  179. STDMETHODIMP CHXNetCheck::WriteReady (HX_RESULT status)
  180. {
  181. HX_ASSERT(FALSE);
  182. return HXR_OK;
  183. }
  184. /************************************************************************
  185.  * Method:
  186.  *     IHXTCPResponse::Closed
  187.  * Purpose:
  188.  *     This method is called to inform you that the TCP channel has
  189.  *     been closed by the peer or closed due to error.
  190.  */
  191. STDMETHODIMP CHXNetCheck::Closed(HX_RESULT status)
  192. {
  193. m_fConnected = FALSE;
  194. return HXR_OK;
  195. }
  196. //******************************************************************************
  197. //
  198. // Method: CHXNetCheck::Init
  199. //
  200. // Purpose: Sets up the CHXNetCheck object with a context.
  201. //
  202. //
  203. // Notes: n/a
  204. //
  205. //******************************************************************************
  206. HX_RESULT 
  207. CHXNetCheck::Init(IUnknown *pContext)
  208. {
  209. HX_RESULT result = HXR_OK;
  210. if (!pContext)
  211. return HXR_FAILED;
  212. m_pContext = pContext;
  213. m_pContext->AddRef();
  214. return result;
  215. }
  216. //******************************************************************************
  217. //
  218. // Method: CHXNetCheck::FInternetAvailable
  219. //
  220. // Purpose: Checks to see if the internet is available.  Returns true if it is, 
  221. // false otherwise.
  222. //
  223. //
  224. // Notes: n/a
  225. //
  226. //******************************************************************************
  227. BOOL 
  228. CHXNetCheck::FInternetAvailable(BOOL fPing,BOOL fProxy)
  229. {
  230.     BOOL fRet = FALSE;
  231.     BOOL fAutoDial = FALSE;
  232.     UINT16 nPort = DEF_HTTP_PORT;
  233.     ULONG32  willTCPDial;
  234.     OSErr TCPError = HXMacNetWillDial(NULL, &willTCPDial);
  235.     HX_ASSERT(noErr == TCPError);
  236.     
  237.     if (noErr == TCPError)
  238.     {
  239. switch ( willTCPDial ) 
  240. {
  241.     case kOTTCPDialTCPDisabled:
  242.     // TCP/IP is disabled
  243.     break;
  244.     case kOTTCPDialUnknown:
  245.     // We don't know whether opening a TCP endpoint will dial the modem 
  246.     break;
  247.     case kOTTCPDialYes:
  248.     // Opening a TCP endpoint will dial the modem.
  249.     fAutoDial = TRUE;
  250.     break;
  251.     case kOTTCPDialNo:
  252.     // Opening a TCP endpoint will not dial the modem.
  253.     break;
  254.      }
  255.     }
  256.     else
  257.     {
  258.      return FALSE; // no network conection or no PPP setup
  259.     }
  260.     
  261.     if (!fAutoDial)
  262.     {
  263.      if (fPing)
  264. {
  265.     // try to get DNS address to ping.
  266.     CHXString strPingAddr;
  267.     GetDNSAddress(strPingAddr);
  268.     nPort = DEF_DNS_PORT;
  269.     // No DNS address? Default to a known web server.
  270.     // XXXBJP pinging video.real.com, used in Beta 1, should be
  271.     // changed for Beta 2!!
  272.     if (strPingAddr.IsEmpty())
  273.     {
  274. HX_ASSERT(FALSE);
  275. strPingAddr = "209.66.98.23";
  276. nPort = DEF_HTTP_PORT;
  277.     }
  278.     fRet = Ping(strPingAddr, nPort, FALSE);
  279. }
  280. else 
  281.     fRet = TRUE;
  282.     }
  283.     return (fRet);
  284. }
  285. //******************************************************************************
  286. //
  287. // Method: CHXNetCheck::Ping
  288. //
  289. // Purpose: Tests to see if we can open a TCP connection to the given hostname. 
  290. // if fAynchronous is true, we call back a response object provided by
  291. // the caller (through Init).  Otherwise we block.
  292. //
  293. //
  294. // Notes: n/a
  295. //
  296. //******************************************************************************
  297. BOOL CHXNetCheck::Ping(const char *szHostName, UINT16 nPort, BOOL fAsynchronous)
  298. {
  299. ULONG32 ulStartTime, ulCurrentTime, ulInterval, ulElapsedTime;
  300. BOOL fRet = FALSE;
  301. // If we don't have the network services interface yet than try and get it here
  302. if (m_pContext && !m_pRmaNetServices)
  303.     m_pContext->QueryInterface(IID_IHXNetworkServices, (void**)&m_pRmaNetServices);
  304. if (!m_pRmaTCPSocket)
  305. m_pRmaNetServices->CreateTCPSocket(&m_pRmaTCPSocket);
  306. if (!m_pRmaTCPSocket)
  307. return FALSE;
  308. m_fFailed = m_fConnected = FALSE;
  309. m_pRmaTCPSocket->Init(this);
  310. m_pRmaTCPSocket->Connect(szHostName, nPort);
  311. ulElapsedTime = 0;
  312. ulInterval = 30000;
  313. // Get start time
  314. ulStartTime = HX_GET_TICKCOUNT();
  315. while (!m_fFailed && !m_fConnected && (ulElapsedTime < ulInterval))
  316. {
  317. SleepWell(1000);
  318.     ulCurrentTime = HX_GET_TICKCOUNT();
  319. ulElapsedTime = CALCULATE_ELAPSED_TICKS(ulStartTime, ulCurrentTime);
  320. }
  321. fRet = m_fConnected;
  322. m_pRmaTCPSocket->Release();
  323. m_pRmaTCPSocket = NULL;
  324. return (fRet);
  325. }
  326. //******************************************************************************
  327. //
  328. // Method: CHXNetCheck::GetDNSAddress
  329. //
  330. // Purpose: Determines the IP address of the user's primary DNS server.
  331. //
  332. // Notes: Returns IP address in numeric form, in a CHXString. An empty
  333. // string is returned when the IP address cannot be determined.
  334. //
  335. //******************************************************************************
  336. void CHXNetCheck::GetDNSAddress(CHXString& strDNS)
  337. {
  338. // Get information about the interface ( 0 is default )
  339. InetInterfaceInfo theInfo;
  340. OSStatus result = OTInetGetInterfaceInfo (&theInfo, 0);
  341. // Retrieve DNS from structure
  342. InetHost theDNS = theInfo.fDNSAddr;
  343. // Convert InetHost to char*
  344. char theDNSString[255]; /* Flawfinder: ignore */
  345. OTInetHostToString (theDNS,theDNSString);
  346. // Copy that to the CHXString
  347. strDNS = theDNSString;
  348. // We are done ! 
  349. }
  350. //******************************************************************************
  351. //
  352. // Method: CHXNetCheck::SleepWell
  353. //
  354. // Purpose: This method sleeps but continues to pump messages.  This allows us to 
  355. // block properly, even under such platforms as Win16.
  356. //
  357. //
  358. // Notes: n/a
  359. //
  360. //******************************************************************************
  361. void CHXNetCheck::SleepWell(ULONG32 ulInterval)
  362. {
  363. #if 0
  364. ULONG32 ulStartTime, ulCurrentTime;
  365. MSG     msg;
  366. // Get start time
  367. ulStartTime = HX_GET_TICKCOUNT();
  368. do
  369. {
  370.     // Keep pumping messages
  371.         if(PeekMessage(&msg, NULL,0,0,PM_REMOVE))
  372.     {
  373. if(msg.message == WM_QUIT) 
  374. {
  375.     PostQuitMessage(0);
  376.     break;
  377. }
  378. else
  379. {
  380.     TranslateMessage(&msg);
  381.             DispatchMessage(&msg);
  382. }
  383.     }
  384.     // If we have waited ulInterval time then drop out
  385.     ulCurrentTime = HX_GET_TICKCOUNT();
  386. } while (CALCULATE_ELAPSED_TICKS(ulStartTime, ulCurrentTime) < ulInterval);
  387. #endif
  388. }
  389. BOOL 
  390. CHXNetCheck::SmartPing()
  391. {
  392.    UINT16 nPort = DEF_HTTP_PORT;
  393.     // try to get DNS address to ping.
  394.     CHXString strPingAddr;
  395.     GetDNSAddress(strPingAddr);
  396.     nPort = DEF_DNS_PORT;
  397.     
  398.     // No DNS address? Default to a known web server.
  399.     // XXXBJP pinging video.real.com, used in Beta 1, should be
  400.     // changed for Beta 2!!
  401.     if (strPingAddr.IsEmpty())
  402.     {
  403.     strPingAddr = "209.66.98.23"; // video.real.com .. UGHHHH!!
  404.     nPort = DEF_HTTP_PORT;
  405.     }
  406.     return (Ping(strPingAddr, nPort, FALSE));
  407. }
  408. OSStatus HXMacNetWillDial( char* remoteHost, ULONG32* willDial )
  409. {
  410. OSStatus outResult = paramErr;
  411. Boolean success = FALSE;
  412. if( !willDial )
  413. {
  414. return outResult;
  415. }
  416. *willDial = kOTTCPDialUnknown;
  417. char* nodename = "real.com";
  418. if( remoteHost )
  419. {
  420. nodename = remoteHost;
  421. }
  422. SCNetworkCheckReachabilityByNameProcPtr proc;
  423. int flags;
  424. CFBundleRef sysConfigBundle = CFBundleGetBundleWithIdentifier( CFSTR("com.apple.SystemConfiguration") );
  425. if( sysConfigBundle )
  426. {
  427. proc = (SCNetworkCheckReachabilityByNameProcPtr) CFBundleGetFunctionPointerForName( sysConfigBundle, 
  428. CFSTR("SCNetworkCheckReachabilityByName") );
  429. if( proc )
  430. {
  431. success = (*proc) ( nodename, &flags );
  432. }
  433. CFRelease( sysConfigBundle );
  434. }
  435. if( success )
  436. {
  437. // see SCNetwork.h in SystemConfiguration.framework for
  438. // the meanings of flags
  439. if( flags & 1<<2 )
  440. {
  441. *willDial = kOTTCPDialYes;
  442. }
  443. else
  444. {
  445. *willDial = kOTTCPDialNo;
  446. }
  447. outResult = noErr;
  448. }
  449. return outResult;
  450. }