1 | /* -*- Mode: C++; tab-width: 3; indent-tabs-mode: nil; c-basic-offset: 3 -*- */
|
---|
2 | /* ***** BEGIN LICENSE BLOCK *****
|
---|
3 | * Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
---|
4 | *
|
---|
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/
|
---|
9 | *
|
---|
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.
|
---|
14 | *
|
---|
15 | * The Original Code is mozilla.org code.
|
---|
16 | *
|
---|
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.
|
---|
21 | *
|
---|
22 | * Contributor(s):
|
---|
23 | *
|
---|
24 | * Alternatively, the contents of this file may be used under the terms of
|
---|
25 | * either of the GNU General Public License Version 2 or later (the "GPL"),
|
---|
26 | * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
---|
27 | * in which case the provisions of the GPL or the LGPL are applicable instead
|
---|
28 | * of those above. If you wish to allow use of your version of this file only
|
---|
29 | * under the terms of either the GPL or the LGPL, and not to allow others to
|
---|
30 | * use your version of this file under the terms of the MPL, indicate your
|
---|
31 | * decision by deleting the provisions above and replace them with the notice
|
---|
32 | * and other provisions required by the GPL or the LGPL. If you do not delete
|
---|
33 | * the provisions above, a recipient may use your version of this file under
|
---|
34 | * the terms of any one of the MPL, the GPL or the LGPL.
|
---|
35 | *
|
---|
36 | * ***** END LICENSE BLOCK ***** */
|
---|
37 |
|
---|
38 | #ifndef nsProxyRelease_h__
|
---|
39 | #define nsProxyRelease_h__
|
---|
40 |
|
---|
41 | #include "nsIEventQueueService.h"
|
---|
42 | #include "prmem.h"
|
---|
43 |
|
---|
44 | /**
|
---|
45 | * Ensures that the delete of a nsISupports object occurs on the target thread.
|
---|
46 | *
|
---|
47 | * @param target
|
---|
48 | * the target thread where the doomed object should be released.
|
---|
49 | * @param doomed
|
---|
50 | * the doomed object; the object to be released on the target thread.
|
---|
51 | * @param alwaysProxy
|
---|
52 | * normally, if NS_ProxyRelease is called on the target thread, then the
|
---|
53 | * doomed object will released directly. however, if this parameter is
|
---|
54 | * true, then a PLEvent will always be posted to the target thread and
|
---|
55 | * the release will happen when that PLEvent is handled.
|
---|
56 | */
|
---|
57 | NS_COM nsresult NS_ProxyRelease
|
---|
58 | (nsIEventTarget *target, nsISupports *doomed, PRBool alwaysProxy=PR_FALSE);
|
---|
59 |
|
---|
60 |
|
---|
61 | #define NS_IMPL_PROXY_RELEASE(_class) \
|
---|
62 | NS_IMETHODIMP_(nsrefcnt) _class::Release(void) \
|
---|
63 | { \
|
---|
64 | NS_PRECONDITION(0 != mRefCnt, "dup release"); \
|
---|
65 | nsrefcnt count = ASMAtomicDecU32((volatile uint32_t *)&mRefCnt); \
|
---|
66 | NS_LOG_RELEASE(this, count, #_class); \
|
---|
67 | \
|
---|
68 | if (count == 0) \
|
---|
69 | { \
|
---|
70 | mRefCnt = 1; /* stabilize */ \
|
---|
71 | PRBool callDirectly = PR_TRUE; \
|
---|
72 | static NS_DEFINE_CID(kEventQueueServiceCID, NS_EVENTQUEUESERVICE_CID); \
|
---|
73 | nsCOMPtr<nsIEventQueueService> eventQService \
|
---|
74 | = do_GetService(kEventQueueServiceCID); \
|
---|
75 | NS_ASSERTION(eventQService, "event queue service is unavailable"); \
|
---|
76 | \
|
---|
77 | nsCOMPtr<nsIEventQueue> eventQ; \
|
---|
78 | if (eventQService) { \
|
---|
79 | eventQService->GetThreadEventQueue(NS_UI_THREAD, getter_AddRefs(eventQ)); \
|
---|
80 | if (eventQ) \
|
---|
81 | eventQ->IsOnCurrentThread(&callDirectly); \
|
---|
82 | } \
|
---|
83 | \
|
---|
84 | if (callDirectly) \
|
---|
85 | { \
|
---|
86 | NS_RELEASE(this); \
|
---|
87 | return 0; \
|
---|
88 | } \
|
---|
89 | PLEvent *event = new PLEvent; \
|
---|
90 | if (event == nsnull) \
|
---|
91 | { \
|
---|
92 | NS_ASSERTION(0, "Could not create a plevent. Deleting on wrong thread!"); \
|
---|
93 | NS_DELETEXPCOM(this); \
|
---|
94 | return 0; \
|
---|
95 | } \
|
---|
96 | \
|
---|
97 | PL_InitEvent(event, \
|
---|
98 | NS_STATIC_CAST(nsISupports*, this), \
|
---|
99 | ReleaseDestructorEventHandler, \
|
---|
100 | ReleaseDestructorDestroyHandler); \
|
---|
101 | \
|
---|
102 | eventQ->PostEvent(event); \
|
---|
103 | return 0; \
|
---|
104 | } \
|
---|
105 | return count; \
|
---|
106 | } \
|
---|
107 |
|
---|
108 |
|
---|
109 |
|
---|
110 |
|
---|
111 | #endif
|
---|