Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Split TransitionAny and TransitionRandom to their own files
[simgrid.git] / src / mc / transition / Transition.hpp
1 /* Copyright (c) 2015-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_TRANSITION_HPP
7 #define SIMGRID_MC_TRANSITION_HPP
8
9 #include "simgrid/forward.h" // aid_t
10 #include "xbt/utility.hpp"   // XBT_DECLARE_ENUM_CLASS
11
12 #include <sstream>
13 #include <string>
14
15 namespace simgrid {
16 namespace mc {
17
18 /** An element in the recorded path
19  *
20  *  At each decision point, we need to record which process transition
21  *  is triggered and potentially which value is associated with this
22  *  transition. The value is used to find which communication is triggered
23  *  in things like waitany and for associating a given value of MC_random()
24  *  calls.
25  */
26 class Transition {
27   /* Textual representation of the transition, to display backtraces */
28   static unsigned long executed_transitions_;
29   static unsigned long replayed_transitions_;
30
31   friend State; // FIXME remove this once we have a proper class to handle the statistics
32
33 public:
34   /* Ordering is important here. depends() implementations only consider subsequent types in this ordering */
35   XBT_DECLARE_ENUM_CLASS(Type, RANDOM, TESTANY, WAITANY, COMM_RECV, COMM_SEND, COMM_TEST, COMM_WAIT,
36                          /* UNKNOWN must be last */ UNKNOWN);
37   Type type_ = Type::UNKNOWN;
38
39   aid_t aid_ = 0;
40
41   /* Which transition was executed for this simcall
42    *
43    * Some simcalls can lead to different transitions:
44    *
45    * * waitany/testany can trigger on different messages;
46    *
47    * * random can produce different values.
48    */
49   int times_considered_ = 0;
50
51   Transition() = default;
52   Transition(Type type, aid_t issuer, int times_considered)
53       : type_(type), aid_(issuer), times_considered_(times_considered)
54   {
55   }
56   virtual ~Transition();
57
58   virtual std::string to_string(bool verbose = false) const;
59   virtual std::string dot_label() const;
60
61   /* Moves the application toward a path that was already explored, but don't change the current transition */
62   void replay() const;
63
64   virtual bool depends(const Transition* other) const { return true; }
65
66   /* Returns the total amount of transitions executed so far (for statistics) */
67   static unsigned long get_executed_transitions() { return executed_transitions_; }
68   /* Returns the total amount of transitions replayed so far while backtracing (for statistics) */
69   static unsigned long get_replayed_transitions() { return replayed_transitions_; }
70 };
71
72 /** Make a new transition from serialized description */
73 Transition* deserialize_transition(aid_t issuer, int times_considered, std::stringstream& stream);
74
75 } // namespace mc
76 } // namespace simgrid
77
78 #endif