Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add detached isend to maestro to allow tracking in case of fault
[simgrid.git] / src / kernel / actor / SynchroObserver.cpp
1 /* Copyright (c) 2019-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 #include "src/kernel/actor/SynchroObserver.hpp"
7 #include "simgrid/s4u/Host.hpp"
8 #include "src/kernel/activity/BarrierImpl.hpp"
9 #include "src/kernel/activity/MutexImpl.hpp"
10 #include "src/kernel/activity/SemaphoreImpl.hpp"
11 #include "src/kernel/actor/ActorImpl.hpp"
12 #include "src/mc/mc_config.hpp"
13
14 #include <sstream>
15
16 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(obs_mutex, mc_observer, "Logging specific to mutex simcalls observation");
17
18 namespace simgrid::kernel::actor {
19
20 MutexObserver::MutexObserver(ActorImpl* actor, mc::Transition::Type type, activity::MutexImpl* mutex)
21     : SimcallObserver(actor), type_(type), mutex_(mutex)
22 {
23   xbt_assert(mutex_);
24 }
25
26 void MutexObserver::serialize(std::stringstream& stream) const
27 {
28   const auto* owner = get_mutex()->get_owner();
29   stream << (short)type_ << ' ' << get_mutex()->get_id() << ' ' << (owner != nullptr ? owner->get_pid() : -1);
30 }
31
32 bool MutexObserver::is_enabled()
33 {
34   // Only wait can be disabled
35   return type_ != mc::Transition::Type::MUTEX_WAIT || mutex_->get_owner() == get_issuer();
36 }
37
38 SemaphoreObserver::SemaphoreObserver(ActorImpl* actor, mc::Transition::Type type, activity::SemaphoreImpl* sem)
39     : SimcallObserver(actor), type_(type), sem_(sem)
40 {
41   xbt_assert(sem_);
42 }
43
44 void SemaphoreObserver::serialize(std::stringstream& stream) const
45 {
46   stream << (short)type_ << ' ' << get_sem()->get_id() << ' ' << false /* Granted is ignored for LOCK/UNLOCK */;
47 }
48
49 SemaphoreAcquisitionObserver::SemaphoreAcquisitionObserver(ActorImpl* actor, mc::Transition::Type type,
50                                                            activity::SemAcquisitionImpl* acqui, double timeout)
51     : ResultingSimcall(actor, false), type_(type), acquisition_(acqui), timeout_(timeout)
52 {
53 }
54 bool SemaphoreAcquisitionObserver::is_enabled()
55 {
56   return acquisition_->granted_;
57 }
58 void SemaphoreAcquisitionObserver::serialize(std::stringstream& stream) const
59 {
60   stream << (short)type_ << ' ' << acquisition_->semaphore_->get_id() << ' ' << acquisition_->granted_;
61 }
62
63 BarrierObserver::BarrierObserver(ActorImpl* actor, mc::Transition::Type type, activity::BarrierImpl* bar)
64     : ResultingSimcall(actor, false), type_(type), barrier_(bar), timeout_(-1)
65 {
66   xbt_assert(type_ == mc::Transition::Type::BARRIER_LOCK);
67 }
68 BarrierObserver::BarrierObserver(ActorImpl* actor, mc::Transition::Type type, activity::BarrierAcquisitionImpl* acqui,
69                                  double timeout)
70     : ResultingSimcall(actor, false), type_(type), acquisition_(acqui), timeout_(timeout)
71 {
72   xbt_assert(type_ == mc::Transition::Type::BARRIER_WAIT);
73 }
74 void BarrierObserver::serialize(std::stringstream& stream) const
75 {
76   xbt_assert(barrier_ != nullptr || (acquisition_ != nullptr && acquisition_->barrier_ != nullptr));
77   stream << (short)type_ << ' ' << (barrier_ != nullptr ? barrier_->get_id() : acquisition_->barrier_->get_id());
78 }
79 bool BarrierObserver::is_enabled()
80 {
81   return type_ == mc::Transition::Type::BARRIER_LOCK ||
82          (type_ == mc::Transition::Type::BARRIER_WAIT && acquisition_ != nullptr && acquisition_->granted_);
83 }
84
85 } // namespace simgrid::kernel::actor