Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Duplicate restoreState() as a method of SafetyChecker
[simgrid.git] / src / mc / simgrid_mc.cpp
1 /* Copyright (c) 2015. 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 <exception>
8
9 #include <cstdlib>
10 #include <cstdio>
11 #include <cstring>
12
13 #include <utility>
14
15 #include <unistd.h>
16
17 #include <xbt/log.h>
18
19 #include "simgrid/sg_config.h"
20 #include "src/xbt_modinter.h"
21
22 #include "src/mc/mc_base.h"
23 #include "src/mc/mc_private.h"
24 #include "src/mc/mc_protocol.h"
25 #include "src/mc/mc_safety.h"
26 #include "src/mc/mc_comm_pattern.h"
27 #include "src/mc/mc_exit.h"
28 #include "src/mc/Session.hpp"
29 #include "src/mc/Checker.hpp"
30
31 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_main, mc, "Entry point for simgrid-mc");
32
33 static inline
34 char** argvdup(int argc, char** argv)
35 {
36   char** argv_copy = xbt_new(char*, argc+1);
37   std::memcpy(argv_copy, argv, sizeof(char*) * argc);
38   argv_copy[argc] = nullptr;
39   return argv_copy;
40 }
41
42 static
43 std::unique_ptr<simgrid::mc::Checker> createChecker(simgrid::mc::Session& session)
44 {
45   if (_sg_mc_comms_determinism || _sg_mc_send_determinism)
46     return std::unique_ptr<simgrid::mc::Checker>(
47       simgrid::mc::createCommunicationDeterminismChecker(session));
48   else if (!_sg_mc_property_file || _sg_mc_property_file[0] == '\0')
49     return std::unique_ptr<simgrid::mc::Checker>(
50       simgrid::mc::createSafetyChecker(session));
51   else
52     return std::unique_ptr<simgrid::mc::Checker>(
53       simgrid::mc::createLivenessChecker(session));
54 }
55
56 int main(int argc, char** argv)
57 {
58   using simgrid::mc::Session;
59
60   try {
61     if (argc < 2)
62       xbt_die("Missing arguments.\n");
63
64     // Currently, we need this before sg_config_init:
65     _sg_do_model_check = 1;
66     mc_mode = MC_MODE_SERVER;
67
68     // The initialisation function can touch argv.
69     // We make a copy of argv before modifying it in order to pass the original
70     // value to the model-checked:
71     char** argv_copy = argvdup(argc, argv);
72     xbt_log_init(&argc, argv);
73     sg_config_init(&argc, argv);
74
75     std::unique_ptr<Session> session =
76       std::unique_ptr<Session>(Session::spawnvp(argv_copy[1], argv_copy+1));
77     free(argv_copy);
78
79     simgrid::mc::session = session.get();
80     std::unique_ptr<simgrid::mc::Checker> checker = createChecker(*session);
81     int res = checker->run();
82     checker = nullptr;
83     session->close();
84     return res;
85   }
86   catch(std::exception& e) {
87     XBT_ERROR("Exception: %s", e.what());
88     return SIMGRID_MC_EXIT_ERROR;
89   }
90   catch(...) {
91     XBT_ERROR("Unknown exception");
92     return SIMGRID_MC_EXIT_ERROR;
93   }
94 }