#include <key.h>
Object to store a YAML input file key together with metadata associated to it.
default_type | Type of the key value. This must be a plain type, by that meaning have no cv-qualifier and not being any among the following types: array, pointer, function, or a mix of them. |
Classes | |
class | Default |
Wrapper class around a type with the capability to both store the type of default and its value, if any exists. More... | |
struct | WrongNumberOfVersions |
Thrown when too few or too many versions are passed to the constructor. More... | |
Public Types | |
using | type = default_type |
Let the clients of this class have access to the key type. More... | |
Public Member Functions | |
Key (const KeyLabels &labels, const KeyMetadata &versions) | |
Construct a new Key object without default value. More... | |
Key (const KeyLabels &labels, default_type value, const KeyMetadata &versions) | |
Construct a new Key object with default value. More... | |
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 keys and will remain unset. More... | |
default_type | default_value () const |
Get the default value of the key. More... | |
bool | has_dependent_default () const noexcept |
Ask whether the default value depends on other other keys. More... | |
Version | introduced_in () const noexcept |
Get the SMASH version in which the key has been introduced. More... | |
Version | deprecated_in () const |
Get the SMASH version in which the key has been deprecated. More... | |
Version | removed_in () const |
Get the SMASH version in which the key has been removed. More... | |
bool | is_deprecated () const noexcept |
Get whether the key is deprecated or not. More... | |
bool | is_allowed () const noexcept |
Get whether the key is still allowed or not. More... | |
bool | has_same_labels (const KeyLabels &labels) const noexcept |
Check if given labels are the same as those of this object. More... | |
operator std::string () const noexcept | |
Converts a Key to a std::string using all labels. More... | |
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). More... | |
std::string | as_yaml (std::string value) const noexcept |
Overload of the method taking a string as value. More... | |
const KeyLabels & | labels () const |
Method to access the Key labels. More... | |
Private Member Functions | |
Key (const KeyLabels &labels, Default< default_type > value, const KeyMetadata &versions) | |
Private constructor of the Key object. More... | |
Private Attributes | |
Version | introduced_in_ {} |
SMASH version in which the key has been introduced. More... | |
std::optional< Version > | deprecated_in_ {} |
SMASH version in which the key has been deprecated, if any. More... | |
std::optional< Version > | removed_in_ {} |
SMASH version in which the key has been removed, if any. More... | |
Default< default_type > | default_ {} |
Key default value. More... | |
KeyLabels | labels_ {} |
The label(s) identifying the key in the YAML input file. More... | |
using smash::Key< default_type >::type = default_type |
|
inlineexplicit |
Construct a new Key
object without default value.
[in] | labels | The label(s) identifying the key in the YAML input file. |
[in] | versions | A list of one, two or three version numbers identifying the versions in which the key has been introduced, deprecated and removed, respectively. |
|
inline |
Construct a new Key
object with default value.
[in] | labels | The label(s) identifying the key in the YAML input file. |
[in] | value | The key default value. |
[in] | versions | A list of one, two or three version numbers identifying the versions in which the key has been introduced, deprecated and removed, respectively. |
WrongNumberOfVersions | If versions has the wrong size. |
|
inline |
Construct a new Key
object which is supposed to have a default value, which however depends on other keys and will remain unset.
[in] | labels | The label(s) identifying the key in the YAML input file. |
[in] | type_of_default | The type of default value. |
[in] | versions | A list of one, two or three version numbers identifying the versions in which the key has been introduced, deprecated and removed, respectively. |
WrongNumberOfVersions | If versions has the wrong size. |
std::logic_error | If type is not DefaultType::Dependent . |
|
inlineprivate |
Private constructor of the Key object.
This is meant to do the real construction, while the other public constructors just delegate to this one. This is possible because this constructor takes a Default
argument and the other construct one to delegate construction.
Definition at line 390 of file key.h.
|
inline |
|
inlinenoexcept |
Ask whether the default value depends on other other keys.
true
if this is the case, false
if the default value is known or the key is mandatory. Definition at line 185 of file key.h.
|
inlinenoexcept |
|
inline |
|
inline |
|
inlinenoexcept |
|
inlinenoexcept |
|
inlinenoexcept |
Check if given labels are the same as those of this object.
[in] | labels | Given labels to be checked against. |
true
if all labels match in the given order, false
otherwise.
|
inlineexplicitnoexcept |
Converts a Key to a std::string
using all labels.
std::string
with labels concatenated with
:␣ (colon-space) and quotes all around. Definition at line 247 of file key.h.
|
inlinenoexcept |
Build and return a YAML-formatted string in the compact form (using braces as single line).
[in] | value | An std::optional value of the Key type. If a value is passed, this is added to the resulting string if its type is streamable using the << operator. If no value is passed and the key has a streamable default, this is used. |
std::string
with labels formatted in a compact YAML format.
|
inlinenoexcept |
Overload of the method taking a string as value.
This can be useful for non streamable types e.g. in tests.
value
is not quoted and it is responsibility of the caller to properly quote it, if needed. This enables setting e.g. YAML maps as value.Definition at line 285 of file key.h.
|
inline |
|
private |
|
private |
|
private |
|
private |
|
private |