Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
72ea1794c183dc35828d6ce64bd63e7966fe9eb5
[simgrid.git] / src / mc / udpor_global.hpp
1 /* Copyright (c) 2007-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_UDPOR_GLOBAL_HPP
7 #define SIMGRID_MC_UDPOR_GLOBAL_HPP
8
9 #include <iostream>
10 #include <queue>
11 #include <string_view>
12
13 namespace simgrid {
14 namespace mc {
15
16 class UnfoldingEvent;
17 using EventSet = std::deque<UnfoldingEvent*>;
18
19 class EvtSetTools {
20 public:
21   static bool contains(const EventSet& events, const UnfoldingEvent* e);
22   static UnfoldingEvent* find(const EventSet& events, const UnfoldingEvent* e);
23   static void subtract(EventSet& events, EventSet const& otherSet);
24   static bool depends(const EventSet& events, const EventSet& otherSet);
25   static bool isEmptyIntersection(EventSet evtS1, EventSet evtS2);
26   static EventSet makeUnion(const EventSet& s1, const EventSet& s2);
27   static void pushBack(EventSet& events, UnfoldingEvent* e);
28   static void remove(EventSet& events, UnfoldingEvent* e);
29   static EventSet minus(EventSet events, UnfoldingEvent* e);
30   static EventSet plus(EventSet events, UnfoldingEvent* e);
31 };
32
33 struct s_evset_in_t {
34   EventSet causuality_events;
35   EventSet cause;
36   EventSet ancestorSet;
37 };
38
39 class Configuration {
40 public:
41   EventSet events_;
42   EventSet maxEvent;         // Events recently added to events_
43   EventSet actorMaxEvent;    // maximal events of the actors in current configuration
44   UnfoldingEvent* lastEvent; // The last added event
45
46   Configuration plus_config(UnfoldingEvent*) const;
47   void createEvts(Configuration C, EventSet& result, const std::string& trans_tag, s_evset_in_t ev_sets, bool chk,
48                   UnfoldingEvent* immPreEvt);
49   void updateMaxEvent(UnfoldingEvent*);         // update maximal events of the configuration and actors
50   UnfoldingEvent* findActorMaxEvt(int actorId); // find maximal event of a Actor whose id = actorId
51
52   UnfoldingEvent* findTestedComm(const UnfoldingEvent* testEvt); // find comm tested by action testTrans
53
54   Configuration()                     = default;
55   Configuration(const Configuration&) = default;
56   Configuration& operator=(Configuration const&) = default;
57   Configuration(Configuration&&)                 = default;
58 };
59
60 class UnfoldingEvent {
61 public:
62   UnfoldingEvent(unsigned int nb_events, std::string const& trans_tag, EventSet const& causes, int sid = -1);
63   UnfoldingEvent(const UnfoldingEvent&) = default;
64   UnfoldingEvent& operator=(UnfoldingEvent const&) = default;
65   UnfoldingEvent(UnfoldingEvent&&)                 = default;
66
67   EventSet getHistory() const;
68
69   bool isConflict(UnfoldingEvent* event, UnfoldingEvent* otherEvent) const;
70   bool concernSameComm(const UnfoldingEvent* event, const UnfoldingEvent* otherEvent) const;
71
72   // check otherEvent is in my history ?
73   bool inHistory(UnfoldingEvent* otherEvent) const;
74
75   bool isImmediateConflict1(UnfoldingEvent* evt, UnfoldingEvent* otherEvt) const;
76
77   bool conflictWithConfig(UnfoldingEvent* event, Configuration const& config) const;
78   /* TODO: implement */
79   bool operator==(const UnfoldingEvent&) const { return false; };
80   void print() const;
81
82   inline int get_state_id() const { return state_id; }
83   inline void set_state_id(int sid) { state_id = sid; }
84
85   inline std::string get_transition_tag() const { return transition_tag; }
86   inline void set_transition_tag(std::string_view tr_tag) { transition_tag = tr_tag; }
87
88 private:
89   EventSet causes; // used to store directed ancestors of event e
90   int id = -1;
91   int state_id{-1};
92   std::string transition_tag{""}; // The tag of the last transition that lead to creating the event
93   bool transition_is_IReceive(const UnfoldingEvent* testedEvt, const UnfoldingEvent* SdRcEvt) const;
94   bool transition_is_ISend(const UnfoldingEvent* testedEvt, const UnfoldingEvent* SdRcEvt) const;
95   bool check_tr_concern_same_comm(bool& chk1, bool& chk2, UnfoldingEvent* evt1, UnfoldingEvent* evt2) const;
96 };
97 } // namespace mc
98 } // namespace simgrid
99 #endif