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

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 _IHXOSTRM_H
  36. #define _IHXOSTRM_H
  37. #include "hxcom.h"
  38. // These interfaces use HXString as one of the data primitives
  39. // that can be written/read from a stream. Makes life easy for
  40. // implementors of IHXStreamableObj
  41. #include "hxstring.h"
  42. //typedef interface IHXStreamableObj IHXStreamableObj;
  43. typedef _INTERFACE IHXObjOutStream  IHXObjOutStream;
  44. typedef _INTERFACE IHXObjInStream   IHXObjInStream;
  45. // {47533471-BECE-11d1-8F09-0060083BE561}
  46. DEFINE_GUID(IID_IHXStreamableObj, 0x47533471, 0xbece, 0x11d1, 0x8f, 0x9, 0x0, 0x60, 0x8, 0x3b, 0xe5, 0x61);
  47. #undef  INTERFACE
  48. #define INTERFACE IHXStreamableObj
  49. DECLARE_INTERFACE_(IHXStreamableObj, IUnknown)
  50. {
  51.     STDMETHOD(QueryInterface) (THIS_ REFIID riid, void** ppvObj) PURE;
  52.     STDMETHOD_(ULONG32, AddRef) (THIS) PURE;
  53.     STDMETHOD_(ULONG32, Release) (THIS) PURE;
  54. // this method is used to dump a binary
  55. // representation of itself to the Encoder Object.
  56.     STDMETHOD(WriteObjToBits) (THIS_ IHXObjOutStream* pIOutStream) PURE;
  57. // this method is used to set the object's internal state
  58. // from the data in the Decoder Object.
  59.     STDMETHOD(ReadObjFromBits) (THIS_ IHXObjInStream* pIInStream) PURE;
  60. };
  61. // {B3A156D1-BEDD-11d1-8F0A-0060083BE561}
  62. DEFINE_GUID(IID_IHXObjOutStream, 0xb3a156d1, 0xbedd, 0x11d1, 0x8f, 0xa, 0x0, 0x60, 0x8, 0x3b, 0xe5, 0x61);
  63. #undef  INTERFACE
  64. #define INTERFACE IHXObjOutStream
  65. DECLARE_INTERFACE_(IHXObjOutStream, IUnknown)
  66. {
  67.     STDMETHOD(QueryInterface) (THIS_ REFIID riid, void** ppvObj) PURE;
  68.     STDMETHOD_(UINT32, AddRef) (THIS) PURE;
  69.     STDMETHOD_(UINT32, Release) (THIS) PURE;
  70. STDMETHOD(Initialize) (THIS) PURE; // clean out buffers, start fresh!
  71.     STDMETHOD_(UINT32, WriteObj) (THIS_ IHXStreamableObj* pObj) PURE;
  72.     STDMETHOD_(UINT32, WriteObj) (THIS_ IHXStreamableObj& pObj) PURE;
  73. STDMETHOD_(UINT32, WriteUCHAR) (THIS_ UCHAR nValue) PURE;
  74.     STDMETHOD_(UINT32, WriteUINT16) (THIS_ UINT16 nValue) PURE;
  75.     STDMETHOD_(UINT32, WriteUINT32) (THIS_ UINT32 nValue) PURE;
  76.     STDMETHOD_(UINT32, WriteString) (THIS_ const char* szValue) PURE;
  77.     STDMETHOD_(UINT32, WriteStringCat) (THIS_ const char* szValue1,const char* szValue2,const char* szValue3=NULL) PURE;
  78.     STDMETHOD_(UINT32, WriteLargeString) (THIS_ const char* szValue) PURE;
  79.     STDMETHOD_(UINT32, WriteBuffer)  (THIS_ const char* szBuffer, UINT32 nSize) PURE;
  80. // dump at specific positions (earlier positions than current offset)
  81.     STDMETHOD_(UINT32, WriteUINT16At) (THIS_ UINT32 nOffset, UINT16 nValue) PURE;
  82.     STDMETHOD_(UINT32, WriteUINT32At) (THIS_ UINT32 nOffset, UINT32 nValue) PURE;
  83. // get data and length
  84. STDMETHOD_(const char*, GetBuffer) (THIS) PURE;
  85. STDMETHOD_(UINT32, GetLength) (THIS) PURE;
  86. // get end of raw data buffer - used when dumping bits into the
  87. // stream and you want to know the current position in the stream
  88. STDMETHOD_(UINT32, GetOffset) (THIS) PURE;
  89. };
  90. // {B3A156D1-BEDD-11d1-8F0A-0060083BE561}
  91. DEFINE_GUID(IID_IHXObjInStream, 0xb3a156d2, 0xbedd, 0x11d1, 0x8f, 0xa, 0x0, 0x60, 0x8, 0x3b, 0xe5, 0x61);
  92. #undef  INTERFACE
  93. #define INTERFACE IHXObjInStream
  94. DECLARE_INTERFACE_(IHXObjInStream, IUnknown)
  95. {
  96.     STDMETHOD(QueryInterface) (THIS_ REFIID riid, void** ppvObj) PURE;
  97.     STDMETHOD_(ULONG32, AddRef) (THIS) PURE;
  98.     STDMETHOD_(ULONG32, Release) (THIS) PURE;
  99. STDMETHOD(Initialize) (THIS) PURE;
  100. STDMETHOD(Initialize) (THIS_ UCHAR* buf, UINT32 nLen) PURE;
  101.     STDMETHOD_(UINT32, ReadObj) (THIS_ IHXStreamableObj* pObj) PURE;
  102.     STDMETHOD_(UINT32, ReadObj) (THIS_ IHXStreamableObj& pObj) PURE;
  103.     STDMETHOD_(UINT32, ReadUCHAR)  (THIS_ UCHAR& nValue) PURE;
  104.     STDMETHOD_(UINT32, ReadUINT16) (THIS_ UINT16& nValue) PURE;
  105.     STDMETHOD_(UINT32, ReadUINT32) (THIS_ UINT32& nValue) PURE;
  106.     STDMETHOD_(UINT32, ReadString) (THIS_ CHXString& strValue) PURE;
  107. STDMETHOD_(UINT32, ReadAndAllocCString) (THIS_ char*& pszValue) PURE;
  108.     STDMETHOD_(UINT32, ReadLargeString) (THIS_ CHXString& strValue) PURE;
  109.     STDMETHOD_(UINT32, ReadAndAllocLargeCString) (THIS_ char*& pszValue) PURE;
  110.     STDMETHOD_(UINT32, ReadBuffer)  (THIS_ char* szBuffer, UINT32 nSize) PURE;
  111. STDMETHOD_(BOOL, IsEndOfData) () PURE;
  112. // arbitrarily change offset position.
  113.     STDMETHOD(Seek)  (UINT32 nPos) PURE;
  114.     STDMETHOD(SkipForward)  (UINT32 nAmount) PURE;
  115. STDMETHOD_(UINT32, GetOffset) (THIS) PURE;
  116. // get data and length
  117. STDMETHOD_(const char*, GetBuffer) (THIS) PURE;
  118. STDMETHOD_(UINT32, GetLength) (THIS) PURE;
  119. };
  120. #endif