forked from scylladb/seastar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
simple-stream.hh
544 lines (497 loc) · 17.4 KB
/
simple-stream.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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
/*
* This file is open source software, licensed to you under the terms
* of the Apache License, Version 2.0 (the "License"). See the NOTICE file
* distributed with this work for additional information regarding copyright
* ownership. You may not use this file except in compliance with the License.
*
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
/*
* Copyright (C) 2016 Scylladb, Ltd.
*/
#pragma once
#include "core/sstring.hh"
namespace seastar {
class measuring_output_stream {
size_t _size = 0;
public:
void write(const char* data, size_t size) {
_size += size;
}
size_t size() const {
return _size;
}
};
struct simple_stream_tag {};
template<typename Iterator>
class memory_output_stream {
public:
class simple {
char* _p = nullptr;
size_t _size = 0;
public:
using has_with_stream = std::false_type;
using iterator_type = Iterator;
simple() {}
simple(char* p, size_t size, size_t start = 0) : _p(p + start), _size(size) {}
char* begin() { return _p; }
[[gnu::always_inline]]
void skip(size_t size) {
if (size > _size) {
throw std::out_of_range("serialization buffer overflow");
}
_p += size;
_size -= size;
}
[[gnu::always_inline]]
simple write_substream(size_t size) {
if (size > _size) {
throw std::out_of_range("serialization buffer overflow");
}
simple substream(_p, size);
skip(size);
return substream;
}
[[gnu::always_inline]]
void write(const char* p, size_t size) {
if (size > _size) {
throw std::out_of_range("serialization buffer overflow");
}
std::copy_n(p, size, _p);
skip(size);
}
[[gnu::always_inline]]
const size_t size() const {
return _size;
}
};
class fragmented {
Iterator _it;
simple _current;
size_t _size;
private:
template<typename Func>
//requires requires(Func f, view bv) { { f(bv) } -> void; }
void for_each_fragment(size_t size, Func&& func) {
if (size > _size) {
throw std::out_of_range("serialization buffer overflow");
}
_size -= size;
while (size) {
if (!_current.size()) {
_current = simple(reinterpret_cast<char*>((*_it).get_write()), (*_it).size());
_it++;
}
auto this_size = std::min(_current.size(), size);
func(_current.write_substream(this_size));
size -= this_size;
}
}
fragmented(Iterator it, simple bv, size_t size)
: _it(it), _current(bv), _size(size) { }
public:
using has_with_stream = std::false_type;
using iterator_type = Iterator;
fragmented(Iterator it, size_t size)
: _it(it), _size(size) {
}
void skip(size_t size) {
for_each_fragment(size, [] (auto) { });
}
fragmented write_substream(size_t size) {
if (size > _size) {
throw std::out_of_range("serialization buffer overflow");
}
fragmented substream(_it, _current, size);
skip(size);
return substream;
}
void write(const char* p, size_t size) {
for_each_fragment(size, [&p] (auto bv) {
std::copy_n(p, bv.size(), bv.begin());
p += bv.size();
});
}
const size_t size() const {
return _size;
}
};
private:
const bool _is_simple;
using fragmented_type = std::conditional_t<std::is_same<Iterator, simple_stream_tag>::value, simple, fragmented>;
union {
simple _simple;
fragmented_type _fragmented;
};
public:
template<typename StreamVisitor>
[[gnu::always_inline]]
decltype(auto) with_stream(StreamVisitor&& visitor) {
if (__builtin_expect(_is_simple, true)) {
return visitor(_simple);
}
return visitor(_fragmented);
}
template<typename StreamVisitor>
[[gnu::always_inline]]
decltype(auto) with_stream(StreamVisitor&& visitor) const {
if (__builtin_expect(_is_simple, true)) {
return visitor(_simple);
}
return visitor(_fragmented);
}
public:
using has_with_stream = std::true_type;
using iterator_type = Iterator;
memory_output_stream(simple stream)
: _is_simple(true), _simple(std::move(stream)) {}
memory_output_stream(fragmented stream)
: _is_simple(false), _fragmented(std::move(stream)) {}
[[gnu::always_inline]]
memory_output_stream(const memory_output_stream& other) noexcept : _is_simple(other._is_simple) {
// Making this copy constructor noexcept makes copy assignment simpler.
// Besides, performance of memory_output_stream relies on the fact that both
// fragmented and simple input stream are PODs and the branch below
// is optimized away, so throwable copy constructors aren't something
// we want.
static_assert(std::is_nothrow_copy_constructible<fragmented>::value,
"seastar::memory_output_stream::fragmented should be copy constructible");
static_assert(std::is_nothrow_copy_constructible<simple>::value,
"seastar::memory_output_stream::simple should be copy constructible");
if (_is_simple) {
new (&_simple) simple(other._simple);
} else {
new (&_fragmented) fragmented_type(other._fragmented);
}
}
[[gnu::always_inline]]
memory_output_stream(memory_output_stream&& other) noexcept : _is_simple(other._is_simple) {
if (_is_simple) {
new (&_simple) simple(std::move(other._simple));
} else {
new (&_fragmented) fragmented_type(std::move(other._fragmented));
}
}
[[gnu::always_inline]]
memory_output_stream& operator=(const memory_output_stream& other) noexcept {
// Copy constructor being noexcept makes copy assignment simpler.
static_assert(std::is_nothrow_copy_constructible<memory_output_stream>::value,
"memory_output_stream copy constructor shouldn't throw");
if (this != &other) {
this->~memory_output_stream();
new (this) memory_output_stream(other);
}
return *this;
}
[[gnu::always_inline]]
memory_output_stream& operator=(memory_output_stream&& other) noexcept {
if (this != &other) {
this->~memory_output_stream();
new (this) memory_output_stream(std::move(other));
}
return *this;
}
[[gnu::always_inline]]
~memory_output_stream() {
if (_is_simple) {
_simple.~simple();
} else {
_fragmented.~fragmented_type();
}
}
[[gnu::always_inline]]
void skip(size_t size) {
with_stream([size] (auto& stream) {
stream.skip(size);
});
}
[[gnu::always_inline]]
memory_output_stream write_substream(size_t size) {
return with_stream([size] (auto& stream) -> memory_output_stream {
return stream.write_substream(size);
});
}
[[gnu::always_inline]]
void write(const char* p, size_t size) {
with_stream([p, size] (auto& stream) {
stream.write(p, size);
});
}
[[gnu::always_inline]]
size_t size() const {
return with_stream([] (auto& stream) {
return stream.size();
});
}
};
/*
template<typename Visitor>
concept bool StreamVisitor() {
return requires(Visitor visitor, simple& simple, fragmented& fragmented) {
visitor(simple);
visitor(fragmented);
};
}
*/
// memory_input_stream performs type erasure optimized for cases where
// simple is used.
// By using a lot of [[gnu::always_inline]] attributes this class attempts to
// make the compiler generate code with simple functions inlined
// directly in the user of the intput_stream.
template<typename Iterator>
class memory_input_stream {
public:
class simple {
const char* _p = nullptr;
size_t _size = 0;
public:
using has_with_stream = std::false_type;
using iterator_type = Iterator;
simple() {}
simple(const char* p, size_t size) : _p(p), _size(size) {}
const char* begin() const { return _p; }
[[gnu::always_inline]]
void skip(size_t size) {
if (size > _size) {
throw std::out_of_range("deserialization buffer underflow");
}
_p += size;
_size -= size;
}
[[gnu::always_inline]]
simple read_substream(size_t size) {
if (size > _size) {
throw std::out_of_range("deserialization buffer underflow");
}
simple substream(_p, size);
skip(size);
return substream;
}
[[gnu::always_inline]]
void read(char* p, size_t size) {
if (size > _size) {
throw std::out_of_range("deserialization buffer underflow");
}
std::copy_n(_p, size, p);
skip(size);
}
template<typename Output>
[[gnu::always_inline]]
void copy_to(Output& out) const {
out.write(_p, _size);
}
[[gnu::always_inline]]
const size_t size() const {
return _size;
}
};
class fragmented {
Iterator _it;
simple _current;
size_t _size;
private:
template<typename Func>
//requires requires(Func f, view bv) { { f(bv) } -> void; }
void for_each_fragment(size_t size, Func&& func) {
if (size > _size) {
throw std::out_of_range("deserialization buffer underflow");
}
_size -= size;
while (size) {
if (!_current.size()) {
_current = simple(reinterpret_cast<const char*>((*_it).begin()), (*_it).size());
_it++;
}
auto this_size = std::min(_current.size(), size);
func(_current.read_substream(this_size));
size -= this_size;
}
}
fragmented(Iterator it, simple bv, size_t size)
: _it(it), _current(bv), _size(size) { }
public:
using has_with_stream = std::false_type;
using iterator_type = Iterator;
fragmented(Iterator it, size_t size)
: _it(it), _size(size) {
}
void skip(size_t size) {
for_each_fragment(size, [] (auto) { });
}
fragmented read_substream(size_t size) {
if (size > _size) {
throw std::out_of_range("deserialization buffer underflow");
}
fragmented substream(_it, _current, size);
skip(size);
return substream;
}
void read(char* p, size_t size) {
for_each_fragment(size, [&p] (auto bv) {
p = std::copy_n(bv.begin(), bv.size(), p);
});
}
template<typename Output>
void copy_to(Output& out) {
for_each_fragment(_size, [&out] (auto bv) {
bv.copy_to(out);
});
}
const size_t size() const {
return _size;
}
};
private:
const bool _is_simple;
using fragmented_type = std::conditional_t<std::is_same<Iterator, simple_stream_tag>::value, simple, fragmented>;
union {
simple _simple;
fragmented_type _fragmented;
};
public:
template<typename StreamVisitor>
[[gnu::always_inline]]
decltype(auto) with_stream(StreamVisitor&& visitor) {
if (__builtin_expect(_is_simple, true)) {
return visitor(_simple);
}
return visitor(_fragmented);
}
template<typename StreamVisitor>
[[gnu::always_inline]]
decltype(auto) with_stream(StreamVisitor&& visitor) const {
if (__builtin_expect(_is_simple, true)) {
return visitor(_simple);
}
return visitor(_fragmented);
}
public:
using has_with_stream = std::true_type;
using iterator_type = Iterator;
memory_input_stream(simple stream)
: _is_simple(true), _simple(std::move(stream)) {}
memory_input_stream(fragmented stream)
: _is_simple(false), _fragmented(std::move(stream)) {}
[[gnu::always_inline]]
memory_input_stream(const memory_input_stream& other) noexcept : _is_simple(other._is_simple) {
// Making this copy constructor noexcept makes copy assignment simpler.
// Besides, performance of memory_input_stream relies on the fact that both
// fragmented and simple input stream are PODs and the branch below
// is optimized away, so throwable copy constructors aren't something
// we want.
static_assert(std::is_nothrow_copy_constructible<fragmented>::value,
"seastar::memory_input_stream::fragmented should be copy constructible");
static_assert(std::is_nothrow_copy_constructible<simple>::value,
"seastar::memory_input_stream::simple should be copy constructible");
if (_is_simple) {
new (&_simple) simple(other._simple);
} else {
new (&_fragmented) fragmented_type(other._fragmented);
}
}
[[gnu::always_inline]]
memory_input_stream(memory_input_stream&& other) noexcept : _is_simple(other._is_simple) {
if (_is_simple) {
new (&_simple) simple(std::move(other._simple));
} else {
new (&_fragmented) fragmented_type(std::move(other._fragmented));
}
}
[[gnu::always_inline]]
memory_input_stream& operator=(const memory_input_stream& other) noexcept {
// Copy constructor being noexcept makes copy assignment simpler.
static_assert(std::is_nothrow_copy_constructible<memory_input_stream>::value,
"memory_input_stream copy constructor shouldn't throw");
if (this != &other) {
this->~memory_input_stream();
new (this) memory_input_stream(other);
}
return *this;
}
[[gnu::always_inline]]
memory_input_stream& operator=(memory_input_stream&& other) noexcept {
if (this != &other) {
this->~memory_input_stream();
new (this) memory_input_stream(std::move(other));
}
return *this;
}
[[gnu::always_inline]]
~memory_input_stream() {
if (_is_simple) {
_simple.~simple();
} else {
_fragmented.~fragmented_type();
}
}
[[gnu::always_inline]]
void skip(size_t size) {
with_stream([size] (auto& stream) {
stream.skip(size);
});
}
[[gnu::always_inline]]
memory_input_stream read_substream(size_t size) {
return with_stream([size] (auto& stream) -> memory_input_stream {
return stream.read_substream(size);
});
}
[[gnu::always_inline]]
void read(char* p, size_t size) {
with_stream([p, size] (auto& stream) {
stream.read(p, size);
});
}
template<typename Output>
[[gnu::always_inline]]
void copy_to(Output& out) {
with_stream([&out] (auto& stream) {
stream.copy_to(out);
});
}
[[gnu::always_inline]]
size_t size() const {
return with_stream([] (auto& stream) {
return stream.size();
});
}
template<typename Stream, typename StreamVisitor>
friend std::result_of_t<StreamVisitor(Stream&)>
with_serialized_stream(Stream& stream, StreamVisitor&& visitor);
};
// The purpose of the with_serialized_stream() is to minimize number of dynamic
// dispatches. For example, a lot of IDL-generated code looks like this:
// auto some_value() const {
// return seastar::with_serialized_stream(v, [] (auto& v) {
// auto in = v;
// ser::skip(in, boost::type<type1>());
// ser::skip(in, boost::type<type2>());
// return deserialize(in, boost::type<type3>());
// });
// }
// Using with_stream() there is at most one dynamic dispatch per such
// function, instead of one per each skip() and deserialize() call.
template<typename Stream, typename StreamVisitor>
[[gnu::always_inline]]
static inline std::enable_if_t<Stream::has_with_stream::value, std::result_of_t<StreamVisitor(Stream&)>>
with_serialized_stream(Stream& stream, StreamVisitor&& visitor) {
return stream.with_stream(std::forward<StreamVisitor>(visitor));
}
template<typename Stream, typename StreamVisitor>
[[gnu::always_inline]]
static inline std::enable_if_t<!Stream::has_with_stream::value, std::result_of_t<StreamVisitor(Stream&)>>
with_serialized_stream(Stream& stream, StreamVisitor&& visitor) {
return visitor(stream);
}
using simple_input_stream = memory_input_stream<simple_stream_tag>::simple;
using simple_output_stream = memory_output_stream<simple_stream_tag>::simple;
}