hxbuffer.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:7k
源码类别:

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. #ifndef _HXBUFFER_H_
  36. #define _HXBUFFER_H_
  37. #include "ihxpckts.h"
  38. #include "hxvalue.h"
  39. //#include "hxheap.h"
  40. #include "hxstring.h"
  41. // This determines the length of the built in buffer that is used if the
  42. // data length is small enough, to save us from allocating so many little
  43. // pieces of data.
  44. #define PnBufferShort
  45. #ifdef PnBufferShort
  46. const int MaxPnbufShortDataLen = 15;
  47. #endif
  48. #define NUM_ALLOCATION_EACH_TIME 25
  49. /****************************************************************************
  50.  * 
  51.  * Class:
  52.  *
  53.  * CHXBuffer
  54.  *
  55.  * Purpose:
  56.  *
  57.  * PN implementation of a basic buffer.
  58.  *
  59.  */
  60. class CHXBuffer 
  61.     : public IHXBuffer
  62. {
  63. protected:
  64.         LONG32 m_lRefCount;
  65. ULONG32         m_ulAllocLength;
  66.   BOOL m_bJustPointToExistingData;
  67. #if !defined(HELIX_CONFIG_NOSTATICS)
  68.         // Interface for optional allocator
  69.         static  IMalloc* m_zMallocInterface;
  70. #endif
  71.         // number of CHXBuffer allocated at a time to be placed in freeStore
  72.         static  CHXBuffer* s_pFreeStore;
  73.         static  const int s_iBufferChunk;
  74.         virtual ~CHXBuffer();
  75.         BOOL FreeWithMallocInterface() const;
  76. #ifdef PnBufferShort
  77.     // buffer for small amounts of data
  78.     //UCHAR m_ShortData[MaxPnbufShortDataLen + 1];
  79. #endif
  80.         enum { BigDataTag = 0xEE };
  81.         
  82.         union
  83.         {
  84.             struct 
  85.             {
  86.             UCHAR* m_pData;
  87.             ULONG32 m_ulLength;
  88.             unsigned char m_FreeWithMallocInterfaceIfAvail;
  89.             } m_BigData;
  90.             UCHAR m_ShortData[MaxPnbufShortDataLen + 1];
  91.         };
  92.         bool IsShort() const;
  93.         HX_RESULT SetSize(ULONG32 ulLength, BOOL copyExistingData);
  94.     
  95.         UCHAR* Allocate(UINT32 size) const;
  96.         UCHAR* Reallocate(UCHAR*, UINT32 oldSize, UINT32 newSize) const;
  97.         void Deallocate(UCHAR*) const;
  98.         PRIVATE_DESTRUCTORS_ARE_NOT_A_CRIME
  99. public:
  100.         CHXBuffer();
  101.         CHXBuffer(UCHAR* pData, UINT32 ulLength, BOOL bOwnBuffer = TRUE);
  102. #if 0
  103. #ifndef __MWERKS__
  104. #if defined (_DEBUG) && defined (_WIN32) && 0
  105.          void * operator new(
  106.         unsigned int,
  107.         int,
  108.         const char *,
  109.         int
  110.         );
  111. #else
  112.         void *  operator new (size_t size);
  113. #endif /*defined (_DEBUG) && defined (_WIN32) */
  114.         void operator delete(void *p, size_t size);
  115. #endif /*__MWERKS__*/
  116. #endif /*0*/
  117.         inline CHXBuffer& operator=(const char* psz);
  118.         inline CHXBuffer& operator=(const unsigned char* psz);
  119.         inline CHXBuffer& operator=(const CHXString &str);
  120.         /*
  121.          * IUnknown methods
  122.          */
  123.     STDMETHOD(QueryInterface) (THIS_
  124.                                                                 REFIID riid,
  125.                                                                 void** ppvObj);
  126.     STDMETHOD_(ULONG32,AddRef) (THIS);
  127.     STDMETHOD_(ULONG32,Release) (THIS);
  128.         /*
  129.          * IHXBuffer methods
  130.          */
  131.     STDMETHOD(Get) (THIS_
  132.                                                                 REF(UCHAR*) pData, 
  133.                                                                 REF(ULONG32) ulLength);
  134.     STDMETHOD(Set) (THIS_
  135.                                                                 const UCHAR* pData, 
  136.                                                                 ULONG32 ulLength);
  137.     STDMETHOD(SetSize) (THIS_
  138.                                                                 ULONG32 ulLength);
  139.     STDMETHOD_(ULONG32,GetSize) (THIS);
  140.     STDMETHOD_(UCHAR*,GetBuffer)
  141.                                                                 (THIS);
  142. public:
  143.     static HX_RESULT FromCharArray
  144.     (
  145.         const char* szIn, 
  146.         IHXBuffer** ppbufOut
  147.     );
  148.     static HX_RESULT FromCharArray
  149.     (
  150.         const char* szIn, 
  151.         UINT32 ulLength, 
  152.         IHXBuffer** ppbufOut
  153.     );
  154.     static void SetAllocator(IMalloc* pMalloc);
  155.     static void ReleaseAllocator();
  156. };
  157. CHXBuffer& CHXBuffer::operator=(const char* psz)
  158. {
  159.         Set((const unsigned char*)psz, strlen(psz)+1);
  160.         return(*this);
  161. }
  162. CHXBuffer& CHXBuffer::operator=(const unsigned char* psz)
  163. {
  164.         Set(psz, strlen((const char*)psz)+1);
  165.         return(*this);
  166. }
  167. CHXBuffer& CHXBuffer::operator=(const CHXString& str)
  168. {
  169.         Set((const unsigned char*)(const char *)str, str.GetLength()+1);
  170.         return(*this);
  171. }
  172. // This class was created in order to be able to have a buffer that consists of
  173. // a subset of another existing buffer without allocating any new data or 
  174. // copying data over. The way to use this class is to instantiate it with 3 
  175. // parameters: 
  176. // 1) A pointer to the superset buffer, 
  177. // 2) The pointer to the point in the the buffer that represents the start of 
  178. //    the subset buffer, and 
  179. // 3) The length of the subset buffer.
  180. //
  181. class CHXBufferFragment : public CHXBuffer
  182. {
  183. public :
  184.     CHXBufferFragment(IHXBuffer * pWrappedBuffer, UCHAR* pModFrameStart, ULONG32 ulFragLen) : CHXBuffer( pModFrameStart, ulFragLen, FALSE ), m_pHXBufferPointedTo(pWrappedBuffer){ if(pWrappedBuffer) {pWrappedBuffer->AddRef();} };
  185.     ~CHXBufferFragment(){ HX_RELEASE(m_pHXBufferPointedTo);}
  186. protected :
  187.     IHXBuffer * m_pHXBufferPointedTo;
  188. };
  189. #endif