named_condition.hpp 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // (C) Copyright Ion Gaztanaga 2005-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/interprocess for documentation.
  8. //
  9. //////////////////////////////////////////////////////////////////////////////
  10. #ifndef BOOST_INTERPROCESS_NAMED_CONDITION_HPP
  11. #define BOOST_INTERPROCESS_NAMED_CONDITION_HPP
  12. #ifndef BOOST_CONFIG_HPP
  13. # include <boost/config.hpp>
  14. #endif
  15. #
  16. #if defined(BOOST_HAS_PRAGMA_ONCE)
  17. # pragma once
  18. #endif
  19. #include <boost/interprocess/detail/config_begin.hpp>
  20. #include <boost/interprocess/detail/workaround.hpp>
  21. #include <boost/interprocess/creation_tags.hpp>
  22. #include <boost/interprocess/exceptions.hpp>
  23. #include <boost/interprocess/detail/interprocess_tester.hpp>
  24. #include <boost/interprocess/permissions.hpp>
  25. #include <boost/interprocess/detail/posix_time_types_wrk.hpp>
  26. #include <boost/interprocess/sync/detail/locks.hpp>
  27. #if !defined(BOOST_INTERPROCESS_FORCE_GENERIC_EMULATION) && defined (BOOST_INTERPROCESS_WINDOWS)
  28. #include <boost/interprocess/sync/windows/named_condition.hpp>
  29. #define BOOST_INTERPROCESS_USE_WINDOWS
  30. #else
  31. #include <boost/interprocess/sync/shm/named_condition.hpp>
  32. #endif
  33. //!\file
  34. //!Describes a named condition class for inter-process synchronization
  35. namespace boost {
  36. namespace interprocess {
  37. #if !defined(BOOST_INTERPROCESS_DOXYGEN_INVOKED)
  38. namespace ipcdetail{ class interprocess_tester; }
  39. #endif //#ifndef BOOST_INTERPROCESS_DOXYGEN_INVOKED
  40. //! A global condition variable that can be created by name.
  41. //! This condition variable is designed to work with named_mutex and
  42. //! can't be placed in shared memory or memory mapped files.
  43. class named_condition
  44. {
  45. #if !defined(BOOST_INTERPROCESS_DOXYGEN_INVOKED)
  46. //Non-copyable
  47. named_condition();
  48. named_condition(const named_condition &);
  49. named_condition &operator=(const named_condition &);
  50. #endif //#ifndef BOOST_INTERPROCESS_DOXYGEN_INVOKED
  51. public:
  52. //!Creates a global condition with a name.
  53. //!If the condition can't be created throws interprocess_exception
  54. named_condition(create_only_t create_only, const char *name, const permissions &perm = permissions());
  55. //!Opens or creates a global condition with a name.
  56. //!If the condition is created, this call is equivalent to
  57. //!named_condition(create_only_t, ... )
  58. //!If the condition is already created, this call is equivalent
  59. //!named_condition(open_only_t, ... )
  60. //!Does not throw
  61. named_condition(open_or_create_t open_or_create, const char *name, const permissions &perm = permissions());
  62. //!Opens a global condition with a name if that condition is previously
  63. //!created. If it is not previously created this function throws
  64. //!interprocess_exception.
  65. named_condition(open_only_t open_only, const char *name);
  66. //!Destroys *this and indicates that the calling process is finished using
  67. //!the resource. The destructor function will deallocate
  68. //!any system resources allocated by the system for use by this process for
  69. //!this resource. The resource can still be opened again calling
  70. //!the open constructor overload. To erase the resource from the system
  71. //!use remove().
  72. ~named_condition();
  73. //!If there is a thread waiting on *this, change that
  74. //!thread's state to ready. Otherwise there is no effect.*/
  75. void notify_one();
  76. //!Change the state of all threads waiting on *this to ready.
  77. //!If there are no waiting threads, notify_all() has no effect.
  78. void notify_all();
  79. //!Releases the lock on the named_mutex object associated with lock, blocks
  80. //!the current thread of execution until readied by a call to
  81. //!this->notify_one() or this->notify_all(), and then reacquires the lock.
  82. template <typename L>
  83. void wait(L& lock);
  84. //!The same as:
  85. //!while (!pred()) wait(lock)
  86. template <typename L, typename Pr>
  87. void wait(L& lock, Pr pred);
  88. //!Releases the lock on the named_mutex object associated with lock, blocks
  89. //!the current thread of execution until readied by a call to
  90. //!this->notify_one() or this->notify_all(), or until time abs_time is reached,
  91. //!and then reacquires the lock.
  92. //!Returns: false if time abs_time is reached, otherwise true.
  93. template <typename L>
  94. bool timed_wait(L& lock, const boost::posix_time::ptime &abs_time);
  95. //!The same as: while (!pred()) {
  96. //! if (!timed_wait(lock, abs_time)) return pred();
  97. //! } return true;
  98. template <typename L, typename Pr>
  99. bool timed_wait(L& lock, const boost::posix_time::ptime &abs_time, Pr pred);
  100. //!Erases a named condition from the system.
  101. //!Returns false on error. Never throws.
  102. static bool remove(const char *name);
  103. #if !defined(BOOST_INTERPROCESS_DOXYGEN_INVOKED)
  104. private:
  105. #if defined(BOOST_INTERPROCESS_USE_WINDOWS)
  106. typedef ipcdetail::windows_named_condition condition_type;
  107. #else
  108. typedef ipcdetail::shm_named_condition condition_type;
  109. #endif
  110. condition_type m_cond;
  111. friend class ipcdetail::interprocess_tester;
  112. void dont_close_on_destruction()
  113. { ipcdetail::interprocess_tester::dont_close_on_destruction(m_cond); }
  114. #endif //#ifndef BOOST_INTERPROCESS_DOXYGEN_INVOKED
  115. };
  116. #if !defined(BOOST_INTERPROCESS_DOXYGEN_INVOKED)
  117. inline named_condition::~named_condition()
  118. {}
  119. inline named_condition::named_condition(create_only_t, const char *name, const permissions &perm)
  120. : m_cond(create_only_t(), name, perm)
  121. {}
  122. inline named_condition::named_condition(open_or_create_t, const char *name, const permissions &perm)
  123. : m_cond(open_or_create_t(), name, perm)
  124. {}
  125. inline named_condition::named_condition(open_only_t, const char *name)
  126. : m_cond(open_only_t(), name)
  127. {}
  128. inline void named_condition::notify_one()
  129. { m_cond.notify_one(); }
  130. inline void named_condition::notify_all()
  131. { m_cond.notify_all(); }
  132. template <typename L>
  133. inline void named_condition::wait(L& lock)
  134. {
  135. ipcdetail::internal_mutex_lock<L> internal_lock(lock);
  136. m_cond.wait(internal_lock);
  137. }
  138. template <typename L, typename Pr>
  139. inline void named_condition::wait(L& lock, Pr pred)
  140. {
  141. ipcdetail::internal_mutex_lock<L> internal_lock(lock);
  142. m_cond.wait(internal_lock, pred);
  143. }
  144. template <typename L>
  145. inline bool named_condition::timed_wait
  146. (L& lock, const boost::posix_time::ptime &abs_time)
  147. {
  148. ipcdetail::internal_mutex_lock<L> internal_lock(lock);
  149. return m_cond.timed_wait(internal_lock, abs_time);
  150. }
  151. template <typename L, typename Pr>
  152. inline bool named_condition::timed_wait
  153. (L& lock, const boost::posix_time::ptime &abs_time, Pr pred)
  154. {
  155. ipcdetail::internal_mutex_lock<L> internal_lock(lock);
  156. return m_cond.timed_wait(internal_lock, abs_time, pred);
  157. }
  158. inline bool named_condition::remove(const char *name)
  159. {
  160. return condition_type::remove(name);
  161. }
  162. #endif //#ifndef BOOST_INTERPROCESS_DOXYGEN_INVOKED
  163. } //namespace interprocess
  164. } //namespace boost
  165. #include <boost/interprocess/detail/config_end.hpp>
  166. #endif // BOOST_INTERPROCESS_NAMED_CONDITION_HPP