1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
|
//////////////////////////////////////////////////////////////////////////////
//
// (C) Copyright Ion Gaztanaga 2004-2012. Distributed under the Boost
// Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
// See http://www.boost.org/libs/interprocess for documentation.
//
//////////////////////////////////////////////////////////////////////////////
#include <boost/interprocess/detail/config_begin.hpp>
#include <boost/interprocess/detail/workaround.hpp>
#include <boost/interprocess/sync/named_mutex.hpp>
#include <boost/interprocess/sync/named_condition.hpp>
#include <boost/interprocess/sync/detail/locks.hpp>
#include "condition_test_template.hpp"
#include "named_creation_template.hpp"
#include <string>
#include <sstream>
#include "get_process_id_name.hpp"
using namespace boost::interprocess;
struct condition_deleter
{
std::string name;
~condition_deleter()
{
if(name.empty())
named_condition::remove(test::add_to_process_id_name("named_condition"));
else
named_condition::remove(name.c_str());
}
};
inline std::string num_to_string(int n)
{ std::stringstream s; s << n; return s.str(); }
//This wrapper is necessary to have a default constructor
//in generic mutex_test_template functions
class named_condition_test_wrapper
: public condition_deleter, public named_condition
{
public:
named_condition_test_wrapper()
: named_condition(open_or_create,
(test::add_to_process_id_name("test_cond") + num_to_string(count)).c_str())
{
condition_deleter::name += test::add_to_process_id_name("test_cond");
condition_deleter::name += num_to_string(count);
++count;
}
~named_condition_test_wrapper()
{ --count; }
template <typename L>
void wait(L& lock)
{
ipcdetail::internal_mutex_lock<L> internal_lock(lock);
named_condition::wait(internal_lock);
}
template <typename L, typename Pr>
void wait(L& lock, Pr pred)
{
ipcdetail::internal_mutex_lock<L> internal_lock(lock);
named_condition::wait(internal_lock, pred);
}
template <typename L>
bool timed_wait(L& lock, const boost::posix_time::ptime &abs_time)
{
ipcdetail::internal_mutex_lock<L> internal_lock(lock);
return named_condition::timed_wait(internal_lock, abs_time);
}
template <typename L, typename Pr>
bool timed_wait(L& lock, const boost::posix_time::ptime &abs_time, Pr pred)
{
ipcdetail::internal_mutex_lock<L> internal_lock(lock);
return named_condition::timed_wait(internal_lock, abs_time, pred);
}
static int count;
};
int named_condition_test_wrapper::count = 0;
//This wrapper is necessary to have a common constructor
//in generic named_creation_template functions
class named_condition_creation_test_wrapper
: public condition_deleter, public named_condition
{
public:
named_condition_creation_test_wrapper(create_only_t)
: named_condition(create_only, test::add_to_process_id_name("named_condition"))
{ ++count_; }
named_condition_creation_test_wrapper(open_only_t)
: named_condition(open_only, test::add_to_process_id_name("named_condition"))
{ ++count_; }
named_condition_creation_test_wrapper(open_or_create_t)
: named_condition(open_or_create, test::add_to_process_id_name("named_condition"))
{ ++count_; }
~named_condition_creation_test_wrapper() {
if(--count_){
ipcdetail::interprocess_tester::
dont_close_on_destruction(static_cast<named_condition&>(*this));
}
}
static int count_;
};
int named_condition_creation_test_wrapper::count_ = 0;
struct mutex_deleter
{
std::string name;
~mutex_deleter()
{
if(name.empty())
named_mutex::remove(test::add_to_process_id_name("named_mutex"));
else
named_mutex::remove(name.c_str());
}
};
//This wrapper is necessary to have a default constructor
//in generic mutex_test_template functions
class named_mutex_test_wrapper
: public mutex_deleter, public named_mutex
{
public:
named_mutex_test_wrapper()
: named_mutex(open_or_create,
(test::add_to_process_id_name("test_mutex") + num_to_string(count)).c_str())
{
mutex_deleter::name += test::add_to_process_id_name("test_mutex");
mutex_deleter::name += num_to_string(count);
++count;
}
typedef named_mutex internal_mutex_type;
internal_mutex_type &internal_mutex()
{ return *this; }
~named_mutex_test_wrapper()
{ --count; }
static int count;
};
int named_mutex_test_wrapper::count = 0;
int main ()
{
try{
//Remove previous mutexes and conditions
named_mutex::remove(test::add_to_process_id_name("test_mutex0"));
named_condition::remove(test::add_to_process_id_name("test_cond0"));
named_condition::remove(test::add_to_process_id_name("test_cond1"));
named_condition::remove(test::add_to_process_id_name("named_condition"));
named_mutex::remove(test::add_to_process_id_name("named_mutex"));
test::test_named_creation<named_condition_creation_test_wrapper>();
test::do_test_condition<named_condition_test_wrapper
,named_mutex_test_wrapper>();
}
catch(std::exception &ex){
std::cout << ex.what() << std::endl;
return 1;
}
named_mutex::remove(test::add_to_process_id_name("test_mutex0"));
named_condition::remove(test::add_to_process_id_name("test_cond0"));
named_condition::remove(test::add_to_process_id_name("test_cond1"));
named_condition::remove(test::add_to_process_id_name("named_condition"));
named_mutex::remove(test::add_to_process_id_name("named_mutex"));
return 0;
}
#include <boost/interprocess/detail/config_end.hpp>
|