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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: hxinfcod.h,v 1.2.42.3 2004/07/09 01:48:00 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 _HXINFCOD_H_
  50. #define _HXINFCOD_H_
  51. #include "hxtypes.h"
  52. #include "hxstring.h"
  53. #include "timerep.h"
  54. #include "ihxostrm.h"
  55. #include "unkimp.h"
  56. #define Perplex_BASE  41
  57. #define Perplex_PER_ULONG32 6
  58. #define Perplex_ALIGNMENT 4
  59. // for dynamic buffer used in Encoder/Decoder classes.
  60. #define DEFAULT_GROW_SIZE 1024
  61. class CHXInfoEncoder;
  62. class CHXInfoDecoder;
  63. class CHXSimpleBuffer; // crappy little buffer class used by CHXInfoEncoder
  64. /////////////////////////////////////////////////////////////////////
  65. // A simple buffer. There is no implicit access/bounds checking,
  66. // you have to do that yourself or use the 'Safexxxxx()' methods.
  67. // It's actual size is usually not what you set with resizeBuffer(),
  68. // since the size will be rounded up to the nearest 'GrowBy' size.
  69. class CHXSimpleBuffer
  70. {
  71. public:
  72. CHXSimpleBuffer();
  73. CHXSimpleBuffer(UINT32 nSize, UINT32 nGrowBy=DEFAULT_GROW_SIZE);
  74. ~CHXSimpleBuffer();
  75. inline UCHAR* GetPtr()    const { return(m_pData); }
  76. inline UCHAR* GetPtrAt(UINT32 nOffset)  const { return(m_pData+nOffset); }
  77. inline UCHAR GetDataAt(UINT32 nOffset) const { return(*(m_pData+nOffset)); }
  78. inline UINT32 GetSize()    const { return(m_nSize); }
  79. inline void SetUCHAR(UINT32 off, UCHAR  x) { *(m_pData+off)=x; }
  80. inline void SetUINT16(UINT32 off, UINT16 x) { *((UINT16*)(m_pData+off))=x; }
  81. // returns TRUE if PTR points inside of buffer.
  82. // BOOL IsValidPtr(UCHAR* p);
  83. BOOL IsValidOffset(UINT32 n) const;
  84. // make sure that Offset is within the buffer.
  85. // If not, the buffer is automatically resized.
  86. BOOL EnsureValidOffset(UINT32 n);
  87. // copy data into buffer, dynamically growing buffer if needed.
  88. BOOL SafeMemCopy(UINT32 nOffset, const void* data, UINT32 len);
  89. // no bounds checking here.
  90. inline void MemCopy(UINT32 nOffset, const void* data, UINT32 len)
  91. #if _WIN16
  92. HX_ASSERT(len <= ((INT32)1024 * (INT32)64));
  93. #endif
  94. memcpy(m_pData+nOffset, data, (int)len); /* Flawfinder: ignore */
  95. }
  96. // grow/shink buffer (does memcpy)
  97. BOOL Resize(UINT32 nSize);
  98. void Free();
  99. protected:
  100. UINT32 RoundUpToGrowSize(UINT32 nSize);
  101. private:
  102. UINT32 m_nSize;
  103. UCHAR* m_pData;
  104. UINT32 m_nGrowBy;
  105. };
  106. /////////////////////////////////////////////////////////////////////
  107. class CHXInfoEncoder : public IHXObjOutStream, 
  108.    public CUnknownIMP
  109. {
  110.     // the IUnknown implementation declaration
  111.     DECLARE_UNKNOWN(CHXInfoEncoder)
  112. public:
  113. CHXInfoEncoder();
  114. ~CHXInfoEncoder();
  115. // Next 8 functions used most when you need to encode an object.
  116. void  EncodeObj(IHXStreamableObj* pObj);
  117. void  EncodeObj(IHXStreamableObj& Obj) {EncodeObj(&Obj);}
  118. void  PerplexEncodeObj(IHXStreamableObj* pObj);
  119. void  PerplexEncodeObj(IHXStreamableObj& Obj) {PerplexEncodeObj(&Obj);}
  120. void  HexEncodeObj(IHXStreamableObj* pObj);
  121. void  HexEncodeObj(IHXStreamableObj& Obj) {HexEncodeObj(&Obj);}
  122. // After using one of these two functions, the data retreived from
  123. // GetBuffer() will be either perplexed or hexed. Don't bother using these
  124. // if you're using PerplexEncodeObj() or HexEncodeObj(), since those
  125. // methods do an implicit 'Perplex()' or 'Hex()' for you.
  126. // Misuse of the encoder can cause these to fail, so check the return
  127. // value!
  128. BOOL Perplex(); // returns false if perplexing failed for any reason
  129. BOOL Hex(); // returns false if hex failed for any reason
  130. //** IHXObjOutStream methods **//
  131. STDMETHOD(Initialize) (THIS); // clean out buffers, start fresh!
  132.     STDMETHOD_(UINT32, WriteObj) (THIS_ IHXStreamableObj* pObj);
  133.     STDMETHOD_(UINT32, WriteObj) (THIS_ IHXStreamableObj& Obj) {return this->WriteObj(&Obj); }
  134. STDMETHOD_(UINT32, WriteUCHAR) (THIS_ UCHAR nValue);
  135.     STDMETHOD_(UINT32, WriteUINT16) (THIS_ UINT16 nValue);
  136.     STDMETHOD_(UINT32, WriteUINT32) (THIS_ UINT32 nValue);
  137.     STDMETHOD_(UINT32, WriteString) (THIS_ const char* szValue);
  138.     STDMETHOD_(UINT32, WriteStringCat) (THIS_ const char* szValue1,const char* szValue2,const char* szValue3=NULL);
  139.     STDMETHOD_(UINT32, WriteLargeString) (THIS_ const char* szValue);
  140.     STDMETHOD_(UINT32, WriteBuffer)  (THIS_ const char* szBuffer, UINT32 nSize);
  141. // dump at specific positions (earlier positions than current offset)
  142.     STDMETHOD_(UINT32, WriteUINT16At) (THIS_ UINT32 nOffset, UINT16 nValue);
  143.     STDMETHOD_(UINT32, WriteUINT32At) (THIS_ UINT32 nOffset, UINT32 nValue);
  144. // get encoded data and encoded length
  145. STDMETHOD_(const char*, GetBuffer) (THIS);
  146. STDMETHOD_(UINT32, GetLength) (THIS);
  147. // get end of raw data buffer - used when dumping bits into the
  148. // encoder and you want to know the current pos in the buffer
  149. STDMETHOD_(UINT32, GetOffset) (THIS) { return(m_nOffset);}
  150. // basic routines for hex/perplexing, used when this class doesn't
  151. // meet your needs.
  152. static void DumpToHex(char* hex, UCHAR* Bits, UINT32 nSize);
  153. static void DumpToPerplex(char* Perplex, UINT32 ulPerplexSize, UCHAR* Bits, UINT32 nSize);
  154. protected:
  155. static char ToHexNibble(UCHAR hexValue);
  156. static void DumpToMIMEBase64(char* MIMEBase64, const char* Bits, UINT32 nSize);
  157. static char MapToPerplex(UCHAR Perplex);
  158. static void ToPerplex(ULONG32 Input, char* Perplex);
  159. static char MapToMIMEBase64(UCHAR MIMEBase64);
  160. private:
  161. CHXSimpleBuffer m_Buffer;
  162. UINT32 m_nOffset; // current end of data in buffer
  163. UCHAR* m_FinalBuffer;
  164. BOOL m_bFinalBufferAllocFlag;
  165. UINT32 m_nFinalLen; // length of encoded data
  166. };
  167. /////////////////////////////////////////////////////////////////////
  168. class CHXInfoDecoder : public IHXObjInStream, 
  169.    public CUnknownIMP
  170. {
  171.     // the IUnknown implementation declaration
  172.     DECLARE_UNKNOWN(CHXInfoDecoder)
  173. public:
  174. CHXInfoDecoder() : m_Buffer(NULL), m_nDecodedLen(0), m_nOffset(0) {}
  175. ~CHXInfoDecoder() {};
  176. //**** THESE METHODS USED TO LOAD DATA INTO AN IHXStreamableObj OBJECT.
  177. BOOL  PerplexDecodeObj(const char* szPerplex, IHXStreamableObj* pObj);
  178. BOOL  PerplexDecodeObj(const char* szPerplex, IHXStreamableObj& Obj) {return PerplexDecodeObj(szPerplex, &Obj);}
  179. BOOL  PerplexDecodeObj(const char* szPerplex, UINT32 nSize, IHXStreamableObj* pObj);
  180. BOOL  PerplexDecodeObj(const char* szPerplex, UINT32 nSize, IHXStreamableObj& Obj) {return PerplexDecodeObj(szPerplex, nSize, &Obj);}
  181. BOOL  HexDecodeObj(const char* szHex, IHXStreamableObj* pObj);
  182. BOOL  HexDecodeObj(const char* szHex, IHXStreamableObj& Obj) {return HexDecodeObj(szHex, &Obj);}
  183. BOOL  HexDecodeObj(const char* szHex, UINT32 nSize, IHXStreamableObj* pObj);
  184. BOOL  HexDecodeObj(const char* szHex, UINT32 nSize, IHXStreamableObj& Obj) {return PerplexDecodeObj(szHex, nSize, &Obj);}
  185. // for raw data...
  186. BOOL  DecodeObj(const UCHAR* buffer, UINT32 nSize, IHXStreamableObj* pObj);
  187. BOOL  DecodeObj(const UCHAR* buffer, UINT32 nSize, IHXStreamableObj& Obj) {return DecodeObj(buffer, nSize, &Obj);}
  188. BOOL  DecodeObj(const char* buffer, UINT32 nSize, IHXStreamableObj* pObj){return DecodeObj((UCHAR*)buffer, nSize, pObj);}
  189. BOOL  DecodeObj(const char* buffer, UINT32 nSize, IHXStreamableObj& Obj) {return DecodeObj((UCHAR*)buffer, nSize, &Obj);}
  190. STDMETHOD(Initialize) (THIS) {m_Buffer=NULL;m_nOffset=0;m_nDecodedLen=0; return HXR_OK;}
  191. STDMETHOD(Initialize) (THIS_ UCHAR* buf, UINT32 nLen) {m_Buffer=buf;m_nOffset=0;m_nDecodedLen=nLen; return HXR_OK;}
  192.     STDMETHOD_(UINT32, ReadObj) (THIS_ IHXStreamableObj* pObj);
  193.     STDMETHOD_(UINT32, ReadObj) (THIS_ IHXStreamableObj& Obj) {return this->ReadObj(&Obj); }
  194.     STDMETHOD_(UINT32, ReadUCHAR)  (THIS_ UCHAR& nValue);
  195.     STDMETHOD_(UINT32, ReadUINT16) (THIS_ UINT16& nValue);
  196.     STDMETHOD_(UINT32, ReadUINT32) (THIS_ UINT32& nValue);
  197.     STDMETHOD_(UINT32, ReadString) (THIS_ CHXString& strValue);
  198. STDMETHOD_(UINT32, ReadAndAllocCString) (THIS_ char*& pszValue);
  199.     STDMETHOD_(UINT32, ReadLargeString) (THIS_ CHXString& strValue);
  200.     STDMETHOD_(UINT32, ReadAndAllocLargeCString) (THIS_ char*& pszValue);
  201.     STDMETHOD_(UINT32, ReadBuffer)  (THIS_ char* szBuffer, UINT32 nSize);
  202. // STDMETHOD_(UINT32, ReadUTCTime) (THIS_ UTCTimeRep& TimeRep);
  203. STDMETHOD_(BOOL, IsEndOfData) ();
  204. // arbitrarily change offset position.
  205.     STDMETHOD(Seek)  (UINT32 nPos);
  206.     STDMETHOD(SkipForward)  (UINT32 nAmount);
  207. STDMETHOD_(UINT32, GetOffset) (THIS) { return(m_nOffset);}
  208. // get data and length
  209. STDMETHOD_(const char*, GetBuffer) (THIS) {return((char*)m_Buffer);}
  210. STDMETHOD_(UINT32, GetLength) (THIS) {return(m_nDecodedLen);}
  211. //** FUNCTIONS TO DECODE HEX/PERPLEX
  212. static UINT32 SetFromHex(const char* hex, UCHAR* Bits, UINT32 nSize);
  213. static UINT32 SetFromPerplex(const char* Perplex, UCHAR* Bits, UINT32 ulBitsLen, UINT32 nSize);
  214. protected:
  215. // basic functions used internally for decoding perlpex/hex
  216. static UCHAR FromHexNibble(char hexChar);
  217. static UINT32 SetFromMIMEBase64(const char* MIMEBase64, char* Bits, UINT32 nSize);
  218. static UCHAR MapFromPerplex(char Perplex);
  219. static ULONG32 FromPerplex(const char* Perplex);
  220. static UCHAR MapFromMIMEBase64(char MIMEBase64);
  221. private:
  222. UCHAR* m_Buffer;   // Ptr to user-supplied data to load into object.
  223. UINT32 m_nDecodedLen; // actual end of data in buffer
  224. UINT32 m_nOffset;     // current position in buffer
  225. };
  226. #endif