forked from apache/brpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist_of_abafree_id.h
201 lines (177 loc) · 6.18 KB
/
list_of_abafree_id.h
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
197
198
199
200
// bthread - A M:N threading library to make applications more concurrent.
// Copyright (c) 2016 Baidu.com, Inc. All Rights Reserved
// Author: Ge,Jun (gejun@baidu.com)
// Date: Mon Jun 20 11:57:23 CST 2016
#ifndef BAIDU_BTHREAD_LIST_OF_ABAFREE_ID_H
#define BAIDU_BTHREAD_LIST_OF_ABAFREE_ID_H
#include <vector>
#include <deque>
namespace bthread {
// A container for storing identifiers that may be invalidated.
// [Basic Idea]
// identifiers are remembered for error notifications. While insertions are
// easy, removals are hard to be done in O(1) time. More importantly,
// insertions are often done in one thread, while removals come from many
// threads simultaneously. Think about the usage in brpc::Socket, most
// bthread_id_t are inserted by one thread (the thread calling non-contended
// Write or the KeepWrite thread), but removals are from many threads
// processing responses simultaneously.
// [The approach]
// Don't remove old identifiers eagerly, replace them when new ones are inserted.
// IdTraits MUST have {
// // #identifiers in each block
// static const size_t BLOCK_SIZE = 63;
//
// // Max #entries. Often has close relationship with concurrency, 65536
// // is "huge" for most apps.
// static const size_t MAX_ENTRIES = 65536;
//
// // Initial value of id. Id with the value is treated as invalid.
// static const Id ID_INIT = ...;
//
// // Returns true if the id is valid. The "validness" must be permanent or
// // stable for a very long period (to make the id ABA-free).
// static bool exists(Id id);
// }
// This container is NOT thread-safe right now, and shouldn't be
// an issue in current usages throughout baidu-rpc.
template <typename Id, typename IdTraits>
class ListOfABAFreeId {
public:
ListOfABAFreeId();
~ListOfABAFreeId();
// Add an identifier into the list.
int add(Id id);
// Apply fn(id) to all identifiers.
template <typename Fn> void apply(const Fn& fn);
// Put #entries of each level into `counts'
// Returns #levels.
size_t get_sizes(size_t* counts, size_t n);
private:
DISALLOW_COPY_AND_ASSIGN(ListOfABAFreeId);
struct IdBlock {
Id ids[IdTraits::BLOCK_SIZE];
IdBlock* next;
};
void forward_index();
IdBlock* _cur_block;
uint32_t _cur_index;
uint32_t _nblock;
IdBlock _head_block;
};
// [impl.]
template <typename Id, typename IdTraits>
ListOfABAFreeId<Id, IdTraits>::ListOfABAFreeId()
: _cur_block(&_head_block)
, _cur_index(0)
, _nblock(1) {
for (size_t i = 0; i < IdTraits::BLOCK_SIZE; ++i) {
_head_block.ids[i] = IdTraits::ID_INIT;
}
_head_block.next = NULL;
}
template <typename Id, typename IdTraits>
ListOfABAFreeId<Id, IdTraits>::~ListOfABAFreeId() {
_cur_block = NULL;
_cur_index = 0;
_nblock = 0;
for (IdBlock* p = _head_block.next; p != NULL;) {
IdBlock* saved_next = p->next;
delete p;
p = saved_next;
}
_head_block.next = NULL;
}
template <typename Id, typename IdTraits>
inline void ListOfABAFreeId<Id, IdTraits>::forward_index() {
if (++_cur_index >= IdTraits::BLOCK_SIZE) {
_cur_index = 0;
if (_cur_block->next) {
_cur_block = _cur_block->next;
} else {
_cur_block = &_head_block;
}
}
}
template <typename Id, typename IdTraits>
int ListOfABAFreeId<Id, IdTraits>::add(Id id) {
// Scan for at most 4 positions, if any of them is empty, use the position.
Id* saved_pos[4];
for (size_t i = 0; i < arraysize(saved_pos); ++i) {
Id* const pos = _cur_block->ids + _cur_index;
forward_index();
// The position is not used.
if (*pos == IdTraits::ID_INIT || !IdTraits::exists(*pos)) {
*pos = id;
return 0;
}
saved_pos[i] = pos;
}
// The list is considered to be "crowded", add a new block and scatter
// the conflict identifiers by inserting an empty entry after each of
// them, so that even if the identifiers are still valid when we walk
// through the area again, we can find an empty entry.
// The new block is inserted as if it's inserted between xxxx and yyyy,
// where xxxx are the 4 conflict identifiers.
// [..xxxxyyyy] -> [..........]
// block A block B
//
// [..xxxx....] -> [......yyyy] -> [..........]
// block A new block block B
if (_nblock * IdTraits::BLOCK_SIZE > IdTraits::MAX_ENTRIES) {
return EAGAIN;
}
IdBlock* new_block = new (std::nothrow) IdBlock;
if (NULL == new_block) {
return ENOMEM;
}
++_nblock;
for (size_t i = 0; i < _cur_index; ++i) {
new_block->ids[i] = IdTraits::ID_INIT;
}
for (size_t i = _cur_index; i < IdTraits::BLOCK_SIZE; ++i) {
new_block->ids[i] = _cur_block->ids[i];
_cur_block->ids[i] = IdTraits::ID_INIT;
}
new_block->next = _cur_block->next;
_cur_block->next = new_block;
// Scatter the conflict identifiers.
// [..xxxx....] -> [......yyyy] -> [..........]
// block A new block block B
//
// [..x.x.x.x.] -> [......yyyy] -> [..........]
// block A new block block B
_cur_block->ids[_cur_index] = *saved_pos[2];
*saved_pos[2] = *saved_pos[1];
*saved_pos[1] = IdTraits::ID_INIT;
forward_index();
forward_index();
_cur_block->ids[_cur_index] = *saved_pos[3];
*saved_pos[3] = IdTraits::ID_INIT;
forward_index();
_cur_block->ids[_cur_index] = id;
forward_index();
return 0;
}
template <typename Id, typename IdTraits>
template <typename Fn>
void ListOfABAFreeId<Id, IdTraits>::apply(const Fn& fn) {
for (IdBlock* p = &_head_block; p != NULL; p = p->next) {
for (size_t i = 0; i < IdTraits::BLOCK_SIZE; ++i) {
if (p->ids[i] != IdTraits::ID_INIT && IdTraits::exists(p->ids[i])) {
fn(p->ids[i]);
}
}
}
}
template <typename Id, typename IdTraits>
size_t ListOfABAFreeId<Id, IdTraits>::get_sizes(size_t* cnts, size_t n) {
if (n == 0) {
return 0;
}
// Current impl. only has one level.
cnts[0] = _nblock * IdTraits::BLOCK_SIZE;
return 1;
}
} // namespace bthread
#endif // BAIDU_BTHREAD_LIST_OF_ABAFREE_ID_H