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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: perplex.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 _HXPERPLEX_H_
  50. #define _HXPERPLEX_H_
  51. //****************************************************************************
  52. //****************************** INCLUDE FILES *******************************
  53. //****************************************************************************
  54. #include "hxtypes.h"
  55. #include "hxstring.h"
  56. #include "timerep.h"
  57. #include "ihxperplex.h"
  58. #include "unkimp.h"
  59. //****************************************************************************
  60. //************************** CONSTANT DEFINITIONS ****************************
  61. //****************************************************************************
  62. #define Perplex_BASE  41
  63. #define Perplex_PER_ULONG32 6
  64. #define Perplex_ALIGNMENT 4
  65. #define DEFAULT_GROW_SIZE 1024 // for dynamic buffer perplex classes
  66. //****************************************************************************
  67. //************************** FORWARD DECLARATIONS ****************************
  68. //****************************************************************************
  69. class CHXPerplex;
  70. class CHXSimpleBuffer; // crappy little buffer class used by CHXInfoEncoder
  71. //****************************************************************************
  72. //****************************** CHXPerplex **********************************
  73. //****************************************************************************
  74. class CHXPerplex : public IHXPerplex, 
  75. public CUnknownIMP
  76. {
  77.     // the IUnknown implementation declaration
  78.     DECLARE_UNKNOWN(CHXPerplex)
  79. public:
  80.     CHXPerplex();
  81.     ~CHXPerplex();
  82.     STDMETHOD(Perplex)     (THIS_ IHXBuffer *pInBuf, IHXBuffer *pOutBuf);
  83.     STDMETHOD(DePerplex)    (THIS_ IHXBuffer *pInBuf, IHXBuffer *pOutBuf);
  84.     // basic routines for hex/perplexing, used when this class doesn't
  85.     // meet your needs.
  86.     static void     DumpToPerplex(char* Perplex, UINT32 ulPerplexSize, UCHAR* Bits, UINT32 nSize);
  87.     static UINT32   SetFromPerplex(const char* Perplex, UCHAR* Bits, UINT32 nSize);
  88. protected:
  89.     static void     DumpToMIMEBase64(char* MIMEBase64, const char* Bits, UINT32 nSize);
  90.     static UINT32   SetFromMIMEBase64(const char* MIMEBase64, char* Bits, UINT32 nSize);
  91.     static char     MapToPerplex(UCHAR Perplex);
  92.     static UCHAR    MapFromPerplex(char Perplex);
  93.     static void     ToPerplex(ULONG32 Input, char* Perplex);
  94.     static ULONG32  FromPerplex(const char* Perplex);
  95.     static char     MapToMIMEBase64(UCHAR MIMEBase64);
  96.     static UCHAR    MapFromMIMEBase64(char MIMEBase64);
  97. };
  98. //****************************************************************************
  99. //**************************** CHXPerplexBuffer ******************************
  100. //****************************************************************************
  101.     // A simple buffer. There is no implicit access/bounds checking,
  102.     // you have to do that yourself or use the 'Safexxxxx()' methods.
  103.     // It's actual size is usually not what you set with resizeBuffer(),
  104.     // since the size will be rounded up to the nearest 'GrowBy' size.
  105. class CHXPerplexBuffer
  106. {
  107. public:
  108.     CHXPerplexBuffer();
  109.     CHXPerplexBuffer(UINT32 nSize, UINT32 nGrowBy=DEFAULT_GROW_SIZE);
  110.     ~CHXPerplexBuffer();
  111.     inline UCHAR* GetPtr()      const { return(m_pData); }
  112.     inline UCHAR* GetPtrAt(UINT32 nOffset)    const { return(m_pData+nOffset); }
  113.     inline UCHAR GetDataAt(UINT32 nOffset)   const { return(*(m_pData+nOffset)); }
  114.     inline UINT32 GetSize()      const { return(m_nSize); }
  115.     inline void SetUCHAR(UINT32 off, UCHAR  x) { *(m_pData+off)=x; }
  116.     inline void SetUINT16(UINT32 off, UINT16 x) { *((UINT16*)(m_pData+off))=x; }
  117.     inline BOOL IsValidOffset(UINT32 n) const;
  118.     // make sure that Offset is within the buffer.
  119.     // If not, the buffer is automatically resized.
  120.     BOOL    EnsureValidOffset(UINT32 n);
  121.     // copy data into buffer, dynamically growing buffer if needed.
  122.     BOOL    SafeMemCopy(UINT32 nOffset, const void* data, UINT32 len);
  123.     // no bounds checking here.
  124.     inline void MemCopy(UINT32 nOffset, const void* data, UINT32 len)
  125.     { 
  126. memcpy(m_pData+nOffset, data, (int)len); /* Flawfinder: ignore */
  127.     }
  128.     // grow/shink buffer (does memcpy)
  129.     BOOL Resize(UINT32 nSize);
  130.     void Free();
  131. protected:
  132.     UINT32 RoundUpToGrowSize(UINT32 nSize);
  133.     UINT32 m_nSize;
  134.     UCHAR* m_pData;
  135.     UINT32 m_nGrowBy;
  136. };
  137. #endif