2014-06-30 15:39:45 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
1999-03-09 09:44:27 +00:00
|
|
|
|
1999-09-05 06:27:42 +00:00
|
|
|
#ifndef nsComponentManagerUtils_h__
|
|
|
|
#define nsComponentManagerUtils_h__
|
1999-03-09 09:44:27 +00:00
|
|
|
|
2004-11-23 20:53:38 +00:00
|
|
|
#include "nscore.h"
|
1999-11-10 00:14:54 +00:00
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
|
2004-11-23 22:19:13 +00:00
|
|
|
#include "nsIFactory.h"
|
2004-11-23 20:53:38 +00:00
|
|
|
|
|
|
|
|
2014-06-27 01:35:39 +00:00
|
|
|
NS_COM_GLUE nsresult CallCreateInstance(const nsCID& aClass,
|
|
|
|
nsISupports* aDelegate,
|
|
|
|
const nsIID& aIID, void** aResult);
|
2004-11-23 20:53:38 +00:00
|
|
|
|
2014-06-27 01:35:39 +00:00
|
|
|
NS_COM_GLUE nsresult CallCreateInstance(const char* aContractID,
|
|
|
|
nsISupports* aDelegate,
|
|
|
|
const nsIID& aIID, void** aResult);
|
2004-11-23 20:53:38 +00:00
|
|
|
|
2014-06-27 01:35:39 +00:00
|
|
|
NS_COM_GLUE nsresult CallGetClassObject(const nsCID& aClass, const nsIID& aIID,
|
|
|
|
void** aResult);
|
2004-11-23 20:53:38 +00:00
|
|
|
|
2014-06-27 01:35:39 +00:00
|
|
|
NS_COM_GLUE nsresult CallGetClassObject(const char* aContractID,
|
|
|
|
const nsIID& aIID, void** aResult);
|
1999-03-09 09:44:27 +00:00
|
|
|
|
|
|
|
|
2005-10-27 19:01:51 +00:00
|
|
|
class NS_COM_GLUE nsCreateInstanceByCID : public nsCOMPtr_helper
|
2001-12-19 00:12:41 +00:00
|
|
|
{
|
1999-03-09 09:44:27 +00:00
|
|
|
public:
|
2014-06-27 01:35:39 +00:00
|
|
|
nsCreateInstanceByCID(const nsCID& aCID, nsISupports* aOuter, nsresult* aErrorPtr)
|
|
|
|
: mCID(aCID)
|
|
|
|
, mOuter(aOuter)
|
|
|
|
, mErrorPtr(aErrorPtr)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual nsresult NS_FASTCALL operator()(const nsIID&, void**) const;
|
|
|
|
|
2001-12-19 00:12:41 +00:00
|
|
|
private:
|
2014-06-27 01:35:39 +00:00
|
|
|
const nsCID& mCID;
|
|
|
|
nsISupports* mOuter;
|
|
|
|
nsresult* mErrorPtr;
|
1999-03-09 09:44:27 +00:00
|
|
|
};
|
|
|
|
|
2005-10-27 19:01:51 +00:00
|
|
|
class NS_COM_GLUE nsCreateInstanceByContractID : public nsCOMPtr_helper
|
2001-12-19 00:12:41 +00:00
|
|
|
{
|
|
|
|
public:
|
2014-06-27 01:35:39 +00:00
|
|
|
nsCreateInstanceByContractID(const char* aContractID, nsISupports* aOuter,
|
|
|
|
nsresult* aErrorPtr)
|
|
|
|
: mContractID(aContractID)
|
|
|
|
, mOuter(aOuter)
|
|
|
|
, mErrorPtr(aErrorPtr)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual nsresult NS_FASTCALL operator()(const nsIID&, void**) const;
|
|
|
|
|
2001-12-19 00:12:41 +00:00
|
|
|
private:
|
2014-06-27 01:35:39 +00:00
|
|
|
const char* mContractID;
|
|
|
|
nsISupports* mOuter;
|
|
|
|
nsresult* mErrorPtr;
|
2001-12-19 00:12:41 +00:00
|
|
|
};
|
1999-11-10 00:14:54 +00:00
|
|
|
|
2005-10-27 19:01:51 +00:00
|
|
|
class NS_COM_GLUE nsCreateInstanceFromFactory : public nsCOMPtr_helper
|
2004-10-02 00:44:13 +00:00
|
|
|
{
|
|
|
|
public:
|
2014-06-27 01:35:39 +00:00
|
|
|
nsCreateInstanceFromFactory(nsIFactory* aFactory, nsISupports* aOuter,
|
|
|
|
nsresult* aErrorPtr)
|
|
|
|
: mFactory(aFactory)
|
|
|
|
, mOuter(aOuter)
|
|
|
|
, mErrorPtr(aErrorPtr)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual nsresult NS_FASTCALL operator()(const nsIID&, void**) const;
|
|
|
|
|
2004-10-02 00:44:13 +00:00
|
|
|
private:
|
2014-06-27 01:35:39 +00:00
|
|
|
nsIFactory* mFactory;
|
|
|
|
nsISupports* mOuter;
|
|
|
|
nsresult* mErrorPtr;
|
2004-10-02 00:44:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2014-06-27 01:35:39 +00:00
|
|
|
inline const nsCreateInstanceByCID
|
|
|
|
do_CreateInstance(const nsCID& aCID, nsresult* aError = 0)
|
2001-12-19 00:12:41 +00:00
|
|
|
{
|
2014-06-27 01:35:39 +00:00
|
|
|
return nsCreateInstanceByCID(aCID, 0, aError);
|
2001-12-19 00:12:41 +00:00
|
|
|
}
|
1999-11-10 00:14:54 +00:00
|
|
|
|
2014-06-27 01:35:39 +00:00
|
|
|
inline const nsCreateInstanceByCID
|
|
|
|
do_CreateInstance(const nsCID& aCID, nsISupports* aOuter, nsresult* aError = 0)
|
2001-12-19 00:12:41 +00:00
|
|
|
{
|
2014-06-27 01:35:39 +00:00
|
|
|
return nsCreateInstanceByCID(aCID, aOuter, aError);
|
2001-12-19 00:12:41 +00:00
|
|
|
}
|
1999-11-10 00:14:54 +00:00
|
|
|
|
2014-06-27 01:35:39 +00:00
|
|
|
inline const nsCreateInstanceByContractID
|
|
|
|
do_CreateInstance(const char* aContractID, nsresult* aError = 0)
|
2001-12-19 00:12:41 +00:00
|
|
|
{
|
2014-06-27 01:35:39 +00:00
|
|
|
return nsCreateInstanceByContractID(aContractID, 0, aError);
|
2001-12-19 00:12:41 +00:00
|
|
|
}
|
1999-11-10 00:14:54 +00:00
|
|
|
|
2014-06-27 01:35:39 +00:00
|
|
|
inline const nsCreateInstanceByContractID
|
|
|
|
do_CreateInstance(const char* aContractID, nsISupports* aOuter,
|
|
|
|
nsresult* aError = 0)
|
2001-12-19 00:12:41 +00:00
|
|
|
{
|
2014-06-27 01:35:39 +00:00
|
|
|
return nsCreateInstanceByContractID(aContractID, aOuter, aError);
|
2001-12-19 00:12:41 +00:00
|
|
|
}
|
1999-11-10 00:14:54 +00:00
|
|
|
|
2014-06-27 01:35:39 +00:00
|
|
|
inline const nsCreateInstanceFromFactory
|
|
|
|
do_CreateInstance(nsIFactory* aFactory, nsresult* aError = 0)
|
2004-10-02 00:44:13 +00:00
|
|
|
{
|
2014-06-27 01:35:39 +00:00
|
|
|
return nsCreateInstanceFromFactory(aFactory, 0, aError);
|
2004-10-02 00:44:13 +00:00
|
|
|
}
|
|
|
|
|
2014-06-27 01:35:39 +00:00
|
|
|
inline const nsCreateInstanceFromFactory
|
|
|
|
do_CreateInstance(nsIFactory* aFactory, nsISupports* aOuter,
|
|
|
|
nsresult* aError = 0)
|
2004-10-02 00:44:13 +00:00
|
|
|
{
|
2014-06-27 01:35:39 +00:00
|
|
|
return nsCreateInstanceFromFactory(aFactory, aOuter, aError);
|
2004-10-02 00:44:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-10-27 19:01:51 +00:00
|
|
|
class NS_COM_GLUE nsGetClassObjectByCID : public nsCOMPtr_helper
|
2004-10-02 00:44:13 +00:00
|
|
|
{
|
|
|
|
public:
|
2014-06-27 01:35:39 +00:00
|
|
|
nsGetClassObjectByCID(const nsCID& aCID, nsresult* aErrorPtr)
|
|
|
|
: mCID(aCID)
|
|
|
|
, mErrorPtr(aErrorPtr)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual nsresult NS_FASTCALL operator()(const nsIID&, void**) const;
|
|
|
|
|
2004-10-02 00:44:13 +00:00
|
|
|
private:
|
2014-06-27 01:35:39 +00:00
|
|
|
const nsCID& mCID;
|
|
|
|
nsresult* mErrorPtr;
|
2004-10-02 00:44:13 +00:00
|
|
|
};
|
|
|
|
|
2005-10-27 19:01:51 +00:00
|
|
|
class NS_COM_GLUE nsGetClassObjectByContractID : public nsCOMPtr_helper
|
2004-10-02 00:44:13 +00:00
|
|
|
{
|
|
|
|
public:
|
2014-06-27 01:35:39 +00:00
|
|
|
nsGetClassObjectByContractID(const char* aContractID, nsresult* aErrorPtr)
|
|
|
|
: mContractID(aContractID)
|
|
|
|
, mErrorPtr(aErrorPtr)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual nsresult NS_FASTCALL operator()(const nsIID&, void**) const;
|
|
|
|
|
2004-10-02 00:44:13 +00:00
|
|
|
private:
|
2014-06-27 01:35:39 +00:00
|
|
|
const char* mContractID;
|
|
|
|
nsresult* mErrorPtr;
|
2004-10-02 00:44:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2014-06-27 01:35:39 +00:00
|
|
|
* do_GetClassObject can be used to improve performance of callers
|
2004-10-02 00:44:13 +00:00
|
|
|
* that call |CreateInstance| many times. They can cache the factory
|
|
|
|
* and call do_CreateInstance or CallCreateInstance with the cached
|
|
|
|
* factory rather than having the component manager retrieve it every
|
|
|
|
* time.
|
|
|
|
*/
|
|
|
|
inline const nsGetClassObjectByCID
|
2014-06-27 01:35:39 +00:00
|
|
|
do_GetClassObject(const nsCID& aCID, nsresult* aError = 0)
|
2004-10-02 00:44:13 +00:00
|
|
|
{
|
2014-06-27 01:35:39 +00:00
|
|
|
return nsGetClassObjectByCID(aCID, aError);
|
2004-10-02 00:44:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline const nsGetClassObjectByContractID
|
2014-06-27 01:35:39 +00:00
|
|
|
do_GetClassObject(const char* aContractID, nsresult* aError = 0)
|
2004-10-02 00:44:13 +00:00
|
|
|
{
|
2014-06-27 01:35:39 +00:00
|
|
|
return nsGetClassObjectByContractID(aContractID, aError);
|
2004-10-02 00:44:13 +00:00
|
|
|
}
|
|
|
|
|
2001-07-04 18:55:14 +00:00
|
|
|
// type-safe shortcuts for calling |CreateInstance|
|
2014-06-27 01:35:39 +00:00
|
|
|
template<class DestinationType>
|
|
|
|
inline nsresult
|
|
|
|
CallCreateInstance(const nsCID& aClass,
|
|
|
|
nsISupports* aDelegate,
|
|
|
|
DestinationType** aDestination)
|
2001-12-19 00:12:41 +00:00
|
|
|
{
|
2014-06-27 01:35:39 +00:00
|
|
|
NS_PRECONDITION(aDestination, "null parameter");
|
|
|
|
|
|
|
|
return CallCreateInstance(aClass, aDelegate,
|
|
|
|
NS_GET_TEMPLATE_IID(DestinationType),
|
|
|
|
reinterpret_cast<void**>(aDestination));
|
2001-12-19 00:12:41 +00:00
|
|
|
}
|
2001-07-04 18:55:14 +00:00
|
|
|
|
2014-06-27 01:35:39 +00:00
|
|
|
template<class DestinationType>
|
|
|
|
inline nsresult
|
|
|
|
CallCreateInstance(const nsCID& aClass, DestinationType** aDestination)
|
2001-12-19 00:12:41 +00:00
|
|
|
{
|
2014-06-27 01:35:39 +00:00
|
|
|
NS_PRECONDITION(aDestination, "null parameter");
|
|
|
|
|
|
|
|
return CallCreateInstance(aClass, nullptr,
|
|
|
|
NS_GET_TEMPLATE_IID(DestinationType),
|
|
|
|
reinterpret_cast<void**>(aDestination));
|
2001-12-19 00:12:41 +00:00
|
|
|
}
|
2001-07-04 18:55:14 +00:00
|
|
|
|
2014-06-27 01:35:39 +00:00
|
|
|
template<class DestinationType>
|
|
|
|
inline nsresult
|
|
|
|
CallCreateInstance(const char* aContractID,
|
|
|
|
nsISupports* aDelegate,
|
|
|
|
DestinationType** aDestination)
|
2001-12-19 00:12:41 +00:00
|
|
|
{
|
2014-06-27 01:35:39 +00:00
|
|
|
NS_PRECONDITION(aContractID, "null parameter");
|
|
|
|
NS_PRECONDITION(aDestination, "null parameter");
|
|
|
|
|
|
|
|
return CallCreateInstance(aContractID,
|
|
|
|
aDelegate,
|
|
|
|
NS_GET_TEMPLATE_IID(DestinationType),
|
|
|
|
reinterpret_cast<void**>(aDestination));
|
2001-12-19 00:12:41 +00:00
|
|
|
}
|
2001-07-04 18:55:14 +00:00
|
|
|
|
2014-06-27 01:35:39 +00:00
|
|
|
template<class DestinationType>
|
|
|
|
inline nsresult
|
|
|
|
CallCreateInstance(const char* aContractID, DestinationType** aDestination)
|
2001-12-19 00:12:41 +00:00
|
|
|
{
|
2014-06-27 01:35:39 +00:00
|
|
|
NS_PRECONDITION(aContractID, "null parameter");
|
|
|
|
NS_PRECONDITION(aDestination, "null parameter");
|
|
|
|
|
|
|
|
return CallCreateInstance(aContractID, nullptr,
|
|
|
|
NS_GET_TEMPLATE_IID(DestinationType),
|
|
|
|
reinterpret_cast<void**>(aDestination));
|
2001-12-19 00:12:41 +00:00
|
|
|
}
|
2001-07-04 18:55:14 +00:00
|
|
|
|
2014-06-27 01:35:39 +00:00
|
|
|
template<class DestinationType>
|
|
|
|
inline nsresult
|
|
|
|
CallCreateInstance(nsIFactory* aFactory,
|
|
|
|
nsISupports* aDelegate,
|
|
|
|
DestinationType** aDestination)
|
2004-10-02 00:44:13 +00:00
|
|
|
{
|
2014-06-27 01:35:39 +00:00
|
|
|
NS_PRECONDITION(aFactory, "null parameter");
|
|
|
|
NS_PRECONDITION(aDestination, "null parameter");
|
|
|
|
|
|
|
|
return aFactory->CreateInstance(aDelegate,
|
|
|
|
NS_GET_TEMPLATE_IID(DestinationType),
|
|
|
|
reinterpret_cast<void**>(aDestination));
|
2004-10-02 00:44:13 +00:00
|
|
|
}
|
|
|
|
|
2014-06-27 01:35:39 +00:00
|
|
|
template<class DestinationType>
|
|
|
|
inline nsresult
|
|
|
|
CallCreateInstance(nsIFactory* aFactory, DestinationType** aDestination)
|
2004-10-02 00:44:13 +00:00
|
|
|
{
|
2014-06-27 01:35:39 +00:00
|
|
|
NS_PRECONDITION(aFactory, "null parameter");
|
|
|
|
NS_PRECONDITION(aDestination, "null parameter");
|
|
|
|
|
|
|
|
return aFactory->CreateInstance(nullptr,
|
|
|
|
NS_GET_TEMPLATE_IID(DestinationType),
|
|
|
|
reinterpret_cast<void**>(aDestination));
|
2004-10-02 00:44:13 +00:00
|
|
|
}
|
|
|
|
|
2014-06-27 01:35:39 +00:00
|
|
|
template<class DestinationType>
|
|
|
|
inline nsresult
|
|
|
|
CallGetClassObject(const nsCID& aClass, DestinationType** aDestination)
|
2004-10-02 00:44:13 +00:00
|
|
|
{
|
2014-06-27 01:35:39 +00:00
|
|
|
NS_PRECONDITION(aDestination, "null parameter");
|
|
|
|
|
|
|
|
return CallGetClassObject(aClass, NS_GET_TEMPLATE_IID(DestinationType),
|
|
|
|
reinterpret_cast<void**>(aDestination));
|
2004-10-02 00:44:13 +00:00
|
|
|
}
|
|
|
|
|
2014-06-27 01:35:39 +00:00
|
|
|
template<class DestinationType>
|
|
|
|
inline nsresult
|
|
|
|
CallGetClassObject(const char* aContractID, DestinationType** aDestination)
|
2004-10-02 00:44:13 +00:00
|
|
|
{
|
2014-06-27 01:35:39 +00:00
|
|
|
NS_PRECONDITION(aDestination, "null parameter");
|
|
|
|
|
|
|
|
return CallGetClassObject(aContractID, NS_GET_TEMPLATE_IID(DestinationType),
|
|
|
|
reinterpret_cast<void**>(aDestination));
|
2004-10-02 00:44:13 +00:00
|
|
|
}
|
|
|
|
|
1999-09-05 06:27:42 +00:00
|
|
|
#endif /* nsComponentManagerUtils_h__ */
|