blob: 93eed6680c9b7426889ae35720be21efe664e397 [file] [log] [blame]
eladalon413ee9a2017-08-22 04:02:52 -07001/*
2 * Copyright (c) 2017 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 */
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020010#ifndef TEST_SINGLE_THREADED_TASK_QUEUE_H_
11#define TEST_SINGLE_THREADED_TASK_QUEUE_H_
eladalon413ee9a2017-08-22 04:02:52 -070012
13#include <functional>
14#include <list>
15#include <memory>
16
Steve Anton10542f22019-01-11 09:11:00 -080017#include "rtc_base/critical_section.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020018#include "rtc_base/event.h"
19#include "rtc_base/platform_thread.h"
20#include "rtc_base/thread_checker.h"
eladalon413ee9a2017-08-22 04:02:52 -070021
22namespace webrtc {
23namespace test {
24
25// This class gives capabilities similar to rtc::TaskQueue, but ensures
26// everything happens on the same thread. This is intended to make the
27// threading model of unit-tests (specifically end-to-end tests) more closely
28// resemble that of real WebRTC, thereby allowing us to replace some critical
29// sections by thread-checkers.
30// This task is NOT tuned for performance, but rather for simplicity.
31class SingleThreadedTaskQueueForTesting {
32 public:
33 using Task = std::function<void()>;
34 using TaskId = size_t;
Tommi31d1bce2019-08-27 11:34:20 +020035 constexpr static TaskId kInvalidTaskId = static_cast<TaskId>(-1);
eladalon413ee9a2017-08-22 04:02:52 -070036
37 explicit SingleThreadedTaskQueueForTesting(const char* name);
38 ~SingleThreadedTaskQueueForTesting();
39
40 // Sends one task to the task-queue, and returns a handle by which the
41 // task can be cancelled.
42 // This mimics the behavior of TaskQueue, but only for lambdas, rather than
43 // for both lambdas and QueuedTask objects.
44 TaskId PostTask(Task task);
45
46 // Same as PostTask(), but ensures that the task will not begin execution
47 // less than |delay_ms| milliseconds after being posted; an upper bound
48 // is not provided.
49 TaskId PostDelayedTask(Task task, int64_t delay_ms);
50
51 // Send one task to the queue. The function does not return until the task
52 // has finished executing. No support for canceling the task.
53 void SendTask(Task task);
54
55 // Given an identifier to the task, attempts to eject it from the queue.
56 // Returns true if the task was found and cancelled. Failure possible
57 // only for invalid task IDs, or for tasks which have already been executed.
58 bool CancelTask(TaskId task_id);
59
Tommi6e4791f2019-08-14 23:05:44 +020060 // Returns true iff called on the thread associated with the task queue.
61 bool IsCurrent();
62
Tommi31d1bce2019-08-27 11:34:20 +020063 // Returns true iff the task queue is actively being serviced.
64 bool IsRunning();
65
66 bool HasPendingTasks() const;
67
68 void Stop();
69
eladalon413ee9a2017-08-22 04:02:52 -070070 private:
71 struct QueuedTask {
72 QueuedTask(TaskId task_id, int64_t earliest_execution_time, Task task);
73 ~QueuedTask();
74
75 TaskId task_id;
76 int64_t earliest_execution_time;
77 Task task;
78 };
79
80 static void Run(void* obj);
81
82 void RunLoop();
83
84 rtc::CriticalSection cs_;
danilchapa37de392017-09-09 04:17:22 -070085 std::list<std::unique_ptr<QueuedTask>> tasks_ RTC_GUARDED_BY(cs_);
eladalon413ee9a2017-08-22 04:02:52 -070086 rtc::ThreadChecker owner_thread_checker_;
87 rtc::PlatformThread thread_;
danilchapa37de392017-09-09 04:17:22 -070088 bool running_ RTC_GUARDED_BY(cs_);
eladalon413ee9a2017-08-22 04:02:52 -070089
90 TaskId next_task_id_;
91
92 // The task-queue will sleep when not executing a task. Wake up occurs when:
93 // * Upon destruction, to make sure that the |thead_| terminates, so that it
94 // may be joined. [Event will be set.]
95 // * New task added. Because we optimize for simplicity rahter than for
96 // performance (this class is a testing facility only), waking up occurs
97 // when we get a new task even if it is scheduled with a delay. The RunLoop
98 // is in charge of sending itself back to sleep if the next task is only
99 // to be executed at a later time. [Event will be set.]
100 // * When the next task in the queue is a delayed-task, and the time for
101 // its execution has come. [Event will time-out.]
102 rtc::Event wake_up_;
103};
104
105} // namespace test
106} // namespace webrtc
107
Mirko Bonadei92ea95e2017-09-15 06:47:31 +0200108#endif // TEST_SINGLE_THREADED_TASK_QUEUE_H_