mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-25 11:00:35 +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
71 lines
1.8 KiB
C++
71 lines
1.8 KiB
C++
/*
|
|
* Copyright (C) 2019-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <map>
|
|
#include <optional>
|
|
#include <seastar/core/sstring.hh>
|
|
#include "seastarx.hh"
|
|
|
|
namespace cdc {
|
|
|
|
enum class delta_mode : uint8_t {
|
|
keys,
|
|
full,
|
|
};
|
|
|
|
/**
|
|
* (for now only pre-) image collection mode.
|
|
* Stating how much info to record.
|
|
* off == none
|
|
* on == changed columns
|
|
* full == all (changed and unmodified columns)
|
|
*/
|
|
enum class image_mode : uint8_t {
|
|
off,
|
|
on,
|
|
full,
|
|
};
|
|
|
|
std::ostream& operator<<(std::ostream& os, delta_mode);
|
|
std::ostream& operator<<(std::ostream& os, image_mode);
|
|
|
|
class options final {
|
|
std::optional<bool> _enabled;
|
|
image_mode _preimage = image_mode::off;
|
|
bool _postimage = false;
|
|
delta_mode _delta_mode = delta_mode::full;
|
|
int _ttl = 86400; // 24h in seconds
|
|
public:
|
|
options() = default;
|
|
options(const std::map<sstring, sstring>& map);
|
|
|
|
std::map<sstring, sstring> to_map() const;
|
|
sstring to_sstring() const;
|
|
|
|
bool enabled() const { return _enabled.value_or(false); }
|
|
bool is_enabled_set() const { return _enabled.has_value(); }
|
|
bool preimage() const { return _preimage != image_mode::off; }
|
|
bool full_preimage() const { return _preimage == image_mode::full; }
|
|
bool postimage() const { return _postimage; }
|
|
delta_mode get_delta_mode() const { return _delta_mode; }
|
|
void set_delta_mode(delta_mode m) { _delta_mode = m; }
|
|
int ttl() const { return _ttl; }
|
|
|
|
void enabled(bool b) { _enabled = b; }
|
|
void preimage(bool b) { preimage(b ? image_mode::on : image_mode::off); }
|
|
void preimage(image_mode m) { _preimage = m; }
|
|
void postimage(bool b) { _postimage = b; }
|
|
void ttl(int v) { _ttl = v; }
|
|
|
|
bool operator==(const options& o) const;
|
|
};
|
|
|
|
} // namespace cdc
|