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

Symbian

开发平台:

Visual C++

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