Bug 572417 - Release mouse capture in flash subclass after mouse events get delivered...
[mozilla-central.git] / xpcom / glue / nsIWeakReferenceUtils.h
blob0a03cb32357fcc4d9bfd65c448a45431002bc87b
1 /* -*- Mode: IDL; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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@mozilla.org> (Original Author)
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 #ifndef nsIWeakReferenceUtils_h__
40 #define nsIWeakReferenceUtils_h__
42 #ifndef nsCOMPtr_h__
43 #include "nsCOMPtr.h"
44 #endif
46 typedef nsCOMPtr<nsIWeakReference> nsWeakPtr;
48 /**
52 // a type-safe shortcut for calling the |QueryReferent()| member function
53 // T must inherit from nsIWeakReference, but the cast may be ambiguous.
54 template <class T, class DestinationType>
55 inline
56 nsresult
57 CallQueryReferent( T* aSource, DestinationType** aDestination )
59 NS_PRECONDITION(aSource, "null parameter");
60 NS_PRECONDITION(aDestination, "null parameter");
62 return aSource->QueryReferent(NS_GET_TEMPLATE_IID(DestinationType),
63 reinterpret_cast<void**>(aDestination));
67 class NS_COM_GLUE nsQueryReferent : public nsCOMPtr_helper
69 public:
70 nsQueryReferent( nsIWeakReference* aWeakPtr, nsresult* error )
71 : mWeakPtr(aWeakPtr),
72 mErrorPtr(error)
74 // nothing else to do here
77 virtual nsresult NS_FASTCALL operator()( const nsIID& aIID, void** ) const;
79 private:
80 nsIWeakReference* mWeakPtr;
81 nsresult* mErrorPtr;
84 inline
85 const nsQueryReferent
86 do_QueryReferent( nsIWeakReference* aRawPtr, nsresult* error = 0 )
88 return nsQueryReferent(aRawPtr, error);
92 /**
93 * Deprecated, use |do_GetWeakReference| instead.
95 extern NS_COM_GLUE
96 nsIWeakReference*
97 NS_GetWeakReference( nsISupports* , nsresult* aResult=0 );
99 /**
100 * |do_GetWeakReference| is a convenience function that bundles up all the work needed
101 * to get a weak reference to an arbitrary object, i.e., the |QueryInterface|, test, and
102 * call through to |GetWeakReference|, and put it into your |nsCOMPtr|.
103 * It is specifically designed to cooperate with |nsCOMPtr| (or |nsWeakPtr|) like so:
104 * |nsWeakPtr myWeakPtr = do_GetWeakReference(aPtr);|.
106 inline
107 already_AddRefed<nsIWeakReference>
108 do_GetWeakReference( nsISupports* aRawPtr, nsresult* error = 0 )
110 return NS_GetWeakReference(aRawPtr, error);
113 inline
114 void
115 do_GetWeakReference( nsIWeakReference* aRawPtr, nsresult* error = 0 )
117 // This signature exists solely to _stop_ you from doing a bad thing.
118 // Saying |do_GetWeakReference()| on a weak reference itself,
119 // is very likely to be a programmer error.
122 template <class T>
123 inline
124 void
125 do_GetWeakReference( already_AddRefed<T>& )
127 // This signature exists solely to _stop_ you from doing the bad thing.
128 // Saying |do_GetWeakReference()| on a pointer that is not otherwise owned by
129 // someone else is an automatic leak. See <http://bugzilla.mozilla.org/show_bug.cgi?id=8221>.
132 template <class T>
133 inline
134 void
135 do_GetWeakReference( already_AddRefed<T>&, nsresult* )
137 // This signature exists solely to _stop_ you from doing the bad thing.
138 // Saying |do_GetWeakReference()| on a pointer that is not otherwise owned by
139 // someone else is an automatic leak. See <http://bugzilla.mozilla.org/show_bug.cgi?id=8221>.
142 #endif