hxopwaveresolv.cpp
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:5k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2. * Version: RCSL 1.0/RPSL 1.0 
  3. *  
  4. * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5. *      
  6. * The contents of this file, and the files included with this file, are 
  7. * subject to the current version of the RealNetworks Public Source License 
  8. * Version 1.0 (the "RPSL") available at 
  9. * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10. * the file under the RealNetworks Community Source License Version 1.0 
  11. * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12. * in which case the RCSL will apply. You may also obtain the license terms 
  13. * directly from RealNetworks.  You may not use this file except in 
  14. * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15. * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16. * RCSL for the rights, obligations and limitations governing use of the 
  17. * contents of the file.  
  18. *  
  19. * This file is part of the Helix DNA Technology. RealNetworks is the 
  20. * developer of the Original Code and owns the copyrights in the portions 
  21. * it created. 
  22. *  
  23. * This file, and the files included with this file, is distributed and made 
  24. * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25. * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26. * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27. * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28. * Technology Compatibility Kit Test Suite(s) Location: 
  29. *    http://www.helixcommunity.org/content/tck 
  30. * Contributor(s): 
  31. *  
  32. * ***** END LICENSE BLOCK ***** */ 
  33. #include "hxopwaveresolv.h"
  34. #include "debug.h"
  35. #include "smartptr.h"
  36. #define D_RESOLVER 0x10000000
  37. //#define NO_OPENWAVE_DNS
  38. UINT32 HXOpwaveResolver::ubMaxHostNameLen = 256L;
  39. HXOpwaveResolver::HXOpwaveResolver() 
  40. : OpDNSRequest()
  41. , m_lRefCount(0)
  42. , m_pResponse(0)
  43. , m_psHostname(NULL)
  44. , m_bInitialized(FALSE)
  45. , m_nNumAddr(0)
  46. , m_nCurAddrIndex(0)
  47. , m_dnsStatus(HXR_OK)
  48. {
  49. }
  50. HXOpwaveResolver::~HXOpwaveResolver()
  51. {
  52.     
  53.     HX_RELEASE(m_pResponse);
  54.     HX_DELETE(m_psHostname);
  55. }
  56. /*
  57. *  IUnknown methods
  58. */
  59. STDMETHODIMP HXOpwaveResolver::QueryInterface(THIS_
  60.                                               REFIID riid,
  61.                                               void** ppvObj)
  62. {
  63.     
  64.     if (IsEqualIID(riid, IID_IHXResolver))
  65.     {
  66.         
  67.         AddRef();
  68.         *ppvObj = (IHXResolver*)this;
  69.         return HXR_OK;
  70.     }
  71.     else if (IsEqualIID(riid, IID_IUnknown))
  72.     {
  73.         AddRef();
  74.         *ppvObj = (IUnknown*)(IHXResolver*)this;
  75.         return HXR_OK;
  76.     }
  77.     
  78.     
  79.     *ppvObj = NULL;
  80.     return HXR_NOINTERFACE;
  81.     
  82. }
  83. STDMETHODIMP_(ULONG32) HXOpwaveResolver::AddRef(THIS)
  84. {
  85.     
  86.     return InterlockedIncrement(&m_lRefCount);
  87.     
  88. }
  89. STDMETHODIMP_(ULONG32)HXOpwaveResolver::Release(THIS)
  90. {
  91.     
  92.     if (InterlockedDecrement(&m_lRefCount) > 0)
  93.     {
  94.         return m_lRefCount;
  95.     }
  96.     
  97.     delete this;
  98.     return 0;
  99. }
  100. /*
  101. * IHXResolver methods
  102. */
  103. STDMETHODIMP HXOpwaveResolver::Init(THIS_ IHXResolverResponse*  pResponse)
  104. {
  105.     
  106.     DPRINTF(D_RESOLVER, ("HXOpwaveResolver::Init()n"));
  107.     
  108.     HX_RELEASE(m_pResponse);
  109.     m_pResponse = pResponse;
  110.     
  111.     if (m_pResponse)
  112.     {
  113.         m_pResponse->AddRef();
  114.     }
  115.     
  116.     m_bInitialized = TRUE;
  117.     return  HXR_OK;
  118.     
  119. }
  120. STDMETHODIMP HXOpwaveResolver::GetHostByName(THIS_ const char* pHostName)
  121. {
  122.     
  123.     DPRINTF(D_RESOLVER, ("HXOpwaveResolver::GetHostByName(%s)n", pHostName));
  124.     
  125.     HX_RESULT res = HXR_OK;
  126.     
  127.     if (!pHostName)
  128.     {
  129.         res = HXR_INVALID_PARAMETER;
  130.     }
  131.     
  132.     if (SUCCEEDED(res))
  133.     {
  134.         if (!m_psHostname)
  135.         {
  136.             m_psHostname = new char[ubMaxHostNameLen];
  137.             if (!m_psHostname)
  138.             {
  139.                 res = HXR_OUTOFMEMORY;
  140.             }
  141.         }
  142.     }
  143.     if (SUCCEEDED(res))
  144.     {
  145.         strncpy(m_psHostname, pHostName, ubMaxHostNameLen);
  146.         lookupAddr(m_psHostname);
  147.     }
  148. #ifdef NO_OPENWAVE_DNS
  149. /// Suppose the pHostName is in decimal form like
  150. /// 207.188.30.91, we convert it here manually into a UINT32
  151.     UINT32 ipv4Host = 0;
  152.     char* pStop = pHostName;
  153.     char* pHead = pHostName;
  154.     INT32 nShift = 24;
  155.     while (nShift >= 0)
  156.     {
  157.         UINT32 ulTemp = strtoul(pHead, &pStop, 10);
  158.         ipv4Host += ulTemp << nShift;
  159.         pHead = pStop + 1;
  160.         nShift -= 8;
  161.     }
  162.     m_pResponse->GetHostByNameDone(m_dnsStatus, ipv4Host);
  163. #endif
  164.     return res;
  165.     
  166. }
  167. /// OpDNSRequest callback to notify requests
  168. void 
  169. HXOpwaveResolver::onAddrResult(const ipv4_t *addrs, unsigned numAddrs)
  170. {
  171.     m_nNumAddr = numAddrs;
  172.     if (addrs && m_nNumAddr > 0)
  173.     {
  174.         m_nCurAddrIndex = 0;
  175.         m_pResponse->GetHostByNameDone(m_dnsStatus, addrs[m_nCurAddrIndex]);
  176.     }
  177. }
  178. void
  179. HXOpwaveResolver::onErrorResult()
  180. {
  181.     m_dnsStatus = HXR_FAIL;
  182. }