25 #ifndef GOBY_MIDDLEWARE_APPLICATION_INTERFACE_H
26 #define GOBY_MIDDLEWARE_APPLICATION_INTERFACE_H
31 #include <sys/types.h>
34 #include <boost/format.hpp>
52 template <
typename App>
61 template <
typename App,
62 typename Configurator = middleware::ProtobufConfigurator<typename App::ConfigType>>
63 int run(
int argc,
char* argv[])
65 return run<App>(Configurator(argc, argv));
93 virtual void run() = 0;
107 void quit(
int return_value = 0)
110 return_value_ = return_value;
122 throw(
goby::Exception(
"No lat_origin and lon_origin defined for requested UTMGeodesy"));
128 std::string
app_name() {
return app3_base_configuration_->name(); }
134 template <
typename App>
140 void configure_logger();
141 void configure_glog_file();
142 void check_rotate_glog_file();
146 static std::unique_ptr<Config> app_cfg_;
147 static std::unique_ptr<protobuf::AppConfig> app3_base_configuration_;
153 static std::unique_ptr<std::ofstream> fout_;
157 std::unique_ptr<goby::util::UTMGeodesy> geodesy_;
163 template <
typename Config>
168 template <
typename Config>
169 std::unique_ptr<goby::middleware::protobuf::AppConfig>
177 if (app3_base_configuration_->has_geodesy())
179 app3_base_configuration_->geodesy().lon_origin_with_units()});
181 if (!app3_base_configuration_->IsInitialized())
184 glog.
is_debug2() &&
glog <<
"Application: constructed with PID: " << getpid() << std::endl;
185 glog.
is_debug1() &&
glog <<
"App name is " << app3_base_configuration_->name() << std::endl;
186 glog.
is_debug2() &&
glog <<
"Configuration is: " << app_cfg_->DebugString() << std::endl;
196 app3_base_configuration_->glog_config().tty_verbosity()),
199 if (app3_base_configuration_->glog_config().show_gui())
202 if (app3_base_configuration_->glog_config().has_file_log())
203 configure_glog_file();
205 if (app3_base_configuration_->glog_config().show_dccl_log())
212 if (app3_base_configuration_->glog_config().has_file_log() &&
213 app3_base_configuration_->glog_config().file_log().has_log_rotate_sec() &&
217 configure_glog_file();
223 const auto& file_log = app3_base_configuration_->glog_config().file_log();
224 std::string file_format_str;
226 std::string file_name_format = file_log.file_name();
228 if (!file_log.has_file_name() && file_log.omit().file_timestamp())
229 file_name_format =
"%2%.txt";
231 if (file_log.has_file_dir() && !file_log.file_dir().empty())
233 auto file_dir = file_log.file_dir();
234 if (file_dir.back() !=
'/')
236 file_format_str = file_dir + file_name_format;
240 file_format_str = file_name_format;
243 boost::format file_format(file_format_str);
245 if (!file_log.omit().file_timestamp())
247 if (file_format_str.find(
"%1") == std::string::npos)
249 glog <<
"file_name string must contain \"%1%\" which is expanded to the current "
250 "application start time (e.g. 20190201T184925), unless omit.file_timestamp "
251 "== true. Erroneous file_name is: "
252 << file_format_str << std::endl;
255 file_format.exceptions(boost::io::all_error_bits ^
256 (boost::io::too_many_args_bit | boost::io::too_few_args_bit));
258 std::string file_name =
262 fout_.reset(
new std::ofstream(file_name.c_str()));
264 if (!fout_->is_open())
265 glog.
is_die() &&
glog <<
"cannot write glog output to requested file: " << file_name
268 if (!file_log.omit().latest_symlink())
270 std::string file_symlink =
271 (file_format %
"latest" % app3_base_configuration_->name()).
str();
272 remove(file_symlink.c_str());
273 int result = symlink(realpath(file_name.c_str(), NULL), file_symlink.c_str());
276 glog <<
"Cannot create symlink to latest file. Continuing onwards anyway"
282 if (file_log.has_log_rotate_sec())
283 next_log_rotate_time_ =
287 template <
typename Config>
297 sigset_t signal_mask;
298 sigemptyset(&signal_mask);
299 sigaddset(&signal_mask, SIGWINCH);
300 pthread_sigmask(SIG_BLOCK, &signal_mask, NULL);
302 this->pre_initialize();
304 this->post_initialize();
309 this->check_rotate_glog_file();
311 this->pre_finalize();
313 this->post_finalize();
314 return return_value_;
317 template <
typename App>
320 int return_value = 0;
336 std::cout << cfgtor.
str() << std::endl;
341 App::app_cfg_.reset(
new typename App::ConfigType(cfgtor.
cfg()));
342 App::app3_base_configuration_.reset(
346 if (App::app3_base_configuration_->simulation().
time().use_sim_time())
350 App::app3_base_configuration_->simulation().time().warp_factor();
351 if (App::app3_base_configuration_->simulation().
time().has_reference_microtime())
353 std::chrono::system_clock::time_point(std::chrono::microseconds(
354 App::app3_base_configuration_->simulation().
time().reference_microtime()));
359 return_value = app.__run();
361 catch (std::exception&
e)
364 std::cerr <<
"Application:: uncaught exception: " <<
e.what() << std::endl;