mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
114 lines
2.9 KiB
C++
114 lines
2.9 KiB
C++
/* -*- 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>
|
|
*/
|
|
|
|
// nsWeakReference.cpp
|
|
|
|
#include "nsWeakReference.h"
|
|
#include "nsCOMPtr.h"
|
|
|
|
NS_COM nsIWeakReference *
|
|
NS_GetWeakReference( nsISupports* aInstance, nsresult* aResult )
|
|
{
|
|
nsresult status;
|
|
if ( !aResult )
|
|
aResult = &status;
|
|
|
|
nsCOMPtr<nsISupportsWeakReference> factoryP = do_QueryInterface(aInstance, aResult);
|
|
|
|
nsIWeakReference* weakP = 0;
|
|
if ( factoryP )
|
|
status = factoryP->GetWeakReference(&weakP);
|
|
return weakP;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
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_NOINTERFACE;
|
|
else
|
|
{
|
|
NS_ADDREF(*aInstancePtr);
|
|
status = NS_OK;
|
|
}
|
|
|
|
return status;
|
|
}
|
|
|
|
NS_IMETHODIMP_(nsrefcnt)
|
|
nsWeakReference::AddRef()
|
|
{
|
|
return ++mRefCount;
|
|
}
|
|
|
|
NS_IMETHODIMP_(nsrefcnt)
|
|
nsWeakReference::Release()
|
|
{
|
|
nsrefcnt temp = --mRefCount;
|
|
if ( !mRefCount )
|
|
delete this;
|
|
return temp;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsWeakReference::QueryInterface( const nsIID& aIID, void** aInstancePtr )
|
|
{
|
|
NS_ASSERTION(aInstancePtr, "QueryInterface requires a non-NULL destination!");
|
|
|
|
if ( !aInstancePtr )
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
nsISupports* foundInterface;
|
|
if ( aIID.Equals(nsCOMTypeInfo<nsIWeakReference>::GetIID()) )
|
|
foundInterface = NS_STATIC_CAST(nsIWeakReference*, this);
|
|
else if ( aIID.Equals(nsCOMTypeInfo<nsISupports>::GetIID()) )
|
|
foundInterface = NS_STATIC_CAST(nsISupports*, this);
|
|
else
|
|
foundInterface = 0;
|
|
|
|
nsresult status;
|
|
if ( !foundInterface )
|
|
status = NS_NOINTERFACE;
|
|
else
|
|
{
|
|
NS_ADDREF(foundInterface);
|
|
status = NS_OK;
|
|
}
|
|
|
|
*aInstancePtr = foundInterface;
|
|
return status;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsWeakReference::QueryReferent( const nsIID& aIID, void** aInstancePtr )
|
|
{
|
|
return mReferent ? mReferent->QueryInterface(aIID, aInstancePtr) : NS_ERROR_NULL_POINTER;
|
|
}
|