Flow123d  release_3.0.0-968-gc87a28e79
main.cc
Go to the documentation of this file.
1 /*!
2  *
3  * Copyright (C) 2015 Technical University of Liberec. All rights reserved.
4  *
5  * This program is free software; you can redistribute it and/or modify it under
6  * the terms of the GNU General Public License version 3 as published by the
7  * Free Software Foundation. (http://www.gnu.org/licenses/gpl-3.0.en.html)
8  *
9  * This program is distributed in the hope that it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12  *
13  *
14  * @file main.cc
15  * @brief This file should contain only creation of Application object.
16  */
17 
18 
19 #include "system/system.hh"
20 #include "system/sys_profiler.hh"
21 #include "system/python_loader.hh"
23 #include "coupling/balance.hh"
24 #include "input/accessors.hh"
27 
28 #include <iostream>
29 #include <fstream>
30 #include <regex>
31 #include <boost/program_options/parsers.hpp>
32 #include <boost/program_options/variables_map.hpp>
33 #include <boost/program_options/options_description.hpp>
34 #include <boost/filesystem.hpp>
35 
36 #include "main.h"
37 
38 #include "rev_num.h"
39 
40 /// named version of the program
41 //#define _PROGRAM_VERSION_ "0.0.0"
42 
43 //#ifndef _PROGRAM_REVISION_
44 // #define _PROGRAM_REVISION_ "(unknown revision)"
45 //#endif
46 
47 //#ifndef _PROGRAM_BRANCH_
48 // #define _PROGRAM_BRANCH_ "(unknown branch)"
49 //#endif
50 
51 #ifndef FLOW123D_COMPILER_FLAGS_
52  #define FLOW123D_COMPILER_FLAGS_ "(unknown compiler flags)"
53 #endif
54 
55 
56 namespace it = Input::Type;
57 
58 // this should be part of a system class containing all support information
60  static it::Record type = it::Record("Root", "Root record of JSON input for Flow123d.")
61  .declare_key("flow123d_version", it::String(), it::Default::obligatory(),
62  "Version of Flow123d for which the input file was created."
63  "Flow123d only warn about version incompatibility. "
64  "However, external tools may use this information to provide conversion "
65  "of the input file to the structure required by another version of Flow123d.")
67  "Simulation problem to be solved.")
68  .declare_key("pause_after_run", it::Bool(), it::Default("false"),
69  "If true, the program will wait for key press before it terminates.")
70  .close();
71 
72  return type;
73 }
74 
75 
76 
77 Application::Application( int argc, char ** argv)
78 : ApplicationBase(argc, argv),
79  problem_(nullptr),
80  main_input_filename_(""),
81  //passed_argc_(0),
82  //passed_argv_(0),
83  use_profiler(true),
84  yaml_balance_output_(false)
85 {
86  // initialize python stuff if we have
87  // nonstandard python home (release builds)
88 #ifdef FLOW123D_HAVE_PYTHON
89  PythonLoader::initialize(argv[0]);
90 #endif
91 
92 }
93 
94 
96  Input::Type::RevNumData rev_num_data;
97 
98  rev_num_data.version = string(FLOW123D_VERSION_NAME_);
99  rev_num_data.revision = string(FLOW123D_GIT_REVISION_);
100  rev_num_data.branch = string(FLOW123D_GIT_BRANCH_);
101  rev_num_data.url = string(FLOW123D_GIT_URL_);
102 
103  return rev_num_data;
104 }
105 
106 
108  // Say Hello
109  // make strings from macros in order to check type
110  Input::Type::RevNumData rev_num_data = this->get_rev_num_data();
111  string build = string(__DATE__) + ", " + string(__TIME__)
112  + " flags: " + string(FLOW123D_COMPILER_FLAGS_);
113 
114 
115  MessageOut().fmt("This is Flow123d, version {} commit: {}\n",
116  rev_num_data.version, rev_num_data.revision);
117  MessageOut().fmt("Branch: {}\nBuild: {}\nFetch URL: {}\n",
118  rev_num_data.branch, build, rev_num_data.url );
119  Profiler::instance()->set_program_info("Flow123d",
120  rev_num_data.version, rev_num_data.branch, rev_num_data.revision, build);
121 }
122 
123 
124 
126  if (main_input_filename_ == "") {
127  cout << "Usage error: The main input file has to be specified through -s parameter.\n\n";
128  cout << program_arguments_desc_ << "\n";
129  exit( exit_failure );
130  }
131 
132  // read main input file
133  FilePath fpath(main_input_filename_, FilePath::FileType::input_file);
134 
135  Input::ReaderToStorage json_reader(fpath, get_input_type() );
137 
138  return root_record;
139 }
140 
141 
142 
143 void Application::parse_cmd_line(const int argc, char ** argv) {
144  namespace po = boost::program_options;
145 
146 
147  // Declare the supported options.
148  po::options_description desc("Allowed options");
149  desc.add_options()
150  ("help", "produce help message")
151  ("solve,s", po::value< string >(), "Main input file to solve.")
152  ("input_dir,i", po::value< string >()->default_value("input"), "Directory for the $INPUT_DIR$ placeholder in the main input file.")
153  ("output_dir,o", po::value< string >()->default_value("output"), "Directory for all produced output files.")
154  ("log,l", po::value< string >()->default_value("flow123"), "Set base name for log files.")
155  ("version", "Display version and build information and exit.")
156  ("no_log", "Turn off logging.")
157  ("no_signal_handler", "Turn off signal handling. Useful for debugging with valgrind.")
158  ("no_profiler", "Turn off profiler output.")
159  ("input_format", po::value< string >(), "Writes full structure of the main input file into given file.")
160  ("petsc_redirect", po::value<string>(), "Redirect all PETSc stdout and stderr to given file.")
161  ("yaml_balance", "Redirect balance output to YAML format too (simultaneously with the selected balance output format).");
162 
163  ;
164 
165  // Can not use positional arguments together with PETSC options.
166  // Use our own solution trying to use the first unrecognized option as the main input file.
167 
168  // parse the command line
169  po::variables_map vm;
170  auto parser = po::basic_command_line_parser<char>(argc, argv)
171  .options(desc)
172  .allow_unregistered();
173  po::parsed_options parsed = parser.run();
174  po::store(parsed, vm);
175  po::notify(vm);
176 
177  // get unknown options
178  vector<string> to_pass_further = po::collect_unrecognized(parsed.options, po::include_positional);
179 
180 
181  /*
182  passed_argc_ = to_pass_further.size();
183  passed_argv_ = new char * [passed_argc_+1];
184 
185  // first copy the program executable in argv[0]
186  int arg_i=0;
187  if (argc > 0) passed_argv_[arg_i++] = xstrcpy( argv[0] );
188 
189  for(int i=0; i < passed_argc_; i++) {
190  passed_argv_[arg_i++] = xstrcpy( to_pass_further[i].c_str() );
191  }
192  passed_argc_ = arg_i;
193  */
194 
195  // possibly turn off profilling
196  if (vm.count("no_profiler")) use_profiler=false;
197 
198  // if there is "help" option
199  if (vm.count("help")) {
200  display_version();
201  cout << endl;
202  cout << "Usage:" << endl;
203  cout << " flow123d -s <main_input>.yaml <other options> <PETSC options>" << endl;
204  cout << " flow123d <main_input>.yaml <other options> <PETSC options>" << endl;
205  cout << desc << "\n";
206  exit( exit_output );
207  }
208 
209  if (vm.count("version")) {
210  display_version();
211  exit( exit_output );
212  }
213 
214  // if there is "input_format" option
215  if (vm.count("input_format")) {
216  // write ist to json file
217  ofstream json_stream;
218  FilePath(vm["input_format"].as<string>(), FilePath::output_file).open_stream(json_stream);
219  // create the root Record
220  it::Record root_type = get_input_type();
221  root_type.finish();
223  json_stream << Input::Type::OutputJSONMachine( root_type, this->get_rev_num_data() );
224  json_stream.close();
225  exit( exit_output );
226  }
227 
228  if (vm.count("petsc_redirect")) {
229  this->petsc_redirect_file_ = vm["petsc_redirect"].as<string>();
230  }
231 
232  if (vm.count("no_signal_handler")) {
233  this->signal_handler_off_ = true;
234  }
235 
236  // if there is "solve" option
237  string input_filename = "";
238 
239  // check for positional main input file
240  if (to_pass_further.size()) {
241  string file_candidate = to_pass_further[0];
242  if (file_candidate[0] != '-') {
243  // pop the first option
244  input_filename = file_candidate;
245  to_pass_further.erase(to_pass_further.begin());
246  }
247  }
248 
249  if (vm.count("solve")) {
250  input_filename = vm["solve"].as<string>();
251  }
252 
253  if (input_filename == "")
254  THROW(ExcMessage() << EI_Message("Main input file not specified (option -s)."));
255 
256  // preserves output of balance in YAML format
257  if (vm.count("yaml_balance")) Balance::set_yaml_output();
258 
259  string input_dir;
260  string output_dir;
261  if (vm.count("input_dir")) {
262  input_dir = vm["input_dir"].as<string>();
263  }
264  if (vm.count("output_dir")) {
265  output_dir = vm["output_dir"].as<string>();
266  }
267 
268  // assumes working directory "."
269  try {
270  main_input_filename_ = FilePath::set_dirs_from_input(input_filename, input_dir, output_dir );
271  } catch (FilePath::ExcMkdirFail &e) {
272  use_profiler = false; // avoid profiler output
273  throw e;
274  }
275 
276  if (vm.count("log")) {
277  this->log_filename_ = vm["log"].as<string>();
278  }
279 
280  if (vm.count("no_log")) {
281  this->log_filename_="//"; // override; do not open log files
282  }
283 
284  ostringstream tmp_stream(program_arguments_desc_);
285  tmp_stream << desc;
286  // TODO: catch specific exceptions and output usage messages
287 }
288 
289 
290 
291 
292 
294  START_TIMER("Application::run");
295  display_version();
296 
297  START_TIMER("Read Input");
298  // get main input record handle
299  Input::Record i_rec = read_input();
300  END_TIMER("Read Input");
301 
302  {
303  using namespace Input;
304  // check input file version against the version of executable
305  std::regex version_re("([^.]*)[.]([^.]*)[.]([^.]*)");
306  std::smatch match;
307  std::string version(FLOW123D_VERSION_NAME_);
308  vector<string> ver_fields(3);
309  if ( std::regex_match(version, match, version_re) ) {
310  ver_fields[0]=match[1];
311  ver_fields[1]=match[2];
312  ver_fields[2]=match[3];
313  } else {
314  OLD_ASSERT(1, "Bad Flow123d version format: %s\n", version.c_str() );
315  }
316 
317  std::string input_version = i_rec.val<string>("flow123d_version");
318  vector<string> iver_fields(3);
319  if ( std::regex_match(input_version, match, version_re) ) {
320  iver_fields[0]=match[1];
321  iver_fields[1]=match[2];
322  iver_fields[2]=match[3];
323  } else {
324  THROW( ExcVersionFormat() << EI_InputVersionStr(input_version) );
325  }
326 
327  if ( iver_fields[0] != ver_fields[0] || iver_fields[1] > ver_fields[1] ) {
328  WarningOut().fmt("Input file with version: '{}' is no compatible with the program version: '{}' \n",
329  input_version, version);
330  }
331 
332  // should flow123d wait for pressing "Enter", when simulation is completed
333  sys_info.pause_after_run = i_rec.val<bool>("pause_after_run");
334  // read record with problem configuration
335  Input::AbstractRecord i_problem = i_rec.val<AbstractRecord>("problem");
336 
337  if (i_problem.type() == HC_ExplicitSequential::get_input_type() ) {
338 
339  problem_ = new HC_ExplicitSequential(i_problem);
340 
341  // run simulation
343  } else {
344  xprintf(UsrErr,"Problem type not implemented.");
345  }
346 
347  }
348 }
349 
350 
351 
352 
355  printf("\nPress <ENTER> for closing the window\n");
356  getchar();
357  }
358 }
359 
360 
361 
362 
364  if (problem_) delete problem_;
365 
366  if (use_profiler) {
367  if (petsc_initialized) {
368  // log profiler data to this stream
369  Profiler::instance()->output (PETSC_COMM_WORLD);
370  } else {
372  }
373 
374  // call python script which transforms json file at given location
375  // Profiler::instance()->transform_profiler_data (".csv", "CSVFormatter");
376  Profiler::instance()->transform_profiler_data (".txt", "SimpleTableFormatter");
377 
378  // finally uninitialize
380  }
381 }
382 
383 
384 //=============================================================================
385 
386 /**
387  * FUNCTION "MAIN"
388  */
389 int main(int argc, char **argv) {
390  try {
391  Application app(argc, argv);
392  app.init(argc, argv);
393  } catch (std::exception & e) {
394  _LOG( Logger::MsgType::error ) << e.what();
396  } catch (...) {
397  _LOG( Logger::MsgType::error ) << "Unknown exception" << endl;
399  }
400 
401  // Say Goodbye
403 }
Input::Type::Bool
Class for declaration of the input of type Bool.
Definition: type_base.hh:452
reader_to_storage.hh
Application::~Application
virtual ~Application()
Destructor.
Definition: main.cc:363
Input::ReaderToStorage
Reader for (slightly) modified input files.
Definition: reader_to_storage.hh:96
UsrErr
@ UsrErr
Definition: system.hh:64
python_loader.hh
Input
Abstract linear system class.
Definition: balance.hh:37
ApplicationBase::init
void init(int argc, char **argv)
Definition: application_base.cc:184
CouplingBase::get_input_type
static Input::Type::Abstract & get_input_type()
Definition: hc_explicit_sequential.cc:51
Input::Type::RevNumData::url
std::string url
Url of application.
Definition: type_output.hh:48
Application::get_rev_num_data
Input::Type::RevNumData get_rev_num_data()
Get version of program and other base data from rev_num.h and store them to map.
Definition: main.cc:95
Input::Record::val
const Ret val(const string &key) const
Definition: accessors_impl.hh:31
FilePath
Dedicated class for storing path to input and output files.
Definition: file_path.hh:54
Application::main_input_filename_
string main_input_filename_
filename of main input file
Definition: main.h:97
Application::after_run
virtual void after_run()
Definition: main.cc:353
Application::Application
Application(int argc, char **argv)
Application constructor.
Definition: main.cc:77
THROW
#define THROW(whole_exception_expr)
Wrapper for throw. Saves the throwing point.
Definition: exceptions.hh:53
std::vector
Definition: doxy_dummy_defs.hh:7
system.hh
Application::problem_
HC_ExplicitSequential * problem_
Main Flow123d problem.
Definition: main.h:94
reader_internal_base.hh
FLOW123D_COMPILER_FLAGS_
#define FLOW123D_COMPILER_FLAGS_
named version of the program
Definition: main.cc:52
Application
Definition: main.h:34
Profiler::uninitialize
static void uninitialize()
Definition: sys_profiler.cc:965
FilePath::open_stream
void open_stream(Stream &stream) const
Definition: file_path.cc:211
Input::Type::Default
Class Input::Type::Default specifies default value of keys of a Input::Type::Record.
Definition: type_record.hh:61
Application::use_profiler
bool use_profiler
If true, we do output of profiling information.
Definition: main.h:106
Input::Type::RevNumData::branch
std::string branch
Actual branch of application.
Definition: type_output.hh:47
ApplicationBase::petsc_redirect_file_
string petsc_redirect_file_
Definition: application_base.hh:145
ApplicationBase::log_filename_
string log_filename_
Definition: application_base.hh:141
Input::Record
Accessor to the data with type Type::Record.
Definition: accessors.hh:291
sys_profiler.hh
hc_explicit_sequential.hh
Application::get_input_type
static Input::Type::Record & get_input_type()
Root of the Input::Type tree. Description of whole input structure.
Definition: main.cc:59
xprintf
#define xprintf(...)
Definition: system.hh:92
ApplicationBase
Definition: application_base.hh:65
accessors.hh
Input::Type::RevNumData
Stores version of program and other base data of application.
Definition: type_output.hh:44
Profiler::output
void output(MPI_Comm comm, ostream &os)
Definition: sys_profiler.hh:861
Input::AbstractRecord
Accessor to the polymorphic input data of a type given by an AbstracRecord object.
Definition: accessors.hh:458
Input::Type::Default::obligatory
static Default obligatory()
The factory function to make an empty default value which is obligatory.
Definition: type_record.hh:110
Input::Type::Record::declare_key
Record & declare_key(const string &key, std::shared_ptr< TypeBase > type, const Default &default_value, const string &description, TypeBase::attribute_map key_attributes=TypeBase::attribute_map())
Declares a new key of the Record.
Definition: type_record.cc:501
Input::ReaderToStorage::get_root_interface
T get_root_interface() const
Returns the root accessor.
Definition: reader_to_storage.cc:150
main
int main(int argc, char **argv)
Definition: main.cc:389
FilePath::set_dirs_from_input
static string set_dirs_from_input(const string main_yaml, const string input, const string output)
Method for set input and output directories.
Definition: file_path.cc:137
Input::Type::Record::close
Record & close() const
Close the Record for further declarations of keys.
Definition: type_record.cc:303
Input::Type
Definition: balance.hh:38
Input::Type::Record
Record type proxy class.
Definition: type_record.hh:182
Application::program_arguments_desc_
string program_arguments_desc_
Description of possible command line arguments.
Definition: main.h:103
ApplicationBase::exit_output
static const int exit_output
Definition: application_base.hh:77
ApplicationBase::petsc_initialized
static bool petsc_initialized
Definition: application_base.hh:79
_LOG
#define _LOG(type)
Internal macro defining universal record of log.
Definition: logger.hh:240
HC_ExplicitSequential::run_simulation
void run_simulation()
Definition: hc_explicit_sequential.cc:198
OLD_ASSERT
#define OLD_ASSERT(...)
Definition: global_defs.h:131
Balance::set_yaml_output
static void set_yaml_output()
Set global variable to output balance files into YAML format (in addition to the table format).
Definition: balance.cc:62
Input::Type::String
Class for declaration of the input data that are in string format.
Definition: type_base.hh:582
fmt::printf
void printf(BasicWriter< Char > &w, BasicCStringRef< Char > format, ArgList args)
Definition: printf.h:444
Profiler::transform_profiler_data
void transform_profiler_data(const string &output_file_suffix, const string &formatter)
Definition: sys_profiler.hh:867
main.h
WarningOut
#define WarningOut()
Macro defining 'warning' record of log.
Definition: logger.hh:246
Application::display_version
void display_version()
Definition: main.cc:107
ApplicationBase::signal_handler_off_
bool signal_handler_off_
Turn off signal handling useful to debug with valgrind.
Definition: application_base.hh:151
Input::Type::Record::finish
FinishStatus finish(FinishStatus finish_type=FinishStatus::regular_) override
Finish declaration of the Record type.
Definition: type_record.cc:242
sys_info
SystemInfo sys_info
Definition: system.cc:41
SystemInfo::pause_after_run
int pause_after_run
Definition: system.hh:73
ApplicationBase::exit_failure
static const int exit_failure
Definition: application_base.hh:76
Input::Type::RevNumData::revision
std::string revision
Actual revision of application.
Definition: type_output.hh:46
HC_ExplicitSequential
Class for solution of steady or unsteady flow with sequentially coupled explicit transport.
Definition: hc_explicit_sequential.hh:49
Input::Type::RevNumData::version
std::string version
Actual version of application.
Definition: type_output.hh:45
Input::Type::OutputJSONMachine
Class for create JSON machine readable documentation.
Definition: type_output.hh:252
HC_ExplicitSequential::get_input_type
static const Input::Type::Record & get_input_type()
Definition: hc_explicit_sequential.cc:57
Input::Type::TypeBase::delete_unfinished_types
static void delete_unfinished_types()
Finishes and marks all types registered in type repositories and unused in IST.
Definition: type_base.cc:107
Profiler::instance
static Profiler * instance()
Definition: sys_profiler.cc:951
FilePath::output_file
@ output_file
Definition: file_path.hh:69
Application::read_input
Input::Record read_input()
Definition: main.cc:125
balance.hh
Profiler::set_program_info
void set_program_info(string program_name, string program_version, string branch, string revision, string build)
Definition: sys_profiler.hh:855
Application::root_record
Input::Record root_record
root input record
Definition: main.h:112
Application::run
virtual void run()
Definition: main.cc:293
START_TIMER
#define START_TIMER(tag)
Starts a timer with specified tag.
Definition: sys_profiler.hh:119
END_TIMER
#define END_TIMER(tag)
Ends a timer with specified tag.
Definition: sys_profiler.hh:153
Application::parse_cmd_line
virtual void parse_cmd_line(const int argc, char **argv)
Definition: main.cc:143
MessageOut
#define MessageOut()
Macro defining 'message' record of log.
Definition: logger.hh:243
ApplicationBase::exit_success
static const int exit_success
Return codes of application.
Definition: application_base.hh:75