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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: gifvsrc.cpp,v 1.2.24.1 2004/07/09 01:54:22 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 "giffdll.ver"
  50. #include "hxcom.h"
  51. #include "hxtypes.h"
  52. #include "hxcomm.h"
  53. #include "ihxpckts.h"
  54. #include "hxformt.h"
  55. #include "hxplugn.h"
  56. #include "hxvsrc.h"  /*IHXFileViewSource*/
  57. #include "ihxfgbuf.h"
  58. #include "chxfgbuf.h"
  59. #include "growingq.h" /*CHXFragmentedBuffer*/
  60. #include "hxassert.h"
  61. #include "baseobj.h"
  62. #include "gifimage.h"
  63. #include "gifcodec.h"
  64. #include "gifvsrc.h"
  65. #include "vsrcinfo.h"
  66. #include "timerep.h"
  67. const UINT32 INITIAL_QUEUESIZE = 1000;
  68. CGIFViewSource::CGIFViewSource(IUnknown* pContext, 
  69.      IUnknown* pContainer)
  70.     : m_lRefCount(0)
  71.     , m_pContext(NULL)
  72.     , m_pCommonClassFactory(NULL)
  73.     , m_pFileObject(NULL)
  74.     , m_pViewSourceResponse(NULL)
  75.     , m_type(HTML_SOURCE)
  76.     , m_pContainer(NULL)
  77.     , m_ulFileSize(0)
  78.     , m_pFileBuffer(NULL)
  79.     , m_bIsGIF89a(FALSE)
  80.     , m_state(kStateConstructed)
  81.     , m_pViewSourceOptions(NULL)
  82. {
  83.     // XXX we AddRef to ourselves because we are created in
  84.     // a QI call...
  85.     AddRef();
  86.     HX_RELEASE(m_pContext);
  87.     m_pContext = pContext;
  88.     HX_ASSERT(m_pContext != NULL);
  89.     m_pContext->AddRef();
  90.     HX_RELEASE(m_pContainer);
  91.     m_pContainer = pContainer;
  92.     HX_ASSERT(m_pContainer != NULL);
  93.     m_pContainer->AddRef();
  94. };
  95. CGIFViewSource::~CGIFViewSource()
  96. {
  97.     Close();
  98. }
  99. /* *** IUnknown methods *** */
  100. /************************************************************************
  101.  *  Method:
  102.  * IUnknown::QueryInterface
  103.  *  Purpose:
  104.  * Implement this to export the interfaces supported by your 
  105.  * object.
  106.  */
  107. STDMETHODIMP CGIFViewSource::QueryInterface(REFIID riid, void** ppvObj)
  108. {
  109.     if (IsEqualIID(riid, IID_IHXFileViewSource))
  110.     {
  111. AddRef();
  112. *ppvObj = (IHXFileViewSource*)this;
  113. return HXR_OK;
  114.     }
  115.     else if (m_pContainer != NULL)
  116.     {
  117.         // deligate to our container
  118.         return m_pContainer->QueryInterface(riid, ppvObj);
  119.     }
  120.     else if (IsEqualIID(riid, IID_IUnknown))
  121.     {
  122.         AddRef();
  123.         *ppvObj = m_pContainer;
  124.         return HXR_OK;
  125.     }
  126.     *ppvObj = NULL;
  127.     return HXR_NOINTERFACE;
  128. }
  129. /************************************************************************
  130.  *  Method:
  131.  * IUnknown::AddRef
  132.  *  Purpose:
  133.  * Everyone usually implements this the same... feel free to use
  134.  * this implementation.
  135.  */
  136. STDMETHODIMP_(ULONG32) CGIFViewSource::AddRef()
  137. {
  138.     return InterlockedIncrement(&m_lRefCount);
  139. }
  140. /************************************************************************
  141.  *  Method:
  142.  * IUnknown::Release
  143.  *  Purpose:
  144.  * Everyone usually implements this the same... feel free to use
  145.  * this implementation.
  146.  */
  147. STDMETHODIMP_(ULONG32) CGIFViewSource::Release()
  148. {
  149.     if (InterlockedDecrement(&m_lRefCount) > 0)
  150.     {
  151.         return m_lRefCount;
  152.     }
  153.     delete this;
  154.     return 0;
  155. }
  156. /************************************************************************
  157.  * Method:
  158.  *     IHXFileViewSource::Close()
  159.  * Purpose:
  160.  *     Close down...
  161.  */
  162. STDMETHODIMP 
  163. CGIFViewSource::Close()
  164. {
  165.     HX_RELEASE(m_pContext);
  166.     HX_RELEASE(m_pCommonClassFactory);
  167.     HX_RELEASE(m_pContainer);
  168.     HX_RELEASE(m_pFileBuffer);
  169.     HX_RELEASE(m_pViewSourceOptions);
  170.     if ( m_pFileObject != NULL )
  171.     {
  172. m_pFileObject->Close();
  173. HX_RELEASE(m_pFileObject);
  174.     }
  175.     m_state = kStateConstructed;
  176.     
  177.     if ( m_pViewSourceResponse != NULL )
  178.     {
  179. m_pViewSourceResponse->CloseDone(HXR_OK);
  180. HX_RELEASE(m_pViewSourceResponse);
  181.     }
  182.     return HXR_OK;
  183. }
  184. /************************************************************************
  185.  * Method:
  186.  *     IHXFileViewSource::InitViewSource
  187.  * Purpose:
  188.  *     Called by the user to init before a viewsource.
  189.  */
  190. STDMETHODIMP
  191. CGIFViewSource::InitViewSource(IHXFileObject* pFileObject,
  192. IHXFileViewSourceResponse* pResp, SOURCE_TYPE sourceType,
  193. IHXValues* pOptions)
  194. {
  195.     if ( m_state != kStateConstructed )
  196.     {
  197. return HXR_UNEXPECTED;
  198.     }
  199.     HX_ASSERT(pFileObject != NULL);
  200.     HX_ASSERT(pResp != NULL);
  201.     if ( sourceType == HTML_SOURCE )
  202.     {
  203. m_type = HTML_SOURCE;
  204.     }
  205.     else if ( sourceType == RAW_SOURCE )
  206.     {
  207. HX_ASSERT(FALSE);
  208. m_type = RAW_SOURCE;
  209. return HXR_NOTIMPL;
  210.     }
  211.     else
  212.     {
  213. HX_ASSERT(FALSE);
  214. return HXR_UNEXPECTED;
  215.     }
  216.     HX_RELEASE(m_pViewSourceOptions);
  217.     m_pViewSourceOptions = pOptions;
  218.     if ( m_pViewSourceOptions )
  219.     {
  220. m_pViewSourceOptions->AddRef();
  221.     }
  222.     HX_RELEASE(m_pCommonClassFactory);
  223.     HX_RESULT ret = m_pContext->QueryInterface(IID_IHXCommonClassFactory, 
  224. (void**)&m_pCommonClassFactory);
  225.     if ( SUCCEEDED(ret) )
  226.     {
  227. HX_RELEASE(m_pFileObject);
  228. m_pFileObject = pFileObject;
  229. m_pFileObject->AddRef();
  230. HX_RELEASE(m_pViewSourceResponse);
  231. m_pViewSourceResponse = pResp;
  232. m_pViewSourceResponse->AddRef();
  233. m_state = kStateInitFilePending;
  234. ret = m_pFileObject->Init(HX_FILE_READ | HX_FILE_BINARY, this);
  235.     }
  236.     else
  237.     {
  238. pResp->InitDone(HXR_FAIL);
  239.     }
  240.     return ret;
  241. }
  242. /************************************************************************
  243.  * Method:
  244.  *     IHXFileViewSource::GetSource
  245.  * Purpose:
  246.  *     Called to get source html source.  Return the source
  247.  * through m_pViewSourceResoponse
  248.  */
  249. STDMETHODIMP
  250. CGIFViewSource::GetSource()
  251. {
  252.     if ( m_state != kStateReady )
  253.     {
  254. return HXR_UNEXPECTED;
  255.     }
  256.     HX_ASSERT(m_pFileObject != NULL);
  257.     IHXFileStat* pFileStat = NULL;
  258.     HX_RESULT ret = m_pFileObject->QueryInterface(IID_IHXFileStat, 
  259. (void**)&pFileStat);
  260.     if ( SUCCEEDED(ret) )
  261.     {
  262. m_state = kStateStatPending;
  263. ret = pFileStat->Stat(this);
  264.     }
  265.     else
  266.     {
  267. ret = m_pViewSourceResponse->SourceReady(ret, NULL);
  268.     }
  269.     HX_RELEASE(pFileStat);
  270.     return ret;
  271. }
  272. /************************************************************************
  273.  *  Method:
  274.  * IHXStatResponse::StatDone
  275.  */
  276. STDMETHODIMP 
  277. CGIFViewSource::StatDone(HX_RESULT status,  UINT32 ulSize,
  278.     UINT32 ulCreationTime, UINT32 ulAccessTime, UINT32 ulModificationTime,
  279.     UINT32 ulMode)
  280. {
  281.     if ( m_state != kStateStatPending )
  282.     {
  283. return HXR_UNEXPECTED;
  284.     }
  285.     HX_RESULT ret = HXR_OK;
  286.     if ( SUCCEEDED(status) )
  287.     {
  288. HX_ASSERT(m_pViewSourceResponse != NULL);
  289. HX_ASSERT(m_pFileObject != NULL);
  290. m_ulFileSize = ulSize;
  291. m_ulModTime = ulModificationTime;
  292.         // Now we read we only need the first 13 bytes -
  293. m_state = kStateReadPending;
  294.         ret = m_pFileObject->Read(13);
  295.     }
  296.     else
  297.     {
  298. m_state = kStateReady;
  299.   ret = m_pViewSourceResponse->SourceReady(status, NULL);
  300.     }
  301.     return ret;
  302. }
  303. /************************************************************************
  304.  *  Method:
  305.  *    IHXFileResponse::InitDone
  306.  *  Purpose:
  307.  *    Notification interface provided by users of the IHXFileObject
  308.  *    interface. This method is called by the IHXFileObject when the
  309.  *    initialization of the file is complete.
  310.  */
  311. STDMETHODIMP
  312. CGIFViewSource::InitDone( HX_RESULT status )
  313. {
  314.     if ( m_state != kStateInitFilePending )
  315.     {
  316. return HXR_UNEXPECTED;
  317.     }
  318.     HX_ASSERT(m_pViewSourceResponse != NULL);
  319.     m_state = kStateReady;
  320.     return m_pViewSourceResponse->InitDone(status);
  321. }
  322. /************************************************************************
  323.  *  Method:
  324.  * IHXFileResponse::ReadDone
  325.  *  Purpose:
  326.  * Notification interface provided by users of the IHXFileObject
  327.  * interface. This method is called by the IHXFileObject when the
  328.  * last read from the file is complete and a buffer is available.
  329.  */
  330. STDMETHODIMP
  331. CGIFViewSource::ReadDone(HX_RESULT status, 
  332.        IHXBuffer* pBuffer)
  333. {
  334.     if ( m_state != kStateReadPending )
  335.     {
  336. return HXR_UNEXPECTED;
  337.     }
  338.     HX_RESULT result = HXR_OK;
  339.     HX_ASSERT(m_pViewSourceResponse != NULL);
  340.     
  341.     m_state = kStateReady;
  342.     if ( SUCCEEDED(status) )
  343.     {
  344.         // Have we read all we were supposed to?
  345.         if (pBuffer->GetSize() == 13)
  346.         {
  347.     HX_RELEASE(m_pFileBuffer);
  348.     m_pFileBuffer = pBuffer;
  349.     m_pFileBuffer->AddRef();
  350.     IHXBuffer* pReturnBuffer = NULL;
  351.     result = CreateInfoBuffer(pReturnBuffer);
  352.     if ( SUCCEEDED(result) )
  353.     {
  354. result = m_pViewSourceResponse->SourceReady(HXR_OK, 
  355.     pReturnBuffer);
  356.     }
  357.     else
  358.     {
  359. //  don't like the File format 
  360. result = m_pViewSourceResponse->SourceReady(result, 
  361.     NULL);
  362.     }
  363.     HX_RELEASE(pReturnBuffer);
  364.         }
  365.         else
  366.         {
  367.     result = m_pViewSourceResponse->SourceReady(HXR_FAIL,
  368. NULL);
  369.         }
  370.     }
  371.     else
  372.     {
  373. result = m_pViewSourceResponse->SourceReady(status, 
  374.          NULL);
  375.     }
  376.     return result;
  377. }
  378. /************************************************************************
  379.  *  Method:
  380.  * IHXFileResponse::WriteDone
  381.  *  Purpose:
  382.  * Notification interface provided by users of the IHXFileObject
  383.  * interface. This method is called by the IHXFileObject when the
  384.  * last write to the file is complete.
  385.  */
  386. STDMETHODIMP
  387. CGIFViewSource::WriteDone(HX_RESULT status)
  388. {
  389.     // We don't ever write, so we don't expect to get this...
  390.     return HXR_UNEXPECTED;
  391. }
  392. /************************************************************************
  393.  *  Method:
  394.  * IHXFileResponse::SeekDone
  395.  *  Purpose:
  396.  * Notification interface provided by users of the IHXFileObject
  397.  * interface. This method is called by the IHXFileObject when the
  398.  * last seek in the file is complete.
  399.  */
  400. STDMETHODIMP
  401. CGIFViewSource::SeekDone(HX_RESULT status)
  402. {
  403.     return HXR_UNEXPECTED;
  404. }
  405. /************************************************************************
  406.  *  Method:
  407.  * IHXFileResponse::CloseDone
  408.  *  Purpose:
  409.  * Notification interface provided by users of the IHXFileObject
  410.  * interface. This method is called by the IHXFileObject when the
  411.  * close of the file is complete.
  412.  */
  413. STDMETHODIMP
  414. CGIFViewSource::CloseDone(HX_RESULT status)
  415. {
  416.     return HXR_OK;
  417. }
  418. /************************************************************************
  419.  *  Method:
  420.  * CGIFViewSource::CreateInfoBuffer
  421.  */
  422. STDMETHODIMP 
  423. CGIFViewSource::CreateInfoBuffer(REF(IHXBuffer*) pBuffer)
  424. {
  425.     char buf[128]; /* Flawfinder: ignore */
  426.     CGIFCodec::LogicalScreenDescriptor lsd;
  427.     HX_RESULT ret = ParseGif(lsd);
  428.     if ( FAILED(ret) )
  429.     {
  430. return ret;
  431.     }
  432.     CBigByteGrowingQueue queue(INITIAL_QUEUESIZE);
  433.     queue.EnQueue(z_pOpen);
  434.      
  435.     sprintf(buf, z_pImage_ss, z_pGIFGif, z_pGIFGif); /* Flawfinder: ignore */
  436.     queue.EnQueue(buf);
  437.     queue.EnQueue(z_pImageType);
  438.     if ( m_bIsGIF89a )
  439.     {
  440. queue.EnQueue("GIF 89a Image");
  441.     }
  442.     else
  443.     {
  444. queue.EnQueue("GIF 87a Image");
  445.     }
  446.     queue.EnQueue(z_pEndLine);
  447.     
  448.     queue.EnQueue(z_pFileName);
  449.     const char* pFileName;
  450.     m_pFileObject->GetFilename(pFileName);
  451.     queue.EnQueue(pFileName);
  452.     queue.EnQueue(z_pEndLine);
  453.     
  454.     QueueModificationTime(&queue, m_ulModTime);
  455.     QueueFileSize(&queue, m_ulFileSize);
  456.     
  457.     sprintf(buf, z_pImageDimen_ii, lsd.m_ulLogicalScreenWidth, /* Flawfinder: ignore */
  458. lsd.m_ulLogicalScreenHeight);
  459.     queue.EnQueue(buf);
  460.     queue.EnQueue(z_pEndLine);
  461.     sprintf(buf, z_pColorTableBits_i, lsd.m_ulColorTableBits); /* Flawfinder: ignore */
  462.     queue.EnQueue(buf);
  463.     queue.EnQueue(z_pEndLine);
  464.     
  465.     IHXBuffer* pRam = NULL;
  466.     IHXBuffer* pCD = NULL;
  467.     if (m_pViewSourceOptions &&
  468. SUCCEEDED(m_pViewSourceOptions->GetPropertyCString("RamGenURL",
  469. pRam)) && 
  470. SUCCEEDED(m_pViewSourceOptions->GetPropertyCString("CurrentPath",
  471. pCD)) )
  472.     {
  473. queue.EnQueue(z_pRamLink);
  474. queue.EnQueue("<a href ="");
  475. queue.EnQueue((const char*)pRam->GetBuffer());
  476. const char* p = (const char*)pCD->GetBuffer();
  477. if ( *p == '/' )
  478. {
  479.     p++;
  480. }
  481. queue.EnQueue(p);
  482. queue.EnQueue("/");
  483. const char* pFileName;
  484. m_pFileObject->GetFilename(pFileName);
  485. queue.EnQueue(pFileName);
  486. queue.EnQueue("">");
  487. queue.EnQueue((const char*)pRam->GetBuffer());
  488. queue.EnQueue(p);
  489. queue.EnQueue("/");
  490. queue.EnQueue(pFileName);
  491. queue.EnQueue("</a>");
  492. queue.EnQueue(z_pEndLine);
  493.     }
  494.     HX_RELEASE(pRam);
  495.     HX_RELEASE(pCD);
  496.     queue.EnQueue((void*)z_pClose, strlen(z_pClose));
  497.     HX_RELEASE(pBuffer);
  498.     m_pCommonClassFactory->CreateInstance(IID_IHXBuffer, (void**)&pBuffer);
  499.     if ( !pBuffer )
  500.     {
  501. return HXR_OUTOFMEMORY;
  502.     }
  503.     if ( FAILED(pBuffer->SetSize(queue.GetQueuedItemCount())) )
  504.     {
  505. HX_RELEASE(pBuffer);
  506. return HXR_OUTOFMEMORY;
  507.     }
  508.     unsigned char* chr = pBuffer->GetBuffer();
  509.     queue.DeQueue(chr, queue.GetQueuedItemCount());
  510.     return HXR_OK;
  511. }
  512. /************************************************************************
  513.  *  Method:
  514.  * CGIFViewSource::ParseGif
  515.  */
  516. STDMETHODIMP
  517. CGIFViewSource::ParseGif(REF(CGIFCodec::LogicalScreenDescriptor) lsd)
  518. {
  519.     HX_RESULT retVal = HXR_OK;
  520.     if ( m_pFileBuffer )
  521.     {
  522.         // Get the buffer (this causes the initial gather)
  523.         BYTE* pBuf = m_pFileBuffer->GetBuffer();
  524.         if (pBuf)
  525.         {
  526.     UINT32 ulBufSize = m_pFileBuffer->GetSize();
  527.     if ( ulBufSize < 13 )
  528.     {
  529. return HXR_FAIL;
  530.     }
  531.     BYTE  *pBufLimit = pBuf + ulBufSize;
  532.     /* Check the signature */
  533.     if (pBuf[0] != 'G' || pBuf[1] != 'I' || pBuf[2] != 'F')
  534.     {
  535. return HXR_FAIL;
  536.     }
  537.     pBuf += 3;
  538.     /* Check the version */
  539.     if (pBuf[0] == '8' && pBuf[1] == '9' && pBuf[2] == 'a')
  540.     {
  541. m_bIsGIF89a = TRUE;
  542.     }
  543.     else if (pBuf[0] == '8' && pBuf[1] == '7' && pBuf[2] == 'a')
  544.     {
  545. m_bIsGIF89a = FALSE;
  546.     }
  547.     else
  548.     {
  549. return HXR_FAIL;
  550.     }
  551.     pBuf += 3;
  552.     /* Get the logical screen descriptor */
  553.     CGIFCodec::ParseLogicalScreenDescriptor(pBuf, lsd);
  554.         }
  555.         else
  556.         {
  557.             retVal = HXR_FAIL;
  558.         }
  559.     }
  560.     else
  561.     {
  562.         retVal = HXR_UNEXPECTED;
  563.     }
  564.     return retVal;
  565. }