// SPDX-License-Identifier: BSD-2-Clause // author: Max Kellermann #ifndef THREAD_WINDOWS_COND_HXX #define THREAD_WINDOWS_COND_HXX #include "CriticalSection.hxx" #include // for HWND (needed by winbase.h) #include // for INFINITE #include #include /** * Wrapper for a CONDITION_VARIABLE, backend for the Cond class. */ class WindowsCond { CONDITION_VARIABLE cond; public: WindowsCond() noexcept { InitializeConditionVariable(&cond); } WindowsCond(const WindowsCond &other) = delete; WindowsCond &operator=(const WindowsCond &other) = delete; void notify_one() noexcept { WakeConditionVariable(&cond); } void notify_all() noexcept { WakeAllConditionVariable(&cond); } void wait(std::unique_lock &lock) noexcept { SleepConditionVariableCS(&cond, &lock.mutex()->critical_section, INFINITE); } template void wait(std::unique_lock &lock, P &&predicate) noexcept { while (!predicate()) wait(lock); } bool wait_for(std::unique_lock &lock, std::chrono::steady_clock::duration timeout) noexcept { auto timeout_ms = std::chrono::duration_cast(timeout).count(); return SleepConditionVariableCS(&cond, &lock.mutex()->critical_section, static_cast(timeout_ms)); } template bool wait_for(std::unique_lock &lock, std::chrono::steady_clock::duration timeout, P &&predicate) noexcept { while (!predicate()) { // TODO: without wait_until(), this multiplies the timeout if (!wait_for(lock, timeout)) return predicate(); } return true; } }; #endif