Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Various sonar cleanups
[simgrid.git] / src / mc / transition / TransitionActor.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/TransitionActor.hpp"
7 #include "simgrid/config.h"
8 #include "xbt/asserts.h"
9 #include "xbt/string.hpp"
10
11 #include <sstream>
12
13 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_trans_actorlifecycle, mc_transition,
14                                 "Logging specific to MC transitions about actors' lifecycle: joining, ending");
15
16 namespace simgrid::mc {
17
18 ActorJoinTransition::ActorJoinTransition(aid_t issuer, int times_considered, std::stringstream& stream)
19     : Transition(Type::ACTOR_JOIN, issuer, times_considered)
20 {
21   xbt_assert(stream >> target_ >> timeout_);
22   XBT_DEBUG("ActorJoinTransition target:%ld, %s ", target_, (timeout_ ? "timeout" : "no-timeout"));
23 }
24 std::string ActorJoinTransition::to_string(bool verbose) const
25 {
26   return xbt::string_printf("ActorJoin(target %ld, %s)", target_, (timeout_ ? "timeout" : "no timeout"));
27 }
28 bool ActorJoinTransition::depends(const Transition* other) const
29 {
30   // Actions executed by the same actor are always dependent
31   if (other->aid_ == aid_)
32     return true;
33
34   // Joining is dependent with any transition whose
35   // actor is that of the `other` action. , Join i
36   if (other->aid_ == target_) {
37     return true;
38   }
39
40   // Actions executed by the same actor are always dependent
41   if (other->aid_ == aid_)
42     return true;
43
44   // Otherwise, joining is indep with any other transitions:
45   // - It is only enabled once the target ends, and after this point it's enabled no matter what
46   // - Other joins don't affect it, and it does not impact on the enabledness of any other transition
47   return false;
48 }
49
50 bool ActorJoinTransition::reversible_race(const Transition* other) const
51 {
52   xbt_assert(type_ == Type::ACTOR_JOIN, "Unexpected transition type %s", to_c_str(type_));
53
54   // ActorJoin races with another event iff its target `T` is the same as  the actor executing the other transition.
55   // Clearly, then, we could not join on that actor `T` and then run a transition by `T`, so no race is reversible
56   return false;
57 }
58
59 ActorSleepTransition::ActorSleepTransition(aid_t issuer, int times_considered, std::stringstream&)
60     : Transition(Type::ACTOR_SLEEP, issuer, times_considered)
61 {
62   XBT_DEBUG("ActorSleepTransition()");
63 }
64 std::string ActorSleepTransition::to_string(bool verbose) const
65 {
66   return xbt::string_printf("ActorSleep()");
67 }
68 bool ActorSleepTransition::depends(const Transition* other) const
69 {
70   // Actions executed by the same actor are always dependent
71   if (other->aid_ == aid_)
72     return true;
73
74   // Sleeping is indep with any other transitions: always enabled, not impacted by any transition
75   return false;
76 }
77
78 bool ActorSleepTransition::reversible_race(const Transition* other) const
79 {
80   xbt_assert(type_ == Type::ACTOR_SLEEP, "Unexpected transition type %s", to_c_str(type_));
81
82   return true; // Always enabled
83 }
84
85 } // namespace simgrid::mc