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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: siteplug.cpp,v 1.10.4.1 2004/07/09 01:59: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. #if defined(_UNIX) && !defined(_MAC_UNIX)
  50. //XXXSMJ This INITGUID probably needs to go
  51. #  define INITGUID
  52. # if !defined(QWS)
  53. #include "hlxclib/string.h"
  54. #   include <X11/Xlib.h>
  55. #   include <X11/Xutil.h>
  56. #   include <X11/Xos.h>
  57. #endif /* !defined(QWS) */
  58. #endif //_UNIX
  59. #ifdef _SYMBIAN
  60. # define INITGUID
  61. #endif
  62. #include "hxcom.h"
  63. #include "hxtypes.h"
  64. #include "hxwintyp.h"
  65. #include "hxplugn.h"
  66. #include "hxmap.h"
  67. #include "hxslist.h"
  68. #include "ihxpckts.h"
  69. #include "hxwin.h"
  70. #include "hxvsurf.h"
  71. #include "chxpckts.h"
  72. #include "siteplug.h"
  73. #include "dllpath.h"
  74. #include "hxfiles.h"
  75. #include "hxmon.h"
  76. #include "hxver.h"
  77. #include "hxprefs.h"
  78. #include "hxcore.h"
  79. #include "hxupgrd.h"
  80. #if defined (HELIX_FEATURE_MINI_SITE)
  81. # include "minisite.h"
  82. #else //HELIX_FEATURE_MINI_SITE
  83. # include "basesite.h"
  84. # if defined(_UNIX) && !defined(_MAC_UNIX)
  85. #  include "hxcmenu.h"
  86. #  include "unixsite.h"
  87. # endif
  88. # if defined(_MACINTOSH) || defined(_MAC_UNIX)
  89. #  include "platform/mac/macsite.h"
  90. # endif
  91. # ifdef _WINDOWS
  92. #  include "winsite.h"
  93. # endif
  94. #endif //HELIX_FEATURE_MINI_SITE
  95. #include "site.ver"
  96. #include "hxassert.h"
  97. #include "hxheap.h"
  98. #ifdef _DEBUG
  99. #undef HX_THIS_FILE
  100. static const char HX_THIS_FILE[] = __FILE__;
  101. #endif
  102. const char* const SiteSurfFactory::zm_pDescription = "Surface/Site Window Factory Plugin";
  103. const char* const SiteSurfFactory::zm_pCopyright   = HXVER_COPYRIGHT;
  104. const char* const SiteSurfFactory::zm_pMoreInfoURL  = "http://www.real.com";
  105. ENABLE_DLLACCESS_PATHS(SiteSurf);
  106. /****************************************************************************
  107.  * 
  108.  *  Function:
  109.  * 
  110.  * HXCreateInstance()
  111.  * 
  112.  *  Purpose:
  113.  * 
  114.  * Function implemented by all plugin DLL's to create an instance of 
  115.  * any of the objects supported by the DLL. This method is similar to 
  116.  * Window's CoCreateInstance() in its purpose, except that it only 
  117.  * creates objects from this plugin DLL.
  118.  *
  119.  * NOTE: Aggregation is never used. Therefore and outer unknown is
  120.  * not passed to this function, and you do not need to code for this
  121.  * situation.
  122.  * 
  123.  */
  124. STDAPI ENTRYPOINT(HXCREATEINSTANCE)
  125. (
  126.     IUnknown**  /*OUT*/ ppIUnknown
  127. )
  128. {
  129.     *ppIUnknown = (IUnknown*)(IHXPlugin*)new SiteSurfFactory();
  130.     if (*ppIUnknown)
  131.     {
  132. (*ppIUnknown)->AddRef();
  133. return HXR_OK;
  134.     }
  135.     return HXR_OUTOFMEMORY;
  136. }
  137. SiteSurfFactory::SiteSurfFactory()
  138.     : m_pContext(NULL)
  139. {
  140.     m_lRefCount = 0;
  141. }
  142. SiteSurfFactory::~SiteSurfFactory()
  143. {
  144.     if (m_pContext)
  145.     {
  146. m_pContext->Release();
  147. m_pContext = NULL;
  148.     }
  149. }
  150. STDMETHODIMP
  151. SiteSurfFactory::QueryInterface(REFIID riid, void** ppvObj)
  152. {
  153.     if(IsEqualIID(riid, IID_IUnknown))
  154.     {
  155. AddRef();
  156. *ppvObj = (IUnknown*)(IHXCommonClassFactory*)this;
  157. return HXR_OK;
  158.     }
  159.     else if(IsEqualIID(riid, IID_IHXPlugin))
  160.     {
  161. AddRef();
  162. *ppvObj = (IHXPlugin*)this;
  163. return HXR_OK;
  164.     }
  165.     else if(IsEqualIID(riid, IID_IHXCommonClassFactory))
  166.     {
  167. AddRef();
  168. *ppvObj = (IHXCommonClassFactory*)this;
  169. return HXR_OK;
  170.     }
  171.     *ppvObj = NULL;
  172.     return HXR_NOINTERFACE;
  173. }
  174. STDMETHODIMP_(ULONG32)
  175. SiteSurfFactory::AddRef()
  176. {
  177.     return InterlockedIncrement(&m_lRefCount);
  178. }
  179. STDMETHODIMP_(ULONG32)
  180. SiteSurfFactory::Release()
  181.     if (InterlockedDecrement(&m_lRefCount) > 0)
  182.     {
  183.         return m_lRefCount;
  184.     }
  185.     delete this;
  186.     return 0;
  187. }
  188.     
  189. STDMETHODIMP
  190. SiteSurfFactory::InitPlugin(IUnknown* pContext)
  191. {
  192.     m_pContext = pContext;
  193.     if(m_pContext)
  194. m_pContext->AddRef();
  195.     return HXR_OK;
  196. }
  197. STDMETHODIMP
  198. SiteSurfFactory::GetPluginInfo(REF(BOOL) bMultipleLoad,
  199.        REF(const char*) pDescription,
  200.        REF(const char*) pCopyright,
  201.        REF(const char*) pMoreInfoURL,
  202.        REF(ULONG32)     ulVersionNumber)
  203. {
  204.     pDescription = zm_pDescription;
  205.     pCopyright   = zm_pCopyright;
  206.     pMoreInfoURL = zm_pMoreInfoURL;
  207.     ulVersionNumber = TARVER_ULONG32_VERSION;
  208.     return HXR_OK;
  209. }
  210. STDMETHODIMP
  211. SiteSurfFactory::CreateInstance(REFCLSID rclsid,
  212. void** ppUnknown)
  213. {
  214.     if(IsEqualIID(rclsid, CLSID_IHXSiteWindowed))
  215.     {
  216.         *ppUnknown = (IUnknown*)(IHXSiteWindowed*)(
  217. #if defined (HELIX_FEATURE_MINI_SITE)     
  218.             CMiniBaseSite::CreateSite(m_pContext));
  219. #else
  220.             CHXBaseSite::CreateSite(m_pContext));
  221. #endif //HELIX_FEATURE_MINI_SITE
  222. return ((IUnknown*)*ppUnknown)->QueryInterface(IID_IHXSiteWindowed,
  223.        (void**)ppUnknown);
  224.     }
  225. #if defined(_UNIX) && !defined(_MAC_UNIX) && !defined(HELIX_FEATURE_MINI_SITE)
  226.     else if(IsEqualIID(rclsid, CLSID_IHXSiteEventHandler))
  227.     {
  228. *ppUnknown = (IUnknown*)(IHXSiteEventHandler*)(
  229.     new CHXSiteEventHandler(m_pContext));
  230. return ((IUnknown*)*ppUnknown)->QueryInterface(IID_IHXSiteEventHandler,
  231.        (void**)ppUnknown);
  232.     }
  233. #endif
  234.     *ppUnknown = NULL;
  235.     return HXR_NOINTERFACE;
  236. }
  237. STDMETHODIMP SiteSurfFactory::CreateInstanceAggregatable( REFCLSID rclsid,
  238.                                                           REF(IUnknown*) ppUnknown,
  239.                                                           IUnknown* pUnkOuter)
  240. {
  241.    HX_ASSERT( "This isn't implementedn" );
  242.    return HXR_FAIL;
  243. }
  244. STDAPI ENTRYPOINT(CanUnload2)(void)
  245. {
  246.     return (CHXBaseCountingObject::ObjectsActive() ? HXR_FAIL : HXR_OK);
  247. }