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

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.  /*
  36.  *  In order to support the IHXBuffer interface, we must cast away the const
  37.  *  qualifier on our m_pData in the Get() and GetBuffer() functions.  If you
  38.  *  can think of a better way, please let me know ... TDM
  39.  */
  40. #include "hxtypes.h"
  41. #include "hxcom.h"
  42. #include "hxresult.h"
  43. #include "ihxpckts.h"
  44. #include "chxpckts.h"
  45. #include "hxsbuffer.h"
  46. //#include "rtsputil.h"
  47. #include "hxheap.h"
  48. #ifdef _DEBUG
  49. #undef HX_THIS_FILE                
  50. static char HX_THIS_FILE[] = __FILE__;
  51. #endif
  52. CHXStaticBuffer::CHXStaticBuffer(void) :
  53.     m_ulRefCount(0),
  54.     m_pbufRef(NULL),
  55.     m_pData(NULL),
  56.     m_ulLength(0)
  57. {
  58.     // Empty
  59. }
  60. CHXStaticBuffer::CHXStaticBuffer(UCHAR* pData, UINT32 ulLength) :
  61.     m_ulRefCount(0),
  62.     m_pbufRef(NULL),
  63.     m_pData(pData),
  64.     m_ulLength(ulLength)
  65. {
  66.     // Empty
  67. }
  68. CHXStaticBuffer::CHXStaticBuffer(IHXBuffer* pbuf, UINT32 pos, UINT32 len) :
  69.     m_ulRefCount(0),
  70.     m_pbufRef(pbuf),
  71.     m_pData(pbuf->GetBuffer()+pos),
  72.     m_ulLength(len)
  73. {
  74.     HX_ASSERT(pos+len <= pbuf->GetSize());
  75.     pbuf->AddRef();
  76. }
  77. CHXStaticBuffer::~CHXStaticBuffer(void)
  78. {
  79.     HX_RELEASE(m_pbufRef);
  80. }
  81. /*** IUnknown methods ***/
  82. STDMETHODIMP
  83. CHXStaticBuffer::QueryInterface(REFIID riid, void** ppvObj)
  84. {
  85.     if (IsEqualIID(riid, IID_IUnknown))
  86.     {
  87.         AddRef();
  88.         *ppvObj = this;
  89.         return HXR_OK;
  90.     }
  91.     else if (IsEqualIID(riid, IID_IHXBuffer))
  92.     {
  93.         AddRef();
  94.         *ppvObj = (IHXBuffer*)this;
  95.         return HXR_OK;
  96.     }
  97.     *ppvObj = NULL;
  98.     return HXR_NOINTERFACE;
  99. }
  100. STDMETHODIMP_(ULONG32)
  101. CHXStaticBuffer::AddRef(void)
  102. {
  103.     return InterlockedIncrement(&m_ulRefCount);
  104. }
  105. STDMETHODIMP_(ULONG32)
  106. CHXStaticBuffer::Release(void)
  107. {
  108.     HX_ASSERT(m_ulRefCount > 0);
  109.     if (InterlockedDecrement(&m_ulRefCount) > 0)
  110.     {
  111.         return m_ulRefCount;
  112.     }
  113.     delete this;
  114.     return 0;
  115. }
  116. /*** IHXBuffer methods ***/
  117. STDMETHODIMP
  118. CHXStaticBuffer::Get(REF(UCHAR*) pData, REF(ULONG32) ulLength)
  119. {
  120.     pData    = (UCHAR*)m_pData; //XXX: how to avoid discarding const?
  121.     ulLength = m_ulLength;
  122.     return HXR_OK;
  123. }
  124. STDMETHODIMP
  125. CHXStaticBuffer::Set(const UCHAR* pData, ULONG32 ulLength)
  126. {
  127.     // We allow changing the packet info when it is owned by atmost one user.
  128.     if (m_ulRefCount > 1)
  129.     {
  130.         return HXR_UNEXPECTED;
  131.     }
  132.     if (m_pbufRef != NULL)
  133.     {
  134.         // New bounds must remain within the referenced buffer
  135.         if (pData < m_pbufRef->GetBuffer() || pData + ulLength > m_pbufRef->GetBuffer() + m_pbufRef->GetSize())
  136.         {
  137.             return HXR_UNEXPECTED;
  138.         }
  139.     }
  140.     m_pData = pData;
  141.     m_ulLength = ulLength;
  142.     return HXR_OK;
  143. }
  144. STDMETHODIMP
  145. CHXStaticBuffer::SetSize(ULONG32 ulLength)
  146. {
  147.     // We allow changing the packet info when it is owned by atmost one user.
  148.     if (m_ulRefCount > 1)
  149.     {
  150.         return HXR_UNEXPECTED;
  151.     }
  152.     if (m_pbufRef != NULL)
  153.     {
  154.         // New bounds must remain within the referenced buffer
  155.         if (m_pData + ulLength > m_pbufRef->GetBuffer() + m_pbufRef->GetSize())
  156.         {
  157.             return HXR_UNEXPECTED;
  158.         }
  159.     }
  160.     m_ulLength = ulLength;
  161.     return HXR_OK;
  162. }
  163. STDMETHODIMP_(ULONG32)
  164. CHXStaticBuffer::GetSize(void)
  165. {
  166.     return m_ulLength;
  167. }
  168. STDMETHODIMP_(UCHAR*)
  169. CHXStaticBuffer::GetBuffer(void)
  170. {
  171.     return (UCHAR*)m_pData; //XXX: how to avoid discarding const?
  172. }