Files
scylladb/partition_range_compat.hh
Ernest Zaslavsky 408aa289fe treewide: Move misc files to utils directory
As requested in #22114, moved the files and fixed other includes and build system.

Moved files:
- interval.hh
- Map_difference.hh

Fixes: #22114

This is a cleanup, no need to backport

Closes scylladb/scylladb#25095
2025-07-21 11:56:40 +03:00

183 lines
6.1 KiB
C++

/*
* Copyright 2016-present ScyllaDB
*/
/*
* SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.0
*/
#pragma once
#include <vector>
#include "utils/interval.hh"
#include "dht/ring_position.hh"
namespace compat {
using wrapping_partition_range = wrapping_interval<dht::ring_position>;
// unwraps a vector of wrapping ranges into a vector of nonwrapping ranges
// if the vector happens to be sorted by the left bound, it remains sorted
template <template <typename> class Container, typename T, typename Comparator>
requires std::ranges::range<Container<interval<T>>>
&& requires (Container<interval<T>> c, size_t s, interval<T> i) {
{ c.reserve(s) };
{ c.emplace_back(std::move(i)) };
{ c.insert(c.begin(), std::move(i)) };
}
Container<interval<T>>
unwrap(Container<wrapping_interval<T>>&& v, Comparator&& cmp) {
Container<interval<T>> ret;
ret.reserve(v.size() + 1);
for (auto&& wr : v) {
if (wr.is_wrap_around(cmp)) {
auto&& p = std::move(wr).unwrap();
ret.insert(ret.begin(), interval<T>(std::move(p.first)));
ret.emplace_back(std::move(p.second));
} else {
ret.emplace_back(std::move(wr));
}
}
return ret;
}
// unwraps a vector of wrapping ranges into a vector of nonwrapping ranges
// if the vector happens to be sorted by the left bound, it remains sorted
template <template <typename> class Container, typename T, typename Comparator>
requires std::ranges::range<Container<interval<T>>>
&& requires (Container<interval<T>> c, size_t s, interval<T> i) {
{ c.reserve(s) };
{ c.emplace_back(std::move(i)) };
{ c.insert(c.begin(), std::move(i)) };
}
Container<interval<T>>
unwrap(const Container<wrapping_interval<T>>& v, Comparator&& cmp) {
Container<interval<T>> ret;
ret.reserve(v.size() + 1);
for (auto&& wr : v) {
if (wr.is_wrap_around(cmp)) {
auto&& p = wr.unwrap();
ret.insert(ret.begin(), interval<T>(p.first));
ret.emplace_back(p.second);
} else {
ret.emplace_back(wr);
}
}
return ret;
}
template <template <typename> class Container, typename T>
requires std::ranges::range<Container<wrapping_interval<T>>>
&& requires (Container<wrapping_interval<T>> c, size_t s, wrapping_interval<T> i) {
{ c.reserve(s) };
{ c.emplace_back(std::move(i)) };
{ c.push_back(std::move(i)) };
}
Container<wrapping_interval<T>>
wrap(const Container<interval<T>>& v) {
// re-wrap (-inf,x) ... (y, +inf) into (y, x):
if (v.size() >= 2 && !v.front().start() && !v.back().end()) {
auto ret = Container<wrapping_interval<T>>();
ret.reserve(v.size() - 1);
std::copy(v.begin() + 1, v.end() - 1, std::back_inserter(ret));
ret.emplace_back(v.back().start(), v.front().end());
return ret;
}
return v | std::ranges::to<Container<wrapping_interval<T>>>();
}
template <template <typename> class Container, typename T>
requires std::ranges::range<Container<wrapping_interval<T>>>
&& requires (Container<wrapping_interval<T>> c, size_t s, wrapping_interval<T> i) {
{ c.reserve(s) };
{ c.emplace_back(std::move(i)) };
{ c.push_back(std::move(i)) };
}
Container<wrapping_interval<T>>
wrap(Container<interval<T>>&& v) {
// re-wrap (-inf,x) ... (y, +inf) into (y, x):
if (v.size() >= 2 && !v.front().start() && !v.back().end()) {
auto ret = std::vector<wrapping_interval<T>>();
ret.reserve(v.size() - 1);
std::move(v.begin() + 1, v.end() - 1, std::back_inserter(ret));
ret.emplace_back(std::move(v.back()).start(), std::move(v.front()).end());
return ret;
}
return std::ranges::owning_view(std::move(v)) | std::ranges::to<Container>();
}
inline
dht::token_range_vector
unwrap(const utils::chunked_vector<wrapping_interval<dht::token>>& v) {
return unwrap(v, dht::token_comparator());
}
inline
dht::token_range_vector
unwrap(utils::chunked_vector<wrapping_interval<dht::token>>&& v) {
return unwrap(std::move(v), dht::token_comparator());
}
class one_or_two_partition_ranges : public std::pair<dht::partition_range, std::optional<dht::partition_range>> {
using pair = std::pair<dht::partition_range, std::optional<dht::partition_range>>;
public:
explicit one_or_two_partition_ranges(dht::partition_range&& f)
: pair(std::move(f), std::nullopt) {
}
explicit one_or_two_partition_ranges(dht::partition_range&& f, dht::partition_range&& s)
: pair(std::move(f), std::move(s)) {
}
operator dht::partition_range_vector() const & {
auto ret = dht::partition_range_vector();
// not reserving, since ret.size() is likely to be 1
ret.push_back(first);
if (second) {
ret.push_back(*second);
}
return ret;
}
operator dht::partition_range_vector() && {
auto ret = dht::partition_range_vector();
// not reserving, since ret.size() is likely to be 1
ret.push_back(std::move(first));
if (second) {
ret.push_back(std::move(*second));
}
return ret;
}
};
inline
one_or_two_partition_ranges
unwrap(wrapping_partition_range pr, const schema& s) {
if (pr.is_wrap_around(dht::ring_position_comparator(s))) {
auto unw = std::move(pr).unwrap();
// Preserve ring order
return one_or_two_partition_ranges(
dht::partition_range(std::move(unw.second)),
dht::partition_range(std::move(unw.first)));
} else {
return one_or_two_partition_ranges(dht::partition_range(std::move(pr)));
}
}
// Unwraps `range` and calls `func` with its components, with an unwrapped
// range type, as a parameter (once or twice)
template <typename T, typename Comparator, typename Func>
void
unwrap_into(wrapping_interval<T>&& range, const Comparator& cmp, Func&& func) {
if (range.is_wrap_around(cmp)) {
auto&& unw = range.unwrap();
// Preserve ring order
func(interval<T>(std::move(unw.second)));
func(interval<T>(std::move(unw.first)));
} else {
func(interval<T>(std::move(range)));
}
}
}