Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Rename SynchroRawImpl to SynchroImpl
[simgrid.git] / src / kernel / activity / Synchro.cpp
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 #include <simgrid/Exception.hpp>
7 #include <simgrid/s4u/Host.hpp>
8
9 #include "src/kernel/activity/Synchro.hpp"
10 #include "src/kernel/actor/ActorImpl.hpp"
11 #include "src/kernel/context/Context.hpp"
12 #include "src/kernel/resource/CpuImpl.hpp"
13 #include "src/simix/popping_private.hpp"
14
15 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(ker_synchro, kernel,
16                                 "Kernel synchronization activity (lock/acquire on a mutex, semaphore or condition)");
17
18 namespace simgrid {
19 namespace kernel {
20 namespace activity {
21
22 SynchroImpl& SynchroImpl::set_host(s4u::Host* host)
23 {
24   host_ = host;
25   return *this;
26 }
27 SynchroImpl& SynchroImpl::set_timeout(double timeout)
28 {
29   timeout_ = timeout;
30   return *this;
31 }
32
33 SynchroImpl* SynchroImpl::start()
34 {
35   surf_action_ = host_->get_cpu()->sleep(timeout_);
36   surf_action_->set_activity(this);
37   return this;
38 }
39
40 void SynchroImpl::suspend()
41 {
42   /* The suspension of raw synchros is delayed to when the actor is rescheduled. */
43 }
44
45 void SynchroImpl::resume()
46 {
47   /* I cannot resume raw synchros directly. This is delayed to when the actor is rescheduled at
48    * the end of the synchro. */
49 }
50
51 void SynchroImpl::cancel()
52 {
53   /* I cannot cancel raw synchros directly. */
54 }
55
56 void SynchroImpl::post()
57 {
58   if (surf_action_->get_state() == resource::Action::State::FAILED)
59     set_state(State::FAILED);
60   else if (surf_action_->get_state() == resource::Action::State::FINISHED)
61     set_state(State::SRC_TIMEOUT);
62
63   clean_action();
64   /* Answer all simcalls associated with the synchro */
65   finish();
66 }
67 void SynchroImpl::set_exception(actor::ActorImpl* issuer)
68 {
69   if (get_state() == State::FAILED) {
70     issuer->context_->set_wannadie();
71     issuer->exception_ = std::make_exception_ptr(HostFailureException(XBT_THROW_POINT, "Host failed"));
72   } else {
73     xbt_assert(get_state() == State::SRC_TIMEOUT, "Internal error in SynchroImpl::finish() unexpected synchro state %s",
74                get_state_str());
75   }
76 }
77
78 void SynchroImpl::finish()
79 {
80   XBT_DEBUG("SynchroImpl::finish() in state %s", get_state_str());
81   xbt_assert(simcalls_.size() == 1, "Unexpected number of simcalls waiting: %zu", simcalls_.size());
82   smx_simcall_t simcall = simcalls_.front();
83   simcalls_.pop_front();
84
85   set_exception(simcall->issuer_);
86
87   finish_callback_();
88   simcall->issuer_->waiting_synchro_ = nullptr;
89   simcall->issuer_->simcall_answer();
90 }
91
92 } // namespace activity
93 } // namespace kernel
94 } // namespace simgrid