Files
scylladb/utils/int_range.hh
Avi Kivity fcb8d040e8 treewide: use Software Package Data Exchange (SPDX) license identifiers
Instead of lengthy blurbs, switch to single-line, machine-readable
standardized (https://spdx.dev) license identifiers. The Linux kernel
switched long ago, so there is strong precedent.

Three cases are handled: AGPL-only, Apache-only, and dual licensed.
For the latter case, I chose (AGPL-3.0-or-later and Apache-2.0),
reasoning that our changes are extensive enough to apply our license.

The changes we applied mechanically with a script, except to
licenses/README.md.

Closes #9937
2022-01-18 12:15:18 +01:00

45 lines
1.0 KiB
C++

/*
* Copyright (C) 2017-present ScyllaDB
*/
/*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
#pragma once
#include "range.hh"
#include <seastar/core/print.hh>
#include "seastarx.hh"
using int_range = nonwrapping_range<int>;
inline
unsigned cardinality(const int_range& r) {
assert(r.start());
assert(r.end());
return r.end()->value() - r.start()->value() + r.start()->is_inclusive() + r.end()->is_inclusive() - 1;
}
inline
unsigned cardinality(const std::optional<int_range>& ropt) {
return ropt ? cardinality(*ropt) : 0;
}
inline
std::optional<int_range> intersection(const int_range& a, const int_range& b) {
auto int_tri_cmp = [] (int x, int y) {
return x <=> y;
};
return a.intersection(b, int_tri_cmp);
}
inline
int_range make_int_range(int start_inclusive, int end_exclusive) {
if (end_exclusive <= start_inclusive) {
throw std::runtime_error(format("invalid range: [{:d}, {:d})", start_inclusive, end_exclusive));
}
return int_range({start_inclusive}, {end_exclusive - 1});
}