OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CrossThreadHolder_h | 5 #ifndef CrossThreadHolder_h |
6 #define CrossThreadHolder_h | 6 #define CrossThreadHolder_h |
7 | 7 |
8 #include "core/dom/ActiveDOMObject.h" | 8 #include "core/dom/ActiveDOMObject.h" |
9 #include "core/dom/CrossThreadTask.h" | 9 #include "core/dom/CrossThreadTask.h" |
10 #include "core/dom/ExecutionContext.h" | 10 #include "core/dom/ExecutionContext.h" |
(...skipping 28 matching lines...) Expand all Loading... |
39 return adoptPtr(new CrossThreadHolder(executionContext, obj)); | 39 return adoptPtr(new CrossThreadHolder(executionContext, obj)); |
40 } | 40 } |
41 | 41 |
42 // Can be called from any thread. | 42 // Can be called from any thread. |
43 // Executes |task| with |obj| and |executionContext| on the thread of | 43 // Executes |task| with |obj| and |executionContext| on the thread of |
44 // |executionContext|. | 44 // |executionContext|. |
45 // NOTE: |task| might be silently ignored (i.e. not executed) and | 45 // NOTE: |task| might be silently ignored (i.e. not executed) and |
46 // destructed (possibly on the calling thread or on the thread of | 46 // destructed (possibly on the calling thread or on the thread of |
47 // |executionContext|) when |executionContext| is stopped or | 47 // |executionContext|) when |executionContext| is stopped or |
48 // CrossThreadHolder is destructed. | 48 // CrossThreadHolder is destructed. |
49 void postTask(PassOwnPtr<WTF::Function<void(T*, ExecutionContext*)>> task) | 49 void postTask(PassOwnPtr<WTF::Function<void(T*, ExecutionContext*), WTF::Cro
ssThreadAffinity>> task) |
50 { | 50 { |
51 MutexLocker locker(m_mutex->mutex()); | 51 MutexLocker locker(m_mutex->mutex()); |
52 if (!m_bridge) { | 52 if (!m_bridge) { |
53 // The bridge has already disappeared. | 53 // The bridge has already disappeared. |
54 return; | 54 return; |
55 } | 55 } |
56 m_bridge->executionContext()->postTask(BLINK_FROM_HERE, createCrossThrea
dTask(&Bridge::runTask, m_bridge.get(), task)); | 56 m_bridge->executionContext()->postTask(BLINK_FROM_HERE, createCrossThrea
dTask(&Bridge::runTask, m_bridge.get(), task)); |
57 } | 57 } |
58 | 58 |
59 ~CrossThreadHolder() | 59 ~CrossThreadHolder() |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 // Must be protected by |m_mutex|. | 112 // Must be protected by |m_mutex|. |
113 // Is called from CrossThreadHolder::clearInternal() and | 113 // Is called from CrossThreadHolder::clearInternal() and |
114 // can be called on any thread. | 114 // can be called on any thread. |
115 void clearInternal() | 115 void clearInternal() |
116 { | 116 { |
117 // We don't clear |m_obj| here to destruct |m_obj| on the thread | 117 // We don't clear |m_obj| here to destruct |m_obj| on the thread |
118 // of |executionContext|. | 118 // of |executionContext|. |
119 m_holder = nullptr; | 119 m_holder = nullptr; |
120 } | 120 } |
121 | 121 |
122 void runTask(PassOwnPtr<WTF::Function<void(T*, ExecutionContext*)>> task
) | 122 void runTask(PassOwnPtr<WTF::Function<void(T*, ExecutionContext*), WTF::
CrossThreadAffinity>> task) |
123 { | 123 { |
124 ASSERT(executionContext()->isContextThread()); | 124 ASSERT(executionContext()->isContextThread()); |
125 if (m_obj) | 125 if (m_obj) |
126 (*task)(m_obj.get(), executionContext()); | 126 (*task)(m_obj.get(), executionContext()); |
127 } | 127 } |
128 | 128 |
129 private: | 129 private: |
130 // ActiveDOMObject | 130 // ActiveDOMObject |
131 void stop() override | 131 void stop() override |
132 { | 132 { |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 RefPtr<MutexWrapper> m_mutex; | 168 RefPtr<MutexWrapper> m_mutex; |
169 // |m_bridge| is protected by |m_mutex|. | 169 // |m_bridge| is protected by |m_mutex|. |
170 // |m_bridge| is cleared before the thread that allocated |*m_bridge| | 170 // |m_bridge| is cleared before the thread that allocated |*m_bridge| |
171 // is stopped. | 171 // is stopped. |
172 CrossThreadPersistent<Bridge> m_bridge; | 172 CrossThreadPersistent<Bridge> m_bridge; |
173 }; | 173 }; |
174 | 174 |
175 } // namespace blink | 175 } // namespace blink |
176 | 176 |
177 #endif // CrossThreadHolder_h | 177 #endif // CrossThreadHolder_h |
OLD | NEW |