Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
9e857eba7b228b9f85ccc8f1361d7b889275903d
[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/LivenessChecker.hpp"
28 #include "src/mc/mc_exit.h"
29 #include "src/mc/Session.hpp"
30 #include "src/mc/Checker.hpp"
31 #include "src/mc/CommunicationDeterminismChecker.hpp"
32 #include "src/mc/SafetyChecker.hpp"
33
34 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_main, mc, "Entry point for simgrid-mc");
35
36 static inline
37 char** argvdup(int argc, char** argv)
38 {
39   char** argv_copy = xbt_new(char*, argc+1);
40   std::memcpy(argv_copy, argv, sizeof(char*) * argc);
41   argv_copy[argc] = nullptr;
42   return argv_copy;
43 }
44
45 static
46 std::unique_ptr<simgrid::mc::Checker> createChecker(simgrid::mc::Session& session)
47 {
48   if (_sg_mc_comms_determinism || _sg_mc_send_determinism)
49     return std::unique_ptr<simgrid::mc::Checker>(
50       new simgrid::mc::CommunicationDeterminismChecker(session));
51   else if (!_sg_mc_property_file || _sg_mc_property_file[0] == '\0')
52     return std::unique_ptr<simgrid::mc::Checker>(
53       new simgrid::mc::SafetyChecker(session));
54   else
55     return std::unique_ptr<simgrid::mc::Checker>(
56       simgrid::mc::createLivenessChecker(session));
57 }
58
59 int main(int argc, char** argv)
60 {
61   using simgrid::mc::Session;
62
63   try {
64     if (argc < 2)
65       xbt_die("Missing arguments.\n");
66
67     // Currently, we need this before sg_config_init:
68     _sg_do_model_check = 1;
69     mc_mode = MC_MODE_SERVER;
70
71     // The initialisation function can touch argv.
72     // We make a copy of argv before modifying it in order to pass the original
73     // value to the model-checked:
74     char** argv_copy = argvdup(argc, argv);
75     xbt_log_init(&argc, argv);
76     sg_config_init(&argc, argv);
77
78     std::unique_ptr<Session> session =
79       std::unique_ptr<Session>(Session::spawnvp(argv_copy[1], argv_copy+1));
80     free(argv_copy);
81
82     simgrid::mc::session = session.get();
83     std::unique_ptr<simgrid::mc::Checker> checker = createChecker(*session);
84     int res = checker->run();
85     checker = nullptr;
86     session->close();
87     return res;
88   }
89   catch(std::exception& e) {
90     XBT_ERROR("Exception: %s", e.what());
91     return SIMGRID_MC_EXIT_ERROR;
92   }
93   catch(...) {
94     XBT_ERROR("Unknown exception");
95     return SIMGRID_MC_EXIT_ERROR;
96   }
97 }