out references to NS_TRANSACTIONMANAGER. git-svn-id: svn://10.0.0.236/trunk@16188 18797224-902f-48f8-a5cc-f745e15eee43
133 lines
3.6 KiB
C++
133 lines
3.6 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 "nscore.h"
|
|
#include "nsIFactory.h"
|
|
#include "nsISupports.h"
|
|
|
|
#include "nsTransactionManagerCID.h"
|
|
#include "nsTransactionManager.h"
|
|
|
|
static NS_DEFINE_IID(kISupportsIID, NS_ISUPPORTS_IID);
|
|
static NS_DEFINE_IID(kIFactoryIID, NS_IFACTORY_IID);
|
|
static NS_DEFINE_IID(kCTransactionManagerFactory, NS_TRANSACTION_MANAGER_FACTORY_CID);
|
|
|
|
class nsTransactionManagerFactory : public nsIFactory
|
|
{
|
|
public:
|
|
|
|
nsTransactionManagerFactory();
|
|
virtual ~nsTransactionManagerFactory();
|
|
|
|
// nsISupports methods
|
|
NS_DECL_ISUPPORTS
|
|
|
|
// nsIFactory methods
|
|
NS_IMETHOD CreateInstance(nsISupports *aOuter,
|
|
REFNSIID aIID,
|
|
void **aResult);
|
|
|
|
NS_IMETHOD LockFactory(PRBool aLock);
|
|
};
|
|
|
|
nsTransactionManagerFactory::nsTransactionManagerFactory()
|
|
{
|
|
mRefCnt = 0;
|
|
}
|
|
|
|
nsTransactionManagerFactory::~nsTransactionManagerFactory()
|
|
{
|
|
NS_ASSERTION(mRefCnt == 0, "non-zero refcnt at destruction");
|
|
}
|
|
|
|
NS_IMPL_ADDREF(nsTransactionManagerFactory)
|
|
NS_IMPL_RELEASE(nsTransactionManagerFactory)
|
|
|
|
nsresult nsTransactionManagerFactory::QueryInterface(REFNSIID aIID,
|
|
void **aInstancePtr)
|
|
{
|
|
if (nsnull == aInstancePtr)
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
*aInstancePtr = 0;
|
|
|
|
if (aIID.Equals(kISupportsIID)) {
|
|
*aInstancePtr = (void *)(nsISupports*)this;
|
|
} else if (aIID.Equals(kIFactoryIID)) {
|
|
*aInstancePtr = (void *)(nsIFactory*)this;
|
|
}
|
|
|
|
if (nsnull == *aInstancePtr)
|
|
return NS_NOINTERFACE;
|
|
|
|
NS_ADDREF_THIS();
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
nsresult nsTransactionManagerFactory::CreateInstance(nsISupports *aOuter,
|
|
REFNSIID aIID,
|
|
void **aResult)
|
|
{
|
|
if (!aResult)
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
*aResult = 0;
|
|
|
|
nsISupports *inst = new nsTransactionManager();
|
|
|
|
if (inst == NULL) {
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
}
|
|
|
|
nsresult result = inst->QueryInterface(aIID, aResult);
|
|
|
|
if (NS_FAILED(result)) {
|
|
// We didn't get the right interface, so clean up
|
|
delete inst;
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
nsresult nsTransactionManagerFactory::LockFactory(PRBool aLock)
|
|
{
|
|
// XXX: Not implemented yet.
|
|
return NS_OK;
|
|
}
|
|
|
|
// return the proper factory to the caller
|
|
#if defined(XP_MAC) && defined(MAC_STATIC)
|
|
extern "C" /* NS_TRANSACTIONMANAGER */ nsresult NSGetFactory_TRANSACTIONMANAGER_DLL(const nsCID &aClass, nsIFactory **aFactory)
|
|
#else
|
|
extern "C" /* NS_TRANSACTIONMANAGER */ nsresult NSGetFactory(const nsCID &aClass, nsIFactory **aFactory)
|
|
#endif
|
|
{
|
|
if (!aFactory)
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
// XXX: Should check to make sure aClass is correct type?
|
|
|
|
*aFactory = new nsTransactionManagerFactory();
|
|
|
|
if (!aFactory)
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
return (*aFactory)->QueryInterface(kIFactoryIID, (void**)aFactory);
|
|
}
|