-
Notifications
You must be signed in to change notification settings - Fork 3
/
main.cpp
182 lines (152 loc) · 6.2 KB
/
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
/**
* ______________________________________________________
* A simple program to illustrate concurrent library's usage.
*
* @file concurrent_stl.hpp
* @author Mustafa Kemal GILOR <[email protected]>
* @date 02.12.2020
*
* SPDX-License-Identifier: MIT
* ______________________________________________________
*/
#include <array> // std::array
#include <vector> // std::vector
#include <string> // std::string
#include <iostream> // std::cout, std::endl
#include <map> // std::map, std::pair
#include <memory> // std::unique_ptr
#include <thread> // std::thread
#include <atomic> // std::atomic
#include <chrono> // std::chrono
//#include "concurrent_stl.hpp" // use stl lock primitives as backend
#include "concurrent_boost.hpp" // use stl lock primitives as backend
using namespace mkg;
struct user_defined_type{
std::array<std::uint8_t, 128> buffer;
float coefficient = {0.1f};
std::map<std::uint32_t, std::string> lookup_table;
};
int main(void){
// Supports arbitrary types, including standard library containers, user defined types
// primitive types, pointer types..
{
concurrent<std::vector<std::string>> concurrent_vector;
{
{
// scopes are for limiting the accessor's lifetime
auto write_accessor = concurrent_vector.write_access_handle();
// We can safely access to the underlying vector now
write_accessor->emplace_back("you can treat the accessor's as a pointer to underlying resource.");
}
// Be careful, if you attempt acquiring two write accessors from same thread, it will cause deadlock.
#if __cplusplus >= 201703L
// can alternatively done neater, if C++17 is available
if(auto wa = concurrent_vector.write_access_handle(); !wa->empty()){
wa->emplace_back("C++17 is awesome.");
}
#endif
}
// Write accessor is gone, held lock is released
{
// Grab a read-only accessor to the vector
auto read_accessor = concurrent_vector.read_access_handle();
// We now hold a read lock to the object
// Iterate over the vector safely
for(const auto & str : (*read_accessor)){
std::cout <<str << std::endl;
}
}
// Read accessor is gone, held lock is released
}
{
concurrent<std::map<std::string, std::uint64_t>> concurrent_map;
{
auto write_accessor = concurrent_map.write_access_handle();
write_accessor->insert(std::make_pair("First", 1));
write_accessor->emplace("First", 1);
}
}
{
concurrent<std::string> concurrent_string;
{
auto write_accessor = concurrent_string.write_access_handle();
(*write_accessor) = "this is awesome";
std::cout << (*write_accessor) << std::endl;
}
{
auto read_accessor = concurrent_string.read_access_handle();
// (*read_accessor) = "this is not possible";
std::cout << (*read_accessor) << std::endl;
}
}
{
{
// Declare a concurrent resource pointer
concurrent<std::unique_ptr<user_defined_type>> concurrent;
auto write_access = concurrent.write_access_handle();
(*write_access) = std::make_unique<user_defined_type>();
// or
write_access->reset(new user_defined_type());
// Member access operator cannot be used here to access underlying resource,
// because it is also a pointer-like type. For pointer-like types, we must stick
// to dereferencing by * operator.
(*write_access)->buffer.fill(std::uint8_t(0));
auto iter = (*write_access)->lookup_table.find(1);
}
// or even, it might be vice-versa.
{
// This approach is syntatically simpler.
std::unique_ptr<concurrent<user_defined_type>> cr;
cr = std::make_unique<concurrent<user_defined_type>>();
auto write_access = cr->write_access_handle();
write_access->coefficient = 0.1;
}
}
{
concurrent<std::map<std::string,std::string>> shared_resource;
std::vector<std::thread> producer_threads, consumer_threads;
static std::atomic<std::uint64_t> idx = {0};
{
// spawn producers
producer_threads.emplace_back(std::thread(
[&shared_resource](){
for(;;){
{
auto write_accessor = shared_resource.write_access_handle();
write_accessor->emplace(std::to_string(idx++), "foo");
}
std::this_thread::sleep_for(std::chrono::milliseconds(750));
}
}
));
}
{
// spawn consumers
consumer_threads.emplace_back(std::thread(
[&shared_resource](){
for(;;){
{
auto read_accessor = shared_resource.read_access_handle();
for(const auto & pair : (*read_accessor)){
std::cout << pair.first << ":" << pair.second << std::endl;
}
std::flush(std::cout);
}
{
auto write_accessor = shared_resource.write_access_handle();
if(!write_accessor->empty())
write_accessor->erase(write_accessor->begin());
}
std::this_thread::sleep_for(std::chrono::milliseconds(500));
}
}
));
}
for(auto & t :producer_threads){
t.join();
}
for(auto & t : consumer_threads){
t.join();
}
}
}