blob: ffb7a115899711a3c03b2ac05c8dfcc936918690 [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>
Danil Chapovalov6f09ae22017-10-12 14:39:25 +020016#include <utility>
tommic06b1332016-05-14 11:31:40 -070017
Karl Wiberg918f50c2018-07-05 11:40:33 +020018#include "absl/memory/memory.h"
Danil Chapovalov959e9b62019-01-14 14:29:18 +010019#include "api/task_queue/queued_task.h"
Danil Chapovalovd00405f2019-02-25 15:06:13 +010020#include "api/task_queue/task_queue_base.h"
21#include "api/task_queue/task_queue_factory.h"
Steve Anton10542f22019-01-11 09:11:00 -080022#include "rtc_base/constructor_magic.h"
Mirko Bonadei3d255302018-10-11 10:50:45 +020023#include "rtc_base/system/rtc_export.h"
Danil Chapovalov3b548dd2019-03-01 14:58:44 +010024#include "rtc_base/task_utils/to_queued_task.h"
Danil Chapovalov02fddf62018-02-12 12:41:16 +010025#include "rtc_base/thread_annotations.h"
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020026
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020027namespace rtc {
28
Danil Chapovalov959e9b62019-01-14 14:29:18 +010029// TODO(danilchap): Remove the alias when all of webrtc is updated to use
30// webrtc::QueuedTask directly.
31using ::webrtc::QueuedTask;
Danil Chapovalov3b548dd2019-03-01 14:58:44 +010032// TODO(danilchap): Remove the alias when all of webrtc is updated to use
33// webrtc::ToQueuedTask directly.
34template <typename... Args>
35std::unique_ptr<QueuedTask> NewClosure(Args&&... args) {
36 return webrtc::ToQueuedTask(std::forward<Args>(args)...);
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020037}
38
39// Implements a task queue that asynchronously executes tasks in a way that
40// guarantees that they're executed in FIFO order and that tasks never overlap.
41// Tasks may always execute on the same worker thread and they may not.
42// To DCHECK that tasks are executing on a known task queue, use IsCurrent().
43//
44// Here are some usage examples:
45//
46// 1) Asynchronously running a lambda:
47//
48// class MyClass {
49// ...
50// TaskQueue queue_("MyQueue");
51// };
52//
53// void MyClass::StartWork() {
54// queue_.PostTask([]() { Work(); });
55// ...
56//
57// 2) Doing work asynchronously on a worker queue and providing a notification
58// callback on the current queue, when the work has been done:
59//
60// void MyClass::StartWorkAndLetMeKnowWhenDone(
61// std::unique_ptr<QueuedTask> callback) {
62// DCHECK(TaskQueue::Current()) << "Need to be running on a queue";
63// queue_.PostTaskAndReply([]() { Work(); }, std::move(callback));
64// }
65// ...
66// my_class->StartWorkAndLetMeKnowWhenDone(
Mirko Bonadei675513b2017-11-09 11:09:25 +010067// NewClosure([]() { RTC_LOG(INFO) << "The work is done!";}));
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020068//
69// 3) Posting a custom task on a timer. The task posts itself again after
70// every running:
71//
72// class TimerTask : public QueuedTask {
73// public:
74// TimerTask() {}
75// private:
76// bool Run() override {
77// ++count_;
78// TaskQueue::Current()->PostDelayedTask(
79// std::unique_ptr<QueuedTask>(this), 1000);
80// // Ownership has been transferred to the next occurance,
81// // so return false to prevent from being deleted now.
82// return false;
83// }
84// int count_ = 0;
85// };
86// ...
87// queue_.PostDelayedTask(
88// std::unique_ptr<QueuedTask>(new TimerTask()), 1000);
89//
90// For more examples, see task_queue_unittests.cc.
91//
92// A note on destruction:
93//
94// When a TaskQueue is deleted, pending tasks will not be executed but they will
95// be deleted. The deletion of tasks may happen asynchronously after the
96// TaskQueue itself has been deleted or it may happen synchronously while the
97// TaskQueue instance is being deleted. This may vary from one OS to the next
98// so assumptions about lifetimes of pending tasks should not be made.
Mirko Bonadei3d255302018-10-11 10:50:45 +020099class RTC_LOCKABLE RTC_EXPORT TaskQueue {
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +0200100 public:
101 // TaskQueue priority levels. On some platforms these will map to thread
102 // priorities, on others such as Mac and iOS, GCD queue priorities.
Danil Chapovalovd00405f2019-02-25 15:06:13 +0100103 using Priority = ::webrtc::TaskQueueFactory::Priority;
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +0200104
Danil Chapovalovf3280e92019-02-28 10:39:04 +0100105 explicit TaskQueue(std::unique_ptr<webrtc::TaskQueueBase,
106 webrtc::TaskQueueDeleter> task_queue);
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +0200107 explicit TaskQueue(const char* queue_name,
108 Priority priority = Priority::NORMAL);
109 ~TaskQueue();
110
111 static TaskQueue* Current();
112
113 // Used for DCHECKing the current queue.
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +0200114 bool IsCurrent() const;
115
Danil Chapovalovf3280e92019-02-28 10:39:04 +0100116 // Returns non-owning pointer to the task queue implementation.
117 webrtc::TaskQueueBase* Get() { return impl_; }
118
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +0200119 // TODO(tommi): For better debuggability, implement RTC_FROM_HERE.
120
121 // Ownership of the task is passed to PostTask.
122 void PostTask(std::unique_ptr<QueuedTask> task);
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +0200123
124 // Schedules a task to execute a specified number of milliseconds from when
125 // the call is made. The precision should be considered as "best effort"
126 // and in some cases, such as on Windows when all high precision timers have
127 // been used up, can be off by as much as 15 millseconds (although 8 would be
128 // more likely). This can be mitigated by limiting the use of delayed tasks.
129 void PostDelayedTask(std::unique_ptr<QueuedTask> task, uint32_t milliseconds);
130
eladalonffe2e142017-08-31 04:36:05 -0700131 // std::enable_if is used here to make sure that calls to PostTask() with
132 // std::unique_ptr<SomeClassDerivedFromQueuedTask> would not end up being
133 // caught by this template.
134 template <class Closure,
Danil Chapovalov6f09ae22017-10-12 14:39:25 +0200135 typename std::enable_if<!std::is_convertible<
136 Closure,
137 std::unique_ptr<QueuedTask>>::value>::type* = nullptr>
138 void PostTask(Closure&& closure) {
139 PostTask(NewClosure(std::forward<Closure>(closure)));
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +0200140 }
141
142 // See documentation above for performance expectations.
Danil Chapovalov6f09ae22017-10-12 14:39:25 +0200143 template <class Closure,
144 typename std::enable_if<!std::is_convertible<
145 Closure,
146 std::unique_ptr<QueuedTask>>::value>::type* = nullptr>
147 void PostDelayedTask(Closure&& closure, uint32_t milliseconds) {
148 PostDelayedTask(NewClosure(std::forward<Closure>(closure)), milliseconds);
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +0200149 }
150
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +0200151 private:
Danil Chapovalovd00405f2019-02-25 15:06:13 +0100152 webrtc::TaskQueueBase* const impl_;
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +0200153
154 RTC_DISALLOW_COPY_AND_ASSIGN(TaskQueue);
155};
156
157} // namespace rtc
tommic06b1332016-05-14 11:31:40 -0700158
Mirko Bonadei92ea95e2017-09-15 06:47:31 +0200159#endif // RTC_BASE_TASK_QUEUE_H_