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