2017-10-05 22:09:58 +00:00
|
|
|
//
|
|
|
|
// BestEffortUpdater.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 04/10/2017.
|
2018-05-13 19:19:52 +00:00
|
|
|
// Copyright 2017 Thomas Harte. All rights reserved.
|
2017-10-05 22:09:58 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef BestEffortUpdater_hpp
|
|
|
|
#define BestEffortUpdater_hpp
|
|
|
|
|
|
|
|
#include <atomic>
|
|
|
|
#include <chrono>
|
|
|
|
|
|
|
|
#include "AsyncTaskQueue.hpp"
|
2018-03-23 22:05:51 +00:00
|
|
|
#include "../ClockReceiver/TimeTypes.hpp"
|
2017-10-05 22:09:58 +00:00
|
|
|
|
|
|
|
namespace Concurrency {
|
|
|
|
|
|
|
|
/*!
|
|
|
|
Accepts timing cues from multiple threads and ensures that a delegate receives calls to total
|
|
|
|
a certain number of cycles per second, that those calls are strictly serialised, and that no
|
|
|
|
backlog of calls accrues.
|
2017-10-05 22:12:33 +00:00
|
|
|
|
|
|
|
No guarantees about the thread that the delegate will be called on are made.
|
2017-10-05 22:09:58 +00:00
|
|
|
*/
|
|
|
|
class BestEffortUpdater {
|
|
|
|
public:
|
2017-11-14 03:51:42 +00:00
|
|
|
BestEffortUpdater();
|
2018-03-01 03:15:22 +00:00
|
|
|
~BestEffortUpdater();
|
2017-11-14 03:51:42 +00:00
|
|
|
|
2017-10-05 22:09:58 +00:00
|
|
|
/// A delegate receives timing cues.
|
|
|
|
struct Delegate {
|
2018-03-22 02:18:13 +00:00
|
|
|
virtual void update(BestEffortUpdater *updater, Time::Seconds duration, bool did_skip_previous_update) = 0;
|
2017-10-05 22:09:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/// Sets the current delegate.
|
|
|
|
void set_delegate(Delegate *);
|
|
|
|
|
|
|
|
/*!
|
|
|
|
If the delegate is not currently in the process of an `update` call, calls it now to catch up to the current time.
|
|
|
|
The call is asynchronous; this method will return immediately.
|
|
|
|
*/
|
|
|
|
void update();
|
|
|
|
|
|
|
|
/// Blocks until any ongoing update is complete.
|
|
|
|
void flush();
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::atomic_flag update_is_ongoing_;
|
|
|
|
AsyncTaskQueue async_task_queue_;
|
|
|
|
|
|
|
|
std::chrono::time_point<std::chrono::high_resolution_clock> previous_time_point_;
|
|
|
|
bool has_previous_time_point_ = false;
|
|
|
|
bool has_skipped_ = false;
|
|
|
|
|
|
|
|
Delegate *delegate_ = nullptr;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* BestEffortUpdater_hpp */
|