C++ Actor Framework 1.0.0
|
Defines a configuration option for the application. More...
#include <config_option.hpp>
Classes | |
struct | find_result |
Stores the result of a find operation. More... | |
struct | meta_state |
Custom vtable-like struct for delegating to type-specific functions and storing type-specific information shared by several config options. More... | |
Public Types | |
using | argument_iterator = std::vector<std::string>::const_iterator |
An iterator over CLI arguments. | |
Public Member Functions | |
config_option (std::string_view category, std::string_view name, std::string_view description, const meta_state *meta, void *value=nullptr) | |
Constructs a config option. | |
config_option (const config_option &) | |
config_option (config_option &&)=default | |
config_option & | operator= (const config_option &) |
config_option & | operator= (config_option &&)=default |
void | swap (config_option &other) noexcept |
std::string_view | category () const noexcept |
Returns the category of the option. | |
std::string_view | long_name () const noexcept |
Returns the full name of the option. | |
std::string_view | short_names () const noexcept |
Returns (optional) one-letter short names of the option. | |
std::string_view | env_var_name () const noexcept |
Returns the environment variable name of the option. | |
const char * | env_var_name_cstr () const noexcept |
Returns the environment variable name of the option as a null-terminated C-string. | |
std::string_view | description () const noexcept |
Returns a human-readable description of the option. | |
std::string_view | full_name () const noexcept |
Returns the full name for this config option as "<category>.<long name>". | |
error | sync (config_value &x) const |
Synchronizes the value of this config option with x and vice versa. | |
std::string_view | type_name () const noexcept |
Returns a human-readable representation of this option's expected type. | |
bool | is_flag () const noexcept |
Returns whether this config option stores a boolean flag. | |
bool | has_flat_cli_name () const noexcept |
Returns whether the category is optional for CLI options. | |
find_result | find_by_long_name (argument_iterator first, argument_iterator last) const noexcept |
Tries to find this option by its long name in [first, last) . | |
Defines a configuration option for the application.
error caf::config_option::sync | ( | config_value & | x | ) | const |
Synchronizes the value of this config option with x
and vice versa.
Tries to perform this sequence of steps: