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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: fileread.cpp,v 1.1.26.1 2004/07/09 01:54:47 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. // include
  50. #include "hxtypes.h"
  51. #include "hxwintyp.h"
  52. #include "hxcom.h"
  53. #include "hxresult.h"
  54. #include "hxcomm.h"
  55. #include "ihxpckts.h"
  56. #include "hxfiles.h"
  57. // hxmisc
  58. #include "baseobj.h"
  59. // pxcomlib
  60. #include "fileread.h"
  61. // hxdebug
  62. #include "errdbg.h"
  63. #include "hxheap.h"
  64. #ifdef _DEBUG
  65. #undef HX_THIS_FILE     
  66. static char HX_THIS_FILE[] = __FILE__;
  67. #endif
  68. CHXFileReader::CHXFileReader()
  69. {
  70.     m_lRefCount           = 0;
  71.     m_pContext            = NULL;
  72.     m_pFileObject         = NULL;
  73.     m_pResponse           = NULL;
  74.     m_pCommonClassFactory = NULL;
  75.     m_ulState             = kStateConstructed;
  76.     m_ulFlags             = 0;
  77.     m_ulCurrentOffset     = 0;
  78.     m_ulReqOffset         = 0;
  79.     m_ulReqNumBytes       = 0;
  80. }
  81. CHXFileReader::~CHXFileReader()
  82. {
  83.     Deallocate();
  84. }
  85. void CHXFileReader::Deallocate()
  86. {
  87.     HX_RELEASE(m_pContext);
  88.     HX_RELEASE(m_pFileObject);
  89.     HX_RELEASE(m_pResponse);
  90.     HX_RELEASE(m_pCommonClassFactory);
  91. }
  92. STDMETHODIMP CHXFileReader::Init(IUnknown*              pContext,
  93.                                  IHXFileObject*        pFileObject,
  94.                                  BOOL                   bCanPreload,
  95.                                  BOOL                   bCanCache,
  96.                                  CHXFileReaderResponse* pResponse)
  97. {
  98.     HX_RESULT retVal = HXR_OK;
  99.     if (pContext && pFileObject && pResponse &&
  100.         !bCanPreload && !bCanCache) // XXXMEH - for now, no preload or caching
  101.     {
  102.         if (m_ulState == kStateConstructed)
  103.         {
  104.             // Save arguments into members
  105.             HX_RELEASE(m_pContext);
  106.             m_pContext = pContext;
  107.             m_pContext->AddRef();
  108.             HX_RELEASE(m_pFileObject);
  109.             m_pFileObject = pFileObject;
  110.             m_pFileObject->AddRef();
  111.             HX_RELEASE(m_pResponse);
  112.             m_pResponse = pResponse;
  113.             m_pResponse->AddRef();
  114.             // Save flags
  115.             if (bCanPreload)
  116.             {
  117.                 m_ulFlags |= kFlagCanPreload;
  118.             }
  119.             if (bCanCache)
  120.             {
  121.                 m_ulFlags |= kFlagCanCache;
  122.             }
  123.             // Get an IHXCommonClassFactory interface
  124.             HX_RELEASE(m_pCommonClassFactory);
  125.             retVal = m_pContext->QueryInterface(IID_IHXCommonClassFactory,
  126.                                                 (void**) &m_pCommonClassFactory);
  127.             if (SUCCEEDED(retVal))
  128.             {
  129.                 // Set the new state
  130.                 m_ulState = kStateInitPending;
  131.                 // Init the file object
  132.                 m_pFileObject->Init(HX_FILE_READ | HX_FILE_BINARY, this);
  133.             }
  134.         }
  135.         else
  136.         {
  137.             retVal = HXR_UNEXPECTED;
  138.         }
  139.     }
  140.     else
  141.     {
  142.         retVal = HXR_INVALID_PARAMETER;
  143.     }
  144.     return retVal;
  145. }
  146. STDMETHODIMP CHXFileReader::Read(UINT32 ulOffset, UINT32 ulNumBytes)
  147. {
  148.     HX_RESULT retVal = HXR_OK;
  149.     if (m_ulState == kStateReady)
  150.     {
  151.         // Save the read information
  152.         m_ulReqOffset   = ulOffset;
  153.         m_ulReqNumBytes = ulNumBytes;
  154.         // Are we already at the right place in the file?
  155.         if (ulOffset != m_ulCurrentOffset)
  156.         {
  157.             // We need to seek to the new offset
  158.             //
  159.             // Set the state
  160.             m_ulState = kStateSeekPending;
  161.             // Call IHXFileObject::Seek()
  162.             m_pFileObject->Seek(ulOffset, FALSE);
  163.         }
  164.         else
  165.         {
  166.             // We're already at the right offset, just read
  167.             //
  168.             // Set the state
  169.             m_ulState = kStateReadPending;
  170.             // Call IHXFileObject::Read()
  171.             m_pFileObject->Read(ulNumBytes);
  172.         }
  173.     }
  174.     else
  175.     {
  176.         retVal = HXR_UNEXPECTED;
  177.     }
  178.     return retVal;
  179. }
  180. STDMETHODIMP CHXFileReader::Shutdown()
  181. {
  182.     HX_RESULT retVal = HXR_OK;
  183.     if (m_pResponse)
  184.     {
  185.         if (m_ulState == kStateConstructed)
  186.         {
  187.             // We haven't Init()'d the file object yet,
  188.             // so there's no need to close it. We can just
  189.             // call back with ShutdownDone(). No need to change
  190.             // the state either
  191.             m_pResponse->ShutdownDone();
  192.         }
  193.         else if (m_ulState == kStateReady)
  194.         {
  195.             // No pending callback, but we do need to close
  196.             // the file.
  197.             //
  198.             // Set the state
  199.             m_ulState = kStateClosePending;
  200.             // Close the file
  201.             m_pFileObject->Close();
  202.         }
  203.         else if (m_ulState == kStateInitPending ||
  204.                  m_ulState == kStateSeekPending ||
  205.                  m_ulState == kStateReadPending)
  206.         {
  207.             // We are awaiting a callback when we got this 
  208.             // Shutdown(). Therefore, we will go ahead and call
  209.             // Close() on the file object, and then make sure
  210.             // we don't do anything in these callbacks.
  211.             //
  212.             // Set the state
  213.             m_ulState = kStateClosePending;
  214.             //
  215.             m_pFileObject->Close();
  216.         }
  217.         else if (m_ulState == kStateClosePending)
  218.         {
  219.             // We got a Shutdown() while after we had already called
  220.             // Close() on the file object. Nothing to do here
  221.             // since we will call ShutdownDone() already after we
  222.             // get the CloseDone().
  223.         }
  224.         else
  225.         {
  226.             // Unknown state
  227.             retVal = HXR_UNEXPECTED;
  228.         }
  229.     }
  230.     else
  231.     {
  232.         retVal = HXR_UNEXPECTED;
  233.     }
  234.     return retVal;
  235. }
  236. STDMETHODIMP CHXFileReader::QueryInterface(REFIID riid, void** ppvObj)
  237. {
  238.     HX_RESULT retVal = HXR_OK;
  239.     if (IsEqualIID(riid, IID_IUnknown))
  240.     {
  241.         AddRef();
  242.         *ppvObj = this;
  243.     }
  244.     else if (IsEqualIID(riid, IID_IHXFileResponse))
  245.     {
  246.         AddRef();
  247.         *ppvObj = (IHXFileResponse*) this;
  248.     }
  249.     else
  250.     {
  251.         *ppvObj = NULL;
  252.         retVal  = HXR_NOINTERFACE;
  253.     }
  254.     return retVal;
  255. }
  256. STDMETHODIMP_(UINT32) CHXFileReader::AddRef()
  257. {
  258.     return InterlockedIncrement(&m_lRefCount);
  259. }
  260. STDMETHODIMP_(UINT32) CHXFileReader::Release()
  261. {
  262.     
  263.     if (InterlockedDecrement(&m_lRefCount) > 0)
  264.     {
  265.         return m_lRefCount;
  266.     }
  267.     delete this;
  268.     return 0;
  269. }
  270. STDMETHODIMP CHXFileReader::InitDone(HX_RESULT status)
  271. {
  272.     HX_RESULT retVal = HXR_OK;
  273.     if (m_ulState == kStateInitPending)
  274.     {
  275.         // Set the state
  276.         m_ulState  = (SUCCEEDED(status) ? kStateReady : kStateConstructed);
  277.         // Tell the response interface we've initialized
  278.         m_pResponse->InitDone(status);
  279.     }
  280.     else if (m_ulState == kStateClosePending)
  281.     {
  282.         // We got a Shutdown() while we were waiting
  283.         // for the InitDone() callback. Therefore, do 
  284.         // nothing here.
  285.     }
  286.     else
  287.     {
  288.         retVal = HXR_UNEXPECTED;
  289.     }
  290.     return retVal;
  291. }
  292. STDMETHODIMP CHXFileReader::CloseDone(HX_RESULT status)
  293. {
  294.     HX_RESULT retVal = HXR_OK;
  295.     if (m_ulState == kStateClosePending)
  296.     {
  297.         // Set the state
  298.         m_ulState = kStateReady;
  299.         // Tell the response interface that we've shutdown
  300.         m_pResponse->ShutdownDone();
  301.     }
  302.     else
  303.     {
  304.         retVal = HXR_UNEXPECTED;
  305.     }
  306.     return retVal;
  307. }
  308. STDMETHODIMP CHXFileReader::ReadDone(HX_RESULT status, IHXBuffer* pBuffer)
  309. {
  310.     HX_RESULT retVal = HXR_OK;
  311.     if (m_ulState == kStateReadPending)
  312.     {
  313.         // Set the state
  314.         m_ulState = kStateReady;
  315.         // Did we succeed in reading?
  316.         if (SUCCEEDED(status) && pBuffer)
  317.         {
  318.             // We successfully read the number of bytes
  319.             //
  320.             // Update the current offset
  321.             m_ulCurrentOffset += pBuffer->GetSize();
  322.             // Tell the response interface
  323.             m_pResponse->ReadDone(status, pBuffer);
  324.         }
  325.         else
  326.         {
  327.             // We failed to read
  328.             //
  329.             // Tell the response interface
  330.             m_pResponse->ReadDone(status, NULL);
  331.         }
  332.     }
  333.     else if (m_ulState == kStateClosePending)
  334.     {
  335.         // We got a Shutdown() while we were waiting to
  336.         // get this ReadDone() callback. Therefore we do
  337.         // nothing here.
  338.     }
  339.     else
  340.     {
  341.         retVal = HXR_UNEXPECTED;
  342.     }
  343.     return retVal;
  344. }
  345. STDMETHODIMP CHXFileReader::WriteDone(HX_RESULT status)
  346. {
  347.     HX_RESULT retVal = HXR_NOTIMPL;
  348.     return retVal;
  349. }
  350. STDMETHODIMP CHXFileReader::SeekDone(HX_RESULT status)
  351. {
  352.     HX_RESULT retVal = HXR_OK;
  353.     if (m_ulState == kStateSeekPending)
  354.     {
  355.         if (SUCCEEDED(status))
  356.         {
  357.             // We successfully seeked - update the current offset
  358.             m_ulCurrentOffset = m_ulReqOffset;
  359.             // Set the state
  360.             m_ulState = kStateReadPending;
  361.             // Now read the saved number of bytes
  362.             m_pFileObject->Read(m_ulReqNumBytes);
  363.         }
  364.         else
  365.         {
  366.             // We failed to seek
  367.             //
  368.             // Set the state
  369.             m_ulState = kStateReady;
  370.             // Tell the response interface
  371.             m_pResponse->ReadDone(status, NULL);
  372.         }
  373.     }
  374.     else if (m_ulState == kStateClosePending)
  375.     {
  376.         // We got a Shutdown() while we were waiting on
  377.         // this SeekDone() callback. Therefore, do nothing
  378.         // here.
  379.     }
  380.     else
  381.     {
  382.         retVal = HXR_UNEXPECTED;
  383.     }
  384.     return retVal;
  385. }