Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
createSafetyChecker without Session argument
[simgrid.git] / src / mc / checker / Checker.hpp
1 /* Copyright (c) 2016-2020. 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 #ifndef SIMGRID_MC_CHECKER_HPP
8 #define SIMGRID_MC_CHECKER_HPP
9
10 //#include "src/mc/Session.hpp"
11 #include "src/mc/mc_forward.hpp"
12 #include "src/mc/mc_record.hpp"
13
14 namespace simgrid {
15 namespace mc {
16
17 /** A model-checking algorithm
18  *
19  *  This is an abstract base class used to group the data, state, configuration
20  *  of a model-checking algorithm.
21  *
22  *  Implementing this interface will probably not be really mandatory,
23  *  you might be able to write your model-checking algorithm as plain
24  *  imperative code instead.
25  *
26  *  It is expected to interact with the model-checking core through the
27  * `Session` interface (but currently the `Session` interface does not
28  *  have all the necessary features). */
29 // abstract
30 class Checker {
31 public:
32   explicit Checker();
33
34   // No copy:
35   Checker(Checker const&) = delete;
36   Checker& operator=(Checker const&) = delete;
37
38   virtual ~Checker() = default;
39
40   /** Main function of this algorithm */
41   virtual void run() = 0;
42
43   /* These methods are callbacks called by the model-checking engine
44    * to get and display information about the current state of the
45    * model-checking algorithm: */
46
47   /** Show the current trace/stack
48    *
49    *  Could this be handled in the Session/ModelChecker instead? */
50   virtual RecordTrace get_record_trace() = 0;
51
52   /** Generate a textual execution trace of the simulated application */
53   virtual std::vector<std::string> get_textual_trace() = 0;
54
55   /** Log additional information about the state of the model-checker */
56   virtual void log_state() = 0;
57
58 };
59
60 // External constructors so that the types (and the types of their content) remain hidden
61 XBT_PUBLIC Checker* createLivenessChecker();
62 XBT_PUBLIC Checker* createSafetyChecker();
63 XBT_PUBLIC Checker* createCommunicationDeterminismChecker(Session& session);
64
65 } // namespace mc
66 } // namespace simgrid
67
68 #endif