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
104 lines
2.9 KiB
C++
104 lines
2.9 KiB
C++
/*
|
|
* Copyright (C) 2015-present ScyllaDB
|
|
*
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <vector>
|
|
#include <sys/types.h>
|
|
|
|
// Single-pass range over cartesian product of vectors.
|
|
|
|
// Note:
|
|
// {a, b, c} x {1, 2} = {{a, 1}, {a, 2}, {b, 1}, {b, 2}, {c, 1}, {c, 2}}
|
|
template<typename T>
|
|
struct cartesian_product {
|
|
const std::vector<std::vector<T>>& _vec_of_vecs;
|
|
public:
|
|
class iterator {
|
|
public:
|
|
using iterator_category = std::forward_iterator_tag;
|
|
using value_type = std::vector<T>;
|
|
using difference_type = std::ptrdiff_t;
|
|
using pointer = std::vector<T>*;
|
|
using reference = std::vector<T>&;
|
|
private:
|
|
size_t _pos;
|
|
const std::vector<std::vector<T>>* _vec_of_vecs;
|
|
value_type _current;
|
|
std::vector<typename std::vector<T>::const_iterator> _iterators;
|
|
public:
|
|
struct end_tag {};
|
|
iterator(end_tag) : _pos(-1) {}
|
|
iterator(const std::vector<std::vector<T>>& vec_of_vecs) : _pos(0), _vec_of_vecs(&vec_of_vecs) {
|
|
_iterators.reserve(vec_of_vecs.size());
|
|
for (auto&& vec : vec_of_vecs) {
|
|
_iterators.push_back(vec.begin());
|
|
if (vec.empty()) {
|
|
_pos = -1;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
value_type& operator*() {
|
|
_current.clear();
|
|
_current.reserve(_vec_of_vecs->size());
|
|
for (auto& i : _iterators) {
|
|
_current.emplace_back(*i);
|
|
}
|
|
return _current;
|
|
}
|
|
void operator++() {
|
|
++_pos;
|
|
|
|
for (ssize_t i = _iterators.size() - 1; i >= 0; --i) {
|
|
++_iterators[i];
|
|
if (_iterators[i] != (*_vec_of_vecs)[i].end()) {
|
|
return;
|
|
}
|
|
_iterators[i] = (*_vec_of_vecs)[i].begin();
|
|
}
|
|
|
|
// If we're here it means we've covered every combination
|
|
_pos = -1;
|
|
}
|
|
bool operator==(const iterator& o) const { return _pos == o._pos; }
|
|
};
|
|
public:
|
|
cartesian_product(const std::vector<std::vector<T>>& vec_of_vecs) : _vec_of_vecs(vec_of_vecs) {}
|
|
iterator begin() { return iterator(_vec_of_vecs); }
|
|
iterator end() { return iterator(typename iterator::end_tag()); }
|
|
};
|
|
|
|
template<typename T>
|
|
static inline
|
|
size_t cartesian_product_size(const std::vector<std::vector<T>>& vec_of_vecs) {
|
|
size_t r = 1;
|
|
for (auto&& vec : vec_of_vecs) {
|
|
r *= vec.size();
|
|
}
|
|
return r;
|
|
}
|
|
|
|
template<typename T>
|
|
static inline
|
|
bool cartesian_product_is_empty(const std::vector<std::vector<T>>& vec_of_vecs) {
|
|
for (auto&& vec : vec_of_vecs) {
|
|
if (vec.empty()) {
|
|
return true;
|
|
}
|
|
}
|
|
return vec_of_vecs.empty();
|
|
}
|
|
|
|
template<typename T>
|
|
static inline
|
|
cartesian_product<T> make_cartesian_product(const std::vector<std::vector<T>>& vec_of_vecs) {
|
|
return cartesian_product<T>(vec_of_vecs);
|
|
}
|