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: */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
2012-05-21 11:12:37 +00:00
|
|
|
* 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-08-21 20:07:27 +00:00
|
|
|
|
1999-08-03 03:41:27 +00:00
|
|
|
// nsWeakReference.cpp
|
|
|
|
|
2011-11-21 06:21:16 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
|
|
|
|
1999-08-03 03:41:27 +00:00
|
|
|
#include "nsWeakReference.h"
|
1999-08-03 08:34:17 +00:00
|
|
|
#include "nsCOMPtr.h"
|
1999-08-03 03:41:27 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
class nsWeakReference final : public nsIWeakReference
|
2014-06-27 01:35:39 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
// nsISupports...
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
|
|
|
// nsIWeakReference...
|
|
|
|
NS_DECL_NSIWEAKREFERENCE
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual size_t SizeOfOnlyThis(mozilla::MallocSizeOf aMallocSizeOf) const override;
|
2014-06-27 01:35:39 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
friend class nsSupportsWeakReference;
|
|
|
|
|
2014-07-30 00:43:56 +00:00
|
|
|
explicit nsWeakReference(nsSupportsWeakReference* aReferent)
|
2014-06-27 01:35:39 +00:00
|
|
|
: mReferent(aReferent)
|
|
|
|
// ...I can only be constructed by an |nsSupportsWeakReference|
|
2006-04-19 16:29:31 +00:00
|
|
|
{
|
2014-06-27 01:35:39 +00:00
|
|
|
}
|
2006-04-19 16:29:31 +00:00
|
|
|
|
2014-06-27 01:35:39 +00:00
|
|
|
~nsWeakReference()
|
|
|
|
// ...I will only be destroyed by calling |delete| myself.
|
1999-11-23 03:10:02 +00:00
|
|
|
{
|
2014-06-27 01:35:39 +00:00
|
|
|
if (mReferent) {
|
|
|
|
mReferent->NoticeProxyDestruction();
|
|
|
|
}
|
1999-11-23 03:10:02 +00:00
|
|
|
}
|
1999-10-31 00:35:48 +00:00
|
|
|
|
2014-06-27 01:35:39 +00:00
|
|
|
void
|
|
|
|
NoticeReferentDestruction()
|
|
|
|
// ...called (only) by an |nsSupportsWeakReference| from _its_ dtor.
|
1999-08-21 20:07:27 +00:00
|
|
|
{
|
2014-06-27 01:35:39 +00:00
|
|
|
mReferent = 0;
|
|
|
|
}
|
|
|
|
|
2014-12-24 02:17:50 +00:00
|
|
|
nsSupportsWeakReference* MOZ_NON_OWNING_REF mReferent;
|
2014-06-27 01:35:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsQueryReferent::operator()(const nsIID& aIID, void** aAnswer) const
|
|
|
|
{
|
|
|
|
nsresult status;
|
|
|
|
if (mWeakPtr) {
|
|
|
|
if (NS_FAILED(status = mWeakPtr->QueryReferent(aIID, aAnswer))) {
|
|
|
|
*aAnswer = 0;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
status = NS_ERROR_NULL_POINTER;
|
1999-08-21 20:07:27 +00:00
|
|
|
}
|
1999-08-03 03:41:27 +00:00
|
|
|
|
2014-06-27 01:35:39 +00:00
|
|
|
if (mErrorPtr) {
|
|
|
|
*mErrorPtr = status;
|
|
|
|
}
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2014-08-27 22:47:27 +00:00
|
|
|
nsIWeakReference* // or else |already_AddRefed<nsIWeakReference>|
|
2014-06-27 01:35:39 +00:00
|
|
|
NS_GetWeakReference(nsISupports* aInstancePtr, nsresult* aErrorPtr)
|
|
|
|
{
|
|
|
|
nsresult status;
|
|
|
|
|
|
|
|
nsIWeakReference* result = nullptr;
|
|
|
|
|
|
|
|
if (aInstancePtr) {
|
|
|
|
nsCOMPtr<nsISupportsWeakReference> factoryPtr =
|
|
|
|
do_QueryInterface(aInstancePtr, &status);
|
|
|
|
if (factoryPtr) {
|
|
|
|
status = factoryPtr->GetWeakReference(&result);
|
|
|
|
}
|
|
|
|
// else, |status| has already been set by |do_QueryInterface|
|
|
|
|
} else {
|
|
|
|
status = NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aErrorPtr) {
|
|
|
|
*aErrorPtr = status;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2014-08-27 22:47:27 +00:00
|
|
|
nsresult
|
2014-06-27 01:35:39 +00:00
|
|
|
nsSupportsWeakReference::GetWeakReference(nsIWeakReference** aInstancePtr)
|
|
|
|
{
|
|
|
|
if (!aInstancePtr) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!mProxy) {
|
|
|
|
mProxy = new nsWeakReference(this);
|
|
|
|
}
|
|
|
|
*aInstancePtr = mProxy;
|
|
|
|
|
|
|
|
nsresult status;
|
|
|
|
if (!*aInstancePtr) {
|
|
|
|
status = NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
} else {
|
|
|
|
NS_ADDREF(*aInstancePtr);
|
|
|
|
status = NS_OK;
|
1999-08-21 20:07:27 +00:00
|
|
|
}
|
1999-08-03 03:41:27 +00:00
|
|
|
|
2014-06-27 01:35:39 +00:00
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2014-04-27 07:06:00 +00:00
|
|
|
NS_IMPL_ISUPPORTS(nsWeakReference, nsIWeakReference)
|
1999-08-03 03:41:27 +00:00
|
|
|
|
1999-08-11 23:48:08 +00:00
|
|
|
NS_IMETHODIMP
|
2014-06-27 01:35:39 +00:00
|
|
|
nsWeakReference::QueryReferent(const nsIID& aIID, void** aInstancePtr)
|
|
|
|
{
|
|
|
|
return mReferent ? mReferent->QueryInterface(aIID, aInstancePtr) :
|
|
|
|
NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
2006-04-19 16:29:31 +00:00
|
|
|
|
2014-06-22 22:02:59 +00:00
|
|
|
size_t
|
|
|
|
nsWeakReference::SizeOfOnlyThis(mozilla::MallocSizeOf aMallocSizeOf) const
|
2014-06-27 01:35:39 +00:00
|
|
|
{
|
|
|
|
return aMallocSizeOf(this);
|
|
|
|
}
|
2014-06-22 22:02:59 +00:00
|
|
|
|
2006-04-19 16:29:31 +00:00
|
|
|
void
|
|
|
|
nsSupportsWeakReference::ClearWeakReferences()
|
2014-06-27 01:35:39 +00:00
|
|
|
{
|
|
|
|
if (mProxy) {
|
|
|
|
mProxy->NoticeReferentDestruction();
|
|
|
|
mProxy = 0;
|
|
|
|
}
|
|
|
|
}
|
2006-04-19 16:29:31 +00:00
|
|
|
|