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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: upgrdcol.cpp,v 1.6.20.1 2004/07/09 02:06:33 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 "ihxpckts.h"
  52. #include "upgrdcol.h"
  53. #include "stdlib.h"
  54. #include "hxordval.h"
  55. #include "hxbuffer.h"
  56. #include "hxstrutl.h"
  57. #include "hxheap.h"
  58. #ifdef _DEBUG
  59. #undef HX_THIS_FILE
  60. static const char HX_THIS_FILE[] = __FILE__;
  61. #endif
  62. #define UPGRADE_NAME_SIZE   128
  63. struct HXUpgradeInfo
  64. {
  65.     HXUpgradeType m_UpgradeType;
  66.     UINT32 m_MajorVersion;
  67.     UINT32 m_MinorVersion;
  68.     char m_Name[UPGRADE_NAME_SIZE]; /* Flawfinder: ignore */
  69. };
  70. const char* const z_szURLTranslationChars = ";/?:@=&x7F "<>#%{}|\^~[]'";
  71. HXUpgradeCollection::HXUpgradeCollection(void):
  72.     m_lRefCount(0),
  73.     m_pComponents(NULL),
  74.     m_pURLParseElements(NULL)
  75. {
  76. }
  77. HXUpgradeCollection::~HXUpgradeCollection(void)
  78. {
  79.     RemoveAll();
  80. }
  81. /************************************************************************
  82.  *  Method:
  83.  *    IUnknown::QueryInterface
  84.  */
  85. STDMETHODIMP HXUpgradeCollection::QueryInterface(REFIID riid,
  86. void** ppvObj)
  87. {
  88.     QInterfaceList qiList[] =
  89.         {
  90.             { GET_IIDHANDLE(IID_IHXUpgradeCollection), (IHXUpgradeCollection*)this },
  91.             { GET_IIDHANDLE(IID_IHXUpgradeCollection2), (IHXUpgradeCollection2*)this },
  92.             { GET_IIDHANDLE(IID_IUnknown), (IUnknown*)(IHXUpgradeCollection*)this },
  93.         };
  94.     
  95.     return ::QIFind(qiList, QILISTSIZE(qiList), riid, ppvObj);
  96. }
  97. /************************************************************************
  98.  *  Method:
  99.  *    IUnknown::AddRef
  100.  */
  101. STDMETHODIMP_(ULONG32) HXUpgradeCollection::AddRef(void)
  102. {
  103.     return InterlockedIncrement(&m_lRefCount);
  104. }
  105. /************************************************************************
  106.  *  Method:
  107.  *    IUnknown::Release
  108.  */
  109. STDMETHODIMP_(ULONG32) HXUpgradeCollection::Release(void)
  110. {
  111.     if (InterlockedDecrement(&m_lRefCount) > 0)
  112.     {
  113.         return m_lRefCount;
  114.     }
  115.     delete this;
  116.     return 0;
  117. }
  118. /************************************************************************
  119.  *  Method:
  120.  *    IHXUpgradeCollection::Add
  121.  */
  122. STDMETHODIMP_(UINT32) HXUpgradeCollection::Add(HXUpgradeType upgradeType, 
  123. IHXBuffer* pPluginId, UINT32 majorVersion, UINT32 minorVersion)
  124. {
  125.     if (!m_pComponents)
  126.     {
  127. m_pComponents = new CHXPtrArray;
  128. if (!m_pComponents)
  129. {
  130.     // XXXNH: should we return this? 0 would indicate success...
  131.     return (UINT32)-1;
  132. }
  133.     }
  134.     HXUpgradeInfo* pInfo = new HXUpgradeInfo;
  135.     pInfo->m_UpgradeType = upgradeType;
  136.     pInfo->m_MajorVersion = majorVersion;
  137.     pInfo->m_MinorVersion = minorVersion;
  138.     pInfo->m_Name[0] = 0;
  139.     if (pPluginId)
  140.      SafeStrCpy(&(pInfo->m_Name[0]), (const char*) pPluginId->GetBuffer(), UPGRADE_NAME_SIZE);
  141.     return(m_pComponents->Add(pInfo));
  142. }
  143. /************************************************************************
  144.  * Method:
  145.  * IHXUpgradeCollection::Remove
  146.  */
  147. STDMETHODIMP HXUpgradeCollection::Remove(UINT32 index)
  148. {
  149.     if (m_pComponents)
  150.     {
  151. if ((UINT32)m_pComponents->GetSize() > index)
  152. {
  153.     HXUpgradeInfo* pInfo = (HXUpgradeInfo*)(*m_pComponents)[(int)index];
  154.     m_pComponents->RemoveAt((int)index);
  155.     delete pInfo;
  156.     return(HXR_OK);
  157. }
  158.     }
  159.     return(HXR_FAIL);
  160. }
  161. /************************************************************************
  162.  * Method
  163.  * IHXUpgradeCollection::RemoveAll
  164.  */
  165. STDMETHODIMP HXUpgradeCollection::RemoveAll(void)
  166. {
  167.     if (m_pComponents)
  168.     {
  169. UINT32 size = m_pComponents->GetSize();
  170. for(UINT32 i = 0;i < size;i++)
  171.          delete (*m_pComponents)[(int)i];
  172. m_pComponents->RemoveAll();
  173. HX_DELETE(m_pComponents);
  174.     }
  175.     HX_RELEASE(m_pURLParseElements);
  176.     return(HXR_OK);
  177. }
  178. /************************************************************************
  179.  * Method:
  180.  * IHXUpgradeCollection::GetCount
  181.  */
  182. STDMETHODIMP_(UINT32) HXUpgradeCollection::GetCount(void)
  183. {
  184.     return m_pComponents ? (m_pComponents->GetSize()) : 0;
  185. }
  186. /************************************************************************
  187.  * Method:
  188.  * IHXUpgradeCollection::GetAt
  189.  */
  190. STDMETHODIMP HXUpgradeCollection::GetAt(UINT32 index, 
  191. HXUpgradeType& upgradeType, IHXBuffer* pPluginId, UINT32& majorVersion, 
  192. UINT32& minorVersion)
  193. {
  194.     if (m_pComponents)
  195.     {
  196. if ((UINT32)m_pComponents->GetSize() > index && pPluginId)
  197. {
  198.     HXUpgradeInfo* pInfo = (HXUpgradeInfo*)(*m_pComponents)[(int)index];
  199.     upgradeType = pInfo->m_UpgradeType;
  200.     majorVersion = pInfo->m_MajorVersion;
  201.     minorVersion = pInfo->m_MinorVersion;
  202.     pPluginId->Set((const UCHAR *)&(pInfo->m_Name[0]), ::strlen(&(pInfo->m_Name[0])) + 1);
  203.     return(HXR_OK);
  204. }
  205.     }
  206.     return(HXR_FAIL);
  207. }
  208. /************************************************************************
  209.  * Method:
  210.  * IHXUpgradeCollection::AddURLParseElement
  211.  * Purpose:
  212.  * Adds name-value pair for RUP URL parsing:
  213.  * URL-encoded values substitute names.
  214.  *
  215.  */
  216. STDMETHODIMP
  217. HXUpgradeCollection::AddURLParseElement(const char* pName, const char* pValue)
  218. {
  219.     if(!m_pURLParseElements)
  220.     {
  221. m_pURLParseElements = (IHXValues*)new CHXOrderedValues;
  222. if(m_pURLParseElements)
  223.     m_pURLParseElements->AddRef();
  224.     }
  225.     if(!m_pURLParseElements)
  226. return HXR_FAILED;
  227.     // We have to URL encode the Value as it's going to be used in RUP URLs.
  228.     IHXBuffer* pURLEncValue = new CHXBuffer;
  229.     if(pURLEncValue)
  230.     {
  231. pURLEncValue->AddRef();
  232. /* No URL-encoding is required any more since Core guarantees to 
  233.    only pass data that is already URL-encoded. (SB) */
  234. pURLEncValue->Set((const Byte*)pValue, strlen(pValue) + 1);
  235. /*
  236. // Maximum possible size for URL encoded pValue.
  237. pURLEncValue->SetSize(strlen(pValue) * 3 + 1);
  238. char* pszBuffer = (char*)pURLEncValue->GetBuffer();
  239. pszBuffer[0] = 0;
  240. for(UINT16 nIndex = 0; nIndex < strlen(pValue); nIndex++)
  241. {
  242.     Byte nChar = pValue[nIndex];
  243.     if(nChar <= 0x1F || nChar >= 0x80 && nChar <= 0xFF ||
  244.        strchr(z_szURLTranslationChars, nChar))
  245.     {
  246. wsprintf(pszBuffer + strlen(pszBuffer), "%%%02X", nChar);
  247.     }
  248.     else
  249.     {
  250. wsprintf(pszBuffer + strlen(pszBuffer), "%c", nChar);
  251.     }
  252. }
  253. // Reset the size
  254. pURLEncValue->SetSize(strlen(pszBuffer) + 1);
  255. */
  256. m_pURLParseElements->SetPropertyCString(pName, pURLEncValue);
  257.     }
  258.     HX_RELEASE(pURLEncValue);
  259.     return HXR_OK;
  260. }
  261. /************************************************************************
  262.  * Method:
  263.  * IHXUpgradeCollection::GetURLParseElements
  264.  * Purpose:
  265.  * Gets name-value pair for RUP URL parsing.
  266.  *
  267.  */
  268. STDMETHODIMP 
  269. HXUpgradeCollection::GetURLParseElements(REF(IHXValues*) pURLParseElements)
  270. {
  271.     pURLParseElements = m_pURLParseElements;
  272.     if(pURLParseElements)
  273.     {
  274. pURLParseElements->AddRef();
  275. return HXR_OK;
  276.     }
  277.     return HXR_FAILED;
  278. }