named_condition_any.hpp 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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_ANY_HPP
  11. #define BOOST_INTERPROCESS_NAMED_CONDITION_ANY_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_any.hpp>
  29. #define BOOST_INTERPROCESS_USE_WINDOWS
  30. #else
  31. #include <boost/interprocess/sync/shm/named_condition_any.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_any
  44. {
  45. #if !defined(BOOST_INTERPROCESS_DOXYGEN_INVOKED)
  46. //Non-copyable
  47. named_condition_any();
  48. named_condition_any(const named_condition_any &);
  49. named_condition_any &operator=(const named_condition_any &);
  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_any(create_only_t, const char *name, const permissions &perm = permissions())
  55. : m_cond(create_only_t(), name, perm)
  56. {}
  57. //!Opens or creates a global condition with a name.
  58. //!If the condition is created, this call is equivalent to
  59. //!named_condition_any(create_only_t, ... )
  60. //!If the condition is already created, this call is equivalent
  61. //!named_condition_any(open_only_t, ... )
  62. //!Does not throw
  63. named_condition_any(open_or_create_t, const char *name, const permissions &perm = permissions())
  64. : m_cond(open_or_create_t(), name, perm)
  65. {}
  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. named_condition_any(open_only_t, const char *name)
  70. : m_cond(open_only_t(), name)
  71. {}
  72. //!Destroys *this and indicates that the calling process is finished using
  73. //!the resource. The destructor function will deallocate
  74. //!any system resources allocated by the system for use by this process for
  75. //!this resource. The resource can still be opened again calling
  76. //!the open constructor overload. To erase the resource from the system
  77. //!use remove().
  78. ~named_condition_any()
  79. {}
  80. //!If there is a thread waiting on *this, change that
  81. //!thread's state to ready. Otherwise there is no effect.*/
  82. void notify_one()
  83. { m_cond.notify_one(); }
  84. //!Change the state of all threads waiting on *this to ready.
  85. //!If there are no waiting threads, notify_all() has no effect.
  86. void notify_all()
  87. { m_cond.notify_all(); }
  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(), and then reacquires the lock.
  91. template <typename L>
  92. void wait(L& lock)
  93. { return m_cond.wait(lock); }
  94. //!The same as:
  95. //!while (!pred()) wait(lock)
  96. template <typename L, typename Pr>
  97. void wait(L& lock, Pr pred)
  98. { return m_cond.wait(lock, pred); }
  99. //!Releases the lock on the named_mutex object associated with lock, blocks
  100. //!the current thread of execution until readied by a call to
  101. //!this->notify_one() or this->notify_all(), or until time abs_time is reached,
  102. //!and then reacquires the lock.
  103. //!Returns: false if time abs_time is reached, otherwise true.
  104. template <typename L>
  105. bool timed_wait(L& lock, const boost::posix_time::ptime &abs_time)
  106. { return m_cond.timed_wait(lock, abs_time); }
  107. //!The same as: while (!pred()) {
  108. //! if (!timed_wait(lock, abs_time)) return pred();
  109. //! } return true;
  110. template <typename L, typename Pr>
  111. bool timed_wait(L& lock, const boost::posix_time::ptime &abs_time, Pr pred)
  112. { return m_cond.timed_wait(lock, abs_time, pred); }
  113. //!Erases a named condition from the system.
  114. //!Returns false on error. Never throws.
  115. static bool remove(const char *name)
  116. { return condition_any_type::remove(name); }
  117. #if !defined(BOOST_INTERPROCESS_DOXYGEN_INVOKED)
  118. private:
  119. #if defined(BOOST_INTERPROCESS_USE_WINDOWS)
  120. typedef ipcdetail::windows_named_condition_any condition_any_type;
  121. #else
  122. typedef ipcdetail::shm_named_condition_any condition_any_type;
  123. #endif
  124. condition_any_type m_cond;
  125. friend class ipcdetail::interprocess_tester;
  126. void dont_close_on_destruction()
  127. { ipcdetail::interprocess_tester::dont_close_on_destruction(m_cond); }
  128. #endif //#ifndef BOOST_INTERPROCESS_DOXYGEN_INVOKED
  129. };
  130. } //namespace interprocess
  131. } //namespace boost
  132. #include <boost/interprocess/detail/config_end.hpp>
  133. #endif // BOOST_INTERPROCESS_NAMED_CONDITION_ANY_HPP