mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-28 20:27:03 +00:00
in C++20, compiler generate operator!=() if the corresponding operator==() is already defined, the language now understands that the comparison is symmetric in the new standard. fortunately, our operator!=() is always equivalent to `! operator==()`, this matches the behavior of the default generated operator!=(). so, in this change, all `operator!=` are removed. in addition to the defaulted operator!=, C++20 also brings to us the defaulted operator==() -- it is able to generated the operator==() if the member-wise lexicographical comparison. under some circumstances, this is exactly what we need. so, in this change, if the operator==() is also implemented as a lexicographical comparison of all memeber variables of the class/struct in question, it is implemented using the default generated one by removing its body and mark the function as `default`. moreover, if the class happen to have other comparison operators which are implemented using lexicographical comparison, the default generated `operator<=>` is used in place of the defaulted `operator==`. sometimes, we fail to mark the operator== with the `const` specifier, in this change, to fulfil the need of C++ standard, and to be more correct, the `const` specifier is added. also, to generate the defaulted operator==, the operand should be `const class_name&`, but it is not always the case, in the class of `version`, we use `version` as the parameter type, to fulfill the need of the C++ standard, the parameter type is changed to `const version&` instead. this does not change the semantic of the comparison operator. and is a more idiomatic way to pass non-trivial struct as function parameters. please note, because in C++20, both operator= and operator<=> are symmetric, some of the operators in `multiprecision` are removed. they are the symmetric form of the another variant. if they were not removed, compiler would, for instance, find ambiguous overloaded operator '=='. this change is a cleanup to modernize the code base with C++20 features. Signed-off-by: Kefu Chai <kefu.chai@scylladb.com> Closes #13687
91 lines
3.0 KiB
C++
91 lines
3.0 KiB
C++
/*
|
|
* Copyright (C) 2020-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "dht/token.hh"
|
|
#include <seastar/core/smp.hh>
|
|
|
|
namespace dht {
|
|
|
|
inline sstring cpu_sharding_algorithm_name() {
|
|
return "biased-token-round-robin";
|
|
}
|
|
|
|
std::vector<uint64_t> init_zero_based_shard_start(unsigned shards, unsigned sharding_ignore_msb_bits);
|
|
|
|
unsigned shard_of(unsigned shard_count, unsigned sharding_ignore_msb_bits, const token& t);
|
|
|
|
token token_for_next_shard(const std::vector<uint64_t>& shard_start, unsigned shard_count, unsigned sharding_ignore_msb_bits, const token& t, shard_id shard, unsigned spans);
|
|
|
|
class sharder {
|
|
protected:
|
|
unsigned _shard_count;
|
|
unsigned _sharding_ignore_msb_bits;
|
|
std::vector<uint64_t> _shard_start;
|
|
public:
|
|
sharder(unsigned shard_count = smp::count, unsigned sharding_ignore_msb_bits = 0);
|
|
virtual ~sharder() = default;
|
|
/**
|
|
* Calculates the shard that handles a particular token.
|
|
*/
|
|
virtual unsigned shard_of(const token& t) const;
|
|
|
|
/**
|
|
* Gets the first token greater than `t` that is in shard `shard`, and is a shard boundary (its first token).
|
|
*
|
|
* If the `spans` parameter is greater than zero, the result is the same as if the function
|
|
* is called `spans` times, each time applied to its return value, but efficiently. This allows
|
|
* selecting ranges that include multiple round trips around the 0..smp::count-1 shard span:
|
|
*
|
|
* token_for_next_shard(t, shard, spans) == token_for_next_shard(token_for_next_shard(t, shard, 1), spans - 1)
|
|
*
|
|
* On overflow, maximum_token() is returned.
|
|
*/
|
|
virtual token token_for_next_shard(const token& t, shard_id shard, unsigned spans = 1) const;
|
|
|
|
/**
|
|
* @return number of shards configured for this partitioner
|
|
*/
|
|
unsigned shard_count() const {
|
|
return _shard_count;
|
|
}
|
|
|
|
unsigned sharding_ignore_msb() const {
|
|
return _sharding_ignore_msb_bits;
|
|
}
|
|
|
|
bool operator==(const sharder& o) const {
|
|
return _shard_count == o._shard_count && _sharding_ignore_msb_bits == o._sharding_ignore_msb_bits;
|
|
}
|
|
};
|
|
|
|
inline std::ostream& operator<<(std::ostream& os, const sharder& sharder) {
|
|
os << "sharder[shard_count=" << sharder.shard_count()
|
|
<< ", ignore_msb_bits="<< sharder.sharding_ignore_msb() << "]";
|
|
return os;
|
|
}
|
|
|
|
/*
|
|
* Finds the first token in token range (`start`, `end`] that belongs to shard shard_idx.
|
|
*
|
|
* If there is no token that belongs to shard shard_idx in this range,
|
|
* `end` is returned.
|
|
*
|
|
* The first token means the one that appears first on the ring when going
|
|
* from `start` to `end`.
|
|
* 'first token' is not always the smallest.
|
|
* For example, if in vnode (100, 10] only tokens 110 and 1 belong to
|
|
* shard shard_idx then token 110 is the first because it appears first
|
|
* when going from 100 to 10 on the ring.
|
|
*/
|
|
dht::token find_first_token_for_shard(
|
|
const dht::sharder& sharder, dht::token start, dht::token end, size_t shard_idx);
|
|
|
|
} //namespace dht
|