1999-02-17 01:57:07 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2001-09-28 20:14:13 +00:00
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
2004-04-18 14:21:17 +00:00
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
1999-02-17 01:57:07 +00:00
|
|
|
*
|
2004-04-18 14:21:17 +00:00
|
|
|
* 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/
|
2001-09-28 20:14:13 +00:00
|
|
|
*
|
|
|
|
* 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.
|
1999-02-17 01:57:07 +00:00
|
|
|
*
|
1999-11-06 03:43:54 +00:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2004-04-18 14:21:17 +00:00
|
|
|
* The Initial Developer of the Original Code is
|
2001-09-28 20:14:13 +00:00
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
1999-11-06 03:43:54 +00:00
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* Contributor(s):
|
1999-11-08 11:43:11 +00:00
|
|
|
* Scott Collins <scc@netscape.com>
|
2001-09-28 20:14:13 +00:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
2004-04-18 14:21:17 +00:00
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
2001-09-28 20:14:13 +00:00
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
2004-04-18 14:21:17 +00:00
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
2001-09-28 20:14:13 +00:00
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
2004-04-18 14:21:17 +00:00
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
2001-09-28 20:14:13 +00:00
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
1999-02-17 01:57:07 +00:00
|
|
|
|
|
|
|
#include "nsCOMPtr.h"
|
1999-10-31 00:35:48 +00:00
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsQueryInterface::operator()( const nsIID& aIID, void** answer ) const
|
|
|
|
{
|
|
|
|
nsresult status;
|
|
|
|
if ( mRawPtr )
|
2000-02-06 21:17:51 +00:00
|
|
|
{
|
|
|
|
status = mRawPtr->QueryInterface(aIID, answer);
|
|
|
|
#ifdef NSCAP_FEATURE_TEST_NONNULL_QUERY_SUCCEEDS
|
2006-03-30 18:40:56 +00:00
|
|
|
NS_ASSERTION(NS_SUCCEEDED(status), "interface not found---were you expecting that?");
|
2000-02-06 21:17:51 +00:00
|
|
|
#endif
|
|
|
|
}
|
1999-10-31 00:35:48 +00:00
|
|
|
else
|
|
|
|
status = NS_ERROR_NULL_POINTER;
|
|
|
|
|
2004-03-04 23:04:27 +00:00
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsQueryInterfaceWithError::operator()( const nsIID& aIID, void** answer ) const
|
|
|
|
{
|
|
|
|
nsresult status;
|
|
|
|
if ( mRawPtr )
|
|
|
|
{
|
|
|
|
status = mRawPtr->QueryInterface(aIID, answer);
|
|
|
|
#ifdef NSCAP_FEATURE_TEST_NONNULL_QUERY_SUCCEEDS
|
2006-03-30 18:40:56 +00:00
|
|
|
NS_ASSERTION(NS_SUCCEEDED(status), "interface not found---were you expecting that?");
|
2004-03-04 23:04:27 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
else
|
|
|
|
status = NS_ERROR_NULL_POINTER;
|
|
|
|
|
1999-10-31 00:35:48 +00:00
|
|
|
if ( mErrorPtr )
|
|
|
|
*mErrorPtr = status;
|
|
|
|
return status;
|
|
|
|
}
|
1999-02-17 01:57:07 +00:00
|
|
|
|
1999-05-10 20:48:43 +00:00
|
|
|
nsCOMPtr_base::~nsCOMPtr_base()
|
|
|
|
{
|
2003-02-25 15:53:36 +00:00
|
|
|
NSCAP_LOG_RELEASE(this, mRawPtr);
|
1999-05-10 20:48:43 +00:00
|
|
|
if ( mRawPtr )
|
2000-06-08 04:52:39 +00:00
|
|
|
NSCAP_RELEASE(this, mRawPtr);
|
1999-05-10 20:48:43 +00:00
|
|
|
}
|
|
|
|
|
1999-02-17 01:57:07 +00:00
|
|
|
void
|
|
|
|
nsCOMPtr_base::assign_with_AddRef( nsISupports* rawPtr )
|
|
|
|
{
|
|
|
|
if ( rawPtr )
|
2000-06-08 04:52:39 +00:00
|
|
|
NSCAP_ADDREF(this, rawPtr);
|
1999-11-20 08:19:24 +00:00
|
|
|
assign_assuming_AddRef(rawPtr);
|
1999-02-17 01:57:07 +00:00
|
|
|
}
|
|
|
|
|
2004-03-04 23:04:27 +00:00
|
|
|
void
|
|
|
|
nsCOMPtr_base::assign_from_qi( const nsQueryInterface qi, const nsIID& iid )
|
2006-11-23 13:21:27 +00:00
|
|
|
{
|
2007-03-23 20:26:20 +00:00
|
|
|
void* newRawPtr;
|
|
|
|
if ( NS_FAILED( qi(iid, &newRawPtr) ) )
|
|
|
|
newRawPtr = 0;
|
2007-07-08 07:08:04 +00:00
|
|
|
assign_assuming_AddRef(static_cast<nsISupports*>(newRawPtr));
|
2006-11-23 13:21:27 +00:00
|
|
|
}
|
2004-03-04 23:04:27 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
nsCOMPtr_base::assign_from_qi_with_error( const nsQueryInterfaceWithError& qi, const nsIID& iid )
|
2006-11-23 13:21:27 +00:00
|
|
|
{
|
2007-03-23 20:26:20 +00:00
|
|
|
void* newRawPtr;
|
|
|
|
if ( NS_FAILED( qi(iid, &newRawPtr) ) )
|
|
|
|
newRawPtr = 0;
|
2007-07-08 07:08:04 +00:00
|
|
|
assign_assuming_AddRef(static_cast<nsISupports*>(newRawPtr));
|
2006-11-23 13:21:27 +00:00
|
|
|
}
|
2004-03-04 23:04:27 +00:00
|
|
|
|
2004-11-24 22:48:45 +00:00
|
|
|
void
|
|
|
|
nsCOMPtr_base::assign_from_gs_cid( const nsGetServiceByCID gs, const nsIID& iid )
|
2006-11-23 13:21:27 +00:00
|
|
|
{
|
2007-03-23 20:26:20 +00:00
|
|
|
void* newRawPtr;
|
|
|
|
if ( NS_FAILED( gs(iid, &newRawPtr) ) )
|
|
|
|
newRawPtr = 0;
|
2007-07-08 07:08:04 +00:00
|
|
|
assign_assuming_AddRef(static_cast<nsISupports*>(newRawPtr));
|
2006-11-23 13:21:27 +00:00
|
|
|
}
|
2004-11-24 22:48:45 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
nsCOMPtr_base::assign_from_gs_cid_with_error( const nsGetServiceByCIDWithError& gs, const nsIID& iid )
|
2006-11-23 13:21:27 +00:00
|
|
|
{
|
2007-03-23 20:26:20 +00:00
|
|
|
void* newRawPtr;
|
|
|
|
if ( NS_FAILED( gs(iid, &newRawPtr) ) )
|
|
|
|
newRawPtr = 0;
|
2007-07-08 07:08:04 +00:00
|
|
|
assign_assuming_AddRef(static_cast<nsISupports*>(newRawPtr));
|
2006-11-23 13:21:27 +00:00
|
|
|
}
|
2004-11-24 22:48:45 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
nsCOMPtr_base::assign_from_gs_contractid( const nsGetServiceByContractID gs, const nsIID& iid )
|
2006-11-23 13:21:27 +00:00
|
|
|
{
|
2007-03-23 20:26:20 +00:00
|
|
|
void* newRawPtr;
|
|
|
|
if ( NS_FAILED( gs(iid, &newRawPtr) ) )
|
|
|
|
newRawPtr = 0;
|
2007-07-08 07:08:04 +00:00
|
|
|
assign_assuming_AddRef(static_cast<nsISupports*>(newRawPtr));
|
2006-11-23 13:21:27 +00:00
|
|
|
}
|
2004-11-24 22:48:45 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
nsCOMPtr_base::assign_from_gs_contractid_with_error( const nsGetServiceByContractIDWithError& gs, const nsIID& iid )
|
2006-11-23 13:21:27 +00:00
|
|
|
{
|
2007-03-23 20:26:20 +00:00
|
|
|
void* newRawPtr;
|
|
|
|
if ( NS_FAILED( gs(iid, &newRawPtr) ) )
|
|
|
|
newRawPtr = 0;
|
2007-07-08 07:08:04 +00:00
|
|
|
assign_assuming_AddRef(static_cast<nsISupports*>(newRawPtr));
|
2006-11-23 13:21:27 +00:00
|
|
|
}
|
2004-11-24 22:48:45 +00:00
|
|
|
|
1999-10-31 00:35:48 +00:00
|
|
|
void
|
|
|
|
nsCOMPtr_base::assign_from_helper( const nsCOMPtr_helper& helper, const nsIID& iid )
|
2006-11-23 13:21:27 +00:00
|
|
|
{
|
2007-03-23 20:26:20 +00:00
|
|
|
void* newRawPtr;
|
|
|
|
if ( NS_FAILED( helper(iid, &newRawPtr) ) )
|
|
|
|
newRawPtr = 0;
|
2007-07-08 07:08:04 +00:00
|
|
|
assign_assuming_AddRef(static_cast<nsISupports*>(newRawPtr));
|
2006-11-23 13:21:27 +00:00
|
|
|
}
|
1999-10-31 00:35:48 +00:00
|
|
|
|
1999-02-17 01:57:07 +00:00
|
|
|
void**
|
|
|
|
nsCOMPtr_base::begin_assignment()
|
|
|
|
{
|
1999-11-20 08:19:24 +00:00
|
|
|
assign_assuming_AddRef(0);
|
2007-07-08 07:08:04 +00:00
|
|
|
return reinterpret_cast<void**>(&mRawPtr);
|
1999-02-17 01:57:07 +00:00
|
|
|
}
|