Files
scylladb/utils/memory_data_sink.hh
Pavel Emelyanov 8809b99736 s3/client: Unmark put-object lambdas from mutable
They don't need to modify the captured objects. In fact, they must not
do it in the first place, because the request can be called more than
once and the buffers must not change between those invocations.

For the memory_sink_buffers there must be const method to get the vector
of temporary_buffers themselves.

Signed-off-by: Pavel Emelyanov <xemul@scylladb.com>

Closes scylladb/scylladb#19599
2024-07-04 10:07:48 +03:00

71 lines
1.7 KiB
C++

/*
* Copyright (C) 2018-present ScyllaDB
*/
/*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
#include <seastar/core/iostream.hh>
#include <seastar/core/temporary_buffer.hh>
#include "utils/small_vector.hh"
#include "seastarx.hh"
#pragma once
// Accumulates data sent to the memory_data_sink allowing it
// to be examined later.
class memory_data_sink_buffers {
using buffers_type = utils::small_vector<temporary_buffer<char>, 1>;
buffers_type _bufs;
size_t _size = 0;
public:
size_t size() const { return _size; }
buffers_type& buffers() { return _bufs; }
const buffers_type& buffers() const { return _bufs; }
// Strong exception guarantees
void put(temporary_buffer<char>&& buf) {
auto size = buf.size();
_bufs.emplace_back(std::move(buf));
_size += size;
}
void clear() {
_bufs.clear();
_size = 0;
}
memory_data_sink_buffers() = default;
memory_data_sink_buffers(memory_data_sink_buffers&& other)
: _bufs(std::move(other._bufs))
, _size(std::exchange(other._size, 0))
{
}
};
class memory_data_sink : public data_sink_impl {
memory_data_sink_buffers& _bufs;
public:
memory_data_sink(memory_data_sink_buffers& b) : _bufs(b) {}
virtual future<> put(net::packet data) override {
abort();
return make_ready_future<>();
}
virtual future<> put(temporary_buffer<char> buf) override {
_bufs.put(std::move(buf));
return make_ready_future<>();
}
virtual future<> flush() override {
return make_ready_future<>();
}
virtual future<> close() override {
return make_ready_future<>();
}
size_t buffer_size() const noexcept override {
return 128*1024;
}
};