Skip to content
Snippets Groups Projects
Commit bc683174 authored by Christoph Lehmann's avatar Christoph Lehmann
Browse files

[App] changed config tree builder

parent 16b28dd4
No related branches found
No related tags found
No related merge requests found
...@@ -16,8 +16,7 @@ ...@@ -16,8 +16,7 @@
// BaseLib // BaseLib
#include "BaseLib/BuildInfo.h" #include "BaseLib/BuildInfo.h"
#include "BaseLib/ConfigTree.h" #include "BaseLib/ConfigTreeUtil.h"
#include "BaseLib/ConfigTreeNew.h"
#include "BaseLib/FileTools.h" #include "BaseLib/FileTools.h"
#include "Applications/ApplicationsLib/LinearSolverLibrarySetup.h" #include "Applications/ApplicationsLib/LinearSolverLibrarySetup.h"
...@@ -102,38 +101,25 @@ int main(int argc, char *argv[]) ...@@ -102,38 +101,25 @@ int main(int argc, char *argv[])
ApplicationsLib::LinearSolverLibrarySetup linear_solver_library_setup( ApplicationsLib::LinearSolverLibrarySetup linear_solver_library_setup(
argc, argv); argc, argv);
// Project's configuration auto project_config = BaseLib::makeConfigTree(
BaseLib::ConfigTree project_config = project_arg.getValue(), !nonfatal_arg.getValue(), "OpenGeoSysProject");
BaseLib::read_xml_config(project_arg.getValue());
std::unique_ptr<ProjectData> project; ProjectData project(*project_config, BaseLib::extractPath(project_arg.getValue()));
{
// Nested scope in order to trigger config tree checks early. project_config.checkAndInvalidate();
// Caution: The top level config tree must not be saved inside
// ProjectData and the boost::property_tree must not be
// created inside this same scope!
using Conf = BaseLib::ConfigTreeNew;
Conf conf(project_config.get_child("OpenGeoSysProject"),
project_arg.getValue(),
Conf::onerror,
nonfatal_arg.getValue() ? Conf::onwarning : Conf::onerror);
project.reset(new ProjectData(
conf, BaseLib::extractPath(project_arg.getValue())));
}
// Create processes. // Create processes.
project->buildProcesses<GlobalSetupType>(); project.buildProcesses<GlobalSetupType>();
INFO("Initialize processes."); INFO("Initialize processes.");
for (auto p_it = project->processesBegin(); p_it != project->processesEnd(); ++p_it) for (auto p_it = project.processesBegin(); p_it != project.processesEnd(); ++p_it)
{ {
(*p_it)->initialize(); (*p_it)->initialize();
} }
std::string const output_file_name(project->getOutputFilePrefix() + ".vtu"); std::string const output_file_name(project.getOutputFilePrefix() + ".vtu");
solveProcesses(*project); solveProcesses(project);
return 0; return 0;
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment