2007-01-05 23:59:18 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
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/. */
|
2013-08-22 06:31:21 +00:00
|
|
|
// IWYU pragma: private, include "nsISupports.h"
|
2001-09-27 03:43:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
#ifndef nsISupportsImpl_h__
|
|
|
|
#define nsISupportsImpl_h__
|
|
|
|
|
|
|
|
#ifndef nscore_h___
|
|
|
|
#include "nscore.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef nsISupportsBase_h__
|
|
|
|
#include "nsISupportsBase.h"
|
|
|
|
#endif
|
|
|
|
|
2007-07-24 20:17:11 +00:00
|
|
|
#ifndef nsISupportsUtils_h__
|
|
|
|
#include "nsISupportsUtils.h"
|
|
|
|
#endif
|
|
|
|
|
2005-07-07 15:40:24 +00:00
|
|
|
|
|
|
|
#if !defined(XPCOM_GLUE_AVOID_NSPR)
|
2003-07-07 22:11:36 +00:00
|
|
|
#include "prthread.h" /* needed for thread-safety checks */
|
2013-04-30 17:41:22 +00:00
|
|
|
#endif // !XPCOM_GLUE_AVOID_NSPR
|
2003-07-07 22:11:36 +00:00
|
|
|
|
|
|
|
#include "nsDebug.h"
|
2007-01-05 23:59:18 +00:00
|
|
|
#include "nsTraceRefcnt.h"
|
2013-07-14 01:18:03 +00:00
|
|
|
#ifndef XPCOM_GLUE
|
|
|
|
#include "mozilla/Atomics.h"
|
|
|
|
#endif
|
2012-09-08 10:46:48 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2012-08-28 16:33:47 +00:00
|
|
|
#include "mozilla/Assertions.h"
|
2012-10-26 13:32:10 +00:00
|
|
|
#include "mozilla/Likely.h"
|
2012-08-28 16:33:47 +00:00
|
|
|
|
2012-11-15 07:32:39 +00:00
|
|
|
inline nsISupports*
|
|
|
|
ToSupports(nsISupports* p)
|
|
|
|
{
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline nsISupports*
|
|
|
|
ToCanonicalSupports(nsISupports* p)
|
|
|
|
{
|
2013-10-10 20:41:39 +00:00
|
|
|
return nullptr;
|
2012-11-15 07:32:39 +00:00
|
|
|
}
|
|
|
|
|
2001-09-27 03:43:00 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Macros to help detect thread-safety:
|
|
|
|
|
2013-09-24 01:53:40 +00:00
|
|
|
#if (defined(DEBUG) || (defined(NIGHTLY_BUILD) && !defined(MOZ_PROFILING))) && !defined(XPCOM_GLUE_AVOID_NSPR)
|
2001-09-27 03:43:00 +00:00
|
|
|
|
2002-11-06 13:09:20 +00:00
|
|
|
class nsAutoOwningThread {
|
|
|
|
public:
|
2003-07-07 22:11:36 +00:00
|
|
|
nsAutoOwningThread() { mThread = PR_GetCurrentThread(); }
|
2002-11-06 13:09:20 +00:00
|
|
|
void *GetThread() const { return mThread; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
void *mThread;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define NS_DECL_OWNINGTHREAD nsAutoOwningThread _mOwningThread;
|
2013-09-17 16:05:13 +00:00
|
|
|
#define NS_ASSERT_OWNINGTHREAD_AGGREGATE(agg, _class) \
|
|
|
|
NS_CheckThreadSafe(agg->_mOwningThread.GetThread(), #_class " not thread-safe")
|
|
|
|
#define NS_ASSERT_OWNINGTHREAD(_class) NS_ASSERT_OWNINGTHREAD_AGGREGATE(this, _class)
|
2013-09-24 01:53:40 +00:00
|
|
|
#else // !DEBUG && !(NIGHTLY_BUILD && !MOZ_PROFILING)
|
2001-09-27 03:43:00 +00:00
|
|
|
|
|
|
|
#define NS_DECL_OWNINGTHREAD /* nothing */
|
2013-09-17 16:05:13 +00:00
|
|
|
#define NS_ASSERT_OWNINGTHREAD_AGGREGATE(agg, _class) ((void)0)
|
2001-09-27 03:43:00 +00:00
|
|
|
#define NS_ASSERT_OWNINGTHREAD(_class) ((void)0)
|
|
|
|
|
2013-09-24 01:53:40 +00:00
|
|
|
#endif // DEBUG || (NIGHTLY_BUILD && !MOZ_PROFILING)
|
2001-09-27 03:43:00 +00:00
|
|
|
|
2007-01-04 22:31:26 +00:00
|
|
|
// Support for ISupports classes which interact with cycle collector.
|
|
|
|
|
2013-07-09 17:30:58 +00:00
|
|
|
#define NS_NUMBER_OF_FLAGS_IN_REFCNT 2
|
|
|
|
#define NS_IN_PURPLE_BUFFER (1 << 0)
|
|
|
|
#define NS_IS_PURPLE (1 << 1)
|
|
|
|
#define NS_REFCOUNT_CHANGE (1 << NS_NUMBER_OF_FLAGS_IN_REFCNT)
|
|
|
|
#define NS_REFCOUNT_VALUE(_val) (_val >> NS_NUMBER_OF_FLAGS_IN_REFCNT)
|
|
|
|
|
2007-01-04 22:31:26 +00:00
|
|
|
class nsCycleCollectingAutoRefCnt {
|
|
|
|
|
2007-01-05 23:59:18 +00:00
|
|
|
public:
|
|
|
|
nsCycleCollectingAutoRefCnt()
|
2013-07-09 17:30:58 +00:00
|
|
|
: mRefCntAndFlags(0)
|
2007-01-05 23:59:18 +00:00
|
|
|
{}
|
|
|
|
|
2013-07-09 17:30:58 +00:00
|
|
|
nsCycleCollectingAutoRefCnt(uintptr_t aValue)
|
|
|
|
: mRefCntAndFlags(aValue << NS_NUMBER_OF_FLAGS_IN_REFCNT)
|
2007-01-05 23:59:18 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-12-18 03:29:57 +00:00
|
|
|
MOZ_ALWAYS_INLINE uintptr_t incr(nsISupports *owner)
|
|
|
|
{
|
|
|
|
return incr(owner, nullptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
MOZ_ALWAYS_INLINE uintptr_t incr(void *owner, nsCycleCollectionParticipant *p)
|
2007-01-05 23:59:18 +00:00
|
|
|
{
|
2013-07-09 17:30:58 +00:00
|
|
|
mRefCntAndFlags += NS_REFCOUNT_CHANGE;
|
|
|
|
mRefCntAndFlags &= ~NS_IS_PURPLE;
|
2013-12-18 03:29:57 +00:00
|
|
|
// For incremental cycle collection, use the purple buffer to track objects
|
|
|
|
// that have been AddRef'd.
|
|
|
|
if (!IsInPurpleBuffer()) {
|
|
|
|
mRefCntAndFlags |= NS_IN_PURPLE_BUFFER;
|
|
|
|
// Refcount isn't zero, so Suspect won't delete anything.
|
|
|
|
MOZ_ASSERT(get() > 0);
|
|
|
|
NS_CycleCollectorSuspect3(owner, p, this, nullptr);
|
|
|
|
}
|
2013-07-09 17:30:58 +00:00
|
|
|
return NS_REFCOUNT_VALUE(mRefCntAndFlags);
|
2007-01-05 23:59:18 +00:00
|
|
|
}
|
|
|
|
|
2012-09-08 10:46:48 +00:00
|
|
|
MOZ_ALWAYS_INLINE void stabilizeForDeletion()
|
2007-01-05 23:59:18 +00:00
|
|
|
{
|
2013-07-09 17:30:58 +00:00
|
|
|
// Set refcnt to 1 and mark us to be in the purple buffer.
|
|
|
|
// This way decr won't call suspect again.
|
|
|
|
mRefCntAndFlags = NS_REFCOUNT_CHANGE | NS_IN_PURPLE_BUFFER;
|
2007-01-05 23:59:18 +00:00
|
|
|
}
|
|
|
|
|
2013-07-09 17:30:58 +00:00
|
|
|
MOZ_ALWAYS_INLINE uintptr_t decr(nsISupports *owner,
|
|
|
|
bool *shouldDelete = nullptr)
|
2012-08-24 16:50:06 +00:00
|
|
|
{
|
2013-07-09 17:30:58 +00:00
|
|
|
return decr(owner, nullptr, shouldDelete);
|
2012-08-24 16:50:06 +00:00
|
|
|
}
|
|
|
|
|
2013-07-09 17:30:58 +00:00
|
|
|
MOZ_ALWAYS_INLINE uintptr_t decr(void *owner, nsCycleCollectionParticipant *p,
|
|
|
|
bool *shouldDelete = nullptr)
|
2007-01-05 23:59:18 +00:00
|
|
|
{
|
2013-07-09 17:30:58 +00:00
|
|
|
MOZ_ASSERT(get() > 0);
|
|
|
|
if (!IsInPurpleBuffer()) {
|
|
|
|
mRefCntAndFlags -= NS_REFCOUNT_CHANGE;
|
|
|
|
mRefCntAndFlags |= (NS_IN_PURPLE_BUFFER | NS_IS_PURPLE);
|
|
|
|
uintptr_t retval = NS_REFCOUNT_VALUE(mRefCntAndFlags);
|
|
|
|
// Suspect may delete 'owner' and 'this'!
|
|
|
|
NS_CycleCollectorSuspect3(owner, p, this, shouldDelete);
|
|
|
|
return retval;
|
2007-01-05 23:59:18 +00:00
|
|
|
}
|
2013-07-09 17:30:58 +00:00
|
|
|
mRefCntAndFlags -= NS_REFCOUNT_CHANGE;
|
|
|
|
mRefCntAndFlags |= (NS_IN_PURPLE_BUFFER | NS_IS_PURPLE);
|
|
|
|
return NS_REFCOUNT_VALUE(mRefCntAndFlags);
|
2009-05-06 20:46:04 +00:00
|
|
|
}
|
|
|
|
|
2012-09-08 10:46:48 +00:00
|
|
|
MOZ_ALWAYS_INLINE void RemovePurple()
|
2012-01-14 16:58:05 +00:00
|
|
|
{
|
2013-02-08 04:50:05 +00:00
|
|
|
MOZ_ASSERT(IsPurple(), "must be purple");
|
2013-07-09 17:30:58 +00:00
|
|
|
mRefCntAndFlags &= ~NS_IS_PURPLE;
|
2012-01-14 16:58:05 +00:00
|
|
|
}
|
|
|
|
|
2013-07-09 17:30:58 +00:00
|
|
|
MOZ_ALWAYS_INLINE void RemoveFromPurpleBuffer()
|
2009-05-06 20:46:04 +00:00
|
|
|
{
|
2013-07-09 17:30:58 +00:00
|
|
|
MOZ_ASSERT(IsInPurpleBuffer());
|
|
|
|
mRefCntAndFlags &= ~(NS_IS_PURPLE | NS_IN_PURPLE_BUFFER);
|
2007-03-16 12:52:47 +00:00
|
|
|
}
|
|
|
|
|
2012-09-08 10:46:48 +00:00
|
|
|
MOZ_ALWAYS_INLINE bool IsPurple() const
|
|
|
|
{
|
2013-07-09 17:30:58 +00:00
|
|
|
return !!(mRefCntAndFlags & NS_IS_PURPLE);
|
2012-09-08 10:46:48 +00:00
|
|
|
}
|
|
|
|
|
2013-07-09 17:30:58 +00:00
|
|
|
MOZ_ALWAYS_INLINE bool IsInPurpleBuffer() const
|
2007-01-05 23:59:18 +00:00
|
|
|
{
|
2013-07-09 17:30:58 +00:00
|
|
|
return !!(mRefCntAndFlags & NS_IN_PURPLE_BUFFER);
|
|
|
|
}
|
2007-01-05 23:59:18 +00:00
|
|
|
|
2013-07-09 17:30:58 +00:00
|
|
|
MOZ_ALWAYS_INLINE nsrefcnt get() const
|
|
|
|
{
|
|
|
|
return NS_REFCOUNT_VALUE(mRefCntAndFlags);
|
2007-01-05 23:59:18 +00:00
|
|
|
}
|
|
|
|
|
2012-09-08 10:46:48 +00:00
|
|
|
MOZ_ALWAYS_INLINE operator nsrefcnt() const
|
2007-01-05 23:59:18 +00:00
|
|
|
{
|
|
|
|
return get();
|
|
|
|
}
|
2007-01-04 22:31:26 +00:00
|
|
|
|
|
|
|
private:
|
2013-07-09 17:30:58 +00:00
|
|
|
uintptr_t mRefCntAndFlags;
|
2007-01-04 22:31:26 +00:00
|
|
|
};
|
|
|
|
|
2002-09-17 04:49:28 +00:00
|
|
|
class nsAutoRefCnt {
|
|
|
|
|
|
|
|
public:
|
|
|
|
nsAutoRefCnt() : mValue(0) {}
|
|
|
|
nsAutoRefCnt(nsrefcnt aValue) : mValue(aValue) {}
|
|
|
|
|
|
|
|
// only support prefix increment/decrement
|
|
|
|
nsrefcnt operator++() { return ++mValue; }
|
|
|
|
nsrefcnt operator--() { return --mValue; }
|
2007-01-05 23:59:18 +00:00
|
|
|
|
2002-09-17 04:49:28 +00:00
|
|
|
nsrefcnt operator=(nsrefcnt aValue) { return (mValue = aValue); }
|
|
|
|
operator nsrefcnt() const { return mValue; }
|
2002-09-30 14:18:27 +00:00
|
|
|
nsrefcnt get() const { return mValue; }
|
2013-07-14 01:28:54 +00:00
|
|
|
|
|
|
|
static const bool isThreadSafe = false;
|
2002-09-17 04:49:28 +00:00
|
|
|
private:
|
2013-07-14 01:28:54 +00:00
|
|
|
nsrefcnt operator++(int) MOZ_DELETE;
|
|
|
|
nsrefcnt operator--(int) MOZ_DELETE;
|
2002-09-17 04:49:28 +00:00
|
|
|
nsrefcnt mValue;
|
|
|
|
};
|
|
|
|
|
2013-07-14 01:18:03 +00:00
|
|
|
#ifndef XPCOM_GLUE
|
|
|
|
namespace mozilla {
|
|
|
|
class ThreadSafeAutoRefCnt {
|
|
|
|
public:
|
|
|
|
ThreadSafeAutoRefCnt() : mValue(0) {}
|
|
|
|
ThreadSafeAutoRefCnt(nsrefcnt aValue) : mValue(aValue) {}
|
|
|
|
|
|
|
|
// only support prefix increment/decrement
|
|
|
|
MOZ_ALWAYS_INLINE nsrefcnt operator++() { return ++mValue; }
|
|
|
|
MOZ_ALWAYS_INLINE nsrefcnt operator--() { return --mValue; }
|
|
|
|
|
|
|
|
MOZ_ALWAYS_INLINE nsrefcnt operator=(nsrefcnt aValue) { return (mValue = aValue); }
|
|
|
|
MOZ_ALWAYS_INLINE operator nsrefcnt() const { return mValue; }
|
|
|
|
MOZ_ALWAYS_INLINE nsrefcnt get() const { return mValue; }
|
2013-07-14 01:28:54 +00:00
|
|
|
|
|
|
|
static const bool isThreadSafe = true;
|
2013-07-14 01:18:03 +00:00
|
|
|
private:
|
|
|
|
nsrefcnt operator++(int) MOZ_DELETE;
|
|
|
|
nsrefcnt operator--(int) MOZ_DELETE;
|
|
|
|
// In theory, RelaseAcquire consistency (but no weaker) is sufficient for
|
|
|
|
// the counter. Making it weaker could speed up builds on ARM (but not x86),
|
|
|
|
// but could break pre-existing code that assumes sequential consistency.
|
|
|
|
Atomic<nsrefcnt> mValue;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2002-09-17 04:49:28 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2001-09-27 03:43:00 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Declare the reference count variable and the implementations of the
|
|
|
|
* AddRef and QueryInterface methods.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define NS_DECL_ISUPPORTS \
|
|
|
|
public: \
|
|
|
|
NS_IMETHOD QueryInterface(REFNSIID aIID, \
|
|
|
|
void** aInstancePtr); \
|
|
|
|
NS_IMETHOD_(nsrefcnt) AddRef(void); \
|
|
|
|
NS_IMETHOD_(nsrefcnt) Release(void); \
|
|
|
|
protected: \
|
2002-09-17 04:49:28 +00:00
|
|
|
nsAutoRefCnt mRefCnt; \
|
2001-09-27 03:43:00 +00:00
|
|
|
NS_DECL_OWNINGTHREAD \
|
|
|
|
public:
|
|
|
|
|
2013-07-14 01:28:54 +00:00
|
|
|
#define NS_DECL_THREADSAFE_ISUPPORTS \
|
|
|
|
public: \
|
|
|
|
NS_IMETHOD QueryInterface(REFNSIID aIID, \
|
|
|
|
void** aInstancePtr); \
|
|
|
|
NS_IMETHOD_(nsrefcnt) AddRef(void); \
|
|
|
|
NS_IMETHOD_(nsrefcnt) Release(void); \
|
|
|
|
protected: \
|
|
|
|
::mozilla::ThreadSafeAutoRefCnt mRefCnt; \
|
|
|
|
NS_DECL_OWNINGTHREAD \
|
|
|
|
public:
|
|
|
|
|
2007-01-04 22:31:26 +00:00
|
|
|
#define NS_DECL_CYCLE_COLLECTING_ISUPPORTS \
|
|
|
|
public: \
|
|
|
|
NS_IMETHOD QueryInterface(REFNSIID aIID, \
|
|
|
|
void** aInstancePtr); \
|
|
|
|
NS_IMETHOD_(nsrefcnt) AddRef(void); \
|
|
|
|
NS_IMETHOD_(nsrefcnt) Release(void); \
|
2013-07-09 17:30:58 +00:00
|
|
|
NS_IMETHOD_(void) DeleteCycleCollectable(void); \
|
2012-08-24 16:50:06 +00:00
|
|
|
protected: \
|
|
|
|
nsCycleCollectingAutoRefCnt mRefCnt; \
|
|
|
|
NS_DECL_OWNINGTHREAD \
|
|
|
|
public:
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Implementation of AddRef and Release for non-nsISupports (ie "native")
|
|
|
|
* cycle-collected classes that use the purple buffer to avoid leaks.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define NS_IMPL_CC_NATIVE_ADDREF_BODY(_class) \
|
2013-02-08 04:50:05 +00:00
|
|
|
MOZ_ASSERT(int32_t(mRefCnt) >= 0, "illegal refcnt"); \
|
2013-08-13 17:45:32 +00:00
|
|
|
NS_ASSERT_OWNINGTHREAD(_class); \
|
2013-12-18 03:29:57 +00:00
|
|
|
nsrefcnt count = \
|
|
|
|
mRefCnt.incr(static_cast<void*>(this), \
|
|
|
|
_class::NS_CYCLE_COLLECTION_INNERCLASS::GetParticipant()); \
|
2012-08-24 16:50:06 +00:00
|
|
|
NS_LOG_ADDREF(this, count, #_class, sizeof(*this)); \
|
|
|
|
return count;
|
|
|
|
|
|
|
|
#define NS_IMPL_CC_NATIVE_RELEASE_BODY(_class) \
|
2013-02-08 04:50:05 +00:00
|
|
|
MOZ_ASSERT(int32_t(mRefCnt) > 0, "dup release"); \
|
2013-08-13 17:45:32 +00:00
|
|
|
NS_ASSERT_OWNINGTHREAD(_class); \
|
2012-08-24 16:50:06 +00:00
|
|
|
nsrefcnt count = \
|
|
|
|
mRefCnt.decr(static_cast<void*>(this), \
|
2013-02-08 04:50:05 +00:00
|
|
|
_class::NS_CYCLE_COLLECTION_INNERCLASS::GetParticipant()); \
|
2012-08-24 16:50:06 +00:00
|
|
|
NS_LOG_RELEASE(this, count, #_class); \
|
|
|
|
return count;
|
|
|
|
|
|
|
|
#define NS_IMPL_CYCLE_COLLECTING_NATIVE_ADDREF(_class) \
|
|
|
|
NS_METHOD_(nsrefcnt) _class::AddRef(void) \
|
|
|
|
{ \
|
|
|
|
NS_IMPL_CC_NATIVE_ADDREF_BODY(_class) \
|
|
|
|
}
|
|
|
|
|
2013-07-09 17:30:58 +00:00
|
|
|
#define NS_IMPL_CYCLE_COLLECTING_NATIVE_RELEASE_WITH_LAST_RELEASE(_class, _last) \
|
|
|
|
NS_METHOD_(nsrefcnt) _class::Release(void) \
|
|
|
|
{ \
|
|
|
|
MOZ_ASSERT(int32_t(mRefCnt) > 0, "dup release"); \
|
2013-08-13 17:45:32 +00:00
|
|
|
NS_ASSERT_OWNINGTHREAD(_class); \
|
2013-07-09 17:30:58 +00:00
|
|
|
bool shouldDelete = false; \
|
|
|
|
nsrefcnt count = \
|
|
|
|
mRefCnt.decr(static_cast<void*>(this), \
|
|
|
|
_class::NS_CYCLE_COLLECTION_INNERCLASS::GetParticipant(), \
|
|
|
|
&shouldDelete); \
|
|
|
|
NS_LOG_RELEASE(this, count, #_class); \
|
|
|
|
if (count == 0) { \
|
2013-12-18 03:29:57 +00:00
|
|
|
mRefCnt.incr(static_cast<void*>(this), \
|
|
|
|
_class::NS_CYCLE_COLLECTION_INNERCLASS::GetParticipant()); \
|
2013-07-09 17:30:58 +00:00
|
|
|
_last; \
|
|
|
|
mRefCnt.decr(static_cast<void*>(this), \
|
|
|
|
_class::NS_CYCLE_COLLECTION_INNERCLASS::GetParticipant()); \
|
|
|
|
if (shouldDelete) { \
|
|
|
|
mRefCnt.stabilizeForDeletion(); \
|
|
|
|
DeleteCycleCollectable(); \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
return count; \
|
|
|
|
}
|
|
|
|
|
2012-08-24 16:50:06 +00:00
|
|
|
#define NS_IMPL_CYCLE_COLLECTING_NATIVE_RELEASE(_class) \
|
|
|
|
NS_METHOD_(nsrefcnt) _class::Release(void) \
|
|
|
|
{ \
|
|
|
|
NS_IMPL_CC_NATIVE_RELEASE_BODY(_class) \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define NS_INLINE_DECL_CYCLE_COLLECTING_NATIVE_REFCOUNTING(_class) \
|
|
|
|
public: \
|
|
|
|
NS_METHOD_(nsrefcnt) AddRef(void) { \
|
|
|
|
NS_IMPL_CC_NATIVE_ADDREF_BODY(_class) \
|
|
|
|
} \
|
|
|
|
NS_METHOD_(nsrefcnt) Release(void) { \
|
|
|
|
NS_IMPL_CC_NATIVE_RELEASE_BODY(_class) \
|
|
|
|
} \
|
2007-01-04 22:31:26 +00:00
|
|
|
protected: \
|
|
|
|
nsCycleCollectingAutoRefCnt mRefCnt; \
|
|
|
|
NS_DECL_OWNINGTHREAD \
|
|
|
|
public:
|
|
|
|
|
2001-09-27 03:43:00 +00:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/**
|
2002-11-06 13:09:20 +00:00
|
|
|
* Previously used to initialize the reference count, but no longer needed.
|
|
|
|
*
|
|
|
|
* DEPRECATED.
|
2001-09-27 03:43:00 +00:00
|
|
|
*/
|
2002-11-06 13:09:20 +00:00
|
|
|
#define NS_INIT_ISUPPORTS() ((void)0)
|
2001-09-27 03:43:00 +00:00
|
|
|
|
2010-04-01 18:05:40 +00:00
|
|
|
/**
|
|
|
|
* Use this macro to declare and implement the AddRef & Release methods for a
|
|
|
|
* given non-XPCOM <i>_class</i>.
|
|
|
|
*
|
|
|
|
* @param _class The name of the class implementing the method
|
|
|
|
*/
|
|
|
|
#define NS_INLINE_DECL_REFCOUNTING(_class) \
|
|
|
|
public: \
|
2011-09-27 00:45:25 +00:00
|
|
|
NS_METHOD_(nsrefcnt) AddRef(void) { \
|
2013-02-08 04:50:05 +00:00
|
|
|
MOZ_ASSERT(int32_t(mRefCnt) >= 0, "illegal refcnt"); \
|
2013-08-13 17:45:32 +00:00
|
|
|
NS_ASSERT_OWNINGTHREAD(_class); \
|
2010-04-01 18:05:40 +00:00
|
|
|
++mRefCnt; \
|
|
|
|
NS_LOG_ADDREF(this, mRefCnt, #_class, sizeof(*this)); \
|
2011-09-27 00:45:25 +00:00
|
|
|
return mRefCnt; \
|
2010-04-01 18:05:40 +00:00
|
|
|
} \
|
2011-09-27 00:45:25 +00:00
|
|
|
NS_METHOD_(nsrefcnt) Release(void) { \
|
2013-02-08 04:50:05 +00:00
|
|
|
MOZ_ASSERT(int32_t(mRefCnt) > 0, "dup release"); \
|
2013-08-13 17:45:32 +00:00
|
|
|
NS_ASSERT_OWNINGTHREAD(_class); \
|
2010-04-01 18:05:40 +00:00
|
|
|
--mRefCnt; \
|
|
|
|
NS_LOG_RELEASE(this, mRefCnt, #_class); \
|
|
|
|
if (mRefCnt == 0) { \
|
2010-11-11 22:52:30 +00:00
|
|
|
NS_ASSERT_OWNINGTHREAD(_class); \
|
2010-04-01 18:05:40 +00:00
|
|
|
mRefCnt = 1; /* stabilize */ \
|
2010-07-05 09:42:18 +00:00
|
|
|
delete this; \
|
2011-09-27 00:45:25 +00:00
|
|
|
return 0; \
|
2010-04-01 18:05:40 +00:00
|
|
|
} \
|
2011-09-27 00:45:25 +00:00
|
|
|
return mRefCnt; \
|
2010-04-01 18:05:40 +00:00
|
|
|
} \
|
|
|
|
protected: \
|
|
|
|
nsAutoRefCnt mRefCnt; \
|
2010-04-01 18:05:40 +00:00
|
|
|
NS_DECL_OWNINGTHREAD \
|
2010-04-01 18:05:40 +00:00
|
|
|
public:
|
|
|
|
|
2011-11-18 15:19:44 +00:00
|
|
|
/**
|
|
|
|
* Use this macro to declare and implement the AddRef & Release methods for a
|
|
|
|
* given non-XPCOM <i>_class</i> in a threadsafe manner.
|
|
|
|
*
|
|
|
|
* DOES NOT DO REFCOUNT STABILIZATION!
|
|
|
|
*
|
|
|
|
* @param _class The name of the class implementing the method
|
|
|
|
*/
|
|
|
|
#define NS_INLINE_DECL_THREADSAFE_REFCOUNTING(_class) \
|
|
|
|
public: \
|
|
|
|
NS_METHOD_(nsrefcnt) AddRef(void) { \
|
2013-02-08 04:50:05 +00:00
|
|
|
MOZ_ASSERT(int32_t(mRefCnt) >= 0, "illegal refcnt"); \
|
2013-07-14 01:18:03 +00:00
|
|
|
nsrefcnt count = ++mRefCnt; \
|
2011-11-18 15:19:44 +00:00
|
|
|
NS_LOG_ADDREF(this, count, #_class, sizeof(*this)); \
|
|
|
|
return (nsrefcnt) count; \
|
|
|
|
} \
|
|
|
|
NS_METHOD_(nsrefcnt) Release(void) { \
|
2013-02-08 04:50:05 +00:00
|
|
|
MOZ_ASSERT(int32_t(mRefCnt) > 0, "dup release"); \
|
2013-07-14 01:18:03 +00:00
|
|
|
nsrefcnt count = --mRefCnt; \
|
2011-11-18 15:19:44 +00:00
|
|
|
NS_LOG_RELEASE(this, count, #_class); \
|
|
|
|
if (count == 0) { \
|
|
|
|
delete (this); \
|
|
|
|
return 0; \
|
|
|
|
} \
|
|
|
|
return count; \
|
|
|
|
} \
|
|
|
|
protected: \
|
2013-07-14 01:18:03 +00:00
|
|
|
::mozilla::ThreadSafeAutoRefCnt mRefCnt; \
|
2011-11-18 15:19:44 +00:00
|
|
|
public:
|
|
|
|
|
2001-09-27 03:43:00 +00:00
|
|
|
/**
|
|
|
|
* Use this macro to implement the AddRef method for a given <i>_class</i>
|
|
|
|
* @param _class The name of the class implementing the method
|
|
|
|
*/
|
|
|
|
#define NS_IMPL_ADDREF(_class) \
|
|
|
|
NS_IMETHODIMP_(nsrefcnt) _class::AddRef(void) \
|
|
|
|
{ \
|
2013-02-08 04:50:05 +00:00
|
|
|
MOZ_ASSERT(int32_t(mRefCnt) >= 0, "illegal refcnt"); \
|
2013-07-14 01:28:54 +00:00
|
|
|
if (!mRefCnt.isThreadSafe) \
|
2013-08-13 17:45:32 +00:00
|
|
|
NS_ASSERT_OWNINGTHREAD(_class); \
|
2013-07-14 01:28:54 +00:00
|
|
|
nsrefcnt count = ++mRefCnt; \
|
|
|
|
NS_LOG_ADDREF(this, count, #_class, sizeof(*this)); \
|
|
|
|
return count; \
|
2001-09-27 03:43:00 +00:00
|
|
|
}
|
|
|
|
|
2001-12-26 21:30:20 +00:00
|
|
|
/**
|
|
|
|
* Use this macro to implement the AddRef method for a given <i>_class</i>
|
|
|
|
* implemented as a wholly owned aggregated object intended to implement
|
|
|
|
* interface(s) for its owner
|
|
|
|
* @param _class The name of the class implementing the method
|
|
|
|
* @param _aggregator the owning/containing object
|
|
|
|
*/
|
|
|
|
#define NS_IMPL_ADDREF_USING_AGGREGATOR(_class, _aggregator) \
|
|
|
|
NS_IMETHODIMP_(nsrefcnt) _class::AddRef(void) \
|
|
|
|
{ \
|
|
|
|
NS_PRECONDITION(_aggregator, "null aggregator"); \
|
2002-02-27 00:35:06 +00:00
|
|
|
return (_aggregator)->AddRef(); \
|
2001-12-26 21:30:20 +00:00
|
|
|
}
|
|
|
|
|
2001-09-27 03:43:00 +00:00
|
|
|
/**
|
|
|
|
* Use this macro to implement the Release method for a given
|
|
|
|
* <i>_class</i>.
|
|
|
|
* @param _class The name of the class implementing the method
|
|
|
|
* @param _destroy A statement that is executed when the object's
|
|
|
|
* refcount drops to zero.
|
|
|
|
*
|
|
|
|
* For example,
|
|
|
|
*
|
|
|
|
* NS_IMPL_RELEASE_WITH_DESTROY(Foo, Destroy(this))
|
|
|
|
*
|
|
|
|
* will cause
|
|
|
|
*
|
|
|
|
* Destroy(this);
|
|
|
|
*
|
|
|
|
* to be invoked when the object's refcount drops to zero. This
|
|
|
|
* allows for arbitrary teardown activity to occur (e.g., deallocation
|
|
|
|
* of object allocated with placement new).
|
|
|
|
*/
|
|
|
|
#define NS_IMPL_RELEASE_WITH_DESTROY(_class, _destroy) \
|
|
|
|
NS_IMETHODIMP_(nsrefcnt) _class::Release(void) \
|
|
|
|
{ \
|
2013-02-08 04:50:05 +00:00
|
|
|
MOZ_ASSERT(int32_t(mRefCnt) > 0, "dup release"); \
|
2013-07-14 01:28:54 +00:00
|
|
|
if (!mRefCnt.isThreadSafe) \
|
2013-08-13 17:45:32 +00:00
|
|
|
NS_ASSERT_OWNINGTHREAD(_class); \
|
2013-07-14 01:28:54 +00:00
|
|
|
nsrefcnt count = --mRefCnt; \
|
|
|
|
NS_LOG_RELEASE(this, count, #_class); \
|
|
|
|
if (count == 0) { \
|
|
|
|
if (!mRefCnt.isThreadSafe) \
|
|
|
|
NS_ASSERT_OWNINGTHREAD(_class); \
|
2001-09-27 03:43:00 +00:00
|
|
|
mRefCnt = 1; /* stabilize */ \
|
|
|
|
_destroy; \
|
|
|
|
return 0; \
|
|
|
|
} \
|
2013-07-14 01:28:54 +00:00
|
|
|
return count; \
|
2001-09-27 03:43:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Use this macro to implement the Release method for a given <i>_class</i>
|
|
|
|
* @param _class The name of the class implementing the method
|
|
|
|
*
|
|
|
|
* A note on the 'stabilization' of the refcnt to one. At that point,
|
|
|
|
* the object's refcount will have gone to zero. The object's
|
|
|
|
* destructor may trigger code that attempts to QueryInterface() and
|
|
|
|
* Release() 'this' again. Doing so will temporarily increment and
|
|
|
|
* decrement the refcount. (Only a logic error would make one try to
|
|
|
|
* keep a permanent hold on 'this'.) To prevent re-entering the
|
|
|
|
* destructor, we make sure that no balanced refcounting can return
|
|
|
|
* the refcount to |0|.
|
|
|
|
*/
|
|
|
|
#define NS_IMPL_RELEASE(_class) \
|
2010-07-05 09:42:18 +00:00
|
|
|
NS_IMPL_RELEASE_WITH_DESTROY(_class, delete (this))
|
2001-09-27 03:43:00 +00:00
|
|
|
|
2001-12-26 21:30:20 +00:00
|
|
|
/**
|
|
|
|
* Use this macro to implement the Release method for a given <i>_class</i>
|
|
|
|
* implemented as a wholly owned aggregated object intended to implement
|
|
|
|
* interface(s) for its owner
|
|
|
|
* @param _class The name of the class implementing the method
|
|
|
|
* @param _aggregator the owning/containing object
|
|
|
|
*/
|
|
|
|
#define NS_IMPL_RELEASE_USING_AGGREGATOR(_class, _aggregator) \
|
|
|
|
NS_IMETHODIMP_(nsrefcnt) _class::Release(void) \
|
|
|
|
{ \
|
|
|
|
NS_PRECONDITION(_aggregator, "null aggregator"); \
|
|
|
|
return (_aggregator)->Release(); \
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-06 11:11:31 +00:00
|
|
|
#define NS_IMPL_CYCLE_COLLECTING_ADDREF(_class) \
|
2007-01-04 22:31:26 +00:00
|
|
|
NS_IMETHODIMP_(nsrefcnt) _class::AddRef(void) \
|
|
|
|
{ \
|
2013-02-08 04:50:05 +00:00
|
|
|
MOZ_ASSERT(int32_t(mRefCnt) >= 0, "illegal refcnt"); \
|
2013-08-13 17:45:32 +00:00
|
|
|
NS_ASSERT_OWNINGTHREAD(_class); \
|
2013-12-18 03:29:57 +00:00
|
|
|
nsISupports *base = NS_CYCLE_COLLECTION_CLASSNAME(_class)::Upcast(this); \
|
|
|
|
nsrefcnt count = mRefCnt.incr(base); \
|
2007-03-05 21:11:21 +00:00
|
|
|
NS_LOG_ADDREF(this, count, #_class, sizeof(*this)); \
|
|
|
|
return count; \
|
2007-01-04 22:31:26 +00:00
|
|
|
}
|
|
|
|
|
2011-03-06 11:11:31 +00:00
|
|
|
#define NS_IMPL_CYCLE_COLLECTING_RELEASE_WITH_DESTROY(_class, _destroy) \
|
2007-01-04 22:31:26 +00:00
|
|
|
NS_IMETHODIMP_(nsrefcnt) _class::Release(void) \
|
|
|
|
{ \
|
2013-02-08 04:50:05 +00:00
|
|
|
MOZ_ASSERT(int32_t(mRefCnt) > 0, "dup release"); \
|
2013-08-13 17:45:32 +00:00
|
|
|
NS_ASSERT_OWNINGTHREAD(_class); \
|
2007-03-16 12:52:47 +00:00
|
|
|
nsISupports *base = NS_CYCLE_COLLECTION_CLASSNAME(_class)::Upcast(this); \
|
|
|
|
nsrefcnt count = mRefCnt.decr(base); \
|
2007-03-05 21:11:21 +00:00
|
|
|
NS_LOG_RELEASE(this, count, #_class); \
|
|
|
|
return count; \
|
2013-07-09 17:30:58 +00:00
|
|
|
} \
|
|
|
|
NS_IMETHODIMP_(void) _class::DeleteCycleCollectable(void) \
|
|
|
|
{ \
|
|
|
|
_destroy; \
|
2007-01-04 22:31:26 +00:00
|
|
|
}
|
|
|
|
|
2011-03-06 11:11:31 +00:00
|
|
|
#define NS_IMPL_CYCLE_COLLECTING_RELEASE(_class) \
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_RELEASE_WITH_DESTROY(_class, delete (this))
|
2007-01-04 22:31:26 +00:00
|
|
|
|
2013-07-09 17:30:58 +00:00
|
|
|
// _LAST_RELEASE can be useful when certain resources should be released
|
|
|
|
// as soon as we know the object will be deleted.
|
|
|
|
#define NS_IMPL_CYCLE_COLLECTING_RELEASE_WITH_LAST_RELEASE(_class, _last) \
|
|
|
|
NS_IMETHODIMP_(nsrefcnt) _class::Release(void) \
|
|
|
|
{ \
|
|
|
|
MOZ_ASSERT(int32_t(mRefCnt) > 0, "dup release"); \
|
2013-08-13 17:45:32 +00:00
|
|
|
NS_ASSERT_OWNINGTHREAD(_class); \
|
2013-07-09 17:30:58 +00:00
|
|
|
bool shouldDelete = false; \
|
|
|
|
nsISupports *base = NS_CYCLE_COLLECTION_CLASSNAME(_class)::Upcast(this); \
|
|
|
|
nsrefcnt count = mRefCnt.decr(base, &shouldDelete); \
|
|
|
|
NS_LOG_RELEASE(this, count, #_class); \
|
|
|
|
if (count == 0) { \
|
2013-12-18 03:29:57 +00:00
|
|
|
mRefCnt.incr(base); \
|
2013-07-09 17:30:58 +00:00
|
|
|
_last; \
|
|
|
|
mRefCnt.decr(base); \
|
|
|
|
if (shouldDelete) { \
|
|
|
|
mRefCnt.stabilizeForDeletion(); \
|
|
|
|
DeleteCycleCollectable(); \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
return count; \
|
|
|
|
} \
|
|
|
|
NS_IMETHODIMP_(void) _class::DeleteCycleCollectable(void) \
|
|
|
|
{ \
|
|
|
|
delete this; \
|
|
|
|
}
|
2001-09-27 03:43:00 +00:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2006-11-15 22:10:57 +00:00
|
|
|
/**
|
|
|
|
* There are two ways of implementing QueryInterface, and we use both:
|
|
|
|
*
|
|
|
|
* Table-driven QueryInterface uses a static table of IID->offset mappings
|
|
|
|
* and a shared helper function. Using it tends to reduce codesize and improve
|
|
|
|
* runtime performance (due to processor cache hits).
|
|
|
|
*
|
|
|
|
* Macro-driven QueryInterface generates a QueryInterface function directly
|
|
|
|
* using common macros. This is necessary if special QueryInterface features
|
|
|
|
* are being used (such as tearoffs and conditional interfaces).
|
|
|
|
*
|
|
|
|
* These methods can be combined into a table-driven function call followed
|
|
|
|
* by custom code for tearoffs and conditionals.
|
2001-09-27 03:43:00 +00:00
|
|
|
*/
|
|
|
|
|
2006-11-15 22:10:57 +00:00
|
|
|
struct QITableEntry
|
|
|
|
{
|
|
|
|
const nsIID *iid; // null indicates end of the QITableEntry array
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t offset;
|
2006-11-15 22:10:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
NS_COM_GLUE nsresult NS_FASTCALL
|
2013-12-14 00:50:02 +00:00
|
|
|
NS_TableDrivenQI(void* aThis, REFNSIID aIID,
|
|
|
|
void **aInstancePtr, const QITableEntry* entries);
|
2006-11-15 22:10:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Implement table-driven queryinterface
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define NS_INTERFACE_TABLE_HEAD(_class) \
|
|
|
|
NS_IMETHODIMP _class::QueryInterface(REFNSIID aIID, void** aInstancePtr) \
|
|
|
|
{ \
|
|
|
|
NS_ASSERTION(aInstancePtr, \
|
|
|
|
"QueryInterface requires a non-NULL destination!"); \
|
2007-08-20 22:55:06 +00:00
|
|
|
nsresult rv = NS_ERROR_FAILURE;
|
2006-11-15 22:10:57 +00:00
|
|
|
|
|
|
|
#define NS_INTERFACE_TABLE_BEGIN \
|
|
|
|
static const QITableEntry table[] = {
|
|
|
|
|
|
|
|
#define NS_INTERFACE_TABLE_ENTRY(_class, _interface) \
|
|
|
|
{ &_interface::COMTypeInfo<int>::kIID, \
|
2013-02-08 04:50:05 +00:00
|
|
|
int32_t(reinterpret_cast<char*>( \
|
2007-07-11 08:46:44 +00:00
|
|
|
static_cast<_interface*>((_class*) 0x1000)) - \
|
2008-03-06 23:03:50 +00:00
|
|
|
reinterpret_cast<char*>((_class*) 0x1000)) \
|
2006-11-15 22:10:57 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
#define NS_INTERFACE_TABLE_ENTRY_AMBIGUOUS(_class, _interface, _implClass) \
|
|
|
|
{ &_interface::COMTypeInfo<int>::kIID, \
|
2013-02-08 04:50:05 +00:00
|
|
|
int32_t(reinterpret_cast<char*>( \
|
2007-07-11 08:46:44 +00:00
|
|
|
static_cast<_interface*>( \
|
|
|
|
static_cast<_implClass*>( \
|
2006-11-15 22:10:57 +00:00
|
|
|
(_class*) 0x1000))) - \
|
2008-03-06 23:03:50 +00:00
|
|
|
reinterpret_cast<char*>((_class*) 0x1000)) \
|
2006-11-15 22:10:57 +00:00
|
|
|
},
|
|
|
|
|
2013-12-14 00:17:18 +00:00
|
|
|
/*
|
|
|
|
* XXX: we want to use mozilla::ArrayLength (or equivalent,
|
|
|
|
* MOZ_ARRAY_LENGTH) in this condition, but some versions of GCC don't
|
|
|
|
* see that the static_assert condition is actually constant in those
|
|
|
|
* cases, even with constexpr support (?).
|
|
|
|
*/
|
2007-08-20 22:55:06 +00:00
|
|
|
#define NS_INTERFACE_TABLE_END_WITH_PTR(_ptr) \
|
2013-02-08 04:50:05 +00:00
|
|
|
{ nullptr, 0 } }; \
|
2013-12-14 00:17:18 +00:00
|
|
|
static_assert((sizeof(table)/sizeof(table[0])) > 1, "need at least 1 interface"); \
|
2007-08-20 22:55:06 +00:00
|
|
|
rv = NS_TableDrivenQI(static_cast<void*>(_ptr), \
|
2013-12-14 00:50:02 +00:00
|
|
|
aIID, aInstancePtr, table);
|
2006-11-15 22:10:57 +00:00
|
|
|
|
2007-08-20 22:55:06 +00:00
|
|
|
#define NS_INTERFACE_TABLE_END \
|
|
|
|
NS_INTERFACE_TABLE_END_WITH_PTR(this)
|
|
|
|
|
2006-11-15 22:10:57 +00:00
|
|
|
#define NS_INTERFACE_TABLE_TAIL \
|
|
|
|
return rv; \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define NS_INTERFACE_TABLE_TAIL_INHERITING(_baseclass) \
|
|
|
|
if (NS_SUCCEEDED(rv)) \
|
|
|
|
return rv; \
|
|
|
|
return _baseclass::QueryInterface(aIID, aInstancePtr); \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define NS_INTERFACE_TABLE_TAIL_USING_AGGREGATOR(_aggregator) \
|
|
|
|
if (NS_SUCCEEDED(rv)) \
|
|
|
|
return rv; \
|
|
|
|
NS_ASSERTION(_aggregator, "null aggregator"); \
|
|
|
|
return _aggregator->QueryInterface(aIID, aInstancePtr) \
|
|
|
|
}
|
|
|
|
|
2001-09-27 03:43:00 +00:00
|
|
|
/**
|
|
|
|
* This implements query interface with two assumptions: First, the
|
|
|
|
* class in question implements nsISupports and its own interface and
|
|
|
|
* nothing else. Second, the implementation of the class's primary
|
|
|
|
* inheritance chain leads to its own interface.
|
|
|
|
*
|
|
|
|
* @param _class The name of the class implementing the method
|
|
|
|
* @param _classiiddef The name of the #define symbol that defines the IID
|
|
|
|
* for the class (e.g. NS_ISUPPORTS_IID)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define NS_IMPL_QUERY_HEAD(_class) \
|
|
|
|
NS_IMETHODIMP _class::QueryInterface(REFNSIID aIID, void** aInstancePtr) \
|
|
|
|
{ \
|
|
|
|
NS_ASSERTION(aInstancePtr, \
|
|
|
|
"QueryInterface requires a non-NULL destination!"); \
|
|
|
|
nsISupports* foundInterface;
|
|
|
|
|
|
|
|
#define NS_IMPL_QUERY_BODY(_interface) \
|
|
|
|
if ( aIID.Equals(NS_GET_IID(_interface)) ) \
|
2007-07-11 08:46:44 +00:00
|
|
|
foundInterface = static_cast<_interface*>(this); \
|
2001-09-27 03:43:00 +00:00
|
|
|
else
|
|
|
|
|
2002-10-07 18:52:27 +00:00
|
|
|
#define NS_IMPL_QUERY_BODY_CONDITIONAL(_interface, condition) \
|
|
|
|
if ( (condition) && aIID.Equals(NS_GET_IID(_interface))) \
|
2007-07-11 08:46:44 +00:00
|
|
|
foundInterface = static_cast<_interface*>(this); \
|
2002-10-07 18:52:27 +00:00
|
|
|
else
|
|
|
|
|
2001-09-27 03:43:00 +00:00
|
|
|
#define NS_IMPL_QUERY_BODY_AMBIGUOUS(_interface, _implClass) \
|
|
|
|
if ( aIID.Equals(NS_GET_IID(_interface)) ) \
|
2007-07-11 08:46:44 +00:00
|
|
|
foundInterface = static_cast<_interface*>( \
|
|
|
|
static_cast<_implClass*>(this)); \
|
2001-09-27 03:43:00 +00:00
|
|
|
else
|
|
|
|
|
2001-12-26 21:30:20 +00:00
|
|
|
#define NS_IMPL_QUERY_BODY_AGGREGATED(_interface, _aggregate) \
|
|
|
|
if ( aIID.Equals(NS_GET_IID(_interface)) ) \
|
2007-07-11 08:46:44 +00:00
|
|
|
foundInterface = static_cast<_interface*>(_aggregate); \
|
2001-12-26 21:30:20 +00:00
|
|
|
else
|
|
|
|
|
2001-09-27 03:43:00 +00:00
|
|
|
#define NS_IMPL_QUERY_TAIL_GUTS \
|
|
|
|
foundInterface = 0; \
|
|
|
|
nsresult status; \
|
|
|
|
if ( !foundInterface ) \
|
2012-08-28 16:33:47 +00:00
|
|
|
{ \
|
|
|
|
/* nsISupports should be handled by this point. If not, fail. */ \
|
|
|
|
MOZ_ASSERT(!aIID.Equals(NS_GET_IID(nsISupports))); \
|
|
|
|
status = NS_NOINTERFACE; \
|
|
|
|
} \
|
2001-09-27 03:43:00 +00:00
|
|
|
else \
|
|
|
|
{ \
|
|
|
|
NS_ADDREF(foundInterface); \
|
|
|
|
status = NS_OK; \
|
|
|
|
} \
|
|
|
|
*aInstancePtr = foundInterface; \
|
|
|
|
return status; \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define NS_IMPL_QUERY_TAIL_INHERITING(_baseclass) \
|
|
|
|
foundInterface = 0; \
|
|
|
|
nsresult status; \
|
|
|
|
if ( !foundInterface ) \
|
|
|
|
status = _baseclass::QueryInterface(aIID, (void**)&foundInterface); \
|
|
|
|
else \
|
|
|
|
{ \
|
|
|
|
NS_ADDREF(foundInterface); \
|
|
|
|
status = NS_OK; \
|
|
|
|
} \
|
|
|
|
*aInstancePtr = foundInterface; \
|
|
|
|
return status; \
|
|
|
|
}
|
|
|
|
|
2001-12-26 21:30:20 +00:00
|
|
|
#define NS_IMPL_QUERY_TAIL_USING_AGGREGATOR(_aggregator) \
|
|
|
|
foundInterface = 0; \
|
|
|
|
nsresult status; \
|
|
|
|
if ( !foundInterface ) { \
|
|
|
|
NS_ASSERTION(_aggregator, "null aggregator"); \
|
|
|
|
status = _aggregator->QueryInterface(aIID, (void**)&foundInterface); \
|
|
|
|
} else \
|
|
|
|
{ \
|
|
|
|
NS_ADDREF(foundInterface); \
|
|
|
|
status = NS_OK; \
|
|
|
|
} \
|
|
|
|
*aInstancePtr = foundInterface; \
|
|
|
|
return status; \
|
|
|
|
}
|
|
|
|
|
2001-09-27 03:43:00 +00:00
|
|
|
#define NS_IMPL_QUERY_TAIL(_supports_interface) \
|
|
|
|
NS_IMPL_QUERY_BODY_AMBIGUOUS(nsISupports, _supports_interface) \
|
|
|
|
NS_IMPL_QUERY_TAIL_GUTS
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
This is the new scheme. Using this notation now will allow us to switch to
|
|
|
|
a table driven mechanism when it's ready. Note the difference between this
|
|
|
|
and the (currently) underlying NS_IMPL_QUERY_INTERFACE mechanism. You must
|
|
|
|
explicitly mention |nsISupports| when using the interface maps.
|
|
|
|
*/
|
|
|
|
#define NS_INTERFACE_MAP_BEGIN(_implClass) NS_IMPL_QUERY_HEAD(_implClass)
|
|
|
|
#define NS_INTERFACE_MAP_ENTRY(_interface) NS_IMPL_QUERY_BODY(_interface)
|
2002-10-07 18:52:27 +00:00
|
|
|
#define NS_INTERFACE_MAP_ENTRY_CONDITIONAL(_interface, condition) \
|
|
|
|
NS_IMPL_QUERY_BODY_CONDITIONAL(_interface, condition)
|
2001-12-26 21:30:20 +00:00
|
|
|
#define NS_INTERFACE_MAP_ENTRY_AGGREGATED(_interface,_aggregate) \
|
|
|
|
NS_IMPL_QUERY_BODY_AGGREGATED(_interface,_aggregate)
|
|
|
|
|
2001-09-27 03:43:00 +00:00
|
|
|
#define NS_INTERFACE_MAP_END NS_IMPL_QUERY_TAIL_GUTS
|
|
|
|
#define NS_INTERFACE_MAP_ENTRY_AMBIGUOUS(_interface, _implClass) \
|
|
|
|
NS_IMPL_QUERY_BODY_AMBIGUOUS(_interface, _implClass)
|
|
|
|
#define NS_INTERFACE_MAP_END_INHERITING(_baseClass) \
|
|
|
|
NS_IMPL_QUERY_TAIL_INHERITING(_baseClass)
|
2001-12-26 21:30:20 +00:00
|
|
|
#define NS_INTERFACE_MAP_END_AGGREGATED(_aggregator) \
|
|
|
|
NS_IMPL_QUERY_TAIL_USING_AGGREGATOR(_aggregator)
|
2001-09-27 03:43:00 +00:00
|
|
|
|
2007-08-20 22:55:06 +00:00
|
|
|
#define NS_INTERFACE_TABLE0(_class) \
|
2006-11-15 22:10:57 +00:00
|
|
|
NS_INTERFACE_TABLE_BEGIN \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, nsISupports) \
|
2007-08-20 22:55:06 +00:00
|
|
|
NS_INTERFACE_TABLE_END
|
2001-09-27 03:43:00 +00:00
|
|
|
|
2007-08-20 22:55:06 +00:00
|
|
|
#define NS_INTERFACE_TABLE1(_class, _i1) \
|
2006-11-15 22:10:57 +00:00
|
|
|
NS_INTERFACE_TABLE_BEGIN \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i1) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY_AMBIGUOUS(_class, nsISupports, _i1) \
|
2007-08-20 22:55:06 +00:00
|
|
|
NS_INTERFACE_TABLE_END
|
2001-09-27 03:43:00 +00:00
|
|
|
|
2007-08-20 22:55:06 +00:00
|
|
|
#define NS_INTERFACE_TABLE2(_class, _i1, _i2) \
|
2006-11-15 22:10:57 +00:00
|
|
|
NS_INTERFACE_TABLE_BEGIN \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i1) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i2) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY_AMBIGUOUS(_class, nsISupports, _i1) \
|
2007-08-20 22:55:06 +00:00
|
|
|
NS_INTERFACE_TABLE_END
|
2001-09-27 03:43:00 +00:00
|
|
|
|
2007-08-20 22:55:06 +00:00
|
|
|
#define NS_INTERFACE_TABLE3(_class, _i1, _i2, _i3) \
|
2006-11-15 22:10:57 +00:00
|
|
|
NS_INTERFACE_TABLE_BEGIN \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i1) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i2) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i3) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY_AMBIGUOUS(_class, nsISupports, _i1) \
|
2007-08-20 22:55:06 +00:00
|
|
|
NS_INTERFACE_TABLE_END
|
2001-09-27 03:43:00 +00:00
|
|
|
|
2007-08-20 22:55:06 +00:00
|
|
|
#define NS_INTERFACE_TABLE4(_class, _i1, _i2, _i3, _i4) \
|
2006-11-15 22:10:57 +00:00
|
|
|
NS_INTERFACE_TABLE_BEGIN \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i1) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i2) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i3) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i4) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY_AMBIGUOUS(_class, nsISupports, _i1) \
|
2007-08-20 22:55:06 +00:00
|
|
|
NS_INTERFACE_TABLE_END
|
2001-09-27 03:43:00 +00:00
|
|
|
|
2007-08-20 22:55:06 +00:00
|
|
|
#define NS_INTERFACE_TABLE5(_class, _i1, _i2, _i3, _i4, _i5) \
|
2006-11-15 22:10:57 +00:00
|
|
|
NS_INTERFACE_TABLE_BEGIN \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i1) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i2) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i3) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i4) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i5) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY_AMBIGUOUS(_class, nsISupports, _i1) \
|
2007-08-20 22:55:06 +00:00
|
|
|
NS_INTERFACE_TABLE_END
|
2001-09-27 03:43:00 +00:00
|
|
|
|
2007-08-20 22:55:06 +00:00
|
|
|
#define NS_INTERFACE_TABLE6(_class, _i1, _i2, _i3, _i4, _i5, _i6) \
|
2006-11-15 22:10:57 +00:00
|
|
|
NS_INTERFACE_TABLE_BEGIN \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i1) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i2) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i3) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i4) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i5) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i6) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY_AMBIGUOUS(_class, nsISupports, _i1) \
|
2007-08-20 22:55:06 +00:00
|
|
|
NS_INTERFACE_TABLE_END
|
2001-09-27 03:43:00 +00:00
|
|
|
|
2007-08-20 22:55:06 +00:00
|
|
|
#define NS_INTERFACE_TABLE7(_class, _i1, _i2, _i3, _i4, _i5, _i6, _i7) \
|
2006-11-15 22:10:57 +00:00
|
|
|
NS_INTERFACE_TABLE_BEGIN \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i1) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i2) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i3) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i4) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i5) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i6) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i7) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY_AMBIGUOUS(_class, nsISupports, _i1) \
|
2007-08-20 22:55:06 +00:00
|
|
|
NS_INTERFACE_TABLE_END
|
2001-09-27 03:43:00 +00:00
|
|
|
|
2007-08-20 22:55:06 +00:00
|
|
|
#define NS_INTERFACE_TABLE8(_class, _i1, _i2, _i3, _i4, _i5, _i6, _i7, _i8) \
|
2006-11-15 22:10:57 +00:00
|
|
|
NS_INTERFACE_TABLE_BEGIN \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i1) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i2) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i3) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i4) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i5) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i6) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i7) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i8) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY_AMBIGUOUS(_class, nsISupports, _i1) \
|
2007-08-20 22:55:06 +00:00
|
|
|
NS_INTERFACE_TABLE_END
|
2001-09-27 03:43:00 +00:00
|
|
|
|
2007-08-20 22:55:06 +00:00
|
|
|
#define NS_INTERFACE_TABLE9(_class, _i1, _i2, _i3, _i4, _i5, _i6, _i7, \
|
|
|
|
_i8, _i9) \
|
2006-11-15 22:10:57 +00:00
|
|
|
NS_INTERFACE_TABLE_BEGIN \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i1) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i2) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i3) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i4) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i5) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i6) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i7) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i8) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i9) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY_AMBIGUOUS(_class, nsISupports, _i1) \
|
2007-08-20 22:55:06 +00:00
|
|
|
NS_INTERFACE_TABLE_END
|
2001-09-27 03:43:00 +00:00
|
|
|
|
2007-08-20 22:55:06 +00:00
|
|
|
#define NS_INTERFACE_TABLE10(_class, _i1, _i2, _i3, _i4, _i5, _i6, _i7, \
|
|
|
|
_i8, _i9, _i10) \
|
2006-11-15 22:10:57 +00:00
|
|
|
NS_INTERFACE_TABLE_BEGIN \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i1) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i2) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i3) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i4) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i5) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i6) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i7) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i8) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i9) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i10) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY_AMBIGUOUS(_class, nsISupports, _i1) \
|
2007-08-20 22:55:06 +00:00
|
|
|
NS_INTERFACE_TABLE_END
|
2001-09-27 03:43:00 +00:00
|
|
|
|
2007-08-20 22:55:06 +00:00
|
|
|
#define NS_INTERFACE_TABLE11(_class, _i1, _i2, _i3, _i4, _i5, _i6, _i7, \
|
|
|
|
_i8, _i9, _i10, _i11) \
|
2006-11-15 22:10:57 +00:00
|
|
|
NS_INTERFACE_TABLE_BEGIN \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i1) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i2) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i3) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i4) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i5) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i6) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i7) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i8) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i9) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i10) \
|
2007-08-02 18:14:28 +00:00
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i11) \
|
2006-11-15 22:10:57 +00:00
|
|
|
NS_INTERFACE_TABLE_ENTRY_AMBIGUOUS(_class, nsISupports, _i1) \
|
2007-08-20 22:55:06 +00:00
|
|
|
NS_INTERFACE_TABLE_END
|
|
|
|
|
2014-01-06 18:52:42 +00:00
|
|
|
#define NS_INTERFACE_TABLE12(_class, _i1, _i2, _i3, _i4, _i5, _i6, _i7, \
|
|
|
|
_i8, _i9, _i10, _i11, _i12) \
|
|
|
|
NS_INTERFACE_TABLE_BEGIN \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i1) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i2) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i3) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i4) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i5) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i6) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i7) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i8) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i9) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i10) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i11) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, _i12) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY_AMBIGUOUS(_class, nsISupports, _i1) \
|
|
|
|
NS_INTERFACE_TABLE_END
|
|
|
|
|
2007-08-20 22:55:06 +00:00
|
|
|
#define NS_IMPL_QUERY_INTERFACE0(_class) \
|
|
|
|
NS_INTERFACE_TABLE_HEAD(_class) \
|
|
|
|
NS_INTERFACE_TABLE0(_class) \
|
|
|
|
NS_INTERFACE_TABLE_TAIL
|
|
|
|
|
|
|
|
#define NS_IMPL_QUERY_INTERFACE1(_class, _i1) \
|
|
|
|
NS_INTERFACE_TABLE_HEAD(_class) \
|
|
|
|
NS_INTERFACE_TABLE1(_class, _i1) \
|
|
|
|
NS_INTERFACE_TABLE_TAIL
|
|
|
|
|
|
|
|
#define NS_IMPL_QUERY_INTERFACE2(_class, _i1, _i2) \
|
|
|
|
NS_INTERFACE_TABLE_HEAD(_class) \
|
|
|
|
NS_INTERFACE_TABLE2(_class, _i1, _i2) \
|
|
|
|
NS_INTERFACE_TABLE_TAIL
|
|
|
|
|
|
|
|
#define NS_IMPL_QUERY_INTERFACE3(_class, _i1, _i2, _i3) \
|
|
|
|
NS_INTERFACE_TABLE_HEAD(_class) \
|
|
|
|
NS_INTERFACE_TABLE3(_class, _i1, _i2, _i3) \
|
|
|
|
NS_INTERFACE_TABLE_TAIL
|
|
|
|
|
|
|
|
#define NS_IMPL_QUERY_INTERFACE4(_class, _i1, _i2, _i3, _i4) \
|
|
|
|
NS_INTERFACE_TABLE_HEAD(_class) \
|
|
|
|
NS_INTERFACE_TABLE4(_class, _i1, _i2, _i3, _i4) \
|
|
|
|
NS_INTERFACE_TABLE_TAIL
|
|
|
|
|
|
|
|
#define NS_IMPL_QUERY_INTERFACE5(_class, _i1, _i2, _i3, _i4, _i5) \
|
|
|
|
NS_INTERFACE_TABLE_HEAD(_class) \
|
|
|
|
NS_INTERFACE_TABLE5(_class, _i1, _i2, _i3, _i4, _i5) \
|
|
|
|
NS_INTERFACE_TABLE_TAIL
|
|
|
|
|
|
|
|
#define NS_IMPL_QUERY_INTERFACE6(_class, _i1, _i2, _i3, _i4, _i5, _i6) \
|
|
|
|
NS_INTERFACE_TABLE_HEAD(_class) \
|
|
|
|
NS_INTERFACE_TABLE6(_class, _i1, _i2, _i3, _i4, _i5, _i6) \
|
|
|
|
NS_INTERFACE_TABLE_TAIL
|
|
|
|
|
|
|
|
#define NS_IMPL_QUERY_INTERFACE7(_class, _i1, _i2, _i3, _i4, _i5, _i6, _i7) \
|
|
|
|
NS_INTERFACE_TABLE_HEAD(_class) \
|
|
|
|
NS_INTERFACE_TABLE7(_class, _i1, _i2, _i3, _i4, _i5, _i6, _i7) \
|
|
|
|
NS_INTERFACE_TABLE_TAIL
|
|
|
|
|
|
|
|
#define NS_IMPL_QUERY_INTERFACE8(_class, _i1, _i2, _i3, _i4, _i5, _i6, \
|
|
|
|
_i7, _i8) \
|
|
|
|
NS_INTERFACE_TABLE_HEAD(_class) \
|
|
|
|
NS_INTERFACE_TABLE8(_class, _i1, _i2, _i3, _i4, _i5, _i6, _i7, _i8) \
|
|
|
|
NS_INTERFACE_TABLE_TAIL
|
|
|
|
|
|
|
|
#define NS_IMPL_QUERY_INTERFACE9(_class, _i1, _i2, _i3, _i4, _i5, _i6, \
|
|
|
|
_i7, _i8, _i9) \
|
|
|
|
NS_INTERFACE_TABLE_HEAD(_class) \
|
|
|
|
NS_INTERFACE_TABLE9(_class, _i1, _i2, _i3, _i4, _i5, _i6, _i7, _i8, _i9) \
|
|
|
|
NS_INTERFACE_TABLE_TAIL
|
|
|
|
|
|
|
|
#define NS_IMPL_QUERY_INTERFACE10(_class, _i1, _i2, _i3, _i4, _i5, _i6, \
|
|
|
|
_i7, _i8, _i9, _i10) \
|
|
|
|
NS_INTERFACE_TABLE_HEAD(_class) \
|
|
|
|
NS_INTERFACE_TABLE10(_class, _i1, _i2, _i3, _i4, _i5, _i6, _i7, _i8, \
|
|
|
|
_i9, _i10) \
|
|
|
|
NS_INTERFACE_TABLE_TAIL
|
|
|
|
|
|
|
|
#define NS_IMPL_QUERY_INTERFACE11(_class, _i1, _i2, _i3, _i4, _i5, _i6, \
|
|
|
|
_i7, _i8, _i9, _i10, _i11) \
|
|
|
|
NS_INTERFACE_TABLE_HEAD(_class) \
|
|
|
|
NS_INTERFACE_TABLE11(_class, _i1, _i2, _i3, _i4, _i5, _i6, _i7, _i8, \
|
|
|
|
_i9, _i10, _i11) \
|
2006-11-15 22:10:57 +00:00
|
|
|
NS_INTERFACE_TABLE_TAIL
|
2002-09-27 19:23:21 +00:00
|
|
|
|
2014-01-06 18:52:42 +00:00
|
|
|
#define NS_IMPL_QUERY_INTERFACE12(_class, _i1, _i2, _i3, _i4, _i5, _i6, \
|
|
|
|
_i7, _i8, _i9, _i10, _i11, _i12) \
|
|
|
|
NS_INTERFACE_TABLE_HEAD(_class) \
|
|
|
|
NS_INTERFACE_TABLE12(_class, _i1, _i2, _i3, _i4, _i5, _i6, _i7, _i8, \
|
|
|
|
_i9, _i10, _i11, _i12) \
|
|
|
|
NS_INTERFACE_TABLE_TAIL
|
|
|
|
|
2002-09-27 19:23:21 +00:00
|
|
|
|
2001-09-27 03:43:00 +00:00
|
|
|
/**
|
|
|
|
* Declare that you're going to inherit from something that already
|
|
|
|
* implements nsISupports, but also implements an additional interface, thus
|
|
|
|
* causing an ambiguity. In this case you don't need another mRefCnt, you
|
|
|
|
* just need to forward the definitions to the appropriate superclass. E.g.
|
|
|
|
*
|
|
|
|
* class Bar : public Foo, public nsIBar { // both provide nsISupports
|
|
|
|
* public:
|
|
|
|
* NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
* ...other nsIBar and Bar methods...
|
|
|
|
* };
|
|
|
|
*/
|
|
|
|
#define NS_DECL_ISUPPORTS_INHERITED \
|
|
|
|
public: \
|
|
|
|
NS_IMETHOD QueryInterface(REFNSIID aIID, \
|
|
|
|
void** aInstancePtr); \
|
|
|
|
NS_IMETHOD_(nsrefcnt) AddRef(void); \
|
|
|
|
NS_IMETHOD_(nsrefcnt) Release(void); \
|
|
|
|
|
|
|
|
/**
|
|
|
|
* These macros can be used in conjunction with NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
* to implement the nsISupports methods, forwarding the invocations to a
|
|
|
|
* superclass that already implements nsISupports.
|
|
|
|
*
|
|
|
|
* Note that I didn't make these inlined because they're virtual methods.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define NS_IMPL_ADDREF_INHERITED(Class, Super) \
|
|
|
|
NS_IMETHODIMP_(nsrefcnt) Class::AddRef(void) \
|
|
|
|
{ \
|
2007-04-18 19:27:39 +00:00
|
|
|
nsrefcnt r = Super::AddRef(); \
|
|
|
|
NS_LOG_ADDREF(this, r, #Class, sizeof(*this)); \
|
|
|
|
return r; \
|
2009-04-09 18:01:16 +00:00
|
|
|
}
|
2001-09-27 03:43:00 +00:00
|
|
|
|
|
|
|
#define NS_IMPL_RELEASE_INHERITED(Class, Super) \
|
|
|
|
NS_IMETHODIMP_(nsrefcnt) Class::Release(void) \
|
|
|
|
{ \
|
2007-04-18 19:27:39 +00:00
|
|
|
nsrefcnt r = Super::Release(); \
|
|
|
|
NS_LOG_RELEASE(this, r, #Class); \
|
|
|
|
return r; \
|
2009-04-09 18:01:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* As above but not logging the addref/release; needed if the base
|
|
|
|
* class might be aggregated.
|
|
|
|
*/
|
|
|
|
#define NS_IMPL_NONLOGGING_ADDREF_INHERITED(Class, Super) \
|
|
|
|
NS_IMETHODIMP_(nsrefcnt) Class::AddRef(void) \
|
|
|
|
{ \
|
|
|
|
return Super::AddRef(); \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define NS_IMPL_NONLOGGING_RELEASE_INHERITED(Class, Super) \
|
|
|
|
NS_IMETHODIMP_(nsrefcnt) Class::Release(void) \
|
|
|
|
{ \
|
|
|
|
return Super::Release(); \
|
|
|
|
}
|
2001-09-27 03:43:00 +00:00
|
|
|
|
2007-08-20 22:55:06 +00:00
|
|
|
#define NS_INTERFACE_TABLE_INHERITED0(Class) /* Nothing to do here */
|
2001-09-27 03:43:00 +00:00
|
|
|
|
2007-08-20 22:55:06 +00:00
|
|
|
#define NS_INTERFACE_TABLE_INHERITED1(Class, i1) \
|
2006-11-15 22:10:57 +00:00
|
|
|
NS_INTERFACE_TABLE_BEGIN \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i1) \
|
2007-08-20 22:55:06 +00:00
|
|
|
NS_INTERFACE_TABLE_END
|
2001-09-27 03:43:00 +00:00
|
|
|
|
2007-08-20 22:55:06 +00:00
|
|
|
#define NS_INTERFACE_TABLE_INHERITED2(Class, i1, i2) \
|
2006-11-15 22:10:57 +00:00
|
|
|
NS_INTERFACE_TABLE_BEGIN \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i1) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i2) \
|
2007-08-20 22:55:06 +00:00
|
|
|
NS_INTERFACE_TABLE_END
|
2001-09-27 03:43:00 +00:00
|
|
|
|
2007-08-20 22:55:06 +00:00
|
|
|
#define NS_INTERFACE_TABLE_INHERITED3(Class, i1, i2, i3) \
|
2006-11-15 22:10:57 +00:00
|
|
|
NS_INTERFACE_TABLE_BEGIN \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i1) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i2) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i3) \
|
2007-08-20 22:55:06 +00:00
|
|
|
NS_INTERFACE_TABLE_END
|
2001-09-27 03:43:00 +00:00
|
|
|
|
2007-08-20 22:55:06 +00:00
|
|
|
#define NS_INTERFACE_TABLE_INHERITED4(Class, i1, i2, i3, i4) \
|
2006-11-15 22:10:57 +00:00
|
|
|
NS_INTERFACE_TABLE_BEGIN \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i1) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i2) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i3) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i4) \
|
2007-08-20 22:55:06 +00:00
|
|
|
NS_INTERFACE_TABLE_END
|
2001-09-27 03:43:00 +00:00
|
|
|
|
2007-08-20 22:55:06 +00:00
|
|
|
#define NS_INTERFACE_TABLE_INHERITED5(Class, i1, i2, i3, i4, i5) \
|
2006-11-15 22:10:57 +00:00
|
|
|
NS_INTERFACE_TABLE_BEGIN \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i1) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i2) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i3) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i4) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i5) \
|
2007-08-20 22:55:06 +00:00
|
|
|
NS_INTERFACE_TABLE_END
|
2001-09-27 03:43:00 +00:00
|
|
|
|
2007-08-20 22:55:06 +00:00
|
|
|
#define NS_INTERFACE_TABLE_INHERITED6(Class, i1, i2, i3, i4, i5, i6) \
|
|
|
|
NS_INTERFACE_TABLE_BEGIN \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i1) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i2) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i3) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i4) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i5) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i6) \
|
|
|
|
NS_INTERFACE_TABLE_END
|
|
|
|
|
|
|
|
#define NS_INTERFACE_TABLE_INHERITED7(Class, i1, i2, i3, i4, i5, i6, i7) \
|
|
|
|
NS_INTERFACE_TABLE_BEGIN \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i1) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i2) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i3) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i4) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i5) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i6) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i7) \
|
|
|
|
NS_INTERFACE_TABLE_END
|
|
|
|
|
|
|
|
#define NS_INTERFACE_TABLE_INHERITED8(Class, i1, i2, i3, i4, i5, i6, i7, i8) \
|
|
|
|
NS_INTERFACE_TABLE_BEGIN \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i1) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i2) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i3) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i4) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i5) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i6) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i7) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i8) \
|
|
|
|
NS_INTERFACE_TABLE_END
|
|
|
|
|
|
|
|
#define NS_INTERFACE_TABLE_INHERITED9(Class, i1, i2, i3, i4, i5, i6, i7, \
|
|
|
|
i8, i9) \
|
2006-11-15 22:10:57 +00:00
|
|
|
NS_INTERFACE_TABLE_BEGIN \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i1) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i2) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i3) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i4) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i5) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i6) \
|
2007-08-20 22:55:06 +00:00
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i7) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i8) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i9) \
|
|
|
|
NS_INTERFACE_TABLE_END
|
|
|
|
|
2008-04-06 12:28:34 +00:00
|
|
|
#define NS_INTERFACE_TABLE_INHERITED10(Class, i1, i2, i3, i4, i5, i6, i7, \
|
|
|
|
i8, i9, i10) \
|
|
|
|
NS_INTERFACE_TABLE_BEGIN \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i1) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i2) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i3) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i4) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i5) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i6) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i7) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i8) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i9) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i10) \
|
|
|
|
NS_INTERFACE_TABLE_END
|
|
|
|
|
|
|
|
#define NS_INTERFACE_TABLE_INHERITED11(Class, i1, i2, i3, i4, i5, i6, i7, \
|
|
|
|
i8, i9, i10, i11) \
|
|
|
|
NS_INTERFACE_TABLE_BEGIN \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i1) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i2) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i3) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i4) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i5) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i6) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i7) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i8) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i9) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i10) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i11) \
|
|
|
|
NS_INTERFACE_TABLE_END
|
|
|
|
|
|
|
|
#define NS_INTERFACE_TABLE_INHERITED12(Class, i1, i2, i3, i4, i5, i6, i7, \
|
|
|
|
i8, i9, i10, i11, i12) \
|
|
|
|
NS_INTERFACE_TABLE_BEGIN \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i1) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i2) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i3) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i4) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i5) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i6) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i7) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i8) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i9) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i10) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i11) \
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(Class, i12) \
|
|
|
|
NS_INTERFACE_TABLE_END
|
|
|
|
|
2007-08-20 22:55:06 +00:00
|
|
|
#define NS_IMPL_QUERY_INTERFACE_INHERITED0(Class, Super) \
|
|
|
|
NS_INTERFACE_TABLE_HEAD(Class) \
|
|
|
|
NS_INTERFACE_TABLE_INHERITED0(Class) \
|
|
|
|
NS_INTERFACE_TABLE_TAIL_INHERITING(Super)
|
|
|
|
|
|
|
|
#define NS_IMPL_QUERY_INTERFACE_INHERITED1(Class, Super, i1) \
|
|
|
|
NS_INTERFACE_TABLE_HEAD(Class) \
|
|
|
|
NS_INTERFACE_TABLE_INHERITED1(Class, i1) \
|
|
|
|
NS_INTERFACE_TABLE_TAIL_INHERITING(Super)
|
|
|
|
|
|
|
|
#define NS_IMPL_QUERY_INTERFACE_INHERITED2(Class, Super, i1, i2) \
|
|
|
|
NS_INTERFACE_TABLE_HEAD(Class) \
|
|
|
|
NS_INTERFACE_TABLE_INHERITED2(Class, i1, i2) \
|
|
|
|
NS_INTERFACE_TABLE_TAIL_INHERITING(Super)
|
|
|
|
|
|
|
|
#define NS_IMPL_QUERY_INTERFACE_INHERITED3(Class, Super, i1, i2, i3) \
|
|
|
|
NS_INTERFACE_TABLE_HEAD(Class) \
|
|
|
|
NS_INTERFACE_TABLE_INHERITED3(Class, i1, i2, i3) \
|
|
|
|
NS_INTERFACE_TABLE_TAIL_INHERITING(Super)
|
|
|
|
|
|
|
|
#define NS_IMPL_QUERY_INTERFACE_INHERITED4(Class, Super, i1, i2, i3, i4) \
|
|
|
|
NS_INTERFACE_TABLE_HEAD(Class) \
|
|
|
|
NS_INTERFACE_TABLE_INHERITED4(Class, i1, i2, i3, i4) \
|
|
|
|
NS_INTERFACE_TABLE_TAIL_INHERITING(Super)
|
|
|
|
|
|
|
|
#define NS_IMPL_QUERY_INTERFACE_INHERITED5(Class,Super,i1,i2,i3,i4,i5) \
|
|
|
|
NS_INTERFACE_TABLE_HEAD(Class) \
|
|
|
|
NS_INTERFACE_TABLE_INHERITED5(Class, i1, i2, i3, i4, i5) \
|
|
|
|
NS_INTERFACE_TABLE_TAIL_INHERITING(Super)
|
|
|
|
|
|
|
|
#define NS_IMPL_QUERY_INTERFACE_INHERITED6(Class,Super,i1,i2,i3,i4,i5,i6) \
|
|
|
|
NS_INTERFACE_TABLE_HEAD(Class) \
|
|
|
|
NS_INTERFACE_TABLE_INHERITED6(Class, i1, i2, i3, i4, i5, i6) \
|
|
|
|
NS_INTERFACE_TABLE_TAIL_INHERITING(Super)
|
|
|
|
|
|
|
|
#define NS_IMPL_QUERY_INTERFACE_INHERITED7(Class,Super,i1,i2,i3,i4,i5,i6,i7) \
|
|
|
|
NS_INTERFACE_TABLE_HEAD(Class) \
|
|
|
|
NS_INTERFACE_TABLE_INHERITED7(Class, i1, i2, i3, i4, i5, i6, i7) \
|
|
|
|
NS_INTERFACE_TABLE_TAIL_INHERITING(Super)
|
|
|
|
|
|
|
|
#define NS_IMPL_QUERY_INTERFACE_INHERITED8(Class,Super,i1,i2,i3,i4,i5,i6, \
|
|
|
|
i7,i8) \
|
|
|
|
NS_INTERFACE_TABLE_HEAD(Class) \
|
|
|
|
NS_INTERFACE_TABLE_INHERITED8(Class, i1, i2, i3, i4, i5, i6, i7, i8) \
|
|
|
|
NS_INTERFACE_TABLE_TAIL_INHERITING(Super)
|
|
|
|
|
|
|
|
#define NS_IMPL_QUERY_INTERFACE_INHERITED9(Class,Super,i1,i2,i3,i4,i5,i6, \
|
|
|
|
i7,i8,i9) \
|
|
|
|
NS_INTERFACE_TABLE_HEAD(Class) \
|
|
|
|
NS_INTERFACE_TABLE_INHERITED9(Class, i1, i2, i3, i4, i5, i6, i7, i8, i9) \
|
2006-11-15 22:10:57 +00:00
|
|
|
NS_INTERFACE_TABLE_TAIL_INHERITING(Super)
|
2001-09-27 03:43:00 +00:00
|
|
|
|
2012-05-24 15:31:54 +00:00
|
|
|
#define NS_IMPL_QUERY_INTERFACE_INHERITED10(Class,Super,i1,i2,i3,i4,i5,i6, \
|
|
|
|
i7,i8,i9,i10) \
|
|
|
|
NS_INTERFACE_TABLE_HEAD(Class) \
|
|
|
|
NS_INTERFACE_TABLE_INHERITED10(Class, i1, i2, i3, i4, i5, i6, i7, i8, i9, i10) \
|
|
|
|
NS_INTERFACE_TABLE_TAIL_INHERITING(Super)
|
|
|
|
|
2001-10-02 03:18:08 +00:00
|
|
|
/**
|
|
|
|
* Convenience macros for implementing all nsISupports methods for
|
|
|
|
* a simple class.
|
|
|
|
* @param _class The name of the class implementing the method
|
|
|
|
* @param _classiiddef The name of the #define symbol that defines the IID
|
|
|
|
* for the class (e.g. NS_ISUPPORTS_IID)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define NS_IMPL_ISUPPORTS0(_class) \
|
|
|
|
NS_IMPL_ADDREF(_class) \
|
|
|
|
NS_IMPL_RELEASE(_class) \
|
|
|
|
NS_IMPL_QUERY_INTERFACE0(_class)
|
|
|
|
|
|
|
|
#define NS_IMPL_ISUPPORTS1(_class, _interface) \
|
|
|
|
NS_IMPL_ADDREF(_class) \
|
|
|
|
NS_IMPL_RELEASE(_class) \
|
|
|
|
NS_IMPL_QUERY_INTERFACE1(_class, _interface)
|
|
|
|
|
|
|
|
#define NS_IMPL_ISUPPORTS2(_class, _i1, _i2) \
|
|
|
|
NS_IMPL_ADDREF(_class) \
|
|
|
|
NS_IMPL_RELEASE(_class) \
|
|
|
|
NS_IMPL_QUERY_INTERFACE2(_class, _i1, _i2)
|
|
|
|
|
|
|
|
#define NS_IMPL_ISUPPORTS3(_class, _i1, _i2, _i3) \
|
|
|
|
NS_IMPL_ADDREF(_class) \
|
|
|
|
NS_IMPL_RELEASE(_class) \
|
|
|
|
NS_IMPL_QUERY_INTERFACE3(_class, _i1, _i2, _i3)
|
|
|
|
|
|
|
|
#define NS_IMPL_ISUPPORTS4(_class, _i1, _i2, _i3, _i4) \
|
|
|
|
NS_IMPL_ADDREF(_class) \
|
|
|
|
NS_IMPL_RELEASE(_class) \
|
|
|
|
NS_IMPL_QUERY_INTERFACE4(_class, _i1, _i2, _i3, _i4)
|
|
|
|
|
|
|
|
#define NS_IMPL_ISUPPORTS5(_class, _i1, _i2, _i3, _i4, _i5) \
|
|
|
|
NS_IMPL_ADDREF(_class) \
|
|
|
|
NS_IMPL_RELEASE(_class) \
|
|
|
|
NS_IMPL_QUERY_INTERFACE5(_class, _i1, _i2, _i3, _i4, _i5)
|
|
|
|
|
|
|
|
#define NS_IMPL_ISUPPORTS6(_class, _i1, _i2, _i3, _i4, _i5, _i6) \
|
|
|
|
NS_IMPL_ADDREF(_class) \
|
|
|
|
NS_IMPL_RELEASE(_class) \
|
|
|
|
NS_IMPL_QUERY_INTERFACE6(_class, _i1, _i2, _i3, _i4, _i5, _i6)
|
|
|
|
|
|
|
|
#define NS_IMPL_ISUPPORTS7(_class, _i1, _i2, _i3, _i4, _i5, _i6, _i7) \
|
|
|
|
NS_IMPL_ADDREF(_class) \
|
|
|
|
NS_IMPL_RELEASE(_class) \
|
|
|
|
NS_IMPL_QUERY_INTERFACE7(_class, _i1, _i2, _i3, _i4, _i5, _i6, _i7)
|
|
|
|
|
|
|
|
#define NS_IMPL_ISUPPORTS8(_class, _i1, _i2, _i3, _i4, _i5, _i6, _i7, _i8) \
|
|
|
|
NS_IMPL_ADDREF(_class) \
|
|
|
|
NS_IMPL_RELEASE(_class) \
|
|
|
|
NS_IMPL_QUERY_INTERFACE8(_class, _i1, _i2, _i3, _i4, _i5, _i6, _i7, _i8)
|
|
|
|
|
|
|
|
#define NS_IMPL_ISUPPORTS9(_class, _i1, _i2, _i3, _i4, _i5, _i6, _i7, _i8, \
|
|
|
|
_i9) \
|
|
|
|
NS_IMPL_ADDREF(_class) \
|
|
|
|
NS_IMPL_RELEASE(_class) \
|
|
|
|
NS_IMPL_QUERY_INTERFACE9(_class, _i1, _i2, _i3, _i4, _i5, _i6, _i7, _i8, _i9)
|
|
|
|
|
|
|
|
#define NS_IMPL_ISUPPORTS10(_class, _i1, _i2, _i3, _i4, _i5, _i6, _i7, _i8, \
|
|
|
|
_i9, _i10) \
|
|
|
|
NS_IMPL_ADDREF(_class) \
|
|
|
|
NS_IMPL_RELEASE(_class) \
|
|
|
|
NS_IMPL_QUERY_INTERFACE10(_class, _i1, _i2, _i3, _i4, _i5, _i6, _i7, _i8, \
|
|
|
|
_i9, _i10)
|
2001-09-27 03:43:00 +00:00
|
|
|
|
2002-09-27 19:23:21 +00:00
|
|
|
#define NS_IMPL_ISUPPORTS11(_class, _i1, _i2, _i3, _i4, _i5, _i6, _i7, _i8, \
|
|
|
|
_i9, _i10, _i11) \
|
|
|
|
NS_IMPL_ADDREF(_class) \
|
|
|
|
NS_IMPL_RELEASE(_class) \
|
2002-09-27 20:35:33 +00:00
|
|
|
NS_IMPL_QUERY_INTERFACE11(_class, _i1, _i2, _i3, _i4, _i5, _i6, _i7, _i8, \
|
2002-09-27 19:23:21 +00:00
|
|
|
_i9, _i10, _i11)
|
|
|
|
|
2014-01-06 18:52:42 +00:00
|
|
|
#define NS_IMPL_ISUPPORTS12(_class, _i1, _i2, _i3, _i4, _i5, _i6, _i7, _i8, \
|
|
|
|
_i9, _i10, _i11, _i12) \
|
|
|
|
NS_IMPL_ADDREF(_class) \
|
|
|
|
NS_IMPL_RELEASE(_class) \
|
|
|
|
NS_IMPL_QUERY_INTERFACE12(_class, _i1, _i2, _i3, _i4, _i5, _i6, _i7, _i8, \
|
|
|
|
_i9, _i10, _i11, _i12)
|
|
|
|
|
2001-09-27 03:43:00 +00:00
|
|
|
#define NS_IMPL_ISUPPORTS_INHERITED0(Class, Super) \
|
|
|
|
NS_IMPL_QUERY_INTERFACE_INHERITED0(Class, Super) \
|
|
|
|
NS_IMPL_ADDREF_INHERITED(Class, Super) \
|
|
|
|
NS_IMPL_RELEASE_INHERITED(Class, Super) \
|
|
|
|
|
|
|
|
#define NS_IMPL_ISUPPORTS_INHERITED1(Class, Super, i1) \
|
|
|
|
NS_IMPL_QUERY_INTERFACE_INHERITED1(Class, Super, i1) \
|
|
|
|
NS_IMPL_ADDREF_INHERITED(Class, Super) \
|
|
|
|
NS_IMPL_RELEASE_INHERITED(Class, Super) \
|
|
|
|
|
|
|
|
#define NS_IMPL_ISUPPORTS_INHERITED2(Class, Super, i1, i2) \
|
|
|
|
NS_IMPL_QUERY_INTERFACE_INHERITED2(Class, Super, i1, i2) \
|
|
|
|
NS_IMPL_ADDREF_INHERITED(Class, Super) \
|
|
|
|
NS_IMPL_RELEASE_INHERITED(Class, Super) \
|
|
|
|
|
|
|
|
#define NS_IMPL_ISUPPORTS_INHERITED3(Class, Super, i1, i2, i3) \
|
|
|
|
NS_IMPL_QUERY_INTERFACE_INHERITED3(Class, Super, i1, i2, i3) \
|
|
|
|
NS_IMPL_ADDREF_INHERITED(Class, Super) \
|
|
|
|
NS_IMPL_RELEASE_INHERITED(Class, Super) \
|
|
|
|
|
|
|
|
#define NS_IMPL_ISUPPORTS_INHERITED4(Class, Super, i1, i2, i3, i4) \
|
|
|
|
NS_IMPL_QUERY_INTERFACE_INHERITED4(Class, Super, i1, i2, i3, i4) \
|
|
|
|
NS_IMPL_ADDREF_INHERITED(Class, Super) \
|
|
|
|
NS_IMPL_RELEASE_INHERITED(Class, Super) \
|
|
|
|
|
|
|
|
#define NS_IMPL_ISUPPORTS_INHERITED5(Class, Super, i1, i2, i3, i4, i5) \
|
|
|
|
NS_IMPL_QUERY_INTERFACE_INHERITED5(Class, Super, i1, i2, i3, i4, i5) \
|
|
|
|
NS_IMPL_ADDREF_INHERITED(Class, Super) \
|
|
|
|
NS_IMPL_RELEASE_INHERITED(Class, Super) \
|
|
|
|
|
|
|
|
#define NS_IMPL_ISUPPORTS_INHERITED6(Class, Super, i1, i2, i3, i4, i5, i6) \
|
|
|
|
NS_IMPL_QUERY_INTERFACE_INHERITED6(Class, Super, i1, i2, i3, i4, i5, i6) \
|
|
|
|
NS_IMPL_ADDREF_INHERITED(Class, Super) \
|
|
|
|
NS_IMPL_RELEASE_INHERITED(Class, Super) \
|
|
|
|
|
2007-01-30 21:21:06 +00:00
|
|
|
#define NS_IMPL_ISUPPORTS_INHERITED7(Class, Super, i1, i2, i3, i4, i5, i6, i7) \
|
|
|
|
NS_IMPL_QUERY_INTERFACE_INHERITED7(Class, Super, i1, i2, i3, i4, i5, i6, i7) \
|
|
|
|
NS_IMPL_ADDREF_INHERITED(Class, Super) \
|
|
|
|
NS_IMPL_RELEASE_INHERITED(Class, Super) \
|
|
|
|
|
2010-09-15 22:55:08 +00:00
|
|
|
#define NS_IMPL_ISUPPORTS_INHERITED8(Class, Super, i1, i2, i3, i4, i5, i6, i7, i8) \
|
|
|
|
NS_IMPL_QUERY_INTERFACE_INHERITED8(Class, Super, i1, i2, i3, i4, i5, i6, i7, i8) \
|
|
|
|
NS_IMPL_ADDREF_INHERITED(Class, Super) \
|
|
|
|
NS_IMPL_RELEASE_INHERITED(Class, Super) \
|
2011-05-24 09:32:26 +00:00
|
|
|
|
|
|
|
#define NS_IMPL_ISUPPORTS_INHERITED9(Class, Super, i1, i2, i3, i4, i5, i6, i7, i8, i9) \
|
|
|
|
NS_IMPL_QUERY_INTERFACE_INHERITED9(Class, Super, i1, i2, i3, i4, i5, i6, i7, i8, i9) \
|
|
|
|
NS_IMPL_ADDREF_INHERITED(Class, Super) \
|
|
|
|
NS_IMPL_RELEASE_INHERITED(Class, Super) \
|
2012-05-24 15:31:54 +00:00
|
|
|
|
|
|
|
#define NS_IMPL_ISUPPORTS_INHERITED10(Class, Super, i1, i2, i3, i4, i5, i6, i7, i8, i9, i10) \
|
|
|
|
NS_IMPL_QUERY_INTERFACE_INHERITED10(Class, Super, i1, i2, i3, i4, i5, i6, i7, i8, i9, i10) \
|
|
|
|
NS_IMPL_ADDREF_INHERITED(Class, Super) \
|
|
|
|
NS_IMPL_RELEASE_INHERITED(Class, Super) \
|
2007-08-20 22:55:06 +00:00
|
|
|
/*
|
|
|
|
* Macro to glue together a QI that starts with an interface table
|
|
|
|
* and segues into an interface map (e.g. it uses singleton classinfo
|
|
|
|
* or tearoffs).
|
|
|
|
*/
|
|
|
|
#define NS_INTERFACE_TABLE_TO_MAP_SEGUE \
|
|
|
|
if (rv == NS_OK) return rv; \
|
|
|
|
nsISupports* foundInterface;
|
|
|
|
|
|
|
|
|
2001-09-27 03:43:00 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
/**
|
|
|
|
*
|
2005-07-01 12:24:07 +00:00
|
|
|
* Threadsafe implementations of the ISupports convenience macros.
|
2001-09-27 03:43:00 +00:00
|
|
|
*
|
2005-07-01 12:24:07 +00:00
|
|
|
* @note These are not available when linking against the standalone glue,
|
|
|
|
* because the implementation requires PR_ symbols.
|
2001-09-27 03:43:00 +00:00
|
|
|
*/
|
|
|
|
#define NS_INTERFACE_MAP_END_THREADSAFE NS_IMPL_QUERY_TAIL_GUTS
|
|
|
|
|
2007-03-25 07:31:45 +00:00
|
|
|
/**
|
|
|
|
* Macro to generate nsIClassInfo methods for classes which do not have
|
|
|
|
* corresponding nsIFactory implementations.
|
|
|
|
*/
|
|
|
|
#define NS_IMPL_THREADSAFE_CI(_class) \
|
|
|
|
NS_IMETHODIMP \
|
2012-08-22 15:56:38 +00:00
|
|
|
_class::GetInterfaces(uint32_t* _count, nsIID*** _array) \
|
2007-03-25 07:31:45 +00:00
|
|
|
{ \
|
|
|
|
return NS_CI_INTERFACE_GETTER_NAME(_class)(_count, _array); \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
NS_IMETHODIMP \
|
2012-08-22 15:56:38 +00:00
|
|
|
_class::GetHelperForLanguage(uint32_t _language, nsISupports** _retval) \
|
2007-03-25 07:31:45 +00:00
|
|
|
{ \
|
2013-02-08 04:50:05 +00:00
|
|
|
*_retval = nullptr; \
|
2007-03-25 07:31:45 +00:00
|
|
|
return NS_OK; \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
NS_IMETHODIMP \
|
|
|
|
_class::GetContractID(char** _contractID) \
|
|
|
|
{ \
|
2013-02-08 04:50:05 +00:00
|
|
|
*_contractID = nullptr; \
|
2007-03-25 07:31:45 +00:00
|
|
|
return NS_OK; \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
NS_IMETHODIMP \
|
|
|
|
_class::GetClassDescription(char** _classDescription) \
|
|
|
|
{ \
|
2013-02-08 04:50:05 +00:00
|
|
|
*_classDescription = nullptr; \
|
2007-03-25 07:31:45 +00:00
|
|
|
return NS_OK; \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
NS_IMETHODIMP \
|
|
|
|
_class::GetClassID(nsCID** _classID) \
|
|
|
|
{ \
|
2013-02-08 04:50:05 +00:00
|
|
|
*_classID = nullptr; \
|
2007-03-25 07:31:45 +00:00
|
|
|
return NS_OK; \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
NS_IMETHODIMP \
|
2012-08-22 15:56:38 +00:00
|
|
|
_class::GetImplementationLanguage(uint32_t* _language) \
|
2007-03-25 07:31:45 +00:00
|
|
|
{ \
|
|
|
|
*_language = nsIProgrammingLanguage::CPLUSPLUS; \
|
|
|
|
return NS_OK; \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
NS_IMETHODIMP \
|
2012-08-22 15:56:38 +00:00
|
|
|
_class::GetFlags(uint32_t* _flags) \
|
2007-03-25 07:31:45 +00:00
|
|
|
{ \
|
|
|
|
*_flags = nsIClassInfo::THREADSAFE; \
|
|
|
|
return NS_OK; \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
NS_IMETHODIMP \
|
|
|
|
_class::GetClassIDNoAlloc(nsCID* _classIDNoAlloc) \
|
|
|
|
{ \
|
|
|
|
return NS_ERROR_NOT_AVAILABLE; \
|
|
|
|
}
|
|
|
|
|
2001-09-27 03:43:00 +00:00
|
|
|
#endif
|