8 #ifndef OOPS_BASE_PARAMETERTRAITSVARIABLES_H_
9 #define OOPS_BASE_PARAMETERTRAITSVARIABLES_H_
15 #include "oops/util/CompositePath.h"
16 #include "oops/util/parameters/ParameterTraits.h"
17 #include "oops/util/stringFunctions.h"
34 static boost::optional<Variables>
get(util::CompositePath &path,
35 const eckit::Configuration &config,
36 const std::string& name) {
37 if (config.has(name)) {
44 static void set(eckit::LocalConfiguration &config,
45 const std::string &name,
56 config.set(name, baseVariableNames);
57 const std::vector<int> &channels = value.
channels();
58 if (!channels.empty()) {
59 const std::string channelsAsString = util::stringfunctions::join(
60 ",", channels.begin(), channels.end(), [](
int n) { return std::to_string(n); });
61 config.set(
"channels", channelsAsString);
65 static ObjectJsonSchema
jsonSchema(
const std::string &name) {
66 ObjectJsonSchema nameSchema = ParameterTraits<std::vector<std::string>>::jsonSchema(
"");
67 return ObjectJsonSchema({{name, nameSchema.properties().at(
"")},
68 {
"channels", {{
"type",
"[\"string\", \"integer\"]"}}}});
const std::vector< int > & channels() const
The namespace for the main oops code.
std::vector< std::string > getVariableNamesWithoutChannelSuffix(const Variables &variables)
Returns the list of "base" variable names (i.e. names without channel suffixes) stored in variables.
static ObjectJsonSchema jsonSchema(const std::string &name)
static void set(eckit::LocalConfiguration &config, const std::string &name, const Variables &value)
static boost::optional< Variables > get(util::CompositePath &path, const eckit::Configuration &config, const std::string &name)