gecko-dev/xpcom/base/nsWeakReference.cpp

114 строки
2.9 KiB
C++
Исходник Обычный вид История

1999-08-22 00:07:27 +04: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-08-03 07:41:27 +04:00
// nsWeakReference.cpp
#include "nsWeakReference.h"
#include "nsCOMPtr.h"
1999-08-03 07:41:27 +04:00
NS_COM nsIWeakReference *
1999-08-03 07:41:27 +04:00
NS_GetWeakReference( nsISupports* aInstance, nsresult* aResult )
1999-08-22 00:07:27 +04:00
{
nsresult status;
if ( !aResult )
aResult = &status;
1999-08-03 08:59:47 +04:00
1999-08-22 00:07:27 +04:00
nsCOMPtr<nsISupportsWeakReference> factoryP = do_QueryInterface(aInstance, aResult);
1999-08-03 07:41:27 +04:00
1999-08-22 00:07:27 +04:00
nsIWeakReference* weakP = 0;
if ( factoryP )
status = factoryP->GetWeakReference(&weakP);
return weakP;
}
1999-08-03 07:41:27 +04:00
NS_IMETHODIMP
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 )
status = NS_NOINTERFACE;
else
{
NS_ADDREF(*aInstancePtr);
status = NS_OK;
}
return status;
}
1999-08-03 07:41:27 +04:00
NS_IMETHODIMP_(nsrefcnt)
1999-08-03 07:41:27 +04:00
nsWeakReference::AddRef()
1999-08-22 00:07:27 +04:00
{
return ++mRefCount;
}
1999-08-03 07:41:27 +04:00
NS_IMETHODIMP_(nsrefcnt)
1999-08-03 07:41:27 +04:00
nsWeakReference::Release()
1999-08-22 00:07:27 +04:00
{
nsrefcnt temp = --mRefCount;
if ( !mRefCount )
delete this;
return temp;
}
1999-08-03 07:41:27 +04:00
NS_IMETHODIMP
1999-08-03 07:41:27 +04:00
nsWeakReference::QueryInterface( const nsIID& aIID, void** aInstancePtr )
1999-08-22 00:07:27 +04:00
{
NS_ASSERTION(aInstancePtr, "QueryInterface requires a non-NULL destination!");
1999-08-22 00:07:27 +04:00
if ( !aInstancePtr )
return NS_ERROR_NULL_POINTER;
nsISupports* foundInterface;
1999-08-22 00:07:27 +04:00
if ( aIID.Equals(nsCOMTypeInfo<nsIWeakReference>::GetIID()) )
foundInterface = NS_STATIC_CAST(nsIWeakReference*, this);
1999-08-22 00:07:27 +04:00
else if ( aIID.Equals(nsCOMTypeInfo<nsISupports>::GetIID()) )
foundInterface = NS_STATIC_CAST(nsISupports*, this);
1999-08-22 00:07:27 +04:00
else
foundInterface = 0;
1999-08-22 00:07:27 +04:00
nsresult status;
if ( !foundInterface )
1999-08-22 00:07:27 +04:00
status = NS_NOINTERFACE;
else
{
NS_ADDREF(foundInterface);
1999-08-22 00:07:27 +04:00
status = NS_OK;
}
*aInstancePtr = foundInterface;
1999-08-22 00:07:27 +04:00
return status;
}
1999-08-03 07:41:27 +04:00
NS_IMETHODIMP
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;
}