15 #include "eckit/config/LocalConfiguration.h"
16 #include "eckit/config/YAMLConfiguration.h"
17 #include "eckit/exception/Exceptions.h"
20 #include "oops/util/LibOOPS.h"
21 #include "oops/util/Logger.h"
22 #include "oops/util/ObjectCountHelper.h"
23 #include "oops/util/printRunStats.h"
24 #include "oops/util/TimerHelper.h"
31 int getEnv(
const std::string& env,
int default_value) {
32 if (::getenv(env.c_str())) {
return eckit::Translator<std::string, int>()(::getenv(env.c_str()));}
36 std::string
getEnv(
const std::string& env, std::string default_value) {
37 if ((::getenv(env.c_str()))) {return ::getenv(env.c_str());}
45 Run::Run(
int argc,
char** argv) :
eckit::Main(argc, argv,
"OOPS_HOME"), config_(), timer_() {
48 int do_profile =
getEnv(
"OOPS_PROFILE", 0);
55 std::string utr =
getEnv(
"OOPS_UNDERLYING_TIMER",
"nanotime");
56 if (utr ==
"nanotime") {
57 ret = GPTLsetutr(GPTLnanotime);
58 }
else if (utr ==
"gettimeofday") {
59 ret = GPTLsetutr(GPTLgettimeofday);
61 Log::warning() <<
"OOPS_UNDERLYING_TIMER=" << utr <<
" is invalid: ignoring" << std::endl;
65 ret = GPTLsetoption(GPTLprint_method, GPTLmost_frequent);
69 int sync_mpi =
getEnv(
"OOPS_SYNC_MPI", 1);
71 ret = GPTLsetoption(GPTLsync_mpi, 1);
74 int dopr_memusage =
getEnv(
"OOPS_MEMUSAGE", 0);
76 ret = GPTLsetoption(GPTLdopr_memusage, 1);
78 ret = GPTLinitialize();
82 LibOOPS::instance().initialise();
86 eckit::PathName configfile = argv[1];
88 eckit::PathName outputfile;
90 LibOOPS::instance().teeOutput(outputfile);
94 config_.reset(
new eckit::YAMLConfiguration(configfile));
98 LibOOPS::instance().testReferenceInitialise(
config_->getSubConfiguration(
"test"));
100 Log::info() <<
"Configuration input file is: " << configfile << std::endl;
101 Log::info() <<
"Full configuration is:" << *
config_ << std::endl;
104 util::TimerHelper::start();
105 util::ObjectCountHelper::start();
111 LibOOPS::instance().finalise();
117 util::printRunStats(
"Run start",
true);
119 Log::info() <<
"Run: Starting " << app << std::endl;
123 catch(
const eckit::Exception & e) {
125 Log::error() << e.what() <<
" caught in " << Here() << std::endl;
126 Log::error() <<
"Exception: " << app <<
" terminating..." << std::endl;
129 catch(
const std::exception & e) {
131 Log::error() <<
"Exception: " << e.what() << std::endl;
132 Log::error() <<
"Exception: " << app <<
" terminating..." << std::endl;
136 Log::error() <<
"Unknown exception: " << app <<
" terminating..." << std::endl;
138 Log::info() << std::endl <<
"Run: Finishing " << app << std::endl;
141 util::ObjectCountHelper::stop();
142 util::TimerHelper::stop();
143 util::printRunStats(
"Run end",
true);
145 Log::info() <<
"Run: Finishing " << app <<
" with status = " <<
status << std::endl;
int getEnv(const std::string &env, int default_value)
virtual int execute(const eckit::Configuration &) const =0
int execute(const Application &)
Run(int argc, char **argv)
std::unique_ptr< const eckit::YAMLConfiguration > config_
The namespace for the main oops code.