-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdemo_main.cpp
196 lines (158 loc) · 3.91 KB
/
demo_main.cpp
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
190
191
192
193
194
195
196
#include <iostream>
#include "lockfree/cas_loop.hpp"
#include "lockfree/exchange_buffer.hpp"
#include "lockfree/storage.hpp"
#include "lockfree/take_buffer.hpp"
#include "not_lockfree/cas_semantics.hpp"
#include "not_lockfree/exchange_buffer.hpp"
#include "not_lockfree/take_buffer.hpp"
namespace lf = lockfree;
namespace nlf = not_lockfree;
using namespace std;
// TODO: gtest
void end_case() { cout << "\n*********************" << endl; }
template <typename Buffer> void write_take() {
cout << "WRITE - TAKE" << endl;
Buffer b;
auto result = b.take();
if (result) {
cout << "take " << *result << endl;
} else {
cout << "take nothing" << endl;
}
auto success = b.write(73);
if (success) {
cout << "write 73" << endl;
} else {
cout << "write failed" << endl;
}
success = b.write(37);
if (success) {
cout << "write 37" << endl;
} else {
cout << "write failed" << endl;
}
result = b.take();
if (result) {
cout << "take " << *result << endl;
} else {
cout << "take nothing" << endl;
}
result = b.take();
if (result) {
cout << "take " << *result << endl;
} else {
cout << "take nothing" << endl;
}
}
template <typename Buffer> void try_write_take() {
cout << "TRY_WRITE - TAKE" << endl;
Buffer b;
auto result = b.take();
if (result) {
cout << "take " << *result << endl;
} else {
cout << "take nothing" << endl;
}
auto success = b.try_write(73);
if (success) {
cout << "try write 73" << endl;
} else {
cout << "try write failed" << endl;
}
success = b.try_write(42);
if (success) {
cout << "try write 42" << endl;
} else {
cout << "try write failed" << endl;
}
result = b.take();
if (result) {
cout << "take " << *result << endl;
} else {
cout << "take nothing" << endl;
}
result = b.take();
if (result) {
cout << "take " << *result << endl;
} else {
cout << "take nothing" << endl;
}
}
void cas_loop() {
cout << "CAS LOOP" << endl;
std::atomic<int> a{3};
cout << "a = " << a.load() << endl;
auto prev = lf::fetch_multiply(a, 4);
cout << "fetch_mutliply(a, 3) returns " << prev << endl;
cout << "a = " << a.load() << endl;
}
void cas_semantics() {
cout << "CAS SEMANTICS" << endl;
nlf::atomic<int> a{73};
cout << "a = " << a.load() << endl;
int expected{73};
a.compare_exchange_strong(expected, 37);
cout << "a = " << a.load() << endl;
a.compare_exchange_strong(expected, 42);
cout << "a = " << a.load() << endl;
}
template <typename Buffer> void write_read() {
cout << "WRITE - READ" << endl;
Buffer b;
auto result = b.read();
if (result) {
cout << "read " << *result << endl;
} else {
cout << "read nothing" << endl;
}
auto success = b.write(73);
if (success) {
cout << "write 73" << endl;
} else {
cout << "write failed" << endl;
}
result = b.read();
if (result) {
cout << "read " << *result << endl;
} else {
cout << "read nothing" << endl;
}
result = b.read();
if (result) {
cout << "read " << *result << endl;
} else {
cout << "read nothing" << endl;
}
}
int main(int argc, char **argv) {
cas_semantics();
end_case();
cas_loop();
end_case();
cout << "NOT LOCK_FREE\n" << endl;
cout << "take buffer" << endl;
write_take<nlf::TakeBuffer<int>>();
end_case();
cout << "\nexchange buffer" << endl;
write_take<nlf::ExchangeBuffer<int>>();
end_case();
try_write_take<nlf::ExchangeBuffer<int>>();
end_case();
write_read<nlf::ExchangeBuffer<int>>();
end_case();
cout << "LOCK_FREE\n" << endl;
cout << "take buffer" << endl;
write_take<lf::TakeBuffer<int>>();
end_case();
try_write_take<lf::ExchangeBuffer<int>>();
end_case();
cout << "\nexchange buffer" << endl;
write_take<lf::ExchangeBuffer<int>>();
end_case();
try_write_take<lf::ExchangeBuffer<int>>();
end_case();
write_read<lf::ExchangeBuffer<int>>();
end_case();
return EXIT_SUCCESS;
}