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

Symbian

开发平台:

Visual C++

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