-
Notifications
You must be signed in to change notification settings - Fork 170
/
Copy pathrange_tombstone.hh
275 lines (253 loc) · 10.6 KB
/
range_tombstone.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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
/*
* Copyright (C) 2016 ScyllaDB
*/
/*
* This file is part of Scylla.
*
* Scylla is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Scylla 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Scylla. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
#include <boost/intrusive/set.hpp>
#include <boost/range/algorithm.hpp>
#include <experimental/optional>
#include "hashing.hh"
#include "keys.hh"
#include "tombstone.hh"
#include "clustering_bounds_comparator.hh"
#include "stdx.hh"
#include "position_in_partition.hh"
namespace bi = boost::intrusive;
/**
* Represents a ranged deletion operation. Can be empty.
*/
class range_tombstone final {
bi::set_member_hook<bi::link_mode<bi::auto_unlink>> _link;
public:
clustering_key_prefix start;
bound_kind start_kind;
clustering_key_prefix end;
bound_kind end_kind;
tombstone tomb;
range_tombstone(clustering_key_prefix start, bound_kind start_kind, clustering_key_prefix end, bound_kind end_kind, tombstone tomb)
: start(std::move(start))
, start_kind(start_kind)
, end(std::move(end))
, end_kind(end_kind)
, tomb(std::move(tomb))
{ }
range_tombstone(bound_view start, bound_view end, tombstone tomb)
: range_tombstone(start.prefix(), start.kind(), end.prefix(), end.kind(), std::move(tomb))
{ }
// Can be called only when both start and end are !is_static_row && !is_clustering_row().
range_tombstone(position_in_partition_view start, position_in_partition_view end, tombstone tomb)
: range_tombstone(start.as_start_bound_view(), end.as_end_bound_view(), tomb)
{}
range_tombstone(clustering_key_prefix&& start, clustering_key_prefix&& end, tombstone tomb)
: range_tombstone(std::move(start), bound_kind::incl_start, std::move(end), bound_kind::incl_end, std::move(tomb))
{ }
// IDL constructor
range_tombstone(clustering_key_prefix&& start, tombstone tomb, bound_kind start_kind, clustering_key_prefix&& end, bound_kind end_kind)
: range_tombstone(std::move(start), start_kind, std::move(end), end_kind, std::move(tomb))
{ }
range_tombstone(range_tombstone&& rt) noexcept
: range_tombstone(std::move(rt.start), rt.start_kind, std::move(rt.end), rt.end_kind, std::move(rt.tomb)) {
update_node(rt._link);
}
struct without_link { };
range_tombstone(range_tombstone&& rt, without_link) noexcept
: range_tombstone(std::move(rt.start), rt.start_kind, std::move(rt.end), rt.end_kind, std::move(rt.tomb)) {
}
range_tombstone(const range_tombstone& rt)
: range_tombstone(rt.start, rt.start_kind, rt.end, rt.end_kind, rt.tomb)
{ }
range_tombstone& operator=(range_tombstone&& rt) noexcept {
update_node(rt._link);
move_assign(std::move(rt));
return *this;
}
range_tombstone& operator=(const range_tombstone& rt) {
start = rt.start;
start_kind = rt.start_kind;
end = rt.end;
end_kind = rt.end_kind;
tomb = rt.tomb;
return *this;
}
const bound_view start_bound() const {
return bound_view(start, start_kind);
}
const bound_view end_bound() const {
return bound_view(end, end_kind);
}
// Range tombstone covers all rows with positions p such that: position() <= p < end_position()
position_in_partition_view position() const;
position_in_partition_view end_position() const;
bool empty() const {
return !bool(tomb);
}
explicit operator bool() const {
return bool(tomb);
}
bool equal(const schema& s, const range_tombstone& other) const {
return tomb == other.tomb && start_bound().equal(s, other.start_bound()) && end_bound().equal(s, other.end_bound());
}
struct compare {
bound_view::compare _c;
compare(const schema& s) : _c(s) {}
bool operator()(const range_tombstone& rt1, const range_tombstone& rt2) const {
return _c(rt1.start_bound(), rt2.start_bound());
}
};
friend void swap(range_tombstone& rt1, range_tombstone& rt2) {
range_tombstone tmp(std::move(rt2), without_link());
rt2.move_assign(std::move(rt1));
rt1.move_assign(std::move(tmp));
}
friend std::ostream& operator<<(std::ostream& out, const range_tombstone& rt);
using container_type = bi::set<range_tombstone,
bi::member_hook<range_tombstone, bi::set_member_hook<bi::link_mode<bi::auto_unlink>>, &range_tombstone::_link>,
bi::compare<range_tombstone::compare>,
bi::constant_time_size<false>>;
static bool is_single_clustering_row_tombstone(const schema& s, const clustering_key_prefix& start,
bound_kind start_kind, const clustering_key_prefix& end, bound_kind end_kind)
{
return start.is_full(s) && start_kind == bound_kind::incl_start
&& end_kind == bound_kind::incl_end && start.equal(s, end);
}
// Applies src to this. The tombstones may be overlapping.
// If the tombstone with larger timestamp has the smaller range the remainder
// is returned, it guaranteed not to overlap with this.
// The start bounds of this and src are required to be equal. The start bound
// of this is not changed. The start bound of the remainder (if there is any)
// is larger than the end bound of this.
stdx::optional<range_tombstone> apply(const schema& s, range_tombstone&& src);
// Intersects the range of this tombstone with [pos, +inf) and replaces
// the range of the tombstone if there is an overlap.
// Returns true if there is an overlap. When returns false, the tombstone
// is not modified.
//
// pos must satisfy:
// 1) before_all_clustered_rows() <= pos
// 2) !pos.is_clustering_row() - because range_tombstone bounds can't represent such positions
bool trim_front(const schema& s, position_in_partition_view pos) {
position_in_partition::less_compare less(s);
if (!less(pos, end_position())) {
return false;
}
if (less(position(), pos)) {
set_start(s, pos);
}
return true;
}
// Assumes !pos.is_clustering_row(), because range_tombstone bounds can't represent such positions
void set_start(const schema& s, position_in_partition_view pos) {
bound_view new_start = pos.as_start_bound_view();
start = new_start.prefix();
start_kind = new_start.kind();
}
size_t external_memory_usage(const schema&) const {
return start.external_memory_usage() + end.external_memory_usage();
}
size_t memory_usage(const schema& s) const {
return sizeof(range_tombstone) + external_memory_usage(s);
}
private:
void move_assign(range_tombstone&& rt) {
start = std::move(rt.start);
start_kind = rt.start_kind;
end = std::move(rt.end);
end_kind = rt.end_kind;
tomb = std::move(rt.tomb);
}
void update_node(bi::set_member_hook<bi::link_mode<bi::auto_unlink>>& other_link) {
if (other_link.is_linked()) {
// Move the link in case we're being relocated by LSA.
container_type::node_algorithms::replace_node(other_link.this_ptr(), _link.this_ptr());
container_type::node_algorithms::init(other_link.this_ptr());
}
}
};
template<>
struct appending_hash<range_tombstone> {
template<typename Hasher>
void operator()(Hasher& h, const range_tombstone& value, const schema& s) const {
feed_hash(h, value.start, s);
// For backward compatibility, don't consider new fields if
// this could be an old-style, overlapping, range tombstone.
if (!value.start.equal(s, value.end) || value.start_kind != bound_kind::incl_start || value.end_kind != bound_kind::incl_end) {
feed_hash(h, value.start_kind);
feed_hash(h, value.end, s);
feed_hash(h, value.end_kind);
}
feed_hash(h, value.tomb);
}
};
// The accumulator expects the incoming range tombstones and clustered rows to
// follow the ordering used by the mutation readers.
//
// Unless the accumulator is in the reverse mode, after apply(rt) or
// tombstone_for_row(ck) are called there are followng restrictions for
// subsequent calls:
// - apply(rt1) can be invoked only if rt.start_bound() < rt1.start_bound()
// and ck < rt1.start_bound()
// - tombstone_for_row(ck1) can be invoked only if rt.start_bound() < ck1
// and ck < ck1
//
// In other words position in partition of the mutation fragments passed to the
// accumulator must be increasing.
//
// If the accumulator was created with the reversed flag set it expects the
// stream of the range tombstone to come from a reverse partitions and follow
// the ordering that they use. In particular, the restrictions from non-reversed
// mode change to:
// - apply(rt1) can be invoked only if rt.end_bound() > rt1.end_bound() and
// ck > rt1.end_bound()
// - tombstone_for_row(ck1) can be invoked only if rt.end_bound() > ck1 and
// ck > ck1.
class range_tombstone_accumulator {
bound_view::compare _cmp;
tombstone _partition_tombstone;
std::deque<range_tombstone> _range_tombstones;
tombstone _current_tombstone;
bool _reversed;
private:
void update_current_tombstone();
void drop_unneeded_tombstones(const clustering_key_prefix& ck, int w = 0);
public:
range_tombstone_accumulator(const schema& s, bool reversed)
: _cmp(s), _reversed(reversed) { }
void set_partition_tombstone(tombstone t) {
_partition_tombstone = t;
update_current_tombstone();
}
tombstone get_partition_tombstone() const {
return _partition_tombstone;
}
tombstone current_tombstone() const {
return _current_tombstone;
}
tombstone tombstone_for_row(const clustering_key_prefix& ck) {
drop_unneeded_tombstones(ck);
return _current_tombstone;
}
const std::deque<range_tombstone>& range_tombstones_for_row(const clustering_key_prefix& ck) {
drop_unneeded_tombstones(ck);
return _range_tombstones;
}
std::deque<range_tombstone> range_tombstones() && {
return std::move(_range_tombstones);
}
void apply(range_tombstone rt);
void clear();
};