10 #ifndef SRC_INCLUDE_SMASH_KEY_H_
11 #define SRC_INCLUDE_SMASH_KEY_H_
16 #include <string_view>
56 result.push_back(std::string{rhs});
72 lhs.push_back(std::string{rhs});
73 return std::move(lhs);
103 template <
typename default_type>
105 static_assert(!std::is_const_v<default_type>);
106 static_assert(!std::is_volatile_v<default_type>);
107 static_assert(!std::is_reference_v<default_type>);
108 static_assert(!std::is_pointer_v<default_type>);
109 static_assert(!std::is_array_v<default_type>);
110 static_assert(!std::is_function_v<default_type>);
111 static_assert(!std::is_member_object_pointer_v<default_type>);
112 static_assert(!std::is_member_function_pointer_v<default_type>);
120 using std::runtime_error::runtime_error;
146 :
Key{labels,
Default<default_type>{value}, versions} {}
163 :
Key{labels,
Default<default_type>{type_of_default}, versions} {}
186 return default_.is_dependent();
226 bool is_allowed() const noexcept {
return !removed_in_.has_value(); }
237 return std::equal(std::begin(labels_), std::end(labels_),
238 std::begin(labels), std::end(labels));
247 explicit operator std::string() const noexcept {
263 std::optional<default_type> value = std::nullopt)
const noexcept {
264 std::stringstream value_as_string{};
265 if constexpr (is_writable_to_stream_v<std::stringstream, default_type>) {
267 value_as_string << *value;
268 }
else if (default_.type_ == DefaultType::Value) {
269 value_as_string << default_value();
272 return as_yaml(value_as_string.str());
285 std::string
as_yaml(std::string value)
const noexcept {
286 std::stringstream result{};
287 result <<
"{" <<
smash::join(labels_,
": {") <<
": " << value
288 <<
smash::join(std::vector<std::string>(labels_.size(),
"}"),
"");
320 template <
typename T>
333 explicit Default(T in) : value_{std::move(in)} {}
345 if (
type != DefaultType::Dependent) {
346 throw std::logic_error(
"Default constructor used with invalid type!");
357 T
value()
const {
return value_.value(); }
367 return type_ == DefaultType::Dependent;
374 std::optional<T> value_ = std::nullopt;
392 : default_{std::move(value)}, labels_{labels.begin(), labels.end()} {
400 switch (
auto it = versions.end(); versions.size()) {
402 removed_in_ = *(--it);
405 deprecated_in_ = *(--it);
408 introduced_in_ = *(--it);
412 "Key constructor needs one, two or three version numbers.");
419 std::optional<Version> deprecated_in_{};
421 std::optional<Version> removed_in_{};
Wrapper class around a type with the capability to both store the type of default and its value,...
T value() const
Retrieve the default value stored in the object.
Default(T in)
Construct a new Default object storing its default value.
Default()
Construct a new Default object which denotes a mandatory value without a default.
Default(DefaultType type)
Construct a new Default object which has a value dependent on external information.
bool is_dependent() const noexcept
Ask whether the default value depends on other external information.
Object to store a YAML input file key together with metadata associated to it.
bool has_dependent_default() const noexcept
Ask whether the default value depends on other other keys.
bool is_allowed() const noexcept
Get whether the key is still allowed or not.
bool has_same_labels(const KeyLabels &labels) const noexcept
Check if given labels are the same as those of this object.
std::string as_yaml(std::string value) const noexcept
Overload of the method taking a string as value.
Version deprecated_in() const
Get the SMASH version in which the key has been deprecated.
Key(const KeyLabels &labels, const KeyMetadata &versions)
Construct a new Key object without default value.
Version removed_in() const
Get the SMASH version in which the key has been removed.
Key(const KeyLabels &labels, DefaultType type_of_default, const KeyMetadata &versions)
Construct a new Key object which is supposed to have a default value, which however depends on other ...
bool is_deprecated() const noexcept
Get whether the key is deprecated or not.
default_type default_value() const
Get the default value of the key.
const KeyLabels & labels() const
Method to access the Key labels.
Key(const KeyLabels &labels, default_type value, const KeyMetadata &versions)
Construct a new Key object with default value.
std::string as_yaml(std::optional< default_type > value=std::nullopt) const noexcept
Build and return a YAML-formatted string in the compact form (using braces as single line).
default_type type
Let the clients of this class have access to the key type.
Key(const KeyLabels &labels, Default< default_type > value, const KeyMetadata &versions)
Private constructor of the Key object.
Version introduced_in() const noexcept
Get the SMASH version in which the key has been introduced.
std::vector< std::string > KeyLabels
Descriptive alias for storing key labels, i.e.
DefaultType
New type to explicit distinguish between mandatory and optional keys.
@ Dependent
Default value which depends on other keys
@ Value
Normal default with a value associated to it.
@ Null
Default "type" for mandatory keys
std::string quote(const std::string &s)
Add quotes around string.
std::string join(const std::vector< std::string > &v, const std::string &delim)
Join strings using delimiter.
std::initializer_list< std::string_view > KeyMetadata
Descriptive alias for storing keys metadata.
EnergyMomentumTensor operator+(EnergyMomentumTensor a, const EnergyMomentumTensor &b)
Direct addition operator.
std::string Version
Descriptive alias for storing a SMASH version associated to keys metadata.
Thrown when too few or too many versions are passed to the constructor.