8 #ifndef DIAGNOSTIC_CLIENT_LIB_LIB_UTILITY_UTILITY_SYNC_TIMER_H
9 #define DIAGNOSTIC_CLIENT_LIB_LIB_UTILITY_UTILITY_SYNC_TIMER_H
12 #include <condition_variable>
17 namespace sync_timer {
24 template<
typename ClockType>
70 template<
typename TimeoutCallback,
typename CancelCallback>
71 void WaitForTimeout(TimeoutCallback &&timeout_func, CancelCallback &&cancellation_func,
72 std::chrono::milliseconds
const timeout) {
105 TimePoint const expiry_time_point{Clock::now() + timeout};
106 if (
cond_var_.wait_until(lck, expiry_time_point, [
this, &expiry_time_point, &timer_state]() {
107 bool do_exit_wait{false};
110 TimePoint const current_time{Clock::now()};
112 if (current_time >= expiry_time_point) {
135 std::lock_guard<std::mutex>
const lck(mutex_lock_);
136 start_running_ =
false;
137 cond_var_.notify_all();
Timer class for timeout monitoring.
SyncTimer()
Construct an instance of SyncTimer.
auto Start(std::chrono::milliseconds const timeout) noexcept -> TimerState
Function to start the timeout monitoring.
TimerState
Definition of different timer state during timeout monitoring.
void Stop() noexcept
Function to stop the current timeout monitoring.
std::chrono::time_point< Clock > TimePoint
Type alias for the clock time point.
std::mutex mutex_lock_
The mutex for the conditional variable.
ClockType Clock
Type alias for the clock type.
~SyncTimer()
Destruct an instance of SyncTimer.
void CancelWait()
Function to cancel the synchronous wait.
auto IsTimerActive()
Function to query if timer is running.
void WaitForTimeout(TimeoutCallback &&timeout_func, CancelCallback &&cancellation_func, std::chrono::milliseconds const timeout)
Helper function to wait for response with timeout monitoring.
bool start_running_
The flag to stop the current running timer.
std::condition_variable cond_var_
The conditional variable needed for synchronizing between start and stop of running timer.
bool exit_request_
The flag to terminate the wait.