posix_event.hpp 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. //
  2. // detail/posix_event.hpp
  3. // ~~~~~~~~~~~~~~~~~~~~~~
  4. //
  5. // Copyright (c) 2003-2015 Christopher M. Kohlhoff (chris at kohlhoff dot com)
  6. //
  7. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  8. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  9. //
  10. #ifndef BOOST_ASIO_DETAIL_POSIX_EVENT_HPP
  11. #define BOOST_ASIO_DETAIL_POSIX_EVENT_HPP
  12. #if defined(_MSC_VER) && (_MSC_VER >= 1200)
  13. # pragma once
  14. #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
  15. #include <boost/asio/detail/config.hpp>
  16. #if defined(BOOST_ASIO_HAS_PTHREADS)
  17. #include <pthread.h>
  18. #include <boost/asio/detail/assert.hpp>
  19. #include <boost/asio/detail/noncopyable.hpp>
  20. #include <boost/asio/detail/push_options.hpp>
  21. namespace boost {
  22. namespace asio {
  23. namespace detail {
  24. class posix_event
  25. : private noncopyable
  26. {
  27. public:
  28. // Constructor.
  29. BOOST_ASIO_DECL posix_event();
  30. // Destructor.
  31. ~posix_event()
  32. {
  33. ::pthread_cond_destroy(&cond_);
  34. }
  35. // Signal the event. (Retained for backward compatibility.)
  36. template <typename Lock>
  37. void signal(Lock& lock)
  38. {
  39. this->signal_all(lock);
  40. }
  41. // Signal all waiters.
  42. template <typename Lock>
  43. void signal_all(Lock& lock)
  44. {
  45. BOOST_ASIO_ASSERT(lock.locked());
  46. (void)lock;
  47. state_ |= 1;
  48. ::pthread_cond_broadcast(&cond_); // Ignore EINVAL.
  49. }
  50. // Unlock the mutex and signal one waiter.
  51. template <typename Lock>
  52. void unlock_and_signal_one(Lock& lock)
  53. {
  54. BOOST_ASIO_ASSERT(lock.locked());
  55. state_ |= 1;
  56. bool have_waiters = (state_ > 1);
  57. lock.unlock();
  58. if (have_waiters)
  59. ::pthread_cond_signal(&cond_); // Ignore EINVAL.
  60. }
  61. // If there's a waiter, unlock the mutex and signal it.
  62. template <typename Lock>
  63. bool maybe_unlock_and_signal_one(Lock& lock)
  64. {
  65. BOOST_ASIO_ASSERT(lock.locked());
  66. state_ |= 1;
  67. if (state_ > 1)
  68. {
  69. lock.unlock();
  70. ::pthread_cond_signal(&cond_); // Ignore EINVAL.
  71. return true;
  72. }
  73. return false;
  74. }
  75. // Reset the event.
  76. template <typename Lock>
  77. void clear(Lock& lock)
  78. {
  79. BOOST_ASIO_ASSERT(lock.locked());
  80. (void)lock;
  81. state_ &= ~std::size_t(1);
  82. }
  83. // Wait for the event to become signalled.
  84. template <typename Lock>
  85. void wait(Lock& lock)
  86. {
  87. BOOST_ASIO_ASSERT(lock.locked());
  88. while ((state_ & 1) == 0)
  89. {
  90. state_ += 2;
  91. ::pthread_cond_wait(&cond_, &lock.mutex().mutex_); // Ignore EINVAL.
  92. state_ -= 2;
  93. }
  94. }
  95. private:
  96. ::pthread_cond_t cond_;
  97. std::size_t state_;
  98. };
  99. } // namespace detail
  100. } // namespace asio
  101. } // namespace boost
  102. #include <boost/asio/detail/pop_options.hpp>
  103. #if defined(BOOST_ASIO_HEADER_ONLY)
  104. # include <boost/asio/detail/impl/posix_event.ipp>
  105. #endif // defined(BOOST_ASIO_HEADER_ONLY)
  106. #endif // defined(BOOST_ASIO_HAS_PTHREADS)
  107. #endif // BOOST_ASIO_DETAIL_POSIX_EVENT_HPP