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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: hxordval.cpp,v 1.3.32.3 2004/07/09 01:45:59 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 "hxtypes.h"
  50. #include "hxresult.h"
  51. #include "hxcom.h"
  52. #include "hxordval.h"
  53. #include "hxstrutl.h"
  54. #include "chxpckts.h"
  55. #include "hxheap.h"
  56. #ifdef _DEBUG
  57. #undef HX_THIS_FILE
  58. static const char HX_THIS_FILE[] = __FILE__;
  59. #endif
  60. // IUnknown interface listing
  61. BEGIN_INTERFACE_LIST(CHXOrderedValues)
  62.     INTERFACE_LIST_ENTRY(IID_IHXValues, IHXValues)
  63. END_INTERFACE_LIST
  64. ////////////////////////////////////////////////////////////////
  65. CHXOrderedValues::CHXOrderedValues() : m_CStringPos(NULL)
  66. {
  67. };
  68. ////////////////////////////////////////////////////////////////
  69. CHXOrderedValues::~CHXOrderedValues()
  70. {
  71.     // go through CString list, deleting NameBufferPair objects
  72.     if (!m_CStringList.IsEmpty())
  73.     {
  74.      LISTPOSITION ListPos = m_CStringList.GetHeadPosition();
  75.      _CStoreNameBufferPair* pCandidate = (_CStoreNameBufferPair*) m_CStringList.GetHead();
  76.     
  77.      while ( ListPos != NULL)
  78.      {
  79.     if (pCandidate)
  80.     {
  81.      delete pCandidate;
  82.     }
  83.     
  84.     pCandidate = (_CStoreNameBufferPair*) m_CStringList.GetAtNext(ListPos);
  85.      }
  86.     }
  87. }
  88. ////////////////////////////////////////////////////////////////
  89. STDMETHODIMP
  90. CHXOrderedValues::SetPropertyULONG32      (
  91. const char*          pPropertyName,
  92. ULONG32              pPropertyValue)
  93. {
  94.     return HXR_NOTIMPL;
  95. }
  96. ////////////////////////////////////////////////////////////////
  97. STDMETHODIMP
  98. CHXOrderedValues::GetPropertyULONG32      (
  99. const char*          pPropertyName,
  100. REF(ULONG32)         uPropertyValue)
  101. {
  102.     return HXR_NOTIMPL;
  103. }
  104. ////////////////////////////////////////////////////////////////
  105. STDMETHODIMP
  106. CHXOrderedValues::GetFirstPropertyULONG32   (
  107. REF(const char*)     pPropertyName,
  108. REF(ULONG32)         uPropertyValue)
  109. {
  110.     return HXR_NOTIMPL;
  111. }
  112. ////////////////////////////////////////////////////////////////
  113. STDMETHODIMP
  114. CHXOrderedValues::GetNextPropertyULONG32   (
  115. REF(const char*)    pPropertyName,
  116. REF(ULONG32)        uPropertyValue)
  117. {
  118.     return HXR_NOTIMPL;
  119. }
  120. ////////////////////////////////////////////////////////////////
  121. STDMETHODIMP
  122. CHXOrderedValues::SetPropertyBuffer     (
  123. const char*         pPropertyName,
  124. IHXBuffer*         pPropertyValue)
  125. {
  126.     return HXR_NOTIMPL;
  127. }
  128. ////////////////////////////////////////////////////////////////
  129. STDMETHODIMP
  130. CHXOrderedValues::GetPropertyBuffer     (
  131. const char*         pPropertyName,
  132. REF(IHXBuffer*)    pPropertyValue)
  133. {
  134.     return HXR_NOTIMPL;
  135. }
  136. ////////////////////////////////////////////////////////////////
  137. STDMETHODIMP
  138. CHXOrderedValues::GetFirstPropertyBuffer   (
  139. REF(const char*)    pPropertyName,
  140. REF(IHXBuffer*)    pPropertyValue)
  141. {
  142.     return HXR_NOTIMPL;
  143. }
  144. ////////////////////////////////////////////////////////////////
  145. STDMETHODIMP
  146. CHXOrderedValues::GetNextPropertyBuffer    (
  147. REF(const char*)    pPropertyName,
  148. REF(IHXBuffer*)    pPropertyValue)
  149. {
  150.     return HXR_NOTIMPL;
  151. }
  152. ////////////////////////////////////////////////////////////////
  153. STDMETHODIMP
  154. CHXOrderedValues::SetPropertyCString     (
  155. const char*         pPropertyName,
  156. IHXBuffer*         pPropertyValue)
  157. {
  158.     if (!pPropertyValue) return HXR_UNEXPECTED;
  159.     HX_ASSERT(pPropertyName);
  160.     if (!pPropertyName)  return HXR_UNEXPECTED;
  161.     
  162.     _CStoreNameBufferPair* pnbpNew = NULL;
  163.     // search list to see if name already exists.
  164.     LISTPOSITION pos = FindCStringName(pPropertyName);
  165.     if ( pos != NULL)
  166.     {
  167. // we found an existing name/value pair with same name
  168. pnbpNew = (_CStoreNameBufferPair*) m_CStringList.GetAt(pos);
  169. // remove from list, we'll reuse the NameBufferPair object below
  170.      m_CStringList.RemoveAt(pos);
  171.     }
  172.     else
  173.     {
  174.      pnbpNew = new _CStoreNameBufferPair;
  175.         if(!pnbpNew)
  176.         {
  177.             return HXR_OUTOFMEMORY;
  178.         }
  179.      pnbpNew->SetName(pPropertyName);
  180.     }
  181.     
  182.     pnbpNew->SetValue(pPropertyValue);
  183.     
  184.     // add to tail of list
  185.     m_CStringList.AddTail( (void*)pnbpNew );
  186.     return HXR_OK;
  187. }
  188. ////////////////////////////////////////////////////////////////
  189. STDMETHODIMP
  190. CHXOrderedValues::GetPropertyCString     (
  191. const char*         pPropertyName,
  192. REF(IHXBuffer*)    pPropertyValue)
  193. {
  194.     if (!pPropertyName) return HXR_UNEXPECTED;
  195.     HX_RELEASE(pPropertyValue);
  196.     
  197.     // search list to see if name exists.
  198.     LISTPOSITION pos = FindCStringName(pPropertyName);
  199.     if ( pos == NULL)
  200.     {
  201. return HXR_FAIL;
  202.     }
  203.     
  204.     // we found an existing name/value pair with same name
  205.     _CStoreNameBufferPair* pnbpValue = (_CStoreNameBufferPair*) m_CStringList.GetAt(pos);
  206.     pPropertyValue = pnbpValue->GetValue();
  207.     return HXR_OK;
  208. }
  209. ////////////////////////////////////////////////////////////////
  210. STDMETHODIMP
  211. CHXOrderedValues::GetFirstPropertyCString   (
  212. REF(const char*)    pPropertyName,
  213. REF(IHXBuffer*)    pPropertyValue)
  214. {
  215.     pPropertyName = NULL;
  216.     HX_RELEASE(pPropertyValue);
  217.     
  218.     if (m_CStringList.IsEmpty())
  219. return HXR_FAIL;
  220.     m_CStringPos = m_CStringList.GetHeadPosition();
  221.     _CStoreNameBufferPair* pnbpValue = (_CStoreNameBufferPair*) m_CStringList.GetAt(m_CStringPos);
  222.     if (pnbpValue == NULL)
  223. return HXR_FAIL;
  224.     pPropertyName = pnbpValue->GetName();
  225.     pPropertyValue = pnbpValue->GetValue();
  226.     
  227.     return HXR_OK;
  228. }
  229. ////////////////////////////////////////////////////////////////
  230. STDMETHODIMP
  231. CHXOrderedValues::GetNextPropertyCString    (
  232. REF(const char*)    pPropertyName,
  233. REF(IHXBuffer*)    pPropertyValue)
  234. {
  235.     pPropertyName = NULL;
  236.     HX_RELEASE(pPropertyValue);
  237.     
  238.     if (m_CStringList.IsEmpty() || m_CStringPos==NULL )
  239. return HXR_FAIL;
  240.     _CStoreNameBufferPair* pnbpValue = (_CStoreNameBufferPair*) m_CStringList.GetAtNext(m_CStringPos);
  241.     if (pnbpValue == NULL)
  242. return HXR_FAIL;
  243.     pPropertyName = pnbpValue->GetName();
  244.     pPropertyValue = pnbpValue->GetValue();
  245.     
  246.     return HXR_OK;
  247. }
  248. ////////////////////////////////////////////////////////////////
  249. LISTPOSITION
  250. CHXOrderedValues::FindCStringName (const char* pPropertyName)
  251. {
  252.     LISTPOSITION    ListPos = NULL;
  253.     
  254.     // search list to see if name already exists.
  255.     if ( !m_CStringList.IsEmpty() )
  256.     {
  257. BOOL bFound  = FALSE;
  258.      ListPos = m_CStringList.GetHeadPosition();
  259. _CStoreNameBufferPair* pCandidate = (_CStoreNameBufferPair*) m_CStringList.GetHead();
  260.      while ( ListPos != NULL)
  261.      {
  262.          // if we find the same name, delete it
  263.          if (  (pCandidate != NULL) &&
  264.               !(pCandidate->GetName().CompareNoCase(pPropertyName)) &&
  265.        (pCandidate->GetName().GetLength() == strlen(pPropertyName)) )
  266.          {
  267.      bFound = TRUE;
  268.      break;
  269.          }
  270.     else
  271. pCandidate = (_CStoreNameBufferPair*) m_CStringList.GetAtNext(ListPos);
  272. }
  273.      if (!bFound)
  274.     ListPos = NULL;
  275.     }
  276.     return ListPos;
  277. }