blob: 1fd63cc6d2a071251edb0a9f4f3744fd700571f2 [file] [log] [blame]
sprang@webrtc.org7374da32013-12-03 10:31:591/*
2 * Copyright (c) 2013 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
tkchin4289b602016-02-24 06:49:4211#include "webrtc/base/rate_statistics.h"
sprang@webrtc.org7374da32013-12-03 10:31:5912
Stefan Holmer3eb722b2016-04-22 13:48:2313#include <algorithm>
14
15#include "webrtc/base/checks.h"
henrike@webrtc.org151f6f22014-04-29 17:54:1716
sprang@webrtc.org7374da32013-12-03 10:31:5917namespace webrtc {
18
Erik Språng475c05f2016-06-10 20:13:2119RateStatistics::RateStatistics(int64_t window_size_ms, float scale)
20 : buckets_(new Bucket[window_size_ms]()),
sprang@webrtc.org7374da32013-12-03 10:31:5921 accumulated_count_(0),
Erik Språng475c05f2016-06-10 20:13:2122 num_samples_(0),
23 oldest_time_(-window_size_ms),
sprang@webrtc.org7374da32013-12-03 10:31:5924 oldest_index_(0),
Erik Språng475c05f2016-06-10 20:13:2125 scale_(scale),
26 max_window_size_ms_(window_size_ms),
27 current_window_size_ms_(max_window_size_ms_) {}
sprang@webrtc.org7374da32013-12-03 10:31:5928
tkchin4289b602016-02-24 06:49:4229RateStatistics::~RateStatistics() {}
sprang@webrtc.org7374da32013-12-03 10:31:5930
31void RateStatistics::Reset() {
32 accumulated_count_ = 0;
Erik Språng475c05f2016-06-10 20:13:2133 num_samples_ = 0;
34 oldest_time_ = -max_window_size_ms_;
sprang@webrtc.org7374da32013-12-03 10:31:5935 oldest_index_ = 0;
Erik Språng475c05f2016-06-10 20:13:2136 current_window_size_ms_ = max_window_size_ms_;
37 for (int64_t i = 0; i < max_window_size_ms_; i++)
38 buckets_[i] = Bucket();
sprang@webrtc.org7374da32013-12-03 10:31:5939}
40
pkasting@chromium.org0ab923a2014-11-20 22:28:1441void RateStatistics::Update(size_t count, int64_t now_ms) {
sprang@webrtc.org7374da32013-12-03 10:31:5942 if (now_ms < oldest_time_) {
43 // Too old data is ignored.
44 return;
45 }
46
47 EraseOld(now_ms);
48
Erik Språng475c05f2016-06-10 20:13:2149 // First ever sample, reset window to start now.
50 if (!IsInitialized())
51 oldest_time_ = now_ms;
52
53 uint32_t now_offset = static_cast<uint32_t>(now_ms - oldest_time_);
54 RTC_DCHECK_LT(now_offset, max_window_size_ms_);
55 uint32_t index = oldest_index_ + now_offset;
56 if (index >= max_window_size_ms_)
57 index -= max_window_size_ms_;
58 buckets_[index].sum += count;
59 ++buckets_[index].samples;
sprang@webrtc.org7374da32013-12-03 10:31:5960 accumulated_count_ += count;
Erik Språng475c05f2016-06-10 20:13:2161 ++num_samples_;
sprang@webrtc.org7374da32013-12-03 10:31:5962}
63
Erik Språng475c05f2016-06-10 20:13:2164rtc::Optional<uint32_t> RateStatistics::Rate(int64_t now_ms) {
sprang@webrtc.org7374da32013-12-03 10:31:5965 EraseOld(now_ms);
Erik Språng475c05f2016-06-10 20:13:2166
67 // If window is a single bucket or there is only one sample in a data set that
68 // has not grown to the full window size, treat this as rate unavailable.
69 int64_t active_window_size = now_ms - oldest_time_ + 1;
70 if (num_samples_ == 0 || active_window_size <= 1 ||
71 (num_samples_ <= 1 && active_window_size < current_window_size_ms_)) {
72 return rtc::Optional<uint32_t>();
73 }
74
75 float scale = scale_ / active_window_size;
76 return rtc::Optional<uint32_t>(
77 static_cast<uint32_t>(accumulated_count_ * scale + 0.5f));
sprang@webrtc.org7374da32013-12-03 10:31:5978}
79
80void RateStatistics::EraseOld(int64_t now_ms) {
Erik Språng475c05f2016-06-10 20:13:2181 if (!IsInitialized())
sprang@webrtc.org7374da32013-12-03 10:31:5982 return;
Erik Språng475c05f2016-06-10 20:13:2183
84 // New oldest time that is included in data set.
85 int64_t new_oldest_time = now_ms - current_window_size_ms_ + 1;
86
87 // New oldest time is older than the current one, no need to cull data.
88 if (new_oldest_time <= oldest_time_)
89 return;
90
91 // Loop over buckets and remove too old data points.
92 while (num_samples_ > 0 && oldest_time_ < new_oldest_time) {
93 const Bucket& oldest_bucket = buckets_[oldest_index_];
94 RTC_DCHECK_GE(accumulated_count_, oldest_bucket.sum);
95 RTC_DCHECK_GE(num_samples_, oldest_bucket.samples);
96 accumulated_count_ -= oldest_bucket.sum;
97 num_samples_ -= oldest_bucket.samples;
98 buckets_[oldest_index_] = Bucket();
99 if (++oldest_index_ >= max_window_size_ms_)
sprang@webrtc.org7374da32013-12-03 10:31:59100 oldest_index_ = 0;
sprang@webrtc.org7374da32013-12-03 10:31:59101 ++oldest_time_;
sprang@webrtc.org7374da32013-12-03 10:31:59102 }
103 oldest_time_ = new_oldest_time;
104}
105
Erik Språng475c05f2016-06-10 20:13:21106bool RateStatistics::SetWindowSize(int64_t window_size_ms, int64_t now_ms) {
107 if (window_size_ms <= 0 || window_size_ms > max_window_size_ms_)
108 return false;
109
110 current_window_size_ms_ = window_size_ms;
111 EraseOld(now_ms);
112 return true;
113}
114
115bool RateStatistics::IsInitialized() {
116 return oldest_time_ != -max_window_size_ms_;
117}
118
sprang@webrtc.org7374da32013-12-03 10:31:59119} // namespace webrtc