gecko-dev/webshell/embed/ActiveX/ActiveXPlugin.cpp
1999-02-14 13:18:42 +00:00

180 lines
4.1 KiB
C++

/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Netscape Public License
* Version 1.0 (the "NPL"); you may not use this file except in
* compliance with the NPL. You may obtain a copy of the NPL at
* http://www.mozilla.org/NPL/
*
* Software distributed under the NPL is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
* for the specific language governing rights and limitations under the
* NPL.
*
* The Initial Developer of this code under the NPL is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
* Reserved.
*/
#include "stdafx.h"
static NS_DEFINE_IID(kISupportsIID, NS_ISUPPORTS_IID);
static NS_DEFINE_IID(kIFactoryIID, NS_IFACTORY_IID);
static NS_DEFINE_IID(kIPluginIID, NS_IPLUGIN_IID);
static CActiveXPlugin *gpFactory = NULL;
extern "C" NS_EXPORT nsresult NSGetFactory(const nsCID &aClass, nsISupports* serviceMgr, nsIFactory **aFactory)
{
if (aClass.Equals(kIPluginIID))
{
if (gpFactory)
{
gpFactory->AddRef();
*aFactory = (nsIFactory *) gpFactory;
return NS_OK;
}
CActiveXPlugin *pFactory = new CActiveXPlugin();
if (pFactory == NULL)
{
return NS_ERROR_OUT_OF_MEMORY;
}
pFactory->AddRef();
gpFactory = pFactory;
*aFactory = pFactory;
return NS_OK;
}
return NS_ERROR_FAILURE;
}
extern "C" NS_EXPORT PRBool NSCanUnload(void)
{
return (_Module.GetLockCount() == 0);
}
///////////////////////////////////////////////////////////////////////////////
CActiveXPlugin::CActiveXPlugin()
{
NS_INIT_REFCNT();
}
CActiveXPlugin::~CActiveXPlugin()
{
}
///////////////////////////////////////////////////////////////////////////////
// nsISupports implementation
NS_IMPL_ADDREF(CActiveXPlugin)
NS_IMPL_RELEASE(CActiveXPlugin)
nsresult CActiveXPlugin::QueryInterface(const nsIID& aIID, void** aInstancePtrResult)
{
NS_PRECONDITION(nsnull != aInstancePtrResult, "null pointer");
if (nsnull == aInstancePtrResult)
{
return NS_ERROR_NULL_POINTER;
}
*aInstancePtrResult = NULL;
if (aIID.Equals(kISupportsIID))
{
*aInstancePtrResult = (void*) ((nsIPlugin*)this);
AddRef();
return NS_OK;
}
if (aIID.Equals(kIFactoryIID))
{
*aInstancePtrResult = (void*) ((nsIPlugin*)this);
AddRef();
return NS_OK;
}
if (aIID.Equals(kIPluginIID))
{
*aInstancePtrResult = (void*) ((nsIPlugin*)this);
AddRef();
return NS_OK;
}
return NS_NOINTERFACE;
}
///////////////////////////////////////////////////////////////////////////////
// nsIFactory overrides
NS_IMETHODIMP CActiveXPlugin::CreateInstance(nsISupports *aOuter, REFNSIID aIID, void **aResult)
{
CActiveXPluginInstance *pInst = new CActiveXPluginInstance();
if (pInst == NULL)
{
return NS_ERROR_OUT_OF_MEMORY;
}
pInst->AddRef();
*aResult = pInst;
return NS_OK;
}
NS_IMETHODIMP CActiveXPlugin::LockFactory(PRBool aLock)
{
if (aLock)
{
_Module.Lock();
}
else
{
_Module.Unlock();
}
return NS_OK;
}
///////////////////////////////////////////////////////////////////////////////
// nsIPlugin overrides
static const char *gpszMime = "application/x-oleobject:smp:Mozilla ActiveX Control Plug-in";
static const char *gpszPluginName = "Mozilla ActiveX Control Plug-in";
static const char *gpszPluginDesc = "ActiveX control host";
NS_IMETHODIMP CActiveXPlugin::Initialize()
{
return NS_OK;
}
NS_IMETHODIMP CActiveXPlugin::Shutdown(void)
{
return NS_OK;
}
NS_IMETHODIMP CActiveXPlugin::GetMIMEDescription(const char* *resultingDesc)
{
*resultingDesc = gpszMime;
return NS_OK;
}
NS_IMETHODIMP CActiveXPlugin::GetValue(nsPluginVariable variable, void *value)
{
nsresult err = NS_OK;
if (variable == nsPluginVariable_NameString)
{
*((char **)value) = const_cast<char *>(gpszPluginName);
}
else if (variable == nsPluginVariable_DescriptionString)
{
*((char **)value) = const_cast<char *>(gpszPluginDesc);
}
else
{
err = NS_ERROR_FAILURE;
}
return err;
}