-
Notifications
You must be signed in to change notification settings - Fork 115
/
masstree_tcursor.hh
223 lines (197 loc) · 7.92 KB
/
masstree_tcursor.hh
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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
/* Masstree
* Eddie Kohler, Yandong Mao, Robert Morris
* Copyright (c) 2012-2014 President and Fellows of Harvard College
* Copyright (c) 2012-2014 Massachusetts Institute of Technology
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, subject to the conditions
* listed in the Masstree LICENSE file. These conditions include: you must
* preserve this copyright notice, and you cannot mention the copyright
* holders in advertising related to the Software without their permission.
* The Software is provided WITHOUT ANY WARRANTY, EXPRESS OR IMPLIED. This
* notice is a summary of the Masstree LICENSE file; the license in that file
* is legally binding.
*/
#ifndef MASSTREE_TCURSOR_HH
#define MASSTREE_TCURSOR_HH 1
#include "small_vector.hh"
#include "masstree_key.hh"
#include "masstree_struct.hh"
namespace Masstree {
template <typename P> struct gc_layer_rcu_callback;
template <typename P>
class unlocked_tcursor {
public:
typedef typename P::value_type value_type;
typedef key<typename P::ikey_type> key_type;
typedef typename P::threadinfo_type threadinfo;
typedef typename leaf<P>::nodeversion_type nodeversion_type;
typedef typename nodeversion_type::value_type nodeversion_value_type;
typedef typename leaf<P>::permuter_type permuter_type;
inline unlocked_tcursor(const basic_table<P>& table, Str str)
: ka_(str), lv_(leafvalue<P>::make_empty()),
root_(table.root()) {
}
inline unlocked_tcursor(basic_table<P>& table, Str str)
: ka_(str), lv_(leafvalue<P>::make_empty()),
root_(table.fix_root()) {
}
inline unlocked_tcursor(const basic_table<P>& table,
const char* s, int len)
: ka_(s, len), lv_(leafvalue<P>::make_empty()),
root_(table.root()) {
}
inline unlocked_tcursor(basic_table<P>& table,
const char* s, int len)
: ka_(s, len), lv_(leafvalue<P>::make_empty()),
root_(table.fix_root()) {
}
inline unlocked_tcursor(const basic_table<P>& table,
const unsigned char* s, int len)
: ka_(reinterpret_cast<const char*>(s), len),
lv_(leafvalue<P>::make_empty()), root_(table.root()) {
}
inline unlocked_tcursor(basic_table<P>& table,
const unsigned char* s, int len)
: ka_(reinterpret_cast<const char*>(s), len),
lv_(leafvalue<P>::make_empty()), root_(table.fix_root()) {
}
bool find_unlocked(threadinfo& ti);
inline value_type value() const {
return lv_.value();
}
inline leaf<P>* node() const {
return n_;
}
inline permuter_type permutation() const {
return perm_;
}
inline int compare_key(const key_type& a, int bp) const {
return n_->compare_key(a, bp);
}
inline nodeversion_value_type full_version_value() const {
static_assert(int(nodeversion_type::traits_type::top_stable_bits) >= int(leaf<P>::permuter_type::size_bits), "not enough bits to add size to version");
return (v_.version_value() << leaf<P>::permuter_type::size_bits) + perm_.size();
}
private:
leaf<P>* n_;
key_type ka_;
typename leaf<P>::nodeversion_type v_;
permuter_type perm_;
leafvalue<P> lv_;
const node_base<P>* root_;
};
template <typename P>
class tcursor {
public:
typedef node_base<P> node_type;
typedef leaf<P> leaf_type;
typedef internode<P> internode_type;
typedef typename P::value_type value_type;
typedef leafvalue<P> leafvalue_type;
typedef typename leaf_type::permuter_type permuter_type;
typedef typename P::ikey_type ikey_type;
typedef key<ikey_type> key_type;
typedef typename leaf<P>::nodeversion_type nodeversion_type;
typedef typename nodeversion_type::value_type nodeversion_value_type;
typedef typename P::threadinfo_type threadinfo;
static constexpr int new_nodes_size = 1; // unless we make a new trie newnodes will have at most 1 item
typedef small_vector<std::pair<leaf_type*, nodeversion_value_type>, new_nodes_size> new_nodes_type;
tcursor(basic_table<P>& table, Str str)
: ka_(str), root_(table.fix_root()) {
}
tcursor(basic_table<P>& table, const char* s, int len)
: ka_(s, len), root_(table.fix_root()) {
}
tcursor(basic_table<P>& table, const unsigned char* s, int len)
: ka_(reinterpret_cast<const char*>(s), len), root_(table.fix_root()) {
}
tcursor(node_base<P>* root, const char* s, int len)
: ka_(s, len), root_(root) {
}
tcursor(node_base<P>* root, const unsigned char* s, int len)
: ka_(reinterpret_cast<const char*>(s), len), root_(root) {
}
inline bool has_value() const {
return kx_.p >= 0;
}
inline value_type& value() const {
return n_->lv_[kx_.p].value();
}
inline bool is_first_layer() const {
return !ka_.is_shifted();
}
inline leaf<P>* node() const {
return n_;
}
inline leaf_type* original_node() const {
return original_n_;
}
inline nodeversion_value_type original_version_value() const {
return original_v_;
}
inline nodeversion_value_type updated_version_value() const {
return updated_v_;
}
inline const new_nodes_type &new_nodes() const {
return new_nodes_;
}
inline bool find_locked(threadinfo& ti);
inline bool find_insert(threadinfo& ti);
inline void finish(int answer, threadinfo& ti);
inline nodeversion_value_type previous_full_version_value() const;
inline nodeversion_value_type next_full_version_value(int state) const;
private:
leaf_type* n_;
key_type ka_;
key_indexed_position kx_;
node_base<P>* root_;
int state_;
leaf_type* original_n_;
nodeversion_value_type original_v_;
nodeversion_value_type updated_v_;
new_nodes_type new_nodes_;
inline node_type* reset_retry() {
ka_.unshift_all();
return root_;
}
bool make_new_layer(threadinfo& ti);
bool make_split(threadinfo& ti);
friend class leaf<P>;
inline void finish_insert();
inline bool finish_remove(threadinfo& ti);
static void redirect(internode_type* n, ikey_type ikey,
ikey_type replacement, threadinfo& ti);
/** Remove @a leaf from the Masstree rooted at @a rootp.
* @param prefix String defining the path to the tree containing this leaf.
* If removing a leaf in layer 0, @a prefix is empty.
* If removing, for example, the node containing key "01234567ABCDEF" in the layer-1 tree
* rooted at "01234567", then @a prefix should equal "01234567". */
static bool remove_leaf(leaf_type* leaf, node_type* root,
Str prefix, threadinfo& ti);
bool gc_layer(threadinfo& ti);
friend struct gc_layer_rcu_callback<P>;
};
template <typename P>
inline typename tcursor<P>::nodeversion_value_type
tcursor<P>::previous_full_version_value() const {
static_assert(int(nodeversion_type::traits_type::top_stable_bits) >= int(leaf<P>::permuter_type::size_bits), "not enough bits to add size to version");
return (n_->unlocked_version_value() << leaf<P>::permuter_type::size_bits) + n_->size();
}
template <typename P>
inline typename tcursor<P>::nodeversion_value_type
tcursor<P>::next_full_version_value(int state) const {
static_assert(int(nodeversion_type::traits_type::top_stable_bits) >= int(leaf<P>::permuter_type::size_bits), "not enough bits to add size to version");
typename node_base<P>::nodeversion_type v(*n_);
v.unlock();
nodeversion_value_type result = (v.version_value() << leaf<P>::permuter_type::size_bits) + n_->size();
if (state < 0 && (state_ & 1))
return result - 1;
else if (state > 0 && state_ == 2)
return result + 1;
else
return result;
}
} // namespace Masstree
#endif