18#include <boost/program_options/variables_map.hpp>
28template <VariantType T>
29inline Variant fromString(std::string
const&
str)
33 return VariantJSONHelpers::read<T>(ss);
37 boost::property_tree::ptree& pt,
38 boost::property_tree::ptree& provenance)
40 for (
auto const& spec : schema) {
41 std::string
key = spec.name.substr(0, spec.name.find(
','));
48 pt.put(
key, spec.defaultValue.get<
int>());
51 pt.put(
key, spec.defaultValue.get<int8_t>());
54 pt.put(
key, spec.defaultValue.get<int16_t>());
57 pt.put(
key, spec.defaultValue.get<uint8_t>());
60 pt.put(
key, spec.defaultValue.get<uint16_t>());
63 pt.put(
key, spec.defaultValue.get<uint32_t>());
66 pt.put(
key, spec.defaultValue.get<uint64_t>());
69 pt.put(
key, spec.defaultValue.get<int64_t>());
72 pt.put(
key, spec.defaultValue.get<
float>());
75 pt.put(
key, spec.defaultValue.get<
double>());
78 pt.put(
key, spec.defaultValue.get<std::string>());
81 pt.put(
key, spec.defaultValue.get<
bool>());
84 pt.put_child(
key, boost::property_tree::ptree{});
87 pt.put_child(
key,
vectorToBranch(spec.defaultValue.get<
int*>(), spec.defaultValue.size()));
90 pt.put_child(
key,
vectorToBranch(spec.defaultValue.get<
float*>(), spec.defaultValue.size()));
93 pt.put_child(
key,
vectorToBranch(spec.defaultValue.get<
double*>(), spec.defaultValue.size()));
96 pt.put_child(
key,
vectorToBranch(spec.defaultValue.get<
bool*>(), spec.defaultValue.size()));
99 pt.put_child(
key,
vectorToBranch(spec.defaultValue.get<std::string*>(), spec.defaultValue.size()));
127 provenance.put(
key,
"default");
128 }
catch (std::runtime_error& re) {
130 }
catch (std::exception& e) {
131 throw std::invalid_argument(std::string(
"missing option: ") +
key +
" (" + e.what() +
")");
133 throw std::invalid_argument(std::string(
"missing option: ") +
key);
139 boost::property_tree::ptree& pt,
140 boost::program_options::variables_map
const& vmap,
141 boost::property_tree::ptree& provenance)
143 for (
auto const& spec : schema) {
145 std::string
key = spec.name.substr(0, spec.name.find(
','));
146 if (vmap.count(
key) == 0) {
152 pt.put(
key, vmap[
key].as<int>());
155 pt.put(
key, vmap[
key].as<int8_t>());
158 pt.put(
key, vmap[
key].as<int16_t>());
161 pt.put(
key, vmap[
key].as<uint8_t>());
164 pt.put(
key, vmap[
key].as<uint16_t>());
167 pt.put(
key, vmap[
key].as<uint32_t>());
170 pt.put(
key, vmap[
key].as<uint64_t>());
173 pt.put(
key, vmap[
key].as<int64_t>());
176 pt.put(
key, vmap[
key].as<float>());
179 pt.put(
key, vmap[
key].as<double>());
182 if (
auto const*
v = boost::any_cast<std::string>(&vmap[
key].
value())) {
187 pt.put(
key, vmap[
key].as<bool>());
190 auto v = fromString<VariantType::ArrayInt>(vmap[
key].as<std::string>());
191 pt.put_child(
key, vectorToBranch<int>(
v.get<
int*>(),
v.size()));
194 auto v = fromString<VariantType::ArrayFloat>(vmap[
key].as<std::string>());
195 pt.put_child(
key, vectorToBranch<float>(
v.get<
float*>(),
v.size()));
198 auto v = fromString<VariantType::ArrayDouble>(vmap[
key].as<std::string>());
199 pt.put_child(
key, vectorToBranch<double>(
v.get<
double*>(),
v.size()));
205 auto v = fromString<VariantType::ArrayString>(vmap[
key].as<std::string>());
206 pt.put_child(
key, vectorToBranch<std::string>(
v.get<std::string*>(),
v.size()));
209 auto v = fromString<VariantType::Array2DInt>(vmap[
key].as<std::string>());
213 auto v = fromString<VariantType::Array2DFloat>(vmap[
key].as<std::string>());
217 auto v = fromString<VariantType::Array2DDouble>(vmap[
key].as<std::string>());
221 auto v = fromString<VariantType::LabeledArrayInt>(vmap[
key].as<std::string>());
225 auto v = fromString<VariantType::LabeledArrayFloat>(vmap[
key].as<std::string>());
229 auto v = fromString<VariantType::LabeledArrayDouble>(vmap[
key].as<std::string>());
233 auto v = fromString<VariantType::LabeledArrayString>(vmap[
key].as<std::string>());
237 pt.put_child(
key, vmap[
key].as<boost::property_tree::ptree>());
244 provenance.put(
key,
"fairmq");
245 }
catch (std::runtime_error& re) {
247 }
catch (std::exception& e) {
248 throw std::invalid_argument(std::string(
"missing option: ") +
key +
" (" + e.what() +
")");
250 throw std::invalid_argument(std::string(
"missing option: ") +
key);
261 if (spec.getLabelsCols().empty() ==
false) {
264 if (spec.getLabelsRows().empty() ==
false) {
271 boost::property_tree::ptree& pt,
272 boost::property_tree::ptree
const& in,
273 boost::property_tree::ptree& provenance,
274 std::string
const& provenanceLabel)
276 for (
auto const& spec : schema) {
278 std::string
key = spec.name.substr(0, spec.name.find(
','));
279 auto it = in.get_child_optional(
key);
281 it = in.get_child_optional(boost::property_tree::path(
key,
'/'));
289 pt.put(
key, (*it).get_value<
int>());
292 pt.put(
key, (*it).get_value<int8_t>());
295 pt.put(
key, (*it).get_value<int16_t>());
298 pt.put(
key, (*it).get_value<uint8_t>());
301 pt.put(
key, (*it).get_value<uint16_t>());
304 pt.put(
key, (*it).get_value<uint32_t>());
307 pt.put(
key, (*it).get_value<uint64_t>());
310 pt.put(
key, (*it).get_value<int64_t>());
313 pt.put(
key, (*it).get_value<
float>());
316 pt.put(
key, (*it).get_value<
double>());
319 pt.put(
key, (*it).get_value<std::string>());
322 pt.put(
key, (*it).get_value<
bool>());
333 pt.put_child(
key, *it);
336 auto v = labeledArrayFromBranch<int>(it.value());
338 pt.put_child(
key, *it);
344 auto v = labeledArrayFromBranch<float>(it.value());
346 pt.put_child(
key, *it);
352 auto v = labeledArrayFromBranch<double>(it.value());
354 pt.put_child(
key, *it);
362 pt.put_child(
key, *it);
370 throw std::runtime_error(
"Unknown variant type");
372 provenance.put(
key, provenanceLabel);
373 }
catch (std::runtime_error& re) {
375 }
catch (std::exception& e) {
376 throw std::invalid_argument(std::string(
"missing option: ") +
key +
" (" + e.what() +
")");
378 throw std::invalid_argument(std::string(
"missing option: ") +
key);
385void traverseRecursive(
const boost::property_tree::ptree& parent,
386 const boost::property_tree::ptree::path_type& childPath,
387 const boost::property_tree::ptree& child,
390 using boost::property_tree::ptree;
392 method(parent, childPath, child);
393 for (ptree::const_iterator it = child.begin(); it != child.end(); ++it) {
394 ptree::path_type curPath = childPath / ptree::path_type(it->first);
395 traverseRecursive(parent, curPath, it->second, method);
403 traverseRecursive(parent,
"", parent, method);
template o2::framework::LabeledArray< std::string > o2::framework::labeledArrayFromBranch< std::string >(boost::property_tree::ptree const &tree)
void replaceLabelsRows(std::vector< std::string > const &labels)
void replaceLabelsCols(std::vector< std::string > const &labels)
GLsizei const GLfloat * value
Defining PrimaryVertex explicitly as messageable.
RuntimeErrorRef runtime_error(const char *)
boost::property_tree::ptree labeledArrayToBranch(LabeledArray< T > &&array)
auto replaceLabels(LabeledArray< T > &input, LabeledArray< T > &&spec)
boost::property_tree::ptree vectorToBranch(T *values, size_t size)
boost::property_tree::ptree array2DToBranch(Array2D< T > &&array)
RuntimeErrorRef runtime_error_f(const char *,...)
auto getLabelsRows() const
auto getLabelsCols() const
static void populate(std::vector< ConfigParamSpec > const &schema, boost::property_tree::ptree &tree, boost::program_options::variables_map const &vmap, boost::property_tree::ptree &provenance)
std::function< void(boost::property_tree::ptree const &, typename T::path_type, boost::property_tree::ptree const &)> WalkerFunction
static void populateDefaults(std::vector< ConfigParamSpec > const &schema, boost::property_tree::ptree &tree, boost::property_tree::ptree &provenance)