#ifndef BOOST_BASIC_TIMED_MUTEX_WIN32_HPP #define BOOST_BASIC_TIMED_MUTEX_WIN32_HPP // basic_timed_mutex_win32.hpp // // (C) Copyright 2006-8 Anthony Williams // (C) Copyright 2011-2012 Vicente J. Botet Escriba // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #include #include #include #include #if defined BOOST_THREAD_USES_DATETIME #include #endif #include #ifdef BOOST_THREAD_USES_CHRONO #include #include #endif #include #include namespace boost { namespace detail { struct basic_timed_mutex { BOOST_STATIC_CONSTANT(unsigned char,lock_flag_bit=31); BOOST_STATIC_CONSTANT(unsigned char,event_set_flag_bit=30); BOOST_STATIC_CONSTANT(long,lock_flag_value=1<(d.getMs()); } template unsigned long getMs(Duration const& d) { return static_cast(chrono::ceil(d).count()); } template bool do_lock_until(Timepoint const& t, Duration const& max) { if(try_lock()) { return true; } long old_count=active_count; mark_waiting_and_try_lock(old_count); if(old_count&lock_flag_value) { void* const sem=get_event(); // If the clock is the system clock, it may jump while this function // is waiting. To compensate for this and time out near the correct // time, we call WaitForSingleObjectEx() in a loop with a short // timeout and recheck the time remaining each time through the loop. do { Duration d(t - Clock::now()); if(d <= Duration::zero()) // timeout occurred { BOOST_INTERLOCKED_DECREMENT(&active_count); return false; } if(max != Duration::zero()) { d = (std::min)(d, max); } if(winapi::WaitForSingleObjectEx(sem,getMs(d),0)==0) { clear_waiting_and_try_lock(old_count); } } while(old_count&lock_flag_value); } return true; } public: #if defined BOOST_THREAD_USES_DATETIME bool timed_lock(::boost::system_time const& wait_until) { const detail::real_platform_timepoint t(wait_until); return do_lock_until(t, detail::platform_milliseconds(BOOST_THREAD_POLL_INTERVAL_MILLISECONDS)); } template bool timed_lock(Duration const& timeout) { const detail::mono_platform_timepoint t(detail::mono_platform_clock::now() + detail::platform_duration(timeout)); // The reference clock is steady and so no need to poll periodically, thus 0 ms max (i.e. no max) return do_lock_until(t, detail::platform_duration::zero()); } bool timed_lock(boost::xtime const& timeout) { return timed_lock(boost::system_time(timeout)); } #endif #ifdef BOOST_THREAD_USES_CHRONO template bool try_lock_for(const chrono::duration& rel_time) { const chrono::steady_clock::time_point t(chrono::steady_clock::now() + rel_time); typedef typename chrono::duration Duration; typedef typename common_type::type common_duration; // The reference clock is steady and so no need to poll periodically, thus 0 ms max (i.e. no max) return do_lock_until(t, common_duration::zero()); } template bool try_lock_until(const chrono::time_point& t) { typedef typename common_type::type common_duration; // The reference clock is steady and so no need to poll periodically, thus 0 ms max (i.e. no max) return do_lock_until(t, common_duration::zero()); } template bool try_lock_until(const chrono::time_point& t) { typedef typename common_type::type common_duration; return do_lock_until(t, common_duration(chrono::milliseconds(BOOST_THREAD_POLL_INTERVAL_MILLISECONDS))); } #endif void unlock() { // Clear the lock flag using atomic addition (works since long is always 32 bits on Windows) long const old_count=BOOST_INTERLOCKED_EXCHANGE_ADD(&active_count,lock_flag_value); // If someone is waiting to take the lock, set the event set flag and, if // the event set flag hadn't already been set, send an event. if(!(old_count&event_set_flag_value) && (old_count>lock_flag_value)) { if(!win32::interlocked_bit_test_and_set(&active_count,event_set_flag_bit)) { winapi::SetEvent(get_event()); } } } private: // Create an event in a thread-safe way // The first thread to create the event wins and all other thread will use that event void* get_event() { void* current_event=::boost::detail::interlocked_read_acquire(&event); if(!current_event) { void* const new_event=win32::create_anonymous_event(win32::auto_reset_event,win32::event_initially_reset); #ifdef BOOST_MSVC #pragma warning(push) #pragma warning(disable:4311) #pragma warning(disable:4312) #endif void* const old_event=BOOST_INTERLOCKED_COMPARE_EXCHANGE_POINTER(&event,new_event,0); #ifdef BOOST_MSVC #pragma warning(pop) #endif if(old_event!=0) { winapi::CloseHandle(new_event); return old_event; } else { return new_event; } } return current_event; } }; } } #define BOOST_BASIC_TIMED_MUTEX_INITIALIZER {0} #include #endif