Files
scylladb/readers/combined.hh
Avi Kivity f3eade2f62 treewide: relicense to ScyllaDB-Source-Available-1.0
Drop the AGPL license in favor of a source-available license.
See the blog post [1] for details.

[1] https://www.scylladb.com/2024/12/18/why-were-moving-to-a-source-available-license/
2024-12-18 17:45:13 +02:00

66 lines
2.5 KiB
C++

/*
* Copyright (C) 2012-present ScyllaDB
*/
/*
* SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.0
*/
#pragma once
#include "schema/schema_fwd.hh"
#include "dht/ring_position.hh"
#include "readers/mutation_reader_fwd.hh"
#include "readers/mutation_reader.hh"
class reader_permit;
struct combined_reader_statistics;
class reader_selector {
protected:
schema_ptr _s;
dht::ring_position_view _selector_position;
size_t _max_reader_count;
public:
reader_selector(schema_ptr s, dht::ring_position_view rpv, size_t max_reader_count) noexcept
: _s(std::move(s)), _selector_position(std::move(rpv)), _max_reader_count(max_reader_count) {}
virtual ~reader_selector() = default;
// Call only if has_new_readers() returned true.
virtual std::vector<mutation_reader> create_new_readers(const std::optional<dht::ring_position_view>& pos) = 0;
virtual std::vector<mutation_reader> fast_forward_to(const dht::partition_range& pr) = 0;
// Can be false-positive but never false-negative!
bool has_new_readers(const std::optional<dht::ring_position_view>& pos) const noexcept {
dht::ring_position_comparator cmp(*_s);
return !_selector_position.is_max() && (!pos || cmp(*pos, _selector_position) >= 0);
}
size_t max_reader_count() const {
return _max_reader_count;
}
};
// Creates a mutation reader which combines data return by supplied readers.
// Returns mutation of the same schema only when all readers return mutations
// of the same schema.
mutation_reader make_combined_reader(schema_ptr schema,
reader_permit permit,
std::vector<mutation_reader>,
streamed_mutation::forwarding fwd_sm = streamed_mutation::forwarding::no,
mutation_reader::forwarding fwd_mr = mutation_reader::forwarding::yes,
combined_reader_statistics* statistics = nullptr);
mutation_reader make_combined_reader(schema_ptr schema,
reader_permit permit,
std::unique_ptr<reader_selector>,
streamed_mutation::forwarding,
mutation_reader::forwarding,
combined_reader_statistics* statistics = nullptr);
mutation_reader make_combined_reader(schema_ptr schema,
reader_permit permit,
mutation_reader&& a,
mutation_reader&& b,
streamed_mutation::forwarding fwd_sm = streamed_mutation::forwarding::no,
mutation_reader::forwarding fwd_mr = mutation_reader::forwarding::yes,
combined_reader_statistics* statistics = nullptr);