Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines.
[simgrid.git] / src / mc / mc_pattern.hpp
1 /* Copyright (c) 2007-2021. 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_PATTERN_H
7 #define SIMGRID_MC_PATTERN_H
8
9 #include "src/kernel/activity/CommImpl.hpp"
10
11 namespace simgrid {
12 namespace mc {
13
14 enum class PatternCommunicationType {
15   none    = 0,
16   send    = 1,
17   receive = 2,
18 };
19
20 class PatternCommunication {
21 public:
22   int num = 0;
23   simgrid::kernel::activity::CommImpl* comm_addr;
24   PatternCommunicationType type = PatternCommunicationType::send;
25   unsigned long src_proc        = 0;
26   unsigned long dst_proc        = 0;
27   const char* src_host          = nullptr;
28   const char* dst_host          = nullptr;
29   std::string rdv;
30   std::vector<char> data;
31   int tag   = 0;
32   int index = 0;
33
34   PatternCommunication() { std::memset(&comm_addr, 0, sizeof(comm_addr)); }
35
36   PatternCommunication dup() const
37   {
38     simgrid::mc::PatternCommunication res;
39     // num?
40     res.comm_addr = this->comm_addr;
41     res.type      = this->type;
42     // src_proc?
43     // dst_proc?
44     res.dst_proc = this->dst_proc;
45     res.dst_host = this->dst_host;
46     res.rdv      = this->rdv;
47     res.data     = this->data;
48     // tag?
49     res.index = this->index;
50     return res;
51   }
52 };
53
54 /* On every state, each actor has an entry of the following type.
55  * This represents both the actor and its transition because
56  *   an actor cannot have more than one enabled transition at a given time.
57  */
58 class ActorState {
59   /* Possible exploration status of an actor transition in a state.
60    * Either the checker did not consider the transition, or it was considered and still to do, or considered and done.
61    */
62   enum class InterleavingType {
63     /** This actor transition is not considered by the checker (yet?) */
64     disabled = 0,
65     /** The checker algorithm decided that this actor transitions should be done at some point */
66     todo,
67     /** The checker algorithm decided that this should be done, but it was done in the meanwhile */
68     done,
69   };
70
71   /** Exploration control information */
72   InterleavingType state = InterleavingType::disabled;
73
74 public:
75   /** Number of times that the process was considered to be executed */
76   // TODO, make this private
77   unsigned int times_considered = 0;
78
79   bool is_disabled() const { return this->state == InterleavingType::disabled; }
80   bool is_done() const { return this->state == InterleavingType::done; }
81   bool is_todo() const { return this->state == InterleavingType::todo; }
82   /** Mark that we should try executing this process at some point in the future of the checker algorithm */
83   void consider()
84   {
85     this->state            = InterleavingType::todo;
86     this->times_considered = 0;
87   }
88   void set_done() { this->state = InterleavingType::done; }
89 };
90
91 } // namespace mc
92 } // namespace simgrid
93
94 #endif