autotier
Automatic Tiering Fuse Filesystem
|
23 #include <45d/config/ConfigNode.hpp>
24 #include <45d/Exceptions.hpp>
25 #include <45d/Quota.hpp>
27 #include <unordered_map>
49 T
get(
const std::string &key,
const std::unordered_map<std::string, ffd::ConfigNode> *config_map) {
51 std::stringstream ss(node.
value_);
52 ss.exceptions(std::ios::failbit | std::ios::badbit);
103 T
get(
const std::string &key)
const {
118 T
get(
const std::string &key,
const T &fallback)
const noexcept {
121 }
catch (
const std::out_of_range &) {
123 }
catch (
const std::ios_base::failure &) {
127 }
catch (
const std::exception &e) {
128 report_error(
"Unexpected std::exception while getting " + key +
": " + e.what());
130 report_error(
"Unexplained exception caught while getting " + key);
148 T
get(
const std::string &key,
bool *fail_flag)
const noexcept {
151 }
catch (
const std::ios_base::failure &) {
153 }
catch (
const std::out_of_range &) {
157 }
catch (
const std::exception &e) {
158 report_error(
"Unexpected std::exception while getting " + key +
": " + e.what());
160 report_error(
"Unexplained exception caught while getting " + key);
163 if (std::is_fundamental<T>::value)
177 T
get_from(
const std::string §ion,
const std::string &key) {
181 T result = get<T>(key);
198 T
get_from(
const std::string §ion,
const std::string &key,
const T &fallback) noexcept {
200 std::cerr <<
"Cannot call get_from while ConfigSubsectionGuard is in scope" << std::endl;
205 }
catch (
const std::out_of_range &) {
209 T result = get<T>(key, fallback);
223 T
get_from(
const std::string §ion,
const std::string &key,
bool *fail_flag) noexcept {
225 std::cerr <<
"Cannot call get_from while ConfigSubsectionGuard is in scope" << std::endl;
227 if (std::is_fundamental<T>::value)
234 }
catch (
const std::out_of_range &) {
235 std::cerr <<
"Section not in config: " << section << std::endl;
238 if (std::is_fundamental<T>::value)
243 T result = get<T>(key, fail_flag);
263 return Quota(max, get<std::string>(key));
276 }
catch (
const std::out_of_range &) {
278 }
catch (
const std::ios_base::failure &) {
282 }
catch (
const std::exception &e) {
283 report_error(
"Unexpected std::exception while getting " + key +
": " + e.what());
285 report_error(
"Unexplained exception caught while getting " + key);
302 }
catch (
const std::ios_base::failure &) {
304 }
catch (
const std::out_of_range &) {
308 }
catch (
const std::exception &e) {
309 report_error(
"Unexpected std::exception while getting " + key +
": " + e.what());
311 report_error(
"Unexplained exception caught while getting " + key);
346 std::cerr <<
"Cannot call get_from while ConfigSubsectionGuard is in scope" << std::endl;
351 }
catch (
const std::out_of_range &) {
370 std::cerr <<
"Cannot call get_from while ConfigSubsectionGuard is in scope" << std::endl;
376 }
catch (
const std::out_of_range &) {
377 std::cerr <<
"Section not in config." << std::endl;
411 void parse(std::ifstream &file);
437 throw std::out_of_range(
"ConfigNode has no sub_map_");
457 std::cerr << message << std::endl;
ConfigParser(std::string path)
Construct a new Config Parser object.
Use this class for byte-formatted values. e.g.: "123 KiB".
Definition: Bytes.hpp:32
T get_from(const std::string §ion, const std::string &key)
Adapter for ffd::get(). Sets config_map_ptr_ to address of sub config with name section....
Definition: ConfigParser.hpp:177
Quota get_quota(const std::string &key, const Bytes &max, const Quota &fallback) const noexcept
Try to get Quota from config, default to fallback if fails. Guaranteed no-throw.
Definition: ConfigParser.hpp:273
This class extends ffd::Bytes to specify percents of an amount of bytes.
Definition: Quota.hpp:30
T get(const std::string &key, bool *fail_flag) const noexcept
Try to get value from config. If ffd::get fails, return T() or 0 and set fail_flag....
Definition: ConfigParser.hpp:148
std::string dump_str(void) const
Dump config to stdout as a string.
Use this to switch to a certain config subsection to get a group of values.
Definition: ConfigSubsectionGuard.hpp:49
T get(const std::string &key, const std::unordered_map< std::string, ffd::ConfigNode > *config_map)
Get config entry as type T from configuration map.
Definition: ConfigParser.hpp:49
void parse_entry(const std::string &line)
Extract value from config line and insert ConfigNode into config_map_.
T get_from(const std::string §ion, const std::string &key, bool *fail_flag) noexcept
Get value from config subsection using ConfigParser::get(const std::string&,bool*) const noexcept,...
Definition: ConfigParser.hpp:223
T get(const std::string &key, const T &fallback) const noexcept
Try to get value from config, default to fallback if fails. Guaranteed no-throw.
Definition: ConfigParser.hpp:118
void parse(std::ifstream &file)
Iterate each line of config file and determine how to parse with l::check_record_type()
T get(const std::string &key) const
Get value from config map using ffd::get(). This can throw. Use this in a try...catch block.
Definition: ConfigParser.hpp:103
lib45d documentation (not included in this repo, see lib45d source)
Definition: main-page.dox:21
Quota get_quota(const std::string &key, const Bytes &max, bool *fail_flag) const noexcept
Try to get Quota from config. If ffd::get fails, return Quota(void) and set fail_flag....
Definition: ConfigParser.hpp:299
Quota get_quota_from(const std::string §ion, const std::string &key, const Bytes &max, bool *fail_flag) noexcept
Get value from config subsection using ConfigParser::get(const std::string&,bool*) const noexcept,...
Definition: ConfigParser.hpp:368
const char * what(void) const noexcept
Return string containing explanation message.
Definition: Exceptions.hpp:43
Quota get_quota(const std::string &key, const Bytes &max) const
Get quota from config map using ffd::get(). This can throw. Use this in a try...catch block.
Definition: ConfigParser.hpp:262
std::unordered_map< std::string, ConfigNode > config_map_
Map of config keys (std::string) to values (ConfigNode)
Definition: ConfigParser.hpp:398
bool guarded_
true if a ConfigSubsectionGuard is in scope Set in ConfigSubsectionGuard::ConfigSubsectionGuard() Cle...
Definition: ConfigParser.hpp:395
Exceptions thrown by this library.
Definition: Exceptions.hpp:30
Throw this exception when a ConfigGuard is constructed or get_from() is called when the config is alr...
Definition: Exceptions.hpp:73
std::string current_section_
Name of current section, set by set_subsection()
Definition: ConfigParser.hpp:388
void set_subsection(const std::string §ion)
Update config_map_ptr_ to the subconfig map for section.
Definition: ConfigParser.hpp:434
T get_from(const std::string §ion, const std::string &key, const T &fallback) noexcept
Get value from config subsection using ConfigParser::get(const std::string&,const T&) const noexcept,...
Definition: ConfigParser.hpp:198
std::string value_
string from config file after '='
Definition: ConfigNode.hpp:33
std::unordered_map< std::string, ConfigNode > * config_map_ptr_
Pointer to current config map.
Definition: ConfigParser.hpp:396
std::vector< ConfigNode * > sub_confs_
Vector of config subsections.
Definition: ConfigParser.hpp:387
Quota get_quota_from(const std::string §ion, const std::string &key, const Bytes &max, const Quota &fallback) noexcept
Get value from config subsection using ConfigParser::get(const std::string&,const T&) const noexcept,...
Definition: ConfigParser.hpp:344
Quota get_quota_from(const std::string §ion, const std::string &key, const Bytes &max)
Adapter for ffd::get(). Sets config_map_ptr_ to address of sub config with name section....
Definition: ConfigParser.hpp:324
void reset_subsection(void) noexcept
Set config_map_ptr_ back to the address of config_map_.
Definition: ConfigParser.hpp:444
void report_error(const std::string &message) const noexcept
Print error message to stderr, conditionally prepended with current subsection name.
Definition: ConfigParser.hpp:454
void parse_heading(const std::string &line)
Create new subconfig.
Main configuration parser class to inherit from in your code.
Definition: ConfigParser.hpp:67
Class for config_map_ entries.
Definition: ConfigNode.hpp:31
Namespace for internal use, not to be exposed to ffd.
Definition: ConfigParser.hpp:37
std::string path_
Path to config file.
Definition: ConfigParser.hpp:397