Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
add missing include for smpi_options
[simgrid.git] / src / mc / checker / simgrid_mc.cpp
1 /* Copyright (c) 2015-2019. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include "simgrid/sg_config.hpp"
8 #include "src/mc/Session.hpp"
9 #include "src/mc/checker/Checker.hpp"
10 #include "src/mc/mc_config.hpp"
11 #include "src/mc/mc_exit.hpp"
12
13 #if HAVE_SMPI
14 #include "smpi/smpi.h"
15 #endif
16
17 #include <cstring>
18 #include <memory>
19 #include <unistd.h>
20
21 static inline
22 char** argvdup(int argc, char** argv)
23 {
24   char** argv_copy = new char*[argc + 1];
25   std::memcpy(argv_copy, argv, sizeof(char*) * argc);
26   argv_copy[argc] = nullptr;
27   return argv_copy;
28 }
29
30 static std::unique_ptr<simgrid::mc::Checker> create_checker(simgrid::mc::Session& session)
31 {
32   if (_sg_mc_comms_determinism || _sg_mc_send_determinism)
33     return std::unique_ptr<simgrid::mc::Checker>(simgrid::mc::createCommunicationDeterminismChecker(session));
34   else if (_sg_mc_property_file.get().empty())
35     return std::unique_ptr<simgrid::mc::Checker>(simgrid::mc::createSafetyChecker(session));
36   else
37     return std::unique_ptr<simgrid::mc::Checker>(simgrid::mc::createLivenessChecker(session));
38 }
39
40 int main(int argc, char** argv)
41 {
42   if (argc < 2)
43     xbt_die("Missing arguments.\n");
44
45   // Currently, we need this before sg_config_init:
46   _sg_do_model_check = 1;
47
48   // The initialization function can touch argv.
49   // We make a copy of argv before modifying it in order to pass the original
50   // value to the model-checked:
51   char** argv_copy = argvdup(argc, argv);
52   xbt_log_init(&argc, argv);
53 #if HAVE_SMPI
54   smpi_init_options();//only performed once
55 #endif
56   sg_config_init(&argc, argv);
57   simgrid::mc::session = new simgrid::mc::Session([argv_copy] { execvp(argv_copy[1], argv_copy + 1); });
58   delete[] argv_copy;
59
60   std::unique_ptr<simgrid::mc::Checker> checker = create_checker(*simgrid::mc::session);
61   int res                                       = SIMGRID_MC_EXIT_SUCCESS;
62   try {
63     checker->run();
64   } catch (const simgrid::mc::DeadlockError&) {
65     res = SIMGRID_MC_EXIT_DEADLOCK;
66   } catch (const simgrid::mc::TerminationError&) {
67     res = SIMGRID_MC_EXIT_NON_TERMINATION;
68   } catch (const simgrid::mc::LivenessError&) {
69     res = SIMGRID_MC_EXIT_LIVENESS;
70   }
71   checker = nullptr;
72   simgrid::mc::session->close();
73   return res;
74 }