Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
ogs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dmitri Naumov
ogs
Commits
bc683174
Commit
bc683174
authored
9 years ago
by
Christoph Lehmann
Browse files
Options
Downloads
Patches
Plain Diff
[App] changed config tree builder
parent
16b28dd4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Applications/CLI/ogs.cpp
+10
-24
10 additions, 24 deletions
Applications/CLI/ogs.cpp
with
10 additions
and
24 deletions
Applications/CLI/ogs.cpp
+
10
−
24
View file @
bc683174
...
@@ -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
;
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment