forked from ton-blockchain/ton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSharedObjectPool.cpp
117 lines (108 loc) · 3 KB
/
SharedObjectPool.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
/*
This file is part of TON Blockchain Library.
TON Blockchain Library is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
TON Blockchain Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with TON Blockchain Library. If not, see <http://www.gnu.org/licenses/>.
Copyright 2017-2019 Telegram Systems LLP
*/
#include "td/utils/common.h"
#include "td/utils/SharedObjectPool.h"
#include "td/utils/tests.h"
#include <memory>
TEST(AtomicRefCnt, simple) {
td::detail::AtomicRefCnt cnt{0};
cnt.inc();
cnt.inc();
CHECK(!cnt.dec());
cnt.inc();
CHECK(!cnt.dec());
CHECK(cnt.dec());
cnt.inc();
CHECK(cnt.dec());
}
template <class T, class D>
using Ptr = td::detail::SharedPtr<T, D>;
class Deleter {
public:
template <class T>
void operator()(T *t) {
std::default_delete<T>()(t);
was_delete() = true;
}
static bool &was_delete() {
static bool flag = false;
return flag;
}
};
TEST(SharedPtr, simple) {
CHECK(!Deleter::was_delete());
Ptr<std::string, Deleter> ptr = Ptr<std::string, Deleter>::create("hello");
auto ptr2 = ptr;
CHECK(*ptr == "hello");
CHECK(*ptr2 == "hello");
ptr.reset();
CHECK(*ptr2 == "hello");
CHECK(ptr.empty());
Ptr<std::string, Deleter> ptr3 = std::move(ptr2);
CHECK(ptr2.empty());
CHECK(*ptr3 == "hello");
ptr = ptr3;
CHECK(*ptr3 == "hello");
ptr3.reset();
CHECK(*ptr == "hello");
ptr2 = std::move(ptr);
CHECK(ptr.empty());
CHECK(*ptr2 == "hello");
#if TD_CLANG
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wunknown-pragmas"
#pragma clang diagnostic ignored "-Wunknown-warning-option"
#pragma clang diagnostic ignored "-Wself-assign-overloaded"
#endif
ptr2 = ptr2;
#if TD_CLANG
#pragma clang diagnostic pop
#endif
CHECK(*ptr2 == "hello");
CHECK(!Deleter::was_delete());
ptr2.reset();
CHECK(Deleter::was_delete());
CHECK(ptr2.empty());
}
TEST(SharedObjectPool, simple) {
class Node {
public:
Node() {
cnt()++;
};
~Node() {
cnt()--;
}
static int &cnt() {
static int cnt_ = 0;
return cnt_;
}
};
{
td::SharedObjectPool<Node> pool;
{ auto ptr1 = pool.alloc(); }
{ auto ptr2 = pool.alloc(); }
{ auto ptr3 = pool.alloc(); }
{ auto ptr4 = pool.alloc(); }
{ auto ptr5 = pool.alloc(); }
CHECK(Node::cnt() == 0);
CHECK(pool.total_size() == 1);
CHECK(pool.calc_free_size() == 1);
{ auto ptr6 = pool.alloc(), ptr7 = pool.alloc(), ptr8 = pool.alloc(); }
CHECK(pool.total_size() == 3);
CHECK(pool.calc_free_size() == 3);
}
CHECK(Node::cnt() == 0);
}