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

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