interprocess_recursive_mutex.hpp 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  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. //
  11. // Parts of the pthread code come from Boost Threads code:
  12. //
  13. //////////////////////////////////////////////////////////////////////////////
  14. //
  15. // Copyright (C) 2001-2003
  16. // William E. Kempf
  17. //
  18. // Permission to use, copy, modify, distribute and sell this software
  19. // and its documentation for any purpose is hereby granted without fee,
  20. // provided that the above copyright notice appear in all copies and
  21. // that both that copyright notice and this permission notice appear
  22. // in supporting documentation. William E. Kempf makes no representations
  23. // about the suitability of this software for any purpose.
  24. // It is provided "as is" without express or implied warranty.
  25. //////////////////////////////////////////////////////////////////////////////
  26. #ifndef BOOST_INTERPROCESS_RECURSIVE_MUTEX_HPP
  27. #define BOOST_INTERPROCESS_RECURSIVE_MUTEX_HPP
  28. #if !defined(BOOST_INTERPROCESS_DOXYGEN_INVOKED)
  29. #ifndef BOOST_CONFIG_HPP
  30. # include <boost/config.hpp>
  31. #endif
  32. #
  33. #if defined(BOOST_HAS_PRAGMA_ONCE)
  34. # pragma once
  35. #endif
  36. #include <boost/interprocess/detail/config_begin.hpp>
  37. #include <boost/interprocess/detail/workaround.hpp>
  38. #include <boost/interprocess/detail/posix_time_types_wrk.hpp>
  39. #include <boost/assert.hpp>
  40. #if !defined(BOOST_INTERPROCESS_FORCE_GENERIC_EMULATION) && \
  41. (defined(BOOST_INTERPROCESS_POSIX_PROCESS_SHARED) && defined (BOOST_INTERPROCESS_POSIX_RECURSIVE_MUTEXES))
  42. #include <boost/interprocess/sync/posix/recursive_mutex.hpp>
  43. #define BOOST_INTERPROCESS_USE_POSIX
  44. //Experimental...
  45. #elif !defined(BOOST_INTERPROCESS_FORCE_GENERIC_EMULATION) && defined (BOOST_INTERPROCESS_WINDOWS)
  46. #include <boost/interprocess/sync/windows/recursive_mutex.hpp>
  47. #define BOOST_INTERPROCESS_USE_WINDOWS
  48. #elif !defined(BOOST_INTERPROCESS_DOXYGEN_INVOKED)
  49. #include <boost/interprocess/sync/spin/recursive_mutex.hpp>
  50. #define BOOST_INTERPROCESS_USE_GENERIC_EMULATION
  51. #endif
  52. #if defined (BOOST_INTERPROCESS_USE_GENERIC_EMULATION)
  53. namespace boost {
  54. namespace interprocess {
  55. namespace ipcdetail{
  56. namespace robust_emulation_helpers {
  57. template<class T>
  58. class mutex_traits;
  59. }}}}
  60. #endif
  61. #endif //#ifndef BOOST_INTERPROCESS_DOXYGEN_INVOKED
  62. //!\file
  63. //!Describes interprocess_recursive_mutex and shared_recursive_try_mutex classes
  64. namespace boost {
  65. namespace interprocess {
  66. //!Wraps a interprocess_mutex that can be placed in shared memory and can be
  67. //!shared between processes. Allows several locking calls by the same
  68. //!process. Allows timed lock tries
  69. class interprocess_recursive_mutex
  70. {
  71. #if !defined(BOOST_INTERPROCESS_DOXYGEN_INVOKED)
  72. //Non-copyable
  73. interprocess_recursive_mutex(const interprocess_recursive_mutex &);
  74. interprocess_recursive_mutex &operator=(const interprocess_recursive_mutex &);
  75. #endif //#ifndef BOOST_INTERPROCESS_DOXYGEN_INVOKED
  76. public:
  77. //!Constructor.
  78. //!Throws interprocess_exception on error.
  79. interprocess_recursive_mutex();
  80. //!Destructor. If any process uses the mutex after the destructor is called
  81. //!the result is undefined. Does not throw.
  82. ~interprocess_recursive_mutex();
  83. //!Effects: The calling thread tries to obtain ownership of the mutex, and
  84. //! if another thread has ownership of the mutex, it waits until it can
  85. //! obtain the ownership. If a thread takes ownership of the mutex the
  86. //! mutex must be unlocked by the same mutex. The mutex must be unlocked
  87. //! the same number of times it is locked.
  88. //!Throws: interprocess_exception on error.
  89. void lock();
  90. //!Tries to lock the interprocess_mutex, returns false when interprocess_mutex
  91. //!is already locked, returns true when success. The mutex must be unlocked
  92. //!the same number of times it is locked.
  93. //!Throws: interprocess_exception if a severe error is found
  94. bool try_lock();
  95. //!Tries to lock the interprocess_mutex, if interprocess_mutex can't be locked before
  96. //!abs_time time, returns false. The mutex must be unlocked
  97. //! the same number of times it is locked.
  98. //!Throws: interprocess_exception if a severe error is found
  99. bool timed_lock(const boost::posix_time::ptime &abs_time);
  100. //!Effects: The calling thread releases the exclusive ownership of the mutex.
  101. //! If the mutex supports recursive locking, the mutex must be unlocked the
  102. //! same number of times it is locked.
  103. //!Throws: interprocess_exception on error.
  104. void unlock();
  105. #if !defined(BOOST_INTERPROCESS_DOXYGEN_INVOKED)
  106. private:
  107. #if defined (BOOST_INTERPROCESS_USE_GENERIC_EMULATION)
  108. #undef BOOST_INTERPROCESS_USE_GENERIC_EMULATION
  109. void take_ownership(){ mutex.take_ownership(); }
  110. friend class ipcdetail::robust_emulation_helpers::mutex_traits<interprocess_recursive_mutex>;
  111. ipcdetail::spin_recursive_mutex mutex;
  112. #elif defined(BOOST_INTERPROCESS_USE_POSIX)
  113. #undef BOOST_INTERPROCESS_USE_POSIX
  114. ipcdetail::posix_recursive_mutex mutex;
  115. #elif defined(BOOST_INTERPROCESS_USE_WINDOWS)
  116. #undef BOOST_INTERPROCESS_USE_WINDOWS
  117. ipcdetail::windows_recursive_mutex mutex;
  118. #else
  119. #error "Unknown platform for interprocess_mutex"
  120. #endif
  121. #endif //#ifndef BOOST_INTERPROCESS_DOXYGEN_INVOKED
  122. };
  123. } //namespace interprocess {
  124. } //namespace boost {
  125. namespace boost {
  126. namespace interprocess {
  127. inline interprocess_recursive_mutex::interprocess_recursive_mutex(){}
  128. inline interprocess_recursive_mutex::~interprocess_recursive_mutex(){}
  129. inline void interprocess_recursive_mutex::lock()
  130. {
  131. #ifdef BOOST_INTERPROCESS_ENABLE_TIMEOUT_WHEN_LOCKING
  132. boost::posix_time::ptime wait_time
  133. = microsec_clock::universal_time()
  134. + boost::posix_time::milliseconds(BOOST_INTERPROCESS_TIMEOUT_WHEN_LOCKING_DURATION_MS);
  135. if (!mutex.timed_lock(wait_time)){
  136. throw interprocess_exception(timeout_when_locking_error, "Interprocess mutex timeout when locking. Possible deadlock: owner died without unlocking?");
  137. }
  138. #else
  139. mutex.lock();
  140. #endif
  141. }
  142. inline bool interprocess_recursive_mutex::try_lock()
  143. { return mutex.try_lock(); }
  144. inline bool interprocess_recursive_mutex::timed_lock(const boost::posix_time::ptime &abs_time)
  145. { return mutex.timed_lock(abs_time); }
  146. inline void interprocess_recursive_mutex::unlock()
  147. { mutex.unlock(); }
  148. } //namespace interprocess {
  149. } //namespace boost {
  150. #include <boost/interprocess/detail/config_end.hpp>
  151. #endif //BOOST_INTERPROCESS_RECURSIVE_MUTEX_HPP