named_condition.hpp 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  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_NAMED_CONDITION_USE_WINAPI
  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. //!Opens a global condition with a name if that condition is previously
  67. //!created. If it is not previously created this function throws
  68. //!interprocess_exception.
  69. #if defined(BOOST_INTERPROCESS_WCHAR_NAMED_RESOURCES) || defined(BOOST_INTERPROCESS_DOXYGEN_INVOKED)
  70. //!Creates a global condition with a name.
  71. //!If the condition can't be created throws interprocess_exception
  72. //!
  73. //!Note: This function is only available on operating systems with
  74. //! native wchar_t APIs (e.g. Windows).
  75. named_condition(create_only_t create_only, const wchar_t *name, const permissions &perm = permissions());
  76. //!Opens or creates a global condition with a name.
  77. //!If the condition is created, this call is equivalent to
  78. //!named_condition(create_only_t, ... )
  79. //!If the condition is already created, this call is equivalent
  80. //!named_condition(open_only_t, ... )
  81. //!Does not throw
  82. //!
  83. //!Note: This function is only available on operating systems with
  84. //! native wchar_t APIs (e.g. Windows).
  85. named_condition(open_or_create_t open_or_create, const wchar_t *name, const permissions &perm = permissions());
  86. //!Opens a global condition with a name if that condition is previously
  87. //!created. If it is not previously created this function throws
  88. //!interprocess_exception.
  89. //!
  90. //!Note: This function is only available on operating systems with
  91. //! native wchar_t APIs (e.g. Windows).
  92. named_condition(open_only_t open_only, const wchar_t *name);
  93. #endif //#if defined(BOOST_INTERPROCESS_WCHAR_NAMED_RESOURCES) || defined(BOOST_INTERPROCESS_DOXYGEN_INVOKED)
  94. //!Destroys *this and indicates that the calling process is finished using
  95. //!the resource. The destructor function will deallocate
  96. //!any system resources allocated by the system for use by this process for
  97. //!this resource. The resource can still be opened again calling
  98. //!the open constructor overload. To erase the resource from the system
  99. //!use remove().
  100. ~named_condition();
  101. //!If there is a thread waiting on *this, change that
  102. //!thread's state to ready. Otherwise there is no effect.*/
  103. void notify_one();
  104. //!Change the state of all threads waiting on *this to ready.
  105. //!If there are no waiting threads, notify_all() has no effect.
  106. void notify_all();
  107. //!Releases the lock on the named_mutex object associated with lock, blocks
  108. //!the current thread of execution until readied by a call to
  109. //!this->notify_one() or this->notify_all(), and then reacquires the lock.
  110. template <typename L>
  111. void wait(L& lock);
  112. //!The same as:
  113. //!while (!pred()) wait(lock)
  114. template <typename L, typename Pr>
  115. void wait(L& lock, Pr pred);
  116. //!Releases the lock on the named_mutex object associated with lock, blocks
  117. //!the current thread of execution until readied by a call to
  118. //!this->notify_one() or this->notify_all(), or until time abs_time is reached,
  119. //!and then reacquires the lock.
  120. //!Returns: false if time abs_time is reached, otherwise true.
  121. template <typename L>
  122. bool timed_wait(L& lock, const boost::posix_time::ptime &abs_time);
  123. //!The same as: while (!pred()) {
  124. //! if (!timed_wait(lock, abs_time)) return pred();
  125. //! } return true;
  126. template <typename L, typename Pr>
  127. bool timed_wait(L& lock, const boost::posix_time::ptime &abs_time, Pr pred);
  128. //!Erases a named condition from the system.
  129. //!Returns false on error. Never throws.
  130. static bool remove(const char *name);
  131. #if defined(BOOST_INTERPROCESS_WCHAR_NAMED_RESOURCES) || defined(BOOST_INTERPROCESS_DOXYGEN_INVOKED)
  132. //!Erases a named condition from the system.
  133. //!Returns false on error. Never throws.
  134. //!
  135. //!Note: This function is only available on operating systems with
  136. //! native wchar_t APIs (e.g. Windows).
  137. static bool remove(const wchar_t *name);
  138. #endif //defined(BOOST_INTERPROCESS_WCHAR_NAMED_RESOURCES) || defined(BOOST_INTERPROCESS_DOXYGEN_INVOKED)
  139. #if !defined(BOOST_INTERPROCESS_DOXYGEN_INVOKED)
  140. private:
  141. #if defined(BOOST_INTERPROCESS_NAMED_CONDITION_USE_WINAPI)
  142. typedef ipcdetail::winapi_named_condition condition_type;
  143. #else
  144. typedef ipcdetail::shm_named_condition condition_type;
  145. #endif
  146. condition_type m_cond;
  147. friend class ipcdetail::interprocess_tester;
  148. void dont_close_on_destruction()
  149. { ipcdetail::interprocess_tester::dont_close_on_destruction(m_cond); }
  150. #endif //#ifndef BOOST_INTERPROCESS_DOXYGEN_INVOKED
  151. };
  152. #if !defined(BOOST_INTERPROCESS_DOXYGEN_INVOKED)
  153. inline named_condition::~named_condition()
  154. {}
  155. inline named_condition::named_condition(create_only_t, const char *name, const permissions &perm)
  156. : m_cond(create_only_t(), name, perm)
  157. {}
  158. inline named_condition::named_condition(open_or_create_t, const char *name, const permissions &perm)
  159. : m_cond(open_or_create_t(), name, perm)
  160. {}
  161. inline named_condition::named_condition(open_only_t, const char *name)
  162. : m_cond(open_only_t(), name)
  163. {}
  164. #if defined(BOOST_INTERPROCESS_WCHAR_NAMED_RESOURCES) || defined(BOOST_INTERPROCESS_DOXYGEN_INVOKED)
  165. inline named_condition::named_condition(create_only_t, const wchar_t *name, const permissions &perm)
  166. : m_cond(create_only_t(), name, perm)
  167. {}
  168. inline named_condition::named_condition(open_or_create_t, const wchar_t *name, const permissions &perm)
  169. : m_cond(open_or_create_t(), name, perm)
  170. {}
  171. inline named_condition::named_condition(open_only_t, const wchar_t *name)
  172. : m_cond(open_only_t(), name)
  173. {}
  174. #endif //#if defined(BOOST_INTERPROCESS_WCHAR_NAMED_RESOURCES) || defined(BOOST_INTERPROCESS_DOXYGEN_INVOKED)
  175. inline void named_condition::notify_one()
  176. { m_cond.notify_one(); }
  177. inline void named_condition::notify_all()
  178. { m_cond.notify_all(); }
  179. template <typename L>
  180. inline void named_condition::wait(L& lock)
  181. {
  182. ipcdetail::internal_mutex_lock<L> internal_lock(lock);
  183. m_cond.wait(internal_lock);
  184. }
  185. template <typename L, typename Pr>
  186. inline void named_condition::wait(L& lock, Pr pred)
  187. {
  188. ipcdetail::internal_mutex_lock<L> internal_lock(lock);
  189. m_cond.wait(internal_lock, pred);
  190. }
  191. template <typename L>
  192. inline bool named_condition::timed_wait
  193. (L& lock, const boost::posix_time::ptime &abs_time)
  194. {
  195. ipcdetail::internal_mutex_lock<L> internal_lock(lock);
  196. return m_cond.timed_wait(internal_lock, abs_time);
  197. }
  198. template <typename L, typename Pr>
  199. inline bool named_condition::timed_wait
  200. (L& lock, const boost::posix_time::ptime &abs_time, Pr pred)
  201. {
  202. ipcdetail::internal_mutex_lock<L> internal_lock(lock);
  203. return m_cond.timed_wait(internal_lock, abs_time, pred);
  204. }
  205. inline bool named_condition::remove(const char *name)
  206. {
  207. return condition_type::remove(name);
  208. }
  209. #if defined(BOOST_INTERPROCESS_WCHAR_NAMED_RESOURCES) || defined(BOOST_INTERPROCESS_DOXYGEN_INVOKED)
  210. inline bool named_condition::remove(const wchar_t *name)
  211. {
  212. return condition_type::remove(name);
  213. }
  214. #endif
  215. #endif //#ifndef BOOST_INTERPROCESS_DOXYGEN_INVOKED
  216. } //namespace interprocess
  217. } //namespace boost
  218. #include <boost/interprocess/detail/config_end.hpp>
  219. #endif // BOOST_INTERPROCESS_NAMED_CONDITION_HPP