From b66758672e7c57cc38c4c1a54ff4a124fab6a8fb Mon Sep 17 00:00:00 2001 From: Christoph Lehmann <christoph.lehmann@ufz.de> Date: Fri, 8 Jan 2016 16:05:56 +0100 Subject: [PATCH] [AppL] changed to new config tree --- Applications/ApplicationsLib/ProjectData.cpp | 102 +++++++------------ Applications/ApplicationsLib/ProjectData.h | 23 +++-- 2 files changed, 48 insertions(+), 77 deletions(-) diff --git a/Applications/ApplicationsLib/ProjectData.cpp b/Applications/ApplicationsLib/ProjectData.cpp index 2a072bbb88a..326f26c20a7 100644 --- a/Applications/ApplicationsLib/ProjectData.cpp +++ b/Applications/ApplicationsLib/ProjectData.cpp @@ -42,18 +42,18 @@ void readGeometry(std::string const& fname, GeoLib::GEOObjects & geo_objects) } -ProjectData::ProjectData(BaseLib::ConfigTree const& project_config, +ProjectData::ProjectData(BaseLib::ConfigTreeNew const& project_config, std::string const& path) { // geometry std::string const geometry_file = BaseLib::copyPathToFileName( - project_config.get<std::string>("geometry"), path + project_config.getConfParam<std::string>("geometry"), path ); detail::readGeometry(geometry_file, *_geoObjects); // mesh std::string const mesh_file = BaseLib::copyPathToFileName( - project_config.get<std::string>("mesh"), path + project_config.getConfParam<std::string>("mesh"), path ); MeshLib::Mesh* const mesh = FileIO::readMeshFromFile(mesh_file); @@ -64,20 +64,19 @@ ProjectData::ProjectData(BaseLib::ConfigTree const& project_config, // process variables - BaseLib::ConfigTreeNew var_conf(project_config.get_child("process_variables")); - parseProcessVariables(var_conf); + parseProcessVariables(project_config.getConfSubtree("process_variables")); // parameters - parseParameters(project_config.get_child("parameters")); + parseParameters(project_config.getConfSubtree("parameters")); // processes - parseProcesses(project_config.get_child("processes")); + parseProcesses(project_config.getConfSubtree("processes")); // output - parseOutput(project_config.get_child("output"), path); + parseOutput(project_config.getConfSubtree("output"), path); // timestepping - parseTimeStepping(project_config.get_child("time_stepping")); + parseTimeStepping(project_config.getConfSubtree("time_stepping")); } ProjectData::~ProjectData() @@ -175,7 +174,7 @@ bool ProjectData::isMeshNameUniqueAndProvideUniqueName(std::string &name) const } void ProjectData::parseProcessVariables( - BaseLib::ConfigTreeNew& process_variables_config) + BaseLib::ConfigTreeNew const& process_variables_config) { DBUG("Parse process variables:") if (_geoObjects == nullptr) { @@ -201,110 +200,81 @@ void ProjectData::parseProcessVariables( } } -void ProjectData::parseParameters(BaseLib::ConfigTree const& parameters_config) +void ProjectData::parseParameters(BaseLib::ConfigTreeNew const& parameters_config) { using namespace ProcessLib; DBUG("Reading parameters:"); - for (auto pc_it : parameters_config) + for (auto parameter_config : parameters_config.getConfSubtreeList("parameter")) { - // Skip non-parameter section. - if (pc_it.first != "parameter") - continue; - BaseLib::ConfigTree const& parameter_config = pc_it.second; - - auto name = parameter_config.get_optional<std::string>("name"); - if (!name) - { - ERR("The parameter config does not provide a name tag."); - std::abort(); - } - - auto type = parameter_config.get_optional<std::string>("type"); - if (!type) - { - ERR("Could not find required parameter type."); - std::abort(); - } + auto name = parameter_config.getConfParam<std::string>("name"); + auto type = parameter_config.peekConfParam<std::string>("type"); // Create parameter based on the provided type. - if (*type == "Constant") + if (type == "Constant") { - INFO("ConstantParameter: %s.", name->c_str()); + INFO("ConstantParameter: %s.", name.c_str()); _parameters.push_back(createConstParameter(parameter_config)); - _parameters.back()->name = *name; + _parameters.back()->name = name; } - else if (*type == "MeshProperty") + else if (type == "MeshProperty") { - INFO("MeshPropertyParameter: %s", name->c_str()); + INFO("MeshPropertyParameter: %s", name.c_str()); _parameters.push_back( createMeshPropertyParameter(parameter_config, *_mesh_vec[0])); - _parameters.back()->name = *name; + _parameters.back()->name = name; } else { ERR("Cannot construct property of given type \'%s\'.", - type->c_str()); + type.c_str()); std::abort(); } } } -void ProjectData::parseProcesses(BaseLib::ConfigTree const& processes_config) +void ProjectData::parseProcesses(BaseLib::ConfigTreeNew const& processes_config) { DBUG("Reading processes:"); - for (auto pc_it : processes_config) { - BaseLib::ConfigTree const& process_config = pc_it.second; - - // Check if the process type is specified. - if (!process_config.get_optional<std::string>("type")) { - ERR("The process config does not provide a type tag."); - ERR(" Ignoring this process config."); - continue; - } - _process_configs.push_back(process_config); + for (auto process_config : processes_config.getConfSubtreeList("process")) { + // process type must be specified. + process_config.peekConfParam<std::string>("type"); + process_config.ignoreConfParam("name"); + _process_configs.push_back(std::move(process_config)); } } -void ProjectData::parseOutput(BaseLib::ConfigTree const& output_config, +void ProjectData::parseOutput(BaseLib::ConfigTreeNew const& output_config, std::string const& path) { + output_config.checkConfParam("type", "VTK"); DBUG("Parse output configuration:"); - auto const file = output_config.get_optional<std::string>("file"); - if (!file) { - ERR("The output config does not provide a file tag."); - ERR(" Output file not set."); - return; - } + auto const file = output_config.getConfParam<std::string>("file"); - _output_file_prefix = path + *file; + _output_file_prefix = path + file; } -void ProjectData::parseTimeStepping(BaseLib::ConfigTree const& timestepping_config) +void ProjectData::parseTimeStepping(BaseLib::ConfigTreeNew const& timestepping_config) { using namespace ProcessLib; DBUG("Reading timestepping configuration."); - auto const type = timestepping_config.get_optional<std::string>("type"); - if (!type) - { - ERR("Could not find required timestepper type."); - std::abort(); - } + auto const type = timestepping_config.peekConfParam<std::string>("type"); - if (*type == "FixedTimeStepping") + if (type == "FixedTimeStepping") { _time_stepper.reset(NumLib::FixedTimeStepping::newInstance(timestepping_config)); } - else if (*type == "SingleStep") + else if (type == "SingleStep") { + timestepping_config.ignoreConfParam("type"); _time_stepper.reset(new NumLib::FixedTimeStepping(0.0, 1.0, 1.0)); } else { - ERR("Unknown timestepper type: `%s'.", type->c_str()); + ERR("Unknown timestepper type: `%s'.", type.c_str()); std::abort(); } diff --git a/Applications/ApplicationsLib/ProjectData.h b/Applications/ApplicationsLib/ProjectData.h index 444169fc360..b82617dcd23 100644 --- a/Applications/ApplicationsLib/ProjectData.h +++ b/Applications/ApplicationsLib/ProjectData.h @@ -15,7 +15,7 @@ #include <memory> -#include "BaseLib/ConfigTree.h" +#include "BaseLib/ConfigTreeNew.h" #include "GeoLib/GEOObjects.h" @@ -45,7 +45,7 @@ public: /// Constructs project data by parsing provided configuration. /// The additional path is used to find files referenced in the /// configuration. - ProjectData(BaseLib::ConfigTree const& config_tree, + ProjectData(BaseLib::ConfigTreeNew const& config_tree, std::string const& path); ProjectData(ProjectData&) = delete; @@ -89,9 +89,10 @@ public: template <typename GlobalSetupType> void buildProcesses() { - for (auto pc : _process_configs) + for (auto const& pc : _process_configs) { - if (pc.get<std::string>("type") == "GROUNDWATER_FLOW") { + auto const type = pc.peekConfParam<std::string>("type"); + if (type == "GROUNDWATER_FLOW") { // The existence check of the in the configuration referenced // process variables is checked in the physical process. // TODO at the moment we have only one mesh, later there can be @@ -103,7 +104,7 @@ public: } else { - WARN("Unknown process type: %s\n", pc.get<std::string>("type").c_str()); + ERR("Unknown process type: %s\n", type.c_str()); } } } @@ -169,22 +170,22 @@ private: /// Parses the process variables configuration and creates new variables for /// each variable entry passing the corresponding subtree to the process /// variable constructor. - void parseProcessVariables(BaseLib::ConfigTreeNew& process_variables_config); + void parseProcessVariables(BaseLib::ConfigTreeNew const& process_variables_config); /// Parses the parameters configuration and saves them in a list. /// Checks if a parameter has name tag. - void parseParameters(BaseLib::ConfigTree const& parameters_config); + void parseParameters(BaseLib::ConfigTreeNew const& parameters_config); /// Parses the processes configuration and creates new processes for each /// process entry passing the corresponding subtree to the process /// constructor. - void parseProcesses(BaseLib::ConfigTree const& process_config); + void parseProcesses(BaseLib::ConfigTreeNew const& process_config); /// Parses the output configuration. /// Parses the file tag and sets output file prefix. - void parseOutput(BaseLib::ConfigTree const& output_config, std::string const& path); + void parseOutput(BaseLib::ConfigTreeNew const& output_config, std::string const& path); - void parseTimeStepping(BaseLib::ConfigTree const& timestepping_config); + void parseTimeStepping(BaseLib::ConfigTreeNew const& timestepping_config); private: GeoLib::GEOObjects *_geoObjects = new GeoLib::GEOObjects(); @@ -194,7 +195,7 @@ private: std::vector<ProcessLib::ProcessVariable> _process_variables; /// Buffer for each process' config used in the process building function. - std::vector<BaseLib::ConfigTree> _process_configs; + std::vector<BaseLib::ConfigTreeNew> _process_configs; /// Buffer for each parameter config passed to the process. std::vector<std::unique_ptr<ProcessLib::ParameterBase>> _parameters; -- GitLab