2014-06-30 19:39:45 +04: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 15:12:37 +04: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-22 00:07:27 +04:00
|
|
|
|
1999-08-03 07:41:27 +04:00
|
|
|
// nsWeakReference.cpp
|
|
|
|
|
2011-11-21 10:21:16 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
|
|
|
|
1999-08-03 07:41:27 +04:00
|
|
|
#include "nsWeakReference.h"
|
1999-08-03 12:34:17 +04:00
|
|
|
#include "nsCOMPtr.h"
|
2016-08-01 14:16:16 +03:00
|
|
|
#include "nsDebug.h"
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class nsWeakReference final : public nsIWeakReference {
|
2014-06-27 05:35:39 +04:00
|
|
|
public:
|
|
|
|
// nsISupports...
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
|
|
|
// nsIWeakReference...
|
|
|
|
NS_DECL_NSIWEAKREFERENCE
|
2016-11-16 15:27:07 +03:00
|
|
|
size_t SizeOfOnlyThis(mozilla::MallocSizeOf aMallocSizeOf) const override;
|
2014-06-27 05:35:39 +04:00
|
|
|
|
|
|
|
private:
|
|
|
|
friend class nsSupportsWeakReference;
|
|
|
|
|
2014-07-30 04:43:56 +04:00
|
|
|
explicit nsWeakReference(nsSupportsWeakReference* aReferent)
|
2017-08-25 20:48:29 +03:00
|
|
|
: nsIWeakReference(aReferent)
|
2014-06-27 05:35:39 +04:00
|
|
|
// ...I can only be constructed by an |nsSupportsWeakReference|
|
|
|
|
{}
|
2006-04-19 20:29:31 +04:00
|
|
|
|
2014-06-27 05:35:39 +04:00
|
|
|
~nsWeakReference()
|
|
|
|
// ...I will only be destroyed by calling |delete| myself.
|
1999-11-23 06:10:02 +03:00
|
|
|
{
|
2016-08-01 14:16:16 +03:00
|
|
|
MOZ_WEAKREF_ASSERT_OWNINGTHREAD;
|
2017-08-25 20:48:29 +03:00
|
|
|
if (mObject) {
|
|
|
|
static_cast<nsSupportsWeakReference*>(mObject)->NoticeProxyDestruction();
|
2014-06-27 05:35:39 +04:00
|
|
|
}
|
1999-11-23 06:10:02 +03:00
|
|
|
}
|
1999-10-31 03:35:48 +03:00
|
|
|
|
2014-06-27 05:35:39 +04:00
|
|
|
void NoticeReferentDestruction()
|
|
|
|
// ...called (only) by an |nsSupportsWeakReference| from _its_ dtor.
|
1999-08-22 00:07:27 +04:00
|
|
|
{
|
2016-08-01 14:16:16 +03:00
|
|
|
MOZ_WEAKREF_ASSERT_OWNINGTHREAD;
|
2017-08-25 20:48:29 +03:00
|
|
|
mObject = nullptr;
|
2014-06-27 05:35:39 +04: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-22 00:07:27 +04:00
|
|
|
}
|
1999-08-03 07:41:27 +04:00
|
|
|
|
2014-06-27 05:35:39 +04:00
|
|
|
if (mErrorPtr) {
|
|
|
|
*mErrorPtr = status;
|
|
|
|
}
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2017-09-05 22:39:40 +03:00
|
|
|
nsIWeakReference* NS_GetWeakReference(nsISupportsWeakReference* aInstancePtr,
|
|
|
|
nsresult* aErrorPtr) {
|
|
|
|
nsresult status;
|
|
|
|
|
|
|
|
nsIWeakReference* result = nullptr;
|
|
|
|
|
|
|
|
if (aInstancePtr) {
|
|
|
|
status = aInstancePtr->GetWeakReference(&result);
|
|
|
|
} else {
|
|
|
|
status = NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aErrorPtr) {
|
|
|
|
*aErrorPtr = status;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2014-08-28 02:47:27 +04:00
|
|
|
nsIWeakReference* // or else |already_AddRefed<nsIWeakReference>|
|
2014-06-27 05:35:39 +04: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;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult nsSupportsWeakReference::GetWeakReference(
|
|
|
|
nsIWeakReference** aInstancePtr) {
|
|
|
|
if (!aInstancePtr) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!mProxy) {
|
|
|
|
mProxy = new nsWeakReference(this);
|
2016-08-01 14:16:16 +03:00
|
|
|
} else {
|
|
|
|
MOZ_WEAKREF_ASSERT_OWNINGTHREAD_DELEGATED(mProxy);
|
2014-06-27 05:35:39 +04:00
|
|
|
}
|
|
|
|
*aInstancePtr = mProxy;
|
|
|
|
|
|
|
|
nsresult status;
|
|
|
|
if (!*aInstancePtr) {
|
|
|
|
status = NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
} else {
|
|
|
|
NS_ADDREF(*aInstancePtr);
|
|
|
|
status = NS_OK;
|
1999-08-22 00:07:27 +04:00
|
|
|
}
|
1999-08-03 07:41:27 +04:00
|
|
|
|
2014-06-27 05:35:39 +04:00
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2014-04-27 11:06:00 +04:00
|
|
|
NS_IMPL_ISUPPORTS(nsWeakReference, nsIWeakReference)
|
1999-08-03 07:41:27 +04:00
|
|
|
|
1999-08-12 03:48:08 +04:00
|
|
|
NS_IMETHODIMP
|
2017-08-25 20:48:29 +03:00
|
|
|
nsWeakReference::QueryReferentFromScript(const nsIID& aIID,
|
|
|
|
void** aInstancePtr) {
|
|
|
|
return QueryReferent(aIID, aInstancePtr);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult nsIWeakReference::QueryReferent(const nsIID& aIID,
|
|
|
|
void** aInstancePtr) {
|
2016-08-01 14:16:16 +03:00
|
|
|
MOZ_WEAKREF_ASSERT_OWNINGTHREAD;
|
|
|
|
|
2017-08-25 20:48:29 +03:00
|
|
|
if (!mObject) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
|
|
|
|
|
|
|
return mObject->QueryInterface(aIID, aInstancePtr);
|
2014-06-27 05:35:39 +04:00
|
|
|
}
|
2006-04-19 20:29:31 +04:00
|
|
|
|
2014-06-23 02:02:59 +04:00
|
|
|
size_t nsWeakReference::SizeOfOnlyThis(
|
|
|
|
mozilla::MallocSizeOf aMallocSizeOf) const {
|
2014-06-27 05:35:39 +04:00
|
|
|
return aMallocSizeOf(this);
|
|
|
|
}
|
2014-06-23 02:02:59 +04:00
|
|
|
|
2006-04-19 20:29:31 +04:00
|
|
|
void nsSupportsWeakReference::ClearWeakReferences() {
|
2014-06-27 05:35:39 +04:00
|
|
|
if (mProxy) {
|
|
|
|
mProxy->NoticeReferentDestruction();
|
2016-08-01 14:16:16 +03:00
|
|
|
mProxy = nullptr;
|
2014-06-27 05:35:39 +04:00
|
|
|
}
|
|
|
|
}
|