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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: hxdataf.h,v 1.4.46.3 2004/07/09 01:45:08 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 _DATAFILE_H_
  50. #define _DATAFILE_H_
  51. typedef _INTERFACE IUnknown IUnknown;
  52. typedef _INTERFACE IHXBuffer IHXBuffer;
  53. typedef _INTERFACE IHXDataFile IHXDataFile;
  54. typedef _INTERFACE IHXDataFileFactory IHXDataFileFactory;
  55. typedef _INTERFACE IHXCallback IHXCallback;
  56. enum 
  57. {
  58.     HX_FILEFLAG_READ = 1,
  59.     HX_FILEFLAG_WRITE = 2,
  60.     HX_FILEFLAG_BINARY = 4,
  61.     HX_FILEFLAG_NOTRUNC = 8
  62. };
  63. /*
  64.  * 
  65.  *  Interface:
  66.  *
  67.  * IHXDataFileFactory
  68.  *
  69.  *  Purpose:
  70.  *
  71.  * This interface provides an API for creating datafile objects
  72.  *      based on passed in options and platform compiled for.
  73.  *
  74.  * IHXDataFileFactory
  75.  * |
  76.  * IHXDataFile
  77.  * |__________________________________________________...
  78.  * | |                |                |
  79.  * Buffered UnBuffered       Mem.Mapped       Async
  80.  *
  81.  *  IID_IHXDataFileFactory: {00000F00-0901-11d1-8B06-00A024406D59}
  82.  *
  83.  */
  84. DEFINE_GUID(IID_IHXDataFileFactory, 0x00000F00, 0xb4c8, 0x11d0, 0x99, 0x95, 
  85. 0x0, 0xa0, 0x24, 0x8d, 0xa5, 0xf0);
  86. #undef  INTERFACE
  87. #define INTERFACE   IHXDataFileFactory
  88. DECLARE_INTERFACE_(IHXDataFileFactory, IUnknown)
  89. {
  90.     /*
  91.      *  IUnknown methods
  92.      */
  93.     STDMETHOD(QueryInterface) (THIS_
  94. REFIID riid,
  95. void** ppvObj) PURE;
  96.     
  97.     STDMETHOD_(ULONG32, AddRef) (THIS) PURE;
  98.     
  99.     STDMETHOD_(ULONG32, Release) (THIS) PURE;
  100.     
  101.     /*
  102.      *  IHXDataFileFactory methods
  103.      */
  104.     /* Creates a datafile for buffered or unbuffered I/O
  105.      * By default create an IHXDataFile for BUFFERED file I/O 
  106.      * for all platforms, except SOLARIS, where UNBUFFERED 
  107.      * file I/O is required.
  108.      */
  109.     STDMETHOD(CreateFile) (THIS_
  110. REF(IHXDataFile*) pDataFile,
  111. IUnknown*  pContext,
  112. REF(IUnknown*) pPersistantObject,
  113. BOOL bDisableMemoryMappedIO,
  114. UINT32 ulChunkSize,
  115. BOOL bEnableFileLocking,
  116. BOOL bPreferAsyncIO
  117. ) PURE;
  118. };
  119. /*
  120.  * 
  121.  *  Interface:
  122.  *
  123.  * IHXDataFile
  124.  *
  125.  *  Purpose:
  126.  *
  127.  * This interface provides an API for basic file access to datafiles. 
  128.  * The datafile object is crated based on passed in options and
  129.  * platform compiled for.
  130.  *
  131.  * IHXDataFileFactory
  132.  * |
  133.  * IHXDataFile
  134.  * |__________________________________________________...
  135.  * | |                |                |
  136.  * Buffered UnBuffered       Mem.Mapped       Async
  137.  *
  138.  *  IID_IHXDataFile:        {00000F01-0901-11d1-8B06-00A024406D59}
  139.  *
  140.  */
  141. DEFINE_GUID(IID_IHXDataFile, 0x00000F01, 0xb4c8, 0x11d0, 0x99, 0x95, 
  142. 0x0, 0xa0, 0x24, 0x8d, 0xa5, 0xf0);
  143. #undef  INTERFACE
  144. #define INTERFACE   IHXDataFile
  145. DECLARE_INTERFACE_(IHXDataFile, IUnknown)
  146. {
  147.     /*
  148.      *  IUnknown methods
  149.      */
  150.     STDMETHOD(QueryInterface) (THIS_
  151. REFIID riid,
  152. void** ppvObj) PURE;
  153.     
  154.     STDMETHOD_(ULONG32, AddRef) (THIS) PURE;
  155.     
  156.     STDMETHOD_(ULONG32, Release) (THIS) PURE;
  157.     
  158.     /*
  159.      *  IHXDataFile methods
  160.      */
  161.     /* Bind DataFile Object with FileName */
  162.     STDMETHOD_(void, Bind) (THIS_
  163. const char* FileName) PURE;
  164.     /* Creates a datafile using the specified mode
  165.      * uOpenMode --- File Open mode - HX_FILE_READ/HX_FILE_WRITE/HX_FILE_BINARY
  166.      */
  167.     STDMETHOD(Create) (THIS_
  168. UINT16 uOpenMode) PURE;
  169.     /* Open will open a file with the specified mode
  170.      */
  171.     STDMETHOD(Open) (THIS_
  172. UINT16 uOpenMode) PURE;
  173.     /* Close closes a file 
  174.      * If the reference count on the IHXDataFile object is greater than 1, 
  175.      * then the underlying file cannot be safely closed, so Close() becomes 
  176.      * a noop in that case. Close it only when the object is destroyed. 
  177.      * This would be safe, but could lead to a file descriptor leak.
  178.      */
  179.     STDMETHOD(Close) (THIS) PURE;
  180.     /* Name returns the currently bound file name in FileName.
  181.      * and returns TRUE, if the a name has been bound.  Otherwise
  182.      * FALSE is returned.
  183.      */
  184.     STDMETHOD_(BOOL, Name) (THIS_
  185. REF(IHXBuffer*) pFileName) PURE;
  186.     /*
  187.      * IsOpen returns TRUE if file is open.  Otherwise FALSE.
  188.      */
  189.     STDMETHOD_(BOOL, IsOpen) (THIS) PURE;
  190.     /* Seek moves the current file position to the offset from the
  191.      * fromWhere specifier returns current position of file or -1 on
  192.      * error.
  193.      */
  194.     STDMETHOD(Seek) (THIS_
  195. ULONG32 offset, UINT16 fromWhere) PURE;
  196.     /* Tell returns the current file position in the file */
  197.     STDMETHOD_(ULONG32, Tell) (THIS) PURE;
  198.     /* Read reads up to count bytes of data into buf.
  199.      * returns the number of bytes read, EOF, or -1 if the read failed 
  200.      */
  201.     STDMETHOD_(ULONG32, Read) (THIS_
  202. REF(IHXBuffer*) pBuf, 
  203. ULONG32 count) PURE;
  204.     /* Write writes up to count bytes of data from buf.
  205.      * returns the number of bytes written, or -1 if the write failed 
  206.      */
  207.     STDMETHOD_(ULONG32, Write) (THIS_
  208. REF(IHXBuffer*) pBuf) PURE;
  209.     /* Flush out the data in case of unbuffered I/O
  210.      */
  211.     STDMETHOD(Flush) (THIS) PURE;
  212.     /*
  213.      * Return info about the data file such as permissions, time of creation
  214.      * size in bytes, etc.
  215.      */
  216.     STDMETHOD(Stat) (THIS_
  217. struct stat* buffer) PURE;
  218.     /* Delete File */
  219.     STDMETHOD(Delete) (THIS) PURE;
  220.     /* Return the file descriptor */
  221.     STDMETHOD_(INT16, GetFd) (THIS) PURE;
  222.     /* GetLastError returns the platform specific file error */
  223.     STDMETHOD(GetLastError) (THIS) PURE;
  224.     /* GetLastError returns the platform specific file error in
  225.      * string form.
  226.      */
  227.     STDMETHOD_(void, GetLastError) (THIS_
  228. REF(IHXBuffer*) err) PURE;
  229. };
  230. /*
  231.  * 
  232.  *  Interface:
  233.  *
  234.  * IID_IHXAsyncDataFile
  235.  *
  236.  *  Purpose:
  237.  *
  238.  * This interface provides an API for basic data file operations and
  239.  *  asynchronous read, write and seek operations.
  240.  *
  241.  */
  242. DEFINE_GUID(IID_IHXAsyncDataFile,   0x972bacc0, 0xaff, 0x11d7, 0xac, 
  243.     0x45, 0x0, 0x1, 0x2, 0x51, 0xb3, 0x40);
  244. #undef  INTERFACE
  245. #define INTERFACE   IHXAsyncDataFile
  246. DECLARE_INTERFACE_(IHXAsyncDataFile, IHXDataFile)
  247. {
  248.     /*
  249.      *  IUnknown methods
  250.      */
  251.     STDMETHOD(QueryInterface) (THIS_
  252. REFIID riid,
  253. void** ppvObj) PURE;
  254.     
  255.     STDMETHOD_(ULONG32, AddRef) (THIS) PURE;
  256.     
  257.     STDMETHOD_(ULONG32, Release) (THIS) PURE;
  258.     
  259.     /*
  260.      *  IHXDataFile methods
  261.      */
  262.     /* Bind DataFile Object with FileName */
  263.     STDMETHOD_(void, Bind) (THIS_
  264. const char* FileName) PURE;
  265.     /* Creates a datafile using the specified mode
  266.      * uOpenMode --- File Open mode - HX_FILE_READ/HX_FILE_WRITE/HX_FILE_BINARY
  267.      */
  268.     STDMETHOD(Create) (THIS_
  269. UINT16 uOpenMode) PURE;
  270.     /* Open will open a file with the specified mode
  271.      */
  272.     STDMETHOD(Open) (THIS_
  273. UINT16 uOpenMode) PURE;
  274.     /* Close closes a file 
  275.      * If the reference count on the IHXDataFile object is greater than 1, 
  276.      * then the underlying file cannot be safely closed, so Close() becomes 
  277.      * a noop in that case. Close it only when the object is destroyed. 
  278.      * This would be safe, but could lead to a file descriptor leak.
  279.      */
  280.     STDMETHOD(Close) (THIS) PURE;
  281.     /* Name returns the currently bound file name in FileName.
  282.      * and returns TRUE, if the a name has been bound.  Otherwise
  283.      * FALSE is returned.
  284.      */
  285.     STDMETHOD_(BOOL, Name) (THIS_
  286. REF(IHXBuffer*) pFileName) PURE;
  287.     /*
  288.      * IsOpen returns TRUE if file is open.  Otherwise FALSE.
  289.      */
  290.     STDMETHOD_(BOOL, IsOpen) (THIS) PURE;
  291.     /* Seek moves the current file position to the offset from the
  292.      * fromWhere specifier returns current position of file or -1 on
  293.      * error.
  294.      */
  295.     STDMETHOD(Seek) (THIS_
  296. ULONG32 offset, UINT16 fromWhere) PURE;
  297.     /* Tell returns the current file position in the file */
  298.     STDMETHOD_(ULONG32, Tell) (THIS) PURE;
  299.     /* Read reads up to count bytes of data into buf.
  300.      * returns the number of bytes read, EOF, or -1 if the read failed 
  301.      */
  302.     STDMETHOD_(ULONG32, Read) (THIS_
  303. REF(IHXBuffer*) pBuf, 
  304. ULONG32 count) PURE;
  305.     /* Write writes up to count bytes of data from buf.
  306.      * returns the number of bytes written, or -1 if the write failed 
  307.      */
  308.     STDMETHOD_(ULONG32, Write) (THIS_
  309. REF(IHXBuffer*) pBuf) PURE;
  310.     /* Flush out the data in case of unbuffered I/O
  311.      */
  312.     STDMETHOD(Flush) (THIS) PURE;
  313.     /*
  314.      * Return info about the data file such as permissions, time of creation
  315.      * size in bytes, etc.
  316.      */
  317.     STDMETHOD(Stat) (THIS_
  318. struct stat* buffer) PURE;
  319.     /* Delete File */
  320.     STDMETHOD(Delete) (THIS) PURE;
  321.     /* Return the file descriptor */
  322.     STDMETHOD_(INT16, GetFd) (THIS) PURE;
  323.     /* GetLastError returns the platform specific file error */
  324.     STDMETHOD(GetLastError) (THIS) PURE;
  325.     /* GetLastError returns the platform specific file error in
  326.      * string form.
  327.      */
  328.     STDMETHOD_(void, GetLastError) (THIS_
  329. REF(IHXBuffer*) err) PURE;
  330.     /*
  331.      *  IHXAsyncDataFile
  332.      */
  333.     STDMETHOD(SetReceiver) (THIS_
  334. IHXCallback* pCallback) PURE;
  335.     STDMETHOD(SeekAsync) (THIS_
  336. REF(HX_RESULT) status, 
  337. ULONG32 offset, UINT16 fromWhere) PURE;
  338.     STDMETHOD(ReadAsync) (THIS_
  339. REF(ULONG32) ulReadSize,
  340. REF(IHXBuffer*) pBuf, 
  341. ULONG32 count) PURE;
  342.     STDMETHOD(WriteAsync) (THIS_
  343. REF(ULONG32) ulWrittenSize,
  344. REF(IHXBuffer*) pBuf) PURE;
  345. };
  346. #if defined(_SYMBIAN)
  347. #include "platform/symbian/ihxsymbfsessionmgr.h"
  348. #endif // _SYMBIAN
  349. #endif /* _DATAFILE_H_ */