Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
39f899fdb0b45a52ad564c0a900b21d8c211db21
[simgrid.git] / src / mc / checker / LivenessChecker.hpp
1 /* Copyright (c) 2007-2021. 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_LIVENESS_CHECKER_HPP
8 #define SIMGRID_MC_LIVENESS_CHECKER_HPP
9
10 #include "src/mc/checker/Checker.hpp"
11 #include "src/mc/mc_state.hpp"
12 #include "xbt/automaton.hpp"
13
14 #include <list>
15 #include <memory>
16 #include <vector>
17
18 namespace simgrid {
19 namespace mc {
20
21 class XBT_PRIVATE Pair {
22 public:
23   int num = 0;
24   bool search_cycle = false;
25   std::shared_ptr<State> graph_state    = nullptr; /* System state included */
26   xbt_automaton_state_t automaton_state = nullptr;
27   std::shared_ptr<const std::vector<int>> atomic_propositions;
28   int requests = 0;
29   int depth = 0;
30   bool exploration_started = false;
31
32   explicit Pair(unsigned long expanded_pairs);
33
34   Pair(Pair const&) = delete;
35   Pair& operator=(Pair const&) = delete;
36 };
37
38 class XBT_PRIVATE VisitedPair {
39 public:
40   int num;
41   int other_num = 0; /* Dot output for */
42   std::shared_ptr<State> graph_state = nullptr; /* System state included */
43   xbt_automaton_state_t automaton_state;
44   std::shared_ptr<const std::vector<int>> atomic_propositions;
45   std::size_t heap_bytes_used = 0;
46   int actors_count            = 0;
47
48   VisitedPair(int pair_num, xbt_automaton_state_t automaton_state,
49               std::shared_ptr<const std::vector<int>> atomic_propositions, std::shared_ptr<State> graph_state);
50 };
51
52 class XBT_PRIVATE LivenessChecker : public Checker {
53 public:
54   explicit LivenessChecker();
55   void run() override;
56   RecordTrace get_record_trace() override;
57   std::vector<std::string> get_textual_trace() override;
58   void log_state() override;
59
60 private:
61   std::shared_ptr<const std::vector<int>> get_proposition_values() const;
62   std::shared_ptr<VisitedPair> insert_acceptance_pair(Pair* pair);
63   int insert_visited_pair(std::shared_ptr<VisitedPair> visited_pair, Pair* pair);
64   void show_acceptance_cycle(std::size_t depth);
65   void replay();
66   void remove_acceptance_pair(int pair_num);
67   void purge_visited_pairs();
68   void backtrack();
69   std::shared_ptr<Pair> create_pair(const Pair* pair, xbt_automaton_state_t state,
70                                     std::shared_ptr<const std::vector<int>> propositions);
71
72   // A stack of (application_state, automaton_state) pairs for DFS exploration:
73   std::list<std::shared_ptr<Pair>> exploration_stack_;
74   std::list<std::shared_ptr<VisitedPair>> acceptance_pairs_;
75   std::list<std::shared_ptr<VisitedPair>> visited_pairs_;
76   unsigned long visited_pairs_count_   = 0;
77   unsigned long expanded_pairs_count_  = 0;
78   unsigned long expanded_states_count_ = 0;
79   int previous_pair_                   = 0;
80   std::string previous_request_;
81 };
82
83 } // namespace mc
84 } // namespace simgrid
85
86 #endif