Logo AND Algorithmique Numérique Distribuée

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