21template <
typename Iterator>
48 error(
"Key <" + param +
"> has not been found");
53 T
const& default_value)
const
65 std::string
const& param)
const
74 std::string
const& param, T* )
const
78 return p->getValue<T>();
86 std::string
const& param, std::vector<T>* )
const
90 std::istringstream sstr{p->getValue<std::string>()};
91 std::vector<T> result;
95 result.push_back(value);
101 "' not convertible to a vector of the desired type."
102 " Could not convert token no. " +
103 std::to_string(result.size() + 1) +
".");
107 return std::make_optional(result);
115 std::string
const& param)
const
120 auto p =
tree_->equal_range(param);
130 if (
auto p =
tree_->get_child_optional(param))
134 return p->get_value<T>();
136 catch (boost::property_tree::ptree_bad_data
const&)
139 "' not convertible to the desired type.");
144 error(
"Key <" + param +
"> has not been found");
153 error(
"The data of this subtree has already been read.");
158 if (
auto v =
tree_->get_value_optional<T>())
163 "' is not convertible to the desired type.");
174 error(
"Did not find XML attribute with name '" + attr +
"'.");
179 T
const& default_value)
const
186 return default_value;
191 std::string
const& attr)
const
196 if (
auto attrs =
tree_->get_child_optional(
"<xmlattr>"))
198 if (
auto a = attrs->get_child_optional(attr))
201 if (
auto v = a->get_value_optional<T>())
203 return std::make_optional(*v);
205 error(
"Value for XML attribute '" + attr +
"' `" +
207 "' not convertible to the desired type.");
217 bool const peek_only)
const
219 auto const type = std::type_index(
typeid(T));
226 auto& v = p.first->second;
236 error(
"There already was an attempt to obtain key <" + key +
237 "> with type '" + v.type.name() +
"' (now: '" + type.name() +
242 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)