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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: smcallbk.cpp,v 1.2.12.1 2004/07/09 01:58:01 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. // system
  50. // include
  51. #include "hxtypes.h"
  52. #include "hxwintyp.h"
  53. #include "hxcom.h"
  54. #include "hxengin.h"
  55. #include "smiltype.h"
  56. #include "hxvport.h"
  57. #include "hxcore.h"
  58. #include "hxclsnk.h"
  59. #include "hxgroup.h"
  60. #include "hxmmrkr.h"
  61. #include "ihxpckts.h"
  62. #include "hxsite2.h"
  63. #include "hxerror.h"
  64. // pncont
  65. #include "hxstring.h"
  66. #include "hxslist.h"
  67. // rmasmil
  68. #include "smlelem.h"
  69. // smlrendr
  70. #include "evnthook.h"
  71. #include "siteuser.h"
  72. #include "passivsw.h"
  73. #include "layout.h"
  74. #include "smcallbk.h"
  75. #include "hxinter.h" // smldoc.h dependency
  76. #include "smldoc.h"
  77. // pndebug
  78. #include "hxheap.h"
  79. #ifdef _DEBUG
  80. #undef HX_THIS_FILE
  81. static const char HX_THIS_FILE[] = __FILE__;
  82. #endif
  83. HandlePendingSchedulingCallback::HandlePendingSchedulingCallback()
  84. {
  85.     m_lRefCount             = 0;
  86.     m_pSmilDocumentRenderer = NULL;
  87.     m_PendingHandle         = 0;
  88.     m_bIsCallbackPending    = FALSE;
  89. }
  90. HandlePendingSchedulingCallback::~HandlePendingSchedulingCallback()
  91. {
  92. }
  93. STDMETHODIMP HandlePendingSchedulingCallback::QueryInterface(REFIID riid, void** ppvObj)
  94. {
  95.     HX_RESULT retVal = HXR_OK;
  96.     if (ppvObj)
  97.     {
  98.         if (IsEqualIID(riid, IID_IUnknown))
  99.         {
  100.             AddRef();
  101.             *ppvObj = this;
  102.         }
  103.         else if (IsEqualIID(riid, IID_IHXCallback))
  104.         {
  105.     AddRef();
  106.     *ppvObj = (IHXCallback*)this;
  107.         }
  108.         else
  109.         {
  110.             *ppvObj = NULL;
  111.             retVal  = HXR_NOINTERFACE;
  112.         }
  113.     }
  114.     else
  115.     {
  116.         retVal = HXR_FAIL;
  117.     }
  118.     return retVal;
  119. }
  120. STDMETHODIMP_(ULONG32) HandlePendingSchedulingCallback::AddRef()
  121. {
  122.     return InterlockedIncrement(&m_lRefCount);
  123. }
  124. STDMETHODIMP_(ULONG32) HandlePendingSchedulingCallback::Release()
  125. {
  126.     if (InterlockedDecrement(&m_lRefCount) > 0)
  127.     {
  128. return m_lRefCount;
  129.     }
  130.     delete this;
  131.     return 0;
  132. }
  133. STDMETHODIMP HandlePendingSchedulingCallback::Func(void)
  134. {
  135.     HX_RESULT retVal = HXR_OK;
  136.     m_PendingHandle      = 0;
  137.     m_bIsCallbackPending = FALSE;
  138.     if (m_pSmilDocumentRenderer)
  139.     {
  140. m_pSmilDocumentRenderer->handlePendingScheduling();
  141.     }
  142.     return retVal;
  143. }
  144. CHyperlinkCallback::CHyperlinkCallback(CSmilDocumentRenderer* pDocRend)
  145. {
  146.     m_lRefCount          = 0;
  147.     m_pDocRend           = pDocRend;
  148.     m_bIsCallbackPending = FALSE;
  149.     m_PendingHandle      = 0;
  150.     m_pAnchor            = NULL;
  151.     m_pExtraAnchorsList  = NULL;
  152. }
  153. CHyperlinkCallback::~CHyperlinkCallback()
  154. {
  155.     if (m_pExtraAnchorsList)
  156.     {
  157. HX_ASSERT(m_pExtraAnchorsList->GetCount() == 0);
  158. m_pExtraAnchorsList->RemoveAll();
  159. HX_DELETE(m_pExtraAnchorsList);
  160.     }
  161. }
  162. STDMETHODIMP CHyperlinkCallback::QueryInterface(REFIID riid, void** ppvObj)
  163. {
  164.     HX_RESULT retVal = HXR_OK;
  165.     if (ppvObj)
  166.     {
  167.         if (IsEqualIID(riid, IID_IUnknown))
  168.         {
  169.             AddRef();
  170.             *ppvObj = (IUnknown*) (IHXCallback*) this;
  171.         }
  172.         else if (IsEqualIID(riid, IID_IHXCallback))
  173.         {
  174.             AddRef();
  175.             *ppvObj = (IHXCallback*) this;
  176.         }
  177.         else
  178.         {
  179.             *ppvObj = NULL;
  180.             retVal  = HXR_NOINTERFACE;
  181.         }
  182.     }
  183.     else
  184.     {
  185.         retVal = HXR_FAIL;
  186.     }
  187.     return retVal;
  188. }
  189. STDMETHODIMP_(ULONG32) CHyperlinkCallback::AddRef()
  190. {
  191.     return InterlockedIncrement(&m_lRefCount);
  192. }
  193. STDMETHODIMP_(ULONG32) CHyperlinkCallback::Release()
  194. {
  195.     if (InterlockedDecrement(&m_lRefCount) > 0)
  196.     {
  197.         return m_lRefCount;
  198.     }
  199.     delete this;
  200.     return 0;
  201. }
  202. STDMETHODIMP CHyperlinkCallback::Func(void)
  203. {
  204.     HX_RESULT retVal = HXR_OK;
  205.     
  206.     m_PendingHandle      = 0;
  207.     m_bIsCallbackPending = FALSE;
  208.     if (m_pDocRend)
  209.     {
  210.         m_pDocRend->handleHyperlinkTraversal(m_pAnchor, TRUE);
  211. // /Allow for multiple simultaneous onLoad URLs to be fired after a
  212. // seek forward, related to fix for PR 67170 and PR 67536:
  213. // go through list of extra anchors, if any, and hurl them too:
  214. if (m_pExtraAnchorsList)
  215. {
  216.     LISTPOSITION lPos = m_pExtraAnchorsList->GetHeadPosition();
  217.     while (lPos)
  218.     {
  219. LISTPOSITION lPosOfCurTmpVal = lPos;
  220. // /Gets val at lPos and then moves lPos to next node in list:
  221. CSmilAAnchorElement* pNextAnchor = (CSmilAAnchorElement*)
  222. m_pExtraAnchorsList->GetNext(lPos);
  223. // /Remove it from the list so it won't hurl in next callback:
  224. m_pExtraAnchorsList->RemoveAt(lPosOfCurTmpVal);
  225. if (pNextAnchor)
  226. {
  227.     m_pDocRend->handleHyperlinkTraversal(pNextAnchor, TRUE);
  228. }
  229.     }
  230.     HX_DELETE(m_pExtraAnchorsList);
  231. }
  232.     }
  233.     return retVal;
  234. }
  235. HX_RESULT
  236. CHyperlinkCallback::AddAdditionalAnchor(CSmilAAnchorElement* pAnchor)
  237. {
  238.     HX_RESULT pnrslt = pAnchor? HXR_OK : HXR_INVALID_PARAMETER;
  239.     if (pAnchor)
  240.     {
  241. if (!m_pExtraAnchorsList)
  242. {
  243.     m_pExtraAnchorsList = new CHXSimpleList;
  244. }
  245. if (m_pExtraAnchorsList)
  246. {
  247.     m_pExtraAnchorsList->AddTail((void*)pAnchor);
  248. }
  249. else
  250. {
  251.     pnrslt = HXR_OUTOFMEMORY;
  252. }
  253.     }
  254.     return pnrslt;
  255. }
  256. HX_RESULT
  257. CHyperlinkCallback::ClearExtraAnchorList()
  258. {
  259.     HX_RESULT hxrslt = HXR_OK;
  260.     if (m_pExtraAnchorsList)
  261.     {
  262. LISTPOSITION lPos =
  263. m_pExtraAnchorsList->GetHeadPosition();
  264. while (lPos)
  265. {
  266.     LISTPOSITION lPosOfCurTmpVal = lPos;
  267.     CSmilAAnchorElement* pNextAnchor =
  268.     (CSmilAAnchorElement*)m_pExtraAnchorsList->GetNext(lPos);
  269.     // /Remove it from the list so it won't hurl:
  270.     m_pExtraAnchorsList->RemoveAt(lPosOfCurTmpVal);
  271. }
  272. HX_DELETE(m_pExtraAnchorsList);
  273.     }
  274.     return hxrslt;
  275. }