2019-11-21 10:37:18 -08:00
|
|
|
/*
|
|
|
|
|
* 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 "api/test/create_time_controller.h"
|
|
|
|
|
|
|
|
|
|
#include <memory>
|
2023-11-03 12:51:31 +01:00
|
|
|
#include <utility>
|
2019-11-21 10:37:18 -08:00
|
|
|
|
2023-11-03 12:51:31 +01:00
|
|
|
#include "absl/base/nullability.h"
|
|
|
|
|
#include "api/enable_media_with_defaults.h"
|
|
|
|
|
#include "api/peer_connection_interface.h"
|
2020-01-23 10:00:33 +01:00
|
|
|
#include "call/call.h"
|
2021-05-31 14:02:28 +02:00
|
|
|
#include "call/rtp_transport_config.h"
|
|
|
|
|
#include "call/rtp_transport_controller_send_factory_interface.h"
|
2023-11-03 12:51:31 +01:00
|
|
|
#include "pc/media_factory.h"
|
|
|
|
|
#include "rtc_base/checks.h"
|
|
|
|
|
#include "system_wrappers/include/clock.h"
|
2019-11-21 10:37:18 -08:00
|
|
|
#include "test/time_controller/external_time_controller.h"
|
2020-02-03 09:30:07 +01:00
|
|
|
#include "test/time_controller/simulated_time_controller.h"
|
2019-11-21 10:37:18 -08:00
|
|
|
|
|
|
|
|
namespace webrtc {
|
|
|
|
|
|
|
|
|
|
std::unique_ptr<TimeController> CreateTimeController(
|
|
|
|
|
ControlledAlarmClock* alarm) {
|
|
|
|
|
return std::make_unique<ExternalTimeController>(alarm);
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-03 09:30:07 +01:00
|
|
|
std::unique_ptr<TimeController> CreateSimulatedTimeController() {
|
|
|
|
|
return std::make_unique<GlobalSimulatedTimeController>(
|
2020-02-10 11:16:00 +01:00
|
|
|
Timestamp::Seconds(10000));
|
2020-02-03 09:30:07 +01:00
|
|
|
}
|
|
|
|
|
|
2020-01-23 10:00:33 +01:00
|
|
|
std::unique_ptr<CallFactoryInterface> CreateTimeControllerBasedCallFactory(
|
|
|
|
|
TimeController* time_controller) {
|
|
|
|
|
class TimeControllerBasedCallFactory : public CallFactoryInterface {
|
|
|
|
|
public:
|
|
|
|
|
explicit TimeControllerBasedCallFactory(TimeController* time_controller)
|
|
|
|
|
: time_controller_(time_controller) {}
|
2023-10-13 13:53:00 +02:00
|
|
|
std::unique_ptr<Call> CreateCall(const CallConfig& config) override {
|
2021-05-31 14:02:28 +02:00
|
|
|
RtpTransportConfig transportConfig = config.ExtractTransportConfig();
|
|
|
|
|
|
2022-06-20 19:59:11 +02:00
|
|
|
return Call::Create(config, time_controller_->GetClock(),
|
2021-05-31 14:02:28 +02:00
|
|
|
config.rtp_transport_controller_send_factory->Create(
|
2022-05-13 15:55:29 +02:00
|
|
|
transportConfig, time_controller_->GetClock()));
|
2020-01-23 10:00:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
TimeController* time_controller_;
|
|
|
|
|
};
|
|
|
|
|
return std::make_unique<TimeControllerBasedCallFactory>(time_controller);
|
|
|
|
|
}
|
|
|
|
|
|
2023-11-03 12:51:31 +01:00
|
|
|
void EnableMediaWithDefaultsAndTimeController(
|
|
|
|
|
TimeController& time_controller,
|
|
|
|
|
PeerConnectionFactoryDependencies& deps) {
|
|
|
|
|
class TimeControllerBasedFactory : public MediaFactory {
|
|
|
|
|
public:
|
|
|
|
|
TimeControllerBasedFactory(
|
|
|
|
|
absl::Nonnull<Clock*> clock,
|
|
|
|
|
absl::Nonnull<std::unique_ptr<MediaFactory>> media_factory)
|
|
|
|
|
: clock_(clock), media_factory_(std::move(media_factory)) {}
|
|
|
|
|
|
|
|
|
|
std::unique_ptr<Call> CreateCall(const CallConfig& config) override {
|
|
|
|
|
return Call::Create(config, clock_,
|
|
|
|
|
config.rtp_transport_controller_send_factory->Create(
|
|
|
|
|
config.ExtractTransportConfig(), clock_));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::unique_ptr<cricket::MediaEngineInterface> CreateMediaEngine(
|
|
|
|
|
PeerConnectionFactoryDependencies& dependencies) override {
|
|
|
|
|
return media_factory_->CreateMediaEngine(dependencies);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
absl::Nonnull<Clock*> clock_;
|
|
|
|
|
absl::Nonnull<std::unique_ptr<MediaFactory>> media_factory_;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
EnableMediaWithDefaults(deps);
|
|
|
|
|
RTC_CHECK(deps.media_factory);
|
|
|
|
|
deps.media_factory = std::make_unique<TimeControllerBasedFactory>(
|
|
|
|
|
time_controller.GetClock(), std::move(deps.media_factory));
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-21 10:37:18 -08:00
|
|
|
} // namespace webrtc
|