blob: 41fcf419535c7a3bf75c8b62873e7e4a0da4a57a [file] [log] [blame]
tommic06b1332016-05-14 11:31:40 -07001/*
2 * Copyright 2016 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
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020011#ifndef RTC_BASE_TASK_QUEUE_H_
12#define RTC_BASE_TASK_QUEUE_H_
tommic06b1332016-05-14 11:31:40 -070013
Yves Gerey3e707812018-11-28 16:47:49 +010014#include <stdint.h>
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020015#include <memory>
eladalonffe2e142017-08-31 04:36:05 -070016#include <type_traits>
Danil Chapovalov6f09ae22017-10-12 14:39:25 +020017#include <utility>
tommic06b1332016-05-14 11:31:40 -070018
Karl Wiberg918f50c2018-07-05 11:40:33 +020019#include "absl/memory/memory.h"
Danil Chapovalov959e9b62019-01-14 14:29:18 +010020#include "api/task_queue/queued_task.h"
Steve Anton10542f22019-01-11 09:11:00 -080021#include "rtc_base/constructor_magic.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020022#include "rtc_base/scoped_ref_ptr.h"
Mirko Bonadei3d255302018-10-11 10:50:45 +020023#include "rtc_base/system/rtc_export.h"
Danil Chapovalov02fddf62018-02-12 12:41:16 +010024#include "rtc_base/thread_annotations.h"
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020025
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020026namespace rtc {
27
Danil Chapovalov959e9b62019-01-14 14:29:18 +010028// TODO(danilchap): Remove the alias when all of webrtc is updated to use
29// webrtc::QueuedTask directly.
30using ::webrtc::QueuedTask;
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020031
32// Simple implementation of QueuedTask for use with rtc::Bind and lambdas.
33template <class Closure>
34class ClosureTask : public QueuedTask {
35 public:
Danil Chapovalov6f09ae22017-10-12 14:39:25 +020036 explicit ClosureTask(Closure&& closure)
37 : closure_(std::forward<Closure>(closure)) {}
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020038
39 private:
40 bool Run() override {
41 closure_();
42 return true;
43 }
44
Danil Chapovalov6f09ae22017-10-12 14:39:25 +020045 typename std::remove_const<
46 typename std::remove_reference<Closure>::type>::type closure_;
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020047};
48
49// Extends ClosureTask to also allow specifying cleanup code.
50// This is useful when using lambdas if guaranteeing cleanup, even if a task
51// was dropped (queue is too full), is required.
52template <class Closure, class Cleanup>
53class ClosureTaskWithCleanup : public ClosureTask<Closure> {
54 public:
Danil Chapovalov6f09ae22017-10-12 14:39:25 +020055 ClosureTaskWithCleanup(Closure&& closure, Cleanup&& cleanup)
56 : ClosureTask<Closure>(std::forward<Closure>(closure)),
57 cleanup_(std::forward<Cleanup>(cleanup)) {}
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020058 ~ClosureTaskWithCleanup() { cleanup_(); }
59
60 private:
Danil Chapovalov6f09ae22017-10-12 14:39:25 +020061 typename std::remove_const<
62 typename std::remove_reference<Cleanup>::type>::type cleanup_;
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020063};
64
65// Convenience function to construct closures that can be passed directly
66// to methods that support std::unique_ptr<QueuedTask> but not template
67// based parameters.
68template <class Closure>
Danil Chapovalov6f09ae22017-10-12 14:39:25 +020069static std::unique_ptr<QueuedTask> NewClosure(Closure&& closure) {
Karl Wiberg918f50c2018-07-05 11:40:33 +020070 return absl::make_unique<ClosureTask<Closure>>(
71 std::forward<Closure>(closure));
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020072}
73
74template <class Closure, class Cleanup>
Danil Chapovalov6f09ae22017-10-12 14:39:25 +020075static std::unique_ptr<QueuedTask> NewClosure(Closure&& closure,
76 Cleanup&& cleanup) {
Karl Wiberg918f50c2018-07-05 11:40:33 +020077 return absl::make_unique<ClosureTaskWithCleanup<Closure, Cleanup>>(
Danil Chapovalov6f09ae22017-10-12 14:39:25 +020078 std::forward<Closure>(closure), std::forward<Cleanup>(cleanup));
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020079}
80
81// Implements a task queue that asynchronously executes tasks in a way that
82// guarantees that they're executed in FIFO order and that tasks never overlap.
83// Tasks may always execute on the same worker thread and they may not.
84// To DCHECK that tasks are executing on a known task queue, use IsCurrent().
85//
86// Here are some usage examples:
87//
88// 1) Asynchronously running a lambda:
89//
90// class MyClass {
91// ...
92// TaskQueue queue_("MyQueue");
93// };
94//
95// void MyClass::StartWork() {
96// queue_.PostTask([]() { Work(); });
97// ...
98//
99// 2) Doing work asynchronously on a worker queue and providing a notification
100// callback on the current queue, when the work has been done:
101//
102// void MyClass::StartWorkAndLetMeKnowWhenDone(
103// std::unique_ptr<QueuedTask> callback) {
104// DCHECK(TaskQueue::Current()) << "Need to be running on a queue";
105// queue_.PostTaskAndReply([]() { Work(); }, std::move(callback));
106// }
107// ...
108// my_class->StartWorkAndLetMeKnowWhenDone(
Mirko Bonadei675513b2017-11-09 11:09:25 +0100109// NewClosure([]() { RTC_LOG(INFO) << "The work is done!";}));
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +0200110//
111// 3) Posting a custom task on a timer. The task posts itself again after
112// every running:
113//
114// class TimerTask : public QueuedTask {
115// public:
116// TimerTask() {}
117// private:
118// bool Run() override {
119// ++count_;
120// TaskQueue::Current()->PostDelayedTask(
121// std::unique_ptr<QueuedTask>(this), 1000);
122// // Ownership has been transferred to the next occurance,
123// // so return false to prevent from being deleted now.
124// return false;
125// }
126// int count_ = 0;
127// };
128// ...
129// queue_.PostDelayedTask(
130// std::unique_ptr<QueuedTask>(new TimerTask()), 1000);
131//
132// For more examples, see task_queue_unittests.cc.
133//
134// A note on destruction:
135//
136// When a TaskQueue is deleted, pending tasks will not be executed but they will
137// be deleted. The deletion of tasks may happen asynchronously after the
138// TaskQueue itself has been deleted or it may happen synchronously while the
139// TaskQueue instance is being deleted. This may vary from one OS to the next
140// so assumptions about lifetimes of pending tasks should not be made.
Mirko Bonadei3d255302018-10-11 10:50:45 +0200141class RTC_LOCKABLE RTC_EXPORT TaskQueue {
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +0200142 public:
143 // TaskQueue priority levels. On some platforms these will map to thread
144 // priorities, on others such as Mac and iOS, GCD queue priorities.
145 enum class Priority {
146 NORMAL = 0,
147 HIGH,
148 LOW,
149 };
150
151 explicit TaskQueue(const char* queue_name,
152 Priority priority = Priority::NORMAL);
153 ~TaskQueue();
154
155 static TaskQueue* Current();
156
157 // Used for DCHECKing the current queue.
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +0200158 bool IsCurrent() const;
159
160 // TODO(tommi): For better debuggability, implement RTC_FROM_HERE.
161
162 // Ownership of the task is passed to PostTask.
163 void PostTask(std::unique_ptr<QueuedTask> task);
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +0200164
165 // Schedules a task to execute a specified number of milliseconds from when
166 // the call is made. The precision should be considered as "best effort"
167 // and in some cases, such as on Windows when all high precision timers have
168 // been used up, can be off by as much as 15 millseconds (although 8 would be
169 // more likely). This can be mitigated by limiting the use of delayed tasks.
170 void PostDelayedTask(std::unique_ptr<QueuedTask> task, uint32_t milliseconds);
171
eladalonffe2e142017-08-31 04:36:05 -0700172 // std::enable_if is used here to make sure that calls to PostTask() with
173 // std::unique_ptr<SomeClassDerivedFromQueuedTask> would not end up being
174 // caught by this template.
175 template <class Closure,
Danil Chapovalov6f09ae22017-10-12 14:39:25 +0200176 typename std::enable_if<!std::is_convertible<
177 Closure,
178 std::unique_ptr<QueuedTask>>::value>::type* = nullptr>
179 void PostTask(Closure&& closure) {
180 PostTask(NewClosure(std::forward<Closure>(closure)));
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +0200181 }
182
183 // See documentation above for performance expectations.
Danil Chapovalov6f09ae22017-10-12 14:39:25 +0200184 template <class Closure,
185 typename std::enable_if<!std::is_convertible<
186 Closure,
187 std::unique_ptr<QueuedTask>>::value>::type* = nullptr>
188 void PostDelayedTask(Closure&& closure, uint32_t milliseconds) {
189 PostDelayedTask(NewClosure(std::forward<Closure>(closure)), milliseconds);
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +0200190 }
191
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +0200192 private:
perkj650fdae2017-08-25 05:00:11 -0700193 class Impl;
Danil Chapovalov43f39822018-12-05 15:46:58 +0100194 // TODO(danilchap): Remove when external implementaions of TaskQueue remove
195 // these two functions.
196 void PostTaskAndReply(std::unique_ptr<QueuedTask> task,
197 std::unique_ptr<QueuedTask> reply,
198 TaskQueue* reply_queue);
199 void PostTaskAndReply(std::unique_ptr<QueuedTask> task,
200 std::unique_ptr<QueuedTask> reply);
Yves Gerey3e707812018-11-28 16:47:49 +0100201
perkj650fdae2017-08-25 05:00:11 -0700202 const scoped_refptr<Impl> impl_;
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +0200203
204 RTC_DISALLOW_COPY_AND_ASSIGN(TaskQueue);
205};
206
207} // namespace rtc
tommic06b1332016-05-14 11:31:40 -0700208
Mirko Bonadei92ea95e2017-09-15 06:47:31 +0200209#endif // RTC_BASE_TASK_QUEUE_H_