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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: crdcache.cpp,v 1.2.20.3 2004/07/09 01:48:15 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. #include "hxcom.h"
  50. #include "hxtypes.h"
  51. #include "hxstring.h"
  52. #include "hxmap.h"
  53. #include "hxbuffer.h"
  54. #include "chxpckts.h"
  55. #include "crdcache.h"
  56. #define DEFAULTCREDENTIALENTRY "defaultCredentialEntry"
  57. CHXCredentialsCache::CHXCredentialsCache()
  58. {
  59.     m_lRefCount = 0;
  60. }
  61. CHXCredentialsCache::~CHXCredentialsCache()
  62. {
  63.     Close();
  64. }
  65. STDMETHODIMP
  66. CHXCredentialsCache::QueryInterface(REFIID riid, void**ppvObj)
  67. {
  68. QInterfaceList qiList[] =
  69. {
  70. { GET_IIDHANDLE(IID_IUnknown), this },
  71. { GET_IIDHANDLE(IID_IHXCredentialsCache), (IHXCredentialsCache*) this },
  72. };
  73.     return QIFind(qiList, QILISTSIZE(qiList), riid, ppvObj);
  74. }
  75. /////////////////////////////////////////////////////////////////////////
  76. //  Method:
  77. // IUnknown::AddRef
  78. //  Purpose:
  79. // Everyone usually implements this the same... feel free to use
  80. // this implementation.
  81. //
  82. STDMETHODIMP_(ULONG32) CHXCredentialsCache::AddRef()
  83. {
  84.     return InterlockedIncrement(&m_lRefCount);
  85. }
  86. /////////////////////////////////////////////////////////////////////////
  87. //  Method:
  88. // IUnknown::Release
  89. //  Purpose:
  90. // Everyone usually implements this the same... feel free to use
  91. // this implementation.
  92. //
  93. STDMETHODIMP_(ULONG32) CHXCredentialsCache::Release()
  94. {
  95.     if (InterlockedDecrement(&m_lRefCount) > 0)
  96.     {
  97.         return m_lRefCount;
  98.     }
  99.     delete this;
  100.     return 0;
  101. }
  102. STDMETHODIMP_(BOOL)
  103. CHXCredentialsCache::IsEmpty(IHXBuffer* pBuffer)
  104. {
  105.     const char* pKey = NULL;
  106.     CredentialEntry* pCredentialEntry = NULL;
  107.     if (!pBuffer)
  108.     {
  109. pKey = DEFAULTCREDENTIALENTRY;
  110.     }
  111.     else
  112.     {
  113. pKey = (const char*)pBuffer->GetBuffer();
  114.     }
  115.     if (m_credentialMap.Lookup(pKey, (void*&)pCredentialEntry) &&
  116. pCredentialEntry)
  117.     {
  118. return FALSE;
  119.     }
  120.     else
  121.     {
  122. return TRUE;
  123.     }
  124. }
  125. STDMETHODIMP 
  126. CHXCredentialsCache::Empty(IHXBuffer* pBuffer)
  127. {   
  128.     HX_RESULT hr = HXR_OK;
  129.     const char* pKey = NULL;
  130.     CredentialEntry* pCredentialEntry = NULL;
  131.     if (!pBuffer)
  132.     {
  133. pKey = DEFAULTCREDENTIALENTRY;
  134.     }
  135.     else
  136.     {
  137. pKey = (const char*)pBuffer->GetBuffer();
  138.     }
  139.     if (m_credentialMap.Lookup(pKey, (void*&)pCredentialEntry) &&
  140. pCredentialEntry)
  141.     {
  142. HX_DELETE(pCredentialEntry);
  143.     
  144.         m_credentialMap.RemoveKey(pKey);
  145.     }
  146.     return hr;
  147. }
  148. STDMETHODIMP
  149. CHXCredentialsCache::FillCredentials(REF(IHXValues*) pValues)
  150. {
  151.     HX_RESULT hr = HXR_FAILED;
  152.     IHXBuffer* pRealm = NULL;
  153.     CredentialEntry* pCredentialEntry = NULL;
  154.     if (!pValues)
  155.     {
  156. goto cleanup;
  157.     }
  158.     
  159.     if (HXR_OK != pValues->GetPropertyCString("Realm", pRealm))
  160.     {
  161. pRealm = new CHXBuffer();
  162. pRealm->AddRef();
  163. pRealm->Set((const unsigned char*)DEFAULTCREDENTIALENTRY, strlen(DEFAULTCREDENTIALENTRY)+1);
  164.     }
  165.         
  166.     if (m_credentialMap.Lookup((const char*)pRealm->GetBuffer(), (void*&)pCredentialEntry) &&
  167. pCredentialEntry)
  168.     {
  169. pValues->SetPropertyCString("Username", pCredentialEntry->m_pUserName);
  170. pValues->SetPropertyCString("Password", pCredentialEntry->m_pPassword);
  171. hr = HXR_OK;
  172.     }
  173. cleanup:
  174.     HX_RELEASE(pRealm);
  175.     return hr;
  176. }
  177. STDMETHODIMP
  178. CHXCredentialsCache::SetCredentials(IHXValues* pValues)
  179. {
  180.     HX_RESULT hr = HXR_OK;
  181.     IHXBuffer* pRealm = NULL;
  182.     IHXBuffer* pUserName = NULL;
  183.     IHXBuffer* pPassword = NULL;
  184.     CredentialEntry* pCredentialEntry = NULL;
  185.     if (!pValues)
  186.     {
  187. goto cleanup;
  188.     }
  189.     
  190.     if (HXR_OK != pValues->GetPropertyCString("Realm", pRealm))
  191.     {
  192. pRealm = new CHXBuffer();
  193. pRealm->AddRef();
  194. pRealm->Set((const unsigned char*)DEFAULTCREDENTIALENTRY, strlen(DEFAULTCREDENTIALENTRY)+1);
  195.     }
  196.     
  197.     Empty(pRealm);
  198.     if (HXR_OK == pValues->GetPropertyCString("Username", pUserName) && pUserName &&
  199. HXR_OK == pValues->GetPropertyCString("Password", pPassword) && pPassword)
  200.     {
  201. pCredentialEntry = new CredentialEntry((char*)pUserName->GetBuffer(),
  202.        (char*)pPassword->GetBuffer());
  203. m_credentialMap.SetAt((const char*)pRealm->GetBuffer(), (void*)pCredentialEntry);
  204.     }
  205. cleanup:
  206.     HX_RELEASE(pRealm);
  207.     HX_RELEASE(pUserName);
  208.     HX_RELEASE(pPassword);
  209.     return hr;
  210. }
  211. void
  212. CHXCredentialsCache::Close()
  213. {
  214.     CHXString key;
  215.     POSITION p;
  216.     CredentialEntry* pCredentialEntry = NULL;
  217.     
  218.     p = m_credentialMap.GetStartPosition();
  219.     while (p)
  220.     {
  221. m_credentialMap.GetNextAssoc(p, key, (void*&)pCredentialEntry);
  222. HX_DELETE(pCredentialEntry);
  223.     }
  224.     m_credentialMap.RemoveAll();
  225. }