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

Symbian

开发平台:

Visual 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 _MEMPAGER_H_
  36. #define _MEMPAGER_H_
  37. /****************************************************************************
  38.  *  Defines
  39.  */
  40. #ifdef QTCONFIG_SPEED_OVER_SIZE
  41. #define QTMEMPAGER_INLINE inline
  42. #else // QTCONFIG_SPEED_OVER_SIZE
  43. #define QTMEMPAGER_INLINE /**/
  44. #endif // QTCONFIG_SPEED_OVER_SIZE
  45. /****************************************************************************
  46.  *  Includes
  47.  */
  48. #include "hxtypes.h"
  49. #include "hxcom.h"
  50. #include "hxcomm.h"
  51. #include "hxfiles.h"
  52. #include "ihxpckts.h"
  53. typedef _INTERFACE IHXFileSwitcher   IHXFileSwitcher;
  54. /****************************************************************************
  55.  * 
  56.  *  Class:
  57.  * CMemPager
  58.  *
  59.  *  Purpose:
  60.  * Enables paging of file sections into memory
  61.  *
  62.  */
  63. class CMemPager : public IHXFileResponse,
  64.   public IHXThreadSafeMethods
  65. {
  66. public:
  67.     /*
  68.      * Constructor/Destructor
  69.      */
  70.     CMemPager(void);
  71.     /*
  72.      * IUnknown methods
  73.      */
  74.     STDMETHOD(QueryInterface) (THIS_
  75. REFIID riid,
  76. void** ppvObj);
  77.     STDMETHOD_(ULONG32,AddRef) (THIS);
  78.     STDMETHOD_(ULONG32,Release) (THIS);
  79.     /*
  80.      * MemPager methods
  81.      */
  82.     HX_RESULT Init (IUnknown* pSource,
  83.  ULONG32 ulOffset,
  84.  ULONG32 ulSize,
  85.  UINT8** ppBaseVirtualAddr = NULL);
  86.     UINT8* GetBaseVirtualAddr(void)
  87.     {
  88. return m_pBaseVirtualAddr;
  89.     }
  90.     BOOL IsFaulted(void)
  91.     {
  92. return (m_ulFaultedPageSize != 0);
  93.     }
  94.     BOOL IsPageIn (UINT8* pVirtualAddr,
  95.    ULONG32 ulSize)
  96.     {
  97. return ((pVirtualAddr >= m_pPageVirtualAddr) &&
  98. ((m_pPageVirtualAddr + m_ulPageSize) >= (pVirtualAddr + ulSize)));
  99.     }
  100.     BOOL IsPageAdressable (UINT8* pVirtualAddr,
  101.    ULONG32 ulSize)
  102.     {
  103. return ((pVirtualAddr >= m_pBaseVirtualAddr) &&
  104. ((m_pBaseVirtualAddr + m_ulAddrSpaceSize) >= (pVirtualAddr + ulSize)));
  105.     }
  106.     QTMEMPAGER_INLINE HX_RESULT PageIn(UINT8* pVirtualAddr,
  107.        ULONG32 ulSize,
  108.        UINT8* &pPhysicalBaseAddr);
  109.     QTMEMPAGER_INLINE HX_RESULT LoadPage(IHXFileResponse* pResponse);
  110.     /*
  111.      * IHXFileResponse methods
  112.      */
  113.     STDMETHOD(InitDone) (THIS_
  114. HX_RESULT status);
  115.     STDMETHOD(CloseDone) (THIS_
  116. HX_RESULT status);
  117.     STDMETHOD(ReadDone) (THIS_ 
  118. HX_RESULT status,
  119. IHXBuffer* pBuffer);
  120.     STDMETHOD(WriteDone) (THIS_ 
  121. HX_RESULT status);
  122.     STDMETHOD(SeekDone) (THIS_ 
  123. HX_RESULT status);
  124.     /*
  125.      *  IHXThreadSafeMethods method
  126.      */
  127.    STDMETHOD_(UINT32,IsThreadSafe) (THIS);
  128. private:
  129.     typedef enum
  130.     {
  131. MEMPGR_Offline,
  132. MEMPGR_Ready,
  133. MEMPGR_ProcLoad
  134.     } MemPagerState;
  135.     void Reset(void);
  136.     HX_RESULT _PageIn(UINT8* pVirtualAddr,
  137.       ULONG32 ulSize,
  138.       UINT8* &pPhysicalBaseAddr);
  139.     inline void ReleasePage(void);
  140.     HX_RESULT _LoadPage(void);
  141.     inline HX_RESULT HandleResponse(HX_RESULT status, 
  142.     IHXBuffer* pBuffer = NULL);
  143.     IHXFileSwitcher* m_pFileSwitcher;
  144.     IHXFileResponse* m_pResponse;
  145.     MemPagerState m_State;
  146.     UINT8* m_pPageVirtualAddr;
  147.     UINT8* m_pPagePhysicalAddr;
  148.     ULONG32 m_ulPageSize;
  149.     UINT8* m_pFaultedPageVirtualAddr;
  150.     ULONG32 m_ulFaultedPageSize;
  151.     ULONG32 m_ulAddrSpaceOffset;
  152.     ULONG32 m_ulAddrSpaceSize;
  153.     ULONG32 m_ulMinPageSize;
  154.     UINT8* m_pBaseVirtualAddr;
  155.     BOOL m_bSyncMode;
  156.     IHXBuffer* m_pPageBuffer;
  157.     LONG32 m_lRefCount;
  158.     ~CMemPager();
  159.     PRIVATE_DESTRUCTORS_ARE_NOT_A_CRIME
  160. };
  161. #ifdef QTCONFIG_SPEED_OVER_SIZE
  162. #include "mempager_inline.h"
  163. #endif // QTCONFIG_SPEED_OVER_SIZE
  164. #endif  // _MEMPAGER_H_