double RateTracker::ComputeRateForInterval(Timestamp current_time,
TimeDelta interval) const {
if (bucket_start_time_milliseconds_ == kTimeUnset) { return0.0;
}
int64_t current_time_ms = current_time.ms(); // Calculate which buckets to sum up given the current time. If the time // has passed to a new bucket then we have to skip some of the oldest buckets.
int64_t available_interval_milliseconds =
std::min(interval.ms(),
bucket_milliseconds_ * static_cast<int64_t>(bucket_count_)); // number of old buckets (i.e. after the current bucket in the ring buffer) // that are expired given our current time interval.
size_t buckets_to_skip; // Number of milliseconds of the first bucket that are not a portion of the // current interval.
int64_t milliseconds_to_skip;
if (current_time_ms >
initialization_time_milliseconds_ + available_interval_milliseconds) {
int64_t time_to_skip =
current_time_ms - bucket_start_time_milliseconds_ + static_cast<int64_t>(bucket_count_) * bucket_milliseconds_ -
available_interval_milliseconds;
buckets_to_skip = time_to_skip / bucket_milliseconds_;
milliseconds_to_skip = time_to_skip % bucket_milliseconds_;
} else {
buckets_to_skip = bucket_count_ - current_bucket_;
milliseconds_to_skip = 0;
available_interval_milliseconds =
current_time_ms - initialization_time_milliseconds_; // Let one bucket interval pass after initialization before reporting.
if (available_interval_milliseconds < bucket_milliseconds_) { return0.0;
}
} // If we're skipping all buckets that means that there have been no samples // within the sampling interval so report 0.
if (buckets_to_skip > bucket_count_ || available_interval_milliseconds == 0) { return0.0;
}
size_t start_bucket = NextBucketIndex(current_bucket_ + buckets_to_skip); // Only count a portion of the first bucket according to how much of the // first bucket is within the current interval.
int64_t total_samples = ((sample_buckets_[start_bucket] *
(bucket_milliseconds_ - milliseconds_to_skip)) +
(bucket_milliseconds_ >> 1)) /
bucket_milliseconds_; // All other buckets in the interval are counted in their entirety.
for (size_t i = NextBucketIndex(start_bucket);
i != NextBucketIndex(current_bucket_); i = NextBucketIndex(i)) {
total_samples += sample_buckets_[i];
} // Convert to samples per second. returnstatic_cast<double>(total_samples * 1000) / static_cast<double>(available_interval_milliseconds);
}
void RateTracker::Update(int64_t sample_count, Timestamp current_time) {
RTC_DCHECK_LE(0, sample_count);
int64_t current_time_ms = current_time.ms();
EnsureInitialized(current_time_ms); // Advance the current bucket as needed for the current time, and reset // bucket counts as we advance.
for (size_t i = 0; i <= bucket_count_ &&
current_time_ms >=
bucket_start_time_milliseconds_ + bucket_milliseconds_;
++i) {
bucket_start_time_milliseconds_ += bucket_milliseconds_;
current_bucket_ = NextBucketIndex(current_bucket_);
sample_buckets_[current_bucket_] = 0;
} // Ensure that bucket_start_time_milliseconds_ is updated appropriately if // the entire buffer of samples has been expired.
bucket_start_time_milliseconds_ +=
bucket_milliseconds_ *
((current_time_ms - bucket_start_time_milliseconds_) /
bucket_milliseconds_); // Add all samples in the bucket that includes the current time.
sample_buckets_[current_bucket_] += sample_count;
total_sample_count_ += sample_count;
}
void RateTracker::EnsureInitialized(int64_t current_time_ms) {
if (bucket_start_time_milliseconds_ == kTimeUnset) {
initialization_time_milliseconds_ = current_time_ms;
bucket_start_time_milliseconds_ = current_time_ms;
current_bucket_ = 0; // We only need to initialize the first bucket because we reset buckets when // current_bucket_ increments.
sample_buckets_[current_bucket_] = 0;
}
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.