webrtc_m130/test/time_controller/real_time_controller.cc
Bjorn A Mellem c4f865413a Add TimeController to api/test/ and add a CreateTimeController API.
Creates an abstraction for an "alarm clock" which can schedule
time-controller callbacks and exposes a time controller driven by
an external alarm.

Bug: webrtc:9719
Change-Id: I08c2aa9dba25603043bfba48f55c925716a55bae
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/158969
Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org>
Reviewed-by: Per Kjellander <perkj@webrtc.org>
Reviewed-by: Artem Titov <titovartem@webrtc.org>
Reviewed-by: Steve Anton <steveanton@webrtc.org>
Commit-Queue: Bjorn Mellem <mellem@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#29879}
2019-11-22 17:07:23 +00:00

52 lines
1.4 KiB
C++

/*
* 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/real_time_controller.h"
#include "api/task_queue/default_task_queue_factory.h"
#include "system_wrappers/include/sleep.h"
namespace webrtc {
RealTimeController::RealTimeController()
: task_queue_factory_(CreateDefaultTaskQueueFactory()) {}
Clock* RealTimeController::GetClock() {
return Clock::GetRealTimeClock();
}
TaskQueueFactory* RealTimeController::GetTaskQueueFactory() {
return task_queue_factory_.get();
}
std::unique_ptr<ProcessThread> RealTimeController::CreateProcessThread(
const char* thread_name) {
return ProcessThread::Create(thread_name);
}
void RealTimeController::Sleep(TimeDelta duration) {
SleepMs(duration.ms());
}
void RealTimeController::InvokeWithControlledYield(
std::function<void()> closure) {
closure();
}
rtc::YieldInterface* RealTimeController::YieldInterface() {
return nullptr;
}
RealTimeController* GlobalRealTimeController() {
static RealTimeController* time_controller = new RealTimeController();
return time_controller;
}
} // namespace webrtc