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

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. /****************************************************************************
  36.  * 
  37.  *  Interface:
  38.  * 
  39.  * IHXFileSystemManager
  40.  * 
  41.  *  Purpose:
  42.  * 
  43.  *      Gives out File Objects based on URLs
  44.  * 
  45.  *  IID_IHXFileSystemManager:
  46.  *  
  47.  * {00000207-61DF-11d0-9CEE-080017035B43}
  48.  * 
  49.  */
  50. #ifndef _RMAFSMANAGER
  51. #define _RMAFSMANAGER
  52. struct IHXFileSystemManager;
  53. struct IHXFileSystemManagerResponse;
  54. struct IHXGetFileFromSamePoolResponse;
  55. struct IHXScheduler;
  56. typedef enum
  57. {
  58.     e_None = 0,
  59.     e_GetFileObjectPending = 1,
  60.     e_GetRelativeFileObjectPending = 2
  61. } PendingState;
  62. class HXFileSystemManager : public IHXFileSystemManager,
  63.      public IHXGetFileFromSamePoolResponse
  64. {
  65. private:
  66.     LONG32     m_lRefCount;
  67.     IHXFileSystemManagerResponse*  m_pFSManagerResponse;
  68.     IHXGetFileFromSamePool*        m_pSamePool;
  69.     IUnknown*     m_pContext;
  70.     IHXRequest*     m_pRequest;
  71.     ~HXFileSystemManager();
  72.     PRIVATE_DESTRUCTORS_ARE_NOT_A_CRIME
  73. public:
  74.     HXFileSystemManager(IUnknown* pContext);
  75.     /*
  76.      * IUnknown methods
  77.      */
  78.     STDMETHOD(QueryInterface)   (THIS_
  79.                                 REFIID riid,
  80.                                 void** ppvObj);
  81.     STDMETHOD_(ULONG32,AddRef)  (THIS);
  82.     STDMETHOD_(ULONG32,Release) (THIS);
  83.     /*
  84.      * IHXFileSystemManager methods
  85.      */
  86.     /************************************************************************
  87.      * Method:
  88.      *     IHXFileSystemManager::Init
  89.      * Purpose:
  90.      */
  91.     STDMETHOD(Init) (THIS_
  92.     IHXFileSystemManagerResponse* /*IN*/  pFileManagerResponse
  93.     );
  94.     STDMETHOD(GetFileObject)     (THIS_
  95.   IHXRequest* pRequest,
  96.   IHXAuthenticator* pAuthenticator);
  97.     STDMETHOD(GetNewFileObject)  (THIS_
  98.   IHXRequest* pRequest,
  99.   IHXAuthenticator* pAuthenticator);
  100.     STDMETHOD(GetRelativeFileObject) (THIS_
  101.       IUnknown* pOriginalObject,
  102.       const char* pRelativePath);
  103.     STDMETHOD(GetDirObjectFromURL) (THIS_
  104.                                         const char* pURL);
  105.     STDMETHOD(FileObjectReady)          (THIS_
  106.  HX_RESULT status,
  107.  IUnknown* pUnknown);
  108.     // functions to mainatin the list file options of the file system. 
  109.     static void InitMountPoints(IUnknown* pContext);
  110.     static HX_RESULT AddMountPoint(     const char* pszShortName,
  111.     const char* pszMountPoint,
  112.     IHXValues* pOptions,
  113.     IUnknown* pContext);
  114.     static IHXValues* GetOptionsGivenURL(const char* pURL);
  115. #if !defined(HELIX_CONFIG_NOSTATICS)
  116.     static BOOL zm_IsInited;
  117.     static CHXMapStringToOb zm_ShortNameMap;
  118.     static CHXMapStringToOb zm_ProtocolMap;
  119.     static CHXSimpleList zm_CacheList;
  120. #else
  121.     static const BOOL          zm_IsInited;
  122.     static const CHXMapStringToOb* const zm_ShortNameMap;
  123.     static const CHXMapStringToOb* const zm_ProtocolMap;
  124.     static const CHXSimpleList* const    zm_CacheList;
  125. #endif
  126.     class RMAFSManagerCallback : public IHXCallback
  127.     {
  128.     public:
  129. HXFileSystemManager* m_pFSManager;
  130. CallbackHandle m_Handle;
  131. BOOL m_bIsCallbackPending;
  132.     RMAFSManagerCallback(HXFileSystemManager* pFSManager);
  133. /*
  134.  * IUnknown methods
  135.  */
  136. STDMETHOD(QueryInterface) (THIS_
  137. REFIID riid,
  138. void** ppvObj);
  139. STDMETHOD_(ULONG32,AddRef) (THIS);
  140. STDMETHOD_(ULONG32,Release) (THIS);
  141. /*
  142.  * IHXCallback methods
  143.  */
  144. STDMETHOD(Func) (THIS);
  145.     protected:
  146.     ~RMAFSManagerCallback();
  147. PRIVATE_DESTRUCTORS_ARE_NOT_A_CRIME
  148. LONG32 m_lRefCount;
  149.     };
  150.     friend class RMAFSManagerCallback;
  151.     RMAFSManagerCallback*   m_pCallback;
  152.     IHXScheduler*     m_pScheduler;
  153.     PendingState     m_State;
  154.     IUnknown*     m_pOriginalObject;
  155.     char*     m_pRelativePath;
  156.     HX_RESULT ProcessGetRelativeFileObjectPending();
  157.     HX_RESULT ProcessGetFileObjectPending();
  158.     void      ProcessPendingRequest();
  159. };
  160. /*  
  161.     this class is used to cache the IHXValues which were obatined from 
  162.     the server config file. 
  163. */
  164. class CCacheInstance
  165. {
  166. public:
  167.     IUnknown* pInstance;
  168.     CHXString m_mount_point;
  169.     CHXString m_szProtocol;
  170.     CHXString m_szShortName;
  171.     IHXValues* m_pOptions;
  172. };
  173. #endif /*_RMAFSMANAGER*/