pbos@webrtc.org | 9668467 | 2013-08-12 12:59:04 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2013 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 | */ |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 10 | #include "test/direct_transport.h" |
pbos@webrtc.org | 9668467 | 2013-08-12 12:59:04 +0000 | [diff] [blame] | 11 | |
Karl Wiberg | 918f50c | 2018-07-05 11:40:33 +0200 | [diff] [blame] | 12 | #include "absl/memory/memory.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 13 | #include "call/call.h" |
Artem Titov | 46c4e60 | 2018-08-17 14:26:54 +0200 | [diff] [blame] | 14 | #include "call/fake_network_pipe.h" |
Sebastian Jansson | 0940811 | 2018-04-24 14:41:22 +0200 | [diff] [blame] | 15 | #include "modules/rtp_rtcp/include/rtp_header_parser.h" |
Sebastian Jansson | 11c012a | 2019-03-29 14:17:26 +0100 | [diff] [blame] | 16 | #include "rtc_base/time_utils.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 17 | #include "test/single_threaded_task_queue.h" |
pbos@webrtc.org | 9668467 | 2013-08-12 12:59:04 +0000 | [diff] [blame] | 18 | |
| 19 | namespace webrtc { |
| 20 | namespace test { |
| 21 | |
Sebastian Jansson | 0940811 | 2018-04-24 14:41:22 +0200 | [diff] [blame] | 22 | Demuxer::Demuxer(const std::map<uint8_t, MediaType>& payload_type_map) |
| 23 | : payload_type_map_(payload_type_map) {} |
| 24 | |
| 25 | MediaType Demuxer::GetMediaType(const uint8_t* packet_data, |
| 26 | const size_t packet_length) const { |
| 27 | if (!RtpHeaderParser::IsRtcp(packet_data, packet_length)) { |
| 28 | RTC_CHECK_GE(packet_length, 2); |
| 29 | const uint8_t payload_type = packet_data[1] & 0x7f; |
| 30 | std::map<uint8_t, MediaType>::const_iterator it = |
| 31 | payload_type_map_.find(payload_type); |
| 32 | RTC_CHECK(it != payload_type_map_.end()) |
| 33 | << "payload type " << static_cast<int>(payload_type) << " unknown."; |
| 34 | return it->second; |
| 35 | } |
| 36 | return MediaType::ANY; |
| 37 | } |
| 38 | |
minyue | 20c84cc | 2017-04-10 16:57:57 -0700 | [diff] [blame] | 39 | DirectTransport::DirectTransport( |
eladalon | 413ee9a | 2017-08-22 04:02:52 -0700 | [diff] [blame] | 40 | SingleThreadedTaskQueueForTesting* task_queue, |
Artem Titov | 46c4e60 | 2018-08-17 14:26:54 +0200 | [diff] [blame] | 41 | std::unique_ptr<SimulatedPacketReceiverInterface> pipe, |
Sebastian Jansson | 0940811 | 2018-04-24 14:41:22 +0200 | [diff] [blame] | 42 | Call* send_call, |
| 43 | const std::map<uint8_t, MediaType>& payload_type_map) |
Christoffer Rodbro | d2817d8 | 2017-10-24 16:26:49 +0200 | [diff] [blame] | 44 | : send_call_(send_call), |
Christoffer Rodbro | d2817d8 | 2017-10-24 16:26:49 +0200 | [diff] [blame] | 45 | task_queue_(task_queue), |
Sebastian Jansson | 0940811 | 2018-04-24 14:41:22 +0200 | [diff] [blame] | 46 | demuxer_(payload_type_map), |
Christoffer Rodbro | d2817d8 | 2017-10-24 16:26:49 +0200 | [diff] [blame] | 47 | fake_network_(std::move(pipe)) { |
| 48 | Start(); |
pbos@webrtc.org | 9668467 | 2013-08-12 12:59:04 +0000 | [diff] [blame] | 49 | } |
| 50 | |
eladalon | 413ee9a | 2017-08-22 04:02:52 -0700 | [diff] [blame] | 51 | DirectTransport::~DirectTransport() { |
Sebastian Jansson | 836fee1 | 2019-02-08 16:08:10 +0100 | [diff] [blame] | 52 | if (next_process_task_) |
| 53 | task_queue_->CancelTask(*next_process_task_); |
eladalon | 413ee9a | 2017-08-22 04:02:52 -0700 | [diff] [blame] | 54 | } |
pbos@webrtc.org | 9668467 | 2013-08-12 12:59:04 +0000 | [diff] [blame] | 55 | |
pbos@webrtc.org | 468e19a | 2013-08-12 14:28:00 +0000 | [diff] [blame] | 56 | void DirectTransport::StopSending() { |
Sebastian Jansson | 836fee1 | 2019-02-08 16:08:10 +0100 | [diff] [blame] | 57 | rtc::CritScope cs(&process_lock_); |
| 58 | if (next_process_task_) |
| 59 | task_queue_->CancelTask(*next_process_task_); |
pbos@webrtc.org | 468e19a | 2013-08-12 14:28:00 +0000 | [diff] [blame] | 60 | } |
pbos@webrtc.org | 9668467 | 2013-08-12 12:59:04 +0000 | [diff] [blame] | 61 | |
pbos@webrtc.org | 74fa489 | 2013-08-23 09:19:30 +0000 | [diff] [blame] | 62 | void DirectTransport::SetReceiver(PacketReceiver* receiver) { |
Sebastian Jansson | 836fee1 | 2019-02-08 16:08:10 +0100 | [diff] [blame] | 63 | rtc::CritScope cs(&process_lock_); |
Christoffer Rodbro | d2817d8 | 2017-10-24 16:26:49 +0200 | [diff] [blame] | 64 | fake_network_->SetReceiver(receiver); |
pbos@webrtc.org | 9668467 | 2013-08-12 12:59:04 +0000 | [diff] [blame] | 65 | } |
| 66 | |
stefan | 1d8a506 | 2015-10-02 03:39:33 -0700 | [diff] [blame] | 67 | bool DirectTransport::SendRtp(const uint8_t* data, |
| 68 | size_t length, |
| 69 | const PacketOptions& options) { |
stefan | f116bd0 | 2015-10-27 08:29:42 -0700 | [diff] [blame] | 70 | if (send_call_) { |
Sebastian Jansson | 11c012a | 2019-03-29 14:17:26 +0100 | [diff] [blame] | 71 | rtc::SentPacket sent_packet(options.packet_id, rtc::TimeMillis()); |
Sebastian Jansson | 0378997 | 2018-10-09 18:27:57 +0200 | [diff] [blame] | 72 | sent_packet.info.included_in_feedback = options.included_in_feedback; |
| 73 | sent_packet.info.included_in_allocation = options.included_in_allocation; |
Sebastian Jansson | 156d11d | 2018-09-28 17:21:34 +0200 | [diff] [blame] | 74 | sent_packet.info.packet_size_bytes = length; |
| 75 | sent_packet.info.packet_type = rtc::PacketType::kData; |
stefan | f116bd0 | 2015-10-27 08:29:42 -0700 | [diff] [blame] | 76 | send_call_->OnSentPacket(sent_packet); |
| 77 | } |
Sebastian Jansson | 0940811 | 2018-04-24 14:41:22 +0200 | [diff] [blame] | 78 | SendPacket(data, length); |
pbos@webrtc.org | 9668467 | 2013-08-12 12:59:04 +0000 | [diff] [blame] | 79 | return true; |
| 80 | } |
| 81 | |
pbos@webrtc.org | 27326b6 | 2013-11-20 12:17:04 +0000 | [diff] [blame] | 82 | bool DirectTransport::SendRtcp(const uint8_t* data, size_t length) { |
Sebastian Jansson | 0940811 | 2018-04-24 14:41:22 +0200 | [diff] [blame] | 83 | SendPacket(data, length); |
stefan@webrtc.org | faada6e | 2013-12-18 20:28:25 +0000 | [diff] [blame] | 84 | return true; |
pbos@webrtc.org | 9668467 | 2013-08-12 12:59:04 +0000 | [diff] [blame] | 85 | } |
| 86 | |
Sebastian Jansson | 0940811 | 2018-04-24 14:41:22 +0200 | [diff] [blame] | 87 | void DirectTransport::SendPacket(const uint8_t* data, size_t length) { |
| 88 | MediaType media_type = demuxer_.GetMediaType(data, length); |
Sebastian Jansson | 11c012a | 2019-03-29 14:17:26 +0100 | [diff] [blame] | 89 | int64_t send_time_us = rtc::TimeMicros(); |
Sebastian Jansson | 0940811 | 2018-04-24 14:41:22 +0200 | [diff] [blame] | 90 | fake_network_->DeliverPacket(media_type, rtc::CopyOnWriteBuffer(data, length), |
Sebastian Jansson | 11c012a | 2019-03-29 14:17:26 +0100 | [diff] [blame] | 91 | send_time_us); |
Sebastian Jansson | 836fee1 | 2019-02-08 16:08:10 +0100 | [diff] [blame] | 92 | rtc::CritScope cs(&process_lock_); |
| 93 | if (!next_process_task_) |
| 94 | ProcessPackets(); |
Sebastian Jansson | 0940811 | 2018-04-24 14:41:22 +0200 | [diff] [blame] | 95 | } |
| 96 | |
Stefan Holmer | ff2a635 | 2016-01-14 10:00:21 +0100 | [diff] [blame] | 97 | int DirectTransport::GetAverageDelayMs() { |
Christoffer Rodbro | d2817d8 | 2017-10-24 16:26:49 +0200 | [diff] [blame] | 98 | return fake_network_->AverageDelay(); |
| 99 | } |
| 100 | |
| 101 | void DirectTransport::Start() { |
| 102 | RTC_DCHECK(task_queue_); |
| 103 | if (send_call_) { |
| 104 | send_call_->SignalChannelNetworkState(MediaType::AUDIO, kNetworkUp); |
| 105 | send_call_->SignalChannelNetworkState(MediaType::VIDEO, kNetworkUp); |
| 106 | } |
Stefan Holmer | ff2a635 | 2016-01-14 10:00:21 +0100 | [diff] [blame] | 107 | } |
| 108 | |
Sebastian Jansson | 836fee1 | 2019-02-08 16:08:10 +0100 | [diff] [blame] | 109 | void DirectTransport::ProcessPackets() { |
| 110 | next_process_task_.reset(); |
| 111 | auto delay_ms = fake_network_->TimeUntilNextProcess(); |
| 112 | if (delay_ms) { |
| 113 | next_process_task_ = task_queue_->PostDelayedTask( |
| 114 | [this]() { |
| 115 | fake_network_->Process(); |
| 116 | rtc::CritScope cs(&process_lock_); |
| 117 | ProcessPackets(); |
| 118 | }, |
| 119 | *delay_ms); |
| 120 | } |
pbos@webrtc.org | 9668467 | 2013-08-12 12:59:04 +0000 | [diff] [blame] | 121 | } |
| 122 | } // namespace test |
| 123 | } // namespace webrtc |