Browse Source

Fix issues with timers causing timer tests to fail

master
Jessica James 3 years ago
parent
commit
32e397603f
  1. 18
      src/common/timer/timer.cpp
  2. 4
      src/common/timer/timer_manager.cpp

18
src/common/timer/timer.cpp

@ -17,6 +17,7 @@
*/ */
#include "timer.hpp" #include "timer.hpp"
#include <atomic>
#include "assert.hpp" #include "assert.hpp"
#include "impl/timer_manager.hpp" #include "impl/timer_manager.hpp"
#include "impl/timer_context.hpp" #include "impl/timer_context.hpp"
@ -35,35 +36,33 @@ public:
callback_with_iterations(const callback_with_iterations& in_callback) callback_with_iterations(const callback_with_iterations& in_callback)
: m_callback{ in_callback.m_callback }, : m_callback{ in_callback.m_callback },
m_iterations{ in_callback.m_iterations } { m_iterations{ in_callback.m_iterations.load() } {
// Empty ctor body // Empty ctor body
} }
callback_with_iterations(callback_with_iterations&& in_callback) callback_with_iterations(callback_with_iterations&& in_callback)
: m_callback{ std::move(in_callback.m_callback) }, : m_callback{ std::move(in_callback.m_callback) },
m_iterations{ in_callback.m_iterations } { m_iterations{ in_callback.m_iterations.load() } {
// Empty ctor body // Empty ctor body
} }
void operator()(timer& in_timer) { void operator()(timer& in_timer) {
cancel_detector detector{ m_cancel_token }; cancel_detector detector{ m_cancel_token };
{ auto iterations = m_iterations.load();
std::unique_lock<std::mutex> iterations_guard(m_iterations_mutex); do {
// Ensure timer is not already expired // Ensure timer is not already expired
if (m_iterations == 0) { if (iterations == 0) {
return; return;
} }
// Decrement iterations and cancel if necessary // Decrement iterations and cancel if necessary
--m_iterations; } while (!m_iterations.compare_exchange_weak(iterations, iterations - 1));
}
// Call callback // Call callback
m_callback(in_timer); m_callback(in_timer);
if (!detector.expired()) { if (!detector.expired()) {
std::unique_lock<std::mutex> iterations_guard(m_iterations_mutex);
if (m_iterations == 0) { if (m_iterations == 0) {
// Cancel the timer // Cancel the timer
in_timer.cancel(); in_timer.cancel();
@ -73,8 +72,7 @@ public:
private: private:
timer::function_t m_callback; timer::function_t m_callback;
timer::iterations_t m_iterations; std::atomic<timer::iterations_t> m_iterations;
std::mutex m_iterations_mutex;
cancel_token m_cancel_token; cancel_token m_cancel_token;
}; };

4
src/common/timer/timer_manager.cpp

@ -44,7 +44,9 @@ void timer_manager::loop() {
auto itr{ m_active_timers.begin() }; auto itr{ m_active_timers.begin() };
if (itr != m_active_timers.end()) { if (itr != m_active_timers.end()) {
// Wait until the next timer is ready to fire // Wait until the next timer is ready to fire
if (m_cvar.wait_until(lock, (*itr)->next()) == std::cv_status::timeout && itr != m_active_timers.end()) { if (m_cvar.wait_until(lock, (*itr)->next()) == std::cv_status::timeout
&& itr == m_active_timers.begin() && itr != m_active_timers.end()) {
// Due to a race condition, we may still receive timeout when another thread has notified m_cvar too late // Due to a race condition, we may still receive timeout when another thread has notified m_cvar too late
// Notifying the thread before releasing the lock does not resolve this, because wait_until's return // Notifying the thread before releasing the lock does not resolve this, because wait_until's return
// status may be based entirely on the time of return and the input time (as is the case in GCC 7.2) // status may be based entirely on the time of return and the input time (as is the case in GCC 7.2)

Loading…
Cancel
Save