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

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.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. // include
  36. #include "hxtypes.h"
  37. #include "hxcom.h"
  38. #include "ihxpckts.h"
  39. // pnmisc
  40. #include "baseobj.h"
  41. // pxcomlib
  42. #include "nestbuff.h"
  43. // pndebug
  44. #include "hxheap.h"
  45. #ifdef _DEBUG
  46. #undef HX_THIS_FILE
  47. static const char HX_THIS_FILE[] = __FILE__;
  48. #endif
  49. CHXNestedBuffer::CHXNestedBuffer()
  50. {
  51.     m_lRefCount = 0;
  52.     m_pBuffer   = NULL;
  53.     m_ulOffset  = 0;
  54.     m_ulSize    = 0;
  55. }
  56. CHXNestedBuffer::~CHXNestedBuffer()
  57. {
  58.     HX_RELEASE(m_pBuffer);
  59. }
  60. STDMETHODIMP CHXNestedBuffer::QueryInterface(REFIID riid, void** ppvObj)
  61. {
  62. QInterfaceList qiList[] =
  63. {
  64. { GET_IIDHANDLE(IID_IUnknown), this },
  65. { GET_IIDHANDLE(IID_IHXBuffer), (IHXBuffer*) this },
  66. };
  67.     return QIFind(qiList, QILISTSIZE(qiList), riid, ppvObj);
  68. }
  69. STDMETHODIMP_(UINT32) CHXNestedBuffer::AddRef()
  70. {
  71.     return InterlockedIncrement(&m_lRefCount);
  72. }
  73. STDMETHODIMP_(UINT32) CHXNestedBuffer::Release()
  74. {
  75.     
  76.     if (InterlockedDecrement(&m_lRefCount) > 0)
  77.     {
  78.         return m_lRefCount;
  79.     }
  80.     delete this;
  81.     return 0;
  82. }
  83. STDMETHODIMP CHXNestedBuffer::Get(REF(UCHAR*) pData, REF(ULONG32) ulLength)
  84. {
  85.     HX_RESULT retVal = HXR_FAIL;
  86.     if (m_pBuffer)
  87.     {
  88.         pData    = m_pBuffer->GetBuffer() + m_ulOffset;
  89.         ulLength = m_ulSize;
  90.         retVal   = HXR_OK;
  91.     }
  92.     return retVal;
  93. }
  94. STDMETHODIMP CHXNestedBuffer::Set(const UCHAR* pData, ULONG32 ulLength)
  95. {
  96.     HX_RESULT retVal = HXR_FAIL;
  97.     if (m_pBuffer && pData && ulLength &&
  98.         m_ulOffset + ulLength <= m_pBuffer->GetSize())
  99.     {
  100.         // Copy the data
  101.         memcpy(m_pBuffer->GetBuffer() + m_ulOffset, /* Flawfinder: ignore */
  102.                pData,
  103.                ulLength);
  104.         // Set the size
  105.         m_ulSize = ulLength;
  106.         // Clear the return value
  107.         retVal = HXR_OK;
  108.     }
  109.     return retVal;
  110. }
  111. STDMETHODIMP CHXNestedBuffer::SetSize(ULONG32 ulLength)
  112. {
  113.     HX_RESULT retVal = HXR_FAIL;
  114.     if (m_pBuffer && ulLength &&
  115.         m_ulOffset + ulLength <= m_pBuffer->GetSize())
  116.     {
  117.         m_ulSize = ulLength;
  118.         retVal   = HXR_OK;
  119.     }
  120.     return retVal;
  121. }
  122. STDMETHODIMP_(ULONG32) CHXNestedBuffer::GetSize()
  123. {
  124.     return m_ulSize;
  125. }
  126. STDMETHODIMP_(UCHAR*) CHXNestedBuffer::GetBuffer()
  127. {
  128.     UCHAR* pRet = NULL;
  129.     if (m_pBuffer)
  130.     {
  131.         pRet = m_pBuffer->GetBuffer() + m_ulOffset;
  132.     }
  133.     return pRet;
  134. }
  135. STDMETHODIMP CHXNestedBuffer::Init(IHXBuffer* pBuffer, UINT32 ulOffset, UINT32 ulSize)
  136. {
  137.     HX_RESULT retVal = HXR_FAIL;
  138.     if (pBuffer && ulSize)
  139.     {
  140.         if (ulOffset + ulSize <= pBuffer->GetSize())
  141.         {
  142.             // Init the members
  143.             HX_RELEASE(m_pBuffer);
  144.             m_pBuffer  = pBuffer;
  145.             m_pBuffer->AddRef();
  146.             m_ulOffset = ulOffset;
  147.             m_ulSize   = ulSize;
  148.             // Clear the return value
  149.             retVal = HXR_OK;
  150.         }
  151.     }
  152.     return retVal;
  153. }
  154. HX_RESULT CHXNestedBuffer::CreateObject(CHXNestedBuffer** ppObj)
  155. {
  156.     HX_RESULT retVal = HXR_FAIL;
  157.     if (ppObj)
  158.     {
  159.         CHXNestedBuffer* pObj = new CHXNestedBuffer();
  160.         if (pObj)
  161.         {
  162.             *ppObj = pObj;
  163.             retVal = HXR_OK;
  164.         }
  165.     }
  166.     return retVal;
  167. }
  168. HX_RESULT CHXNestedBuffer::CreateNestedBuffer(IHXBuffer* pBuffer, UINT32 ulOffset,
  169.                                               UINT32 ulSize, REF(IHXBuffer*) rpNestedBuffer)
  170. {
  171.     HX_RESULT retVal = HXR_FAIL;
  172.     if (pBuffer && ulSize && ulOffset + ulSize <= pBuffer->GetSize())
  173.     {
  174.         CHXNestedBuffer* pNest = new CHXNestedBuffer();
  175.         if (pNest)
  176.         {
  177.             // AddRef the object
  178.             pNest->AddRef();
  179.             // Init the object
  180.             retVal = pNest->Init(pBuffer, ulOffset, ulSize);
  181.             if (SUCCEEDED(retVal))
  182.             {
  183.                 HX_RELEASE(rpNestedBuffer);
  184.                 retVal = pNest->QueryInterface(IID_IHXBuffer, (void**) &rpNestedBuffer);
  185.             }
  186.         }
  187.         HX_RELEASE(pNest);
  188.     }
  189.     return retVal;
  190. }