forked from scylladb/scylladb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuffer_input_stream.cc
45 lines (37 loc) · 1.5 KB
/
buffer_input_stream.cc
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
/*
* Copyright (C) 2017-present ScyllaDB
*/
/*
* SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.0
*/
#include "buffer_input_stream.hh"
#include "limiting_data_source.hh"
using namespace seastar;
class buffer_data_source_impl : public data_source_impl {
private:
temporary_buffer<char> _buf;
public:
buffer_data_source_impl(temporary_buffer<char>&& buf)
: _buf(std::move(buf))
{}
buffer_data_source_impl(buffer_data_source_impl&&) noexcept = default;
buffer_data_source_impl& operator=(buffer_data_source_impl&&) noexcept = default;
virtual future<temporary_buffer<char>> get() override {
return make_ready_future<temporary_buffer<char>>(std::move(_buf));
}
virtual future<temporary_buffer<char>> skip(uint64_t n) override {
auto min = std::min(n, _buf.size());
_buf.trim_front(min);
return make_ready_future<temporary_buffer<char>>(std::move(_buf));
}
};
input_stream<char> make_buffer_input_stream(temporary_buffer<char>&& buf) {
return input_stream < char > {
data_source{std::make_unique<buffer_data_source_impl>(std::move(buf))}
};
}
input_stream<char> make_buffer_input_stream(temporary_buffer<char>&& buf,
seastar::noncopyable_function<size_t()>&& limit_generator) {
auto res = data_source{std::make_unique<buffer_data_source_impl>(std::move(buf))};
return input_stream < char > { make_limiting_data_source(std::move(res), std::move(limit_generator)) };
}