Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[project-description] Fix extraction of the ns-3 version.
[simgrid.git] / src / mc / explo / DFSExplorer.hpp
1 /* Copyright (c) 2008-2022. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef SIMGRID_MC_SAFETY_CHECKER_HPP
7 #define SIMGRID_MC_SAFETY_CHECKER_HPP
8
9 #include "src/mc/VisitedState.hpp"
10 #include "src/mc/explo/Exploration.hpp"
11 #include "src/mc/mc_safety.hpp"
12
13 #include <list>
14 #include <memory>
15 #include <string>
16 #include <vector>
17
18 namespace simgrid::mc {
19
20 class XBT_PRIVATE DFSExplorer : public Exploration {
21   ReductionMode reductionMode_ = ReductionMode::unset;
22   long backtrack_count_        = 0;
23
24   static xbt::signal<void()> on_exploration_start_signal;
25   static xbt::signal<void()> on_backtracking_signal;
26
27   static xbt::signal<void(State*)> on_state_creation_signal;
28
29   static xbt::signal<void(State*)> on_restore_system_state_signal;
30   static xbt::signal<void()> on_restore_initial_state_signal;
31   static xbt::signal<void(Transition*)> on_transition_replay_signal;
32   static xbt::signal<void(Transition*)> on_transition_execute_signal;
33
34   static xbt::signal<void()> on_log_state_signal;
35
36 public:
37   explicit DFSExplorer(Session* session);
38   void run() override;
39   RecordTrace get_record_trace() override;
40   std::vector<std::string> get_textual_trace() override;
41   void log_state() override;
42
43   /** Called once when the exploration starts */
44   static void on_exploration_start(std::function<void()> const& f) { on_exploration_start_signal.connect(f); }
45   /** Called each time that the exploration backtracks from a exploration end */
46   static void on_backtracking(std::function<void()> const& f) { on_backtracking_signal.connect(f); }
47   /** Called each time that a new state is create */
48   static void on_state_creation(std::function<void(State*)> const& f) { on_state_creation_signal.connect(f); }
49   /** Called when rollbacking directly onto a previously checkpointed state */
50   static void on_restore_system_state(std::function<void(State*)> const& f)
51   {
52     on_restore_system_state_signal.connect(f);
53   }
54   /** Called when the state to which we backtrack was not checkpointed state, forcing us to restore the initial state
55    * before replaying some transitions */
56   static void on_restore_initial_state(std::function<void()> const& f) { on_restore_initial_state_signal.connect(f); }
57   /** Called when replaying a transition that was previously executed, to reach a backtracked state */
58   static void on_transition_replay(std::function<void(Transition*)> const& f)
59   {
60     on_transition_replay_signal.connect(f);
61   }
62   /** Called when executing a new transition */
63   static void on_transition_execute(std::function<void(Transition*)> const& f)
64   {
65     on_transition_execute_signal.connect(f);
66   }
67   /** Called when displaying the statistics at the end of the exploration */
68   static void on_log_state(std::function<void()> const& f) { on_log_state_signal.connect(f); }
69
70 private:
71   void check_non_termination(const State* current_state);
72   void backtrack();
73   void restore_state();
74
75   /** Stack representing the position in the exploration graph */
76   std::list<std::unique_ptr<State>> stack_;
77   VisitedStates visited_states_;
78   std::unique_ptr<VisitedState> visited_state_;
79 };
80
81 } // namespace simgrid::mc
82
83 #endif