Bug 545892 - Always pass WM_NCPAINT events to the default event procedure. r=bent...
[mozilla-central.git] / xpcom / glue / nsCOMPtr.cpp
blob2e85a548b5a342016bfc7a5bb2b6fb6a15f30fbc
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
13 * License.
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.
22 * Contributor(s):
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 ***** */
39 #include "nsCOMPtr.h"
41 nsresult
42 nsQueryInterface::operator()( const nsIID& aIID, void** answer ) const
44 nsresult status;
45 if ( mRawPtr )
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?");
50 #endif
52 else
53 status = NS_ERROR_NULL_POINTER;
55 return status;
58 nsresult
59 nsQueryInterfaceWithError::operator()( const nsIID& aIID, void** answer ) const
61 nsresult status;
62 if ( mRawPtr )
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?");
67 #endif
69 else
70 status = NS_ERROR_NULL_POINTER;
72 if ( mErrorPtr )
73 *mErrorPtr = status;
74 return status;
77 nsCOMPtr_base::~nsCOMPtr_base()
79 NSCAP_LOG_RELEASE(this, mRawPtr);
80 if ( mRawPtr )
81 NSCAP_RELEASE(this, mRawPtr);
84 void
85 nsCOMPtr_base::assign_with_AddRef( nsISupports* rawPtr )
87 if ( rawPtr )
88 NSCAP_ADDREF(this, rawPtr);
89 assign_assuming_AddRef(rawPtr);
92 void
93 nsCOMPtr_base::assign_from_qi( const nsQueryInterface qi, const nsIID& iid )
95 void* newRawPtr;
96 if ( NS_FAILED( qi(iid, &newRawPtr) ) )
97 newRawPtr = 0;
98 assign_assuming_AddRef(static_cast<nsISupports*>(newRawPtr));
101 void
102 nsCOMPtr_base::assign_from_qi_with_error( const nsQueryInterfaceWithError& qi, const nsIID& iid )
104 void* newRawPtr;
105 if ( NS_FAILED( qi(iid, &newRawPtr) ) )
106 newRawPtr = 0;
107 assign_assuming_AddRef(static_cast<nsISupports*>(newRawPtr));
110 void
111 nsCOMPtr_base::assign_from_gs_cid( const nsGetServiceByCID gs, const nsIID& iid )
113 void* newRawPtr;
114 if ( NS_FAILED( gs(iid, &newRawPtr) ) )
115 newRawPtr = 0;
116 assign_assuming_AddRef(static_cast<nsISupports*>(newRawPtr));
119 void
120 nsCOMPtr_base::assign_from_gs_cid_with_error( const nsGetServiceByCIDWithError& gs, const nsIID& iid )
122 void* newRawPtr;
123 if ( NS_FAILED( gs(iid, &newRawPtr) ) )
124 newRawPtr = 0;
125 assign_assuming_AddRef(static_cast<nsISupports*>(newRawPtr));
128 void
129 nsCOMPtr_base::assign_from_gs_contractid( const nsGetServiceByContractID gs, const nsIID& iid )
131 void* newRawPtr;
132 if ( NS_FAILED( gs(iid, &newRawPtr) ) )
133 newRawPtr = 0;
134 assign_assuming_AddRef(static_cast<nsISupports*>(newRawPtr));
137 void
138 nsCOMPtr_base::assign_from_gs_contractid_with_error( const nsGetServiceByContractIDWithError& gs, const nsIID& iid )
140 void* newRawPtr;
141 if ( NS_FAILED( gs(iid, &newRawPtr) ) )
142 newRawPtr = 0;
143 assign_assuming_AddRef(static_cast<nsISupports*>(newRawPtr));
146 void
147 nsCOMPtr_base::assign_from_helper( const nsCOMPtr_helper& helper, const nsIID& iid )
149 void* newRawPtr;
150 if ( NS_FAILED( helper(iid, &newRawPtr) ) )
151 newRawPtr = 0;
152 assign_assuming_AddRef(static_cast<nsISupports*>(newRawPtr));
155 void**
156 nsCOMPtr_base::begin_assignment()
158 assign_assuming_AddRef(0);
159 return reinterpret_cast<void**>(&mRawPtr);