hbos | d565b73 | 2016-08-30 14:04:35 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2016 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 | */ |
| 10 | |
Steve Anton | 10542f2 | 2019-01-11 09:11:00 -0800 | [diff] [blame] | 11 | #include "pc/rtc_stats_collector.h" |
hbos | d565b73 | 2016-08-30 14:04:35 -0700 | [diff] [blame] | 12 | |
| 13 | #include <memory> |
Steve Anton | 36b29d1 | 2017-10-30 09:57:42 -0700 | [diff] [blame] | 14 | #include <string> |
hbos | d565b73 | 2016-08-30 14:04:35 -0700 | [diff] [blame] | 15 | #include <utility> |
| 16 | #include <vector> |
| 17 | |
Karl Wiberg | 918f50c | 2018-07-05 11:40:33 +0200 | [diff] [blame] | 18 | #include "absl/memory/memory.h" |
Patrik Höglund | e2d6a06 | 2017-10-05 14:53:33 +0200 | [diff] [blame] | 19 | #include "api/candidate.h" |
Steve Anton | 10542f2 | 2019-01-11 09:11:00 -0800 | [diff] [blame] | 20 | #include "api/media_stream_interface.h" |
| 21 | #include "api/peer_connection_interface.h" |
Henrik Boström | 2e06926 | 2019-04-09 13:59:31 +0200 | [diff] [blame] | 22 | #include "api/video/video_content_type.h" |
Steve Anton | 10542f2 | 2019-01-11 09:11:00 -0800 | [diff] [blame] | 23 | #include "media/base/media_channel.h" |
| 24 | #include "p2p/base/p2p_constants.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 25 | #include "p2p/base/port.h" |
Steve Anton | 10542f2 | 2019-01-11 09:11:00 -0800 | [diff] [blame] | 26 | #include "pc/peer_connection.h" |
| 27 | #include "pc/rtc_stats_traversal.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 28 | #include "rtc_base/checks.h" |
Jonas Olsson | 43568dd | 2018-06-11 16:25:54 +0200 | [diff] [blame] | 29 | #include "rtc_base/strings/string_builder.h" |
Steve Anton | 10542f2 | 2019-01-11 09:11:00 -0800 | [diff] [blame] | 30 | #include "rtc_base/time_utils.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 31 | #include "rtc_base/trace_event.h" |
hbos | d565b73 | 2016-08-30 14:04:35 -0700 | [diff] [blame] | 32 | |
| 33 | namespace webrtc { |
| 34 | |
hbos | cc555c5 | 2016-10-18 12:48:31 -0700 | [diff] [blame] | 35 | namespace { |
| 36 | |
Henrik Boström | 646fda0 | 2019-05-22 15:49:42 +0200 | [diff] [blame] | 37 | // TODO(https://crbug.com/webrtc/10656): Consider making IDs less predictable. |
hbos | 2fa7c67 | 2016-10-24 04:00:05 -0700 | [diff] [blame] | 38 | std::string RTCCertificateIDFromFingerprint(const std::string& fingerprint) { |
| 39 | return "RTCCertificate_" + fingerprint; |
| 40 | } |
| 41 | |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 42 | std::string RTCCodecStatsIDFromMidDirectionAndPayload(const std::string& mid, |
| 43 | bool inbound, |
| 44 | uint32_t payload_type) { |
Jonas Olsson | 43568dd | 2018-06-11 16:25:54 +0200 | [diff] [blame] | 45 | char buf[1024]; |
| 46 | rtc::SimpleStringBuilder sb(buf); |
| 47 | sb << "RTCCodec_" << mid << (inbound ? "_Inbound_" : "_Outbound_") |
| 48 | << payload_type; |
| 49 | return sb.str(); |
hbos | 0adb828 | 2016-11-23 02:32:06 -0800 | [diff] [blame] | 50 | } |
| 51 | |
hbos | 2fa7c67 | 2016-10-24 04:00:05 -0700 | [diff] [blame] | 52 | std::string RTCIceCandidatePairStatsIDFromConnectionInfo( |
| 53 | const cricket::ConnectionInfo& info) { |
Jonas Olsson | 43568dd | 2018-06-11 16:25:54 +0200 | [diff] [blame] | 54 | char buf[4096]; |
| 55 | rtc::SimpleStringBuilder sb(buf); |
| 56 | sb << "RTCIceCandidatePair_" << info.local_candidate.id() << "_" |
| 57 | << info.remote_candidate.id(); |
| 58 | return sb.str(); |
hbos | 2fa7c67 | 2016-10-24 04:00:05 -0700 | [diff] [blame] | 59 | } |
| 60 | |
Harald Alvestrand | a3dab84 | 2018-01-14 09:18:58 +0100 | [diff] [blame] | 61 | const char kSender[] = "sender"; |
| 62 | const char kReceiver[] = "receiver"; |
| 63 | |
| 64 | std::string RTCMediaStreamTrackStatsIDFromDirectionAndAttachment( |
| 65 | const char* direction, |
Harald Alvestrand | c72af93 | 2018-01-11 17:18:19 +0100 | [diff] [blame] | 66 | int attachment_id) { |
Jonas Olsson | 43568dd | 2018-06-11 16:25:54 +0200 | [diff] [blame] | 67 | char buf[1024]; |
| 68 | rtc::SimpleStringBuilder sb(buf); |
| 69 | sb << "RTCMediaStreamTrack_" << direction << "_" << attachment_id; |
| 70 | return sb.str(); |
hbos | 09bc128 | 2016-11-08 06:29:22 -0800 | [diff] [blame] | 71 | } |
| 72 | |
hbos | 2fa7c67 | 2016-10-24 04:00:05 -0700 | [diff] [blame] | 73 | std::string RTCTransportStatsIDFromTransportChannel( |
| 74 | const std::string& transport_name, int channel_component) { |
Jonas Olsson | 43568dd | 2018-06-11 16:25:54 +0200 | [diff] [blame] | 75 | char buf[1024]; |
| 76 | rtc::SimpleStringBuilder sb(buf); |
| 77 | sb << "RTCTransport_" << transport_name << "_" << channel_component; |
| 78 | return sb.str(); |
hbos | 2fa7c67 | 2016-10-24 04:00:05 -0700 | [diff] [blame] | 79 | } |
| 80 | |
hbos | eeafe94 | 2016-11-01 03:00:17 -0700 | [diff] [blame] | 81 | std::string RTCInboundRTPStreamStatsIDFromSSRC(bool audio, uint32_t ssrc) { |
Jonas Olsson | 43568dd | 2018-06-11 16:25:54 +0200 | [diff] [blame] | 82 | char buf[1024]; |
| 83 | rtc::SimpleStringBuilder sb(buf); |
| 84 | sb << "RTCInboundRTP" << (audio ? "Audio" : "Video") << "Stream_" << ssrc; |
| 85 | return sb.str(); |
hbos | eeafe94 | 2016-11-01 03:00:17 -0700 | [diff] [blame] | 86 | } |
| 87 | |
hbos | 6ded190 | 2016-11-01 01:50:46 -0700 | [diff] [blame] | 88 | std::string RTCOutboundRTPStreamStatsIDFromSSRC(bool audio, uint32_t ssrc) { |
Jonas Olsson | 43568dd | 2018-06-11 16:25:54 +0200 | [diff] [blame] | 89 | char buf[1024]; |
| 90 | rtc::SimpleStringBuilder sb(buf); |
| 91 | sb << "RTCOutboundRTP" << (audio ? "Audio" : "Video") << "Stream_" << ssrc; |
| 92 | return sb.str(); |
hbos | 6ded190 | 2016-11-01 01:50:46 -0700 | [diff] [blame] | 93 | } |
| 94 | |
Henrik Boström | 883eefc | 2019-05-27 13:40:25 +0200 | [diff] [blame] | 95 | std::string RTCRemoteInboundRtpStreamStatsIdFromSsrcs( |
| 96 | cricket::MediaType media_type, |
| 97 | uint32_t sender_ssrc, |
| 98 | uint32_t source_ssrc) { |
| 99 | char buf[1024]; |
| 100 | rtc::SimpleStringBuilder sb(buf); |
| 101 | sb << "RTCRemoteInboundRtp" |
| 102 | << (media_type == cricket::MEDIA_TYPE_AUDIO ? "Audio" : "Video") |
| 103 | << "Stream_" << sender_ssrc << "_" << source_ssrc; |
| 104 | return sb.str(); |
| 105 | } |
| 106 | |
Henrik Boström | 646fda0 | 2019-05-22 15:49:42 +0200 | [diff] [blame] | 107 | std::string RTCMediaSourceStatsIDFromKindAndAttachment( |
| 108 | cricket::MediaType media_type, |
| 109 | int attachment_id) { |
| 110 | char buf[1024]; |
| 111 | rtc::SimpleStringBuilder sb(buf); |
| 112 | sb << "RTC" << (media_type == cricket::MEDIA_TYPE_AUDIO ? "Audio" : "Video") |
| 113 | << "Source_" << attachment_id; |
| 114 | return sb.str(); |
| 115 | } |
| 116 | |
hbos | ab9f6e4 | 2016-10-07 02:18:47 -0700 | [diff] [blame] | 117 | const char* CandidateTypeToRTCIceCandidateType(const std::string& type) { |
| 118 | if (type == cricket::LOCAL_PORT_TYPE) |
| 119 | return RTCIceCandidateType::kHost; |
| 120 | if (type == cricket::STUN_PORT_TYPE) |
| 121 | return RTCIceCandidateType::kSrflx; |
| 122 | if (type == cricket::PRFLX_PORT_TYPE) |
| 123 | return RTCIceCandidateType::kPrflx; |
| 124 | if (type == cricket::RELAY_PORT_TYPE) |
| 125 | return RTCIceCandidateType::kRelay; |
| 126 | RTC_NOTREACHED(); |
| 127 | return nullptr; |
| 128 | } |
| 129 | |
hbos | cc555c5 | 2016-10-18 12:48:31 -0700 | [diff] [blame] | 130 | const char* DataStateToRTCDataChannelState( |
| 131 | DataChannelInterface::DataState state) { |
| 132 | switch (state) { |
| 133 | case DataChannelInterface::kConnecting: |
| 134 | return RTCDataChannelState::kConnecting; |
| 135 | case DataChannelInterface::kOpen: |
| 136 | return RTCDataChannelState::kOpen; |
| 137 | case DataChannelInterface::kClosing: |
| 138 | return RTCDataChannelState::kClosing; |
| 139 | case DataChannelInterface::kClosed: |
| 140 | return RTCDataChannelState::kClosed; |
| 141 | default: |
| 142 | RTC_NOTREACHED(); |
| 143 | return nullptr; |
| 144 | } |
| 145 | } |
| 146 | |
hbos | 06495bc | 2017-01-02 08:08:18 -0800 | [diff] [blame] | 147 | const char* IceCandidatePairStateToRTCStatsIceCandidatePairState( |
| 148 | cricket::IceCandidatePairState state) { |
| 149 | switch (state) { |
| 150 | case cricket::IceCandidatePairState::WAITING: |
| 151 | return RTCStatsIceCandidatePairState::kWaiting; |
| 152 | case cricket::IceCandidatePairState::IN_PROGRESS: |
| 153 | return RTCStatsIceCandidatePairState::kInProgress; |
| 154 | case cricket::IceCandidatePairState::SUCCEEDED: |
| 155 | return RTCStatsIceCandidatePairState::kSucceeded; |
| 156 | case cricket::IceCandidatePairState::FAILED: |
| 157 | return RTCStatsIceCandidatePairState::kFailed; |
| 158 | default: |
| 159 | RTC_NOTREACHED(); |
| 160 | return nullptr; |
| 161 | } |
| 162 | } |
| 163 | |
hbos | 7064d59 | 2017-01-16 07:38:02 -0800 | [diff] [blame] | 164 | const char* DtlsTransportStateToRTCDtlsTransportState( |
| 165 | cricket::DtlsTransportState state) { |
| 166 | switch (state) { |
| 167 | case cricket::DTLS_TRANSPORT_NEW: |
| 168 | return RTCDtlsTransportState::kNew; |
| 169 | case cricket::DTLS_TRANSPORT_CONNECTING: |
| 170 | return RTCDtlsTransportState::kConnecting; |
| 171 | case cricket::DTLS_TRANSPORT_CONNECTED: |
| 172 | return RTCDtlsTransportState::kConnected; |
| 173 | case cricket::DTLS_TRANSPORT_CLOSED: |
| 174 | return RTCDtlsTransportState::kClosed; |
| 175 | case cricket::DTLS_TRANSPORT_FAILED: |
| 176 | return RTCDtlsTransportState::kFailed; |
| 177 | default: |
| 178 | RTC_NOTREACHED(); |
| 179 | return nullptr; |
| 180 | } |
| 181 | } |
| 182 | |
Gary Liu | 37e489c | 2017-11-21 10:49:36 -0800 | [diff] [blame] | 183 | const char* NetworkAdapterTypeToStatsType(rtc::AdapterType type) { |
| 184 | switch (type) { |
| 185 | case rtc::ADAPTER_TYPE_CELLULAR: |
| 186 | return RTCNetworkType::kCellular; |
| 187 | case rtc::ADAPTER_TYPE_ETHERNET: |
| 188 | return RTCNetworkType::kEthernet; |
| 189 | case rtc::ADAPTER_TYPE_WIFI: |
| 190 | return RTCNetworkType::kWifi; |
| 191 | case rtc::ADAPTER_TYPE_VPN: |
| 192 | return RTCNetworkType::kVpn; |
| 193 | case rtc::ADAPTER_TYPE_UNKNOWN: |
| 194 | case rtc::ADAPTER_TYPE_LOOPBACK: |
Qingsi Wang | 9f1de69 | 2018-06-28 15:38:09 -0700 | [diff] [blame] | 195 | case rtc::ADAPTER_TYPE_ANY: |
Gary Liu | 37e489c | 2017-11-21 10:49:36 -0800 | [diff] [blame] | 196 | return RTCNetworkType::kUnknown; |
| 197 | } |
| 198 | RTC_NOTREACHED(); |
| 199 | return nullptr; |
| 200 | } |
| 201 | |
Henrik Boström | ce33b6a | 2019-05-28 17:42:38 +0200 | [diff] [blame] | 202 | const char* QualityLimitationReasonToRTCQualityLimitationReason( |
| 203 | QualityLimitationReason reason) { |
| 204 | switch (reason) { |
| 205 | case QualityLimitationReason::kNone: |
| 206 | return RTCQualityLimitationReason::kNone; |
| 207 | case QualityLimitationReason::kCpu: |
| 208 | return RTCQualityLimitationReason::kCpu; |
| 209 | case QualityLimitationReason::kBandwidth: |
| 210 | return RTCQualityLimitationReason::kBandwidth; |
| 211 | case QualityLimitationReason::kOther: |
| 212 | return RTCQualityLimitationReason::kOther; |
| 213 | } |
| 214 | } |
| 215 | |
hbos | 9e30274 | 2017-01-20 02:47:10 -0800 | [diff] [blame] | 216 | double DoubleAudioLevelFromIntAudioLevel(int audio_level) { |
| 217 | RTC_DCHECK_GE(audio_level, 0); |
| 218 | RTC_DCHECK_LE(audio_level, 32767); |
| 219 | return audio_level / 32767.0; |
| 220 | } |
| 221 | |
hbos | 0adb828 | 2016-11-23 02:32:06 -0800 | [diff] [blame] | 222 | std::unique_ptr<RTCCodecStats> CodecStatsFromRtpCodecParameters( |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 223 | uint64_t timestamp_us, |
| 224 | const std::string& mid, |
| 225 | bool inbound, |
hbos | 0adb828 | 2016-11-23 02:32:06 -0800 | [diff] [blame] | 226 | const RtpCodecParameters& codec_params) { |
| 227 | RTC_DCHECK_GE(codec_params.payload_type, 0); |
| 228 | RTC_DCHECK_LE(codec_params.payload_type, 127); |
deadbeef | e702b30 | 2017-02-04 12:09:01 -0800 | [diff] [blame] | 229 | RTC_DCHECK(codec_params.clock_rate); |
hbos | 0adb828 | 2016-11-23 02:32:06 -0800 | [diff] [blame] | 230 | uint32_t payload_type = static_cast<uint32_t>(codec_params.payload_type); |
| 231 | std::unique_ptr<RTCCodecStats> codec_stats(new RTCCodecStats( |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 232 | RTCCodecStatsIDFromMidDirectionAndPayload(mid, inbound, payload_type), |
hbos | 0adb828 | 2016-11-23 02:32:06 -0800 | [diff] [blame] | 233 | timestamp_us)); |
| 234 | codec_stats->payload_type = payload_type; |
hbos | 13f54b2 | 2017-02-28 06:56:04 -0800 | [diff] [blame] | 235 | codec_stats->mime_type = codec_params.mime_type(); |
deadbeef | e702b30 | 2017-02-04 12:09:01 -0800 | [diff] [blame] | 236 | if (codec_params.clock_rate) { |
| 237 | codec_stats->clock_rate = static_cast<uint32_t>(*codec_params.clock_rate); |
| 238 | } |
hbos | 0adb828 | 2016-11-23 02:32:06 -0800 | [diff] [blame] | 239 | return codec_stats; |
| 240 | } |
| 241 | |
hbos | 09bc128 | 2016-11-08 06:29:22 -0800 | [diff] [blame] | 242 | void SetMediaStreamTrackStatsFromMediaStreamTrackInterface( |
| 243 | const MediaStreamTrackInterface& track, |
| 244 | RTCMediaStreamTrackStats* track_stats) { |
| 245 | track_stats->track_identifier = track.id(); |
| 246 | track_stats->ended = (track.state() == MediaStreamTrackInterface::kEnded); |
| 247 | } |
| 248 | |
hbos | 820f578 | 2016-11-22 03:16:50 -0800 | [diff] [blame] | 249 | // Provides the media independent counters (both audio and video). |
hbos | eeafe94 | 2016-11-01 03:00:17 -0700 | [diff] [blame] | 250 | void SetInboundRTPStreamStatsFromMediaReceiverInfo( |
| 251 | const cricket::MediaReceiverInfo& media_receiver_info, |
| 252 | RTCInboundRTPStreamStats* inbound_stats) { |
| 253 | RTC_DCHECK(inbound_stats); |
hbos | 3443bb7 | 2017-02-07 06:28:11 -0800 | [diff] [blame] | 254 | inbound_stats->ssrc = media_receiver_info.ssrc(); |
Harald Alvestrand | 8906187 | 2018-01-02 14:08:34 +0100 | [diff] [blame] | 255 | // TODO(hbos): Support the remote case. https://crbug.com/657855 |
hbos | eeafe94 | 2016-11-01 03:00:17 -0700 | [diff] [blame] | 256 | inbound_stats->is_remote = false; |
hbos | eeafe94 | 2016-11-01 03:00:17 -0700 | [diff] [blame] | 257 | inbound_stats->packets_received = |
| 258 | static_cast<uint32_t>(media_receiver_info.packets_rcvd); |
| 259 | inbound_stats->bytes_received = |
| 260 | static_cast<uint64_t>(media_receiver_info.bytes_rcvd); |
hbos | 02cd4d6 | 2016-12-09 04:19:44 -0800 | [diff] [blame] | 261 | inbound_stats->packets_lost = |
Harald Alvestrand | 719487e | 2017-12-13 12:26:04 +0100 | [diff] [blame] | 262 | static_cast<int32_t>(media_receiver_info.packets_lost); |
hbos | eeafe94 | 2016-11-01 03:00:17 -0700 | [diff] [blame] | 263 | inbound_stats->fraction_lost = |
| 264 | static_cast<double>(media_receiver_info.fraction_lost); |
| 265 | } |
| 266 | |
| 267 | void SetInboundRTPStreamStatsFromVoiceReceiverInfo( |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 268 | const std::string& mid, |
hbos | eeafe94 | 2016-11-01 03:00:17 -0700 | [diff] [blame] | 269 | const cricket::VoiceReceiverInfo& voice_receiver_info, |
hbos | 820f578 | 2016-11-22 03:16:50 -0800 | [diff] [blame] | 270 | RTCInboundRTPStreamStats* inbound_audio) { |
hbos | eeafe94 | 2016-11-01 03:00:17 -0700 | [diff] [blame] | 271 | SetInboundRTPStreamStatsFromMediaReceiverInfo( |
hbos | 820f578 | 2016-11-22 03:16:50 -0800 | [diff] [blame] | 272 | voice_receiver_info, inbound_audio); |
| 273 | inbound_audio->media_type = "audio"; |
Philipp Hancke | 3bc0166 | 2018-08-28 14:55:03 +0200 | [diff] [blame] | 274 | inbound_audio->kind = "audio"; |
hbos | 585a9b1 | 2017-02-07 04:59:16 -0800 | [diff] [blame] | 275 | if (voice_receiver_info.codec_payload_type) { |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 276 | inbound_audio->codec_id = RTCCodecStatsIDFromMidDirectionAndPayload( |
| 277 | mid, true, *voice_receiver_info.codec_payload_type); |
hbos | 585a9b1 | 2017-02-07 04:59:16 -0800 | [diff] [blame] | 278 | } |
hbos | 820f578 | 2016-11-22 03:16:50 -0800 | [diff] [blame] | 279 | inbound_audio->jitter = |
hbos | eeafe94 | 2016-11-01 03:00:17 -0700 | [diff] [blame] | 280 | static_cast<double>(voice_receiver_info.jitter_ms) / |
| 281 | rtc::kNumMillisecsPerSec; |
hbos | 820f578 | 2016-11-22 03:16:50 -0800 | [diff] [blame] | 282 | // |fir_count|, |pli_count| and |sli_count| are only valid for video and are |
| 283 | // purposefully left undefined for audio. |
Henrik Boström | 01738c6 | 2019-04-15 17:32:00 +0200 | [diff] [blame] | 284 | if (voice_receiver_info.last_packet_received_timestamp_ms) { |
| 285 | inbound_audio->last_packet_received_timestamp = |
| 286 | static_cast<double>( |
| 287 | *voice_receiver_info.last_packet_received_timestamp_ms) / |
| 288 | rtc::kNumMillisecsPerSec; |
| 289 | } |
Ivo Creusen | 8d8ffdb | 2019-04-30 09:45:21 +0200 | [diff] [blame] | 290 | inbound_audio->fec_packets_received = |
| 291 | voice_receiver_info.fec_packets_received; |
| 292 | inbound_audio->fec_packets_discarded = |
| 293 | voice_receiver_info.fec_packets_discarded; |
hbos | eeafe94 | 2016-11-01 03:00:17 -0700 | [diff] [blame] | 294 | } |
| 295 | |
| 296 | void SetInboundRTPStreamStatsFromVideoReceiverInfo( |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 297 | const std::string& mid, |
hbos | eeafe94 | 2016-11-01 03:00:17 -0700 | [diff] [blame] | 298 | const cricket::VideoReceiverInfo& video_receiver_info, |
hbos | 820f578 | 2016-11-22 03:16:50 -0800 | [diff] [blame] | 299 | RTCInboundRTPStreamStats* inbound_video) { |
hbos | eeafe94 | 2016-11-01 03:00:17 -0700 | [diff] [blame] | 300 | SetInboundRTPStreamStatsFromMediaReceiverInfo( |
hbos | 820f578 | 2016-11-22 03:16:50 -0800 | [diff] [blame] | 301 | video_receiver_info, inbound_video); |
| 302 | inbound_video->media_type = "video"; |
Philipp Hancke | 3bc0166 | 2018-08-28 14:55:03 +0200 | [diff] [blame] | 303 | inbound_video->kind = "video"; |
hbos | 585a9b1 | 2017-02-07 04:59:16 -0800 | [diff] [blame] | 304 | if (video_receiver_info.codec_payload_type) { |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 305 | inbound_video->codec_id = RTCCodecStatsIDFromMidDirectionAndPayload( |
| 306 | mid, true, *video_receiver_info.codec_payload_type); |
hbos | 585a9b1 | 2017-02-07 04:59:16 -0800 | [diff] [blame] | 307 | } |
hbos | 820f578 | 2016-11-22 03:16:50 -0800 | [diff] [blame] | 308 | inbound_video->fir_count = |
| 309 | static_cast<uint32_t>(video_receiver_info.firs_sent); |
| 310 | inbound_video->pli_count = |
| 311 | static_cast<uint32_t>(video_receiver_info.plis_sent); |
| 312 | inbound_video->nack_count = |
| 313 | static_cast<uint32_t>(video_receiver_info.nacks_sent); |
hbos | 6769c49 | 2017-01-02 08:35:13 -0800 | [diff] [blame] | 314 | inbound_video->frames_decoded = video_receiver_info.frames_decoded; |
hbos | a51d4f3 | 2017-02-16 05:34:48 -0800 | [diff] [blame] | 315 | if (video_receiver_info.qp_sum) |
| 316 | inbound_video->qp_sum = *video_receiver_info.qp_sum; |
Henrik Boström | 01738c6 | 2019-04-15 17:32:00 +0200 | [diff] [blame] | 317 | if (video_receiver_info.last_packet_received_timestamp_ms) { |
| 318 | inbound_video->last_packet_received_timestamp = |
| 319 | static_cast<double>( |
| 320 | *video_receiver_info.last_packet_received_timestamp_ms) / |
| 321 | rtc::kNumMillisecsPerSec; |
| 322 | } |
Henrik Boström | 2e06926 | 2019-04-09 13:59:31 +0200 | [diff] [blame] | 323 | // TODO(https://crbug.com/webrtc/10529): When info's |content_info| is |
| 324 | // optional, support the "unspecified" value. |
| 325 | if (video_receiver_info.content_type == VideoContentType::SCREENSHARE) |
| 326 | inbound_video->content_type = RTCContentType::kScreenshare; |
hbos | eeafe94 | 2016-11-01 03:00:17 -0700 | [diff] [blame] | 327 | } |
| 328 | |
hbos | 820f578 | 2016-11-22 03:16:50 -0800 | [diff] [blame] | 329 | // Provides the media independent counters (both audio and video). |
hbos | 6ded190 | 2016-11-01 01:50:46 -0700 | [diff] [blame] | 330 | void SetOutboundRTPStreamStatsFromMediaSenderInfo( |
| 331 | const cricket::MediaSenderInfo& media_sender_info, |
| 332 | RTCOutboundRTPStreamStats* outbound_stats) { |
| 333 | RTC_DCHECK(outbound_stats); |
hbos | 3443bb7 | 2017-02-07 06:28:11 -0800 | [diff] [blame] | 334 | outbound_stats->ssrc = media_sender_info.ssrc(); |
Harald Alvestrand | 8906187 | 2018-01-02 14:08:34 +0100 | [diff] [blame] | 335 | // TODO(hbos): Support the remote case. https://crbug.com/657856 |
hbos | 6ded190 | 2016-11-01 01:50:46 -0700 | [diff] [blame] | 336 | outbound_stats->is_remote = false; |
hbos | 6ded190 | 2016-11-01 01:50:46 -0700 | [diff] [blame] | 337 | outbound_stats->packets_sent = |
| 338 | static_cast<uint32_t>(media_sender_info.packets_sent); |
Henrik Boström | cf96e0f | 2019-04-17 13:51:53 +0200 | [diff] [blame] | 339 | outbound_stats->retransmitted_packets_sent = |
| 340 | media_sender_info.retransmitted_packets_sent; |
hbos | 6ded190 | 2016-11-01 01:50:46 -0700 | [diff] [blame] | 341 | outbound_stats->bytes_sent = |
| 342 | static_cast<uint64_t>(media_sender_info.bytes_sent); |
Henrik Boström | cf96e0f | 2019-04-17 13:51:53 +0200 | [diff] [blame] | 343 | outbound_stats->retransmitted_bytes_sent = |
| 344 | media_sender_info.retransmitted_bytes_sent; |
hbos | 6ded190 | 2016-11-01 01:50:46 -0700 | [diff] [blame] | 345 | } |
| 346 | |
| 347 | void SetOutboundRTPStreamStatsFromVoiceSenderInfo( |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 348 | const std::string& mid, |
hbos | 6ded190 | 2016-11-01 01:50:46 -0700 | [diff] [blame] | 349 | const cricket::VoiceSenderInfo& voice_sender_info, |
| 350 | RTCOutboundRTPStreamStats* outbound_audio) { |
| 351 | SetOutboundRTPStreamStatsFromMediaSenderInfo( |
| 352 | voice_sender_info, outbound_audio); |
| 353 | outbound_audio->media_type = "audio"; |
Philipp Hancke | 3bc0166 | 2018-08-28 14:55:03 +0200 | [diff] [blame] | 354 | outbound_audio->kind = "audio"; |
hbos | 585a9b1 | 2017-02-07 04:59:16 -0800 | [diff] [blame] | 355 | if (voice_sender_info.codec_payload_type) { |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 356 | outbound_audio->codec_id = RTCCodecStatsIDFromMidDirectionAndPayload( |
| 357 | mid, false, *voice_sender_info.codec_payload_type); |
hbos | 585a9b1 | 2017-02-07 04:59:16 -0800 | [diff] [blame] | 358 | } |
hbos | 6ded190 | 2016-11-01 01:50:46 -0700 | [diff] [blame] | 359 | // |fir_count|, |pli_count| and |sli_count| are only valid for video and are |
| 360 | // purposefully left undefined for audio. |
| 361 | } |
| 362 | |
| 363 | void SetOutboundRTPStreamStatsFromVideoSenderInfo( |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 364 | const std::string& mid, |
hbos | 6ded190 | 2016-11-01 01:50:46 -0700 | [diff] [blame] | 365 | const cricket::VideoSenderInfo& video_sender_info, |
| 366 | RTCOutboundRTPStreamStats* outbound_video) { |
| 367 | SetOutboundRTPStreamStatsFromMediaSenderInfo( |
| 368 | video_sender_info, outbound_video); |
| 369 | outbound_video->media_type = "video"; |
Philipp Hancke | 3bc0166 | 2018-08-28 14:55:03 +0200 | [diff] [blame] | 370 | outbound_video->kind = "video"; |
hbos | 585a9b1 | 2017-02-07 04:59:16 -0800 | [diff] [blame] | 371 | if (video_sender_info.codec_payload_type) { |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 372 | outbound_video->codec_id = RTCCodecStatsIDFromMidDirectionAndPayload( |
| 373 | mid, false, *video_sender_info.codec_payload_type); |
hbos | 585a9b1 | 2017-02-07 04:59:16 -0800 | [diff] [blame] | 374 | } |
hbos | 6ded190 | 2016-11-01 01:50:46 -0700 | [diff] [blame] | 375 | outbound_video->fir_count = |
| 376 | static_cast<uint32_t>(video_sender_info.firs_rcvd); |
| 377 | outbound_video->pli_count = |
| 378 | static_cast<uint32_t>(video_sender_info.plis_rcvd); |
| 379 | outbound_video->nack_count = |
| 380 | static_cast<uint32_t>(video_sender_info.nacks_rcvd); |
hbos | 6769c49 | 2017-01-02 08:35:13 -0800 | [diff] [blame] | 381 | if (video_sender_info.qp_sum) |
| 382 | outbound_video->qp_sum = *video_sender_info.qp_sum; |
| 383 | outbound_video->frames_encoded = video_sender_info.frames_encoded; |
Henrik Boström | f71362f | 2019-04-08 16:14:23 +0200 | [diff] [blame] | 384 | outbound_video->total_encode_time = |
| 385 | static_cast<double>(video_sender_info.total_encode_time_ms) / |
| 386 | rtc::kNumMillisecsPerSec; |
Henrik Boström | 23aff9b | 2019-05-20 15:15:38 +0200 | [diff] [blame] | 387 | outbound_video->total_encoded_bytes_target = |
| 388 | video_sender_info.total_encoded_bytes_target; |
Henrik Boström | 9fe1834 | 2019-05-16 18:38:20 +0200 | [diff] [blame] | 389 | outbound_video->total_packet_send_delay = |
| 390 | static_cast<double>(video_sender_info.total_packet_send_delay_ms) / |
| 391 | rtc::kNumMillisecsPerSec; |
Henrik Boström | ce33b6a | 2019-05-28 17:42:38 +0200 | [diff] [blame] | 392 | outbound_video->quality_limitation_reason = |
| 393 | QualityLimitationReasonToRTCQualityLimitationReason( |
| 394 | video_sender_info.quality_limitation_reason); |
Henrik Boström | 2e06926 | 2019-04-09 13:59:31 +0200 | [diff] [blame] | 395 | // TODO(https://crbug.com/webrtc/10529): When info's |content_info| is |
| 396 | // optional, support the "unspecified" value. |
| 397 | if (video_sender_info.content_type == VideoContentType::SCREENSHARE) |
| 398 | outbound_video->content_type = RTCContentType::kScreenshare; |
hbos | 6ded190 | 2016-11-01 01:50:46 -0700 | [diff] [blame] | 399 | } |
| 400 | |
Henrik Boström | 883eefc | 2019-05-27 13:40:25 +0200 | [diff] [blame] | 401 | std::unique_ptr<RTCRemoteInboundRtpStreamStats> |
| 402 | ProduceRemoteInboundRtpStreamStatsFromReportBlockData( |
| 403 | const ReportBlockData& report_block_data, |
| 404 | cricket::MediaType media_type, |
| 405 | const RTCStatsReport& report) { |
| 406 | const auto& report_block = report_block_data.report_block(); |
| 407 | // RTCStats' timestamp generally refers to when the metric was sampled, but |
| 408 | // for "remote-[outbound/inbound]-rtp" it refers to the local time when the |
| 409 | // Report Block was received. |
| 410 | auto remote_inbound = absl::make_unique<RTCRemoteInboundRtpStreamStats>( |
| 411 | RTCRemoteInboundRtpStreamStatsIdFromSsrcs( |
| 412 | media_type, report_block.sender_ssrc, report_block.source_ssrc), |
| 413 | /*timestamp=*/report_block_data.report_block_timestamp_utc_us()); |
| 414 | remote_inbound->ssrc = report_block.sender_ssrc; |
| 415 | remote_inbound->kind = |
| 416 | media_type == cricket::MEDIA_TYPE_AUDIO ? "audio" : "video"; |
| 417 | remote_inbound->packets_lost = report_block.packets_lost; |
| 418 | remote_inbound->round_trip_time = |
| 419 | static_cast<double>(report_block_data.last_rtt_ms()) / |
| 420 | rtc::kNumMillisecsPerSec; |
| 421 | |
| 422 | std::string local_id = RTCOutboundRTPStreamStatsIDFromSSRC( |
| 423 | media_type == cricket::MEDIA_TYPE_AUDIO, report_block.source_ssrc); |
| 424 | const auto* local_id_stat = report.Get(local_id); |
| 425 | if (local_id_stat) { |
| 426 | remote_inbound->local_id = local_id; |
| 427 | const auto& outbound_rtp = |
| 428 | local_id_stat->cast_to<RTCOutboundRTPStreamStats>(); |
| 429 | // The RTP/RTCP transport is obtained from the |
| 430 | // RTCOutboundRtpStreamStats's transport. |
| 431 | const auto* transport_from_id = outbound_rtp.transport_id.is_defined() |
| 432 | ? report.Get(*outbound_rtp.transport_id) |
| 433 | : nullptr; |
| 434 | if (transport_from_id) { |
| 435 | const auto& transport = transport_from_id->cast_to<RTCTransportStats>(); |
| 436 | // If RTP and RTCP are not multiplexed, there is a separate RTCP |
| 437 | // transport paired with the RTP transport, otherwise the same |
| 438 | // transport is used for RTCP and RTP. |
| 439 | remote_inbound->transport_id = |
| 440 | transport.rtcp_transport_stats_id.is_defined() |
| 441 | ? *transport.rtcp_transport_stats_id |
| 442 | : *outbound_rtp.transport_id; |
| 443 | } |
| 444 | // We're assuming the same codec is used on both ends. However if the |
| 445 | // codec is switched out on the fly we may have received a Report Block |
| 446 | // based on the previous codec and there is no way to tell which point in |
| 447 | // time the codec changed for the remote end. |
| 448 | const auto* codec_from_id = outbound_rtp.codec_id.is_defined() |
| 449 | ? report.Get(*outbound_rtp.codec_id) |
| 450 | : nullptr; |
| 451 | if (codec_from_id) { |
| 452 | remote_inbound->codec_id = *outbound_rtp.codec_id; |
| 453 | const auto& codec = codec_from_id->cast_to<RTCCodecStats>(); |
| 454 | if (codec.clock_rate.is_defined()) { |
| 455 | // The Report Block jitter is expressed in RTP timestamp units |
| 456 | // (https://tools.ietf.org/html/rfc3550#section-6.4.1). To convert this |
| 457 | // to seconds we divide by the codec's clock rate. |
| 458 | remote_inbound->jitter = |
| 459 | static_cast<double>(report_block.jitter) / *codec.clock_rate; |
| 460 | } |
| 461 | } |
| 462 | } |
| 463 | return remote_inbound; |
| 464 | } |
| 465 | |
hbos | 02ba211 | 2016-10-28 05:14:53 -0700 | [diff] [blame] | 466 | void ProduceCertificateStatsFromSSLCertificateStats( |
| 467 | int64_t timestamp_us, const rtc::SSLCertificateStats& certificate_stats, |
| 468 | RTCStatsReport* report) { |
| 469 | RTCCertificateStats* prev_certificate_stats = nullptr; |
| 470 | for (const rtc::SSLCertificateStats* s = &certificate_stats; s; |
| 471 | s = s->issuer.get()) { |
hbos | 02d2a92 | 2016-12-21 01:29:05 -0800 | [diff] [blame] | 472 | std::string certificate_stats_id = |
| 473 | RTCCertificateIDFromFingerprint(s->fingerprint); |
| 474 | // It is possible for the same certificate to show up multiple times, e.g. |
| 475 | // if local and remote side use the same certificate in a loopback call. |
| 476 | // If the report already contains stats for this certificate, skip it. |
| 477 | if (report->Get(certificate_stats_id)) { |
| 478 | RTC_DCHECK_EQ(s, &certificate_stats); |
| 479 | break; |
| 480 | } |
hbos | 02ba211 | 2016-10-28 05:14:53 -0700 | [diff] [blame] | 481 | RTCCertificateStats* certificate_stats = new RTCCertificateStats( |
hbos | 02d2a92 | 2016-12-21 01:29:05 -0800 | [diff] [blame] | 482 | certificate_stats_id, timestamp_us); |
hbos | 02ba211 | 2016-10-28 05:14:53 -0700 | [diff] [blame] | 483 | certificate_stats->fingerprint = s->fingerprint; |
| 484 | certificate_stats->fingerprint_algorithm = s->fingerprint_algorithm; |
| 485 | certificate_stats->base64_certificate = s->base64_certificate; |
| 486 | if (prev_certificate_stats) |
| 487 | prev_certificate_stats->issuer_certificate_id = certificate_stats->id(); |
| 488 | report->AddStats(std::unique_ptr<RTCCertificateStats>(certificate_stats)); |
| 489 | prev_certificate_stats = certificate_stats; |
| 490 | } |
| 491 | } |
| 492 | |
| 493 | const std::string& ProduceIceCandidateStats( |
| 494 | int64_t timestamp_us, const cricket::Candidate& candidate, bool is_local, |
hbos | b4e426e | 2017-01-02 09:59:31 -0800 | [diff] [blame] | 495 | const std::string& transport_id, RTCStatsReport* report) { |
hbos | 02ba211 | 2016-10-28 05:14:53 -0700 | [diff] [blame] | 496 | const std::string& id = "RTCIceCandidate_" + candidate.id(); |
| 497 | const RTCStats* stats = report->Get(id); |
| 498 | if (!stats) { |
| 499 | std::unique_ptr<RTCIceCandidateStats> candidate_stats; |
| 500 | if (is_local) |
| 501 | candidate_stats.reset(new RTCLocalIceCandidateStats(id, timestamp_us)); |
| 502 | else |
| 503 | candidate_stats.reset(new RTCRemoteIceCandidateStats(id, timestamp_us)); |
hbos | b4e426e | 2017-01-02 09:59:31 -0800 | [diff] [blame] | 504 | candidate_stats->transport_id = transport_id; |
Gary Liu | 37e489c | 2017-11-21 10:49:36 -0800 | [diff] [blame] | 505 | if (is_local) { |
| 506 | candidate_stats->network_type = |
| 507 | NetworkAdapterTypeToStatsType(candidate.network_type()); |
Philipp Hancke | 9551375 | 2018-09-27 14:40:08 +0200 | [diff] [blame] | 508 | if (candidate.type() == cricket::RELAY_PORT_TYPE) { |
| 509 | std::string relay_protocol = candidate.relay_protocol(); |
| 510 | RTC_DCHECK(relay_protocol.compare("udp") == 0 || |
| 511 | relay_protocol.compare("tcp") == 0 || |
| 512 | relay_protocol.compare("tls") == 0); |
| 513 | candidate_stats->relay_protocol = relay_protocol; |
| 514 | } |
Gary Liu | 37e489c | 2017-11-21 10:49:36 -0800 | [diff] [blame] | 515 | } else { |
| 516 | // We don't expect to know the adapter type of remote candidates. |
| 517 | RTC_DCHECK_EQ(rtc::ADAPTER_TYPE_UNKNOWN, candidate.network_type()); |
| 518 | } |
hbos | 02ba211 | 2016-10-28 05:14:53 -0700 | [diff] [blame] | 519 | candidate_stats->ip = candidate.address().ipaddr().ToString(); |
| 520 | candidate_stats->port = static_cast<int32_t>(candidate.address().port()); |
| 521 | candidate_stats->protocol = candidate.protocol(); |
| 522 | candidate_stats->candidate_type = CandidateTypeToRTCIceCandidateType( |
| 523 | candidate.type()); |
| 524 | candidate_stats->priority = static_cast<int32_t>(candidate.priority()); |
| 525 | |
| 526 | stats = candidate_stats.get(); |
| 527 | report->AddStats(std::move(candidate_stats)); |
| 528 | } |
| 529 | RTC_DCHECK_EQ(stats->type(), is_local ? RTCLocalIceCandidateStats::kType |
| 530 | : RTCRemoteIceCandidateStats::kType); |
| 531 | return stats->id(); |
| 532 | } |
| 533 | |
hbos | 9e30274 | 2017-01-20 02:47:10 -0800 | [diff] [blame] | 534 | std::unique_ptr<RTCMediaStreamTrackStats> |
| 535 | ProduceMediaStreamTrackStatsFromVoiceSenderInfo( |
| 536 | int64_t timestamp_us, |
| 537 | const AudioTrackInterface& audio_track, |
Harald Alvestrand | c72af93 | 2018-01-11 17:18:19 +0100 | [diff] [blame] | 538 | const cricket::VoiceSenderInfo& voice_sender_info, |
| 539 | int attachment_id) { |
hbos | 9e30274 | 2017-01-20 02:47:10 -0800 | [diff] [blame] | 540 | std::unique_ptr<RTCMediaStreamTrackStats> audio_track_stats( |
| 541 | new RTCMediaStreamTrackStats( |
Harald Alvestrand | a3dab84 | 2018-01-14 09:18:58 +0100 | [diff] [blame] | 542 | RTCMediaStreamTrackStatsIDFromDirectionAndAttachment(kSender, |
| 543 | attachment_id), |
Harald Alvestrand | c72af93 | 2018-01-11 17:18:19 +0100 | [diff] [blame] | 544 | timestamp_us, RTCMediaStreamTrackKind::kAudio)); |
hbos | 9e30274 | 2017-01-20 02:47:10 -0800 | [diff] [blame] | 545 | SetMediaStreamTrackStatsFromMediaStreamTrackInterface( |
| 546 | audio_track, audio_track_stats.get()); |
Henrik Boström | 646fda0 | 2019-05-22 15:49:42 +0200 | [diff] [blame] | 547 | audio_track_stats->media_source_id = |
| 548 | RTCMediaSourceStatsIDFromKindAndAttachment(cricket::MEDIA_TYPE_AUDIO, |
| 549 | attachment_id); |
hbos | 9e30274 | 2017-01-20 02:47:10 -0800 | [diff] [blame] | 550 | audio_track_stats->remote_source = false; |
| 551 | audio_track_stats->detached = false; |
| 552 | if (voice_sender_info.audio_level >= 0) { |
| 553 | audio_track_stats->audio_level = DoubleAudioLevelFromIntAudioLevel( |
| 554 | voice_sender_info.audio_level); |
| 555 | } |
zstein | e76bd3a | 2017-07-14 12:17:49 -0700 | [diff] [blame] | 556 | audio_track_stats->total_audio_energy = voice_sender_info.total_input_energy; |
| 557 | audio_track_stats->total_samples_duration = |
| 558 | voice_sender_info.total_input_duration; |
Ivo Creusen | 56d4609 | 2017-11-24 17:29:59 +0100 | [diff] [blame] | 559 | if (voice_sender_info.apm_statistics.echo_return_loss) { |
| 560 | audio_track_stats->echo_return_loss = |
| 561 | *voice_sender_info.apm_statistics.echo_return_loss; |
hbos | 9e30274 | 2017-01-20 02:47:10 -0800 | [diff] [blame] | 562 | } |
Ivo Creusen | 56d4609 | 2017-11-24 17:29:59 +0100 | [diff] [blame] | 563 | if (voice_sender_info.apm_statistics.echo_return_loss_enhancement) { |
| 564 | audio_track_stats->echo_return_loss_enhancement = |
| 565 | *voice_sender_info.apm_statistics.echo_return_loss_enhancement; |
hbos | 9e30274 | 2017-01-20 02:47:10 -0800 | [diff] [blame] | 566 | } |
| 567 | return audio_track_stats; |
| 568 | } |
| 569 | |
| 570 | std::unique_ptr<RTCMediaStreamTrackStats> |
| 571 | ProduceMediaStreamTrackStatsFromVoiceReceiverInfo( |
| 572 | int64_t timestamp_us, |
| 573 | const AudioTrackInterface& audio_track, |
Harald Alvestrand | c72af93 | 2018-01-11 17:18:19 +0100 | [diff] [blame] | 574 | const cricket::VoiceReceiverInfo& voice_receiver_info, |
| 575 | int attachment_id) { |
| 576 | // Since receiver tracks can't be reattached, we use the SSRC as |
| 577 | // an attachment identifier. |
hbos | 9e30274 | 2017-01-20 02:47:10 -0800 | [diff] [blame] | 578 | std::unique_ptr<RTCMediaStreamTrackStats> audio_track_stats( |
| 579 | new RTCMediaStreamTrackStats( |
Harald Alvestrand | a3dab84 | 2018-01-14 09:18:58 +0100 | [diff] [blame] | 580 | RTCMediaStreamTrackStatsIDFromDirectionAndAttachment(kReceiver, |
| 581 | attachment_id), |
Harald Alvestrand | c72af93 | 2018-01-11 17:18:19 +0100 | [diff] [blame] | 582 | timestamp_us, RTCMediaStreamTrackKind::kAudio)); |
hbos | 9e30274 | 2017-01-20 02:47:10 -0800 | [diff] [blame] | 583 | SetMediaStreamTrackStatsFromMediaStreamTrackInterface( |
| 584 | audio_track, audio_track_stats.get()); |
| 585 | audio_track_stats->remote_source = true; |
| 586 | audio_track_stats->detached = false; |
| 587 | if (voice_receiver_info.audio_level >= 0) { |
| 588 | audio_track_stats->audio_level = DoubleAudioLevelFromIntAudioLevel( |
| 589 | voice_receiver_info.audio_level); |
| 590 | } |
Gustaf Ullberg | b0a0207 | 2017-10-02 12:00:34 +0200 | [diff] [blame] | 591 | audio_track_stats->jitter_buffer_delay = |
| 592 | voice_receiver_info.jitter_buffer_delay_seconds; |
Chen Xing | 0acffb5 | 2019-01-15 15:46:29 +0100 | [diff] [blame] | 593 | audio_track_stats->jitter_buffer_emitted_count = |
| 594 | voice_receiver_info.jitter_buffer_emitted_count; |
Ivo Creusen | 8d8ffdb | 2019-04-30 09:45:21 +0200 | [diff] [blame] | 595 | audio_track_stats->inserted_samples_for_deceleration = |
| 596 | voice_receiver_info.inserted_samples_for_deceleration; |
| 597 | audio_track_stats->removed_samples_for_acceleration = |
| 598 | voice_receiver_info.removed_samples_for_acceleration; |
zstein | e76bd3a | 2017-07-14 12:17:49 -0700 | [diff] [blame] | 599 | audio_track_stats->total_audio_energy = |
| 600 | voice_receiver_info.total_output_energy; |
Steve Anton | 2dbc69f | 2017-08-24 17:15:13 -0700 | [diff] [blame] | 601 | audio_track_stats->total_samples_received = |
| 602 | voice_receiver_info.total_samples_received; |
zstein | e76bd3a | 2017-07-14 12:17:49 -0700 | [diff] [blame] | 603 | audio_track_stats->total_samples_duration = |
| 604 | voice_receiver_info.total_output_duration; |
Steve Anton | 2dbc69f | 2017-08-24 17:15:13 -0700 | [diff] [blame] | 605 | audio_track_stats->concealed_samples = voice_receiver_info.concealed_samples; |
Ivo Creusen | 8d8ffdb | 2019-04-30 09:45:21 +0200 | [diff] [blame] | 606 | audio_track_stats->silent_concealed_samples = |
| 607 | voice_receiver_info.silent_concealed_samples; |
Gustaf Ullberg | 9a2e906 | 2017-09-18 09:28:20 +0200 | [diff] [blame] | 608 | audio_track_stats->concealment_events = |
| 609 | voice_receiver_info.concealment_events; |
Ruslan Burakov | 8af8896 | 2018-11-22 17:21:10 +0100 | [diff] [blame] | 610 | audio_track_stats->jitter_buffer_flushes = |
| 611 | voice_receiver_info.jitter_buffer_flushes; |
Jakob Ivarsson | 352ce5c | 2018-11-27 12:52:16 +0100 | [diff] [blame] | 612 | audio_track_stats->delayed_packet_outage_samples = |
| 613 | voice_receiver_info.delayed_packet_outage_samples; |
Jakob Ivarsson | 232b3fd | 2019-03-06 09:18:40 +0100 | [diff] [blame] | 614 | audio_track_stats->relative_packet_arrival_delay = |
| 615 | voice_receiver_info.relative_packet_arrival_delay_seconds; |
Henrik Lundin | 44125fa | 2019-04-29 17:00:46 +0200 | [diff] [blame] | 616 | audio_track_stats->interruption_count = |
| 617 | voice_receiver_info.interruption_count >= 0 |
| 618 | ? voice_receiver_info.interruption_count |
| 619 | : 0; |
| 620 | audio_track_stats->total_interruption_duration = |
| 621 | static_cast<double>(voice_receiver_info.total_interruption_duration_ms) / |
| 622 | rtc::kNumMillisecsPerSec; |
hbos | 9e30274 | 2017-01-20 02:47:10 -0800 | [diff] [blame] | 623 | return audio_track_stats; |
| 624 | } |
| 625 | |
| 626 | std::unique_ptr<RTCMediaStreamTrackStats> |
| 627 | ProduceMediaStreamTrackStatsFromVideoSenderInfo( |
| 628 | int64_t timestamp_us, |
| 629 | const VideoTrackInterface& video_track, |
Harald Alvestrand | c72af93 | 2018-01-11 17:18:19 +0100 | [diff] [blame] | 630 | const cricket::VideoSenderInfo& video_sender_info, |
| 631 | int attachment_id) { |
hbos | 9e30274 | 2017-01-20 02:47:10 -0800 | [diff] [blame] | 632 | std::unique_ptr<RTCMediaStreamTrackStats> video_track_stats( |
| 633 | new RTCMediaStreamTrackStats( |
Harald Alvestrand | a3dab84 | 2018-01-14 09:18:58 +0100 | [diff] [blame] | 634 | RTCMediaStreamTrackStatsIDFromDirectionAndAttachment(kSender, |
Harald Alvestrand | a3dab84 | 2018-01-14 09:18:58 +0100 | [diff] [blame] | 635 | attachment_id), |
Harald Alvestrand | c72af93 | 2018-01-11 17:18:19 +0100 | [diff] [blame] | 636 | timestamp_us, RTCMediaStreamTrackKind::kVideo)); |
hbos | 9e30274 | 2017-01-20 02:47:10 -0800 | [diff] [blame] | 637 | SetMediaStreamTrackStatsFromMediaStreamTrackInterface( |
| 638 | video_track, video_track_stats.get()); |
Henrik Boström | 646fda0 | 2019-05-22 15:49:42 +0200 | [diff] [blame] | 639 | video_track_stats->media_source_id = |
| 640 | RTCMediaSourceStatsIDFromKindAndAttachment(cricket::MEDIA_TYPE_VIDEO, |
| 641 | attachment_id); |
hbos | 9e30274 | 2017-01-20 02:47:10 -0800 | [diff] [blame] | 642 | video_track_stats->remote_source = false; |
| 643 | video_track_stats->detached = false; |
| 644 | video_track_stats->frame_width = static_cast<uint32_t>( |
| 645 | video_sender_info.send_frame_width); |
| 646 | video_track_stats->frame_height = static_cast<uint32_t>( |
| 647 | video_sender_info.send_frame_height); |
hbos | fefe076 | 2017-01-20 06:14:25 -0800 | [diff] [blame] | 648 | // TODO(hbos): Will reduce this by frames dropped due to congestion control |
Harald Alvestrand | 8906187 | 2018-01-02 14:08:34 +0100 | [diff] [blame] | 649 | // when available. https://crbug.com/659137 |
hbos | fefe076 | 2017-01-20 06:14:25 -0800 | [diff] [blame] | 650 | video_track_stats->frames_sent = video_sender_info.frames_encoded; |
Ilya Nikolaevskiy | 70473fc | 2018-02-28 16:35:03 +0100 | [diff] [blame] | 651 | video_track_stats->huge_frames_sent = video_sender_info.huge_frames_sent; |
hbos | 9e30274 | 2017-01-20 02:47:10 -0800 | [diff] [blame] | 652 | return video_track_stats; |
| 653 | } |
| 654 | |
| 655 | std::unique_ptr<RTCMediaStreamTrackStats> |
| 656 | ProduceMediaStreamTrackStatsFromVideoReceiverInfo( |
| 657 | int64_t timestamp_us, |
| 658 | const VideoTrackInterface& video_track, |
Harald Alvestrand | c72af93 | 2018-01-11 17:18:19 +0100 | [diff] [blame] | 659 | const cricket::VideoReceiverInfo& video_receiver_info, |
| 660 | int attachment_id) { |
hbos | 9e30274 | 2017-01-20 02:47:10 -0800 | [diff] [blame] | 661 | std::unique_ptr<RTCMediaStreamTrackStats> video_track_stats( |
| 662 | new RTCMediaStreamTrackStats( |
Harald Alvestrand | a3dab84 | 2018-01-14 09:18:58 +0100 | [diff] [blame] | 663 | RTCMediaStreamTrackStatsIDFromDirectionAndAttachment(kReceiver, |
| 664 | |
| 665 | attachment_id), |
Harald Alvestrand | c72af93 | 2018-01-11 17:18:19 +0100 | [diff] [blame] | 666 | timestamp_us, RTCMediaStreamTrackKind::kVideo)); |
hbos | 9e30274 | 2017-01-20 02:47:10 -0800 | [diff] [blame] | 667 | SetMediaStreamTrackStatsFromMediaStreamTrackInterface( |
| 668 | video_track, video_track_stats.get()); |
| 669 | video_track_stats->remote_source = true; |
| 670 | video_track_stats->detached = false; |
| 671 | if (video_receiver_info.frame_width > 0 && |
| 672 | video_receiver_info.frame_height > 0) { |
| 673 | video_track_stats->frame_width = static_cast<uint32_t>( |
| 674 | video_receiver_info.frame_width); |
| 675 | video_track_stats->frame_height = static_cast<uint32_t>( |
| 676 | video_receiver_info.frame_height); |
| 677 | } |
Guido Urdaneta | 6737841 | 2019-05-28 17:38:08 +0200 | [diff] [blame] | 678 | video_track_stats->jitter_buffer_delay = |
| 679 | video_receiver_info.jitter_buffer_delay_seconds; |
| 680 | video_track_stats->jitter_buffer_emitted_count = |
| 681 | video_receiver_info.jitter_buffer_emitted_count; |
hbos | 42f6d2f | 2017-01-20 03:56:50 -0800 | [diff] [blame] | 682 | video_track_stats->frames_received = video_receiver_info.frames_received; |
hbos | f64941f | 2017-01-20 07:39:09 -0800 | [diff] [blame] | 683 | // TODO(hbos): When we support receiving simulcast, this should be the total |
| 684 | // number of frames correctly decoded, independent of which SSRC it was |
| 685 | // received from. Since we don't support that, this is correct and is the same |
Harald Alvestrand | 8906187 | 2018-01-02 14:08:34 +0100 | [diff] [blame] | 686 | // value as "RTCInboundRTPStreamStats.framesDecoded". https://crbug.com/659137 |
hbos | f64941f | 2017-01-20 07:39:09 -0800 | [diff] [blame] | 687 | video_track_stats->frames_decoded = video_receiver_info.frames_decoded; |
hbos | 50cfe1f | 2017-01-23 07:21:55 -0800 | [diff] [blame] | 688 | RTC_DCHECK_GE(video_receiver_info.frames_received, |
| 689 | video_receiver_info.frames_rendered); |
| 690 | video_track_stats->frames_dropped = video_receiver_info.frames_received - |
| 691 | video_receiver_info.frames_rendered; |
Sergey Silkin | 0237106 | 2019-01-31 16:45:42 +0100 | [diff] [blame] | 692 | video_track_stats->freeze_count = video_receiver_info.freeze_count; |
| 693 | video_track_stats->pause_count = video_receiver_info.pause_count; |
| 694 | video_track_stats->total_freezes_duration = |
| 695 | static_cast<double>(video_receiver_info.total_freezes_duration_ms) / |
| 696 | rtc::kNumMillisecsPerSec; |
| 697 | video_track_stats->total_pauses_duration = |
| 698 | static_cast<double>(video_receiver_info.total_pauses_duration_ms) / |
| 699 | rtc::kNumMillisecsPerSec; |
| 700 | video_track_stats->total_frames_duration = |
| 701 | static_cast<double>(video_receiver_info.total_frames_duration_ms) / |
| 702 | rtc::kNumMillisecsPerSec; |
| 703 | video_track_stats->sum_squared_frame_durations = |
| 704 | video_receiver_info.sum_squared_frame_durations; |
| 705 | |
hbos | 9e30274 | 2017-01-20 02:47:10 -0800 | [diff] [blame] | 706 | return video_track_stats; |
| 707 | } |
| 708 | |
Harald Alvestrand | 8906187 | 2018-01-02 14:08:34 +0100 | [diff] [blame] | 709 | void ProduceSenderMediaTrackStats( |
| 710 | int64_t timestamp_us, |
| 711 | const TrackMediaInfoMap& track_media_info_map, |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 712 | std::vector<rtc::scoped_refptr<RtpSenderInternal>> senders, |
Harald Alvestrand | 8906187 | 2018-01-02 14:08:34 +0100 | [diff] [blame] | 713 | RTCStatsReport* report) { |
| 714 | // This function iterates over the senders to generate outgoing track stats. |
| 715 | |
| 716 | // TODO(hbos): Return stats of detached tracks. We have to perform stats |
| 717 | // gathering at the time of detachment to get accurate stats and timestamps. |
| 718 | // https://crbug.com/659137 |
Mirko Bonadei | 739baf0 | 2019-01-27 17:29:42 +0100 | [diff] [blame] | 719 | for (const auto& sender : senders) { |
Harald Alvestrand | 8906187 | 2018-01-02 14:08:34 +0100 | [diff] [blame] | 720 | if (sender->media_type() == cricket::MEDIA_TYPE_AUDIO) { |
| 721 | AudioTrackInterface* track = |
| 722 | static_cast<AudioTrackInterface*>(sender->track().get()); |
| 723 | if (!track) |
| 724 | continue; |
Harald Alvestrand | b8e1201 | 2018-01-23 15:28:16 +0100 | [diff] [blame] | 725 | cricket::VoiceSenderInfo null_sender_info; |
| 726 | const cricket::VoiceSenderInfo* voice_sender_info = &null_sender_info; |
| 727 | // TODO(hta): Checking on ssrc is not proper. There should be a way |
| 728 | // to see from a sender whether it's connected or not. |
| 729 | // Related to https://crbug.com/8694 (using ssrc 0 to indicate "none") |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 730 | if (sender->ssrc() != 0) { |
Harald Alvestrand | 76d2952 | 2018-01-30 14:43:29 +0100 | [diff] [blame] | 731 | // When pc.close is called, sender info is discarded, so |
| 732 | // we generate zeroes instead. Bug: It should be retained. |
| 733 | // https://crbug.com/807174 |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 734 | const cricket::VoiceSenderInfo* sender_info = |
Harald Alvestrand | b8e1201 | 2018-01-23 15:28:16 +0100 | [diff] [blame] | 735 | track_media_info_map.GetVoiceSenderInfoBySsrc(sender->ssrc()); |
Harald Alvestrand | 76d2952 | 2018-01-30 14:43:29 +0100 | [diff] [blame] | 736 | if (sender_info) { |
| 737 | voice_sender_info = sender_info; |
| 738 | } else { |
| 739 | RTC_LOG(LS_INFO) |
| 740 | << "RTCStatsCollector: No voice sender info for sender with ssrc " |
| 741 | << sender->ssrc(); |
| 742 | } |
Harald Alvestrand | b8e1201 | 2018-01-23 15:28:16 +0100 | [diff] [blame] | 743 | } |
Harald Alvestrand | 8906187 | 2018-01-02 14:08:34 +0100 | [diff] [blame] | 744 | std::unique_ptr<RTCMediaStreamTrackStats> audio_track_stats = |
Harald Alvestrand | c72af93 | 2018-01-11 17:18:19 +0100 | [diff] [blame] | 745 | ProduceMediaStreamTrackStatsFromVoiceSenderInfo( |
| 746 | timestamp_us, *track, *voice_sender_info, sender->AttachmentId()); |
Harald Alvestrand | 8906187 | 2018-01-02 14:08:34 +0100 | [diff] [blame] | 747 | report->AddStats(std::move(audio_track_stats)); |
| 748 | } else if (sender->media_type() == cricket::MEDIA_TYPE_VIDEO) { |
| 749 | VideoTrackInterface* track = |
| 750 | static_cast<VideoTrackInterface*>(sender->track().get()); |
| 751 | if (!track) |
| 752 | continue; |
Harald Alvestrand | b8e1201 | 2018-01-23 15:28:16 +0100 | [diff] [blame] | 753 | cricket::VideoSenderInfo null_sender_info; |
| 754 | const cricket::VideoSenderInfo* video_sender_info = &null_sender_info; |
| 755 | // TODO(hta): Check on state not ssrc when state is available |
Harald Alvestrand | 76d2952 | 2018-01-30 14:43:29 +0100 | [diff] [blame] | 756 | // Related to https://bugs.webrtc.org/8694 (using ssrc 0 to indicate |
| 757 | // "none") |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 758 | if (sender->ssrc() != 0) { |
Harald Alvestrand | 76d2952 | 2018-01-30 14:43:29 +0100 | [diff] [blame] | 759 | // When pc.close is called, sender info is discarded, so |
| 760 | // we generate zeroes instead. Bug: It should be retained. |
| 761 | // https://crbug.com/807174 |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 762 | const cricket::VideoSenderInfo* sender_info = |
Harald Alvestrand | b8e1201 | 2018-01-23 15:28:16 +0100 | [diff] [blame] | 763 | track_media_info_map.GetVideoSenderInfoBySsrc(sender->ssrc()); |
Harald Alvestrand | 76d2952 | 2018-01-30 14:43:29 +0100 | [diff] [blame] | 764 | if (sender_info) { |
| 765 | video_sender_info = sender_info; |
| 766 | } else { |
| 767 | RTC_LOG(LS_INFO) << "No video sender info for sender with ssrc " |
| 768 | << sender->ssrc(); |
| 769 | } |
| 770 | } |
Harald Alvestrand | 8906187 | 2018-01-02 14:08:34 +0100 | [diff] [blame] | 771 | std::unique_ptr<RTCMediaStreamTrackStats> video_track_stats = |
Harald Alvestrand | c72af93 | 2018-01-11 17:18:19 +0100 | [diff] [blame] | 772 | ProduceMediaStreamTrackStatsFromVideoSenderInfo( |
| 773 | timestamp_us, *track, *video_sender_info, sender->AttachmentId()); |
Harald Alvestrand | 8906187 | 2018-01-02 14:08:34 +0100 | [diff] [blame] | 774 | report->AddStats(std::move(video_track_stats)); |
| 775 | } else { |
| 776 | RTC_NOTREACHED(); |
| 777 | } |
| 778 | } |
| 779 | } |
| 780 | |
| 781 | void ProduceReceiverMediaTrackStats( |
| 782 | int64_t timestamp_us, |
| 783 | const TrackMediaInfoMap& track_media_info_map, |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 784 | std::vector<rtc::scoped_refptr<RtpReceiverInternal>> receivers, |
Harald Alvestrand | 8906187 | 2018-01-02 14:08:34 +0100 | [diff] [blame] | 785 | RTCStatsReport* report) { |
| 786 | // This function iterates over the receivers to find the remote tracks. |
Mirko Bonadei | 739baf0 | 2019-01-27 17:29:42 +0100 | [diff] [blame] | 787 | for (const auto& receiver : receivers) { |
Harald Alvestrand | 8906187 | 2018-01-02 14:08:34 +0100 | [diff] [blame] | 788 | if (receiver->media_type() == cricket::MEDIA_TYPE_AUDIO) { |
| 789 | AudioTrackInterface* track = |
| 790 | static_cast<AudioTrackInterface*>(receiver->track().get()); |
| 791 | const cricket::VoiceReceiverInfo* voice_receiver_info = |
| 792 | track_media_info_map.GetVoiceReceiverInfo(*track); |
| 793 | if (!voice_receiver_info) { |
| 794 | continue; |
| 795 | } |
| 796 | std::unique_ptr<RTCMediaStreamTrackStats> audio_track_stats = |
| 797 | ProduceMediaStreamTrackStatsFromVoiceReceiverInfo( |
Harald Alvestrand | c72af93 | 2018-01-11 17:18:19 +0100 | [diff] [blame] | 798 | timestamp_us, *track, *voice_receiver_info, |
| 799 | receiver->AttachmentId()); |
Harald Alvestrand | 8906187 | 2018-01-02 14:08:34 +0100 | [diff] [blame] | 800 | report->AddStats(std::move(audio_track_stats)); |
| 801 | } else if (receiver->media_type() == cricket::MEDIA_TYPE_VIDEO) { |
| 802 | VideoTrackInterface* track = |
| 803 | static_cast<VideoTrackInterface*>(receiver->track().get()); |
| 804 | const cricket::VideoReceiverInfo* video_receiver_info = |
| 805 | track_media_info_map.GetVideoReceiverInfo(*track); |
| 806 | if (!video_receiver_info) { |
| 807 | continue; |
| 808 | } |
| 809 | std::unique_ptr<RTCMediaStreamTrackStats> video_track_stats = |
| 810 | ProduceMediaStreamTrackStatsFromVideoReceiverInfo( |
Harald Alvestrand | c72af93 | 2018-01-11 17:18:19 +0100 | [diff] [blame] | 811 | timestamp_us, *track, *video_receiver_info, |
| 812 | receiver->AttachmentId()); |
Harald Alvestrand | 8906187 | 2018-01-02 14:08:34 +0100 | [diff] [blame] | 813 | report->AddStats(std::move(video_track_stats)); |
| 814 | } else { |
| 815 | RTC_NOTREACHED(); |
| 816 | } |
| 817 | } |
| 818 | } |
| 819 | |
Henrik Boström | 5b3541f | 2018-03-19 13:52:56 +0100 | [diff] [blame] | 820 | rtc::scoped_refptr<RTCStatsReport> CreateReportFilteredBySelector( |
| 821 | bool filter_by_sender_selector, |
| 822 | rtc::scoped_refptr<const RTCStatsReport> report, |
| 823 | rtc::scoped_refptr<RtpSenderInternal> sender_selector, |
| 824 | rtc::scoped_refptr<RtpReceiverInternal> receiver_selector) { |
| 825 | std::vector<std::string> rtpstream_ids; |
| 826 | if (filter_by_sender_selector) { |
| 827 | // Filter mode: RTCStatsCollector::RequestInfo::kSenderSelector |
| 828 | if (sender_selector) { |
| 829 | // Find outbound-rtp(s) of the sender, i.e. the outbound-rtp(s) that |
| 830 | // reference the sender stats. |
| 831 | // Because we do not implement sender stats, we look at outbound-rtp(s) |
| 832 | // that reference the track attachment stats for the sender instead. |
| 833 | std::string track_id = |
| 834 | RTCMediaStreamTrackStatsIDFromDirectionAndAttachment( |
| 835 | kSender, sender_selector->AttachmentId()); |
| 836 | for (const auto& stats : *report) { |
| 837 | if (stats.type() != RTCOutboundRTPStreamStats::kType) |
| 838 | continue; |
| 839 | const auto& outbound_rtp = stats.cast_to<RTCOutboundRTPStreamStats>(); |
| 840 | if (outbound_rtp.track_id.is_defined() && |
| 841 | *outbound_rtp.track_id == track_id) { |
| 842 | rtpstream_ids.push_back(outbound_rtp.id()); |
| 843 | } |
| 844 | } |
| 845 | } |
| 846 | } else { |
| 847 | // Filter mode: RTCStatsCollector::RequestInfo::kReceiverSelector |
| 848 | if (receiver_selector) { |
| 849 | // Find inbound-rtp(s) of the receiver, i.e. the inbound-rtp(s) that |
| 850 | // reference the receiver stats. |
| 851 | // Because we do not implement receiver stats, we look at inbound-rtp(s) |
| 852 | // that reference the track attachment stats for the receiver instead. |
| 853 | std::string track_id = |
| 854 | RTCMediaStreamTrackStatsIDFromDirectionAndAttachment( |
| 855 | kReceiver, receiver_selector->AttachmentId()); |
| 856 | for (const auto& stats : *report) { |
| 857 | if (stats.type() != RTCInboundRTPStreamStats::kType) |
| 858 | continue; |
| 859 | const auto& inbound_rtp = stats.cast_to<RTCInboundRTPStreamStats>(); |
| 860 | if (inbound_rtp.track_id.is_defined() && |
| 861 | *inbound_rtp.track_id == track_id) { |
| 862 | rtpstream_ids.push_back(inbound_rtp.id()); |
| 863 | } |
| 864 | } |
| 865 | } |
| 866 | } |
| 867 | if (rtpstream_ids.empty()) |
| 868 | return RTCStatsReport::Create(report->timestamp_us()); |
| 869 | return TakeReferencedStats(report->Copy(), rtpstream_ids); |
| 870 | } |
| 871 | |
hbos | cc555c5 | 2016-10-18 12:48:31 -0700 | [diff] [blame] | 872 | } // namespace |
| 873 | |
Henrik Boström | 5b3541f | 2018-03-19 13:52:56 +0100 | [diff] [blame] | 874 | RTCStatsCollector::RequestInfo::RequestInfo( |
| 875 | rtc::scoped_refptr<RTCStatsCollectorCallback> callback) |
| 876 | : RequestInfo(FilterMode::kAll, std::move(callback), nullptr, nullptr) {} |
| 877 | |
| 878 | RTCStatsCollector::RequestInfo::RequestInfo( |
| 879 | rtc::scoped_refptr<RtpSenderInternal> selector, |
| 880 | rtc::scoped_refptr<RTCStatsCollectorCallback> callback) |
| 881 | : RequestInfo(FilterMode::kSenderSelector, |
| 882 | std::move(callback), |
| 883 | std::move(selector), |
| 884 | nullptr) {} |
| 885 | |
| 886 | RTCStatsCollector::RequestInfo::RequestInfo( |
| 887 | rtc::scoped_refptr<RtpReceiverInternal> selector, |
| 888 | rtc::scoped_refptr<RTCStatsCollectorCallback> callback) |
| 889 | : RequestInfo(FilterMode::kReceiverSelector, |
| 890 | std::move(callback), |
| 891 | nullptr, |
| 892 | std::move(selector)) {} |
| 893 | |
| 894 | RTCStatsCollector::RequestInfo::RequestInfo( |
| 895 | RTCStatsCollector::RequestInfo::FilterMode filter_mode, |
| 896 | rtc::scoped_refptr<RTCStatsCollectorCallback> callback, |
| 897 | rtc::scoped_refptr<RtpSenderInternal> sender_selector, |
| 898 | rtc::scoped_refptr<RtpReceiverInternal> receiver_selector) |
| 899 | : filter_mode_(filter_mode), |
| 900 | callback_(std::move(callback)), |
| 901 | sender_selector_(std::move(sender_selector)), |
| 902 | receiver_selector_(std::move(receiver_selector)) { |
| 903 | RTC_DCHECK(callback_); |
| 904 | RTC_DCHECK(!sender_selector_ || !receiver_selector_); |
| 905 | } |
| 906 | |
hbos | c82f2e1 | 2016-09-05 01:36:50 -0700 | [diff] [blame] | 907 | rtc::scoped_refptr<RTCStatsCollector> RTCStatsCollector::Create( |
Steve Anton | 2d8609c | 2018-01-23 16:38:46 -0800 | [diff] [blame] | 908 | PeerConnectionInternal* pc, |
| 909 | int64_t cache_lifetime_us) { |
hbos | c82f2e1 | 2016-09-05 01:36:50 -0700 | [diff] [blame] | 910 | return rtc::scoped_refptr<RTCStatsCollector>( |
| 911 | new rtc::RefCountedObject<RTCStatsCollector>(pc, cache_lifetime_us)); |
| 912 | } |
| 913 | |
Steve Anton | 2d8609c | 2018-01-23 16:38:46 -0800 | [diff] [blame] | 914 | RTCStatsCollector::RTCStatsCollector(PeerConnectionInternal* pc, |
hbos | c82f2e1 | 2016-09-05 01:36:50 -0700 | [diff] [blame] | 915 | int64_t cache_lifetime_us) |
hbos | d565b73 | 2016-08-30 14:04:35 -0700 | [diff] [blame] | 916 | : pc_(pc), |
Steve Anton | 978b876 | 2017-09-29 12:15:02 -0700 | [diff] [blame] | 917 | signaling_thread_(pc->signaling_thread()), |
| 918 | worker_thread_(pc->worker_thread()), |
| 919 | network_thread_(pc->network_thread()), |
hbos | c82f2e1 | 2016-09-05 01:36:50 -0700 | [diff] [blame] | 920 | num_pending_partial_reports_(0), |
| 921 | partial_report_timestamp_us_(0), |
Henrik Boström | 40b030e | 2019-02-28 09:49:31 +0100 | [diff] [blame] | 922 | network_report_event_(true /* manual_reset */, |
| 923 | true /* initially_signaled */), |
hbos | 0e6758d | 2016-08-31 07:57:36 -0700 | [diff] [blame] | 924 | cache_timestamp_us_(0), |
| 925 | cache_lifetime_us_(cache_lifetime_us) { |
hbos | d565b73 | 2016-08-30 14:04:35 -0700 | [diff] [blame] | 926 | RTC_DCHECK(pc_); |
hbos | c82f2e1 | 2016-09-05 01:36:50 -0700 | [diff] [blame] | 927 | RTC_DCHECK(signaling_thread_); |
| 928 | RTC_DCHECK(worker_thread_); |
| 929 | RTC_DCHECK(network_thread_); |
hbos | 0e6758d | 2016-08-31 07:57:36 -0700 | [diff] [blame] | 930 | RTC_DCHECK_GE(cache_lifetime_us_, 0); |
Steve Anton | 2d8609c | 2018-01-23 16:38:46 -0800 | [diff] [blame] | 931 | pc_->SignalDataChannelCreated().connect( |
hbos | 82ebe02 | 2016-11-14 01:41:09 -0800 | [diff] [blame] | 932 | this, &RTCStatsCollector::OnDataChannelCreated); |
hbos | d565b73 | 2016-08-30 14:04:35 -0700 | [diff] [blame] | 933 | } |
| 934 | |
hbos | b78306a | 2016-12-19 05:06:57 -0800 | [diff] [blame] | 935 | RTCStatsCollector::~RTCStatsCollector() { |
| 936 | RTC_DCHECK_EQ(num_pending_partial_reports_, 0); |
| 937 | } |
| 938 | |
hbos | c82f2e1 | 2016-09-05 01:36:50 -0700 | [diff] [blame] | 939 | void RTCStatsCollector::GetStatsReport( |
| 940 | rtc::scoped_refptr<RTCStatsCollectorCallback> callback) { |
Henrik Boström | 5b3541f | 2018-03-19 13:52:56 +0100 | [diff] [blame] | 941 | GetStatsReportInternal(RequestInfo(std::move(callback))); |
| 942 | } |
| 943 | |
| 944 | void RTCStatsCollector::GetStatsReport( |
| 945 | rtc::scoped_refptr<RtpSenderInternal> selector, |
| 946 | rtc::scoped_refptr<RTCStatsCollectorCallback> callback) { |
| 947 | GetStatsReportInternal(RequestInfo(std::move(selector), std::move(callback))); |
| 948 | } |
| 949 | |
| 950 | void RTCStatsCollector::GetStatsReport( |
| 951 | rtc::scoped_refptr<RtpReceiverInternal> selector, |
| 952 | rtc::scoped_refptr<RTCStatsCollectorCallback> callback) { |
| 953 | GetStatsReportInternal(RequestInfo(std::move(selector), std::move(callback))); |
| 954 | } |
| 955 | |
| 956 | void RTCStatsCollector::GetStatsReportInternal( |
| 957 | RTCStatsCollector::RequestInfo request) { |
hbos | c82f2e1 | 2016-09-05 01:36:50 -0700 | [diff] [blame] | 958 | RTC_DCHECK(signaling_thread_->IsCurrent()); |
Henrik Boström | 5b3541f | 2018-03-19 13:52:56 +0100 | [diff] [blame] | 959 | requests_.push_back(std::move(request)); |
hbos | c82f2e1 | 2016-09-05 01:36:50 -0700 | [diff] [blame] | 960 | |
hbos | 0e6758d | 2016-08-31 07:57:36 -0700 | [diff] [blame] | 961 | // "Now" using a monotonically increasing timer. |
| 962 | int64_t cache_now_us = rtc::TimeMicros(); |
| 963 | if (cached_report_ && |
| 964 | cache_now_us - cache_timestamp_us_ <= cache_lifetime_us_) { |
Taylor Brandstetter | 25e022f | 2018-03-08 09:53:47 -0800 | [diff] [blame] | 965 | // We have a fresh cached report to deliver. Deliver asynchronously, since |
| 966 | // the caller may not be expecting a synchronous callback, and it avoids |
| 967 | // reentrancy problems. |
Henrik Boström | 5b3541f | 2018-03-19 13:52:56 +0100 | [diff] [blame] | 968 | std::vector<RequestInfo> requests; |
| 969 | requests.swap(requests_); |
Henrik Boström | 40b030e | 2019-02-28 09:49:31 +0100 | [diff] [blame] | 970 | signaling_thread_->PostTask( |
| 971 | RTC_FROM_HERE, rtc::Bind(&RTCStatsCollector::DeliverCachedReport, this, |
| 972 | cached_report_, std::move(requests))); |
hbos | c82f2e1 | 2016-09-05 01:36:50 -0700 | [diff] [blame] | 973 | } else if (!num_pending_partial_reports_) { |
| 974 | // Only start gathering stats if we're not already gathering stats. In the |
| 975 | // case of already gathering stats, |callback_| will be invoked when there |
| 976 | // are no more pending partial reports. |
| 977 | |
| 978 | // "Now" using a system clock, relative to the UNIX epoch (Jan 1, 1970, |
| 979 | // UTC), in microseconds. The system clock could be modified and is not |
| 980 | // necessarily monotonically increasing. |
nisse | cdf37a9 | 2016-09-13 23:41:47 -0700 | [diff] [blame] | 981 | int64_t timestamp_us = rtc::TimeUTCMicros(); |
hbos | c82f2e1 | 2016-09-05 01:36:50 -0700 | [diff] [blame] | 982 | |
hbos | f415f8a | 2017-01-02 04:28:51 -0800 | [diff] [blame] | 983 | num_pending_partial_reports_ = 2; |
hbos | c82f2e1 | 2016-09-05 01:36:50 -0700 | [diff] [blame] | 984 | partial_report_timestamp_us_ = cache_now_us; |
hbos | df6075a | 2016-12-19 04:58:02 -0800 | [diff] [blame] | 985 | |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 986 | // Prepare |transceiver_stats_infos_| for use in |
hbos | 84abeb1 | 2017-01-16 06:16:44 -0800 | [diff] [blame] | 987 | // |ProducePartialResultsOnNetworkThread| and |
| 988 | // |ProducePartialResultsOnSignalingThread|. |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 989 | transceiver_stats_infos_ = PrepareTransceiverStatsInfos_s(); |
Steve Anton | 7eca093 | 2018-03-30 15:18:41 -0700 | [diff] [blame] | 990 | // Prepare |transport_names_| for use in |
| 991 | // |ProducePartialResultsOnNetworkThread|. |
| 992 | transport_names_ = PrepareTransportNames_s(); |
Steve Anton | 5dfde18 | 2018-02-06 10:34:40 -0800 | [diff] [blame] | 993 | |
stefan | f79ade1 | 2017-06-02 06:44:03 -0700 | [diff] [blame] | 994 | // Prepare |call_stats_| here since GetCallStats() will hop to the worker |
| 995 | // thread. |
| 996 | // TODO(holmer): To avoid the hop we could move BWE and BWE stats to the |
| 997 | // network thread, where it more naturally belongs. |
Steve Anton | 978b876 | 2017-09-29 12:15:02 -0700 | [diff] [blame] | 998 | call_stats_ = pc_->GetCallStats(); |
stefan | f79ade1 | 2017-06-02 06:44:03 -0700 | [diff] [blame] | 999 | |
Henrik Boström | 40b030e | 2019-02-28 09:49:31 +0100 | [diff] [blame] | 1000 | // Don't touch |network_report_| on the signaling thread until |
| 1001 | // ProducePartialResultsOnNetworkThread() has signaled the |
| 1002 | // |network_report_event_|. |
| 1003 | network_report_event_.Reset(); |
| 1004 | network_thread_->PostTask( |
| 1005 | RTC_FROM_HERE, |
hbos | c82f2e1 | 2016-09-05 01:36:50 -0700 | [diff] [blame] | 1006 | rtc::Bind(&RTCStatsCollector::ProducePartialResultsOnNetworkThread, |
Henrik Boström | 40b030e | 2019-02-28 09:49:31 +0100 | [diff] [blame] | 1007 | this, timestamp_us)); |
hbos | f415f8a | 2017-01-02 04:28:51 -0800 | [diff] [blame] | 1008 | ProducePartialResultsOnSignalingThread(timestamp_us); |
hbos | 0e6758d | 2016-08-31 07:57:36 -0700 | [diff] [blame] | 1009 | } |
hbos | d565b73 | 2016-08-30 14:04:35 -0700 | [diff] [blame] | 1010 | } |
| 1011 | |
| 1012 | void RTCStatsCollector::ClearCachedStatsReport() { |
hbos | c82f2e1 | 2016-09-05 01:36:50 -0700 | [diff] [blame] | 1013 | RTC_DCHECK(signaling_thread_->IsCurrent()); |
hbos | d565b73 | 2016-08-30 14:04:35 -0700 | [diff] [blame] | 1014 | cached_report_ = nullptr; |
| 1015 | } |
| 1016 | |
hbos | b78306a | 2016-12-19 05:06:57 -0800 | [diff] [blame] | 1017 | void RTCStatsCollector::WaitForPendingRequest() { |
| 1018 | RTC_DCHECK(signaling_thread_->IsCurrent()); |
Henrik Boström | 40b030e | 2019-02-28 09:49:31 +0100 | [diff] [blame] | 1019 | // If a request is pending, blocks until the |network_report_event_| is |
| 1020 | // signaled and then delivers the result. Otherwise this is a NO-OP. |
| 1021 | MergeNetworkReport_s(); |
hbos | b78306a | 2016-12-19 05:06:57 -0800 | [diff] [blame] | 1022 | } |
| 1023 | |
hbos | c82f2e1 | 2016-09-05 01:36:50 -0700 | [diff] [blame] | 1024 | void RTCStatsCollector::ProducePartialResultsOnSignalingThread( |
| 1025 | int64_t timestamp_us) { |
| 1026 | RTC_DCHECK(signaling_thread_->IsCurrent()); |
Henrik Boström | 40b030e | 2019-02-28 09:49:31 +0100 | [diff] [blame] | 1027 | partial_report_ = RTCStatsReport::Create(timestamp_us); |
hbos | c82f2e1 | 2016-09-05 01:36:50 -0700 | [diff] [blame] | 1028 | |
Henrik Boström | 40b030e | 2019-02-28 09:49:31 +0100 | [diff] [blame] | 1029 | ProducePartialResultsOnSignalingThreadImpl(timestamp_us, |
| 1030 | partial_report_.get()); |
hbos | c82f2e1 | 2016-09-05 01:36:50 -0700 | [diff] [blame] | 1031 | |
Henrik Boström | 40b030e | 2019-02-28 09:49:31 +0100 | [diff] [blame] | 1032 | // ProducePartialResultsOnSignalingThread() is running synchronously on the |
| 1033 | // signaling thread, so it is always the first partial result delivered on the |
| 1034 | // signaling thread. The request is not complete until MergeNetworkReport_s() |
| 1035 | // happens; we don't have to do anything here. |
| 1036 | RTC_DCHECK_GT(num_pending_partial_reports_, 1); |
| 1037 | --num_pending_partial_reports_; |
| 1038 | } |
| 1039 | |
| 1040 | void RTCStatsCollector::ProducePartialResultsOnSignalingThreadImpl( |
| 1041 | int64_t timestamp_us, |
| 1042 | RTCStatsReport* partial_report) { |
| 1043 | RTC_DCHECK(signaling_thread_->IsCurrent()); |
| 1044 | ProduceDataChannelStats_s(timestamp_us, partial_report); |
| 1045 | ProduceMediaStreamStats_s(timestamp_us, partial_report); |
| 1046 | ProduceMediaStreamTrackStats_s(timestamp_us, partial_report); |
Henrik Boström | 646fda0 | 2019-05-22 15:49:42 +0200 | [diff] [blame] | 1047 | ProduceMediaSourceStats_s(timestamp_us, partial_report); |
Henrik Boström | 40b030e | 2019-02-28 09:49:31 +0100 | [diff] [blame] | 1048 | ProducePeerConnectionStats_s(timestamp_us, partial_report); |
hbos | c82f2e1 | 2016-09-05 01:36:50 -0700 | [diff] [blame] | 1049 | } |
| 1050 | |
hbos | c82f2e1 | 2016-09-05 01:36:50 -0700 | [diff] [blame] | 1051 | void RTCStatsCollector::ProducePartialResultsOnNetworkThread( |
| 1052 | int64_t timestamp_us) { |
| 1053 | RTC_DCHECK(network_thread_->IsCurrent()); |
Ivo Creusen | 8d8ffdb | 2019-04-30 09:45:21 +0200 | [diff] [blame] | 1054 | // Touching |network_report_| on this thread is safe by this method because |
Henrik Boström | 40b030e | 2019-02-28 09:49:31 +0100 | [diff] [blame] | 1055 | // |network_report_event_| is reset before this method is invoked. |
| 1056 | network_report_ = RTCStatsReport::Create(timestamp_us); |
hbos | c82f2e1 | 2016-09-05 01:36:50 -0700 | [diff] [blame] | 1057 | |
Steve Anton | 5dfde18 | 2018-02-06 10:34:40 -0800 | [diff] [blame] | 1058 | std::map<std::string, cricket::TransportStats> transport_stats_by_name = |
Steve Anton | 7eca093 | 2018-03-30 15:18:41 -0700 | [diff] [blame] | 1059 | pc_->GetTransportStatsByNames(transport_names_); |
Steve Anton | 5dfde18 | 2018-02-06 10:34:40 -0800 | [diff] [blame] | 1060 | std::map<std::string, CertificateStatsPair> transport_cert_stats = |
| 1061 | PrepareTransportCertificateStats_n(transport_stats_by_name); |
| 1062 | |
Henrik Boström | 40b030e | 2019-02-28 09:49:31 +0100 | [diff] [blame] | 1063 | ProducePartialResultsOnNetworkThreadImpl( |
| 1064 | timestamp_us, transport_stats_by_name, transport_cert_stats, |
| 1065 | network_report_.get()); |
Mirko Bonadei | ca890ee | 2019-02-15 21:10:40 +0000 | [diff] [blame] | 1066 | |
Henrik Boström | 40b030e | 2019-02-28 09:49:31 +0100 | [diff] [blame] | 1067 | // Signal that it is now safe to touch |network_report_| on the signaling |
| 1068 | // thread, and post a task to merge it into the final results. |
| 1069 | network_report_event_.Set(); |
| 1070 | signaling_thread_->PostTask( |
| 1071 | RTC_FROM_HERE, rtc::Bind(&RTCStatsCollector::MergeNetworkReport_s, this)); |
Henrik Boström | 05d43c6 | 2019-02-15 10:23:08 +0100 | [diff] [blame] | 1072 | } |
| 1073 | |
Henrik Boström | 40b030e | 2019-02-28 09:49:31 +0100 | [diff] [blame] | 1074 | void RTCStatsCollector::ProducePartialResultsOnNetworkThreadImpl( |
| 1075 | int64_t timestamp_us, |
| 1076 | const std::map<std::string, cricket::TransportStats>& |
| 1077 | transport_stats_by_name, |
| 1078 | const std::map<std::string, CertificateStatsPair>& transport_cert_stats, |
| 1079 | RTCStatsReport* partial_report) { |
| 1080 | RTC_DCHECK(network_thread_->IsCurrent()); |
| 1081 | ProduceCertificateStats_n(timestamp_us, transport_cert_stats, partial_report); |
| 1082 | ProduceCodecStats_n(timestamp_us, transceiver_stats_infos_, partial_report); |
| 1083 | ProduceIceCandidateAndPairStats_n(timestamp_us, transport_stats_by_name, |
| 1084 | call_stats_, partial_report); |
Henrik Boström | 40b030e | 2019-02-28 09:49:31 +0100 | [diff] [blame] | 1085 | ProduceTransportStats_n(timestamp_us, transport_stats_by_name, |
| 1086 | transport_cert_stats, partial_report); |
Henrik Boström | 883eefc | 2019-05-27 13:40:25 +0200 | [diff] [blame] | 1087 | ProduceRTPStreamStats_n(timestamp_us, transceiver_stats_infos_, |
| 1088 | partial_report); |
Henrik Boström | 40b030e | 2019-02-28 09:49:31 +0100 | [diff] [blame] | 1089 | } |
| 1090 | |
| 1091 | void RTCStatsCollector::MergeNetworkReport_s() { |
| 1092 | RTC_DCHECK(signaling_thread_->IsCurrent()); |
| 1093 | // The |network_report_event_| must be signaled for it to be safe to touch |
| 1094 | // |network_report_|. This is normally not blocking, but if |
| 1095 | // WaitForPendingRequest() is called while a request is pending, we might have |
| 1096 | // to wait until the network thread is done touching |network_report_|. |
| 1097 | network_report_event_.Wait(rtc::Event::kForever); |
| 1098 | if (!network_report_) { |
| 1099 | // Normally, MergeNetworkReport_s() is executed because it is posted from |
| 1100 | // the network thread. But if WaitForPendingRequest() is called while a |
| 1101 | // request is pending, an early call to MergeNetworkReport_s() is made, |
| 1102 | // merging the report and setting |network_report_| to null. If so, when the |
| 1103 | // previously posted MergeNetworkReport_s() is later executed, the report is |
| 1104 | // already null and nothing needs to be done here. |
hbos | c82f2e1 | 2016-09-05 01:36:50 -0700 | [diff] [blame] | 1105 | return; |
| 1106 | } |
Mirko Bonadei | ca890ee | 2019-02-15 21:10:40 +0000 | [diff] [blame] | 1107 | RTC_DCHECK_GT(num_pending_partial_reports_, 0); |
Henrik Boström | 40b030e | 2019-02-28 09:49:31 +0100 | [diff] [blame] | 1108 | RTC_DCHECK(partial_report_); |
| 1109 | partial_report_->TakeMembersFrom(network_report_); |
| 1110 | network_report_ = nullptr; |
Mirko Bonadei | ca890ee | 2019-02-15 21:10:40 +0000 | [diff] [blame] | 1111 | --num_pending_partial_reports_; |
Henrik Boström | 40b030e | 2019-02-28 09:49:31 +0100 | [diff] [blame] | 1112 | // |network_report_| is currently the only partial report collected |
| 1113 | // asynchronously, so |num_pending_partial_reports_| must now be 0 and we are |
| 1114 | // ready to deliver the result. |
| 1115 | RTC_DCHECK_EQ(num_pending_partial_reports_, 0); |
| 1116 | cache_timestamp_us_ = partial_report_timestamp_us_; |
| 1117 | cached_report_ = partial_report_; |
| 1118 | partial_report_ = nullptr; |
| 1119 | transceiver_stats_infos_.clear(); |
| 1120 | // Trace WebRTC Stats when getStats is called on Javascript. |
| 1121 | // This allows access to WebRTC stats from trace logs. To enable them, |
| 1122 | // select the "webrtc_stats" category when recording traces. |
| 1123 | TRACE_EVENT_INSTANT1("webrtc_stats", "webrtc_stats", "report", |
| 1124 | cached_report_->ToJson()); |
Mirko Bonadei | ca890ee | 2019-02-15 21:10:40 +0000 | [diff] [blame] | 1125 | |
Henrik Boström | 40b030e | 2019-02-28 09:49:31 +0100 | [diff] [blame] | 1126 | // Deliver report and clear |requests_|. |
| 1127 | std::vector<RequestInfo> requests; |
| 1128 | requests.swap(requests_); |
| 1129 | DeliverCachedReport(cached_report_, std::move(requests)); |
hbos | c82f2e1 | 2016-09-05 01:36:50 -0700 | [diff] [blame] | 1130 | } |
| 1131 | |
Taylor Brandstetter | 25e022f | 2018-03-08 09:53:47 -0800 | [diff] [blame] | 1132 | void RTCStatsCollector::DeliverCachedReport( |
| 1133 | rtc::scoped_refptr<const RTCStatsReport> cached_report, |
Henrik Boström | 5b3541f | 2018-03-19 13:52:56 +0100 | [diff] [blame] | 1134 | std::vector<RTCStatsCollector::RequestInfo> requests) { |
hbos | c82f2e1 | 2016-09-05 01:36:50 -0700 | [diff] [blame] | 1135 | RTC_DCHECK(signaling_thread_->IsCurrent()); |
Henrik Boström | 5b3541f | 2018-03-19 13:52:56 +0100 | [diff] [blame] | 1136 | RTC_DCHECK(!requests.empty()); |
Taylor Brandstetter | 25e022f | 2018-03-08 09:53:47 -0800 | [diff] [blame] | 1137 | RTC_DCHECK(cached_report); |
Taylor Brandstetter | 87d5a74 | 2018-03-06 09:42:25 -0800 | [diff] [blame] | 1138 | |
Henrik Boström | 5b3541f | 2018-03-19 13:52:56 +0100 | [diff] [blame] | 1139 | for (const RequestInfo& request : requests) { |
| 1140 | if (request.filter_mode() == RequestInfo::FilterMode::kAll) { |
| 1141 | request.callback()->OnStatsDelivered(cached_report); |
| 1142 | } else { |
| 1143 | bool filter_by_sender_selector; |
| 1144 | rtc::scoped_refptr<RtpSenderInternal> sender_selector; |
| 1145 | rtc::scoped_refptr<RtpReceiverInternal> receiver_selector; |
| 1146 | if (request.filter_mode() == RequestInfo::FilterMode::kSenderSelector) { |
| 1147 | filter_by_sender_selector = true; |
| 1148 | sender_selector = request.sender_selector(); |
| 1149 | } else { |
| 1150 | RTC_DCHECK(request.filter_mode() == |
| 1151 | RequestInfo::FilterMode::kReceiverSelector); |
| 1152 | filter_by_sender_selector = false; |
| 1153 | receiver_selector = request.receiver_selector(); |
| 1154 | } |
| 1155 | request.callback()->OnStatsDelivered(CreateReportFilteredBySelector( |
| 1156 | filter_by_sender_selector, cached_report, sender_selector, |
| 1157 | receiver_selector)); |
| 1158 | } |
hbos | c82f2e1 | 2016-09-05 01:36:50 -0700 | [diff] [blame] | 1159 | } |
hbos | d565b73 | 2016-08-30 14:04:35 -0700 | [diff] [blame] | 1160 | } |
| 1161 | |
hbos | df6075a | 2016-12-19 04:58:02 -0800 | [diff] [blame] | 1162 | void RTCStatsCollector::ProduceCertificateStats_n( |
hbos | 2fa7c67 | 2016-10-24 04:00:05 -0700 | [diff] [blame] | 1163 | int64_t timestamp_us, |
| 1164 | const std::map<std::string, CertificateStatsPair>& transport_cert_stats, |
hbos | 6ab97ce | 2016-10-03 14:16:56 -0700 | [diff] [blame] | 1165 | RTCStatsReport* report) const { |
hbos | df6075a | 2016-12-19 04:58:02 -0800 | [diff] [blame] | 1166 | RTC_DCHECK(network_thread_->IsCurrent()); |
hbos | 02ba211 | 2016-10-28 05:14:53 -0700 | [diff] [blame] | 1167 | for (const auto& transport_cert_stats_pair : transport_cert_stats) { |
| 1168 | if (transport_cert_stats_pair.second.local) { |
| 1169 | ProduceCertificateStatsFromSSLCertificateStats( |
| 1170 | timestamp_us, *transport_cert_stats_pair.second.local.get(), report); |
hbos | 6ab97ce | 2016-10-03 14:16:56 -0700 | [diff] [blame] | 1171 | } |
hbos | 02ba211 | 2016-10-28 05:14:53 -0700 | [diff] [blame] | 1172 | if (transport_cert_stats_pair.second.remote) { |
| 1173 | ProduceCertificateStatsFromSSLCertificateStats( |
| 1174 | timestamp_us, *transport_cert_stats_pair.second.remote.get(), report); |
hbos | 6ab97ce | 2016-10-03 14:16:56 -0700 | [diff] [blame] | 1175 | } |
| 1176 | } |
| 1177 | } |
| 1178 | |
hbos | df6075a | 2016-12-19 04:58:02 -0800 | [diff] [blame] | 1179 | void RTCStatsCollector::ProduceCodecStats_n( |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 1180 | int64_t timestamp_us, |
| 1181 | const std::vector<RtpTransceiverStatsInfo>& transceiver_stats_infos, |
hbos | 0adb828 | 2016-11-23 02:32:06 -0800 | [diff] [blame] | 1182 | RTCStatsReport* report) const { |
hbos | df6075a | 2016-12-19 04:58:02 -0800 | [diff] [blame] | 1183 | RTC_DCHECK(network_thread_->IsCurrent()); |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 1184 | for (const auto& stats : transceiver_stats_infos) { |
| 1185 | if (!stats.mid) { |
| 1186 | continue; |
hbos | 0adb828 | 2016-11-23 02:32:06 -0800 | [diff] [blame] | 1187 | } |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 1188 | const cricket::VoiceMediaInfo* voice_media_info = |
| 1189 | stats.track_media_info_map->voice_media_info(); |
| 1190 | const cricket::VideoMediaInfo* video_media_info = |
| 1191 | stats.track_media_info_map->video_media_info(); |
| 1192 | // Audio |
| 1193 | if (voice_media_info) { |
| 1194 | // Inbound |
| 1195 | for (const auto& pair : voice_media_info->receive_codecs) { |
| 1196 | report->AddStats(CodecStatsFromRtpCodecParameters( |
| 1197 | timestamp_us, *stats.mid, true, pair.second)); |
| 1198 | } |
| 1199 | // Outbound |
| 1200 | for (const auto& pair : voice_media_info->send_codecs) { |
| 1201 | report->AddStats(CodecStatsFromRtpCodecParameters( |
| 1202 | timestamp_us, *stats.mid, false, pair.second)); |
| 1203 | } |
Guido Urdaneta | ee2388f | 2018-02-15 16:36:19 +0000 | [diff] [blame] | 1204 | } |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 1205 | // Video |
| 1206 | if (video_media_info) { |
| 1207 | // Inbound |
| 1208 | for (const auto& pair : video_media_info->receive_codecs) { |
| 1209 | report->AddStats(CodecStatsFromRtpCodecParameters( |
| 1210 | timestamp_us, *stats.mid, true, pair.second)); |
| 1211 | } |
| 1212 | // Outbound |
| 1213 | for (const auto& pair : video_media_info->send_codecs) { |
| 1214 | report->AddStats(CodecStatsFromRtpCodecParameters( |
| 1215 | timestamp_us, *stats.mid, false, pair.second)); |
| 1216 | } |
hbos | 0adb828 | 2016-11-23 02:32:06 -0800 | [diff] [blame] | 1217 | } |
| 1218 | } |
| 1219 | } |
| 1220 | |
hbos | cc555c5 | 2016-10-18 12:48:31 -0700 | [diff] [blame] | 1221 | void RTCStatsCollector::ProduceDataChannelStats_s( |
| 1222 | int64_t timestamp_us, RTCStatsReport* report) const { |
| 1223 | RTC_DCHECK(signaling_thread_->IsCurrent()); |
| 1224 | for (const rtc::scoped_refptr<DataChannel>& data_channel : |
| 1225 | pc_->sctp_data_channels()) { |
| 1226 | std::unique_ptr<RTCDataChannelStats> data_channel_stats( |
| 1227 | new RTCDataChannelStats( |
Jonas Olsson | 6b1985d | 2018-07-05 11:59:48 +0200 | [diff] [blame] | 1228 | "RTCDataChannel_" + rtc::ToString(data_channel->id()), |
hbos | cc555c5 | 2016-10-18 12:48:31 -0700 | [diff] [blame] | 1229 | timestamp_us)); |
| 1230 | data_channel_stats->label = data_channel->label(); |
| 1231 | data_channel_stats->protocol = data_channel->protocol(); |
| 1232 | data_channel_stats->datachannelid = data_channel->id(); |
| 1233 | data_channel_stats->state = |
| 1234 | DataStateToRTCDataChannelState(data_channel->state()); |
| 1235 | data_channel_stats->messages_sent = data_channel->messages_sent(); |
| 1236 | data_channel_stats->bytes_sent = data_channel->bytes_sent(); |
| 1237 | data_channel_stats->messages_received = data_channel->messages_received(); |
| 1238 | data_channel_stats->bytes_received = data_channel->bytes_received(); |
| 1239 | report->AddStats(std::move(data_channel_stats)); |
| 1240 | } |
| 1241 | } |
| 1242 | |
hbos | df6075a | 2016-12-19 04:58:02 -0800 | [diff] [blame] | 1243 | void RTCStatsCollector::ProduceIceCandidateAndPairStats_n( |
stefan | f79ade1 | 2017-06-02 06:44:03 -0700 | [diff] [blame] | 1244 | int64_t timestamp_us, |
Steve Anton | 5dfde18 | 2018-02-06 10:34:40 -0800 | [diff] [blame] | 1245 | const std::map<std::string, cricket::TransportStats>& |
| 1246 | transport_stats_by_name, |
stefan | f79ade1 | 2017-06-02 06:44:03 -0700 | [diff] [blame] | 1247 | const Call::Stats& call_stats, |
| 1248 | RTCStatsReport* report) const { |
hbos | df6075a | 2016-12-19 04:58:02 -0800 | [diff] [blame] | 1249 | RTC_DCHECK(network_thread_->IsCurrent()); |
Steve Anton | 5dfde18 | 2018-02-06 10:34:40 -0800 | [diff] [blame] | 1250 | for (const auto& entry : transport_stats_by_name) { |
| 1251 | const std::string& transport_name = entry.first; |
| 1252 | const cricket::TransportStats& transport_stats = entry.second; |
| 1253 | for (const auto& channel_stats : transport_stats.channel_stats) { |
hbos | 0583b28 | 2016-11-30 01:50:14 -0800 | [diff] [blame] | 1254 | std::string transport_id = RTCTransportStatsIDFromTransportChannel( |
Steve Anton | 5dfde18 | 2018-02-06 10:34:40 -0800 | [diff] [blame] | 1255 | transport_name, channel_stats.component); |
hbos | c47a0c3 | 2016-10-11 14:54:49 -0700 | [diff] [blame] | 1256 | for (const cricket::ConnectionInfo& info : |
| 1257 | channel_stats.connection_infos) { |
hbos | c47a0c3 | 2016-10-11 14:54:49 -0700 | [diff] [blame] | 1258 | std::unique_ptr<RTCIceCandidatePairStats> candidate_pair_stats( |
hbos | 2fa7c67 | 2016-10-24 04:00:05 -0700 | [diff] [blame] | 1259 | new RTCIceCandidatePairStats( |
| 1260 | RTCIceCandidatePairStatsIDFromConnectionInfo(info), |
| 1261 | timestamp_us)); |
hbos | c47a0c3 | 2016-10-11 14:54:49 -0700 | [diff] [blame] | 1262 | |
hbos | 0583b28 | 2016-11-30 01:50:14 -0800 | [diff] [blame] | 1263 | candidate_pair_stats->transport_id = transport_id; |
hbos | ab9f6e4 | 2016-10-07 02:18:47 -0700 | [diff] [blame] | 1264 | // TODO(hbos): There could be other candidates that are not paired with |
| 1265 | // anything. We don't have a complete list. Local candidates come from |
| 1266 | // Port objects, and prflx candidates (both local and remote) are only |
Harald Alvestrand | 8906187 | 2018-01-02 14:08:34 +0100 | [diff] [blame] | 1267 | // stored in candidate pairs. https://crbug.com/632723 |
hbos | 02ba211 | 2016-10-28 05:14:53 -0700 | [diff] [blame] | 1268 | candidate_pair_stats->local_candidate_id = ProduceIceCandidateStats( |
hbos | b4e426e | 2017-01-02 09:59:31 -0800 | [diff] [blame] | 1269 | timestamp_us, info.local_candidate, true, transport_id, report); |
hbos | 02ba211 | 2016-10-28 05:14:53 -0700 | [diff] [blame] | 1270 | candidate_pair_stats->remote_candidate_id = ProduceIceCandidateStats( |
hbos | b4e426e | 2017-01-02 09:59:31 -0800 | [diff] [blame] | 1271 | timestamp_us, info.remote_candidate, false, transport_id, report); |
hbos | 06495bc | 2017-01-02 08:08:18 -0800 | [diff] [blame] | 1272 | candidate_pair_stats->state = |
| 1273 | IceCandidatePairStateToRTCStatsIceCandidatePairState(info.state); |
| 1274 | candidate_pair_stats->priority = info.priority; |
hbos | 92eaec6 | 2017-02-27 01:38:08 -0800 | [diff] [blame] | 1275 | candidate_pair_stats->nominated = info.nominated; |
hbos | c47a0c3 | 2016-10-11 14:54:49 -0700 | [diff] [blame] | 1276 | // TODO(hbos): This writable is different than the spec. It goes to |
| 1277 | // false after a certain amount of time without a response passes. |
Harald Alvestrand | 8906187 | 2018-01-02 14:08:34 +0100 | [diff] [blame] | 1278 | // https://crbug.com/633550 |
hbos | c47a0c3 | 2016-10-11 14:54:49 -0700 | [diff] [blame] | 1279 | candidate_pair_stats->writable = info.writable; |
hbos | c47a0c3 | 2016-10-11 14:54:49 -0700 | [diff] [blame] | 1280 | candidate_pair_stats->bytes_sent = |
| 1281 | static_cast<uint64_t>(info.sent_total_bytes); |
| 1282 | candidate_pair_stats->bytes_received = |
| 1283 | static_cast<uint64_t>(info.recv_total_bytes); |
hbos | bf8d3e5 | 2017-02-28 06:34:47 -0800 | [diff] [blame] | 1284 | candidate_pair_stats->total_round_trip_time = |
| 1285 | static_cast<double>(info.total_round_trip_time_ms) / |
| 1286 | rtc::kNumMillisecsPerSec; |
| 1287 | if (info.current_round_trip_time_ms) { |
| 1288 | candidate_pair_stats->current_round_trip_time = |
| 1289 | static_cast<double>(*info.current_round_trip_time_ms) / |
| 1290 | rtc::kNumMillisecsPerSec; |
| 1291 | } |
stefan | f79ade1 | 2017-06-02 06:44:03 -0700 | [diff] [blame] | 1292 | if (info.best_connection) { |
hbos | 338f78a | 2017-02-07 06:41:21 -0800 | [diff] [blame] | 1293 | // The bandwidth estimations we have are for the selected candidate |
| 1294 | // pair ("info.best_connection"). |
stefan | f79ade1 | 2017-06-02 06:44:03 -0700 | [diff] [blame] | 1295 | RTC_DCHECK_GE(call_stats.send_bandwidth_bps, 0); |
| 1296 | RTC_DCHECK_GE(call_stats.recv_bandwidth_bps, 0); |
| 1297 | if (call_stats.send_bandwidth_bps > 0) { |
hbos | 338f78a | 2017-02-07 06:41:21 -0800 | [diff] [blame] | 1298 | candidate_pair_stats->available_outgoing_bitrate = |
stefan | f79ade1 | 2017-06-02 06:44:03 -0700 | [diff] [blame] | 1299 | static_cast<double>(call_stats.send_bandwidth_bps); |
hbos | 338f78a | 2017-02-07 06:41:21 -0800 | [diff] [blame] | 1300 | } |
stefan | f79ade1 | 2017-06-02 06:44:03 -0700 | [diff] [blame] | 1301 | if (call_stats.recv_bandwidth_bps > 0) { |
hbos | 338f78a | 2017-02-07 06:41:21 -0800 | [diff] [blame] | 1302 | candidate_pair_stats->available_incoming_bitrate = |
stefan | f79ade1 | 2017-06-02 06:44:03 -0700 | [diff] [blame] | 1303 | static_cast<double>(call_stats.recv_bandwidth_bps); |
hbos | 338f78a | 2017-02-07 06:41:21 -0800 | [diff] [blame] | 1304 | } |
| 1305 | } |
hbos | d82f512 | 2016-12-09 04:12:39 -0800 | [diff] [blame] | 1306 | candidate_pair_stats->requests_received = |
| 1307 | static_cast<uint64_t>(info.recv_ping_requests); |
hbos | e448dd5 | 2016-12-12 01:22:53 -0800 | [diff] [blame] | 1308 | candidate_pair_stats->requests_sent = static_cast<uint64_t>( |
| 1309 | info.sent_ping_requests_before_first_response); |
hbos | c47a0c3 | 2016-10-11 14:54:49 -0700 | [diff] [blame] | 1310 | candidate_pair_stats->responses_received = |
| 1311 | static_cast<uint64_t>(info.recv_ping_responses); |
| 1312 | candidate_pair_stats->responses_sent = |
| 1313 | static_cast<uint64_t>(info.sent_ping_responses); |
hbos | e448dd5 | 2016-12-12 01:22:53 -0800 | [diff] [blame] | 1314 | RTC_DCHECK_GE(info.sent_ping_requests_total, |
| 1315 | info.sent_ping_requests_before_first_response); |
| 1316 | candidate_pair_stats->consent_requests_sent = static_cast<uint64_t>( |
| 1317 | info.sent_ping_requests_total - |
| 1318 | info.sent_ping_requests_before_first_response); |
hbos | c47a0c3 | 2016-10-11 14:54:49 -0700 | [diff] [blame] | 1319 | |
| 1320 | report->AddStats(std::move(candidate_pair_stats)); |
hbos | ab9f6e4 | 2016-10-07 02:18:47 -0700 | [diff] [blame] | 1321 | } |
| 1322 | } |
| 1323 | } |
| 1324 | } |
| 1325 | |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 1326 | void RTCStatsCollector::ProduceMediaStreamStats_s( |
| 1327 | int64_t timestamp_us, |
| 1328 | RTCStatsReport* report) const { |
hbos | 09bc128 | 2016-11-08 06:29:22 -0800 | [diff] [blame] | 1329 | RTC_DCHECK(signaling_thread_->IsCurrent()); |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 1330 | |
| 1331 | std::map<std::string, std::vector<std::string>> track_ids; |
| 1332 | |
| 1333 | for (const auto& stats : transceiver_stats_infos_) { |
Mirko Bonadei | 739baf0 | 2019-01-27 17:29:42 +0100 | [diff] [blame] | 1334 | for (const auto& sender : stats.transceiver->senders()) { |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 1335 | std::string track_id = |
| 1336 | RTCMediaStreamTrackStatsIDFromDirectionAndAttachment( |
| 1337 | kSender, sender->internal()->AttachmentId()); |
| 1338 | for (auto& stream_id : sender->stream_ids()) { |
| 1339 | track_ids[stream_id].push_back(track_id); |
| 1340 | } |
| 1341 | } |
Mirko Bonadei | 739baf0 | 2019-01-27 17:29:42 +0100 | [diff] [blame] | 1342 | for (const auto& receiver : stats.transceiver->receivers()) { |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 1343 | std::string track_id = |
| 1344 | RTCMediaStreamTrackStatsIDFromDirectionAndAttachment( |
| 1345 | kReceiver, receiver->internal()->AttachmentId()); |
| 1346 | for (auto& stream : receiver->streams()) { |
Seth Hampson | 13b8bad | 2018-03-13 16:05:28 -0700 | [diff] [blame] | 1347 | track_ids[stream->id()].push_back(track_id); |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 1348 | } |
| 1349 | } |
| 1350 | } |
| 1351 | |
| 1352 | // Build stats for each stream ID known. |
| 1353 | for (auto& it : track_ids) { |
| 1354 | std::unique_ptr<RTCMediaStreamStats> stream_stats( |
| 1355 | new RTCMediaStreamStats("RTCMediaStream_" + it.first, timestamp_us)); |
| 1356 | stream_stats->stream_identifier = it.first; |
| 1357 | stream_stats->track_ids = it.second; |
| 1358 | report->AddStats(std::move(stream_stats)); |
| 1359 | } |
| 1360 | } |
| 1361 | |
| 1362 | void RTCStatsCollector::ProduceMediaStreamTrackStats_s( |
| 1363 | int64_t timestamp_us, |
| 1364 | RTCStatsReport* report) const { |
| 1365 | RTC_DCHECK(signaling_thread_->IsCurrent()); |
| 1366 | for (const RtpTransceiverStatsInfo& stats : transceiver_stats_infos_) { |
| 1367 | std::vector<rtc::scoped_refptr<RtpSenderInternal>> senders; |
Mirko Bonadei | 739baf0 | 2019-01-27 17:29:42 +0100 | [diff] [blame] | 1368 | for (const auto& sender : stats.transceiver->senders()) { |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 1369 | senders.push_back(sender->internal()); |
| 1370 | } |
| 1371 | ProduceSenderMediaTrackStats(timestamp_us, *stats.track_media_info_map, |
| 1372 | senders, report); |
| 1373 | |
| 1374 | std::vector<rtc::scoped_refptr<RtpReceiverInternal>> receivers; |
Mirko Bonadei | 739baf0 | 2019-01-27 17:29:42 +0100 | [diff] [blame] | 1375 | for (const auto& receiver : stats.transceiver->receivers()) { |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 1376 | receivers.push_back(receiver->internal()); |
| 1377 | } |
| 1378 | ProduceReceiverMediaTrackStats(timestamp_us, *stats.track_media_info_map, |
| 1379 | receivers, report); |
| 1380 | } |
hbos | 09bc128 | 2016-11-08 06:29:22 -0800 | [diff] [blame] | 1381 | } |
| 1382 | |
Henrik Boström | 646fda0 | 2019-05-22 15:49:42 +0200 | [diff] [blame] | 1383 | void RTCStatsCollector::ProduceMediaSourceStats_s( |
| 1384 | int64_t timestamp_us, |
| 1385 | RTCStatsReport* report) const { |
| 1386 | RTC_DCHECK(signaling_thread_->IsCurrent()); |
| 1387 | for (const RtpTransceiverStatsInfo& transceiver_stats_info : |
| 1388 | transceiver_stats_infos_) { |
| 1389 | const auto& track_media_info_map = |
| 1390 | transceiver_stats_info.track_media_info_map; |
| 1391 | for (const auto& sender : transceiver_stats_info.transceiver->senders()) { |
| 1392 | const auto& sender_internal = sender->internal(); |
| 1393 | const auto& track = sender_internal->track(); |
| 1394 | if (!track) |
| 1395 | continue; |
| 1396 | // TODO(hbos): The same track could be attached to multiple senders which |
| 1397 | // should result in multiple senders referencing the same media source |
| 1398 | // stats. When all media source related metrics are moved to the track's |
| 1399 | // source (e.g. input frame rate is moved from cricket::VideoSenderInfo to |
| 1400 | // VideoTrackSourceInterface::Stats), don't create separate media source |
| 1401 | // stats objects on a per-attachment basis. |
| 1402 | std::unique_ptr<RTCMediaSourceStats> media_source_stats; |
| 1403 | if (track->kind() == MediaStreamTrackInterface::kAudioKind) { |
| 1404 | media_source_stats = absl::make_unique<RTCAudioSourceStats>( |
| 1405 | RTCMediaSourceStatsIDFromKindAndAttachment( |
| 1406 | cricket::MEDIA_TYPE_AUDIO, sender_internal->AttachmentId()), |
| 1407 | timestamp_us); |
| 1408 | } else { |
| 1409 | RTC_DCHECK_EQ(MediaStreamTrackInterface::kVideoKind, track->kind()); |
| 1410 | auto video_source_stats = absl::make_unique<RTCVideoSourceStats>( |
| 1411 | RTCMediaSourceStatsIDFromKindAndAttachment( |
| 1412 | cricket::MEDIA_TYPE_VIDEO, sender_internal->AttachmentId()), |
| 1413 | timestamp_us); |
| 1414 | auto* video_track = static_cast<VideoTrackInterface*>(track.get()); |
| 1415 | auto* video_source = video_track->GetSource(); |
| 1416 | VideoTrackSourceInterface::Stats source_stats; |
| 1417 | if (video_source && video_source->GetStats(&source_stats)) { |
| 1418 | video_source_stats->width = source_stats.input_width; |
| 1419 | video_source_stats->height = source_stats.input_height; |
| 1420 | } |
| 1421 | // TODO(hbos): Source stats should not depend on whether or not we are |
| 1422 | // connected/have an SSRC assigned. Related to |
| 1423 | // https://crbug.com/webrtc/8694 (using ssrc 0 to indicate "none"). |
| 1424 | if (sender_internal->ssrc() != 0) { |
| 1425 | auto* sender_info = track_media_info_map->GetVideoSenderInfoBySsrc( |
| 1426 | sender_internal->ssrc()); |
| 1427 | if (sender_info) { |
| 1428 | video_source_stats->frames_per_second = |
| 1429 | sender_info->framerate_input; |
| 1430 | } |
| 1431 | } |
| 1432 | media_source_stats = std::move(video_source_stats); |
| 1433 | } |
| 1434 | media_source_stats->track_identifier = track->id(); |
| 1435 | media_source_stats->kind = track->kind(); |
| 1436 | report->AddStats(std::move(media_source_stats)); |
| 1437 | } |
| 1438 | } |
| 1439 | } |
| 1440 | |
hbos | 6ab97ce | 2016-10-03 14:16:56 -0700 | [diff] [blame] | 1441 | void RTCStatsCollector::ProducePeerConnectionStats_s( |
| 1442 | int64_t timestamp_us, RTCStatsReport* report) const { |
hbos | c82f2e1 | 2016-09-05 01:36:50 -0700 | [diff] [blame] | 1443 | RTC_DCHECK(signaling_thread_->IsCurrent()); |
hbos | d565b73 | 2016-08-30 14:04:35 -0700 | [diff] [blame] | 1444 | std::unique_ptr<RTCPeerConnectionStats> stats( |
hbos | 0e6758d | 2016-08-31 07:57:36 -0700 | [diff] [blame] | 1445 | new RTCPeerConnectionStats("RTCPeerConnection", timestamp_us)); |
hbos | 82ebe02 | 2016-11-14 01:41:09 -0800 | [diff] [blame] | 1446 | stats->data_channels_opened = internal_record_.data_channels_opened; |
| 1447 | stats->data_channels_closed = internal_record_.data_channels_closed; |
hbos | 6ab97ce | 2016-10-03 14:16:56 -0700 | [diff] [blame] | 1448 | report->AddStats(std::move(stats)); |
hbos | d565b73 | 2016-08-30 14:04:35 -0700 | [diff] [blame] | 1449 | } |
| 1450 | |
hbos | df6075a | 2016-12-19 04:58:02 -0800 | [diff] [blame] | 1451 | void RTCStatsCollector::ProduceRTPStreamStats_n( |
Steve Anton | 593e325 | 2017-12-15 11:44:48 -0800 | [diff] [blame] | 1452 | int64_t timestamp_us, |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 1453 | const std::vector<RtpTransceiverStatsInfo>& transceiver_stats_infos, |
hbos | 84abeb1 | 2017-01-16 06:16:44 -0800 | [diff] [blame] | 1454 | RTCStatsReport* report) const { |
hbos | df6075a | 2016-12-19 04:58:02 -0800 | [diff] [blame] | 1455 | RTC_DCHECK(network_thread_->IsCurrent()); |
hbos | 6ded190 | 2016-11-01 01:50:46 -0700 | [diff] [blame] | 1456 | |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 1457 | for (const RtpTransceiverStatsInfo& stats : transceiver_stats_infos) { |
| 1458 | if (stats.media_type == cricket::MEDIA_TYPE_AUDIO) { |
| 1459 | ProduceAudioRTPStreamStats_n(timestamp_us, stats, report); |
| 1460 | } else if (stats.media_type == cricket::MEDIA_TYPE_VIDEO) { |
| 1461 | ProduceVideoRTPStreamStats_n(timestamp_us, stats, report); |
| 1462 | } else { |
| 1463 | RTC_NOTREACHED(); |
Guido Urdaneta | ee2388f | 2018-02-15 16:36:19 +0000 | [diff] [blame] | 1464 | } |
Steve Anton | 56bae8d | 2018-02-14 16:07:42 -0800 | [diff] [blame] | 1465 | } |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 1466 | } |
| 1467 | |
| 1468 | void RTCStatsCollector::ProduceAudioRTPStreamStats_n( |
| 1469 | int64_t timestamp_us, |
| 1470 | const RtpTransceiverStatsInfo& stats, |
| 1471 | RTCStatsReport* report) const { |
| 1472 | if (!stats.mid || !stats.transport_name) { |
| 1473 | return; |
| 1474 | } |
| 1475 | RTC_DCHECK(stats.track_media_info_map); |
| 1476 | const TrackMediaInfoMap& track_media_info_map = *stats.track_media_info_map; |
| 1477 | RTC_DCHECK(track_media_info_map.voice_media_info()); |
| 1478 | std::string mid = *stats.mid; |
| 1479 | std::string transport_id = RTCTransportStatsIDFromTransportChannel( |
| 1480 | *stats.transport_name, cricket::ICE_CANDIDATE_COMPONENT_RTP); |
| 1481 | // Inbound |
| 1482 | for (const cricket::VoiceReceiverInfo& voice_receiver_info : |
| 1483 | track_media_info_map.voice_media_info()->receivers) { |
| 1484 | if (!voice_receiver_info.connected()) |
| 1485 | continue; |
Karl Wiberg | 918f50c | 2018-07-05 11:40:33 +0200 | [diff] [blame] | 1486 | auto inbound_audio = absl::make_unique<RTCInboundRTPStreamStats>( |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 1487 | RTCInboundRTPStreamStatsIDFromSSRC(true, voice_receiver_info.ssrc()), |
| 1488 | timestamp_us); |
| 1489 | SetInboundRTPStreamStatsFromVoiceReceiverInfo(mid, voice_receiver_info, |
| 1490 | inbound_audio.get()); |
| 1491 | // TODO(hta): This lookup should look for the sender, not the track. |
| 1492 | rtc::scoped_refptr<AudioTrackInterface> audio_track = |
| 1493 | track_media_info_map.GetAudioTrack(voice_receiver_info); |
| 1494 | if (audio_track) { |
| 1495 | inbound_audio->track_id = |
| 1496 | RTCMediaStreamTrackStatsIDFromDirectionAndAttachment( |
| 1497 | kReceiver, |
| 1498 | track_media_info_map.GetAttachmentIdByTrack(audio_track).value()); |
hbos | 6ded190 | 2016-11-01 01:50:46 -0700 | [diff] [blame] | 1499 | } |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 1500 | inbound_audio->transport_id = transport_id; |
| 1501 | report->AddStats(std::move(inbound_audio)); |
| 1502 | } |
| 1503 | // Outbound |
| 1504 | for (const cricket::VoiceSenderInfo& voice_sender_info : |
| 1505 | track_media_info_map.voice_media_info()->senders) { |
| 1506 | if (!voice_sender_info.connected()) |
| 1507 | continue; |
Karl Wiberg | 918f50c | 2018-07-05 11:40:33 +0200 | [diff] [blame] | 1508 | auto outbound_audio = absl::make_unique<RTCOutboundRTPStreamStats>( |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 1509 | RTCOutboundRTPStreamStatsIDFromSSRC(true, voice_sender_info.ssrc()), |
| 1510 | timestamp_us); |
| 1511 | SetOutboundRTPStreamStatsFromVoiceSenderInfo(mid, voice_sender_info, |
| 1512 | outbound_audio.get()); |
| 1513 | rtc::scoped_refptr<AudioTrackInterface> audio_track = |
| 1514 | track_media_info_map.GetAudioTrack(voice_sender_info); |
| 1515 | if (audio_track) { |
Henrik Boström | 646fda0 | 2019-05-22 15:49:42 +0200 | [diff] [blame] | 1516 | int attachment_id = |
| 1517 | track_media_info_map.GetAttachmentIdByTrack(audio_track).value(); |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 1518 | outbound_audio->track_id = |
Henrik Boström | 646fda0 | 2019-05-22 15:49:42 +0200 | [diff] [blame] | 1519 | RTCMediaStreamTrackStatsIDFromDirectionAndAttachment(kSender, |
| 1520 | attachment_id); |
| 1521 | outbound_audio->media_source_id = |
| 1522 | RTCMediaSourceStatsIDFromKindAndAttachment(cricket::MEDIA_TYPE_AUDIO, |
| 1523 | attachment_id); |
Steve Anton | 56bae8d | 2018-02-14 16:07:42 -0800 | [diff] [blame] | 1524 | } |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 1525 | outbound_audio->transport_id = transport_id; |
| 1526 | report->AddStats(std::move(outbound_audio)); |
| 1527 | } |
Henrik Boström | 883eefc | 2019-05-27 13:40:25 +0200 | [diff] [blame] | 1528 | // Remote-inbound |
| 1529 | // These are Report Block-based, information sent from the remote endpoint, |
| 1530 | // providing metrics about our Outbound streams. We take advantage of the fact |
| 1531 | // that RTCOutboundRtpStreamStats, RTCCodecStats and RTCTransport have already |
| 1532 | // been added to the report. |
| 1533 | for (const cricket::VoiceSenderInfo& voice_sender_info : |
| 1534 | track_media_info_map.voice_media_info()->senders) { |
| 1535 | for (const auto& report_block_data : voice_sender_info.report_block_datas) { |
| 1536 | report->AddStats(ProduceRemoteInboundRtpStreamStatsFromReportBlockData( |
| 1537 | report_block_data, cricket::MEDIA_TYPE_AUDIO, *report)); |
| 1538 | } |
| 1539 | } |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 1540 | } |
| 1541 | |
| 1542 | void RTCStatsCollector::ProduceVideoRTPStreamStats_n( |
| 1543 | int64_t timestamp_us, |
| 1544 | const RtpTransceiverStatsInfo& stats, |
| 1545 | RTCStatsReport* report) const { |
| 1546 | if (!stats.mid || !stats.transport_name) { |
| 1547 | return; |
| 1548 | } |
| 1549 | RTC_DCHECK(stats.track_media_info_map); |
| 1550 | const TrackMediaInfoMap& track_media_info_map = *stats.track_media_info_map; |
| 1551 | RTC_DCHECK(track_media_info_map.video_media_info()); |
| 1552 | std::string mid = *stats.mid; |
| 1553 | std::string transport_id = RTCTransportStatsIDFromTransportChannel( |
| 1554 | *stats.transport_name, cricket::ICE_CANDIDATE_COMPONENT_RTP); |
| 1555 | // Inbound |
| 1556 | for (const cricket::VideoReceiverInfo& video_receiver_info : |
| 1557 | track_media_info_map.video_media_info()->receivers) { |
| 1558 | if (!video_receiver_info.connected()) |
| 1559 | continue; |
Karl Wiberg | 918f50c | 2018-07-05 11:40:33 +0200 | [diff] [blame] | 1560 | auto inbound_video = absl::make_unique<RTCInboundRTPStreamStats>( |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 1561 | RTCInboundRTPStreamStatsIDFromSSRC(false, video_receiver_info.ssrc()), |
| 1562 | timestamp_us); |
| 1563 | SetInboundRTPStreamStatsFromVideoReceiverInfo(mid, video_receiver_info, |
| 1564 | inbound_video.get()); |
| 1565 | rtc::scoped_refptr<VideoTrackInterface> video_track = |
| 1566 | track_media_info_map.GetVideoTrack(video_receiver_info); |
| 1567 | if (video_track) { |
| 1568 | inbound_video->track_id = |
| 1569 | RTCMediaStreamTrackStatsIDFromDirectionAndAttachment( |
| 1570 | kReceiver, |
| 1571 | track_media_info_map.GetAttachmentIdByTrack(video_track).value()); |
| 1572 | } |
| 1573 | inbound_video->transport_id = transport_id; |
| 1574 | report->AddStats(std::move(inbound_video)); |
| 1575 | } |
| 1576 | // Outbound |
| 1577 | for (const cricket::VideoSenderInfo& video_sender_info : |
| 1578 | track_media_info_map.video_media_info()->senders) { |
| 1579 | if (!video_sender_info.connected()) |
| 1580 | continue; |
Karl Wiberg | 918f50c | 2018-07-05 11:40:33 +0200 | [diff] [blame] | 1581 | auto outbound_video = absl::make_unique<RTCOutboundRTPStreamStats>( |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 1582 | RTCOutboundRTPStreamStatsIDFromSSRC(false, video_sender_info.ssrc()), |
| 1583 | timestamp_us); |
| 1584 | SetOutboundRTPStreamStatsFromVideoSenderInfo(mid, video_sender_info, |
| 1585 | outbound_video.get()); |
| 1586 | rtc::scoped_refptr<VideoTrackInterface> video_track = |
| 1587 | track_media_info_map.GetVideoTrack(video_sender_info); |
| 1588 | if (video_track) { |
Henrik Boström | 646fda0 | 2019-05-22 15:49:42 +0200 | [diff] [blame] | 1589 | int attachment_id = |
| 1590 | track_media_info_map.GetAttachmentIdByTrack(video_track).value(); |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 1591 | outbound_video->track_id = |
Henrik Boström | 646fda0 | 2019-05-22 15:49:42 +0200 | [diff] [blame] | 1592 | RTCMediaStreamTrackStatsIDFromDirectionAndAttachment(kSender, |
| 1593 | attachment_id); |
| 1594 | outbound_video->media_source_id = |
| 1595 | RTCMediaSourceStatsIDFromKindAndAttachment(cricket::MEDIA_TYPE_VIDEO, |
| 1596 | attachment_id); |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 1597 | } |
| 1598 | outbound_video->transport_id = transport_id; |
| 1599 | report->AddStats(std::move(outbound_video)); |
hbos | 6ded190 | 2016-11-01 01:50:46 -0700 | [diff] [blame] | 1600 | } |
Henrik Boström | 883eefc | 2019-05-27 13:40:25 +0200 | [diff] [blame] | 1601 | // Remote-inbound |
| 1602 | // These are Report Block-based, information sent from the remote endpoint, |
| 1603 | // providing metrics about our Outbound streams. We take advantage of the fact |
| 1604 | // that RTCOutboundRtpStreamStats, RTCCodecStats and RTCTransport have already |
| 1605 | // been added to the report. |
| 1606 | for (const cricket::VideoSenderInfo& video_sender_info : |
| 1607 | track_media_info_map.video_media_info()->senders) { |
| 1608 | for (const auto& report_block_data : video_sender_info.report_block_datas) { |
| 1609 | report->AddStats(ProduceRemoteInboundRtpStreamStatsFromReportBlockData( |
| 1610 | report_block_data, cricket::MEDIA_TYPE_VIDEO, *report)); |
| 1611 | } |
| 1612 | } |
hbos | 6ded190 | 2016-11-01 01:50:46 -0700 | [diff] [blame] | 1613 | } |
| 1614 | |
hbos | df6075a | 2016-12-19 04:58:02 -0800 | [diff] [blame] | 1615 | void RTCStatsCollector::ProduceTransportStats_n( |
Steve Anton | 5dfde18 | 2018-02-06 10:34:40 -0800 | [diff] [blame] | 1616 | int64_t timestamp_us, |
| 1617 | const std::map<std::string, cricket::TransportStats>& |
| 1618 | transport_stats_by_name, |
hbos | 2fa7c67 | 2016-10-24 04:00:05 -0700 | [diff] [blame] | 1619 | const std::map<std::string, CertificateStatsPair>& transport_cert_stats, |
| 1620 | RTCStatsReport* report) const { |
hbos | df6075a | 2016-12-19 04:58:02 -0800 | [diff] [blame] | 1621 | RTC_DCHECK(network_thread_->IsCurrent()); |
Steve Anton | 5dfde18 | 2018-02-06 10:34:40 -0800 | [diff] [blame] | 1622 | for (const auto& entry : transport_stats_by_name) { |
| 1623 | const std::string& transport_name = entry.first; |
| 1624 | const cricket::TransportStats& transport_stats = entry.second; |
| 1625 | |
hbos | 2fa7c67 | 2016-10-24 04:00:05 -0700 | [diff] [blame] | 1626 | // Get reference to RTCP channel, if it exists. |
| 1627 | std::string rtcp_transport_stats_id; |
Steve Anton | 5dfde18 | 2018-02-06 10:34:40 -0800 | [diff] [blame] | 1628 | for (const cricket::TransportChannelStats& channel_stats : |
| 1629 | transport_stats.channel_stats) { |
hbos | 2fa7c67 | 2016-10-24 04:00:05 -0700 | [diff] [blame] | 1630 | if (channel_stats.component == |
| 1631 | cricket::ICE_CANDIDATE_COMPONENT_RTCP) { |
| 1632 | rtcp_transport_stats_id = RTCTransportStatsIDFromTransportChannel( |
Steve Anton | 5dfde18 | 2018-02-06 10:34:40 -0800 | [diff] [blame] | 1633 | transport_name, channel_stats.component); |
hbos | 2fa7c67 | 2016-10-24 04:00:05 -0700 | [diff] [blame] | 1634 | break; |
| 1635 | } |
| 1636 | } |
| 1637 | |
| 1638 | // Get reference to local and remote certificates of this transport, if they |
| 1639 | // exist. |
Steve Anton | 5dfde18 | 2018-02-06 10:34:40 -0800 | [diff] [blame] | 1640 | const auto& certificate_stats_it = |
| 1641 | transport_cert_stats.find(transport_name); |
hbos | 2fa7c67 | 2016-10-24 04:00:05 -0700 | [diff] [blame] | 1642 | RTC_DCHECK(certificate_stats_it != transport_cert_stats.cend()); |
| 1643 | std::string local_certificate_id; |
| 1644 | if (certificate_stats_it->second.local) { |
| 1645 | local_certificate_id = RTCCertificateIDFromFingerprint( |
| 1646 | certificate_stats_it->second.local->fingerprint); |
| 1647 | } |
| 1648 | std::string remote_certificate_id; |
| 1649 | if (certificate_stats_it->second.remote) { |
| 1650 | remote_certificate_id = RTCCertificateIDFromFingerprint( |
| 1651 | certificate_stats_it->second.remote->fingerprint); |
| 1652 | } |
| 1653 | |
| 1654 | // There is one transport stats for each channel. |
Steve Anton | 5dfde18 | 2018-02-06 10:34:40 -0800 | [diff] [blame] | 1655 | for (const cricket::TransportChannelStats& channel_stats : |
| 1656 | transport_stats.channel_stats) { |
hbos | 2fa7c67 | 2016-10-24 04:00:05 -0700 | [diff] [blame] | 1657 | std::unique_ptr<RTCTransportStats> transport_stats( |
Steve Anton | 5dfde18 | 2018-02-06 10:34:40 -0800 | [diff] [blame] | 1658 | new RTCTransportStats(RTCTransportStatsIDFromTransportChannel( |
| 1659 | transport_name, channel_stats.component), |
| 1660 | timestamp_us)); |
hbos | 2fa7c67 | 2016-10-24 04:00:05 -0700 | [diff] [blame] | 1661 | transport_stats->bytes_sent = 0; |
| 1662 | transport_stats->bytes_received = 0; |
hbos | 7064d59 | 2017-01-16 07:38:02 -0800 | [diff] [blame] | 1663 | transport_stats->dtls_state = DtlsTransportStateToRTCDtlsTransportState( |
| 1664 | channel_stats.dtls_state); |
hbos | 2fa7c67 | 2016-10-24 04:00:05 -0700 | [diff] [blame] | 1665 | for (const cricket::ConnectionInfo& info : |
| 1666 | channel_stats.connection_infos) { |
| 1667 | *transport_stats->bytes_sent += info.sent_total_bytes; |
| 1668 | *transport_stats->bytes_received += info.recv_total_bytes; |
| 1669 | if (info.best_connection) { |
hbos | 2fa7c67 | 2016-10-24 04:00:05 -0700 | [diff] [blame] | 1670 | transport_stats->selected_candidate_pair_id = |
| 1671 | RTCIceCandidatePairStatsIDFromConnectionInfo(info); |
| 1672 | } |
| 1673 | } |
| 1674 | if (channel_stats.component != cricket::ICE_CANDIDATE_COMPONENT_RTCP && |
| 1675 | !rtcp_transport_stats_id.empty()) { |
| 1676 | transport_stats->rtcp_transport_stats_id = rtcp_transport_stats_id; |
| 1677 | } |
| 1678 | if (!local_certificate_id.empty()) |
| 1679 | transport_stats->local_certificate_id = local_certificate_id; |
| 1680 | if (!remote_certificate_id.empty()) |
| 1681 | transport_stats->remote_certificate_id = remote_certificate_id; |
| 1682 | report->AddStats(std::move(transport_stats)); |
| 1683 | } |
| 1684 | } |
| 1685 | } |
| 1686 | |
| 1687 | std::map<std::string, RTCStatsCollector::CertificateStatsPair> |
hbos | df6075a | 2016-12-19 04:58:02 -0800 | [diff] [blame] | 1688 | RTCStatsCollector::PrepareTransportCertificateStats_n( |
Steve Anton | 5dfde18 | 2018-02-06 10:34:40 -0800 | [diff] [blame] | 1689 | const std::map<std::string, cricket::TransportStats>& |
| 1690 | transport_stats_by_name) const { |
hbos | df6075a | 2016-12-19 04:58:02 -0800 | [diff] [blame] | 1691 | RTC_DCHECK(network_thread_->IsCurrent()); |
hbos | 2fa7c67 | 2016-10-24 04:00:05 -0700 | [diff] [blame] | 1692 | std::map<std::string, CertificateStatsPair> transport_cert_stats; |
Steve Anton | 5dfde18 | 2018-02-06 10:34:40 -0800 | [diff] [blame] | 1693 | for (const auto& entry : transport_stats_by_name) { |
| 1694 | const std::string& transport_name = entry.first; |
| 1695 | |
hbos | 2fa7c67 | 2016-10-24 04:00:05 -0700 | [diff] [blame] | 1696 | CertificateStatsPair certificate_stats_pair; |
| 1697 | rtc::scoped_refptr<rtc::RTCCertificate> local_certificate; |
Steve Anton | 5dfde18 | 2018-02-06 10:34:40 -0800 | [diff] [blame] | 1698 | if (pc_->GetLocalCertificate(transport_name, &local_certificate)) { |
hbos | 2fa7c67 | 2016-10-24 04:00:05 -0700 | [diff] [blame] | 1699 | certificate_stats_pair.local = |
Benjamin Wright | 6c6c9df | 2018-10-25 01:16:26 -0700 | [diff] [blame] | 1700 | local_certificate->GetSSLCertificateChain().GetStats(); |
hbos | 2fa7c67 | 2016-10-24 04:00:05 -0700 | [diff] [blame] | 1701 | } |
Steve Anton | 5dfde18 | 2018-02-06 10:34:40 -0800 | [diff] [blame] | 1702 | |
Taylor Brandstetter | c392866 | 2018-02-23 13:04:51 -0800 | [diff] [blame] | 1703 | std::unique_ptr<rtc::SSLCertChain> remote_cert_chain = |
| 1704 | pc_->GetRemoteSSLCertChain(transport_name); |
| 1705 | if (remote_cert_chain) { |
| 1706 | certificate_stats_pair.remote = remote_cert_chain->GetStats(); |
hbos | 2fa7c67 | 2016-10-24 04:00:05 -0700 | [diff] [blame] | 1707 | } |
Steve Anton | 5dfde18 | 2018-02-06 10:34:40 -0800 | [diff] [blame] | 1708 | |
hbos | 2fa7c67 | 2016-10-24 04:00:05 -0700 | [diff] [blame] | 1709 | transport_cert_stats.insert( |
Steve Anton | 5dfde18 | 2018-02-06 10:34:40 -0800 | [diff] [blame] | 1710 | std::make_pair(transport_name, std::move(certificate_stats_pair))); |
hbos | 2fa7c67 | 2016-10-24 04:00:05 -0700 | [diff] [blame] | 1711 | } |
| 1712 | return transport_cert_stats; |
| 1713 | } |
| 1714 | |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 1715 | std::vector<RTCStatsCollector::RtpTransceiverStatsInfo> |
| 1716 | RTCStatsCollector::PrepareTransceiverStatsInfos_s() const { |
| 1717 | std::vector<RtpTransceiverStatsInfo> transceiver_stats_infos; |
Steve Anton | 56bae8d | 2018-02-14 16:07:42 -0800 | [diff] [blame] | 1718 | |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 1719 | // These are used to invoke GetStats for all the media channels together in |
| 1720 | // one worker thread hop. |
| 1721 | std::map<cricket::VoiceMediaChannel*, |
| 1722 | std::unique_ptr<cricket::VoiceMediaInfo>> |
| 1723 | voice_stats; |
| 1724 | std::map<cricket::VideoMediaChannel*, |
| 1725 | std::unique_ptr<cricket::VideoMediaInfo>> |
| 1726 | video_stats; |
| 1727 | |
Mirko Bonadei | 739baf0 | 2019-01-27 17:29:42 +0100 | [diff] [blame] | 1728 | for (const auto& transceiver : pc_->GetTransceiversInternal()) { |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 1729 | cricket::MediaType media_type = transceiver->media_type(); |
| 1730 | |
| 1731 | // Prepare stats entry. The TrackMediaInfoMap will be filled in after the |
| 1732 | // stats have been fetched on the worker thread. |
| 1733 | transceiver_stats_infos.emplace_back(); |
| 1734 | RtpTransceiverStatsInfo& stats = transceiver_stats_infos.back(); |
| 1735 | stats.transceiver = transceiver->internal(); |
| 1736 | stats.media_type = media_type; |
| 1737 | |
Amit Hilbuch | dd9390c | 2018-11-13 16:26:05 -0800 | [diff] [blame] | 1738 | cricket::ChannelInterface* channel = transceiver->internal()->channel(); |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 1739 | if (!channel) { |
| 1740 | // The remaining fields require a BaseChannel. |
| 1741 | continue; |
| 1742 | } |
| 1743 | |
| 1744 | stats.mid = channel->content_name(); |
| 1745 | stats.transport_name = channel->transport_name(); |
| 1746 | |
| 1747 | if (media_type == cricket::MEDIA_TYPE_AUDIO) { |
| 1748 | auto* voice_channel = static_cast<cricket::VoiceChannel*>(channel); |
| 1749 | RTC_DCHECK(voice_stats.find(voice_channel->media_channel()) == |
| 1750 | voice_stats.end()); |
| 1751 | voice_stats[voice_channel->media_channel()] = |
Karl Wiberg | 918f50c | 2018-07-05 11:40:33 +0200 | [diff] [blame] | 1752 | absl::make_unique<cricket::VoiceMediaInfo>(); |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 1753 | } else if (media_type == cricket::MEDIA_TYPE_VIDEO) { |
| 1754 | auto* video_channel = static_cast<cricket::VideoChannel*>(channel); |
| 1755 | RTC_DCHECK(video_stats.find(video_channel->media_channel()) == |
| 1756 | video_stats.end()); |
| 1757 | video_stats[video_channel->media_channel()] = |
Karl Wiberg | 918f50c | 2018-07-05 11:40:33 +0200 | [diff] [blame] | 1758 | absl::make_unique<cricket::VideoMediaInfo>(); |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 1759 | } else { |
| 1760 | RTC_NOTREACHED(); |
| 1761 | } |
Guido Urdaneta | ee2388f | 2018-02-15 16:36:19 +0000 | [diff] [blame] | 1762 | } |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 1763 | |
| 1764 | // Call GetStats for all media channels together on the worker thread in one |
| 1765 | // hop. |
| 1766 | worker_thread_->Invoke<void>(RTC_FROM_HERE, [&] { |
| 1767 | for (const auto& entry : voice_stats) { |
| 1768 | if (!entry.first->GetStats(entry.second.get())) { |
| 1769 | RTC_LOG(LS_WARNING) << "Failed to get voice stats."; |
| 1770 | } |
| 1771 | } |
| 1772 | for (const auto& entry : video_stats) { |
| 1773 | if (!entry.first->GetStats(entry.second.get())) { |
| 1774 | RTC_LOG(LS_WARNING) << "Failed to get video stats."; |
| 1775 | } |
| 1776 | } |
| 1777 | }); |
| 1778 | |
| 1779 | // Create the TrackMediaInfoMap for each transceiver stats object. |
| 1780 | for (auto& stats : transceiver_stats_infos) { |
| 1781 | auto transceiver = stats.transceiver; |
| 1782 | std::unique_ptr<cricket::VoiceMediaInfo> voice_media_info; |
| 1783 | std::unique_ptr<cricket::VideoMediaInfo> video_media_info; |
| 1784 | if (transceiver->channel()) { |
| 1785 | cricket::MediaType media_type = transceiver->media_type(); |
| 1786 | if (media_type == cricket::MEDIA_TYPE_AUDIO) { |
| 1787 | auto* voice_channel = |
| 1788 | static_cast<cricket::VoiceChannel*>(transceiver->channel()); |
| 1789 | RTC_DCHECK(voice_stats[voice_channel->media_channel()]); |
| 1790 | voice_media_info = |
| 1791 | std::move(voice_stats[voice_channel->media_channel()]); |
| 1792 | } else if (media_type == cricket::MEDIA_TYPE_VIDEO) { |
| 1793 | auto* video_channel = |
| 1794 | static_cast<cricket::VideoChannel*>(transceiver->channel()); |
| 1795 | RTC_DCHECK(video_stats[video_channel->media_channel()]); |
| 1796 | video_media_info = |
| 1797 | std::move(video_stats[video_channel->media_channel()]); |
| 1798 | } |
| 1799 | } |
| 1800 | std::vector<rtc::scoped_refptr<RtpSenderInternal>> senders; |
Mirko Bonadei | 739baf0 | 2019-01-27 17:29:42 +0100 | [diff] [blame] | 1801 | for (const auto& sender : transceiver->senders()) { |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 1802 | senders.push_back(sender->internal()); |
| 1803 | } |
| 1804 | std::vector<rtc::scoped_refptr<RtpReceiverInternal>> receivers; |
Mirko Bonadei | 739baf0 | 2019-01-27 17:29:42 +0100 | [diff] [blame] | 1805 | for (const auto& receiver : transceiver->receivers()) { |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 1806 | receivers.push_back(receiver->internal()); |
| 1807 | } |
Karl Wiberg | 918f50c | 2018-07-05 11:40:33 +0200 | [diff] [blame] | 1808 | stats.track_media_info_map = absl::make_unique<TrackMediaInfoMap>( |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 1809 | std::move(voice_media_info), std::move(video_media_info), senders, |
| 1810 | receivers); |
Guido Urdaneta | ee2388f | 2018-02-15 16:36:19 +0000 | [diff] [blame] | 1811 | } |
Steve Anton | 57858b3 | 2018-02-15 15:19:50 -0800 | [diff] [blame] | 1812 | |
| 1813 | return transceiver_stats_infos; |
hbos | 0adb828 | 2016-11-23 02:32:06 -0800 | [diff] [blame] | 1814 | } |
| 1815 | |
Steve Anton | 7eca093 | 2018-03-30 15:18:41 -0700 | [diff] [blame] | 1816 | std::set<std::string> RTCStatsCollector::PrepareTransportNames_s() const { |
| 1817 | std::set<std::string> transport_names; |
| 1818 | for (const auto& transceiver : pc_->GetTransceiversInternal()) { |
| 1819 | if (transceiver->internal()->channel()) { |
| 1820 | transport_names.insert( |
| 1821 | transceiver->internal()->channel()->transport_name()); |
| 1822 | } |
| 1823 | } |
| 1824 | if (pc_->rtp_data_channel()) { |
| 1825 | transport_names.insert(pc_->rtp_data_channel()->transport_name()); |
| 1826 | } |
| 1827 | if (pc_->sctp_transport_name()) { |
| 1828 | transport_names.insert(*pc_->sctp_transport_name()); |
| 1829 | } |
| 1830 | return transport_names; |
| 1831 | } |
| 1832 | |
hbos | 82ebe02 | 2016-11-14 01:41:09 -0800 | [diff] [blame] | 1833 | void RTCStatsCollector::OnDataChannelCreated(DataChannel* channel) { |
| 1834 | channel->SignalOpened.connect(this, &RTCStatsCollector::OnDataChannelOpened); |
| 1835 | channel->SignalClosed.connect(this, &RTCStatsCollector::OnDataChannelClosed); |
| 1836 | } |
| 1837 | |
| 1838 | void RTCStatsCollector::OnDataChannelOpened(DataChannel* channel) { |
| 1839 | RTC_DCHECK(signaling_thread_->IsCurrent()); |
| 1840 | bool result = internal_record_.opened_data_channels.insert( |
| 1841 | reinterpret_cast<uintptr_t>(channel)).second; |
| 1842 | ++internal_record_.data_channels_opened; |
| 1843 | RTC_DCHECK(result); |
| 1844 | } |
| 1845 | |
| 1846 | void RTCStatsCollector::OnDataChannelClosed(DataChannel* channel) { |
| 1847 | RTC_DCHECK(signaling_thread_->IsCurrent()); |
| 1848 | // Only channels that have been fully opened (and have increased the |
| 1849 | // |data_channels_opened_| counter) increase the closed counter. |
hbos | 5bf9def | 2017-03-20 03:14:14 -0700 | [diff] [blame] | 1850 | if (internal_record_.opened_data_channels.erase( |
| 1851 | reinterpret_cast<uintptr_t>(channel))) { |
hbos | 82ebe02 | 2016-11-14 01:41:09 -0800 | [diff] [blame] | 1852 | ++internal_record_.data_channels_closed; |
| 1853 | } |
| 1854 | } |
| 1855 | |
hbos | cc555c5 | 2016-10-18 12:48:31 -0700 | [diff] [blame] | 1856 | const char* CandidateTypeToRTCIceCandidateTypeForTesting( |
| 1857 | const std::string& type) { |
| 1858 | return CandidateTypeToRTCIceCandidateType(type); |
| 1859 | } |
| 1860 | |
| 1861 | const char* DataStateToRTCDataChannelStateForTesting( |
| 1862 | DataChannelInterface::DataState state) { |
| 1863 | return DataStateToRTCDataChannelState(state); |
| 1864 | } |
| 1865 | |
hbos | d565b73 | 2016-08-30 14:04:35 -0700 | [diff] [blame] | 1866 | } // namespace webrtc |