forked from kohler/masstree-beta
-
Notifications
You must be signed in to change notification settings - Fork 1
/
value_versioned_array.hh
205 lines (176 loc) · 6.42 KB
/
value_versioned_array.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
/* 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 VALUE_VERSIONED_ARRAY_HH
#define VALUE_VERSIONED_ARRAY_HH
#include "compiler.hh"
#include "value_array.hh"
struct rowversion {
rowversion() {
v_.u = 0;
}
bool dirty() {
return v_.dirty;
}
void setdirty() {
v_.u = v_.u | 0x80000000;
}
void clear() {
v_.u = v_.u & 0x7fffffff;
}
void clearandbump() {
v_.u = (v_.u + 1) & 0x7fffffff;
}
rowversion stable() const {
value_t x = v_;
while (x.dirty) {
relax_fence();
x = v_;
}
acquire_fence();
return x;
}
bool has_changed(rowversion x) const {
fence();
return x.v_.ctr != v_.ctr;
}
private:
union value_t {
struct {
uint32_t ctr:31;
uint32_t dirty:1;
};
uint32_t u;
};
value_t v_;
rowversion(value_t v)
: v_(v) {
}
};
class value_versioned_array {
public:
typedef value_array::index_type index_type;
static const char *name() { return "ArrayVersion"; }
typedef lcdf::Json Json;
inline value_versioned_array();
inline kvtimestamp_t timestamp() const;
inline int ncol() const;
inline Str col(int i) const;
void deallocate(threadinfo &ti);
void deallocate_rcu(threadinfo &ti);
void snapshot(value_versioned_array*& storage,
const std::vector<index_type>& f, threadinfo& ti) const;
value_versioned_array* update(const Json* first, const Json* last,
kvtimestamp_t ts, threadinfo& ti,
bool always_copy = false);
static value_versioned_array* create(const Json* first, const Json* last,
kvtimestamp_t ts, threadinfo& ti);
static value_versioned_array* create1(Str value, kvtimestamp_t ts, threadinfo& ti);
inline void deallocate_rcu_after_update(const Json* first, const Json* last, threadinfo& ti);
inline void deallocate_after_failed_update(const Json* first, const Json* last, threadinfo& ti);
template <typename PARSER>
static value_versioned_array* checkpoint_read(PARSER& par, kvtimestamp_t ts,
threadinfo& ti);
template <typename UNPARSER>
void checkpoint_write(UNPARSER& unpar) const;
void print(FILE *f, const char *prefix, int indent, Str key,
kvtimestamp_t initial_ts, const char *suffix = "") {
kvtimestamp_t adj_ts = timestamp_sub(ts_, initial_ts);
fprintf(f, "%s%*s%.*s = ### @" PRIKVTSPARTS "%s\n", prefix, indent, "",
key.len, key.s, KVTS_HIGHPART(adj_ts), KVTS_LOWPART(adj_ts), suffix);
}
private:
kvtimestamp_t ts_;
rowversion ver_;
short ncol_;
short ncol_cap_;
lcdf::inline_string* cols_[0];
static inline size_t shallow_size(int ncol);
inline size_t shallow_size() const;
static value_versioned_array* make_sized_row(int ncol, kvtimestamp_t ts, threadinfo& ti);
};
template <>
struct query_helper<value_versioned_array> {
value_versioned_array* snapshot_;
query_helper()
: snapshot_() {
}
inline const value_versioned_array* snapshot(const value_versioned_array* row,
const std::vector<value_versioned_array::index_type>& f,
threadinfo& ti) {
row->snapshot(snapshot_, f, ti);
return snapshot_;
}
};
inline value_versioned_array::value_versioned_array()
: ts_(0), ncol_(0), ncol_cap_(0) {
}
inline kvtimestamp_t value_versioned_array::timestamp() const {
return ts_;
}
inline int value_versioned_array::ncol() const {
return ncol_;
}
inline Str value_versioned_array::col(int i) const {
if (unsigned(i) < unsigned(ncol_) && cols_[i])
return Str(cols_[i]->s, cols_[i]->len);
else
return Str();
}
inline size_t value_versioned_array::shallow_size(int ncol) {
return sizeof(value_versioned_array) + ncol * sizeof(lcdf::inline_string*);
}
inline size_t value_versioned_array::shallow_size() const {
return shallow_size(ncol_);
}
inline value_versioned_array* value_versioned_array::create(const Json* first, const Json* last, kvtimestamp_t ts, threadinfo& ti) {
value_versioned_array empty;
return empty.update(first, last, ts, ti, true);
}
inline value_versioned_array* value_versioned_array::create1(Str value, kvtimestamp_t ts, threadinfo& ti) {
value_versioned_array* row = (value_versioned_array*) ti.allocate(shallow_size(1), memtag_value);
row->ts_ = ts;
row->ver_ = rowversion();
row->ncol_ = row->ncol_cap_ = 1;
row->cols_[0] = value_array::make_column(value, ti);
return row;
}
inline void value_versioned_array::deallocate_rcu_after_update(const Json*, const Json*, threadinfo& ti) {
ti.deallocate_rcu(this, shallow_size(), memtag_value);
}
inline void value_versioned_array::deallocate_after_failed_update(const Json*, const Json*, threadinfo&) {
always_assert(0);
}
template <typename PARSER>
value_versioned_array*
value_versioned_array::checkpoint_read(PARSER& par, kvtimestamp_t ts,
threadinfo& ti) {
unsigned ncol;
par.read_array_header(ncol);
value_versioned_array* row = make_sized_row(ncol, ts, ti);
Str col;
for (unsigned i = 0; i != ncol; i++) {
par >> col;
row->cols_[i] = value_array::make_column(col, ti);
}
return row;
}
template <typename UNPARSER>
void value_versioned_array::checkpoint_write(UNPARSER& unpar) const {
unpar.write_array_header(ncol_);
for (short i = 0; i != ncol_; ++i)
unpar << col(i);
}
#endif