1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/
10 * Software distributed under the License is distributed on an "AS IS" basis,
11 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 * for the specific language governing rights and limitations under the
15 * The Original Code is mozilla.org code.
17 * The Initial Developer of the Original Code is
18 * Netscape Communications Corporation.
19 * Portions created by the Initial Developer are Copyright (C) 1998
20 * the Initial Developer. All Rights Reserved.
23 * Scott Collins <scc@netscape.com>
25 * Alternatively, the contents of this file may be used under the terms of
26 * either of the GNU General Public License Version 2 or later (the "GPL"),
27 * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28 * in which case the provisions of the GPL or the LGPL are applicable instead
29 * of those above. If you wish to allow use of your version of this file only
30 * under the terms of either the GPL or the LGPL, and not to allow others to
31 * use your version of this file under the terms of the MPL, indicate your
32 * decision by deleting the provisions above and replace them with the notice
33 * and other provisions required by the GPL or the LGPL. If you do not delete
34 * the provisions above, a recipient may use your version of this file under
35 * the terms of any one of the MPL, the GPL or the LGPL.
37 * ***** END LICENSE BLOCK ***** */
42 nsQueryInterface::operator()( const nsIID
& aIID
, void** answer
) const
47 status
= mRawPtr
->QueryInterface(aIID
, answer
);
48 #ifdef NSCAP_FEATURE_TEST_NONNULL_QUERY_SUCCEEDS
49 NS_ASSERTION(NS_SUCCEEDED(status
), "interface not found---were you expecting that?");
53 status
= NS_ERROR_NULL_POINTER
;
59 nsQueryInterfaceWithError::operator()( const nsIID
& aIID
, void** answer
) const
64 status
= mRawPtr
->QueryInterface(aIID
, answer
);
65 #ifdef NSCAP_FEATURE_TEST_NONNULL_QUERY_SUCCEEDS
66 NS_ASSERTION(NS_SUCCEEDED(status
), "interface not found---were you expecting that?");
70 status
= NS_ERROR_NULL_POINTER
;
77 nsCOMPtr_base::~nsCOMPtr_base()
79 NSCAP_LOG_RELEASE(this, mRawPtr
);
81 NSCAP_RELEASE(this, mRawPtr
);
85 nsCOMPtr_base::assign_with_AddRef( nsISupports
* rawPtr
)
88 NSCAP_ADDREF(this, rawPtr
);
89 assign_assuming_AddRef(rawPtr
);
93 nsCOMPtr_base::assign_from_qi( const nsQueryInterface qi
, const nsIID
& iid
)
96 if ( NS_FAILED( qi(iid
, &newRawPtr
) ) )
98 assign_assuming_AddRef(static_cast<nsISupports
*>(newRawPtr
));
102 nsCOMPtr_base::assign_from_qi_with_error( const nsQueryInterfaceWithError
& qi
, const nsIID
& iid
)
105 if ( NS_FAILED( qi(iid
, &newRawPtr
) ) )
107 assign_assuming_AddRef(static_cast<nsISupports
*>(newRawPtr
));
111 nsCOMPtr_base::assign_from_gs_cid( const nsGetServiceByCID gs
, const nsIID
& iid
)
114 if ( NS_FAILED( gs(iid
, &newRawPtr
) ) )
116 assign_assuming_AddRef(static_cast<nsISupports
*>(newRawPtr
));
120 nsCOMPtr_base::assign_from_gs_cid_with_error( const nsGetServiceByCIDWithError
& gs
, const nsIID
& iid
)
123 if ( NS_FAILED( gs(iid
, &newRawPtr
) ) )
125 assign_assuming_AddRef(static_cast<nsISupports
*>(newRawPtr
));
129 nsCOMPtr_base::assign_from_gs_contractid( const nsGetServiceByContractID gs
, const nsIID
& iid
)
132 if ( NS_FAILED( gs(iid
, &newRawPtr
) ) )
134 assign_assuming_AddRef(static_cast<nsISupports
*>(newRawPtr
));
138 nsCOMPtr_base::assign_from_gs_contractid_with_error( const nsGetServiceByContractIDWithError
& gs
, const nsIID
& iid
)
141 if ( NS_FAILED( gs(iid
, &newRawPtr
) ) )
143 assign_assuming_AddRef(static_cast<nsISupports
*>(newRawPtr
));
147 nsCOMPtr_base::assign_from_helper( const nsCOMPtr_helper
& helper
, const nsIID
& iid
)
150 if ( NS_FAILED( helper(iid
, &newRawPtr
) ) )
152 assign_assuming_AddRef(static_cast<nsISupports
*>(newRawPtr
));
156 nsCOMPtr_base::begin_assignment()
158 assign_assuming_AddRef(0);
159 return reinterpret_cast<void**>(&mRawPtr
);