blob: 17aa0db80fdf94299218c672686f58e09b16319a [file] [log] [blame]
Bjorn A Mellemc4f86542019-11-21 10:37:18 -08001/*
2 * Copyright 2019 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#ifndef API_TEST_TIME_CONTROLLER_H_
11#define API_TEST_TIME_CONTROLLER_H_
12
13#include <functional>
14#include <memory>
Sebastian Janssonfc8279d2020-01-16 11:45:59 +010015#include <string>
Bjorn A Mellemc4f86542019-11-21 10:37:18 -080016
17#include "api/task_queue/task_queue_factory.h"
18#include "api/units/time_delta.h"
19#include "api/units/timestamp.h"
20#include "modules/utility/include/process_thread.h"
21#include "rtc_base/synchronization/yield_policy.h"
Sebastian Janssonfc8279d2020-01-16 11:45:59 +010022#include "rtc_base/thread.h"
Bjorn A Mellemc4f86542019-11-21 10:37:18 -080023#include "system_wrappers/include/clock.h"
24
25namespace webrtc {
Bjorn A Mellemc4f86542019-11-21 10:37:18 -080026// Interface for controlling time progress. This allows us to execute test code
27// in either real time or simulated time by using different implementation of
28// this interface.
29class TimeController {
30 public:
31 virtual ~TimeController() = default;
32 // Provides a clock instance that follows implementation defined time
33 // progress.
34 virtual Clock* GetClock() = 0;
35 // The returned factory will created task queues that runs in implementation
36 // defined time domain.
37 virtual TaskQueueFactory* GetTaskQueueFactory() = 0;
Sebastian Jansson094ce2e2020-01-22 14:37:52 +010038 // Simple helper to create an owned factory that can be used as a parameter
39 // for PeerConnectionFactory. Note that this might depend on the underlying
40 // time controller and therfore must be destroyed before the time controller
41 // is destroyed.
42 std::unique_ptr<TaskQueueFactory> CreateTaskQueueFactory();
43
Bjorn A Mellemc4f86542019-11-21 10:37:18 -080044 // Creates a process thread.
45 virtual std::unique_ptr<ProcessThread> CreateProcessThread(
46 const char* thread_name) = 0;
Artem Titov0e61fdd2021-07-25 21:50:14 +020047 // Creates an rtc::Thread instance. If `socket_server` is nullptr, a default
Sebastian Janssonfc8279d2020-01-16 11:45:59 +010048 // noop socket server is created.
Artem Titov0ef4a242020-07-06 10:57:28 +020049 // Returned thread is not null and started.
Sebastian Janssonfc8279d2020-01-16 11:45:59 +010050 virtual std::unique_ptr<rtc::Thread> CreateThread(
51 const std::string& name,
52 std::unique_ptr<rtc::SocketServer> socket_server = nullptr) = 0;
53
54 // Creates an rtc::Thread instance that ensure that it's set as the current
55 // thread.
56 virtual rtc::Thread* GetMainThread() = 0;
Bjorn A Mellemc4f86542019-11-21 10:37:18 -080057 // Allow task queues and process threads created by this instance to execute
Artem Titov0e61fdd2021-07-25 21:50:14 +020058 // for the given `duration`.
Markus Handell486cc552019-12-03 14:37:28 +010059 virtual void AdvanceTime(TimeDelta duration) = 0;
Sebastian Jansson6ce033a2020-01-22 10:12:56 +010060
Artem Titovb5a01382020-04-29 11:09:59 +020061 // Waits until condition() == true, polling condition() in small time
62 // intervals.
Artem Titov0e61fdd2021-07-25 21:50:14 +020063 // Returns true if condition() was evaluated to true before `max_duration`
Artem Titov656efbe2020-07-07 13:35:28 +020064 // elapsed and false otherwise.
Artem Titovb5a01382020-04-29 11:09:59 +020065 bool Wait(const std::function<bool()>& condition,
Danil Chapovalov0c626af2020-02-10 11:16:00 +010066 TimeDelta max_duration = TimeDelta::Seconds(5));
Bjorn A Mellemc4f86542019-11-21 10:37:18 -080067};
68
69// Interface for telling time, scheduling an event to fire at a particular time,
70// and waiting for time to pass.
71class ControlledAlarmClock {
72 public:
73 virtual ~ControlledAlarmClock() = default;
74
75 // Gets a clock that tells the alarm clock's notion of time.
76 virtual Clock* GetClock() = 0;
77
Artem Titov0e61fdd2021-07-25 21:50:14 +020078 // Schedules the alarm to fire at `deadline`.
79 // An alarm clock only supports one deadline. Calls to `ScheduleAlarmAt` with
Bjorn A Mellemc4f86542019-11-21 10:37:18 -080080 // an earlier deadline will reset the alarm to fire earlier.Calls to
Artem Titov0e61fdd2021-07-25 21:50:14 +020081 // `ScheduleAlarmAt` with a later deadline are ignored. Returns true if the
Bjorn A Mellemc4f86542019-11-21 10:37:18 -080082 // deadline changed, false otherwise.
83 virtual bool ScheduleAlarmAt(Timestamp deadline) = 0;
84
85 // Sets the callback that should be run when the alarm fires.
86 virtual void SetCallback(std::function<void()> callback) = 0;
87
Artem Titov0e61fdd2021-07-25 21:50:14 +020088 // Waits for `duration` to pass, according to the alarm clock.
Bjorn A Mellemc4f86542019-11-21 10:37:18 -080089 virtual void Sleep(TimeDelta duration) = 0;
90};
91
92} // namespace webrtc
93#endif // API_TEST_TIME_CONTROLLER_H_