Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
more uniformity in kernel
[simgrid.git] / src / kernel / activity / SynchroRaw.cpp
1 /* Copyright (c) 2007-2019. 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_data(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 void RawImpl::post()
52 {
53   if (surf_action_->get_state() == resource::Action::State::FAILED) {
54     state_ = SIMIX_FAILED;
55   } else if (surf_action_->get_state() == resource::Action::State::FINISHED) {
56     state_ = SIMIX_SRC_TIMEOUT;
57   }
58   finish();
59 }
60
61 void RawImpl::finish()
62 {
63   smx_simcall_t simcall = simcalls_.front();
64   simcalls_.pop_front();
65
66   switch (state_) {
67     case SIMIX_DONE:
68       /* do nothing, synchro done */
69       XBT_DEBUG("RawImpl::finish(): execution successful");
70       break;
71
72     case SIMIX_FAILED:
73       XBT_DEBUG("RawImpl::finish(): host '%s' failed", simcall->issuer->get_host()->get_cname());
74       simcall->issuer->context_->iwannadie = true;
75       simcall->issuer->exception_ =
76           std::make_exception_ptr(simgrid::HostFailureException(XBT_THROW_POINT, "Host failed"));
77       break;
78     case SIMIX_SRC_TIMEOUT:
79       simcall->issuer->exception_ =
80           std::make_exception_ptr(simgrid::TimeoutError(XBT_THROW_POINT, "Synchronization timeout"));
81       break;
82     default:
83       xbt_die("Internal error in RawImpl::finish() unexpected synchro state %d", static_cast<int>(state_));
84   }
85
86   switch (simcall->call) {
87
88     case SIMCALL_MUTEX_LOCK:
89       simgrid::xbt::intrusive_erase(simcall_mutex_lock__get__mutex(simcall)->sleeping_, *simcall->issuer);
90       break;
91
92     case SIMCALL_COND_WAIT:
93       simgrid::xbt::intrusive_erase(simcall_cond_wait__get__cond(simcall)->sleeping_, *simcall->issuer);
94       break;
95
96     case SIMCALL_COND_WAIT_TIMEOUT:
97       simgrid::xbt::intrusive_erase(simcall_cond_wait_timeout__get__cond(simcall)->sleeping_, *simcall->issuer);
98       simcall_cond_wait_timeout__set__result(simcall, 1); // signal a timeout
99       break;
100
101     case SIMCALL_SEM_ACQUIRE:
102       simgrid::xbt::intrusive_erase(simcall_sem_acquire__get__sem(simcall)->sleeping_, *simcall->issuer);
103       break;
104
105     case SIMCALL_SEM_ACQUIRE_TIMEOUT:
106       simgrid::xbt::intrusive_erase(simcall_sem_acquire_timeout__get__sem(simcall)->sleeping_, *simcall->issuer);
107       simcall_sem_acquire_timeout__set__result(simcall, 1); // signal a timeout
108       break;
109
110     default:
111       THROW_IMPOSSIBLE;
112   }
113   simcall->issuer->waiting_synchro = nullptr;
114   SIMIX_simcall_answer(simcall);
115 }
116
117 } // namespace activity
118 } // namespace kernel
119 } // namespace simgrid