blob: 24a7bb2f0e224badbc71aacf134446adaf191c70 [file] [log] [blame]
hbosd565b732016-08-30 14:04:35 -07001/*
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
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020011#ifndef PC_RTCSTATSCOLLECTOR_H_
12#define PC_RTCSTATSCOLLECTOR_H_
hbosd565b732016-08-30 14:04:35 -070013
hbos2fa7c672016-10-24 04:00:05 -070014#include <map>
hbosd565b732016-08-30 14:04:35 -070015#include <memory>
hbos82ebe022016-11-14 01:41:09 -080016#include <set>
Steve Anton36b29d12017-10-30 09:57:42 -070017#include <string>
hbosc82f2e12016-09-05 01:36:50 -070018#include <vector>
hbosd565b732016-08-30 14:04:35 -070019
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020020#include "api/optional.h"
21#include "api/stats/rtcstats_objects.h"
22#include "api/stats/rtcstatscollectorcallback.h"
23#include "api/stats/rtcstatsreport.h"
24#include "call/call.h"
25#include "media/base/mediachannel.h"
26#include "pc/datachannel.h"
Steve Anton2d8609c2018-01-23 16:38:46 -080027#include "pc/peerconnectioninternal.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020028#include "pc/trackmediainfomap.h"
29#include "rtc_base/asyncinvoker.h"
30#include "rtc_base/refcount.h"
31#include "rtc_base/scoped_ref_ptr.h"
32#include "rtc_base/sigslot.h"
33#include "rtc_base/sslidentity.h"
34#include "rtc_base/timeutils.h"
hbosd565b732016-08-30 14:04:35 -070035
36namespace webrtc {
37
hbosc82f2e12016-09-05 01:36:50 -070038// All public methods of the collector are to be called on the signaling thread.
39// Stats are gathered on the signaling, worker and network threads
40// asynchronously. The callback is invoked on the signaling thread. Resulting
41// reports are cached for |cache_lifetime_| ms.
hbos82ebe022016-11-14 01:41:09 -080042class RTCStatsCollector : public virtual rtc::RefCountInterface,
43 public sigslot::has_slots<> {
hbosc82f2e12016-09-05 01:36:50 -070044 public:
45 static rtc::scoped_refptr<RTCStatsCollector> Create(
Steve Anton2d8609c2018-01-23 16:38:46 -080046 PeerConnectionInternal* pc,
hbos0e6758d2016-08-31 07:57:36 -070047 int64_t cache_lifetime_us = 50 * rtc::kNumMicrosecsPerMillisec);
hbosd565b732016-08-30 14:04:35 -070048
49 // Gets a recent stats report. If there is a report cached that is still fresh
50 // it is returned, otherwise new stats are gathered and returned. A report is
51 // considered fresh for |cache_lifetime_| ms. const RTCStatsReports are safe
52 // to use across multiple threads and may be destructed on any thread.
hbosc82f2e12016-09-05 01:36:50 -070053 void GetStatsReport(rtc::scoped_refptr<RTCStatsCollectorCallback> callback);
hbosd565b732016-08-30 14:04:35 -070054 // Clears the cache's reference to the most recent stats report. Subsequently
55 // calling |GetStatsReport| guarantees fresh stats.
56 void ClearCachedStatsReport();
57
hbosb78306a2016-12-19 05:06:57 -080058 // If there is a |GetStatsReport| requests in-flight, waits until it has been
59 // completed. Must be called on the signaling thread.
60 void WaitForPendingRequest();
61
hbosc82f2e12016-09-05 01:36:50 -070062 protected:
Steve Anton2d8609c2018-01-23 16:38:46 -080063 RTCStatsCollector(PeerConnectionInternal* pc, int64_t cache_lifetime_us);
hbosb78306a2016-12-19 05:06:57 -080064 ~RTCStatsCollector();
hbosd565b732016-08-30 14:04:35 -070065
hbosc82f2e12016-09-05 01:36:50 -070066 // Stats gathering on a particular thread. Calls |AddPartialResults| before
67 // returning. Virtual for the sake of testing.
68 virtual void ProducePartialResultsOnSignalingThread(int64_t timestamp_us);
hbosc82f2e12016-09-05 01:36:50 -070069 virtual void ProducePartialResultsOnNetworkThread(int64_t timestamp_us);
70
71 // Can be called on any thread.
72 void AddPartialResults(
73 const rtc::scoped_refptr<RTCStatsReport>& partial_report);
74
75 private:
hbos2fa7c672016-10-24 04:00:05 -070076 struct CertificateStatsPair {
77 std::unique_ptr<rtc::SSLCertificateStats> local;
78 std::unique_ptr<rtc::SSLCertificateStats> remote;
79 };
80
hbosc82f2e12016-09-05 01:36:50 -070081 void AddPartialResults_s(rtc::scoped_refptr<RTCStatsReport> partial_report);
82 void DeliverCachedReport();
83
hbosab9f6e42016-10-07 02:18:47 -070084 // Produces |RTCCertificateStats|.
hbosdf6075a2016-12-19 04:58:02 -080085 void ProduceCertificateStats_n(
hbos2fa7c672016-10-24 04:00:05 -070086 int64_t timestamp_us,
87 const std::map<std::string, CertificateStatsPair>& transport_cert_stats,
hbos6ab97ce2016-10-03 14:16:56 -070088 RTCStatsReport* report) const;
hbos0adb8282016-11-23 02:32:06 -080089 // Produces |RTCCodecStats|.
hbosdf6075a2016-12-19 04:58:02 -080090 void ProduceCodecStats_n(
hbos84abeb12017-01-16 06:16:44 -080091 int64_t timestamp_us, const TrackMediaInfoMap& track_media_info_map,
hbos0adb8282016-11-23 02:32:06 -080092 RTCStatsReport* report) const;
hboscc555c52016-10-18 12:48:31 -070093 // Produces |RTCDataChannelStats|.
94 void ProduceDataChannelStats_s(
95 int64_t timestamp_us, RTCStatsReport* report) const;
hbosc47a0c32016-10-11 14:54:49 -070096 // Produces |RTCIceCandidatePairStats| and |RTCIceCandidateStats|.
hbosdf6075a2016-12-19 04:58:02 -080097 void ProduceIceCandidateAndPairStats_n(
stefanf79ade12017-06-02 06:44:03 -070098 int64_t timestamp_us,
Steve Anton5dfde182018-02-06 10:34:40 -080099 const std::map<std::string, cricket::TransportStats>&
100 transport_stats_by_name,
hbos338f78a2017-02-07 06:41:21 -0800101 const cricket::VideoMediaInfo* video_media_info,
stefanf79ade12017-06-02 06:44:03 -0700102 const Call::Stats& call_stats,
hbosab9f6e42016-10-07 02:18:47 -0700103 RTCStatsReport* report) const;
hbos09bc1282016-11-08 06:29:22 -0800104 // Produces |RTCMediaStreamStats| and |RTCMediaStreamTrackStats|.
105 void ProduceMediaStreamAndTrackStats_s(
106 int64_t timestamp_us, RTCStatsReport* report) const;
hbosab9f6e42016-10-07 02:18:47 -0700107 // Produces |RTCPeerConnectionStats|.
hbos6ab97ce2016-10-03 14:16:56 -0700108 void ProducePeerConnectionStats_s(
109 int64_t timestamp_us, RTCStatsReport* report) const;
hboseeafe942016-11-01 03:00:17 -0700110 // Produces |RTCInboundRTPStreamStats| and |RTCOutboundRTPStreamStats|.
Steve Anton5dfde182018-02-06 10:34:40 -0800111 void ProduceRTPStreamStats_n(
112 int64_t timestamp_us,
113 const std::map<std::string, std::string>& transport_names_by_mid,
114 const TrackMediaInfoMap& track_media_info_map,
115 RTCStatsReport* report) const;
hbos2fa7c672016-10-24 04:00:05 -0700116 // Produces |RTCTransportStats|.
hbosdf6075a2016-12-19 04:58:02 -0800117 void ProduceTransportStats_n(
Steve Anton5dfde182018-02-06 10:34:40 -0800118 int64_t timestamp_us,
119 const std::map<std::string, cricket::TransportStats>&
120 transport_stats_by_name,
hbos2fa7c672016-10-24 04:00:05 -0700121 const std::map<std::string, CertificateStatsPair>& transport_cert_stats,
122 RTCStatsReport* report) const;
123
124 // Helper function to stats-producing functions.
125 std::map<std::string, CertificateStatsPair>
Steve Anton5dfde182018-02-06 10:34:40 -0800126 PrepareTransportCertificateStats_n(
127 const std::map<std::string, cricket::TransportStats>&
128 transport_stats_by_name) const;
hbos84abeb12017-01-16 06:16:44 -0800129 std::unique_ptr<TrackMediaInfoMap> PrepareTrackMediaInfoMap_s() const;
130 std::map<MediaStreamTrackInterface*, std::string> PrepareTrackToID_s() const;
hbosd565b732016-08-30 14:04:35 -0700131
hbos82ebe022016-11-14 01:41:09 -0800132 // Slots for signals (sigslot) that are wired up to |pc_|.
133 void OnDataChannelCreated(DataChannel* channel);
134 // Slots for signals (sigslot) that are wired up to |channel|.
135 void OnDataChannelOpened(DataChannel* channel);
136 void OnDataChannelClosed(DataChannel* channel);
137
Steve Anton2d8609c2018-01-23 16:38:46 -0800138 PeerConnectionInternal* const pc_;
hbosc82f2e12016-09-05 01:36:50 -0700139 rtc::Thread* const signaling_thread_;
140 rtc::Thread* const worker_thread_;
141 rtc::Thread* const network_thread_;
142 rtc::AsyncInvoker invoker_;
143
144 int num_pending_partial_reports_;
145 int64_t partial_report_timestamp_us_;
146 rtc::scoped_refptr<RTCStatsReport> partial_report_;
147 std::vector<rtc::scoped_refptr<RTCStatsCollectorCallback>> callbacks_;
148
hbos84abeb12017-01-16 06:16:44 -0800149 // Set in |GetStatsReport|, read in |ProducePartialResultsOnNetworkThread| and
150 // |ProducePartialResultsOnSignalingThread|, reset after work is complete. Not
151 // passed as arguments to avoid copies. This is thread safe - when we
152 // set/reset we know there are no pending stats requests in progress.
Steve Anton5dfde182018-02-06 10:34:40 -0800153 std::map<std::string, std::string> transport_names_by_mid_;
hbos84abeb12017-01-16 06:16:44 -0800154 std::unique_ptr<TrackMediaInfoMap> track_media_info_map_;
155 std::map<MediaStreamTrackInterface*, std::string> track_to_id_;
Steve Anton593e3252017-12-15 11:44:48 -0800156
Steve Anton5dfde182018-02-06 10:34:40 -0800157 rtc::Optional<std::string> voice_mid_;
158 rtc::Optional<std::string> video_mid_;
159
stefanf79ade12017-06-02 06:44:03 -0700160 Call::Stats call_stats_;
hbosdf6075a2016-12-19 04:58:02 -0800161
hbos0e6758d2016-08-31 07:57:36 -0700162 // A timestamp, in microseconds, that is based on a timer that is
163 // monotonically increasing. That is, even if the system clock is modified the
164 // difference between the timer and this timestamp is how fresh the cached
165 // report is.
166 int64_t cache_timestamp_us_;
167 int64_t cache_lifetime_us_;
hbosd565b732016-08-30 14:04:35 -0700168 rtc::scoped_refptr<const RTCStatsReport> cached_report_;
hbos82ebe022016-11-14 01:41:09 -0800169
170 // Data recorded and maintained by the stats collector during its lifetime.
171 // Some stats are produced from this record instead of other components.
172 struct InternalRecord {
173 InternalRecord() : data_channels_opened(0),
174 data_channels_closed(0) {}
175
176 // The opened count goes up when a channel is fully opened and the closed
177 // count goes up if a previously opened channel has fully closed. The opened
178 // count does not go down when a channel closes, meaning (opened - closed)
179 // is the number of channels currently opened. A channel that is closed
180 // before reaching the open state does not affect these counters.
181 uint32_t data_channels_opened;
182 uint32_t data_channels_closed;
183 // Identifies by address channels that have been opened, which remain in the
184 // set until they have been fully closed.
185 std::set<uintptr_t> opened_data_channels;
186 };
187 InternalRecord internal_record_;
hbosd565b732016-08-30 14:04:35 -0700188};
189
hboscc555c52016-10-18 12:48:31 -0700190const char* CandidateTypeToRTCIceCandidateTypeForTesting(
191 const std::string& type);
192const char* DataStateToRTCDataChannelStateForTesting(
193 DataChannelInterface::DataState state);
hbosab9f6e42016-10-07 02:18:47 -0700194
hbosd565b732016-08-30 14:04:35 -0700195} // namespace webrtc
196
Mirko Bonadei92ea95e2017-09-15 06:47:31 +0200197#endif // PC_RTCSTATSCOLLECTOR_H_