blob: f15955d811f720d42df06b239b665f72f3efbed7 [file] [log] [blame]
henrike@webrtc.orgf0488722014-05-13 18:00:261/*
2 * Copyright 2014 The WebRTC Project Authors. All rights reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
Steve Anton10542f22019-01-11 17:11:0011#ifndef RTC_BASE_ASYNC_INVOKER_H_
12#define RTC_BASE_ASYNC_INVOKER_H_
henrike@webrtc.orgf0488722014-05-13 18:00:2613
deadbeef3af63b02017-08-09 00:59:4714#include <atomic>
Henrik Kjellanderec78f1c2017-06-29 05:52:5015#include <memory>
16#include <utility>
deadbeefa8bc1a12017-02-18 02:06:2617
Mirko Bonadeid9708072019-01-25 19:26:4818#include "api/scoped_refptr.h"
Steve Anton10542f22019-01-11 17:11:0019#include "rtc_base/async_invoker_inl.h"
Mirko Bonadei92ea95e2017-09-15 04:47:3120#include "rtc_base/bind.h"
Steve Anton10542f22019-01-11 17:11:0021#include "rtc_base/constructor_magic.h"
Mirko Bonadei92ea95e2017-09-15 04:47:3122#include "rtc_base/event.h"
Steve Anton10542f22019-01-11 17:11:0023#include "rtc_base/ref_counted_object.h"
Artem Titove41c4332018-07-25 13:04:2824#include "rtc_base/third_party/sigslot/sigslot.h"
Mirko Bonadei92ea95e2017-09-15 04:47:3125#include "rtc_base/thread.h"
Henrik Kjellanderec78f1c2017-06-29 05:52:5026
27namespace rtc {
28
29// Invokes function objects (aka functors) asynchronously on a Thread, and
30// owns the lifetime of calls (ie, when this object is destroyed, calls in
31// flight are cancelled). AsyncInvoker can optionally execute a user-specified
32// function when the asynchronous call is complete, or operates in
33// fire-and-forget mode otherwise.
34//
35// AsyncInvoker does not own the thread it calls functors on.
36//
37// A note about async calls and object lifetimes: users should
38// be mindful of object lifetimes when calling functions asynchronously and
39// ensure objects used by the function _cannot_ be deleted between the
40// invocation and execution of the functor. AsyncInvoker is designed to
41// help: any calls in flight will be cancelled when the AsyncInvoker used to
42// make the call is destructed, and any calls executing will be allowed to
43// complete before AsyncInvoker destructs.
44//
45// The easiest way to ensure lifetimes are handled correctly is to create a
46// class that owns the Thread and AsyncInvoker objects, and then call its
47// methods asynchronously as needed.
48//
49// Example:
50// class MyClass {
51// public:
52// void FireAsyncTaskWithResult(Thread* thread, int x) {
53// // Specify a callback to get the result upon completion.
54// invoker_.AsyncInvoke<int>(RTC_FROM_HERE,
55// thread, Bind(&MyClass::AsyncTaskWithResult, this, x),
56// &MyClass::OnTaskComplete, this);
57// }
58// void FireAnotherAsyncTask(Thread* thread) {
59// // No callback specified means fire-and-forget.
60// invoker_.AsyncInvoke<void>(RTC_FROM_HERE,
61// thread, Bind(&MyClass::AnotherAsyncTask, this));
62//
63// private:
64// int AsyncTaskWithResult(int x) {
65// // Some long running process...
66// return x * x;
67// }
68// void AnotherAsyncTask() {
69// // Some other long running process...
70// }
71// void OnTaskComplete(int result) { result_ = result; }
72//
73// AsyncInvoker invoker_;
74// int result_;
75// };
deadbeef3af63b02017-08-09 00:59:4776//
77// More details about threading:
78// - It's safe to construct/destruct AsyncInvoker on different threads.
79// - It's safe to call AsyncInvoke from different threads.
80// - It's safe to call AsyncInvoke recursively from *within* a functor that's
81// being AsyncInvoked.
82// - However, it's *not* safe to call AsyncInvoke from *outside* a functor
83// that's being AsyncInvoked while the AsyncInvoker is being destroyed on
84// another thread. This is just inherently unsafe and there's no way to
85// prevent that. So, the user of this class should ensure that the start of
86// each "chain" of invocations is synchronized somehow with the AsyncInvoker's
87// destruction. This can be done by starting each chain of invocations on the
88// same thread on which it will be destroyed, or by using some other
89// synchronization method.
Henrik Kjellanderec78f1c2017-06-29 05:52:5090class AsyncInvoker : public MessageHandler {
91 public:
92 AsyncInvoker();
93 ~AsyncInvoker() override;
94
95 // Call |functor| asynchronously on |thread|, with no callback upon
96 // completion. Returns immediately.
97 template <class ReturnT, class FunctorT>
98 void AsyncInvoke(const Location& posted_from,
99 Thread* thread,
Cameron Pickettd132ce12018-03-12 23:07:37100 FunctorT&& functor,
Henrik Kjellanderec78f1c2017-06-29 05:52:50101 uint32_t id = 0) {
102 std::unique_ptr<AsyncClosure> closure(
Cameron Pickettd132ce12018-03-12 23:07:37103 new FireAndForgetAsyncClosure<FunctorT>(
104 this, std::forward<FunctorT>(functor)));
Henrik Kjellanderec78f1c2017-06-29 05:52:50105 DoInvoke(posted_from, thread, std::move(closure), id);
106 }
107
108 // Call |functor| asynchronously on |thread| with |delay_ms|, with no callback
109 // upon completion. Returns immediately.
110 template <class ReturnT, class FunctorT>
111 void AsyncInvokeDelayed(const Location& posted_from,
112 Thread* thread,
Cameron Pickettd132ce12018-03-12 23:07:37113 FunctorT&& functor,
Henrik Kjellanderec78f1c2017-06-29 05:52:50114 uint32_t delay_ms,
115 uint32_t id = 0) {
116 std::unique_ptr<AsyncClosure> closure(
Cameron Pickettd132ce12018-03-12 23:07:37117 new FireAndForgetAsyncClosure<FunctorT>(
118 this, std::forward<FunctorT>(functor)));
Henrik Kjellanderec78f1c2017-06-29 05:52:50119 DoInvokeDelayed(posted_from, thread, std::move(closure), delay_ms, id);
120 }
121
122 // Synchronously execute on |thread| all outstanding calls we own
123 // that are pending on |thread|, and wait for calls to complete
124 // before returning. Optionally filter by message id.
125 // The destructor will not wait for outstanding calls, so if that
126 // behavior is desired, call Flush() before destroying this object.
127 void Flush(Thread* thread, uint32_t id = MQID_ANY);
128
Chris Dziemborowiczc38d3202018-01-31 20:52:24129 // Cancels any outstanding calls we own that are pending on any thread, and
130 // which have not yet started to execute. This does not wait for any calls
131 // that have already started executing to complete.
132 void Clear();
133
Henrik Kjellanderec78f1c2017-06-29 05:52:50134 private:
135 void OnMessage(Message* msg) override;
136 void DoInvoke(const Location& posted_from,
137 Thread* thread,
138 std::unique_ptr<AsyncClosure> closure,
139 uint32_t id);
140 void DoInvokeDelayed(const Location& posted_from,
141 Thread* thread,
142 std::unique_ptr<AsyncClosure> closure,
143 uint32_t delay_ms,
144 uint32_t id);
deadbeef3af63b02017-08-09 00:59:47145
146 // Used to keep track of how many invocations (AsyncClosures) are still
147 // alive, so that the destructor can wait for them to finish, as described in
148 // the class documentation.
149 //
150 // TODO(deadbeef): Using a raw std::atomic like this is prone to error and
151 // difficult to maintain. We should try to wrap this functionality in a
152 // separate class to reduce the chance of errors being introduced in the
153 // future.
154 std::atomic<int> pending_invocations_;
155
156 // Reference counted so that if the AsyncInvoker destructor finishes before
157 // an AsyncClosure's destructor that's about to call
158 // "invocation_complete_->Set()", it's not dereferenced after being
159 // destroyed.
160 scoped_refptr<RefCountedObject<Event>> invocation_complete_;
161
162 // This flag is used to ensure that if an application AsyncInvokes tasks that
163 // recursively AsyncInvoke other tasks ad infinitum, the cycle eventually
164 // terminates.
165 std::atomic<bool> destroying_;
166
Henrik Kjellanderec78f1c2017-06-29 05:52:50167 friend class AsyncClosure;
168
169 RTC_DISALLOW_COPY_AND_ASSIGN(AsyncInvoker);
170};
171
172// Similar to AsyncInvoker, but guards against the Thread being destroyed while
173// there are outstanding dangling pointers to it. It will connect to the current
174// thread in the constructor, and will get notified when that thread is
175// destroyed. After GuardedAsyncInvoker is constructed, it can be used from
176// other threads to post functors to the thread it was constructed on. If that
177// thread dies, any further calls to AsyncInvoke() will be safely ignored.
178class GuardedAsyncInvoker : public sigslot::has_slots<> {
179 public:
180 GuardedAsyncInvoker();
181 ~GuardedAsyncInvoker() override;
182
183 // Synchronously execute all outstanding calls we own, and wait for calls to
184 // complete before returning. Optionally filter by message id. The destructor
185 // will not wait for outstanding calls, so if that behavior is desired, call
186 // Flush() first. Returns false if the thread has died.
187 bool Flush(uint32_t id = MQID_ANY);
188
189 // Call |functor| asynchronously with no callback upon completion. Returns
190 // immediately. Returns false if the thread has died.
191 template <class ReturnT, class FunctorT>
192 bool AsyncInvoke(const Location& posted_from,
Cameron Pickettd132ce12018-03-12 23:07:37193 FunctorT&& functor,
Henrik Kjellanderec78f1c2017-06-29 05:52:50194 uint32_t id = 0) {
deadbeef3af63b02017-08-09 00:59:47195 CritScope cs(&crit_);
Henrik Kjellanderec78f1c2017-06-29 05:52:50196 if (thread_ == nullptr)
197 return false;
Cameron Pickettd132ce12018-03-12 23:07:37198 invoker_.AsyncInvoke<ReturnT, FunctorT>(
199 posted_from, thread_, std::forward<FunctorT>(functor), id);
Henrik Kjellanderec78f1c2017-06-29 05:52:50200 return true;
201 }
202
203 // Call |functor| asynchronously with |delay_ms|, with no callback upon
204 // completion. Returns immediately. Returns false if the thread has died.
205 template <class ReturnT, class FunctorT>
206 bool AsyncInvokeDelayed(const Location& posted_from,
Cameron Pickettd132ce12018-03-12 23:07:37207 FunctorT&& functor,
Henrik Kjellanderec78f1c2017-06-29 05:52:50208 uint32_t delay_ms,
209 uint32_t id = 0) {
deadbeef3af63b02017-08-09 00:59:47210 CritScope cs(&crit_);
Henrik Kjellanderec78f1c2017-06-29 05:52:50211 if (thread_ == nullptr)
212 return false;
Cameron Pickettd132ce12018-03-12 23:07:37213 invoker_.AsyncInvokeDelayed<ReturnT, FunctorT>(
214 posted_from, thread_, std::forward<FunctorT>(functor), delay_ms, id);
Henrik Kjellanderec78f1c2017-06-29 05:52:50215 return true;
216 }
217
218 // Call |functor| asynchronously, calling |callback| when done. Returns false
219 // if the thread has died.
220 template <class ReturnT, class FunctorT, class HostT>
221 bool AsyncInvoke(const Location& posted_from,
222 const Location& callback_posted_from,
Cameron Pickettd132ce12018-03-12 23:07:37223 FunctorT&& functor,
Henrik Kjellanderec78f1c2017-06-29 05:52:50224 void (HostT::*callback)(ReturnT),
225 HostT* callback_host,
226 uint32_t id = 0) {
deadbeef3af63b02017-08-09 00:59:47227 CritScope cs(&crit_);
Henrik Kjellanderec78f1c2017-06-29 05:52:50228 if (thread_ == nullptr)
229 return false;
230 invoker_.AsyncInvoke<ReturnT, FunctorT, HostT>(
Cameron Pickettd132ce12018-03-12 23:07:37231 posted_from, callback_posted_from, thread_,
232 std::forward<FunctorT>(functor), callback, callback_host, id);
Henrik Kjellanderec78f1c2017-06-29 05:52:50233 return true;
234 }
235
236 // Call |functor| asynchronously calling |callback| when done. Overloaded for
237 // void return. Returns false if the thread has died.
238 template <class ReturnT, class FunctorT, class HostT>
239 bool AsyncInvoke(const Location& posted_from,
240 const Location& callback_posted_from,
Cameron Pickettd132ce12018-03-12 23:07:37241 FunctorT&& functor,
Henrik Kjellanderec78f1c2017-06-29 05:52:50242 void (HostT::*callback)(),
243 HostT* callback_host,
244 uint32_t id = 0) {
deadbeef3af63b02017-08-09 00:59:47245 CritScope cs(&crit_);
Henrik Kjellanderec78f1c2017-06-29 05:52:50246 if (thread_ == nullptr)
247 return false;
248 invoker_.AsyncInvoke<ReturnT, FunctorT, HostT>(
Cameron Pickettd132ce12018-03-12 23:07:37249 posted_from, callback_posted_from, thread_,
250 std::forward<FunctorT>(functor), callback, callback_host, id);
Henrik Kjellanderec78f1c2017-06-29 05:52:50251 return true;
252 }
253
254 private:
255 // Callback when |thread_| is destroyed.
256 void ThreadDestroyed();
257
258 CriticalSection crit_;
danilchap3c6abd22017-09-06 12:46:29259 Thread* thread_ RTC_GUARDED_BY(crit_);
260 AsyncInvoker invoker_ RTC_GUARDED_BY(crit_);
Henrik Kjellanderec78f1c2017-06-29 05:52:50261};
262
263} // namespace rtc
henrike@webrtc.orgf0488722014-05-13 18:00:26264
Steve Anton10542f22019-01-11 17:11:00265#endif // RTC_BASE_ASYNC_INVOKER_H_