henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 1 | /* |
kjellander | b24317b | 2016-02-10 15:54:43 | [diff] [blame] | 2 | * Copyright 2012 The WebRTC project authors. All Rights Reserved. |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 3 | * |
kjellander | b24317b | 2016-02-10 15:54:43 | [diff] [blame] | 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. |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | // This file contains a class used for gathering statistics from an ongoing |
| 12 | // libjingle PeerConnection. |
| 13 | |
Steve Anton | 10542f2 | 2019-01-11 17:11:00 | [diff] [blame] | 14 | #ifndef PC_STATS_COLLECTOR_H_ |
| 15 | #define PC_STATS_COLLECTOR_H_ |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 16 | |
Yves Gerey | 3e70781 | 2018-11-28 15:47:49 | [diff] [blame] | 17 | #include <stdint.h> |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 18 | #include <map> |
Taylor Brandstetter | c392866 | 2018-02-23 21:04:51 | [diff] [blame] | 19 | #include <memory> |
henrike@webrtc.org | 40b3b68 | 2014-03-03 18:30:11 | [diff] [blame] | 20 | #include <string> |
Steve Anton | 36b29d1 | 2017-10-30 16:57:42 | [diff] [blame] | 21 | #include <utility> |
henrike@webrtc.org | 40b3b68 | 2014-03-03 18:30:11 | [diff] [blame] | 22 | #include <vector> |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 23 | |
Steve Anton | 10542f2 | 2019-01-11 17:11:00 | [diff] [blame] | 24 | #include "api/media_stream_interface.h" |
| 25 | #include "api/peer_connection_interface.h" |
| 26 | #include "api/stats_types.h" |
Yves Gerey | 3e70781 | 2018-11-28 15:47:49 | [diff] [blame] | 27 | #include "p2p/base/port.h" |
Steve Anton | 10542f2 | 2019-01-11 17:11:00 | [diff] [blame] | 28 | #include "pc/peer_connection_internal.h" |
Yves Gerey | 3e70781 | 2018-11-28 15:47:49 | [diff] [blame] | 29 | #include "rtc_base/network_constants.h" |
Steve Anton | 10542f2 | 2019-01-11 17:11:00 | [diff] [blame] | 30 | #include "rtc_base/ssl_certificate.h" |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 31 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 32 | namespace webrtc { |
| 33 | |
guoweis@webrtc.org | 950c518 | 2014-12-16 23:01:31 | [diff] [blame] | 34 | // Conversion function to convert candidate type string to the corresponding one |
| 35 | // from enum RTCStatsIceCandidateType. |
| 36 | const char* IceCandidateTypeToStatsType(const std::string& candidate_type); |
| 37 | |
| 38 | // Conversion function to convert adapter type to report string which are more |
| 39 | // fitting to the general style of http://w3c.github.io/webrtc-stats. This is |
| 40 | // only used by stats collector. |
| 41 | const char* AdapterTypeToStatsType(rtc::AdapterType type); |
| 42 | |
jbauch | be24c94 | 2015-06-22 22:06:43 | [diff] [blame] | 43 | // A mapping between track ids and their StatsReport. |
| 44 | typedef std::map<std::string, StatsReport*> TrackIdMap; |
| 45 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 46 | class StatsCollector { |
| 47 | public: |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 48 | // The caller is responsible for ensuring that the pc outlives the |
tommi@webrtc.org | 03505bc | 2014-07-14 20:15:26 | [diff] [blame] | 49 | // StatsCollector instance. |
Steve Anton | 2d8609c | 2018-01-24 00:38:46 | [diff] [blame] | 50 | explicit StatsCollector(PeerConnectionInternal* pc); |
tommi@webrtc.org | 03505bc | 2014-07-14 20:15:26 | [diff] [blame] | 51 | virtual ~StatsCollector(); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 52 | |
| 53 | // Adds a MediaStream with tracks that can be used as a |selector| in a call |
| 54 | // to GetStats. |
| 55 | void AddStream(MediaStreamInterface* stream); |
Harald Alvestrand | 75ceef2 | 2018-01-04 14:26:13 | [diff] [blame] | 56 | void AddTrack(MediaStreamTrackInterface* track); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 57 | |
henrike@webrtc.org | 40b3b68 | 2014-03-03 18:30:11 | [diff] [blame] | 58 | // Adds a local audio track that is used for getting some voice statistics. |
Peter Boström | 0c4e06b | 2015-10-07 10:23:21 | [diff] [blame] | 59 | void AddLocalAudioTrack(AudioTrackInterface* audio_track, uint32_t ssrc); |
henrike@webrtc.org | 40b3b68 | 2014-03-03 18:30:11 | [diff] [blame] | 60 | |
| 61 | // Removes a local audio tracks that is used for getting some voice |
| 62 | // statistics. |
Peter Boström | 0c4e06b | 2015-10-07 10:23:21 | [diff] [blame] | 63 | void RemoveLocalAudioTrack(AudioTrackInterface* audio_track, uint32_t ssrc); |
henrike@webrtc.org | 40b3b68 | 2014-03-03 18:30:11 | [diff] [blame] | 64 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 65 | // Gather statistics from the session and store them for future use. |
wu@webrtc.org | b9a088b | 2014-02-13 23:18:49 | [diff] [blame] | 66 | void UpdateStats(PeerConnectionInterface::StatsOutputLevel level); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 67 | |
| 68 | // Gets a StatsReports of the last collected stats. Note that UpdateStats must |
| 69 | // be called before this function to get the most recent stats. |selector| is |
| 70 | // a track label or empty string. The most recent reports are stored in |
| 71 | // |reports|. |
tommi@webrtc.org | 5b06b06 | 2014-08-15 08:38:30 | [diff] [blame] | 72 | // TODO(tommi): Change this contract to accept a callback object instead |
| 73 | // of filling in |reports|. As is, there's a requirement that the caller |
| 74 | // uses |reports| immediately without allowing any async activity on |
| 75 | // the thread (message handling etc) and then discard the results. |
Yves Gerey | 665174f | 2018-06-19 13:03:05 | [diff] [blame] | 76 | void GetStats(MediaStreamTrackInterface* track, StatsReports* reports); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 77 | |
tommi@webrtc.org | 4fb7e25 | 2015-01-21 11:36:18 | [diff] [blame] | 78 | // Prepare a local or remote SSRC report for the given ssrc. Used internally |
wu@webrtc.org | 97077a3 | 2013-10-25 21:18:33 | [diff] [blame] | 79 | // in the ExtractStatsFromList template. |
Peter Boström | 0c4e06b | 2015-10-07 10:23:21 | [diff] [blame] | 80 | StatsReport* PrepareReport(bool local, |
| 81 | uint32_t ssrc, |
Steve Anton | efe4c92 | 2019-03-27 17:26:06 | [diff] [blame] | 82 | const std::string& track_id, |
Peter Boström | 0c4e06b | 2015-10-07 10:23:21 | [diff] [blame] | 83 | const StatsReport::Id& transport_id, |
| 84 | StatsReport::Direction direction); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 85 | |
zhihuang | e9e94c3 | 2016-11-04 18:38:15 | [diff] [blame] | 86 | // A track is invalid if there is no report data for it. |
| 87 | bool IsValidTrack(const std::string& track_id); |
| 88 | |
xians@webrtc.org | 01bda20 | 2014-07-09 07:38:38 | [diff] [blame] | 89 | // Method used by the unittest to force a update of stats since UpdateStats() |
| 90 | // that occur less than kMinGatherStatsPeriod number of ms apart will be |
| 91 | // ignored. |
tommi@webrtc.org | 69bc5a3 | 2014-12-15 09:44:48 | [diff] [blame] | 92 | void ClearUpdateStatsCacheForTest(); |
xians@webrtc.org | 01bda20 | 2014-07-09 07:38:38 | [diff] [blame] | 93 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 94 | private: |
guoweis@webrtc.org | 950c518 | 2014-12-16 23:01:31 | [diff] [blame] | 95 | friend class StatsCollectorTest; |
| 96 | |
decurtis@webrtc.org | 322a564 | 2015-02-03 22:09:37 | [diff] [blame] | 97 | // Overridden in unit tests to fake timing. |
| 98 | virtual double GetTimeNow(); |
| 99 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 100 | bool CopySelectedReports(const std::string& selector, StatsReports* reports); |
| 101 | |
guoweis@webrtc.org | 950c518 | 2014-12-16 23:01:31 | [diff] [blame] | 102 | // Helper method for creating IceCandidate report. |is_local| indicates |
| 103 | // whether this candidate is local or remote. |
Qingsi Wang | 72a43a1 | 2018-02-21 00:03:18 | [diff] [blame] | 104 | StatsReport* AddCandidateReport( |
| 105 | const cricket::CandidateStats& candidate_stats, |
| 106 | bool local); |
guoweis@webrtc.org | 950c518 | 2014-12-16 23:01:31 | [diff] [blame] | 107 | |
wu@webrtc.org | 4551b79 | 2013-10-09 15:37:36 | [diff] [blame] | 108 | // Adds a report for this certificate and every certificate in its chain, and |
Taylor Brandstetter | c392866 | 2018-02-23 21:04:51 | [diff] [blame] | 109 | // returns the leaf certificate's report (|cert_stats|'s report). |
| 110 | StatsReport* AddCertificateReports( |
| 111 | std::unique_ptr<rtc::SSLCertificateStats> cert_stats); |
tommi@webrtc.org | d390029 | 2015-03-12 16:35:55 | [diff] [blame] | 112 | |
| 113 | StatsReport* AddConnectionInfoReport(const std::string& content_name, |
Yves Gerey | 665174f | 2018-06-19 13:03:05 | [diff] [blame] | 114 | int component, |
| 115 | int connection_id, |
| 116 | const StatsReport::Id& channel_report_id, |
| 117 | const cricket::ConnectionInfo& info); |
wu@webrtc.org | 4551b79 | 2013-10-09 15:37:36 | [diff] [blame] | 118 | |
decurtis@webrtc.org | 487a444 | 2015-01-15 22:55:07 | [diff] [blame] | 119 | void ExtractDataInfo(); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 120 | void ExtractSessionInfo(); |
stefan | f79ade1 | 2017-06-02 13:44:03 | [diff] [blame] | 121 | void ExtractBweInfo(); |
Steve Anton | b886711 | 2018-02-13 18:07:54 | [diff] [blame] | 122 | void ExtractMediaInfo(); |
nisse | fcc640f | 2016-04-01 08:10:42 | [diff] [blame] | 123 | void ExtractSenderInfo(); |
tommi@webrtc.org | 4fb7e25 | 2015-01-21 11:36:18 | [diff] [blame] | 124 | webrtc::StatsReport* GetReport(const StatsReport::StatsType& type, |
xians@webrtc.org | 4cb0128 | 2014-06-12 14:57:05 | [diff] [blame] | 125 | const std::string& id, |
tommi@webrtc.org | 4fb7e25 | 2015-01-21 11:36:18 | [diff] [blame] | 126 | StatsReport::Direction direction); |
henrike@webrtc.org | 40b3b68 | 2014-03-03 18:30:11 | [diff] [blame] | 127 | |
| 128 | // Helper method to get stats from the local audio tracks. |
Ivo Creusen | ae026096 | 2017-11-20 12:07:16 | [diff] [blame] | 129 | void UpdateStatsFromExistingLocalAudioTracks(bool has_remote_tracks); |
henrike@webrtc.org | 40b3b68 | 2014-03-03 18:30:11 | [diff] [blame] | 130 | void UpdateReportFromAudioTrack(AudioTrackInterface* track, |
Ivo Creusen | ae026096 | 2017-11-20 12:07:16 | [diff] [blame] | 131 | StatsReport* report, |
| 132 | bool has_remote_tracks); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 133 | |
jbauch | be24c94 | 2015-06-22 22:06:43 | [diff] [blame] | 134 | // Helper method to update the timestamp of track records. |
| 135 | void UpdateTrackReports(); |
| 136 | |
tommi@webrtc.org | 4fb7e25 | 2015-01-21 11:36:18 | [diff] [blame] | 137 | // A collection for all of our stats reports. |
| 138 | StatsCollection reports_; |
jbauch | be24c94 | 2015-06-22 22:06:43 | [diff] [blame] | 139 | TrackIdMap track_ids_; |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 140 | // Raw pointer to the peer connection the statistics are gathered from. |
Steve Anton | 2d8609c | 2018-01-24 00:38:46 | [diff] [blame] | 141 | PeerConnectionInternal* const pc_; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 142 | double stats_gathering_started_; |
henrike@webrtc.org | 40b3b68 | 2014-03-03 18:30:11 | [diff] [blame] | 143 | |
tommi@webrtc.org | d390029 | 2015-03-12 16:35:55 | [diff] [blame] | 144 | // TODO(tommi): We appear to be holding on to raw pointers to reference |
| 145 | // counted objects? We should be using scoped_refptr here. |
Peter Boström | 0c4e06b | 2015-10-07 10:23:21 | [diff] [blame] | 146 | typedef std::vector<std::pair<AudioTrackInterface*, uint32_t> > |
henrike@webrtc.org | 40b3b68 | 2014-03-03 18:30:11 | [diff] [blame] | 147 | LocalAudioTrackVector; |
| 148 | LocalAudioTrackVector local_audio_tracks_; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 149 | }; |
| 150 | |
| 151 | } // namespace webrtc |
| 152 | |
Steve Anton | 10542f2 | 2019-01-11 17:11:00 | [diff] [blame] | 153 | #endif // PC_STATS_COLLECTOR_H_ |