Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
[simgrid.git] / src / mc / checker / 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/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(unsigned long expanded_pairs);
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 actors_count            = 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   void run() override;
69   RecordTrace getRecordTrace() override;
70   std::vector<std::string> getTextualTrace() override;
71   void logState() override;
72 private:
73   int compare(simgrid::mc::VisitedPair* state1, simgrid::mc::VisitedPair* state2);
74   std::shared_ptr<const std::vector<int>> getPropositionValues();
75   std::shared_ptr<VisitedPair> insertAcceptancePair(simgrid::mc::Pair* pair);
76   int insertVisitedPair(std::shared_ptr<VisitedPair> visited_pair, simgrid::mc::Pair* pair);
77   void showAcceptanceCycle(std::size_t depth);
78   void replay();
79   void removeAcceptancePair(int pair_num);
80   void purgeVisitedPairs();
81   void backtrack();
82   std::shared_ptr<Pair> newPair(Pair* pair, xbt_automaton_state_t state, std::shared_ptr<const std::vector<int>> propositions);
83 private:
84   // A stack of (application_state, automaton_state) pairs for DFS exploration:
85   std::list<std::shared_ptr<Pair>> explorationStack_;
86   std::list<std::shared_ptr<VisitedPair>> acceptancePairs_;
87   std::list<std::shared_ptr<VisitedPair>> visitedPairs_;
88   unsigned long visitedPairsCount_ = 0;
89   unsigned long expandedPairsCount_ = 0;
90   unsigned long expandedStatesCount_ = 0;
91   int previousPair_ = 0;
92   std::string previousRequest_;
93 };
94
95 }
96 }
97
98 #endif