1999-02-17 04:57:07 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/*
|
|
|
|
* The contents of this file are subject to the Netscape Public License
|
|
|
|
* Version 1.0 (the "NPL"); you may not use this file except in
|
|
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
|
|
* http://www.mozilla.org/NPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* NPL.
|
|
|
|
*
|
|
|
|
* The Initial Developer of this code under the NPL is Netscape
|
|
|
|
* Communications Corporation. Portions created by Netscape are
|
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
|
|
* Reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "nsCOMPtr.h"
|
1999-10-31 03:35:48 +03:00
|
|
|
// #include "nsIWeakReference.h"
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsQueryInterface::operator()( const nsIID& aIID, void** answer ) const
|
|
|
|
{
|
|
|
|
nsresult status;
|
|
|
|
if ( mRawPtr )
|
|
|
|
status = mRawPtr->QueryInterface(aIID, answer);
|
|
|
|
else
|
|
|
|
status = NS_ERROR_NULL_POINTER;
|
|
|
|
|
|
|
|
if ( mErrorPtr )
|
|
|
|
*mErrorPtr = status;
|
|
|
|
return status;
|
|
|
|
}
|
1999-02-17 04:57:07 +03:00
|
|
|
|
1999-05-11 00:48:43 +04:00
|
|
|
#ifdef NSCAP_FEATURE_FACTOR_DESTRUCTOR
|
|
|
|
nsCOMPtr_base::~nsCOMPtr_base()
|
|
|
|
{
|
|
|
|
if ( mRawPtr )
|
|
|
|
NSCAP_RELEASE(mRawPtr);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
1999-02-17 04:57:07 +03:00
|
|
|
void
|
|
|
|
nsCOMPtr_base::assign_with_AddRef( nsISupports* rawPtr )
|
|
|
|
{
|
|
|
|
if ( rawPtr )
|
|
|
|
NSCAP_ADDREF(rawPtr);
|
|
|
|
if ( mRawPtr )
|
|
|
|
NSCAP_RELEASE(mRawPtr);
|
|
|
|
mRawPtr = rawPtr;
|
|
|
|
}
|
|
|
|
|
1999-10-31 03:35:48 +03:00
|
|
|
void
|
|
|
|
nsCOMPtr_base::assign_from_helper( const nsCOMPtr_helper& helper, const nsIID& iid )
|
|
|
|
{
|
|
|
|
nsISupports* newRawPtr;
|
|
|
|
if ( !NS_SUCCEEDED( helper(iid, NSCAP_REINTERPRET_CAST(void**, &newRawPtr)) ) )
|
|
|
|
newRawPtr = 0;
|
|
|
|
if ( mRawPtr )
|
|
|
|
NSCAP_RELEASE(mRawPtr);
|
|
|
|
mRawPtr = newRawPtr;
|
|
|
|
}
|
|
|
|
|
1999-11-05 06:31:04 +03:00
|
|
|
|
|
|
|
#if 0
|
|
|
|
void
|
|
|
|
nsCOMPtr_base::assign_with_QueryInterface( nsISupports* rawPtr, const nsIID& iid, nsresult* result )
|
|
|
|
{
|
|
|
|
nsresult status = NS_ERROR_NULL_POINTER;
|
|
|
|
if ( !rawPtr || !NS_SUCCEEDED( status = rawPtr->QueryInterface(iid, NSCAP_REINTERPRET_CAST(void**, &rawPtr)) ) )
|
|
|
|
rawPtr = 0;
|
|
|
|
|
|
|
|
if ( mRawPtr )
|
|
|
|
NSCAP_RELEASE(mRawPtr);
|
|
|
|
|
|
|
|
mRawPtr = rawPtr;
|
|
|
|
|
|
|
|
if ( result )
|
|
|
|
*result = status;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsCOMPtr_base::assign_with_QueryReferent( nsIWeakReference* weakPtr, const nsIID& iid, nsresult* result )
|
|
|
|
{
|
|
|
|
nsresult status = NS_ERROR_NULL_POINTER;
|
|
|
|
|
|
|
|
nsISupports* rawPtr;
|
|
|
|
if ( !weakPtr || !NS_SUCCEEDED( status = weakPtr->QueryReferent(iid, NSCAP_REINTERPRET_CAST(void**, &rawPtr)) ) )
|
|
|
|
rawPtr = 0;
|
|
|
|
|
|
|
|
if ( mRawPtr )
|
|
|
|
NSCAP_RELEASE(mRawPtr);
|
|
|
|
|
|
|
|
mRawPtr = rawPtr;
|
|
|
|
|
|
|
|
if ( result )
|
|
|
|
*result = status;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
1999-02-17 04:57:07 +03:00
|
|
|
void**
|
|
|
|
nsCOMPtr_base::begin_assignment()
|
|
|
|
{
|
|
|
|
if ( mRawPtr )
|
1999-05-11 00:48:43 +04:00
|
|
|
{
|
|
|
|
NSCAP_RELEASE(mRawPtr);
|
|
|
|
mRawPtr = 0;
|
|
|
|
}
|
|
|
|
|
1999-03-03 02:52:38 +03:00
|
|
|
return NSCAP_REINTERPRET_CAST(void**, &mRawPtr);
|
1999-02-17 04:57:07 +03:00
|
|
|
}
|