blob: 6effe73384e9f936f87b231bafbf12b83abef7b8 [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"
27#include "pc/trackmediainfomap.h"
28#include "rtc_base/asyncinvoker.h"
29#include "rtc_base/refcount.h"
30#include "rtc_base/scoped_ref_ptr.h"
31#include "rtc_base/sigslot.h"
32#include "rtc_base/sslidentity.h"
33#include "rtc_base/timeutils.h"
hbosd565b732016-08-30 14:04:35 -070034
hbosab9f6e42016-10-07 02:18:47 -070035namespace cricket {
36class Candidate;
37} // namespace cricket
38
hbos6ab97ce2016-10-03 14:16:56 -070039namespace rtc {
hbos6ab97ce2016-10-03 14:16:56 -070040class SSLCertificate;
hbos6ab97ce2016-10-03 14:16:56 -070041} // namespace rtc
42
hbosd565b732016-08-30 14:04:35 -070043namespace webrtc {
44
45class PeerConnection;
hbos6ab97ce2016-10-03 14:16:56 -070046struct SessionStats;
hbosdf6075a2016-12-19 04:58:02 -080047struct ChannelNamePairs;
hbosd565b732016-08-30 14:04:35 -070048
hbosc82f2e12016-09-05 01:36:50 -070049// All public methods of the collector are to be called on the signaling thread.
50// Stats are gathered on the signaling, worker and network threads
51// asynchronously. The callback is invoked on the signaling thread. Resulting
52// reports are cached for |cache_lifetime_| ms.
hbos82ebe022016-11-14 01:41:09 -080053class RTCStatsCollector : public virtual rtc::RefCountInterface,
54 public sigslot::has_slots<> {
hbosc82f2e12016-09-05 01:36:50 -070055 public:
56 static rtc::scoped_refptr<RTCStatsCollector> Create(
hbosd565b732016-08-30 14:04:35 -070057 PeerConnection* pc,
hbos0e6758d2016-08-31 07:57:36 -070058 int64_t cache_lifetime_us = 50 * rtc::kNumMicrosecsPerMillisec);
hbosd565b732016-08-30 14:04:35 -070059
60 // Gets a recent stats report. If there is a report cached that is still fresh
61 // it is returned, otherwise new stats are gathered and returned. A report is
62 // considered fresh for |cache_lifetime_| ms. const RTCStatsReports are safe
63 // to use across multiple threads and may be destructed on any thread.
hbosc82f2e12016-09-05 01:36:50 -070064 void GetStatsReport(rtc::scoped_refptr<RTCStatsCollectorCallback> callback);
hbosd565b732016-08-30 14:04:35 -070065 // Clears the cache's reference to the most recent stats report. Subsequently
66 // calling |GetStatsReport| guarantees fresh stats.
67 void ClearCachedStatsReport();
68
hbosb78306a2016-12-19 05:06:57 -080069 // If there is a |GetStatsReport| requests in-flight, waits until it has been
70 // completed. Must be called on the signaling thread.
71 void WaitForPendingRequest();
72
hbosc82f2e12016-09-05 01:36:50 -070073 protected:
74 RTCStatsCollector(PeerConnection* pc, int64_t cache_lifetime_us);
hbosb78306a2016-12-19 05:06:57 -080075 ~RTCStatsCollector();
hbosd565b732016-08-30 14:04:35 -070076
hbosc82f2e12016-09-05 01:36:50 -070077 // Stats gathering on a particular thread. Calls |AddPartialResults| before
78 // returning. Virtual for the sake of testing.
79 virtual void ProducePartialResultsOnSignalingThread(int64_t timestamp_us);
hbosc82f2e12016-09-05 01:36:50 -070080 virtual void ProducePartialResultsOnNetworkThread(int64_t timestamp_us);
81
82 // Can be called on any thread.
83 void AddPartialResults(
84 const rtc::scoped_refptr<RTCStatsReport>& partial_report);
85
86 private:
hbos2fa7c672016-10-24 04:00:05 -070087 struct CertificateStatsPair {
88 std::unique_ptr<rtc::SSLCertificateStats> local;
89 std::unique_ptr<rtc::SSLCertificateStats> remote;
90 };
91
hbosc82f2e12016-09-05 01:36:50 -070092 void AddPartialResults_s(rtc::scoped_refptr<RTCStatsReport> partial_report);
93 void DeliverCachedReport();
94
hbosab9f6e42016-10-07 02:18:47 -070095 // Produces |RTCCertificateStats|.
hbosdf6075a2016-12-19 04:58:02 -080096 void ProduceCertificateStats_n(
hbos2fa7c672016-10-24 04:00:05 -070097 int64_t timestamp_us,
98 const std::map<std::string, CertificateStatsPair>& transport_cert_stats,
hbos6ab97ce2016-10-03 14:16:56 -070099 RTCStatsReport* report) const;
hbos0adb8282016-11-23 02:32:06 -0800100 // Produces |RTCCodecStats|.
hbosdf6075a2016-12-19 04:58:02 -0800101 void ProduceCodecStats_n(
hbos84abeb12017-01-16 06:16:44 -0800102 int64_t timestamp_us, const TrackMediaInfoMap& track_media_info_map,
hbos0adb8282016-11-23 02:32:06 -0800103 RTCStatsReport* report) const;
hboscc555c52016-10-18 12:48:31 -0700104 // Produces |RTCDataChannelStats|.
105 void ProduceDataChannelStats_s(
106 int64_t timestamp_us, RTCStatsReport* report) const;
hbosc47a0c32016-10-11 14:54:49 -0700107 // Produces |RTCIceCandidatePairStats| and |RTCIceCandidateStats|.
hbosdf6075a2016-12-19 04:58:02 -0800108 void ProduceIceCandidateAndPairStats_n(
stefanf79ade12017-06-02 06:44:03 -0700109 int64_t timestamp_us,
110 const SessionStats& session_stats,
hbos338f78a2017-02-07 06:41:21 -0800111 const cricket::VideoMediaInfo* video_media_info,
stefanf79ade12017-06-02 06:44:03 -0700112 const Call::Stats& call_stats,
hbosab9f6e42016-10-07 02:18:47 -0700113 RTCStatsReport* report) const;
hbos09bc1282016-11-08 06:29:22 -0800114 // Produces |RTCMediaStreamStats| and |RTCMediaStreamTrackStats|.
115 void ProduceMediaStreamAndTrackStats_s(
116 int64_t timestamp_us, RTCStatsReport* report) const;
hbosab9f6e42016-10-07 02:18:47 -0700117 // Produces |RTCPeerConnectionStats|.
hbos6ab97ce2016-10-03 14:16:56 -0700118 void ProducePeerConnectionStats_s(
119 int64_t timestamp_us, RTCStatsReport* report) const;
hboseeafe942016-11-01 03:00:17 -0700120 // Produces |RTCInboundRTPStreamStats| and |RTCOutboundRTPStreamStats|.
hbosdf6075a2016-12-19 04:58:02 -0800121 void ProduceRTPStreamStats_n(
hbos6ded1902016-11-01 01:50:46 -0700122 int64_t timestamp_us, const SessionStats& session_stats,
hbos84abeb12017-01-16 06:16:44 -0800123 const TrackMediaInfoMap& track_media_info_map,
124 RTCStatsReport* report) const;
hbos2fa7c672016-10-24 04:00:05 -0700125 // Produces |RTCTransportStats|.
hbosdf6075a2016-12-19 04:58:02 -0800126 void ProduceTransportStats_n(
hbos2fa7c672016-10-24 04:00:05 -0700127 int64_t timestamp_us, const SessionStats& session_stats,
128 const std::map<std::string, CertificateStatsPair>& transport_cert_stats,
129 RTCStatsReport* report) const;
130
131 // Helper function to stats-producing functions.
132 std::map<std::string, CertificateStatsPair>
hbosdf6075a2016-12-19 04:58:02 -0800133 PrepareTransportCertificateStats_n(const SessionStats& session_stats) const;
hbos84abeb12017-01-16 06:16:44 -0800134 std::unique_ptr<TrackMediaInfoMap> PrepareTrackMediaInfoMap_s() const;
135 std::map<MediaStreamTrackInterface*, std::string> PrepareTrackToID_s() const;
hbosd565b732016-08-30 14:04:35 -0700136
hbos82ebe022016-11-14 01:41:09 -0800137 // Slots for signals (sigslot) that are wired up to |pc_|.
138 void OnDataChannelCreated(DataChannel* channel);
139 // Slots for signals (sigslot) that are wired up to |channel|.
140 void OnDataChannelOpened(DataChannel* channel);
141 void OnDataChannelClosed(DataChannel* channel);
142
hbosd565b732016-08-30 14:04:35 -0700143 PeerConnection* const pc_;
hbosc82f2e12016-09-05 01:36:50 -0700144 rtc::Thread* const signaling_thread_;
145 rtc::Thread* const worker_thread_;
146 rtc::Thread* const network_thread_;
147 rtc::AsyncInvoker invoker_;
148
149 int num_pending_partial_reports_;
150 int64_t partial_report_timestamp_us_;
151 rtc::scoped_refptr<RTCStatsReport> partial_report_;
152 std::vector<rtc::scoped_refptr<RTCStatsCollectorCallback>> callbacks_;
153
hbos84abeb12017-01-16 06:16:44 -0800154 // Set in |GetStatsReport|, read in |ProducePartialResultsOnNetworkThread| and
155 // |ProducePartialResultsOnSignalingThread|, reset after work is complete. Not
156 // passed as arguments to avoid copies. This is thread safe - when we
157 // set/reset we know there are no pending stats requests in progress.
hbosdf6075a2016-12-19 04:58:02 -0800158 std::unique_ptr<ChannelNamePairs> channel_name_pairs_;
hbos84abeb12017-01-16 06:16:44 -0800159 std::unique_ptr<TrackMediaInfoMap> track_media_info_map_;
160 std::map<MediaStreamTrackInterface*, std::string> track_to_id_;
stefanf79ade12017-06-02 06:44:03 -0700161 Call::Stats call_stats_;
hbosdf6075a2016-12-19 04:58:02 -0800162
hbos0e6758d2016-08-31 07:57:36 -0700163 // A timestamp, in microseconds, that is based on a timer that is
164 // monotonically increasing. That is, even if the system clock is modified the
165 // difference between the timer and this timestamp is how fresh the cached
166 // report is.
167 int64_t cache_timestamp_us_;
168 int64_t cache_lifetime_us_;
hbosd565b732016-08-30 14:04:35 -0700169 rtc::scoped_refptr<const RTCStatsReport> cached_report_;
hbos82ebe022016-11-14 01:41:09 -0800170
171 // Data recorded and maintained by the stats collector during its lifetime.
172 // Some stats are produced from this record instead of other components.
173 struct InternalRecord {
174 InternalRecord() : data_channels_opened(0),
175 data_channels_closed(0) {}
176
177 // The opened count goes up when a channel is fully opened and the closed
178 // count goes up if a previously opened channel has fully closed. The opened
179 // count does not go down when a channel closes, meaning (opened - closed)
180 // is the number of channels currently opened. A channel that is closed
181 // before reaching the open state does not affect these counters.
182 uint32_t data_channels_opened;
183 uint32_t data_channels_closed;
184 // Identifies by address channels that have been opened, which remain in the
185 // set until they have been fully closed.
186 std::set<uintptr_t> opened_data_channels;
187 };
188 InternalRecord internal_record_;
hbosd565b732016-08-30 14:04:35 -0700189};
190
hboscc555c52016-10-18 12:48:31 -0700191const char* CandidateTypeToRTCIceCandidateTypeForTesting(
192 const std::string& type);
193const char* DataStateToRTCDataChannelStateForTesting(
194 DataChannelInterface::DataState state);
hbosab9f6e42016-10-07 02:18:47 -0700195
hbosd565b732016-08-30 14:04:35 -0700196} // namespace webrtc
197
Mirko Bonadei92ea95e2017-09-15 06:47:31 +0200198#endif // PC_RTCSTATSCOLLECTOR_H_