OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 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 | 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 | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 #include "webrtc/video/call_stats.h" | 11 #include "webrtc/video/call_stats.h" |
12 | 12 |
13 #include <assert.h> | |
14 | |
15 #include <algorithm> | 13 #include <algorithm> |
16 | 14 |
15 #include "webrtc/base/checks.h" | |
17 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" | 16 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" |
17 #include "webrtc/system_wrappers/include/metrics.h" | |
18 #include "webrtc/system_wrappers/include/tick_util.h" | 18 #include "webrtc/system_wrappers/include/tick_util.h" |
19 | 19 |
20 namespace webrtc { | 20 namespace webrtc { |
21 namespace { | 21 namespace { |
22 // Time interval for updating the observers. | 22 // Time interval for updating the observers. |
23 const int64_t kUpdateIntervalMs = 1000; | 23 const int64_t kUpdateIntervalMs = 1000; |
24 // Weight factor to apply to the average rtt. | 24 // Weight factor to apply to the average rtt. |
25 const float kWeightFactor = 0.3f; | 25 const float kWeightFactor = 0.3f; |
26 | 26 |
27 void RemoveOldReports(int64_t now, std::list<CallStats::RttTime>* reports) { | 27 void RemoveOldReports(int64_t now, std::list<CallStats::RttTime>* reports) { |
28 // A rtt report is considered valid for this long. | 28 // A rtt report is considered valid for this long. |
29 const int64_t kRttTimeoutMs = 1500; | 29 const int64_t kRttTimeoutMs = 1500; |
30 while (!reports->empty() && | 30 while (!reports->empty() && |
31 (now - reports->front().time) > kRttTimeoutMs) { | 31 (now - reports->front().time) > kRttTimeoutMs) { |
32 reports->pop_front(); | 32 reports->pop_front(); |
33 } | 33 } |
34 } | 34 } |
35 | 35 |
36 int64_t GetMaxRttMs(std::list<CallStats::RttTime>* reports) { | 36 int64_t GetMaxRttMs(std::list<CallStats::RttTime>* reports) { |
37 if (reports->empty()) | |
38 return -1; | |
37 int64_t max_rtt_ms = 0; | 39 int64_t max_rtt_ms = 0; |
38 for (std::list<CallStats::RttTime>::const_iterator it = reports->begin(); | 40 for (const CallStats::RttTime& rtt_time : *reports) |
39 it != reports->end(); ++it) { | 41 max_rtt_ms = std::max(rtt_time.rtt, max_rtt_ms); |
40 max_rtt_ms = std::max(it->rtt, max_rtt_ms); | |
41 } | |
42 return max_rtt_ms; | 42 return max_rtt_ms; |
43 } | 43 } |
44 | 44 |
45 int64_t GetAvgRttMs(std::list<CallStats::RttTime>* reports) { | 45 int64_t GetAvgRttMs(std::list<CallStats::RttTime>* reports) { |
46 if (reports->empty()) { | 46 if (reports->empty()) { |
47 return 0; | 47 return -1; |
48 } | 48 } |
49 int64_t sum = 0; | 49 int64_t sum = 0; |
50 for (std::list<CallStats::RttTime>::const_iterator it = reports->begin(); | 50 for (std::list<CallStats::RttTime>::const_iterator it = reports->begin(); |
51 it != reports->end(); ++it) { | 51 it != reports->end(); ++it) { |
52 sum += it->rtt; | 52 sum += it->rtt; |
53 } | 53 } |
54 return sum / reports->size(); | 54 return sum / reports->size(); |
55 } | 55 } |
56 | 56 |
57 void UpdateAvgRttMs(std::list<CallStats::RttTime>* reports, int64_t* avg_rtt) { | 57 void UpdateAvgRttMs(std::list<CallStats::RttTime>* reports, int64_t* avg_rtt) { |
58 uint32_t cur_rtt_ms = GetAvgRttMs(reports); | 58 int64_t cur_rtt_ms = GetAvgRttMs(reports); |
59 if (cur_rtt_ms == 0) { | 59 if (cur_rtt_ms == -1) { |
60 // Reset. | 60 // Reset. |
61 *avg_rtt = 0; | 61 *avg_rtt = -1; |
62 return; | 62 return; |
63 } | 63 } |
64 if (*avg_rtt == 0) { | 64 if (*avg_rtt == -1) { |
65 // Initialize. | 65 // Initialize. |
66 *avg_rtt = cur_rtt_ms; | 66 *avg_rtt = cur_rtt_ms; |
67 return; | 67 return; |
68 } | 68 } |
69 *avg_rtt = *avg_rtt * (1.0f - kWeightFactor) + cur_rtt_ms * kWeightFactor; | 69 *avg_rtt = *avg_rtt * (1.0f - kWeightFactor) + cur_rtt_ms * kWeightFactor; |
70 } | 70 } |
71 } // namespace | 71 } // namespace |
72 | 72 |
73 class RtcpObserver : public RtcpRttStats { | 73 class RtcpObserver : public RtcpRttStats { |
74 public: | 74 public: |
(...skipping 12 matching lines...) Expand all Loading... | |
87 private: | 87 private: |
88 CallStats* owner_; | 88 CallStats* owner_; |
89 | 89 |
90 RTC_DISALLOW_COPY_AND_ASSIGN(RtcpObserver); | 90 RTC_DISALLOW_COPY_AND_ASSIGN(RtcpObserver); |
91 }; | 91 }; |
92 | 92 |
93 CallStats::CallStats(Clock* clock) | 93 CallStats::CallStats(Clock* clock) |
94 : clock_(clock), | 94 : clock_(clock), |
95 rtcp_rtt_stats_(new RtcpObserver(this)), | 95 rtcp_rtt_stats_(new RtcpObserver(this)), |
96 last_process_time_(clock_->TimeInMilliseconds()), | 96 last_process_time_(clock_->TimeInMilliseconds()), |
97 max_rtt_ms_(0), | 97 max_rtt_ms_(-1), |
98 avg_rtt_ms_(0) {} | 98 avg_rtt_ms_(-1), |
99 time_of_first_rtt_ms_(-1) {} | |
99 | 100 |
100 CallStats::~CallStats() { | 101 CallStats::~CallStats() { |
101 assert(observers_.empty()); | 102 RTC_CHECK(observers_.empty()); |
åsapersson
2016/02/08 09:26:14
maybe DCHECK?
sprang
2016/02/08 10:34:24
Done.
| |
103 UpdateHistograms(); | |
102 } | 104 } |
103 | 105 |
104 int64_t CallStats::TimeUntilNextProcess() { | 106 int64_t CallStats::TimeUntilNextProcess() { |
105 return last_process_time_ + kUpdateIntervalMs - clock_->TimeInMilliseconds(); | 107 return last_process_time_ + kUpdateIntervalMs - clock_->TimeInMilliseconds(); |
106 } | 108 } |
107 | 109 |
108 int32_t CallStats::Process() { | 110 int32_t CallStats::Process() { |
109 rtc::CritScope cs(&crit_); | 111 rtc::CritScope cs(&crit_); |
110 int64_t now = clock_->TimeInMilliseconds(); | 112 int64_t now = clock_->TimeInMilliseconds(); |
111 if (now < last_process_time_ + kUpdateIntervalMs) | 113 if (now < last_process_time_ + kUpdateIntervalMs) |
112 return 0; | 114 return 0; |
113 | 115 |
114 last_process_time_ = now; | 116 last_process_time_ = now; |
115 | 117 |
116 RemoveOldReports(now, &reports_); | 118 RemoveOldReports(now, &reports_); |
117 max_rtt_ms_ = GetMaxRttMs(&reports_); | 119 max_rtt_ms_ = GetMaxRttMs(&reports_); |
118 UpdateAvgRttMs(&reports_, &avg_rtt_ms_); | 120 UpdateAvgRttMs(&reports_, &avg_rtt_ms_); |
119 | 121 |
120 // If there is a valid rtt, update all observers with the max rtt. | 122 // If there is a valid rtt, update all observers with the max rtt. |
121 // TODO(asapersson): Consider changing this to report the average rtt. | 123 if (max_rtt_ms_ >= 0) { |
122 if (max_rtt_ms_ > 0) { | |
123 for (std::list<CallStatsObserver*>::iterator it = observers_.begin(); | 124 for (std::list<CallStatsObserver*>::iterator it = observers_.begin(); |
124 it != observers_.end(); ++it) { | 125 it != observers_.end(); ++it) { |
125 (*it)->OnRttUpdate(avg_rtt_ms_, max_rtt_ms_); | 126 (*it)->OnRttUpdate(avg_rtt_ms_, max_rtt_ms_); |
126 } | 127 } |
127 } | 128 } |
128 return 0; | 129 return 0; |
129 } | 130 } |
130 | 131 |
131 int64_t CallStats::avg_rtt_ms() const { | 132 int64_t CallStats::avg_rtt_ms() const { |
132 rtc::CritScope cs(&crit_); | 133 rtc::CritScope cs(&crit_); |
(...skipping 20 matching lines...) Expand all Loading... | |
153 it != observers_.end(); ++it) { | 154 it != observers_.end(); ++it) { |
154 if (*it == observer) { | 155 if (*it == observer) { |
155 observers_.erase(it); | 156 observers_.erase(it); |
156 return; | 157 return; |
157 } | 158 } |
158 } | 159 } |
159 } | 160 } |
160 | 161 |
161 void CallStats::OnRttUpdate(int64_t rtt) { | 162 void CallStats::OnRttUpdate(int64_t rtt) { |
162 rtc::CritScope cs(&crit_); | 163 rtc::CritScope cs(&crit_); |
163 reports_.push_back(RttTime(rtt, clock_->TimeInMilliseconds())); | 164 int64_t now_ms = clock_->TimeInMilliseconds(); |
165 reports_.push_back(RttTime(rtt, now_ms)); | |
166 if (time_of_first_rtt_ms_ == -1) | |
167 time_of_first_rtt_ms_ = now_ms; | |
168 } | |
169 | |
170 void CallStats::UpdateHistograms() { | |
171 rtc::CritScope cs(&crit_); | |
åsapersson
2016/02/08 09:26:14
if time_of_first_rtt_ms_ != -1
sprang
2016/02/08 10:34:24
Done.
| |
172 int64_t elapsed_sec = | |
173 (clock_->TimeInMilliseconds() - time_of_first_rtt_ms_) / 1000; | |
174 if (avg_rtt_ms() != -1 && elapsed_sec >= metrics::kMinRunTimeInSeconds) { | |
åsapersson
2016/02/08 09:26:14
avg_rtt_ms_?
sprang
2016/02/08 10:34:24
Done.
| |
175 RTC_HISTOGRAM_COUNTS_10000( | |
176 "WebRTC.Video.AverageRoundTripTimeInMilliseconds", avg_rtt_ms()); | |
åsapersson
2016/02/08 09:26:14
ditto
sprang
2016/02/08 10:34:24
Done.
| |
177 } | |
164 } | 178 } |
165 | 179 |
166 } // namespace webrtc | 180 } // namespace webrtc |
OLD | NEW |