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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: packedvalues.cpp,v 1.2.32.3 2004/07/09 01:48:16 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 "hxcom.h"
  51. #include "hxresult.h"
  52. #include "hxstrutl.h"
  53. #include "hxstring.h"
  54. #include "hxbuffer.h"
  55. #include "hxccf.h"
  56. #include "hxassert.h"
  57. #include "packedvalues.h"
  58. inline UINT32
  59. PackedValues::size(IHXValues* pValues)
  60. {
  61.     if (!pValues)
  62.     {
  63. return 0;
  64.     }
  65.     const char* pPropName;
  66.     ULONG32 uPropValue;
  67.     IHXBuffer* pBuffer;
  68.     HX_RESULT retVal;
  69.     UINT32 ulSize = sizeof(PackedValuesHeader) + 4; //header, nitems
  70.     //ULONG32
  71.     retVal = pValues->GetFirstPropertyULONG32(pPropName, uPropValue);
  72.     while (retVal == HXR_OK)
  73.     {
  74. ulSize += 1 + 1 + (strlen(pPropName)+1) + 2 + 4;
  75. retVal = pValues->GetNextPropertyULONG32(pPropName, uPropValue);
  76.     }
  77.     //CString
  78.     retVal = pValues->GetFirstPropertyCString(pPropName, pBuffer);
  79.     while (retVal == HXR_OK)
  80.     {
  81. ulSize += 1 + 1 + (strlen(pPropName)+1) + 2 + pBuffer->GetSize();
  82. pBuffer->Release();
  83. retVal = pValues->GetNextPropertyCString(pPropName, pBuffer);
  84.     }
  85.     //Buffer
  86.     retVal = pValues->GetFirstPropertyBuffer(pPropName, pBuffer);
  87.     while (retVal == HXR_OK)
  88.     {
  89. ulSize += 1 + 1 + (strlen(pPropName)+1) + 2 + pBuffer->GetSize();
  90. pBuffer->Release();
  91. retVal = pValues->GetNextPropertyBuffer(pPropName, pBuffer);
  92.     }
  93.     return ulSize;
  94. }
  95. UINT32 PackedValues::packone(UINT8* buf, UINT8 type, UINT8 name_length, UINT8* name, UINT16 value_length, UINT8* value_data)
  96. {
  97.     UINT8* off = buf;
  98.     *off++ = type;
  99.     *off++ = name_length;
  100.     {memcpy(off, name, name_length); off += name_length; }
  101.     {*off++ = (UINT8) (value_length>>8); *off++ = (UINT8) (value_length);}
  102.     {memcpy(off, value_data, value_length); off += value_length; }
  103.     return off-buf;
  104. }
  105. HX_RESULT PackedValues::pack(UINT8* buf, UINT32 &len, IHXValues* pValues, UINT8 fourCC[4])
  106. {
  107.     HX_ASSERT(len >= size(pValues));
  108.     if (!pValues)
  109.     {
  110. len = 0;
  111. return HXR_FAIL;
  112.     }
  113.     PackedValuesHeader* pHeader = (PackedValuesHeader*)buf;
  114.     memcpy(pHeader->fourCC, fourCC, 4);
  115.     buf += sizeof(PackedValuesHeader);
  116.     UINT8* off = buf + 4; //header, nitems
  117.     const char* pPropName;
  118.     ULONG32 uPropValue;
  119.     IHXBuffer* pBuffer;
  120.     HX_RESULT retVal;
  121.     UINT32 uTotal = 0;
  122.     //pack ULONG32
  123.     retVal = pValues->GetFirstPropertyULONG32(pPropName, uPropValue);
  124.     while (retVal == HXR_OK)
  125.     {
  126. uTotal++;
  127. UINT8 pULONGBuffer[4];
  128. pULONGBuffer[0] = (UINT8)(uPropValue >> 24);pULONGBuffer[1] = (UINT8)(uPropValue >> 16);
  129. pULONGBuffer[2] = (UINT8)(uPropValue >> 8); pULONGBuffer[3] = (UINT8)(uPropValue);
  130. off += packone(off, PROP_TYPE_ULONG32, strlen(pPropName)+1, (UINT8*)pPropName, 4, pULONGBuffer);
  131. retVal = pValues->GetNextPropertyULONG32(pPropName, uPropValue);
  132.     }
  133.     //pack CString
  134.     retVal = pValues->GetFirstPropertyCString(pPropName, pBuffer);
  135.     while (retVal == HXR_OK)
  136.     {
  137. uTotal++;
  138. off += packone(off, PROP_TYPE_CSTRING, strlen(pPropName)+1, (UINT8*)pPropName, (UINT16)(pBuffer->GetSize()), pBuffer->GetBuffer());
  139. pBuffer->Release();
  140. retVal = pValues->GetNextPropertyCString(pPropName, pBuffer);
  141.     }
  142.     //pack Buffer
  143.     retVal = pValues->GetFirstPropertyBuffer(pPropName, pBuffer);
  144.     while (retVal == HXR_OK)
  145.     {
  146. uTotal++;
  147. off += packone(off, PROP_TYPE_BUFFER, strlen(pPropName)+1, (UINT8*)pPropName, (UINT16)(pBuffer->GetSize()), pBuffer->GetBuffer());
  148. pBuffer->Release();
  149. retVal = pValues->GetNextPropertyBuffer(pPropName, pBuffer);
  150.     }
  151.     //the total number of items
  152.     buf[0] = (UINT8)(uTotal >> 24); buf[1] = (UINT8)(uTotal >> 16);
  153.     buf[2] = (UINT8)(uTotal >> 8 ); buf[3] = (UINT8)(uTotal);
  154.     //header
  155.     UINT32 datasize = off - buf;
  156.     pHeader->size = datasize;
  157.     pHeader->pack();
  158.     len = off - buf + sizeof(PackedValuesHeader);
  159.     return HXR_OK;
  160. }
  161. HX_RESULT PackedValues::unpack(UINT8* buf, UINT32 len, IHXValues* pValues, IHXCommonClassFactory* pCCF)
  162. {
  163.     HX_ASSERT(buf && len > 0); HX_ASSERT(pValues);
  164.     PackedValuesHeader* pHeader = (PackedValuesHeader*)buf;
  165.     memcpy(m_fourCC, pHeader->fourCC, 4);
  166.     
  167.     buf += sizeof(PackedValuesHeader);
  168.     UINT8  type;
  169.     UINT8  name_length;
  170.     UINT8* name;
  171.     UINT16 value_length;
  172.     UINT8* value_data;
  173.     UINT8* off = buf + 4; //nitems
  174.     UINT32 uTotal = (buf[0]<<24) + (buf[1]<<16) + (buf[2]<<8) + buf[3];
  175.     HX_RESULT retVal = HXR_OK;
  176.     for (UINT32 i=0; i < uTotal && retVal == HXR_OK; i++)
  177.     {
  178. type = *off++;
  179. name_length = *off++;
  180. name = off; off += name_length;
  181. value_length = (off[0] << 8) + off[1]; off+=2;
  182. value_data = off; off += value_length;
  183. IHXBuffer* pBuffer = NULL;
  184. switch(type)
  185. {
  186.     case PROP_TYPE_ULONG32:
  187. pValues->SetPropertyULONG32((char*)name, (value_data[0]<<24) + (value_data[1]<<16) 
  188.  + (value_data[2]<<8) + value_data[3]);
  189. break;
  190.     case PROP_TYPE_CSTRING:
  191. if (pCCF)
  192. {
  193.     retVal = pCCF->CreateInstance(CLSID_IHXBuffer, (void**)&pBuffer);
  194.     if (retVal == HXR_OK)
  195.     {
  196. pBuffer->Set(value_data, value_length);
  197. pValues->SetPropertyCString((char*)name, pBuffer);
  198. pBuffer->Release();
  199.     }
  200. }
  201. break;
  202.     case PROP_TYPE_BUFFER:
  203. if (pCCF)
  204. {
  205.     retVal = pCCF->CreateInstance(CLSID_IHXBuffer, (void**)&pBuffer);
  206.     if (retVal == HXR_OK)
  207.     {
  208. pBuffer->Set(value_data, value_length);
  209. pValues->SetPropertyCString((char*)name, pBuffer);
  210. pBuffer->Release();
  211.     }
  212. }
  213. break;
  214. }
  215.     }
  216.     
  217.     return retVal;
  218. }