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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: shadvsrc.cpp,v 1.1.26.1 2004/07/09 01:57:20 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 "smlffpln.ver"
  50. #include "hxtypes.h"
  51. #include "hxcom.h"
  52. #include "hxcomm.h"
  53. #include "ihxpckts.h"
  54. #include "hxformt.h"
  55. #include "hxvsrc.h"  /*IHXFileViewSource*/
  56. #include "chxfgbuf.h"  /*CHXFragmentedBuffer*/
  57. #include "shadvsrc.h"
  58. #include "escsmil.h" /* CEscapeSMIL */
  59. // as defined in smlffpln.cpp
  60. static const UINT32 FileChunkSize = 10000; //XXXBAB adjust
  61. CShadowViewSource::CShadowViewSource(IUnknown* pContext, 
  62.      IUnknown* pContainer)
  63.     : m_lRefCount(0)
  64.     , m_pContext(NULL)
  65.     , m_pCommonClassFactory(NULL)
  66.     , m_pFileObject(NULL)
  67.     , m_pViewSourceResponse(NULL)
  68.     , m_type(HTML_SOURCE)
  69.     , m_pBuffer(NULL)
  70.     , m_pContainer(NULL)
  71.     , m_pOptions(NULL)
  72. {
  73.     m_pContext = pContext;
  74.     HX_ASSERT(m_pContext != NULL);
  75.     m_pContext->AddRef();
  76.     m_pContainer = pContainer;
  77.     HX_ASSERT(m_pContainer != NULL);
  78.     m_pContainer->AddRef();
  79. };
  80. CShadowViewSource::~CShadowViewSource()
  81. {
  82.     Close();
  83. }
  84. /* *** IUnknown methods *** */
  85. /************************************************************************
  86.  *  Method:
  87.  * IUnknown::QueryInterface
  88.  *  Purpose:
  89.  * Implement this to export the interfaces supported by your 
  90.  * object.
  91.  */
  92. STDMETHODIMP CShadowViewSource::QueryInterface(REFIID riid, void** ppvObj)
  93. {
  94.     if (IsEqualIID(riid, IID_IHXFileViewSource))
  95.     {
  96. AddRef();
  97. *ppvObj = (IHXFileViewSource*)this;
  98. return HXR_OK;
  99.     }
  100.     else if (m_pContainer != NULL)
  101.     {
  102.         // deligate to our container
  103.         return m_pContainer->QueryInterface(riid, ppvObj);
  104.     }
  105.     else if (IsEqualIID(riid, IID_IUnknown))
  106.     {
  107.         AddRef();
  108.         *ppvObj = m_pContainer;
  109.         return HXR_OK;
  110.     }
  111.     *ppvObj = NULL;
  112.     // deligate to our container
  113.     return HXR_NOINTERFACE;
  114. }
  115. /************************************************************************
  116.  *  Method:
  117.  * IUnknown::AddRef
  118.  *  Purpose:
  119.  * Everyone usually implements this the same... feel free to use
  120.  * this implementation.
  121.  */
  122. STDMETHODIMP_(ULONG32) CShadowViewSource::AddRef()
  123. {
  124.     return InterlockedIncrement(&m_lRefCount);
  125. }
  126. /************************************************************************
  127.  *  Method:
  128.  * IUnknown::Release
  129.  *  Purpose:
  130.  * Everyone usually implements this the same... feel free to use
  131.  * this implementation.
  132.  */
  133. STDMETHODIMP_(ULONG32) CShadowViewSource::Release()
  134. {
  135.     if (InterlockedDecrement(&m_lRefCount) > 0)
  136.     {
  137.         return m_lRefCount;
  138.     }
  139.     delete this;
  140.     return 0;
  141. }
  142. /************************************************************************
  143.  * Method:
  144.  *     IHXFileViewSource::Close()
  145.  * Purpose:
  146.  *     Close down...
  147.  */
  148. STDMETHODIMP 
  149. CShadowViewSource::Close()
  150. {
  151.     HX_RELEASE(m_pContext);
  152.     HX_RELEASE(m_pCommonClassFactory);
  153.     HX_RELEASE(m_pOptions);
  154.     if (m_pFileObject)
  155.     {
  156. m_pFileObject->Close();
  157. HX_RELEASE(m_pFileObject);
  158.     }
  159.     HX_RELEASE(m_pBuffer);
  160.     HX_RELEASE(m_pContainer);
  161.     if ( m_pViewSourceResponse != NULL )
  162.     {
  163. m_pViewSourceResponse->CloseDone(HXR_OK);
  164. HX_RELEASE(m_pViewSourceResponse);
  165.     }
  166.     return HXR_OK;
  167. }
  168. /************************************************************************
  169.  * Method:
  170.  *     IHXFileViewSource::InitViewSource
  171.  * Purpose:
  172.  *     Called by the user to init before a viewsource.
  173.  */
  174. STDMETHODIMP
  175. CShadowViewSource::InitViewSource(
  176. IHXFileObject* pFileObject,
  177. IHXFileViewSourceResponse* pResp,
  178. SOURCE_TYPE sourceType,
  179. IHXValues* pOptions)
  180. {
  181.     if ( sourceType == HTML_SOURCE )
  182.     {
  183. m_type = HTML_SOURCE;
  184.     }
  185.     else if ( sourceType == RAW_SOURCE )
  186.     {
  187. m_type = RAW_SOURCE;
  188.     }
  189.     else
  190.     {
  191. HX_ASSERT(FALSE);
  192. return HXR_UNEXPECTED;
  193.     }
  194.     HX_RELEASE(m_pCommonClassFactory);
  195.     HX_RESULT ret = m_pContext->QueryInterface(IID_IHXCommonClassFactory, 
  196. (void**)&m_pCommonClassFactory);
  197.     if ( !SUCCEEDED(ret) )
  198.     {
  199. return ret;
  200.     }
  201.     HX_ASSERT(pResp != NULL);
  202.     
  203.     HX_RELEASE(m_pOptions);
  204.     m_pOptions = pOptions;
  205.     m_pOptions->AddRef();
  206.     HX_RELEASE(m_pViewSourceResponse);
  207.     m_pViewSourceResponse = pResp;
  208.     m_pViewSourceResponse->AddRef();
  209.     if ( m_pFileObject != NULL )
  210.     {
  211. m_pFileObject->Close();
  212.         HX_RELEASE(m_pFileObject);
  213.     }
  214.     m_pFileObject = pFileObject;
  215.     HX_ASSERT(m_pFileObject != NULL);
  216.     m_pFileObject->AddRef();
  217.     IHXFileStat* pStat = NULL;
  218.     if ( SUCCEEDED(m_pFileObject->QueryInterface(IID_IHXFileStat, 
  219. (void**)&pStat)) )
  220.     {
  221. pStat->Stat(this);
  222.     }
  223.     HX_RELEASE(pStat);
  224.     return HXR_OK;
  225. }
  226. STDMETHODIMP
  227. CShadowViewSource::StatDone(HX_RESULT status, UINT32 ulSize, UINT32 ulCreationTime,
  228.     UINT32 ulAccessTime, UINT32 ulModificationTime, 
  229.     UINT32 ulMode)
  230. {
  231.     m_pOptions->SetPropertyULONG32("FileSize", ulSize);
  232.     m_pOptions->SetPropertyULONG32("ModificationTime", ulModificationTime);
  233.     IHXBuffer* pName = NULL;
  234.     const char* p = NULL;
  235.     m_pFileObject->GetFilename(p);
  236.     if ( SUCCEEDED(m_pCommonClassFactory->CreateInstance(CLSID_IHXBuffer, 
  237. (void**)&pName)) )
  238.     {
  239. pName->Set((const UCHAR*)p, strlen(p) + 1);
  240.     }
  241.     m_pOptions->SetPropertyCString("FileName", pName);
  242.     HX_RELEASE(pName);
  243.     return m_pFileObject->Init(HX_FILE_READ, this);
  244. }
  245. /************************************************************************
  246.  * Method:
  247.  *     IHXFileViewSource::GetSource
  248.  * Purpose:
  249.  *     Called to get source html source.  Return the source
  250.  * through m_pViewSourceResoponse
  251.  */
  252. STDMETHODIMP
  253. CShadowViewSource::GetSource()
  254. {
  255.     HX_ASSERT(m_pViewSourceResponse != NULL);
  256.     HX_ASSERT(m_pFileObject != NULL);
  257.     return m_pFileObject->Read(FileChunkSize);
  258. }
  259. /************************************************************************
  260.  *  Method:
  261.  *    IHXFileResponse::InitDone
  262.  *  Purpose:
  263.  *    Notification interface provided by users of the IHXFileObject
  264.  *    interface. This method is called by the IHXFileObject when the
  265.  *    initialization of the file is complete.
  266.  */
  267. STDMETHODIMP CShadowViewSource::InitDone( HX_RESULT status )
  268. {
  269.     HX_ASSERT(m_pViewSourceResponse != NULL);
  270.     return m_pViewSourceResponse->InitDone(status);
  271. }
  272. /************************************************************************
  273.  *  Method:
  274.  * IHXFileResponse::ReadDone
  275.  *  Purpose:
  276.  * Notification interface provided by users of the IHXFileObject
  277.  * interface. This method is called by the IHXFileObject when the
  278.  * last read from the file is complete and a buffer is available.
  279.  */
  280. STDMETHODIMP CShadowViewSource::ReadDone(HX_RESULT status, 
  281.        IHXBuffer* pBuffer)
  282. {
  283.     HX_RESULT result = HXR_OK;
  284.     if ( m_pBuffer == NULL )
  285.     {
  286. m_pBuffer = new CHXFragmentedBuffer();
  287. if ( m_pBuffer == NULL )
  288. {
  289.     return HXR_OUTOFMEMORY;
  290. }
  291. m_pBuffer->AddRef();
  292. m_pBuffer->Set(pBuffer->GetBuffer(), pBuffer->GetSize());
  293.     }
  294.     else // we are in a recursion...
  295.     {
  296. // guard against a unneeded recursion in the case that our file size was
  297. // an exact multiple of FileChunkSize
  298. if ( pBuffer != NULL )
  299. {
  300.     m_pBuffer->Append(pBuffer, 0, pBuffer->GetSize());
  301. }
  302.     }
  303.     if ( pBuffer->GetSize() == FileChunkSize )
  304.     {
  305. m_pFileObject->Read(FileChunkSize); //XXXBAB recursive!!!
  306.     }
  307.     else
  308.     {
  309. HX_ASSERT(m_pViewSourceResponse != NULL);
  310. if ( SUCCEEDED(result) )
  311. {
  312.     if ( m_type == HTML_SOURCE )
  313.     {
  314. CEscapeSMIL smilParser(m_pOptions);
  315. IHXBuffer* pTheStuff = NULL;
  316. if ( SUCCEEDED(smilParser.Convert(m_pBuffer, pTheStuff)) )
  317. {
  318.          result = m_pViewSourceResponse->SourceReady(HXR_OK,
  319. pTheStuff);
  320. }
  321. else
  322. {
  323.     result = m_pViewSourceResponse->SourceReady(HXR_FAIL, NULL);
  324. }
  325. HX_RELEASE(pTheStuff);
  326.     }
  327.     else
  328.     {
  329. result = m_pViewSourceResponse->SourceReady(HXR_OK, m_pBuffer);
  330.     }
  331. }
  332. else
  333. {
  334.     result = m_pViewSourceResponse->SourceReady(HXR_FAIL, NULL);
  335. }
  336.     }
  337.     return result;
  338. }
  339. /************************************************************************
  340.  *  Method:
  341.  * IHXFileResponse::WriteDone
  342.  *  Purpose:
  343.  * Notification interface provided by users of the IHXFileObject
  344.  * interface. This method is called by the IHXFileObject when the
  345.  * last write to the file is complete.
  346.  */
  347. STDMETHODIMP CShadowViewSource::WriteDone(HX_RESULT status)
  348. {
  349.     // We don't ever write, so we don't expect to get this...
  350.     return HXR_UNEXPECTED;
  351. }
  352. /************************************************************************
  353.  *  Method:
  354.  * IHXFileResponse::SeekDone
  355.  *  Purpose:
  356.  * Notification interface provided by users of the IHXFileObject
  357.  * interface. This method is called by the IHXFileObject when the
  358.  * last seek in the file is complete.
  359.  */
  360. STDMETHODIMP CShadowViewSource::SeekDone(HX_RESULT status)
  361. {
  362.     return HXR_OK;
  363. }
  364. /************************************************************************
  365.  *  Method:
  366.  * IHXFileResponse::CloseDone
  367.  *  Purpose:
  368.  * Notification interface provided by users of the IHXFileObject
  369.  * interface. This method is called by the IHXFileObject when the
  370.  * close of the file is complete.
  371.  */
  372. STDMETHODIMP CShadowViewSource::CloseDone(HX_RESULT status)
  373. {
  374.     return HXR_OK;
  375. }