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_SHM_NAMED_RECURSIVE_MUTEX_HPP
|
Chris@16
|
12 #define BOOST_INTERPROCESS_SHM_NAMED_RECURSIVE_MUTEX_HPP
|
Chris@16
|
13
|
Chris@101
|
14 #ifndef BOOST_CONFIG_HPP
|
Chris@101
|
15 # include <boost/config.hpp>
|
Chris@101
|
16 #endif
|
Chris@101
|
17 #
|
Chris@101
|
18 #if defined(BOOST_HAS_PRAGMA_ONCE)
|
Chris@16
|
19 # pragma once
|
Chris@16
|
20 #endif
|
Chris@16
|
21
|
Chris@16
|
22 #include <boost/interprocess/detail/config_begin.hpp>
|
Chris@16
|
23 #include <boost/interprocess/detail/workaround.hpp>
|
Chris@16
|
24 #include <boost/interprocess/creation_tags.hpp>
|
Chris@16
|
25 #include <boost/interprocess/exceptions.hpp>
|
Chris@16
|
26 #include <boost/interprocess/detail/posix_time_types_wrk.hpp>
|
Chris@16
|
27 #include <boost/interprocess/shared_memory_object.hpp>
|
Chris@16
|
28 #include <boost/interprocess/detail/managed_open_or_create_impl.hpp>
|
Chris@16
|
29 #include <boost/interprocess/sync/interprocess_recursive_mutex.hpp>
|
Chris@16
|
30 #include <boost/interprocess/sync/shm/named_creation_functor.hpp>
|
Chris@16
|
31 #include <boost/interprocess/permissions.hpp>
|
Chris@16
|
32
|
Chris@16
|
33 //!\file
|
Chris@16
|
34 //!Describes a named shm_named_recursive_mutex class for inter-process synchronization
|
Chris@16
|
35
|
Chris@16
|
36 namespace boost {
|
Chris@16
|
37 namespace interprocess {
|
Chris@16
|
38 namespace ipcdetail {
|
Chris@16
|
39
|
Chris@101
|
40 #if !defined(BOOST_INTERPROCESS_DOXYGEN_INVOKED)
|
Chris@16
|
41 class interprocess_tester;
|
Chris@101
|
42 #endif //#ifndef BOOST_INTERPROCESS_DOXYGEN_INVOKED
|
Chris@16
|
43
|
Chris@16
|
44 class shm_named_recursive_mutex
|
Chris@16
|
45 {
|
Chris@101
|
46 #if !defined(BOOST_INTERPROCESS_DOXYGEN_INVOKED)
|
Chris@16
|
47 //Non-copyable
|
Chris@16
|
48 shm_named_recursive_mutex();
|
Chris@16
|
49 shm_named_recursive_mutex(const shm_named_recursive_mutex &);
|
Chris@16
|
50 shm_named_recursive_mutex &operator=(const shm_named_recursive_mutex &);
|
Chris@101
|
51 #endif //#ifndef BOOST_INTERPROCESS_DOXYGEN_INVOKED
|
Chris@16
|
52 public:
|
Chris@16
|
53
|
Chris@16
|
54 //!Creates a global recursive_mutex with a name.
|
Chris@16
|
55 //!If the recursive_mutex can't be created throws interprocess_exception
|
Chris@16
|
56 shm_named_recursive_mutex(create_only_t create_only, const char *name, const permissions &perm = permissions());
|
Chris@16
|
57
|
Chris@16
|
58 //!Opens or creates a global recursive_mutex with a name.
|
Chris@16
|
59 //!If the recursive_mutex is created, this call is equivalent to
|
Chris@16
|
60 //!shm_named_recursive_mutex(create_only_t, ... )
|
Chris@16
|
61 //!If the recursive_mutex is already created, this call is equivalent
|
Chris@16
|
62 //!shm_named_recursive_mutex(open_only_t, ... )
|
Chris@16
|
63 //!Does not throw
|
Chris@16
|
64 shm_named_recursive_mutex(open_or_create_t open_or_create, const char *name, const permissions &perm = permissions());
|
Chris@16
|
65
|
Chris@16
|
66 //!Opens a global recursive_mutex with a name if that recursive_mutex is previously
|
Chris@16
|
67 //!created. If it is not previously created this function throws
|
Chris@16
|
68 //!interprocess_exception.
|
Chris@16
|
69 shm_named_recursive_mutex(open_only_t open_only, const char *name);
|
Chris@16
|
70
|
Chris@16
|
71 //!Destroys *this and indicates that the calling process is finished using
|
Chris@16
|
72 //!the resource. The destructor function will deallocate
|
Chris@16
|
73 //!any system resources allocated by the system for use by this process for
|
Chris@16
|
74 //!this resource. The resource can still be opened again calling
|
Chris@16
|
75 //!the open constructor overload. To erase the resource from the system
|
Chris@16
|
76 //!use remove().
|
Chris@16
|
77 ~shm_named_recursive_mutex();
|
Chris@16
|
78
|
Chris@16
|
79 //!Unlocks a previously locked
|
Chris@16
|
80 //!shm_named_recursive_mutex.
|
Chris@16
|
81 void unlock();
|
Chris@16
|
82
|
Chris@16
|
83 //!Locks shm_named_recursive_mutex, sleeps when shm_named_recursive_mutex is already locked.
|
Chris@16
|
84 //!Throws interprocess_exception if a severe error is found.
|
Chris@16
|
85 void lock();
|
Chris@16
|
86
|
Chris@16
|
87 //!Tries to lock the shm_named_recursive_mutex, returns false when shm_named_recursive_mutex
|
Chris@16
|
88 //!is already locked, returns true when success.
|
Chris@16
|
89 //!Throws interprocess_exception if a severe error is found.
|
Chris@16
|
90 bool try_lock();
|
Chris@16
|
91
|
Chris@16
|
92 //!Tries to lock the shm_named_recursive_mutex until time abs_time,
|
Chris@16
|
93 //!Returns false when timeout expires, returns true when locks.
|
Chris@16
|
94 //!Throws interprocess_exception if a severe error is found
|
Chris@16
|
95 bool timed_lock(const boost::posix_time::ptime &abs_time);
|
Chris@16
|
96
|
Chris@16
|
97 //!Erases a named recursive mutex
|
Chris@16
|
98 //!from the system
|
Chris@16
|
99 static bool remove(const char *name);
|
Chris@16
|
100
|
Chris@101
|
101 #if !defined(BOOST_INTERPROCESS_DOXYGEN_INVOKED)
|
Chris@16
|
102 private:
|
Chris@16
|
103 friend class interprocess_tester;
|
Chris@16
|
104 void dont_close_on_destruction();
|
Chris@16
|
105
|
Chris@16
|
106 interprocess_recursive_mutex *mutex() const
|
Chris@16
|
107 { return static_cast<interprocess_recursive_mutex*>(m_shmem.get_user_address()); }
|
Chris@16
|
108 typedef ipcdetail::managed_open_or_create_impl<shared_memory_object, 0, true, false> open_create_impl_t;
|
Chris@16
|
109 open_create_impl_t m_shmem;
|
Chris@16
|
110 typedef named_creation_functor<interprocess_recursive_mutex> construct_func_t;
|
Chris@101
|
111 #endif //#ifndef BOOST_INTERPROCESS_DOXYGEN_INVOKED
|
Chris@16
|
112 };
|
Chris@16
|
113
|
Chris@16
|
114 inline shm_named_recursive_mutex::~shm_named_recursive_mutex()
|
Chris@16
|
115 {}
|
Chris@16
|
116
|
Chris@16
|
117 inline void shm_named_recursive_mutex::dont_close_on_destruction()
|
Chris@16
|
118 { interprocess_tester::dont_close_on_destruction(m_shmem); }
|
Chris@16
|
119
|
Chris@16
|
120 inline shm_named_recursive_mutex::shm_named_recursive_mutex(create_only_t, const char *name, const permissions &perm)
|
Chris@16
|
121 : m_shmem (create_only
|
Chris@16
|
122 ,name
|
Chris@16
|
123 ,sizeof(interprocess_recursive_mutex) +
|
Chris@16
|
124 open_create_impl_t::ManagedOpenOrCreateUserOffset
|
Chris@16
|
125 ,read_write
|
Chris@16
|
126 ,0
|
Chris@16
|
127 ,construct_func_t(DoCreate)
|
Chris@16
|
128 ,perm)
|
Chris@16
|
129 {}
|
Chris@16
|
130
|
Chris@16
|
131 inline shm_named_recursive_mutex::shm_named_recursive_mutex(open_or_create_t, const char *name, const permissions &perm)
|
Chris@16
|
132 : m_shmem (open_or_create
|
Chris@16
|
133 ,name
|
Chris@16
|
134 ,sizeof(interprocess_recursive_mutex) +
|
Chris@16
|
135 open_create_impl_t::ManagedOpenOrCreateUserOffset
|
Chris@16
|
136 ,read_write
|
Chris@16
|
137 ,0
|
Chris@16
|
138 ,construct_func_t(DoOpenOrCreate)
|
Chris@16
|
139 ,perm)
|
Chris@16
|
140 {}
|
Chris@16
|
141
|
Chris@16
|
142 inline shm_named_recursive_mutex::shm_named_recursive_mutex(open_only_t, const char *name)
|
Chris@16
|
143 : m_shmem (open_only
|
Chris@16
|
144 ,name
|
Chris@16
|
145 ,read_write
|
Chris@16
|
146 ,0
|
Chris@16
|
147 ,construct_func_t(DoOpen))
|
Chris@16
|
148 {}
|
Chris@16
|
149
|
Chris@16
|
150 inline void shm_named_recursive_mutex::lock()
|
Chris@16
|
151 { this->mutex()->lock(); }
|
Chris@16
|
152
|
Chris@16
|
153 inline void shm_named_recursive_mutex::unlock()
|
Chris@16
|
154 { this->mutex()->unlock(); }
|
Chris@16
|
155
|
Chris@16
|
156 inline bool shm_named_recursive_mutex::try_lock()
|
Chris@16
|
157 { return this->mutex()->try_lock(); }
|
Chris@16
|
158
|
Chris@16
|
159 inline bool shm_named_recursive_mutex::timed_lock(const boost::posix_time::ptime &abs_time)
|
Chris@101
|
160 { return this->mutex()->timed_lock(abs_time); }
|
Chris@16
|
161
|
Chris@16
|
162 inline bool shm_named_recursive_mutex::remove(const char *name)
|
Chris@16
|
163 { return shared_memory_object::remove(name); }
|
Chris@16
|
164
|
Chris@16
|
165 } //namespace ipcdetail {
|
Chris@16
|
166 } //namespace interprocess {
|
Chris@16
|
167 } //namespace boost {
|
Chris@16
|
168
|
Chris@16
|
169 #include <boost/interprocess/detail/config_end.hpp>
|
Chris@16
|
170
|
Chris@16
|
171 #endif //BOOST_INTERPROCESS_SHM_NAMED_RECURSIVE_MUTEX_HPP
|