Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
84ad991fd5583dd615d5c8069f15499dcfa40869
[simgrid.git] / src / mc / transition / Transition.cpp
1 /* Copyright (c) 2015-2023. 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 #include "src/mc/transition/Transition.hpp"
7 #include "src/kernel/actor/Simcall.hpp"
8 #include "xbt/asserts.h"
9 #include "xbt/string.hpp"
10 #include <simgrid/config.h>
11
12 #if SIMGRID_HAVE_MC
13 #include "src/mc/explo/Exploration.hpp"
14 #include "src/mc/transition/TransitionActorJoin.hpp"
15 #include "src/mc/transition/TransitionAny.hpp"
16 #include "src/mc/transition/TransitionComm.hpp"
17 #include "src/mc/transition/TransitionObjectAccess.hpp"
18 #include "src/mc/transition/TransitionRandom.hpp"
19 #include "src/mc/transition/TransitionSynchro.hpp"
20 #endif
21
22 #include <sstream>
23
24 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_transition, mc, "Logging specific to MC transitions");
25
26 namespace simgrid::mc {
27 unsigned long Transition::executed_transitions_ = 0;
28 unsigned long Transition::replayed_transitions_ = 0;
29
30 // Do not move this to the header, to ensure that we have a vtable for Transition
31 Transition::~Transition() = default;
32
33 std::string Transition::to_string(bool) const
34 {
35   return "";
36 }
37 std::string Transition::dot_string() const
38 {
39   static constexpr std::array<const char*, 13> colors{{"blue", "red", "green3", "goldenrod", "brown", "purple",
40                                                        "magenta", "turquoise4", "gray25", "forestgreen", "hotpink",
41                                                        "lightblue", "tan"}};
42   const char* color = colors[(aid_ - 1) % colors.size()];
43
44   return xbt::string_printf("label = \"[(%ld)] %s\", color = %s, fontcolor = %s", aid_, Transition::to_c_str(type_),
45                             color, color);
46 }
47 void Transition::replay(RemoteApp& app) const
48 {
49   replayed_transitions_++;
50 #if SIMGRID_HAVE_MC
51   app.handle_simcall(aid_, times_considered_, false);
52   app.wait_for_requests();
53 #endif
54 }
55
56 Transition* deserialize_transition(aid_t issuer, int times_considered, std::stringstream& stream)
57 {
58 #if SIMGRID_HAVE_MC
59   short type;
60   xbt_assert(stream >> type);
61
62   switch (auto simcall = static_cast<Transition::Type>(type)) {
63     case Transition::Type::BARRIER_ASYNC_LOCK:
64     case Transition::Type::BARRIER_WAIT:
65       return new BarrierTransition(issuer, times_considered, simcall, stream);
66
67     case Transition::Type::COMM_ASYNC_RECV:
68       return new CommRecvTransition(issuer, times_considered, stream);
69     case Transition::Type::COMM_ASYNC_SEND:
70       return new CommSendTransition(issuer, times_considered, stream);
71     case Transition::Type::COMM_TEST:
72       return new CommTestTransition(issuer, times_considered, stream);
73     case Transition::Type::COMM_WAIT:
74       return new CommWaitTransition(issuer, times_considered, stream);
75
76     case Transition::Type::TESTANY:
77       return new TestAnyTransition(issuer, times_considered, stream);
78     case Transition::Type::WAITANY:
79       return new WaitAnyTransition(issuer, times_considered, stream);
80
81     case Transition::Type::RANDOM:
82       return new RandomTransition(issuer, times_considered, stream);
83
84     case Transition::Type::MUTEX_TRYLOCK:
85     case Transition::Type::MUTEX_ASYNC_LOCK:
86     case Transition::Type::MUTEX_TEST:
87     case Transition::Type::MUTEX_WAIT:
88     case Transition::Type::MUTEX_UNLOCK:
89       return new MutexTransition(issuer, times_considered, simcall, stream);
90
91     case Transition::Type::SEM_ASYNC_LOCK:
92     case Transition::Type::SEM_UNLOCK:
93     case Transition::Type::SEM_WAIT:
94       return new SemaphoreTransition(issuer, times_considered, simcall, stream);
95
96     case Transition::Type::ACTOR_JOIN:
97       return new ActorJoinTransition(issuer, times_considered, stream);
98
99     case Transition::Type::OBJECT_ACCESS:
100       return new ObjectAccessTransition(issuer, times_considered, stream);
101
102     case Transition::Type::UNKNOWN:
103       return new Transition(Transition::Type::UNKNOWN, issuer, times_considered);
104
105     default:
106       break;
107   }
108   xbt_die("Invalid transition type %d received. Did you implement a new observer in the app without implementing the "
109           "corresponding transition in the checker?",
110           type);
111 #else
112   xbt_die("Deserializing transitions is only interesting in MC mode.");
113 #endif
114 }
115
116 } // namespace simgrid::mc