Flow 1.0.2
Flow project: Public API.
|
A Config_manager
-related adapter-style class that manages a simple config setup involving a single (though arbitrarily complex) Option_set<>
-ready raw value struct
config store type Value_set
, meant to be used only in static fashion.
More...
#include <static_cfg_manager.hpp>
Public Types | |
enum | allow_invalid_defaults_tag_t { S_ALLOW_INVALID_DEFAULTS } |
Tag type: indicates an apply() method must allow invalid defaults and only complain if the config source does not explicitly supply a valid value. More... | |
using | Impl = Config_manager< Value_set, Null_value_set > |
The class we private ly subclass (in HAS-A fashion, not IS-A fashion). More... | |
Public Member Functions | |
Static_config_manager (log::Logger *logger_ptr, util::String_view nickname, typename Option_set< Value_set >::Declare_options_func &&declare_opts_func_moved) | |
Constructs a Static_config_manager ready to read static config via apply() and access it via values(). More... | |
bool | apply (const fs::path &cfg_path, const typename Final_validator_func< Value_set >::Type &final_validator_func) |
Invoke this after construction to load the permanent set of static config from config sources including a static config file. More... | |
bool | apply (allow_invalid_defaults_tag_t, const fs::path &cfg_path, const typename Final_validator_func< Value_set >::Type &final_validator_func) |
Identical to similar apply() overload without allow_invalid_defaults_tag_t tag; but skips the stringent check on individual defaults' validity. More... | |
bool | apply (const fs::path &cfg_path) |
Equivalent to the other apply() but with no inter-option validation (meaning the per-option validation passed to constructor is sufficient). More... | |
bool | apply (allow_invalid_defaults_tag_t, const fs::path &cfg_path) |
Identical to similar apply() overload without allow_invalid_defaults_tag_t tag; but skips the stringent check on individual defaults' validity. More... | |
const Value_set & | values () const |
Returns (always the same) reference to the managed Value_set structure. More... | |
Related Functions | |
(Note that these are not member functions.) | |
template<typename Value_set > | |
std::ostream & | operator<< (std::ostream &os, const Static_config_manager< Value_set > &val) |
Serializes (briefly) a Static_config_manager to a standard output stream. More... | |
Related Functions inherited from flow::cfg::Config_manager< Value_set, Null_value_set > | |
std::ostream & | operator<< (std::ostream &os, const Config_manager< S_d_value_set... > &val) |
Serializes (briefly) a Config_manager to a standard output stream. More... | |
A Config_manager
-related adapter-style class that manages a simple config setup involving a single (though arbitrarily complex) Option_set<>
-ready raw value struct
config store type Value_set
, meant to be used only in static fashion.
That is to say, the parsed config values are not meant to be accessed while the config is being read from file.
If you desire dynamic config (which can be read from file(s) at any time), and/or you need to manage more than one config struct
(e.g., you're controlling 2+ entirely separate modules), then please use Config_manager which supports all that. (You can also develop your own handling of Option_set<Value_set>
instead. See Config_manager doc header.)
The life cycle and usage are simple. Define your Value_set
(see Option_set doc header for formal requirements, but basically you'll need a struct
, an option-defining function using FLOW_CFG_OPTION_SET_DECLARE_OPTION(), and possibly an inter-option validator function). Construct the Static_config_manager<Value_set>
. Call apply() to read a file. (You can do this more than once, potentially for different files. As of this writing only files are supported, but adding command line parsing would be an incremental change.) Then, call values() to get the reference to the immutable parsed Value_set
. This reference can be passed around the application; values() will always return the same reference. Technically you could call apply() even after using values(); but it is not thread-safe to do so while accessing config values which would change concurrently with no protection.
Also you may create a const
(immutable) Static_config_manager via its constructor and then just use it to output a help message (log_help() or help_to_ostream()). This could be used with your program's --help
option or similar, and that's it (no parsing takes place).
commit == false
mode in apply_static(); this enables the "multi-source parsing and source skipping" described in its doc header. Static_config_manager, to keep its mission simple, cuts off access to this feature, meaning implicitly it always takes commit
to equal true
. That is, it is expected you'll be loading static config from exactly one file/one apply() call per attempt. Your Final_validator_func::Type final_validator_func()
should return either Final_validator_outcome::S_ACCEPT or Final_validator_outcome::S_FAIL. It can return Final_validator_outcome::S_SKIP, but that would mean apply() will return true
(success) but simply no-op (not update the canonical config as returned by values()).Config_manager is in the author's opinion not difficult to use, but it does use template parameter packs (typename... Value_set
), and its API can be somewhat difficult to grok when all you have is the aforementioned simple use case.
Value_set | The settings struct – see Option_set doc header for requirements. |
using flow::cfg::Static_config_manager< Value_set >::Impl = Config_manager<Value_set, Null_value_set> |
The class we private
ly subclass (in HAS-A fashion, not IS-A fashion).
It is public
basically so that we can refer to it in various forwarding using
method directives below.
enum flow::cfg::Static_config_manager::allow_invalid_defaults_tag_t |
Tag type: indicates an apply() method must allow invalid defaults and only complain if the config source does not explicitly supply a valid value.
Otherwise the defaults themselves are also stringently checked regardless of whether they are overridden. This setting applies only to individual-option-validators. Final_validator_func validation is orthogonal to this.
Enumerator | |
---|---|
S_ALLOW_INVALID_DEFAULTS | Sole value for tag type allow_invalid_defaults_tag_t. |
|
explicit |
Constructs a Static_config_manager ready to read static config via apply() and access it via values().
*logger_ptr
is a standard logging arg. Note, though, that the class will assume that log verbosity may not have yet been configured – since this Static_config_manager may be the thing configuring it. Informal recommendations:
*logger_ptr
.*this
only for log_help() (such as in your --help
implementation), you should not let through TRACE-or-more-verbose.logger_ptr | Logger to use for subsequently logging. |
nickname | Brief string used for logging subsequently. |
declare_opts_func_moved | The declare-options callback as required by Option_set<Value_set> constructor; see its doc header for instructions. |
bool flow::cfg::Static_config_manager< Value_set >::apply | ( | allow_invalid_defaults_tag_t | , |
const fs::path & | cfg_path | ||
) |
Identical to similar apply() overload without allow_invalid_defaults_tag_t tag; but skips the stringent check on individual defaults' validity.
cfg_path | See other apply(). |
false
if a default is invalid, even if file cfg_path
explicitly sets it to a valid value. This tagged overload will not. bool flow::cfg::Static_config_manager< Value_set >::apply | ( | allow_invalid_defaults_tag_t | , |
const fs::path & | cfg_path, | ||
const typename Final_validator_func< Value_set >::Type & | final_validator_func | ||
) |
Identical to similar apply() overload without allow_invalid_defaults_tag_t tag; but skips the stringent check on individual defaults' validity.
false
if a default is invalid, even if file cfg_path
explicitly sets it to a valid value. This tagged overload will not. bool flow::cfg::Static_config_manager< Value_set >::apply | ( | const fs::path & | cfg_path | ) |
Equivalent to the other apply() but with no inter-option validation (meaning the per-option validation passed to constructor is sufficient).
See also apply() overload with allow_invalid_defaults_tag_t tag.
cfg_path | File to read. |
true
if and only if successfully parsed config source(s) and validated all settings; and defaults were also all individually valid. bool flow::cfg::Static_config_manager< Value_set >::apply | ( | const fs::path & | cfg_path, |
const typename Final_validator_func< Value_set >::Type & | final_validator_func | ||
) |
Invoke this after construction to load the permanent set of static config from config sources including a static config file.
See also apply() overload with allow_invalid_defaults_tag_t tag.
After this runs and succeeds, you may use values() to access the loaded values (but see notes on final_validator_func
arg and return value, regarding Final_validator_outcome::S_SKIP w/r/t final_validator_func
arg).
On failure returns false
; else returns true
. In the former case the overall state is equal to that at entry to the method. Tip: On failure you may want to exit program with error; or you can continue knowing that values() will return default values according to Value_set()
no-arg ctor. WARNING(s) logged given failure.
Before apply(), or after it fails, the contents of what values() returns will be the defaults from your Value_set
structure in its constructed state. This may or may not have utility depending on your application.
apply() will not be tolerant of unknown option names appearing in the config source.
final_validator_func()
can be made quite brief by using convenience macro FLOW_CFG_OPT_CHECK_ASSERT(). This will take care of most logging in most cases.cfg_path | File to read. |
final_validator_func | If parsing and individual-option-validation succeed, the method shall return success if final_validator_func(V) returns Final_validator_outcome::S_ACCEPT or Final_validator_outcome::S_SKIP, where V is the parsed Value_set ; and in the former case values() post-this-method will return V. Informally: Please place individual-option validation into FLOW_CFG_OPTION_SET_DECLARE_OPTION() invocations; only use final_validator_func() for internal consistency checks (if any). Informally: It is unlikely, with Static_config_manager, that it should return SKIP; that feature is only useful with the multi-file-update feature which is not accessible through Static_config_manager. See the note about this in our class doc header. |
true
if and only if successfully parsed config source and validated all settings including final_validator_func() != S_FAIL
; and defaults were also all individually valid. If true
, and final_validator_func() == S_ACCEPT
, then values() shall return the parsed Value_set
. If true
, but final_validator_func() == S_SKIP
, then values() shall return the default-cted Value_set
const Value_set & flow::cfg::Static_config_manager< Value_set >::values |
Returns (always the same) reference to the managed Value_set
structure.
Before successful apply() these values will be at their defaults. Tip: It should be sufficient to pass around only the const
ref obtained here all around the app – no Value_set
copying should be needed.
|
related |
Serializes (briefly) a Static_config_manager to a standard output stream.
Value_set | See Static_config_manager doc header. |
os | Stream to which to serialize. |
val | Value to serialize. |
os
.