-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
63 lines (46 loc) · 2.42 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
#include <iostream>
#include <thread>
#include "ConcurrentHashMap.h"
int main() {
using TestMapType = ConcurrentHashMap<int, std::string>;
TestMapType concurrentHashMap;
for (int i = 0; i < 10000; ++i) {
concurrentHashMap.insert(i, std::to_string(i));
}
std::cout << " --------------- " << std::endl;
std::thread thr1([&concurrentHashMap]() { concurrentHashMap.doForEeach([](TestMapType::ValueType &pair) { pair.second.append("+1"); }); });
std::thread thr2([&concurrentHashMap]() { concurrentHashMap.doForEeach([](TestMapType::ValueType &pair) { pair.second.append("+2"); }); });
thr1.join();
thr2.join();
concurrentHashMap.doForEeach([](const TestMapType::ValueType &pair) { std::cout << pair.first << " [" << pair.second << "]" << std::endl; });
std::cout << " --------------- " << std::endl;
std::thread thr3([&concurrentHashMap]() {
concurrentHashMap.doForEeachIf([](TestMapType::ValueType &pair) { pair.second.append("+even"); }, [](const TestMapType::ValueType &pair) { return pair.first % 2 == 0; });
});
std::thread thr4([&concurrentHashMap]() {
concurrentHashMap.doForEeachIf([](TestMapType::ValueType &pair) { pair.second.append("+not_even"); }, [](const TestMapType::ValueType &pair) { return pair.first % 2 != 0; });
});
thr3.join();
thr4.join();
concurrentHashMap.doForEeach([](const TestMapType::ValueType &pair) { std::cout << pair.first << " [" << pair.second << "]" << std::endl; });
std::cout << " --------------- " << std::endl;
concurrentHashMap.doForEeachIf(
[](TestMapType::ValueType &pair) {
pair.second.append("-");
std::cout << pair.first << " [" << pair.second << "]" << std::endl;
},
[](TestMapType::ValueType &pair) { return pair.first % 3 == 0; });
std::cout << "size : " << concurrentHashMap.size() << std::endl;
std::cout << "empty ? : " << (concurrentHashMap.empty() ? "true" : "false") << std::endl;
std::cout << "contains 1 ? : " << (concurrentHashMap.contains(1) ? "true" : "false") << std::endl;
concurrentHashMap.rwLock().lock();
concurrentHashMap.insert(11, std::to_string(11), TestMapType::OperationMode::FORCE_NO_LOCK);
concurrentHashMap.doForEeach(
[](TestMapType::ValueType &pair) {
pair.second.append("0");
std::cout << pair.first << " [" << pair.second << "]" << std::endl;
},
TestMapType::OperationMode::FORCE_NO_LOCK);
concurrentHashMap.rwLock().unlock();
return 0;
}