blob: 2ff4c4906504791c7e6e85c30d45fae5a97b86d2 [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
Steve Anton57858b32018-02-15 15:19:50 -080081 // Structure for tracking stats about each RtpTransceiver managed by the
82 // PeerConnection. This can either by a Plan B style or Unified Plan style
83 // transceiver (i.e., can have 0 or many senders and receivers).
84 // Some fields are copied from the RtpTransceiver/BaseChannel object so that
85 // they can be accessed safely on threads other than the signaling thread.
86 // If a BaseChannel is not available (e.g., if signaling has not started),
87 // then |mid| and |transport_name| will be null.
88 struct RtpTransceiverStatsInfo {
89 rtc::scoped_refptr<RtpTransceiver> transceiver;
90 cricket::MediaType media_type;
91 rtc::Optional<std::string> mid;
92 rtc::Optional<std::string> transport_name;
93 std::unique_ptr<TrackMediaInfoMap> track_media_info_map;
94 };
95
hbosc82f2e12016-09-05 01:36:50 -070096 void AddPartialResults_s(rtc::scoped_refptr<RTCStatsReport> partial_report);
97 void DeliverCachedReport();
98
hbosab9f6e42016-10-07 02:18:47 -070099 // Produces |RTCCertificateStats|.
hbosdf6075a2016-12-19 04:58:02 -0800100 void ProduceCertificateStats_n(
hbos2fa7c672016-10-24 04:00:05 -0700101 int64_t timestamp_us,
102 const std::map<std::string, CertificateStatsPair>& transport_cert_stats,
hbos6ab97ce2016-10-03 14:16:56 -0700103 RTCStatsReport* report) const;
hbos0adb8282016-11-23 02:32:06 -0800104 // Produces |RTCCodecStats|.
hbosdf6075a2016-12-19 04:58:02 -0800105 void ProduceCodecStats_n(
Steve Anton57858b32018-02-15 15:19:50 -0800106 int64_t timestamp_us,
107 const std::vector<RtpTransceiverStatsInfo>& transceiver_stats_infos,
hbos0adb8282016-11-23 02:32:06 -0800108 RTCStatsReport* report) const;
hboscc555c52016-10-18 12:48:31 -0700109 // Produces |RTCDataChannelStats|.
110 void ProduceDataChannelStats_s(
111 int64_t timestamp_us, RTCStatsReport* report) const;
hbosc47a0c32016-10-11 14:54:49 -0700112 // Produces |RTCIceCandidatePairStats| and |RTCIceCandidateStats|.
hbosdf6075a2016-12-19 04:58:02 -0800113 void ProduceIceCandidateAndPairStats_n(
stefanf79ade12017-06-02 06:44:03 -0700114 int64_t timestamp_us,
Steve Anton5dfde182018-02-06 10:34:40 -0800115 const std::map<std::string, cricket::TransportStats>&
116 transport_stats_by_name,
stefanf79ade12017-06-02 06:44:03 -0700117 const Call::Stats& call_stats,
hbosab9f6e42016-10-07 02:18:47 -0700118 RTCStatsReport* report) const;
Steve Anton57858b32018-02-15 15:19:50 -0800119 // Produces |RTCMediaStreamStats|.
120 void ProduceMediaStreamStats_s(int64_t timestamp_us,
121 RTCStatsReport* report) const;
122 // Produces |RTCMediaStreamTrackStats|.
123 void ProduceMediaStreamTrackStats_s(int64_t timestamp_us,
124 RTCStatsReport* report) const;
hbosab9f6e42016-10-07 02:18:47 -0700125 // Produces |RTCPeerConnectionStats|.
hbos6ab97ce2016-10-03 14:16:56 -0700126 void ProducePeerConnectionStats_s(
127 int64_t timestamp_us, RTCStatsReport* report) const;
hboseeafe942016-11-01 03:00:17 -0700128 // Produces |RTCInboundRTPStreamStats| and |RTCOutboundRTPStreamStats|.
Steve Anton5dfde182018-02-06 10:34:40 -0800129 void ProduceRTPStreamStats_n(
130 int64_t timestamp_us,
Steve Anton57858b32018-02-15 15:19:50 -0800131 const std::vector<RtpTransceiverStatsInfo>& transceiver_stats_infos,
Steve Anton5dfde182018-02-06 10:34:40 -0800132 RTCStatsReport* report) const;
Steve Anton57858b32018-02-15 15:19:50 -0800133 void ProduceAudioRTPStreamStats_n(int64_t timestamp_us,
134 const RtpTransceiverStatsInfo& stats,
135 RTCStatsReport* report) const;
136 void ProduceVideoRTPStreamStats_n(int64_t timestamp_us,
137 const RtpTransceiverStatsInfo& stats,
138 RTCStatsReport* report) const;
hbos2fa7c672016-10-24 04:00:05 -0700139 // Produces |RTCTransportStats|.
hbosdf6075a2016-12-19 04:58:02 -0800140 void ProduceTransportStats_n(
Steve Anton5dfde182018-02-06 10:34:40 -0800141 int64_t timestamp_us,
142 const std::map<std::string, cricket::TransportStats>&
143 transport_stats_by_name,
hbos2fa7c672016-10-24 04:00:05 -0700144 const std::map<std::string, CertificateStatsPair>& transport_cert_stats,
145 RTCStatsReport* report) const;
146
147 // Helper function to stats-producing functions.
148 std::map<std::string, CertificateStatsPair>
Steve Anton5dfde182018-02-06 10:34:40 -0800149 PrepareTransportCertificateStats_n(
150 const std::map<std::string, cricket::TransportStats>&
151 transport_stats_by_name) const;
Steve Anton57858b32018-02-15 15:19:50 -0800152 std::vector<RtpTransceiverStatsInfo> PrepareTransceiverStatsInfos_s() const;
hbosd565b732016-08-30 14:04:35 -0700153
hbos82ebe022016-11-14 01:41:09 -0800154 // Slots for signals (sigslot) that are wired up to |pc_|.
155 void OnDataChannelCreated(DataChannel* channel);
156 // Slots for signals (sigslot) that are wired up to |channel|.
157 void OnDataChannelOpened(DataChannel* channel);
158 void OnDataChannelClosed(DataChannel* channel);
159
Steve Anton2d8609c2018-01-23 16:38:46 -0800160 PeerConnectionInternal* const pc_;
hbosc82f2e12016-09-05 01:36:50 -0700161 rtc::Thread* const signaling_thread_;
162 rtc::Thread* const worker_thread_;
163 rtc::Thread* const network_thread_;
164 rtc::AsyncInvoker invoker_;
165
166 int num_pending_partial_reports_;
167 int64_t partial_report_timestamp_us_;
168 rtc::scoped_refptr<RTCStatsReport> partial_report_;
169 std::vector<rtc::scoped_refptr<RTCStatsCollectorCallback>> callbacks_;
170
hbos84abeb12017-01-16 06:16:44 -0800171 // Set in |GetStatsReport|, read in |ProducePartialResultsOnNetworkThread| and
172 // |ProducePartialResultsOnSignalingThread|, reset after work is complete. Not
173 // passed as arguments to avoid copies. This is thread safe - when we
174 // set/reset we know there are no pending stats requests in progress.
Steve Anton57858b32018-02-15 15:19:50 -0800175 std::vector<RtpTransceiverStatsInfo> transceiver_stats_infos_;
Steve Anton5dfde182018-02-06 10:34:40 -0800176
stefanf79ade12017-06-02 06:44:03 -0700177 Call::Stats call_stats_;
hbosdf6075a2016-12-19 04:58:02 -0800178
hbos0e6758d2016-08-31 07:57:36 -0700179 // A timestamp, in microseconds, that is based on a timer that is
180 // monotonically increasing. That is, even if the system clock is modified the
181 // difference between the timer and this timestamp is how fresh the cached
182 // report is.
183 int64_t cache_timestamp_us_;
184 int64_t cache_lifetime_us_;
hbosd565b732016-08-30 14:04:35 -0700185 rtc::scoped_refptr<const RTCStatsReport> cached_report_;
hbos82ebe022016-11-14 01:41:09 -0800186
187 // Data recorded and maintained by the stats collector during its lifetime.
188 // Some stats are produced from this record instead of other components.
189 struct InternalRecord {
190 InternalRecord() : data_channels_opened(0),
191 data_channels_closed(0) {}
192
193 // The opened count goes up when a channel is fully opened and the closed
194 // count goes up if a previously opened channel has fully closed. The opened
195 // count does not go down when a channel closes, meaning (opened - closed)
196 // is the number of channels currently opened. A channel that is closed
197 // before reaching the open state does not affect these counters.
198 uint32_t data_channels_opened;
199 uint32_t data_channels_closed;
200 // Identifies by address channels that have been opened, which remain in the
201 // set until they have been fully closed.
202 std::set<uintptr_t> opened_data_channels;
203 };
204 InternalRecord internal_record_;
hbosd565b732016-08-30 14:04:35 -0700205};
206
hboscc555c52016-10-18 12:48:31 -0700207const char* CandidateTypeToRTCIceCandidateTypeForTesting(
208 const std::string& type);
209const char* DataStateToRTCDataChannelStateForTesting(
210 DataChannelInterface::DataState state);
hbosab9f6e42016-10-07 02:18:47 -0700211
hbosd565b732016-08-30 14:04:35 -0700212} // namespace webrtc
213
Mirko Bonadei92ea95e2017-09-15 06:47:31 +0200214#endif // PC_RTCSTATSCOLLECTOR_H_