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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: siteprxy.cpp,v 1.2.36.1 2004/07/09 02:08:40 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 "hxcom.h"
  50. #include "hxtypes.h"
  51. #include "hxwintyp.h"
  52. #include "hxmap.h"
  53. #include "hxwin.h"
  54. #include "chxxtype.h"
  55. #include "ihxpckts.h"
  56. #include "hxslist.h"
  57. #include "hxstrutl.h"
  58. #include "sitemgr.h"
  59. #include "siteprxy.h"
  60. #include "hxheap.h"
  61. #ifdef _DEBUG
  62. #undef HX_THIS_FILE
  63. static const char HX_THIS_FILE[] = __FILE__;
  64. #endif
  65. /*
  66.  * CHXSiteUserSupplierProxy methods
  67.  */
  68. /************************************************************************
  69.  *  Method:
  70.  *    Constructor
  71.  */
  72. CHXSiteUserSupplierProxy::CHXSiteUserSupplierProxy
  73. (
  74.     CHXSiteManager* pSiteMgr,
  75.     IHXSiteUserSupplier* pSUS,
  76.     const char* pRegionName
  77. )
  78.     : m_lRefCount(0)
  79.     , m_pSiteMgr(pSiteMgr)
  80.     , m_pSUS(pSUS)
  81.     , m_pRegionName(NULL)
  82. {
  83.     HX_ASSERT(m_pSiteMgr);
  84.     HX_ASSERT(m_pSUS);
  85.     HX_ASSERT(pRegionName);
  86.     m_pSiteMgr->AddRef();
  87.     m_pSUS->AddRef();
  88.     m_pRegionName = new_string(pRegionName);
  89. }
  90. /************************************************************************
  91.  *  Method:
  92.  *    Destructor
  93.  */
  94. CHXSiteUserSupplierProxy::~CHXSiteUserSupplierProxy()
  95. {
  96.     HX_RELEASE(m_pSiteMgr);
  97.     HX_RELEASE(m_pSUS);
  98.     HX_VECTOR_DELETE(m_pRegionName);
  99. }
  100. /************************************************************************
  101.  *  Method:
  102.  *    IUnknown::QueryInterface
  103.  */
  104. STDMETHODIMP 
  105. CHXSiteUserSupplierProxy::QueryInterface(REFIID riid, void** ppvObj)
  106. {
  107.     if (IsEqualIID(riid, IID_IHXSiteUserSupplier))
  108.     {
  109. AddRef();
  110. *ppvObj = (IHXSiteUserSupplier*)this;
  111. return HXR_OK;
  112.     }
  113.     else if (IsEqualIID(riid, IID_IUnknown))
  114.     {
  115. AddRef();
  116. *ppvObj = this;
  117. return HXR_OK;
  118.     }
  119.     return m_pSUS->QueryInterface(riid, ppvObj);
  120. }
  121. /************************************************************************
  122.  *  Method:
  123.  *    IUnknown::AddRef
  124.  */
  125. STDMETHODIMP_(ULONG32) 
  126. CHXSiteUserSupplierProxy::AddRef()
  127. {
  128.     return InterlockedIncrement(&m_lRefCount);
  129. }
  130. /************************************************************************
  131.  *  Method:
  132.  *    IUnknown::Release
  133.  */
  134. STDMETHODIMP_(ULONG32) 
  135. CHXSiteUserSupplierProxy::Release()
  136. {
  137.     if (InterlockedDecrement(&m_lRefCount) > 0)
  138.     {
  139.         return m_lRefCount;
  140.     }
  141.     delete this;
  142.     return 0;
  143. }
  144. /************************************************************************
  145.  *  Method:
  146.  *    IHXSiteUserSupplier::CreateSiteUser
  147.  */
  148. STDMETHODIMP 
  149. CHXSiteUserSupplierProxy::CreateSiteUser
  150. (
  151.     REF(IHXSiteUser*) pSiteUser
  152. )
  153. {
  154.     HX_RESULT rc = m_pSUS->CreateSiteUser(pSiteUser);
  155.     if(HXR_OK == rc)
  156.     {
  157. CHXSiteUserProxy* pProxy = 
  158.     new CHXSiteUserProxy(m_pSiteMgr, pSiteUser, m_pRegionName);
  159. if (pProxy)
  160. {
  161.     HX_RELEASE(pSiteUser);
  162.     rc = pProxy->QueryInterface(IID_IHXSiteUser, (void**)&pSiteUser);
  163. }
  164.     }
  165.     return rc;
  166. }
  167. /************************************************************************
  168.  *  Method:
  169.  *    IHXSiteUserSupplier::DestroySiteUser
  170.  */
  171. STDMETHODIMP 
  172. CHXSiteUserSupplierProxy::DestroySiteUser
  173. (
  174.     IHXSiteUser* pSiteUser
  175. )
  176. {
  177.     return m_pSUS->DestroySiteUser(pSiteUser);
  178. }
  179. /************************************************************************
  180.  *  Method:
  181.  *    IHXSiteUserSupplier::NeedsWindowedSites
  182.  */
  183. STDMETHODIMP_(BOOL) 
  184. CHXSiteUserSupplierProxy::NeedsWindowedSites()
  185. {
  186.     return m_pSUS->NeedsWindowedSites();
  187. }
  188. /*
  189.  * CHXSiteUserProxy methods
  190.  */
  191. /************************************************************************
  192.  *  Method:
  193.  *    Constructor
  194.  */
  195. CHXSiteUserProxy::CHXSiteUserProxy
  196. (
  197.     CHXSiteManager* pSiteMgr,
  198.     IHXSiteUser* pSU,
  199.     const char* pRegionName
  200. )
  201.     : m_lRefCount(0)
  202.     , m_pSiteMgr(pSiteMgr)
  203.     , m_pSU(pSU)
  204.     , m_pRegionName(NULL)
  205.     , m_pSite(NULL)
  206. {
  207.     HX_ASSERT(m_pSiteMgr);
  208.     HX_ASSERT(pRegionName);
  209.     HX_ASSERT(m_pSU);
  210.     m_pSU->AddRef();
  211.     m_pSiteMgr->AddRef();
  212.     m_pRegionName = new_string(pRegionName);
  213. }
  214. /************************************************************************
  215.  *  Method:
  216.  *    Destructor
  217.  */
  218. CHXSiteUserProxy::~CHXSiteUserProxy()
  219. {
  220.     HX_RELEASE(m_pSU);
  221.     HX_RELEASE(m_pSiteMgr);
  222.     HX_VECTOR_DELETE(m_pRegionName);
  223. }
  224. /************************************************************************
  225.  *  Method:
  226.  *    IUnknown::QueryInterface
  227.  */
  228. STDMETHODIMP 
  229. CHXSiteUserProxy::QueryInterface(REFIID riid, void** ppvObj)
  230. {
  231.     if (IsEqualIID(riid, IID_IHXSiteUser))
  232.     {
  233. AddRef();
  234. *ppvObj = (IHXSiteUser*)this;
  235. return HXR_OK;
  236.     }
  237.     else if (IsEqualIID(riid, IID_IUnknown))
  238.     {
  239. AddRef();
  240. *ppvObj = this;
  241. return HXR_OK;
  242.     }
  243.     return m_pSU->QueryInterface(riid, ppvObj);
  244. }
  245. /************************************************************************
  246.  *  Method:
  247.  *    IUnknown::AddRef
  248.  */
  249. STDMETHODIMP_(ULONG32) 
  250. CHXSiteUserProxy::AddRef()
  251. {
  252.     return InterlockedIncrement(&m_lRefCount);
  253. }
  254. /************************************************************************
  255.  *  Method:
  256.  *    IUnknown::Release
  257.  */
  258. STDMETHODIMP_(ULONG32) 
  259. CHXSiteUserProxy::Release()
  260. {
  261.     if (InterlockedDecrement(&m_lRefCount) > 0)
  262.     {
  263.         return m_lRefCount;
  264.     }
  265.     delete this;
  266.     return 0;
  267. }
  268. /************************************************************************
  269.  *  Method:
  270.  *    IHXSiteUser::AttachSite
  271.  */
  272. STDMETHODIMP 
  273. CHXSiteUserProxy::AttachSite
  274. (
  275.     IHXSite* pSite
  276. )
  277. {
  278.     m_pSite = pSite;
  279.     m_pSite->AddRef();
  280.     m_pSiteMgr->HookedSiteAdded(
  281. m_pRegionName, m_pSite);
  282.     HX_RESULT rc = m_pSU->AttachSite(pSite);
  283.     return rc;
  284. }
  285. /************************************************************************
  286.  *  Method:
  287.  *    IHXSiteUser::DetachSite
  288.  */
  289. STDMETHODIMP 
  290. CHXSiteUserProxy::DetachSite
  291. (
  292. )
  293. {
  294.     HX_RESULT rc = m_pSU->DetachSite();
  295.     m_pSiteMgr->HookedSiteRemoved(
  296. m_pRegionName, m_pSite);
  297.     HX_RELEASE(m_pSite);
  298.     return rc;
  299. }
  300. /************************************************************************
  301.  *  Method:
  302.  *    IHXSiteUser::HandleEvent
  303.  */
  304. STDMETHODIMP 
  305. CHXSiteUserProxy::HandleEvent
  306. (
  307.     HXxEvent* pEvent
  308. )
  309. {
  310.     // Assume that event has not been handled
  311.     // if it gets here - set the event OUT
  312.     // values in case somebody forgot to...
  313.     pEvent->result = HXR_OK;
  314.     pEvent->handled = FALSE;
  315.     HX_RESULT rc = m_pSiteMgr->HandleHookedEvent(
  316. m_pRegionName, m_pSite, pEvent);
  317.     if(HXR_OK == rc && !pEvent->handled)
  318.     {
  319. rc = m_pSU->HandleEvent(pEvent);
  320.     }
  321.     return rc;
  322. }
  323. /************************************************************************
  324.  *  Method:
  325.  *    IHXSiteUser::NeedsWindowedSites
  326.  */
  327. STDMETHODIMP_(BOOL) 
  328. CHXSiteUserProxy::NeedsWindowedSites()
  329. {
  330.     return m_pSU->NeedsWindowedSites();
  331. }