mirror of
https://github.com/Zygo/bees.git
synced 2025-06-16 17:46:16 +02:00
time: add RateEstimator, a class for optimally polling irregular external events
RateEstimator estimates the rate of external events by sampling a counter. Conversion functions are provided to predict the time when the event counter will be incremented to particular values based on past observations of the event counter. Synchronization functions are provided to block a thread until a specific counter value is reached. Event polling is supported using the history of previous event counts to determine the predicted time of the next event. A decay function emphasizes more recent event history. Polling delays are bounded by minimum and maximum values in the constructor parameters. wait_for() and wait_until() block the calling thread until the target event count is reached (or the counter is reset). These functions are not bounded by min_delay or max_delay, and require a separate tread to call update(). wait_for() waits for the counter to be incremented from its current value by the given count. wait_until() waits for the counter to reach an absolute value. update() counts external events and unblocks threads that are blocked in wait_for() or wait_until(). If the event counter decreases then it is reset to the new value. duration() and time_point() convert relative and absolute event counts into relative and absolute C++11 time quantities based on the last update time, last observed event count, and the observed event rate. Convenience functions seconds_for() and seconds_until() calculate polling delays for for the desired relative and absolute event counts respectively. These delays are bounded by max and min delay parameters. rate() and ratio() provide conversion factors based on the current estimated event rate. Signed-off-by: Zygo Blaxell <bees@furryterror.org>
This commit is contained in:
184
lib/time.cc
184
lib/time.cc
@ -1,11 +1,13 @@
|
||||
#include "crucible/time.h"
|
||||
|
||||
#include "crucible/error.h"
|
||||
#include "crucible/process.h"
|
||||
|
||||
#include <algorithm>
|
||||
#include <thread>
|
||||
|
||||
#include <cmath>
|
||||
#include <ctime>
|
||||
#include <thread>
|
||||
|
||||
namespace crucible {
|
||||
|
||||
@ -59,6 +61,12 @@ namespace crucible {
|
||||
m_start = chrono::high_resolution_clock::now();
|
||||
}
|
||||
|
||||
chrono::high_resolution_clock::time_point
|
||||
Timer::get() const
|
||||
{
|
||||
return m_start;
|
||||
}
|
||||
|
||||
double
|
||||
Timer::lap()
|
||||
{
|
||||
@ -143,4 +151,178 @@ namespace crucible {
|
||||
m_tokens -= cost;
|
||||
}
|
||||
|
||||
RateEstimator::RateEstimator(double min_delay, double max_delay) :
|
||||
m_min_delay(min_delay),
|
||||
m_max_delay(max_delay)
|
||||
{
|
||||
THROW_CHECK1(invalid_argument, min_delay, min_delay > 0);
|
||||
THROW_CHECK1(invalid_argument, max_delay, max_delay > 0);
|
||||
THROW_CHECK2(invalid_argument, min_delay, max_delay, max_delay > min_delay);
|
||||
}
|
||||
|
||||
void
|
||||
RateEstimator::update_unlocked(uint64_t new_count)
|
||||
{
|
||||
// Gradually reduce the effect of previous updates
|
||||
if (m_last_decay.age() > 1) {
|
||||
m_num *= m_decay;
|
||||
m_den *= m_decay;
|
||||
m_last_decay.reset();
|
||||
}
|
||||
// Add units over time to running totals
|
||||
auto increment = new_count - min(new_count, m_last_count);
|
||||
auto delta = max(0.0, m_last_update.lap());
|
||||
m_num += increment;
|
||||
m_den += delta;
|
||||
m_last_count = new_count;
|
||||
// If count increased, wake up any waiters
|
||||
if (delta > 0) {
|
||||
m_condvar.notify_all();
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
RateEstimator::update(uint64_t new_count)
|
||||
{
|
||||
unique_lock<mutex> lock(m_mutex);
|
||||
return update_unlocked(new_count);
|
||||
}
|
||||
|
||||
uint64_t
|
||||
RateEstimator::count() const
|
||||
{
|
||||
unique_lock<mutex> lock(m_mutex);
|
||||
return m_last_count;
|
||||
}
|
||||
|
||||
pair<double, double>
|
||||
RateEstimator::ratio_unlocked() const
|
||||
{
|
||||
auto num = max(m_num, 1.0);
|
||||
// auto den = max(m_den, 1.0);
|
||||
// Rate estimation slows down if there are no new units to count
|
||||
auto den = max(m_den + m_last_update.age(), 1.0);
|
||||
auto sec_per_count = den / num;
|
||||
if (sec_per_count < m_min_delay) {
|
||||
return make_pair(1.0, m_min_delay);
|
||||
}
|
||||
if (sec_per_count > m_max_delay) {
|
||||
return make_pair(1.0, m_max_delay);
|
||||
}
|
||||
return make_pair(num, den);
|
||||
}
|
||||
|
||||
pair<double, double>
|
||||
RateEstimator::ratio() const
|
||||
{
|
||||
unique_lock<mutex> lock(m_mutex);
|
||||
return ratio_unlocked();
|
||||
}
|
||||
|
||||
pair<double, double>
|
||||
RateEstimator::raw() const
|
||||
{
|
||||
unique_lock<mutex> lock(m_mutex);
|
||||
return make_pair(m_num, m_den);
|
||||
}
|
||||
|
||||
double
|
||||
RateEstimator::rate_unlocked() const
|
||||
{
|
||||
auto r = ratio_unlocked();
|
||||
return r.first / r.second;
|
||||
}
|
||||
|
||||
double
|
||||
RateEstimator::rate() const
|
||||
{
|
||||
unique_lock<mutex> lock(m_mutex);
|
||||
return rate_unlocked();
|
||||
}
|
||||
|
||||
ostream &
|
||||
operator<<(ostream &os, const RateEstimator &re)
|
||||
{
|
||||
os << "RateEstimator { ";
|
||||
auto ratio = re.ratio();
|
||||
auto raw = re.raw();
|
||||
os << "count = " << re.count() << ", raw = " << raw.first << " / " << raw.second << ", ratio = " << ratio.first << " / " << ratio.second << ", rate = " << re.rate() << ", duration(1) = " << re.duration(1).count() << ", seconds_for(1) = " << re.seconds_for(1) << " }";
|
||||
return os;
|
||||
}
|
||||
|
||||
chrono::duration<double>
|
||||
RateEstimator::duration_unlocked(uint64_t relative_count) const
|
||||
{
|
||||
auto dur = relative_count / rate_unlocked();
|
||||
dur = min(m_max_delay, dur);
|
||||
dur = max(m_min_delay, dur);
|
||||
return chrono::duration<double>(dur);
|
||||
}
|
||||
|
||||
chrono::duration<double>
|
||||
RateEstimator::duration(uint64_t relative_count) const
|
||||
{
|
||||
unique_lock<mutex> lock(m_mutex);
|
||||
return duration_unlocked(relative_count);
|
||||
}
|
||||
|
||||
chrono::high_resolution_clock::time_point
|
||||
RateEstimator::time_point_unlocked(uint64_t absolute_count) const
|
||||
{
|
||||
auto relative_count = absolute_count - min(m_last_count, absolute_count);
|
||||
auto relative_duration = duration_unlocked(relative_count);
|
||||
return m_last_update.get() + chrono::duration_cast<chrono::high_resolution_clock::duration>(relative_duration);
|
||||
// return chrono::high_resolution_clock::now() + chrono::duration_cast<chrono::high_resolution_clock::duration>(relative_duration);
|
||||
}
|
||||
|
||||
chrono::high_resolution_clock::time_point
|
||||
RateEstimator::time_point(uint64_t absolute_count) const
|
||||
{
|
||||
unique_lock<mutex> lock(m_mutex);
|
||||
return time_point_unlocked(absolute_count);
|
||||
}
|
||||
|
||||
void
|
||||
RateEstimator::wait_until(uint64_t new_count_absolute) const
|
||||
{
|
||||
unique_lock<mutex> lock(m_mutex);
|
||||
auto saved_count = m_last_count;
|
||||
while (saved_count <= m_last_count && m_last_count < new_count_absolute) {
|
||||
// Stop waiting if clock runs backwards
|
||||
saved_count = m_last_count;
|
||||
m_condvar.wait(lock);
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
RateEstimator::wait_for(uint64_t new_count_relative) const
|
||||
{
|
||||
unique_lock<mutex> lock(m_mutex);
|
||||
auto saved_count = m_last_count;
|
||||
auto new_count_absolute = m_last_count + new_count_relative;
|
||||
while (saved_count <= m_last_count && m_last_count < new_count_absolute) {
|
||||
// Stop waiting if clock runs backwards
|
||||
saved_count = m_last_count;
|
||||
m_condvar.wait(lock);
|
||||
}
|
||||
}
|
||||
|
||||
double
|
||||
RateEstimator::seconds_for(uint64_t new_count_relative) const
|
||||
{
|
||||
unique_lock<mutex> lock(m_mutex);
|
||||
auto ts = time_point_unlocked(new_count_relative + m_last_count);
|
||||
auto delta_dur = ts - chrono::high_resolution_clock::now();
|
||||
return max(min(chrono::duration<double>(delta_dur).count(), m_max_delay), m_min_delay);
|
||||
}
|
||||
|
||||
double
|
||||
RateEstimator::seconds_until(uint64_t new_count_absolute) const
|
||||
{
|
||||
unique_lock<mutex> lock(m_mutex);
|
||||
auto ts = time_point_unlocked(new_count_absolute);
|
||||
auto delta_dur = ts - chrono::high_resolution_clock::now();
|
||||
return max(min(chrono::duration<double>(delta_dur).count(), m_max_delay), m_min_delay);
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user