blob: 0549966a934ee02d7e81fd4bdd50a8ce347ff777 [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,
99 const SessionStats& session_stats,
hbos338f78a2017-02-07 06:41:21 -0800100 const cricket::VideoMediaInfo* video_media_info,
stefanf79ade12017-06-02 06:44:03 -0700101 const Call::Stats& call_stats,
hbosab9f6e42016-10-07 02:18:47 -0700102 RTCStatsReport* report) const;
hbos09bc1282016-11-08 06:29:22 -0800103 // Produces |RTCMediaStreamStats| and |RTCMediaStreamTrackStats|.
104 void ProduceMediaStreamAndTrackStats_s(
105 int64_t timestamp_us, RTCStatsReport* report) const;
hbosab9f6e42016-10-07 02:18:47 -0700106 // Produces |RTCPeerConnectionStats|.
hbos6ab97ce2016-10-03 14:16:56 -0700107 void ProducePeerConnectionStats_s(
108 int64_t timestamp_us, RTCStatsReport* report) const;
hboseeafe942016-11-01 03:00:17 -0700109 // Produces |RTCInboundRTPStreamStats| and |RTCOutboundRTPStreamStats|.
Steve Anton593e3252017-12-15 11:44:48 -0800110 void ProduceRTPStreamStats_n(int64_t timestamp_us,
111 const SessionStats& session_stats,
112 const ChannelNamePairs& channel_name_pairs,
113 const TrackMediaInfoMap& track_media_info_map,
114 RTCStatsReport* report) const;
hbos2fa7c672016-10-24 04:00:05 -0700115 // Produces |RTCTransportStats|.
hbosdf6075a2016-12-19 04:58:02 -0800116 void ProduceTransportStats_n(
hbos2fa7c672016-10-24 04:00:05 -0700117 int64_t timestamp_us, const SessionStats& session_stats,
118 const std::map<std::string, CertificateStatsPair>& transport_cert_stats,
119 RTCStatsReport* report) const;
120
121 // Helper function to stats-producing functions.
122 std::map<std::string, CertificateStatsPair>
hbosdf6075a2016-12-19 04:58:02 -0800123 PrepareTransportCertificateStats_n(const SessionStats& session_stats) const;
hbos84abeb12017-01-16 06:16:44 -0800124 std::unique_ptr<TrackMediaInfoMap> PrepareTrackMediaInfoMap_s() const;
125 std::map<MediaStreamTrackInterface*, std::string> PrepareTrackToID_s() const;
hbosd565b732016-08-30 14:04:35 -0700126
hbos82ebe022016-11-14 01:41:09 -0800127 // Slots for signals (sigslot) that are wired up to |pc_|.
128 void OnDataChannelCreated(DataChannel* channel);
129 // Slots for signals (sigslot) that are wired up to |channel|.
130 void OnDataChannelOpened(DataChannel* channel);
131 void OnDataChannelClosed(DataChannel* channel);
132
Steve Anton2d8609c2018-01-23 16:38:46 -0800133 PeerConnectionInternal* const pc_;
hbosc82f2e12016-09-05 01:36:50 -0700134 rtc::Thread* const signaling_thread_;
135 rtc::Thread* const worker_thread_;
136 rtc::Thread* const network_thread_;
137 rtc::AsyncInvoker invoker_;
138
139 int num_pending_partial_reports_;
140 int64_t partial_report_timestamp_us_;
141 rtc::scoped_refptr<RTCStatsReport> partial_report_;
142 std::vector<rtc::scoped_refptr<RTCStatsCollectorCallback>> callbacks_;
143
hbos84abeb12017-01-16 06:16:44 -0800144 // Set in |GetStatsReport|, read in |ProducePartialResultsOnNetworkThread| and
145 // |ProducePartialResultsOnSignalingThread|, reset after work is complete. Not
146 // passed as arguments to avoid copies. This is thread safe - when we
147 // set/reset we know there are no pending stats requests in progress.
hbosdf6075a2016-12-19 04:58:02 -0800148 std::unique_ptr<ChannelNamePairs> channel_name_pairs_;
hbos84abeb12017-01-16 06:16:44 -0800149 std::unique_ptr<TrackMediaInfoMap> track_media_info_map_;
150 std::map<MediaStreamTrackInterface*, std::string> track_to_id_;
Steve Anton593e3252017-12-15 11:44:48 -0800151
stefanf79ade12017-06-02 06:44:03 -0700152 Call::Stats call_stats_;
hbosdf6075a2016-12-19 04:58:02 -0800153
hbos0e6758d2016-08-31 07:57:36 -0700154 // A timestamp, in microseconds, that is based on a timer that is
155 // monotonically increasing. That is, even if the system clock is modified the
156 // difference between the timer and this timestamp is how fresh the cached
157 // report is.
158 int64_t cache_timestamp_us_;
159 int64_t cache_lifetime_us_;
hbosd565b732016-08-30 14:04:35 -0700160 rtc::scoped_refptr<const RTCStatsReport> cached_report_;
hbos82ebe022016-11-14 01:41:09 -0800161
162 // Data recorded and maintained by the stats collector during its lifetime.
163 // Some stats are produced from this record instead of other components.
164 struct InternalRecord {
165 InternalRecord() : data_channels_opened(0),
166 data_channels_closed(0) {}
167
168 // The opened count goes up when a channel is fully opened and the closed
169 // count goes up if a previously opened channel has fully closed. The opened
170 // count does not go down when a channel closes, meaning (opened - closed)
171 // is the number of channels currently opened. A channel that is closed
172 // before reaching the open state does not affect these counters.
173 uint32_t data_channels_opened;
174 uint32_t data_channels_closed;
175 // Identifies by address channels that have been opened, which remain in the
176 // set until they have been fully closed.
177 std::set<uintptr_t> opened_data_channels;
178 };
179 InternalRecord internal_record_;
hbosd565b732016-08-30 14:04:35 -0700180};
181
hboscc555c52016-10-18 12:48:31 -0700182const char* CandidateTypeToRTCIceCandidateTypeForTesting(
183 const std::string& type);
184const char* DataStateToRTCDataChannelStateForTesting(
185 DataChannelInterface::DataState state);
hbosab9f6e42016-10-07 02:18:47 -0700186
hbosd565b732016-08-30 14:04:35 -0700187} // namespace webrtc
188
Mirko Bonadei92ea95e2017-09-15 06:47:31 +0200189#endif // PC_RTCSTATSCOLLECTOR_H_