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

Symbian

开发平台:

Visual 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. /****************************************************************************
  36.  *  Includes
  37.  */
  38. #ifdef QTCONFIG_BFRAG_FACTORY
  39. #include "bfragfct.h"
  40. #endif // QTCONFIG_BFRAG_FACTORY
  41. #include "bfrag.h"
  42. #include "hxassert.h"
  43. /****************************************************************************
  44.  *  Globals
  45.  */
  46. /****************************************************************************
  47.  *  Local Defines
  48.  */
  49. /****************************************************************************
  50.  *  Class CBufferFragment
  51.  */
  52. /****************************************************************************
  53.  *  Destructor
  54.  */
  55. CBufferFragment::~CBufferFragment()
  56. {
  57. #ifdef QTCONFIG_BFRAG_FACTORY
  58.     HX_RELEASE(m_pBuffer);
  59.     HX_RELEASE(m_pBufferFragmentFactory);
  60. #else // QTCONFIG_BFRAG_FACTORY
  61.     m_pBuffer->Release();
  62. #endif // QTCONFIG_BFRAG_FACTORY
  63.     
  64. }
  65. /****************************************************************************
  66.  *  Public methods
  67.  */
  68. #ifdef QTCONFIG_BFRAG_FACTORY
  69. void CBufferFragment::Link(CBufferFragmentFactory* pBufferFragmentFactory)
  70. {
  71.     if (m_pBufferFragmentFactory)
  72.     {
  73. m_pBufferFragmentFactory->Release();
  74.     }
  75.     m_pBufferFragmentFactory = pBufferFragmentFactory;
  76.     if (pBufferFragmentFactory)
  77.     {
  78. pBufferFragmentFactory->AddRef();
  79.     }
  80. }
  81. void CBufferFragment::Unlink(void)
  82. {
  83.     HX_RELEASE(m_pBufferFragmentFactory);
  84. }
  85. #endif // QTCONFIG_BFRAG_FACTORY
  86. /****************************************************************************
  87.  *  IHXBuffer methods
  88.  */
  89. /****************************************************************************
  90.  *  Get
  91.  */
  92. STDMETHODIMP CBufferFragment::Get(REF(UCHAR*) pData, 
  93.   REF(ULONG32) ulLength)
  94. {
  95.     pData = m_pData;
  96.     ulLength = m_ulSize;
  97.     return HXR_OK;
  98. }
  99. /****************************************************************************
  100.  *  Set
  101.  */
  102. STDMETHODIMP CBufferFragment::Set(const UCHAR* pData, 
  103.   ULONG32 ulLength)
  104. {
  105.     HX_ASSERT(FALSE);
  106.     return HXR_FAIL;
  107. }
  108. /****************************************************************************
  109.  *  SetSize
  110.  */
  111. STDMETHODIMP CBufferFragment::SetSize(ULONG32 ulLength)
  112. {
  113.     if (m_pBuffer)
  114.     {
  115. if (m_pData - m_pBuffer->GetBuffer() + ulLength <= m_ulSize)
  116. {
  117.     m_ulSize = ulLength;
  118.     return HXR_OK;
  119. }
  120.     }
  121.     HX_ASSERT(FALSE);
  122.     return HXR_FAIL;
  123. }
  124. /****************************************************************************
  125.  *  GetSize
  126.  */
  127. STDMETHODIMP_(ULONG32) CBufferFragment::GetSize()
  128. {
  129.     return m_ulSize;
  130. }
  131. /****************************************************************************
  132.  *  GetBuffer
  133.  */
  134. STDMETHODIMP_(UCHAR*) CBufferFragment::GetBuffer()
  135. {
  136.     return m_pData;
  137. }
  138. /****************************************************************************
  139.  *  IUnknown methods
  140.  */
  141. /////////////////////////////////////////////////////////////////////////
  142. //  Method:
  143. // IUnknown::QueryInterface
  144. //
  145. STDMETHODIMP CBufferFragment::QueryInterface(REFIID riid, void** ppvObj)
  146. {
  147.     if (IsEqualIID(riid, IID_IHXBuffer))
  148.     {
  149. AddRef();
  150. *ppvObj = (IHXBuffer*) this;
  151. return HXR_OK;
  152.     }
  153.     else if (IsEqualIID(riid, IID_IUnknown))
  154.     {
  155. AddRef();
  156. *ppvObj = this;
  157. return HXR_OK;
  158.     }
  159.     *ppvObj = NULL;
  160.     return HXR_NOINTERFACE;
  161. }
  162. /////////////////////////////////////////////////////////////////////////
  163. //  Method:
  164. // IUnknown::AddRef
  165. //
  166. STDMETHODIMP_(ULONG32) CBufferFragment::AddRef()
  167. {
  168.     return InterlockedIncrement(&m_lRefCount);
  169. }
  170. /////////////////////////////////////////////////////////////////////////
  171. //  Method:
  172. // IUnknown::Release
  173. //
  174. STDMETHODIMP_(ULONG32) CBufferFragment::Release()
  175. {
  176.     if (InterlockedDecrement(&m_lRefCount) > 0)
  177.     {
  178.         return m_lRefCount;
  179.     }
  180. #ifdef QTCONFIG_BFRAG_FACTORY
  181.     if (m_pBufferFragmentFactory)
  182.     {
  183. HX_RELEASE(m_pBuffer);
  184. m_pBufferFragmentFactory->Put(this);
  185. m_pBufferFragmentFactory->Release();
  186. m_pBufferFragmentFactory = NULL;
  187.     }
  188.     
  189.     if (m_lRefCount == 0)
  190. #endif // QTCONFIG_BFRAG_FACTORY
  191.     {
  192. delete this;
  193.     }
  194.     return 0;
  195. }