summaryrefslogtreecommitdiffstats
path: root/third_party/libwebrtc/test/time_controller/external_time_controller.cc
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
commit36d22d82aa202bb199967e9512281e9a53db42c9 (patch)
tree105e8c98ddea1c1e4784a60a5a6410fa416be2de /third_party/libwebrtc/test/time_controller/external_time_controller.cc
parentInitial commit. (diff)
downloadfirefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz
firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'third_party/libwebrtc/test/time_controller/external_time_controller.cc')
-rw-r--r--third_party/libwebrtc/test/time_controller/external_time_controller.cc134
1 files changed, 134 insertions, 0 deletions
diff --git a/third_party/libwebrtc/test/time_controller/external_time_controller.cc b/third_party/libwebrtc/test/time_controller/external_time_controller.cc
new file mode 100644
index 0000000000..f652eb686c
--- /dev/null
+++ b/third_party/libwebrtc/test/time_controller/external_time_controller.cc
@@ -0,0 +1,134 @@
+/*
+ * Copyright 2019 The WebRTC project authors. All Rights Reserved.
+ *
+ * Use of this source code is governed by a BSD-style license
+ * that can be found in the LICENSE file in the root of the source
+ * tree. An additional intellectual property rights grant can be found
+ * in the file PATENTS. All contributing project authors may
+ * be found in the AUTHORS file in the root of the source tree.
+ */
+#include "test/time_controller/external_time_controller.h"
+
+#include <algorithm>
+#include <map>
+#include <memory>
+#include <utility>
+
+#include "absl/functional/any_invocable.h"
+#include "api/task_queue/task_queue_base.h"
+#include "api/task_queue/task_queue_factory.h"
+#include "api/units/time_delta.h"
+#include "api/units/timestamp.h"
+#include "rtc_base/checks.h"
+#include "rtc_base/synchronization/yield_policy.h"
+#include "test/time_controller/simulated_time_controller.h"
+
+namespace webrtc {
+
+// Wraps a TaskQueue so that it can reschedule the time controller whenever
+// an external call schedules a new task.
+class ExternalTimeController::TaskQueueWrapper : public TaskQueueBase {
+ public:
+ TaskQueueWrapper(ExternalTimeController* parent,
+ std::unique_ptr<TaskQueueBase, TaskQueueDeleter> base)
+ : parent_(parent), base_(std::move(base)) {}
+
+ void PostTask(absl::AnyInvocable<void() &&> task) override {
+ parent_->UpdateTime();
+ base_->PostTask(TaskWrapper(std::move(task)));
+ parent_->ScheduleNext();
+ }
+
+ void PostDelayedTask(absl::AnyInvocable<void() &&> task,
+ TimeDelta delay) override {
+ parent_->UpdateTime();
+ base_->PostDelayedTask(TaskWrapper(std::move(task)), delay);
+ parent_->ScheduleNext();
+ }
+
+ void PostDelayedHighPrecisionTask(absl::AnyInvocable<void() &&> task,
+ TimeDelta delay) override {
+ parent_->UpdateTime();
+ base_->PostDelayedHighPrecisionTask(TaskWrapper(std::move(task)), delay);
+ parent_->ScheduleNext();
+ }
+
+ void Delete() override { delete this; }
+
+ private:
+ absl::AnyInvocable<void() &&> TaskWrapper(
+ absl::AnyInvocable<void() &&> task) {
+ return [task = std::move(task), this]() mutable {
+ CurrentTaskQueueSetter current(this);
+ std::move(task)();
+ };
+ }
+
+ ExternalTimeController* const parent_;
+ std::unique_ptr<TaskQueueBase, TaskQueueDeleter> base_;
+};
+
+ExternalTimeController::ExternalTimeController(ControlledAlarmClock* alarm)
+ : alarm_(alarm),
+ impl_(alarm_->GetClock()->CurrentTime()),
+ yield_policy_(&impl_) {
+ global_clock_.SetTime(alarm_->GetClock()->CurrentTime());
+ alarm_->SetCallback([this] { Run(); });
+}
+
+Clock* ExternalTimeController::GetClock() {
+ return alarm_->GetClock();
+}
+
+TaskQueueFactory* ExternalTimeController::GetTaskQueueFactory() {
+ return this;
+}
+
+void ExternalTimeController::AdvanceTime(TimeDelta duration) {
+ alarm_->Sleep(duration);
+}
+
+std::unique_ptr<rtc::Thread> ExternalTimeController::CreateThread(
+ const std::string& name,
+ std::unique_ptr<rtc::SocketServer> socket_server) {
+ RTC_DCHECK_NOTREACHED();
+ return nullptr;
+}
+
+rtc::Thread* ExternalTimeController::GetMainThread() {
+ RTC_DCHECK_NOTREACHED();
+ return nullptr;
+}
+
+std::unique_ptr<TaskQueueBase, TaskQueueDeleter>
+ExternalTimeController::CreateTaskQueue(
+ absl::string_view name,
+ TaskQueueFactory::Priority priority) const {
+ return std::unique_ptr<TaskQueueBase, TaskQueueDeleter>(
+ new TaskQueueWrapper(const_cast<ExternalTimeController*>(this),
+ impl_.CreateTaskQueue(name, priority)));
+}
+
+void ExternalTimeController::Run() {
+ rtc::ScopedYieldPolicy yield_policy(&impl_);
+ UpdateTime();
+ impl_.RunReadyRunners();
+ ScheduleNext();
+}
+
+void ExternalTimeController::UpdateTime() {
+ Timestamp now = alarm_->GetClock()->CurrentTime();
+ impl_.AdvanceTime(now);
+ global_clock_.SetTime(now);
+}
+
+void ExternalTimeController::ScheduleNext() {
+ RTC_DCHECK_EQ(impl_.CurrentTime(), alarm_->GetClock()->CurrentTime());
+ TimeDelta delay =
+ std::max(impl_.NextRunTime() - impl_.CurrentTime(), TimeDelta::Zero());
+ if (delay.IsFinite()) {
+ alarm_->ScheduleAlarmAt(alarm_->GetClock()->CurrentTime() + delay);
+ }
+}
+
+} // namespace webrtc