fswtchr_passthrough.cpp
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:11k
源码类别:

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.  *  Includes
  37.  */
  38. #include "fswtchr_passthrough.h"
  39. #include "hxassert.h"
  40. #include "qtffrefcounter.h"
  41. /****************************************************************************
  42.  *  Class CFileSwitcherPassthrough
  43.  */
  44. /****************************************************************************
  45.  *  Constructor/Destructor
  46.  */
  47. CFileSwitcherPassthrough::CFileSwitcherPassthrough(void)
  48.     : m_pFileObject(NULL)
  49.     , m_pResponse(NULL)
  50.     , m_State(FSWCHR_Offline)
  51.     , m_lRefCount(0)
  52. {
  53.     g_nRefCount_qtff++;
  54. }
  55. CFileSwitcherPassthrough::~CFileSwitcherPassthrough()
  56. {
  57.     Reset();
  58.     g_nRefCount_qtff--;
  59. }
  60. /****************************************************************************
  61.  *  IHXFileSwitcher private methods
  62.  */
  63. /****************************************************************************
  64.  *  Reset
  65.  */
  66. void CFileSwitcherPassthrough::Reset(void)
  67. {
  68.     HX_RELEASE(m_pResponse);
  69.     HX_RELEASE(m_pFileObject);
  70. }
  71. /****************************************************************************
  72.  *  IHXFileSwitcher methods - Main interface
  73.  */
  74. /****************************************************************************
  75.  *  Init
  76.  */
  77. STDMETHODIMP CFileSwitcherPassthrough::Init(IHXFileObject* pFileObject,
  78.     ULONG32 ulFlags,
  79.     IHXFileResponse* pResponse,
  80.     IUnknown* pContext,
  81.     UINT16 uMaxChildCount)
  82. {
  83.     HX_RESULT retVal = HXR_OK;
  84.     if (m_State != FSWCHR_Offline)
  85.     {
  86. retVal = HXR_UNEXPECTED;
  87.     }
  88.     HX_ASSERT(pFileObject);
  89.     HX_ASSERT(pResponse);
  90.     m_pFileObject = pFileObject;
  91.     retVal = HXR_FAIL;
  92.     if (m_pFileObject)
  93.     {
  94. m_pFileObject->AddRef();
  95. retVal = HXR_OK;
  96.     }
  97.     if (SUCCEEDED(retVal))
  98.     {
  99. m_pResponse = pResponse;
  100. m_pResponse->AddRef();
  101. m_State = FSWCHR_ProcInit;
  102. retVal = pFileObject->Init(ulFlags, (IHXFileResponse*) this);
  103.         if( retVal != HXR_OK )
  104.         {
  105.             HandleFailureSync();
  106.         }
  107.     }
  108.     return retVal;
  109. }
  110. /****************************************************************************
  111.  *  Read
  112.  */
  113. STDMETHODIMP CFileSwitcherPassthrough::Read(ULONG32 ulSize,
  114.     IHXFileResponse* pResponse,
  115.     const char* pFileName)
  116. {
  117.     HX_RESULT retVal = HXR_UNEXPECTED;
  118.     if ((m_State == FSWCHR_Ready) && !pFileName)
  119.     {
  120. HX_ASSERT(!m_pResponse);
  121. m_pResponse = pResponse;
  122. m_pResponse->AddRef();
  123. m_State = FSWCHR_ProcRead;
  124. retVal = m_pFileObject->Read(ulSize);
  125.         if( retVal != HXR_OK )
  126.         {
  127.     HandleFailureSync();
  128.         }
  129.     }
  130.     return retVal;
  131. }
  132. /****************************************************************************
  133.  *  Write
  134.  */
  135. STDMETHODIMP CFileSwitcherPassthrough::Write(IHXBuffer* pBuffer,
  136.      IHXFileResponse* pResponse,
  137.      const char* pFileName)
  138. {
  139.     return HXR_NOTIMPL;
  140. }
  141. /****************************************************************************
  142.  *  Seek
  143.  */
  144. STDMETHODIMP CFileSwitcherPassthrough::Seek(ULONG32 ulOffset,
  145.     BOOL bRelative,
  146.     IHXFileResponse* pResponse,
  147.     const char* pFileName)
  148. {
  149.     HX_RESULT retVal = HXR_UNEXPECTED;
  150.     if ((m_State == FSWCHR_Ready) && !pFileName)
  151.     {
  152. HX_ASSERT(!m_pResponse);
  153. m_pResponse = pResponse;
  154. m_pResponse->AddRef();
  155. m_State = FSWCHR_ProcSeek;
  156. retVal = m_pFileObject->Seek(ulOffset, bRelative);
  157.         if( retVal != HXR_OK )
  158.         {
  159.     HandleFailureSync();
  160.         }
  161.     }
  162.     return retVal;
  163. }
  164. /****************************************************************************
  165.  *  Advise
  166.  */
  167. STDMETHODIMP CFileSwitcherPassthrough::Advise(ULONG32 ulInfo,
  168.       const char* pFileName)
  169. {
  170.     HX_RESULT retVal = HXR_UNEXPECTED;
  171.     if ((m_State == FSWCHR_Ready) && !pFileName)
  172.     {
  173. HX_ASSERT(!m_pResponse);
  174. retVal = m_pFileObject->Advise(ulInfo);
  175.     }
  176.     return retVal;
  177. }
  178. /****************************************************************************
  179.  *  Close
  180.  */
  181. STDMETHODIMP CFileSwitcherPassthrough::Close(IHXFileResponse *pResponse,
  182.      const char* pFileName)
  183. {
  184.     HX_RESULT retVal = HXR_UNEXPECTED;
  185.     if ((m_State != FSWCHR_Offline) && !pFileName)
  186.     {
  187. HX_ASSERT(!m_pResponse);
  188. m_pResponse = pResponse;
  189. m_pResponse->AddRef();
  190. m_State = FSWCHR_ProcClose;
  191. retVal = m_pFileObject->Close();
  192.     }
  193.     return retVal;
  194. }
  195. /****************************************************************************
  196.  *  IHXFileResponse methods
  197.  */
  198. /****************************************************************************
  199.  *  InitDone
  200.  */
  201. STDMETHODIMP CFileSwitcherPassthrough::InitDone(HX_RESULT status)
  202. {
  203.     HX_RESULT retVal = HXR_OK;
  204.     if (m_State == FSWCHR_ProcInit)
  205.     {
  206. // Initialization complete
  207. IHXFileResponse* pResponse = m_pResponse;
  208. HX_ASSERT(pResponse);
  209. m_pResponse = NULL;
  210. if (SUCCEEDED(status))
  211. {
  212.     m_State = FSWCHR_Ready;
  213. }
  214. retVal = pResponse->InitDone(status);
  215. pResponse->Release();
  216.     }
  217.     return retVal;
  218. }
  219. /****************************************************************************
  220.  *  CloseDone
  221.  */
  222. STDMETHODIMP CFileSwitcherPassthrough::CloseDone(HX_RESULT status)
  223. {
  224.     HX_RESULT retVal = HXR_UNEXPECTED;
  225.     if (m_State == FSWCHR_ProcClose)
  226.     {
  227. // Close completion
  228. IHXFileResponse* pResponse = m_pResponse;
  229. HX_ASSERT(pResponse);
  230. m_pResponse = NULL;
  231. Reset();
  232. m_State = FSWCHR_Offline;
  233. retVal = pResponse->CloseDone(status);
  234. pResponse->Release();
  235.     }
  236.     return retVal;
  237. }
  238. /****************************************************************************
  239.  *  ReadDone
  240.  */
  241. STDMETHODIMP CFileSwitcherPassthrough::ReadDone(HX_RESULT status,
  242. IHXBuffer* pBuffer)
  243. {
  244.     HX_RESULT retVal = HXR_UNEXPECTED;
  245.     if (m_State == FSWCHR_ProcRead)
  246.     {
  247. // Close completion
  248. IHXFileResponse* pResponse = m_pResponse;
  249. HX_ASSERT(pResponse);
  250. m_pResponse = NULL;
  251. m_State = FSWCHR_Ready;
  252. retVal = pResponse->ReadDone(status, pBuffer);
  253. pResponse->Release();
  254.     }
  255.     return retVal;
  256. }
  257. /****************************************************************************
  258.  *  WriteDone
  259.  */
  260. STDMETHODIMP CFileSwitcherPassthrough::WriteDone(HX_RESULT status)
  261. {
  262.     return HXR_UNEXPECTED;
  263. }
  264. /****************************************************************************
  265.  *  SeekDone
  266.  */
  267. STDMETHODIMP CFileSwitcherPassthrough::SeekDone(HX_RESULT status)
  268. {
  269.     HX_RESULT retVal = HXR_UNEXPECTED;
  270.     if (m_State == FSWCHR_ProcSeek)
  271.     {
  272. IHXFileResponse *pResponse = m_pResponse;
  273. HX_ASSERT(m_pResponse);
  274. m_pResponse = NULL;
  275. m_State = FSWCHR_Ready;
  276. retVal = pResponse->SeekDone(status);
  277. pResponse->Release();
  278.     }
  279.     return retVal;
  280. }
  281. /****************************************************************************
  282.  *  IHXThreadSafeMethods method
  283.  */
  284. /****************************************************************************
  285.  *  IsThreadSafe
  286.  */
  287. STDMETHODIMP_(UINT32)
  288. CFileSwitcherPassthrough::IsThreadSafe()
  289. {
  290.     return HX_THREADSAFE_METHOD_FSR_READDONE;
  291. }
  292. /****************************************************************************
  293.  *  IUnknown methods
  294.  */
  295. /////////////////////////////////////////////////////////////////////////
  296. //  Method:
  297. // IUnknown::QueryInterface
  298. //
  299. STDMETHODIMP CFileSwitcherPassthrough::QueryInterface(REFIID riid, void** ppvObj)
  300. {
  301.     if (IsEqualIID(riid, IID_IHXFileSwitcher))
  302.     {
  303. AddRef();
  304. *ppvObj = (IHXFileSwitcher*) this;
  305. return HXR_OK;
  306.     }
  307.     if (IsEqualIID(riid, IID_IHXFileResponse))
  308.     {
  309. AddRef();
  310. *ppvObj = (IHXFileResponse*) this;
  311. return HXR_OK;
  312.     }
  313.     else if (IsEqualIID(riid, IID_IUnknown))
  314.     {
  315. AddRef();
  316. *ppvObj = this;
  317. return HXR_OK;
  318.     }
  319.     else if (IsEqualIID(riid, IID_IHXThreadSafeMethods))
  320.     {
  321. AddRef();
  322. *ppvObj = (IHXThreadSafeMethods*) this;
  323. return HXR_OK;
  324.     }
  325.     *ppvObj = NULL;
  326.     return HXR_NOINTERFACE;
  327. }
  328. /////////////////////////////////////////////////////////////////////////
  329. //  Method:
  330. // IUnknown::AddRef
  331. //
  332. STDMETHODIMP_(ULONG32) CFileSwitcherPassthrough::AddRef()
  333. {
  334.     return InterlockedIncrement(&m_lRefCount);
  335. }
  336. /////////////////////////////////////////////////////////////////////////
  337. //  Method:
  338. // IUnknown::Release
  339. //
  340. STDMETHODIMP_(ULONG32) CFileSwitcherPassthrough::Release()
  341. {
  342.     if (InterlockedDecrement(&m_lRefCount) > 0)
  343.     {
  344.         return m_lRefCount;
  345.     }
  346.     delete this;
  347.     return 0;
  348. }
  349. /****************************************************************************
  350.  *  HandleFailureSync
  351.  */
  352. void CFileSwitcherPassthrough::HandleFailureSync()
  353. {
  354.     // Synchronous failures may occur during Read, Seek, or Init.
  355.     HX_RELEASE(m_pResponse);
  356.     if (m_State == FSWCHR_ProcInit)
  357.     {
  358. m_State = FSWCHR_Offline;
  359.     }
  360.     else
  361.     {
  362. m_State = FSWCHR_Ready;
  363.     }
  364.     return;
  365. }