blob: d0be338d52cdf4c1d577d14b3b0040819db69e60 [file] [log] [blame]
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001/*
kjellanderb24317b2016-02-10 07:54:43 -08002 * Copyright 2012 The WebRTC project authors. All Rights Reserved.
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003 *
kjellanderb24317b2016-02-10 07:54:43 -08004 * 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.org28e20752013-07-10 00:45:36 +00009 */
10
11// This file contains a class used for gathering statistics from an ongoing
12// libjingle PeerConnection.
13
Steve Anton10542f22019-01-11 09:11:00 -080014#ifndef PC_STATS_COLLECTOR_H_
15#define PC_STATS_COLLECTOR_H_
henrike@webrtc.org28e20752013-07-10 00:45:36 +000016
Yves Gerey3e707812018-11-28 16:47:49 +010017#include <stdint.h>
henrike@webrtc.org28e20752013-07-10 00:45:36 +000018#include <map>
Taylor Brandstetterc3928662018-02-23 13:04:51 -080019#include <memory>
henrike@webrtc.org40b3b682014-03-03 18:30:11 +000020#include <string>
Steve Anton36b29d12017-10-30 09:57:42 -070021#include <utility>
henrike@webrtc.org40b3b682014-03-03 18:30:11 +000022#include <vector>
henrike@webrtc.org28e20752013-07-10 00:45:36 +000023
Steve Anton10542f22019-01-11 09:11:00 -080024#include "api/media_stream_interface.h"
25#include "api/peer_connection_interface.h"
26#include "api/stats_types.h"
Yves Gerey3e707812018-11-28 16:47:49 +010027#include "p2p/base/port.h"
Steve Anton10542f22019-01-11 09:11:00 -080028#include "pc/peer_connection_internal.h"
Yves Gerey3e707812018-11-28 16:47:49 +010029#include "rtc_base/network_constants.h"
Steve Anton10542f22019-01-11 09:11:00 -080030#include "rtc_base/ssl_certificate.h"
henrike@webrtc.org28e20752013-07-10 00:45:36 +000031
henrike@webrtc.org28e20752013-07-10 00:45:36 +000032namespace webrtc {
33
guoweis@webrtc.org950c5182014-12-16 23:01:31 +000034// Conversion function to convert candidate type string to the corresponding one
35// from enum RTCStatsIceCandidateType.
36const 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.
41const char* AdapterTypeToStatsType(rtc::AdapterType type);
42
jbauchbe24c942015-06-22 15:06:43 -070043// A mapping between track ids and their StatsReport.
44typedef std::map<std::string, StatsReport*> TrackIdMap;
45
henrike@webrtc.org28e20752013-07-10 00:45:36 +000046class StatsCollector {
47 public:
deadbeefab9b2d12015-10-14 11:33:11 -070048 // The caller is responsible for ensuring that the pc outlives the
tommi@webrtc.org03505bc2014-07-14 20:15:26 +000049 // StatsCollector instance.
Steve Anton2d8609c2018-01-23 16:38:46 -080050 explicit StatsCollector(PeerConnectionInternal* pc);
tommi@webrtc.org03505bc2014-07-14 20:15:26 +000051 virtual ~StatsCollector();
henrike@webrtc.org28e20752013-07-10 00:45:36 +000052
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 Alvestrand75ceef22018-01-04 15:26:13 +010056 void AddTrack(MediaStreamTrackInterface* track);
henrike@webrtc.org28e20752013-07-10 00:45:36 +000057
henrike@webrtc.org40b3b682014-03-03 18:30:11 +000058 // Adds a local audio track that is used for getting some voice statistics.
Peter Boström0c4e06b2015-10-07 12:23:21 +020059 void AddLocalAudioTrack(AudioTrackInterface* audio_track, uint32_t ssrc);
henrike@webrtc.org40b3b682014-03-03 18:30:11 +000060
61 // Removes a local audio tracks that is used for getting some voice
62 // statistics.
Peter Boström0c4e06b2015-10-07 12:23:21 +020063 void RemoveLocalAudioTrack(AudioTrackInterface* audio_track, uint32_t ssrc);
henrike@webrtc.org40b3b682014-03-03 18:30:11 +000064
henrike@webrtc.org28e20752013-07-10 00:45:36 +000065 // Gather statistics from the session and store them for future use.
wu@webrtc.orgb9a088b2014-02-13 23:18:49 +000066 void UpdateStats(PeerConnectionInterface::StatsOutputLevel level);
henrike@webrtc.org28e20752013-07-10 00:45:36 +000067
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.org5b06b062014-08-15 08:38:30 +000072 // 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 Gerey665174f2018-06-19 15:03:05 +020076 void GetStats(MediaStreamTrackInterface* track, StatsReports* reports);
henrike@webrtc.org28e20752013-07-10 00:45:36 +000077
tommi@webrtc.org4fb7e252015-01-21 11:36:18 +000078 // Prepare a local or remote SSRC report for the given ssrc. Used internally
wu@webrtc.org97077a32013-10-25 21:18:33 +000079 // in the ExtractStatsFromList template.
Peter Boström0c4e06b2015-10-07 12:23:21 +020080 StatsReport* PrepareReport(bool local,
81 uint32_t ssrc,
82 const StatsReport::Id& transport_id,
83 StatsReport::Direction direction);
henrike@webrtc.org28e20752013-07-10 00:45:36 +000084
zhihuange9e94c32016-11-04 11:38:15 -070085 // A track is invalid if there is no report data for it.
86 bool IsValidTrack(const std::string& track_id);
87
xians@webrtc.org01bda202014-07-09 07:38:38 +000088 // Method used by the unittest to force a update of stats since UpdateStats()
89 // that occur less than kMinGatherStatsPeriod number of ms apart will be
90 // ignored.
tommi@webrtc.org69bc5a32014-12-15 09:44:48 +000091 void ClearUpdateStatsCacheForTest();
xians@webrtc.org01bda202014-07-09 07:38:38 +000092
henrike@webrtc.org28e20752013-07-10 00:45:36 +000093 private:
guoweis@webrtc.org950c5182014-12-16 23:01:31 +000094 friend class StatsCollectorTest;
95
decurtis@webrtc.org322a5642015-02-03 22:09:37 +000096 // Overridden in unit tests to fake timing.
97 virtual double GetTimeNow();
98
henrike@webrtc.org28e20752013-07-10 00:45:36 +000099 bool CopySelectedReports(const std::string& selector, StatsReports* reports);
100
guoweis@webrtc.org950c5182014-12-16 23:01:31 +0000101 // Helper method for creating IceCandidate report. |is_local| indicates
102 // whether this candidate is local or remote.
Qingsi Wang72a43a12018-02-20 16:03:18 -0800103 StatsReport* AddCandidateReport(
104 const cricket::CandidateStats& candidate_stats,
105 bool local);
guoweis@webrtc.org950c5182014-12-16 23:01:31 +0000106
wu@webrtc.org4551b792013-10-09 15:37:36 +0000107 // Adds a report for this certificate and every certificate in its chain, and
Taylor Brandstetterc3928662018-02-23 13:04:51 -0800108 // returns the leaf certificate's report (|cert_stats|'s report).
109 StatsReport* AddCertificateReports(
110 std::unique_ptr<rtc::SSLCertificateStats> cert_stats);
tommi@webrtc.orgd3900292015-03-12 16:35:55 +0000111
112 StatsReport* AddConnectionInfoReport(const std::string& content_name,
Yves Gerey665174f2018-06-19 15:03:05 +0200113 int component,
114 int connection_id,
115 const StatsReport::Id& channel_report_id,
116 const cricket::ConnectionInfo& info);
wu@webrtc.org4551b792013-10-09 15:37:36 +0000117
decurtis@webrtc.org487a4442015-01-15 22:55:07 +0000118 void ExtractDataInfo();
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000119 void ExtractSessionInfo();
stefanf79ade12017-06-02 06:44:03 -0700120 void ExtractBweInfo();
Steve Antonb8867112018-02-13 10:07:54 -0800121 void ExtractMediaInfo();
nissefcc640f2016-04-01 01:10:42 -0700122 void ExtractSenderInfo();
tommi@webrtc.org4fb7e252015-01-21 11:36:18 +0000123 webrtc::StatsReport* GetReport(const StatsReport::StatsType& type,
xians@webrtc.org4cb01282014-06-12 14:57:05 +0000124 const std::string& id,
tommi@webrtc.org4fb7e252015-01-21 11:36:18 +0000125 StatsReport::Direction direction);
henrike@webrtc.org40b3b682014-03-03 18:30:11 +0000126
127 // Helper method to get stats from the local audio tracks.
Ivo Creusenae026092017-11-20 13:07:16 +0100128 void UpdateStatsFromExistingLocalAudioTracks(bool has_remote_tracks);
henrike@webrtc.org40b3b682014-03-03 18:30:11 +0000129 void UpdateReportFromAudioTrack(AudioTrackInterface* track,
Ivo Creusenae026092017-11-20 13:07:16 +0100130 StatsReport* report,
131 bool has_remote_tracks);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000132
xians@webrtc.org4cb01282014-06-12 14:57:05 +0000133 // Helper method to get the id for the track identified by ssrc.
134 // |direction| tells if the track is for sending or receiving.
Steve Antona41959e2018-11-28 11:15:33 -0800135 absl::string_view GetTrackIdBySsrc(uint32_t ssrc,
136 StatsReport::Direction direction);
xians@webrtc.org4cb01282014-06-12 14:57:05 +0000137
jbauchbe24c942015-06-22 15:06:43 -0700138 // Helper method to update the timestamp of track records.
139 void UpdateTrackReports();
140
tommi@webrtc.org4fb7e252015-01-21 11:36:18 +0000141 // A collection for all of our stats reports.
142 StatsCollection reports_;
jbauchbe24c942015-06-22 15:06:43 -0700143 TrackIdMap track_ids_;
deadbeefab9b2d12015-10-14 11:33:11 -0700144 // Raw pointer to the peer connection the statistics are gathered from.
Steve Anton2d8609c2018-01-23 16:38:46 -0800145 PeerConnectionInternal* const pc_;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000146 double stats_gathering_started_;
henrike@webrtc.org40b3b682014-03-03 18:30:11 +0000147
tommi@webrtc.orgd3900292015-03-12 16:35:55 +0000148 // TODO(tommi): We appear to be holding on to raw pointers to reference
149 // counted objects? We should be using scoped_refptr here.
Peter Boström0c4e06b2015-10-07 12:23:21 +0200150 typedef std::vector<std::pair<AudioTrackInterface*, uint32_t> >
henrike@webrtc.org40b3b682014-03-03 18:30:11 +0000151 LocalAudioTrackVector;
152 LocalAudioTrackVector local_audio_tracks_;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000153};
154
155} // namespace webrtc
156
Steve Anton10542f22019-01-11 09:11:00 -0800157#endif // PC_STATS_COLLECTOR_H_