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

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 _UNBUFFERED_DATA_FILE_H_
  36. #define _UNBUFFERED_DATA_FILE_H_
  37. #include "hxtypes.h"
  38. #include "hxcom.h"
  39. #include "hxdataf.h"
  40. class UnBufferedDataFile : public IHXDataFile
  41. {
  42. public:
  43. UnBufferedDataFile();
  44.     virtual ~UnBufferedDataFile();
  45.     /*
  46.      *  IUnknown methods
  47.      */
  48.     STDMETHOD(QueryInterface) (THIS_
  49. REFIID riid,
  50. void** ppvObj);
  51.     
  52.     STDMETHOD_(ULONG32, AddRef) (THIS);
  53.     
  54.     STDMETHOD_(ULONG32, Release) (THIS);
  55.     
  56.     /*
  57.      *  IHXDataFile methods
  58.      */
  59.     /* Bind DataFile Object with FileName */
  60.     STDMETHOD_(void, Bind) (THIS_
  61. const char* FileName);
  62.     /* Creates a datafile using the specified mode
  63.      * uOpenMode --- File Open mode - HX_FILE_READ/HX_FILE_WRITE/HX_FILE_BINARY
  64.      */
  65.     STDMETHOD(Create) (THIS_
  66. UINT16 uOpenMode);
  67.     /* Open will open a file with the specified mode
  68.      */
  69.     STDMETHOD(Open) (THIS_
  70. UINT16 uOpenMode);
  71.     /* Close closes a file 
  72.      * If the reference count on the IHXDataFile object is greater than 1, 
  73.      * then the underlying file cannot be safely closed, so Close() becomes 
  74.      * a noop in that case. Close it only when the object is destroyed. 
  75.      * This would be safe, but could lead to a file descriptor leak.
  76.      */
  77.     STDMETHOD(Close) (THIS);
  78.     /* Name returns the currently bound file name in FileName.
  79.      * and returns TRUE, if the a name has been bound.  Otherwise
  80.      * FALSE is returned.
  81.      */
  82.     STDMETHOD_(BOOL, Name) (THIS_
  83. REF(IHXBuffer*) pFileName);
  84.     /*
  85.      * IsOpen returns TRUE if file is open.  Otherwise FALSE.
  86.      */
  87.     STDMETHOD_(BOOL, IsOpen) (THIS);
  88.     /* Seek moves the current file position to the offset from the
  89.      * fromWhere specifier returns current position of file or -1 on
  90.      * error.
  91.      */
  92.     STDMETHOD(Seek) (THIS_
  93. ULONG32 offset, UINT16 fromWhere);
  94.     /* Tell returns the current file position in the file */
  95.     STDMETHOD_(ULONG32, Tell) (THIS);
  96.     /* Read reads up to count bytes of data into buf.
  97.      * returns the number of bytes read, EOF, or -1 if the read failed 
  98.      */
  99.     STDMETHOD_(ULONG32, Read) (THIS_
  100. REF(IHXBuffer*) pBuf, 
  101. ULONG32 count);
  102.     /* Write writes up to count bytes of data from buf.
  103.      * returns the number of bytes written, or -1 if the write failed 
  104.      */
  105.     STDMETHOD_(ULONG32, Write) (THIS_
  106. REF(IHXBuffer*) pBuf); 
  107.     /* Flush out the data in case of unbuffered I/O
  108.      */
  109.     STDMETHOD(Flush) (THIS);
  110.     /*
  111.      * Return info about the data file such as permissions, time of creation
  112.      * size in bytes, etc.
  113.      */
  114.     STDMETHOD(Stat) (THIS_
  115. struct stat* buffer);
  116.     /* Return the file descriptor */
  117.     STDMETHOD_(INT16, GetFd) (THIS);
  118.     /* GetLastError returns the platform specific file error */
  119.     STDMETHOD(GetLastError) (THIS);
  120.     /* GetLastError returns the platform specific file error in
  121.      * string form.
  122.      */
  123.     STDMETHOD_(void, GetLastError) (THIS_
  124. REF(IHXBuffer*) err);
  125. protected:
  126.     LONG32 m_lRefCount;
  127.     UINT32 m_ulLastError;
  128.     IHXBuffer* m_pFilename;
  129.     int m_nFD;
  130. };
  131. #endif /* _UNBUFFERED_DATA_FILE_H_ */