blob: 27e00ee7ca11fec568739c42fba5d0a4fc926f35 [file] [log] [blame]
mflodman@webrtc.orgb2f474e2012-11-16 13:57:26 +00001/*
2 * Copyright (c) 2012 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#include "video/call_stats.h"
mflodman@webrtc.orgb2f474e2012-11-16 13:57:26 +000012
Peter Boström7623ce42015-12-09 12:13:30 +010013#include <algorithm>
Yves Gerey3e707812018-11-28 16:47:49 +010014#include <memory>
Peter Boström7623ce42015-12-09 12:13:30 +010015
Steve Antonbd631a02019-03-28 10:51:27 -070016#include "absl/algorithm/container.h"
Tommi38c5d932018-03-27 23:11:09 +020017#include "modules/utility/include/process_thread.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020018#include "rtc_base/checks.h"
Tommi38c5d932018-03-27 23:11:09 +020019#include "rtc_base/location.h"
Danil Chapovalov1aa75812019-03-05 11:11:35 +010020#include "rtc_base/task_utils/to_queued_task.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020021#include "system_wrappers/include/metrics.h"
mflodman@webrtc.orgb2f474e2012-11-16 13:57:26 +000022
23namespace webrtc {
asapersson@webrtc.org8084f952014-12-10 11:04:13 +000024namespace {
asapersson@webrtc.org8084f952014-12-10 11:04:13 +000025
26void RemoveOldReports(int64_t now, std::list<CallStats::RttTime>* reports) {
Tommi38c5d932018-03-27 23:11:09 +020027 static constexpr const int64_t kRttTimeoutMs = 1500;
28 reports->remove_if(
29 [&now](CallStats::RttTime& r) { return now - r.time > kRttTimeoutMs; });
asapersson@webrtc.org8084f952014-12-10 11:04:13 +000030}
31
Tommi38c5d932018-03-27 23:11:09 +020032int64_t GetMaxRttMs(const std::list<CallStats::RttTime>& reports) {
33 int64_t max_rtt_ms = -1;
34 for (const CallStats::RttTime& rtt_time : reports)
sprange2d83d62016-02-19 09:03:26 -080035 max_rtt_ms = std::max(rtt_time.rtt, max_rtt_ms);
asapersson@webrtc.org8084f952014-12-10 11:04:13 +000036 return max_rtt_ms;
37}
38
Tommi38c5d932018-03-27 23:11:09 +020039int64_t GetAvgRttMs(const std::list<CallStats::RttTime>& reports) {
40 RTC_DCHECK(!reports.empty());
pkasting@chromium.org16825b12015-01-12 21:51:21 +000041 int64_t sum = 0;
Tommi38c5d932018-03-27 23:11:09 +020042 for (std::list<CallStats::RttTime>::const_iterator it = reports.begin();
43 it != reports.end(); ++it) {
asapersson@webrtc.org8084f952014-12-10 11:04:13 +000044 sum += it->rtt;
45 }
Tommi38c5d932018-03-27 23:11:09 +020046 return sum / reports.size();
asapersson@webrtc.org8084f952014-12-10 11:04:13 +000047}
48
Tommi38c5d932018-03-27 23:11:09 +020049int64_t GetNewAvgRttMs(const std::list<CallStats::RttTime>& reports,
50 int64_t prev_avg_rtt) {
51 if (reports.empty())
52 return -1; // Reset (invalid average).
53
sprange2d83d62016-02-19 09:03:26 -080054 int64_t cur_rtt_ms = GetAvgRttMs(reports);
Tommi38c5d932018-03-27 23:11:09 +020055 if (prev_avg_rtt == -1)
56 return cur_rtt_ms; // New initial average value.
57
58 // Weight factor to apply to the average rtt.
59 // We weigh the old average at 70% against the new average (30%).
60 constexpr const float kWeightFactor = 0.3f;
61 return prev_avg_rtt * (1.0f - kWeightFactor) + cur_rtt_ms * kWeightFactor;
asapersson@webrtc.org8084f952014-12-10 11:04:13 +000062}
mflodman@webrtc.orgb2f474e2012-11-16 13:57:26 +000063
Tommi38c5d932018-03-27 23:11:09 +020064// This class is used to de-register a Module from a ProcessThread to satisfy
65// threading requirements of the Module (CallStats).
66// The guarantee offered by TemporaryDeregistration is that while its in scope,
67// no calls to |TimeUntilNextProcess| or |Process()| will occur and therefore
68// synchronization with those methods, is not necessary.
69class TemporaryDeregistration {
mflodman@webrtc.orgb2f474e2012-11-16 13:57:26 +000070 public:
Tommi38c5d932018-03-27 23:11:09 +020071 TemporaryDeregistration(Module* module,
72 ProcessThread* process_thread,
73 bool thread_running)
74 : module_(module),
75 process_thread_(process_thread),
76 deregistered_(thread_running) {
77 if (thread_running)
78 process_thread_->DeRegisterModule(module_);
mflodman@webrtc.orgb2f474e2012-11-16 13:57:26 +000079 }
Tommi38c5d932018-03-27 23:11:09 +020080 ~TemporaryDeregistration() {
81 if (deregistered_)
82 process_thread_->RegisterModule(module_, RTC_FROM_HERE);
asapersson@webrtc.org1ae1d0c2013-11-20 12:46:11 +000083 }
84
mflodman@webrtc.orgb2f474e2012-11-16 13:57:26 +000085 private:
Tommi38c5d932018-03-27 23:11:09 +020086 Module* const module_;
87 ProcessThread* const process_thread_;
88 const bool deregistered_;
mflodman@webrtc.orgb2f474e2012-11-16 13:57:26 +000089};
90
Tommi38c5d932018-03-27 23:11:09 +020091} // namespace
92
93CallStats::CallStats(Clock* clock, ProcessThread* process_thread)
Peter Boströmd3c94472015-12-09 11:20:58 +010094 : clock_(clock),
Peter Boströmd3c94472015-12-09 11:20:58 +010095 last_process_time_(clock_->TimeInMilliseconds()),
sprange2d83d62016-02-19 09:03:26 -080096 max_rtt_ms_(-1),
97 avg_rtt_ms_(-1),
98 sum_avg_rtt_ms_(0),
99 num_avg_rtt_(0),
Tommi38c5d932018-03-27 23:11:09 +0200100 time_of_first_rtt_ms_(-1),
101 process_thread_(process_thread),
102 process_thread_running_(false) {
103 RTC_DCHECK(process_thread_);
Sebastian Janssonc01367d2019-04-08 15:20:44 +0200104 process_thread_checker_.Detach();
Tommi38c5d932018-03-27 23:11:09 +0200105}
mflodman@webrtc.orgb2f474e2012-11-16 13:57:26 +0000106
107CallStats::~CallStats() {
Tommi38c5d932018-03-27 23:11:09 +0200108 RTC_DCHECK_RUN_ON(&construction_thread_checker_);
109 RTC_DCHECK(!process_thread_running_);
sprange2d83d62016-02-19 09:03:26 -0800110 RTC_DCHECK(observers_.empty());
Tommi38c5d932018-03-27 23:11:09 +0200111
sprange2d83d62016-02-19 09:03:26 -0800112 UpdateHistograms();
mflodman@webrtc.orgb2f474e2012-11-16 13:57:26 +0000113}
114
pkasting@chromium.org0b1534c2014-12-15 22:09:40 +0000115int64_t CallStats::TimeUntilNextProcess() {
Tommi38c5d932018-03-27 23:11:09 +0200116 RTC_DCHECK_RUN_ON(&process_thread_checker_);
Peter Boströmd3c94472015-12-09 11:20:58 +0100117 return last_process_time_ + kUpdateIntervalMs - clock_->TimeInMilliseconds();
mflodman@webrtc.orgb2f474e2012-11-16 13:57:26 +0000118}
119
pbosa26ac922016-02-25 04:50:01 -0800120void CallStats::Process() {
Tommi38c5d932018-03-27 23:11:09 +0200121 RTC_DCHECK_RUN_ON(&process_thread_checker_);
Peter Boströmd3c94472015-12-09 11:20:58 +0100122 int64_t now = clock_->TimeInMilliseconds();
asapersson@webrtc.org8084f952014-12-10 11:04:13 +0000123 last_process_time_ = now;
mflodman@webrtc.orgb2f474e2012-11-16 13:57:26 +0000124
Tommi48b48e52019-08-09 11:42:32 +0200125 // |avg_rtt_ms_| is allowed to be read on the process thread since that's the
126 // only thread that modifies the value.
Tommi38c5d932018-03-27 23:11:09 +0200127 int64_t avg_rtt_ms = avg_rtt_ms_;
asapersson@webrtc.org8084f952014-12-10 11:04:13 +0000128 RemoveOldReports(now, &reports_);
Tommi38c5d932018-03-27 23:11:09 +0200129 max_rtt_ms_ = GetMaxRttMs(reports_);
130 avg_rtt_ms = GetNewAvgRttMs(reports_, avg_rtt_ms);
131 {
132 rtc::CritScope lock(&avg_rtt_ms_lock_);
133 avg_rtt_ms_ = avg_rtt_ms;
134 }
stefan@webrtc.org8ca8a712013-04-23 16:48:32 +0000135
asapersson@webrtc.org8084f952014-12-10 11:04:13 +0000136 // If there is a valid rtt, update all observers with the max rtt.
sprange2d83d62016-02-19 09:03:26 -0800137 if (max_rtt_ms_ >= 0) {
Tommi38c5d932018-03-27 23:11:09 +0200138 RTC_DCHECK_GE(avg_rtt_ms, 0);
139 for (CallStatsObserver* observer : observers_)
140 observer->OnRttUpdate(avg_rtt_ms, max_rtt_ms_);
sprange2d83d62016-02-19 09:03:26 -0800141 // Sum for Histogram of average RTT reported over the entire call.
Tommi38c5d932018-03-27 23:11:09 +0200142 sum_avg_rtt_ms_ += avg_rtt_ms;
sprange2d83d62016-02-19 09:03:26 -0800143 ++num_avg_rtt_;
mflodman@webrtc.orgb2f474e2012-11-16 13:57:26 +0000144 }
mflodman@webrtc.orgb2f474e2012-11-16 13:57:26 +0000145}
146
Tommi38c5d932018-03-27 23:11:09 +0200147void CallStats::ProcessThreadAttached(ProcessThread* process_thread) {
148 RTC_DCHECK_RUN_ON(&construction_thread_checker_);
149 RTC_DCHECK(!process_thread || process_thread_ == process_thread);
150 process_thread_running_ = process_thread != nullptr;
asapersson@webrtc.org1ae1d0c2013-11-20 12:46:11 +0000151
Tommi38c5d932018-03-27 23:11:09 +0200152 // Whether we just got attached or detached, we clear the
153 // |process_thread_checker_| so that it can be used to protect variables
154 // in either the process thread when it starts again, or UpdateHistograms()
155 // (mutually exclusive).
Sebastian Janssonc01367d2019-04-08 15:20:44 +0200156 process_thread_checker_.Detach();
mflodman@webrtc.orgb2f474e2012-11-16 13:57:26 +0000157}
158
fischman@webrtc.orgaea96d32013-02-19 22:09:36 +0000159void CallStats::RegisterStatsObserver(CallStatsObserver* observer) {
Tommi38c5d932018-03-27 23:11:09 +0200160 RTC_DCHECK_RUN_ON(&construction_thread_checker_);
161 TemporaryDeregistration deregister(this, process_thread_,
162 process_thread_running_);
163
Steve Antonbd631a02019-03-28 10:51:27 -0700164 if (!absl::c_linear_search(observers_, observer))
Tommi38c5d932018-03-27 23:11:09 +0200165 observers_.push_back(observer);
mflodman@webrtc.orgb2f474e2012-11-16 13:57:26 +0000166}
167
fischman@webrtc.orgaea96d32013-02-19 22:09:36 +0000168void CallStats::DeregisterStatsObserver(CallStatsObserver* observer) {
Tommi38c5d932018-03-27 23:11:09 +0200169 RTC_DCHECK_RUN_ON(&construction_thread_checker_);
170 TemporaryDeregistration deregister(this, process_thread_,
171 process_thread_running_);
172 observers_.remove(observer);
173}
174
175int64_t CallStats::LastProcessedRtt() const {
Tommi48b48e52019-08-09 11:42:32 +0200176 // TODO(tommi): This currently gets called from the construction thread of
177 // Call as well as from the process thread. Look into restricting this to
178 // allow only reading this from the process thread (or TQ once we get there)
179 // so that the lock isn't necessary.
180
Tommi38c5d932018-03-27 23:11:09 +0200181 rtc::CritScope cs(&avg_rtt_ms_lock_);
182 return avg_rtt_ms_;
mflodman@webrtc.orgb2f474e2012-11-16 13:57:26 +0000183}
184
pkasting@chromium.org16825b12015-01-12 21:51:21 +0000185void CallStats::OnRttUpdate(int64_t rtt) {
Tommi48b48e52019-08-09 11:42:32 +0200186 RTC_DCHECK_RUN_ON(&process_thread_checker_);
Tommi38c5d932018-03-27 23:11:09 +0200187
Tommi48b48e52019-08-09 11:42:32 +0200188 int64_t now_ms = clock_->TimeInMilliseconds();
189 reports_.push_back(RttTime(rtt, now_ms));
190 if (time_of_first_rtt_ms_ == -1)
191 time_of_first_rtt_ms_ = now_ms;
192
193 // Make sure Process() will be called and deliver the updates asynchronously.
194 last_process_time_ -= kUpdateIntervalMs;
195 process_thread_->WakeUp(this);
sprange2d83d62016-02-19 09:03:26 -0800196}
197
198void CallStats::UpdateHistograms() {
Tommi38c5d932018-03-27 23:11:09 +0200199 RTC_DCHECK_RUN_ON(&construction_thread_checker_);
200 RTC_DCHECK(!process_thread_running_);
sprange2d83d62016-02-19 09:03:26 -0800201
Tommi38c5d932018-03-27 23:11:09 +0200202 // The extra scope is because we have two 'dcheck run on' thread checkers.
203 // This is a special case since it's safe to access variables on the current
204 // thread that normally are only touched on the process thread.
205 // Since we're not attached to the process thread and/or the process thread
206 // isn't running, it's OK to touch these variables here.
207 {
208 // This method is called on the ctor thread (usually from the dtor, unless
209 // a test calls it). It's a requirement that the function be called when
210 // the process thread is not running (a condition that's met at destruction
211 // time), and thanks to that, we don't need a lock to synchronize against
212 // it.
213 RTC_DCHECK_RUN_ON(&process_thread_checker_);
214
215 if (time_of_first_rtt_ms_ == -1 || num_avg_rtt_ < 1)
216 return;
217
218 int64_t elapsed_sec =
219 (clock_->TimeInMilliseconds() - time_of_first_rtt_ms_) / 1000;
220 if (elapsed_sec >= metrics::kMinRunTimeInSeconds) {
221 int64_t avg_rtt_ms = (sum_avg_rtt_ms_ + num_avg_rtt_ / 2) / num_avg_rtt_;
222 RTC_HISTOGRAM_COUNTS_10000(
223 "WebRTC.Video.AverageRoundTripTimeInMilliseconds", avg_rtt_ms);
224 }
sprange2d83d62016-02-19 09:03:26 -0800225 }
mflodman@webrtc.orgb2f474e2012-11-16 13:57:26 +0000226}
227
228} // namespace webrtc