1999-08-21 20:07:27 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public
|
|
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS
|
|
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
|
|
* implied. See the License for the specific language governing
|
|
|
|
* rights and limitations under the License.
|
|
|
|
*
|
|
|
|
* The Original Code is the Mozilla browser.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
|
|
|
* Communications, Inc. Portions created by Netscape are
|
|
|
|
* Copyright (C) 1999, Mozilla. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Scott Collins <scc@netscape.com>
|
1999-11-30 23:36:32 +00:00
|
|
|
* Pierre Phaneuf <pp@ludusdesign.com>
|
1999-08-21 20:07:27 +00:00
|
|
|
*/
|
|
|
|
|
1999-08-03 03:41:27 +00:00
|
|
|
// nsWeakReference.cpp
|
|
|
|
|
|
|
|
#include "nsWeakReference.h"
|
1999-08-03 08:34:17 +00:00
|
|
|
#include "nsCOMPtr.h"
|
1999-08-03 03:41:27 +00:00
|
|
|
|
1999-10-31 00:35:48 +00:00
|
|
|
nsresult
|
|
|
|
nsQueryReferent::operator()( const nsIID& aIID, void** answer ) const
|
1999-11-23 03:10:02 +00:00
|
|
|
{
|
|
|
|
nsresult status;
|
|
|
|
if ( mWeakPtr )
|
|
|
|
{
|
|
|
|
if ( !NS_SUCCEEDED(status = mWeakPtr->QueryReferent(aIID, answer)) )
|
|
|
|
*answer = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
status = NS_ERROR_NULL_POINTER;
|
|
|
|
|
|
|
|
if ( mErrorPtr )
|
|
|
|
*mErrorPtr = status;
|
|
|
|
return status;
|
|
|
|
}
|
1999-10-31 00:35:48 +00:00
|
|
|
|
1999-11-22 22:59:21 +00:00
|
|
|
NS_COM nsIWeakReference*
|
1999-11-23 03:10:02 +00:00
|
|
|
NS_GetWeakReference( nsISupports* aInstancePtr, nsresult* aErrorPtr )
|
1999-08-21 20:07:27 +00:00
|
|
|
{
|
|
|
|
nsresult status;
|
1999-11-23 03:10:02 +00:00
|
|
|
nsIWeakReference* result = 0;
|
1999-08-03 04:59:47 +00:00
|
|
|
|
1999-11-23 03:10:02 +00:00
|
|
|
if ( aInstancePtr )
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsISupportsWeakReference> factoryPtr = do_QueryInterface(aInstancePtr, &status);
|
|
|
|
NS_ASSERTION(factoryPtr, "Did you know you were calling |NS_GetWeakReference()| on something that doesn't support weak references?");
|
|
|
|
if ( factoryPtr )
|
|
|
|
status = factoryPtr->GetWeakReference(&result);
|
|
|
|
// else, |status| has already been set by |do_QueryInterface|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
status = NS_ERROR_NULL_POINTER;
|
1999-08-03 03:41:27 +00:00
|
|
|
|
1999-11-23 03:10:02 +00:00
|
|
|
if ( aErrorPtr )
|
|
|
|
*aErrorPtr = status;
|
|
|
|
return result;
|
1999-08-21 20:07:27 +00:00
|
|
|
}
|
1999-08-03 03:41:27 +00:00
|
|
|
|
1999-08-11 23:48:08 +00:00
|
|
|
NS_IMETHODIMP
|
1999-08-03 03:41:27 +00:00
|
|
|
nsSupportsWeakReference::GetWeakReference( nsIWeakReference** aInstancePtr )
|
1999-08-21 20:07:27 +00:00
|
|
|
{
|
|
|
|
if ( !aInstancePtr )
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
|
|
|
|
if ( !mProxy )
|
|
|
|
mProxy = new nsWeakReference(this);
|
|
|
|
*aInstancePtr = mProxy;
|
|
|
|
|
|
|
|
nsresult status;
|
|
|
|
if ( !*aInstancePtr )
|
2000-10-27 21:46:20 +00:00
|
|
|
status = NS_ERROR_OUT_OF_MEMORY;
|
1999-08-21 20:07:27 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
NS_ADDREF(*aInstancePtr);
|
|
|
|
status = NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
1999-08-03 03:41:27 +00:00
|
|
|
|
1999-08-11 23:48:08 +00:00
|
|
|
NS_IMETHODIMP_(nsrefcnt)
|
1999-08-03 03:41:27 +00:00
|
|
|
nsWeakReference::AddRef()
|
1999-08-21 20:07:27 +00:00
|
|
|
{
|
|
|
|
return ++mRefCount;
|
|
|
|
}
|
1999-08-03 03:41:27 +00:00
|
|
|
|
1999-08-11 23:48:08 +00:00
|
|
|
NS_IMETHODIMP_(nsrefcnt)
|
1999-08-03 03:41:27 +00:00
|
|
|
nsWeakReference::Release()
|
1999-08-21 20:07:27 +00:00
|
|
|
{
|
|
|
|
nsrefcnt temp = --mRefCount;
|
|
|
|
if ( !mRefCount )
|
|
|
|
delete this;
|
|
|
|
return temp;
|
|
|
|
}
|
1999-08-03 03:41:27 +00:00
|
|
|
|
1999-08-11 23:48:08 +00:00
|
|
|
NS_IMETHODIMP
|
1999-08-03 03:41:27 +00:00
|
|
|
nsWeakReference::QueryInterface( const nsIID& aIID, void** aInstancePtr )
|
1999-08-21 20:07:27 +00:00
|
|
|
{
|
1999-11-23 03:10:02 +00:00
|
|
|
NS_ASSERTION(aInstancePtr, "QueryInterface requires a non-NULL destination!");
|
1999-08-23 10:14:16 +00:00
|
|
|
|
1999-08-21 20:07:27 +00:00
|
|
|
if ( !aInstancePtr )
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
|
1999-11-23 03:10:02 +00:00
|
|
|
nsISupports* foundInterface;
|
1999-11-30 23:36:32 +00:00
|
|
|
if ( aIID.Equals(NS_GET_IID(nsIWeakReference)) )
|
1999-08-23 10:14:16 +00:00
|
|
|
foundInterface = NS_STATIC_CAST(nsIWeakReference*, this);
|
1999-11-30 23:36:32 +00:00
|
|
|
else if ( aIID.Equals(NS_GET_IID(nsISupports)) )
|
1999-08-23 10:14:16 +00:00
|
|
|
foundInterface = NS_STATIC_CAST(nsISupports*, this);
|
1999-08-21 20:07:27 +00:00
|
|
|
else
|
1999-08-23 10:14:16 +00:00
|
|
|
foundInterface = 0;
|
1999-08-21 20:07:27 +00:00
|
|
|
|
|
|
|
nsresult status;
|
1999-08-23 10:14:16 +00:00
|
|
|
if ( !foundInterface )
|
1999-08-21 20:07:27 +00:00
|
|
|
status = NS_NOINTERFACE;
|
|
|
|
else
|
|
|
|
{
|
1999-08-23 10:14:16 +00:00
|
|
|
NS_ADDREF(foundInterface);
|
1999-08-21 20:07:27 +00:00
|
|
|
status = NS_OK;
|
|
|
|
}
|
|
|
|
|
1999-11-23 03:10:02 +00:00
|
|
|
*aInstancePtr = foundInterface;
|
1999-08-21 20:07:27 +00:00
|
|
|
return status;
|
|
|
|
}
|
1999-08-03 03:41:27 +00:00
|
|
|
|
1999-08-11 23:48:08 +00:00
|
|
|
NS_IMETHODIMP
|
1999-08-13 23:00:58 +00:00
|
|
|
nsWeakReference::QueryReferent( const nsIID& aIID, void** aInstancePtr )
|
1999-08-21 20:07:27 +00:00
|
|
|
{
|
|
|
|
return mReferent ? mReferent->QueryInterface(aIID, aInstancePtr) : NS_ERROR_NULL_POINTER;
|
|
|
|
}
|