1999-08-22 00:07:27 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
2012-05-21 15:12:37 +04: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-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"
|
1999-08-03 07:41:27 +04:00
|
|
|
|
2011-11-21 10:21:16 +04:00
|
|
|
class nsWeakReference MOZ_FINAL : public nsIWeakReference
|
2006-04-19 20:29:31 +04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
// nsISupports...
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
|
|
|
// nsIWeakReference...
|
|
|
|
NS_DECL_NSIWEAKREFERENCE
|
|
|
|
|
|
|
|
private:
|
|
|
|
friend class nsSupportsWeakReference;
|
|
|
|
|
|
|
|
nsWeakReference( nsSupportsWeakReference* referent )
|
|
|
|
: mReferent(referent)
|
|
|
|
// ...I can only be constructed by an |nsSupportsWeakReference|
|
|
|
|
{
|
|
|
|
// nothing else to do here
|
|
|
|
}
|
|
|
|
|
|
|
|
~nsWeakReference()
|
|
|
|
// ...I will only be destroyed by calling |delete| myself.
|
|
|
|
{
|
|
|
|
if ( mReferent )
|
|
|
|
mReferent->NoticeProxyDestruction();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
NoticeReferentDestruction()
|
|
|
|
// ...called (only) by an |nsSupportsWeakReference| from _its_ dtor.
|
|
|
|
{
|
|
|
|
mReferent = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsSupportsWeakReference* mReferent;
|
|
|
|
};
|
|
|
|
|
2001-10-23 07:50:24 +04:00
|
|
|
nsresult
|
1999-10-31 03:35:48 +03:00
|
|
|
nsQueryReferent::operator()( const nsIID& aIID, void** answer ) const
|
1999-11-23 06:10:02 +03:00
|
|
|
{
|
|
|
|
nsresult status;
|
|
|
|
if ( mWeakPtr )
|
|
|
|
{
|
2001-11-19 09:45:00 +03:00
|
|
|
if ( NS_FAILED(status = mWeakPtr->QueryReferent(aIID, answer)) )
|
1999-11-23 06:10:02 +03:00
|
|
|
*answer = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
status = NS_ERROR_NULL_POINTER;
|
|
|
|
|
|
|
|
if ( mErrorPtr )
|
|
|
|
*mErrorPtr = status;
|
|
|
|
return status;
|
|
|
|
}
|
1999-10-31 03:35:48 +03:00
|
|
|
|
2005-01-25 01:59:27 +03:00
|
|
|
NS_COM_GLUE nsIWeakReference* // or else |already_AddRefed<nsIWeakReference>|
|
|
|
|
NS_GetWeakReference( nsISupports* aInstancePtr, nsresult* aErrorPtr )
|
1999-08-22 00:07:27 +04:00
|
|
|
{
|
|
|
|
nsresult status;
|
1999-08-03 08:59:47 +04:00
|
|
|
|
2005-01-25 01:59:27 +03:00
|
|
|
nsIWeakReference* result = nsnull;
|
|
|
|
|
|
|
|
if ( aInstancePtr )
|
1999-11-23 06:10:02 +03:00
|
|
|
{
|
2005-01-25 01:59:27 +03:00
|
|
|
nsCOMPtr<nsISupportsWeakReference> factoryPtr = do_QueryInterface(aInstancePtr, &status);
|
2001-03-09 03:40:11 +03:00
|
|
|
NS_ASSERTION(factoryPtr, "Oops! You're asking for a weak reference to an object that doesn't support that.");
|
1999-11-23 06:10:02 +03:00
|
|
|
if ( factoryPtr )
|
2001-03-09 04:38:36 +03:00
|
|
|
{
|
2005-01-25 01:59:27 +03:00
|
|
|
status = factoryPtr->GetWeakReference(&result);
|
2001-03-09 04:38:36 +03:00
|
|
|
}
|
1999-11-23 06:10:02 +03:00
|
|
|
// else, |status| has already been set by |do_QueryInterface|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
status = NS_ERROR_NULL_POINTER;
|
1999-08-03 07:41:27 +04:00
|
|
|
|
2005-01-25 01:59:27 +03:00
|
|
|
if ( aErrorPtr )
|
|
|
|
*aErrorPtr = status;
|
|
|
|
return result;
|
1999-08-22 00:07:27 +04:00
|
|
|
}
|
1999-08-03 07:41:27 +04:00
|
|
|
|
2004-10-29 23:43:51 +04:00
|
|
|
NS_COM_GLUE nsresult
|
1999-08-03 07:41:27 +04:00
|
|
|
nsSupportsWeakReference::GetWeakReference( nsIWeakReference** aInstancePtr )
|
1999-08-22 00:07:27 +04:00
|
|
|
{
|
|
|
|
if ( !aInstancePtr )
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
|
|
|
|
if ( !mProxy )
|
|
|
|
mProxy = new nsWeakReference(this);
|
|
|
|
*aInstancePtr = mProxy;
|
|
|
|
|
|
|
|
nsresult status;
|
|
|
|
if ( !*aInstancePtr )
|
2000-10-28 01:46:20 +04:00
|
|
|
status = NS_ERROR_OUT_OF_MEMORY;
|
1999-08-22 00:07:27 +04:00
|
|
|
else
|
|
|
|
{
|
|
|
|
NS_ADDREF(*aInstancePtr);
|
|
|
|
status = NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
1999-08-03 07:41:27 +04:00
|
|
|
|
2005-01-25 01:59:27 +03:00
|
|
|
NS_IMPL_ISUPPORTS1(nsWeakReference, nsIWeakReference)
|
1999-08-03 07:41:27 +04:00
|
|
|
|
1999-08-12 03:48:08 +04:00
|
|
|
NS_IMETHODIMP
|
1999-08-14 03:00:58 +04:00
|
|
|
nsWeakReference::QueryReferent( const nsIID& aIID, void** aInstancePtr )
|
1999-08-22 00:07:27 +04:00
|
|
|
{
|
|
|
|
return mReferent ? mReferent->QueryInterface(aIID, aInstancePtr) : NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
2006-04-19 20:29:31 +04:00
|
|
|
|
|
|
|
void
|
|
|
|
nsSupportsWeakReference::ClearWeakReferences()
|
|
|
|
{
|
|
|
|
if ( mProxy )
|
|
|
|
{
|
|
|
|
mProxy->NoticeReferentDestruction();
|
|
|
|
mProxy = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|