16template <
typename Iterator>
43 error(
"Key <" + param +
"> has not been found");
48 T
const& default_value)
const
60 std::string
const& param)
const
69 std::string
const& param, T* )
const
73 return p->getValue<T>();
81 std::string
const& param, std::vector<T>* )
const
85 std::string
const raw = p->getValue<std::string>();
87 std::size_t bad_idx = 0;
95 "' not convertible to a vector of the desired type."
96 " Could not convert token no. " +
97 std::to_string(bad_idx) +
".");
106 std::string
const& param)
const
111 auto p =
tree_->equal_range(param);
121 if (
auto p =
tree_->get_child_optional(param))
125 return p->get_value<T>();
127 catch (boost::property_tree::ptree_bad_data
const&)
130 "' not convertible to the desired type.");
135 error(
"Key <" + param +
"> has not been found");
144 error(
"The data of this subtree has already been read.");
149 if (
auto v =
tree_->get_value_optional<T>())
154 "' is not convertible to the desired type.");
165 error(
"Did not find XML attribute with name '" + attr +
"'.");
170 T
const& default_value)
const
177 return default_value;
182 std::string
const& attr)
const
187 if (
auto attrs =
tree_->get_child_optional(
"<xmlattr>"))
189 if (
auto a = attrs->get_child_optional(attr))
192 if (
auto v = a->get_value_optional<T>())
194 return std::make_optional(*v);
196 error(
"Value for XML attribute '" + attr +
"' `" +
198 "' not convertible to the desired type.");
208 bool const peek_only)
const
210 auto const type = std::type_index(
typeid(T));
217 auto& v = p.first->second;
227 error(
"There already was an attempt to obtain key <" + key +
229 "' (now: '" + type.name() +
"').");
233 return p.first->second;
T peekConfigParameter(std::string const ¶m) const
void checkUniqueAttr(std::string const &attr) const
Asserts that the attribute attr has not been read yet.
std::map< KeyType, CountType > visited_params_
static std::string shortString(std::string const &s)
returns a short string at suitable for error/warning messages
void error(std::string const &message) const
std::optional< ConfigTree > getConfigSubtreeOptional(std::string const &root) const
std::optional< T > getConfigParameterOptional(std::string const ¶m) const
void checkUnique(std::string const &key) const
Asserts that the key has not been read yet.
T getConfigParameter(std::string const ¶m) const
T getConfigAttribute(std::string const &attr) const
Attr
Used to indicate if dealing with XML tags or XML attributes.
CountType & markVisited(std::string const &key, Attr const is_attr, bool peek_only) const
std::optional< T > getConfigParameterOptionalImpl(std::string const ¶m, T *) const
Default implementation of reading a value of type T.
Range< ValueIterator< T > > getConfigParameterList(std::string const ¶m) const
std::optional< T > getConfigAttributeOptional(std::string const &attr) const
PTree const * tree_
The wrapped tree.
void checkKeyname(std::string const &key) const
Checks if key complies with the rules [a-z0-9_].
Wraps a pair of iterators for use as a range in range-based for-loops.
Range(Iterator begin, Iterator end)
std::string demangle(const char *mangled_name)
std::optional< std::vector< T > > tryParseVector(std::string const &raw, std::size_t *bad_token_idx)