Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Use Session::execute() in LivenessChecker as well
[simgrid.git] / src / mc / LivenessChecker.hpp
1 /* Copyright (c) 2007-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 #ifndef SIMGRID_MC_LIVENESS_CHECKER_HPP
8 #define SIMGRID_MC_LIVENESS_CHECKER_HPP
9
10 #include <cstddef>
11
12 #include <string>
13 #include <list>
14 #include <memory>
15 #include <vector>
16
17 #include <simgrid_config.h>
18 #include <xbt/base.h>
19 #include <xbt/automaton.h>
20 #include <xbt/memory.hpp>
21 #include "src/mc/mc_state.h"
22 #include "src/mc/Checker.hpp"
23
24 SG_BEGIN_DECL()
25
26 SG_END_DECL()
27
28 namespace simgrid {
29 namespace mc {
30
31 struct XBT_PRIVATE Pair {
32   int num = 0;
33   bool search_cycle = false;
34   std::shared_ptr<simgrid::mc::State> graph_state = nullptr; /* System state included */
35   xbt_automaton_state_t automaton_state = nullptr;
36   std::shared_ptr<const std::vector<int>> atomic_propositions;
37   int requests = 0;
38   int depth = 0;
39   bool exploration_started = false;
40
41   Pair();
42   ~Pair();
43
44   Pair(Pair const&) = delete;
45   Pair& operator=(Pair const&) = delete;
46 };
47
48 struct XBT_PRIVATE VisitedPair {
49   int num = 0;
50   int other_num = 0; /* Dot output for */
51   std::shared_ptr<simgrid::mc::State> graph_state = nullptr; /* System state included */
52   xbt_automaton_state_t automaton_state = nullptr;
53   std::shared_ptr<const std::vector<int>> atomic_propositions;
54   std::size_t heap_bytes_used = 0;
55   int nb_processes = 0;
56
57   VisitedPair(
58     int pair_num, xbt_automaton_state_t automaton_state,
59     std::shared_ptr<const std::vector<int>> atomic_propositions,
60     std::shared_ptr<simgrid::mc::State> graph_state);
61   ~VisitedPair();
62 };
63
64 class XBT_PRIVATE LivenessChecker : public Checker {
65 public:
66   LivenessChecker(Session& session);
67   ~LivenessChecker();
68   int run() override;
69   RecordTrace getRecordTrace() override;
70   std::vector<std::string> getTextualTrace() override;
71 private:
72   int main();
73   void prepare();
74   int compare(simgrid::mc::VisitedPair* state1, simgrid::mc::VisitedPair* state2);
75   std::shared_ptr<const std::vector<int>> getPropositionValues();
76   std::shared_ptr<VisitedPair> insertAcceptancePair(simgrid::mc::Pair* pair);
77   int insertVisitedPair(std::shared_ptr<VisitedPair> visited_pair, simgrid::mc::Pair* pair);
78   void showAcceptanceCycle(std::size_t depth);
79   void replay();
80   void removeAcceptancePair(int pair_num);
81   void purgeVisitedPairs();
82   void backtrack();
83   std::shared_ptr<Pair> newPair(Pair* pair, xbt_automaton_state_t state, std::shared_ptr<const std::vector<int>> propositions);
84 public:
85   // A stack of (application_state, automaton_state) pairs for DFS exploration:
86   std::list<std::shared_ptr<Pair>> explorationStack_;
87   std::list<std::shared_ptr<VisitedPair>> acceptancePairs_;
88   std::list<std::shared_ptr<VisitedPair>> visitedPairs_;
89 };
90
91 }
92 }
93
94 #endif