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

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 _FSWTCHR_H_
  36. #define _FSWTCHR_H_
  37. #ifdef QTCONFIG_FSWITCHER
  38. /****************************************************************************
  39.  *  Defines
  40.  */
  41. /****************************************************************************
  42.  *  Includes
  43.  */
  44. #include "hlxclib/string.h"
  45. #include "hxfswch.h"
  46. #include "hxcomm.h"
  47. /****************************************************************************
  48.  * 
  49.  *  Class:
  50.  * CFileSwitcher
  51.  *
  52.  *  Purpose:
  53.  * Enables use of multiple files by multiple client objects.
  54.  *
  55.  */
  56. class CFileSwitcher : public IHXFileSwitcher,
  57. public IHXFileResponse,
  58. public IHXThreadSafeMethods,
  59. public IHXGetFileFromSamePoolResponse,
  60. public IHXCallback
  61. {
  62. public:
  63.     /*
  64.      * Constructor/Destructor
  65.      */
  66.     CFileSwitcher(void);
  67.     /*
  68.      * IUnknown methods
  69.      */
  70.     STDMETHOD(QueryInterface) (THIS_
  71. REFIID riid,
  72. void** ppvObj);
  73.     STDMETHOD_(ULONG32,AddRef) (THIS);
  74.     STDMETHOD_(ULONG32,Release) (THIS);
  75.     /*
  76.      * IHXFileSwitcher methods
  77.      */
  78.     STDMETHOD(Init) (THIS_
  79. IHXFileObject* pFileObject,
  80. ULONG32 ulFlags,
  81. IHXFileResponse* pResponse,
  82. IUnknown* pContext,
  83. UINT16 uMaxChildCount);
  84.     STDMETHOD(Read) (THIS_
  85. ULONG32 ulSize,
  86. IHXFileResponse* pResponse,
  87. const char* pFileName = NULL);
  88.     STDMETHOD(Write) (THIS_
  89. IHXBuffer* pBuffer,
  90. IHXFileResponse* pResponse,
  91. const char* pFileName = NULL);
  92.     STDMETHOD(Seek) (THIS_
  93. ULONG32 ulOffset,
  94. BOOL bRelative,
  95. IHXFileResponse* pResponse,
  96. const char* pFileName = NULL);
  97.     STDMETHOD(Close) (THIS_
  98. IHXFileResponse *pResponse,
  99. const char* pFileName = NULL);
  100.     STDMETHOD(Advise) (THIS_
  101. ULONG32 ulInfo,
  102. const char* pFileName = NULL);
  103.     /*
  104.      * IHXFileResponse methods
  105.      */
  106.     STDMETHOD(InitDone) (THIS_
  107. HX_RESULT status);
  108.     STDMETHOD(CloseDone) (THIS_
  109. HX_RESULT status);
  110.     STDMETHOD(ReadDone) (THIS_ 
  111. HX_RESULT status,
  112. IHXBuffer* pBuffer);
  113.     STDMETHOD(WriteDone) (THIS_ 
  114. HX_RESULT status);
  115.     STDMETHOD(SeekDone) (THIS_ 
  116. HX_RESULT status);
  117.     /*
  118.      * IHXGetFileFromSamePoolResponse method
  119.      */
  120.     STDMETHOD(FileObjectReady) (THIS_
  121. HX_RESULT status,
  122. IUnknown* pUnknown);
  123.     /*
  124.      *  IHXThreadSafeMethods method
  125.      */
  126.    STDMETHOD_(UINT32,IsThreadSafe) (THIS);
  127.    /*
  128.     *  IHXCallback methods
  129.     */
  130.    STDMETHOD(Func) (THIS);
  131. private:
  132.     typedef enum
  133.     {
  134. FSWCHR_Offline,
  135. FSWCHR_Ready,
  136. FSWCHR_ProcInit,
  137. FSWCHR_ProcRead,
  138. FSWCHR_ProcWrite,
  139. FSWCHR_ProcSeek,
  140. FSWCHR_ProcClose,
  141. FSWCHR_ProcAdvise
  142.     } FileSwitcherState;
  143.     class FileHandle
  144.     {
  145.     public:
  146. FileHandle(void)
  147.     : m_pFileName(NULL)
  148.     , m_pFileObject(NULL) {;}
  149. char* m_pFileName;
  150. IHXFileObject *m_pFileObject;
  151. void Clear(void)
  152. {
  153.     HX_VECTOR_DELETE(m_pFileName);
  154.     HX_RELEASE(m_pFileObject);
  155. }
  156. const char* SetName(const char* pFileName)
  157. {
  158.     ULONG32 ulNameSize;
  159.     HX_VECTOR_DELETE(m_pFileName);
  160.     if (pFileName)
  161.     {
  162. ulNameSize = (ULONG32) (strlen(pFileName) + 1);
  163. m_pFileName = new char [ulNameSize];
  164. if (m_pFileName)
  165. {
  166.     memcpy(m_pFileName, pFileName, ulNameSize); /* Flawfinder: ignore */
  167. }
  168.     }
  169.     return m_pFileName;
  170. }
  171. ~FileHandle()
  172. {
  173.     HX_VECTOR_DELETE(m_pFileName);
  174.     HX_RELEASE(m_pFileObject);
  175. }
  176.     };
  177.     inline void Reset(void);
  178.     HX_RESULT HandleFailureAsync(HX_RESULT status);
  179.     HX_RESULT HandleFailureSync(HX_RESULT status);
  180.     HX_RESULT FileHandleReady(void);
  181.     HX_RESULT GetFileHandle(const char* pFileName);
  182.     HX_RESULT CloseFileHandleObject(FileHandle *pFileHandle);
  183.     inline FileHandle* FindFileHandle(const char* pFileName);
  184.     inline FileHandle* SelectStaleHandle(void);
  185.     inline HX_RESULT ProcessRead(void);
  186.     inline HX_RESULT ReadNextFragment(void);
  187.     BOOL m_bSyncMode;
  188.     UINT16 m_uMaxChildCount;
  189.     UINT16 m_uCurrentChildCount;
  190.     UINT16 m_uLastDisownedChild;
  191.     FileHandle* m_pHandleTable;
  192.     ULONG32 m_ulFlags;
  193.     ULONG32 m_ulSize;
  194.     ULONG32 m_ulChunkSize;
  195.     ULONG32 m_ulProcessedSize;
  196.     ULONG32 m_ulFragmentCount;
  197.     BOOL m_bRelative;
  198.     IHXBuffer* m_pBuffer;
  199.     FileHandle* m_pCurrentHandle;
  200.     IHXFileResponse* m_pResponse;
  201.     IHXCommonClassFactory* m_pClassFactory;
  202.     IHXScheduler* m_pScheduler;
  203.     FileSwitcherState m_State;
  204.     BOOL m_bClosing;
  205.     HX_RESULT m_CloseStatus;
  206.     LONG32 m_lRefCount;
  207.     ~CFileSwitcher();
  208.     PRIVATE_DESTRUCTORS_ARE_NOT_A_CRIME
  209. };
  210. #else // QTCONFIG_FSWITCHER
  211. #include "fswtchr_passthrough.h"
  212. #endif // QTCONFIG_FSWITCHER
  213. #endif  // _FSWTCHR_H_