poly_lockable.hpp 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // (C) Copyright Vicente J. Botet Escriba 2008-2009,2012. Distributed under the Boost
  4. // Software License, Version 1.0. (See accompanying file
  5. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. //
  7. // See http://www.boost.org/libs/thread for documentation.
  8. //
  9. //////////////////////////////////////////////////////////////////////////////
  10. #ifndef BOOST_THREAD_POLY_LOCKABLE_HPP
  11. #define BOOST_THREAD_POLY_LOCKABLE_HPP
  12. #include <boost/thread/detail/delete.hpp>
  13. #include <boost/chrono/chrono.hpp>
  14. namespace boost
  15. {
  16. //[basic_poly_lockable
  17. class basic_poly_lockable
  18. {
  19. public:
  20. virtual ~basic_poly_lockable() = 0;
  21. virtual void lock() = 0;
  22. virtual void unlock() = 0;
  23. };
  24. //]
  25. //[poly_lockable
  26. class poly_lockable : public basic_poly_lockable
  27. {
  28. public:
  29. virtual ~poly_lockable() = 0;
  30. virtual bool try_lock() = 0;
  31. };
  32. //]
  33. //[timed_poly_lockable
  34. class timed_poly_lockable: public poly_lockable
  35. {
  36. public:
  37. virtual ~timed_poly_lockable()=0;
  38. virtual bool try_lock_until(chrono::system_clock::time_point const & abs_time)=0;
  39. virtual bool try_lock_until(chrono::steady_clock::time_point const & abs_time)=0;
  40. template <typename Clock, typename Duration>
  41. bool try_lock_until(chrono::time_point<Clock, Duration> const & abs_time)
  42. {
  43. return try_lock_until(time_point_cast<Clock::time_point>(abs_time));
  44. }
  45. virtual bool try_lock_for(chrono::nanoseconds const & relative_time)=0;
  46. template <typename Rep, typename Period>
  47. bool try_lock_for(chrono::duration<Rep, Period> const & rel_time)
  48. {
  49. return try_lock_for(duration_cast<Clock::duration>(rel_time));
  50. }
  51. };
  52. //]
  53. }
  54. #endif