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

Symbian

开发平台:

Visual C++

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