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