webrtc_m130/test/direct_transport.cc
Sebastian Jansson 836fee1e1a Calculate next process time in simulated network.
Currently there's an implicit requirement that users of
SimulatedNetwork should call it repeatedly, even if the return value
of NextDeliveryTimeUs is unset.

With this change, it will indicate that there might be a delivery in
5 ms at any time there are packets in queue. Which results in unchanged
behavior compared to current usage but allows new users to expect
robust behavior.

Bug: webrtc:9510
Change-Id: I45b8b5f1f0d3d13a8ec9b163d4011c5f01a53069
Reviewed-on: https://webrtc-review.googlesource.com/c/120402
Commit-Queue: Sebastian Jansson <srte@webrtc.org>
Reviewed-by: Christoffer Rodbro <crodbro@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#26617}
2019-02-08 19:33:17 +00:00

126 lines
4.0 KiB
C++

/*
* Copyright (c) 2013 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/direct_transport.h"
#include "absl/memory/memory.h"
#include "call/call.h"
#include "call/fake_network_pipe.h"
#include "modules/rtp_rtcp/include/rtp_header_parser.h"
#include "system_wrappers/include/clock.h"
#include "test/single_threaded_task_queue.h"
namespace webrtc {
namespace test {
Demuxer::Demuxer(const std::map<uint8_t, MediaType>& payload_type_map)
: payload_type_map_(payload_type_map) {}
MediaType Demuxer::GetMediaType(const uint8_t* packet_data,
const size_t packet_length) const {
if (!RtpHeaderParser::IsRtcp(packet_data, packet_length)) {
RTC_CHECK_GE(packet_length, 2);
const uint8_t payload_type = packet_data[1] & 0x7f;
std::map<uint8_t, MediaType>::const_iterator it =
payload_type_map_.find(payload_type);
RTC_CHECK(it != payload_type_map_.end())
<< "payload type " << static_cast<int>(payload_type) << " unknown.";
return it->second;
}
return MediaType::ANY;
}
DirectTransport::DirectTransport(
SingleThreadedTaskQueueForTesting* task_queue,
std::unique_ptr<SimulatedPacketReceiverInterface> pipe,
Call* send_call,
const std::map<uint8_t, MediaType>& payload_type_map)
: send_call_(send_call),
clock_(Clock::GetRealTimeClock()),
task_queue_(task_queue),
demuxer_(payload_type_map),
fake_network_(std::move(pipe)) {
Start();
}
DirectTransport::~DirectTransport() {
if (next_process_task_)
task_queue_->CancelTask(*next_process_task_);
}
void DirectTransport::StopSending() {
rtc::CritScope cs(&process_lock_);
if (next_process_task_)
task_queue_->CancelTask(*next_process_task_);
}
void DirectTransport::SetReceiver(PacketReceiver* receiver) {
rtc::CritScope cs(&process_lock_);
fake_network_->SetReceiver(receiver);
}
bool DirectTransport::SendRtp(const uint8_t* data,
size_t length,
const PacketOptions& options) {
if (send_call_) {
rtc::SentPacket sent_packet(options.packet_id,
clock_->TimeInMilliseconds());
sent_packet.info.included_in_feedback = options.included_in_feedback;
sent_packet.info.included_in_allocation = options.included_in_allocation;
sent_packet.info.packet_size_bytes = length;
sent_packet.info.packet_type = rtc::PacketType::kData;
send_call_->OnSentPacket(sent_packet);
}
SendPacket(data, length);
return true;
}
bool DirectTransport::SendRtcp(const uint8_t* data, size_t length) {
SendPacket(data, length);
return true;
}
void DirectTransport::SendPacket(const uint8_t* data, size_t length) {
MediaType media_type = demuxer_.GetMediaType(data, length);
int64_t send_time = clock_->TimeInMicroseconds();
fake_network_->DeliverPacket(media_type, rtc::CopyOnWriteBuffer(data, length),
send_time);
rtc::CritScope cs(&process_lock_);
if (!next_process_task_)
ProcessPackets();
}
int DirectTransport::GetAverageDelayMs() {
return fake_network_->AverageDelay();
}
void DirectTransport::Start() {
RTC_DCHECK(task_queue_);
if (send_call_) {
send_call_->SignalChannelNetworkState(MediaType::AUDIO, kNetworkUp);
send_call_->SignalChannelNetworkState(MediaType::VIDEO, kNetworkUp);
}
}
void DirectTransport::ProcessPackets() {
next_process_task_.reset();
auto delay_ms = fake_network_->TimeUntilNextProcess();
if (delay_ms) {
next_process_task_ = task_queue_->PostDelayedTask(
[this]() {
fake_network_->Process();
rtc::CritScope cs(&process_lock_);
ProcessPackets();
},
*delay_ms);
}
}
} // namespace test
} // namespace webrtc