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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: mmfile.h,v 1.1.1.1.50.3 2004/07/09 01:44:42 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 __CWin32MMFile__
  50. #define __CWin32MMFile__
  51. #include "hlxclib/fcntl.h"
  52. #include "unkimp.h"
  53. #include "chxfgbuf.h"
  54. class _CBufferWinMemMapped 
  55.     : public IHXBuffer
  56.     , public CUnknownIMP
  57. {
  58.     DECLARE_UNKNOWN(_CBufferWinMemMapped);
  59. public:
  60.     _CBufferWinMemMapped()
  61. : m_pData(NULL)
  62. , m_ulLength(0)
  63. , m_ulOffset(0)
  64.     {}
  65.     ~_CBufferWinMemMapped()
  66.     {_UnMap();}
  67.     //IHXBuffer
  68.     //
  69.     STDMETHOD(Get)
  70.     (
  71. THIS_
  72. REF(UCHAR*)     pData, 
  73. REF(ULONG32)    ulLength
  74.     )
  75.     {
  76. pData = m_pData+m_ulOffset; 
  77. ulLength = m_ulLength; 
  78. return HXR_OK;
  79.     }
  80.     STDMETHOD(Set)
  81.     (
  82. THIS_
  83. const UCHAR*    pData, 
  84. ULONG32     ulLength
  85.     )
  86.     {
  87. return E_NOTIMPL;
  88.     }
  89.     STDMETHOD(SetSize)
  90.     (
  91. THIS_
  92. ULONG32     ulLength
  93.     )
  94.     {
  95. return E_NOTIMPL;
  96.     }
  97.     STDMETHOD_(ULONG32,GetSize)
  98.     (
  99. THIS
  100.     )
  101.     {
  102. return m_ulLength;
  103.     }
  104.     STDMETHOD_(UCHAR*,GetBuffer)
  105.     (
  106. THIS
  107.     )
  108.     {
  109. return m_pData+m_ulOffset;
  110.     }
  111. private:
  112.     static UINT32 _AllocGran();
  113.     void _UnMap();
  114.     HX_RESULT _SetMapping
  115.     (
  116. HANDLE hfmoFile, 
  117. UINT32 ulOffsetHigh, 
  118. UINT32 ulOffsetLow , 
  119. UINT32 ulLength
  120.     );
  121.     friend class CWin32MMFile;
  122.     UCHAR* m_pData;
  123.     UINT32 m_ulLength;
  124.     UINT32 m_ulOffset;
  125. };
  126. class CWin32MMFile : public CHXDataFile
  127. {
  128. public:
  129.     CWin32MMFile()
  130. : m_hfmoFile(0)
  131. , m_hFile(INVALID_HANDLE_VALUE)
  132. , m_ulPositionHigh(0)
  133. , m_ulPositionLow(0)
  134. , m_ulSizeHigh(0)
  135. , m_ulSizeLow(0)
  136.     {}
  137.     ~CWin32MMFile()
  138.     {Close();}
  139. /*  Create creates a file using the specified mode */
  140.     virtual HX_RESULT Create
  141.     (
  142. const char *filename, 
  143. UINT16 mode, 
  144. BOOL textflag
  145.     );
  146. /*  Open will open a file with the specified permissions */
  147.     virtual HX_RESULT Open
  148.     (
  149. const char *filename, 
  150. UINT16 mode, 
  151. BOOL textflag
  152.     );
  153. /*  Close closes a file */
  154.     virtual HX_RESULT Close (void);
  155.     
  156. /*  Seek moves the current file position to the offset from the fromWhere 
  157.     specifier */
  158.     virtual HX_RESULT Seek (ULONG32 offset, UINT16 fromWhere);
  159. /*  Tell returns the current file position in the ra file */
  160.     virtual ULONG32 Tell (void);
  161. /*  Read reads up to count bytes of data into buf.
  162.     returns the number of bytes read, EOF, or -1 if the read failed */
  163.     virtual ULONG32 Read
  164.     (
  165. char* buf, 
  166. ULONG32 count
  167.     );
  168. /*  Read reads up to ulCount bytes of data into ppbufOut.
  169.     returns a result code */
  170.     virtual HX_RESULT ReadToBuffer
  171.     (
  172. ULONG32 ulCount, 
  173. IHXBuffer** ppbufOut
  174.     );
  175. /*  Write writes up to count bytes of data from buf.
  176.     returns the number of bytes written, or -1 if the write failed */
  177.     virtual ULONG32 Write
  178.     (
  179. const char *buf, 
  180. ULONG32 count
  181.     );
  182. /*  Rewinds the file to the start of the file */
  183.     virtual HX_RESULT Rewind (void);
  184. /*  Return the file descriptor                      */
  185.     virtual INT16 GetFd (void);
  186. /*  Delete deletes a file */
  187.     virtual HX_RESULT Delete
  188.     (
  189. const char *filename
  190.     );
  191. private:
  192.     HANDLE m_hfmoFile;
  193.     HANDLE m_hFile;
  194.     UINT32 m_ulPositionHigh;
  195.     UINT32 m_ulPositionLow;
  196.     UINT32 m_ulSizeHigh;
  197.     UINT32 m_ulSizeLow;
  198. };
  199. #endif //!__CWin32MMFile__