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