Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
actors on failing hosts should die silently and with no delay
[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::start(s4u::Host* host, double timeout)
24 {
25   surf_action_ = host->pimpl_cpu->sleep(timeout);
26   surf_action_->set_data(this);
27   return this;
28 }
29
30 void RawImpl::suspend()
31 {
32   /* The suspension of raw synchros is delayed to when the process is rescheduled. */
33 }
34
35 void RawImpl::resume()
36 {
37   /* I cannot resume raw synchros directly. This is delayed to when the process is rescheduled at
38    * the end of the synchro. */
39 }
40 void RawImpl::post()
41 {
42   if (surf_action_->get_state() == resource::Action::State::FAILED) {
43     state_ = SIMIX_FAILED;
44   } else if (surf_action_->get_state() == resource::Action::State::FINISHED) {
45     state_ = SIMIX_SRC_TIMEOUT;
46   }
47   finish();
48 }
49
50 void RawImpl::finish()
51 {
52   smx_simcall_t simcall = simcalls_.front();
53   simcalls_.pop_front();
54
55   switch (state_) {
56     case SIMIX_DONE:
57       /* do nothing, synchro done */
58       XBT_DEBUG("RawImpl::finish(): execution successful");
59       break;
60
61     case SIMIX_FAILED:
62       XBT_DEBUG("RawImpl::finish(): host '%s' failed", simcall->issuer->get_host()->get_cname());
63       simcall->issuer->context_->iwannadie = true;
64       simcall->issuer->exception_ =
65           std::make_exception_ptr(simgrid::HostFailureException(XBT_THROW_POINT, "Host failed"));
66       break;
67     case SIMIX_SRC_TIMEOUT:
68       simcall->issuer->exception_ =
69           std::make_exception_ptr(simgrid::TimeoutError(XBT_THROW_POINT, "Synchronization timeout"));
70       break;
71     default:
72       xbt_die("Internal error in RawImpl::finish() unexpected synchro state %d", static_cast<int>(state_));
73   }
74
75   switch (simcall->call) {
76
77     case SIMCALL_MUTEX_LOCK:
78       simgrid::xbt::intrusive_erase(simcall_mutex_lock__get__mutex(simcall)->sleeping_, *simcall->issuer);
79       break;
80
81     case SIMCALL_COND_WAIT:
82       simgrid::xbt::intrusive_erase(simcall_cond_wait__get__cond(simcall)->sleeping_, *simcall->issuer);
83       break;
84
85     case SIMCALL_COND_WAIT_TIMEOUT:
86       simgrid::xbt::intrusive_erase(simcall_cond_wait_timeout__get__cond(simcall)->sleeping_, *simcall->issuer);
87       simcall_cond_wait_timeout__set__result(simcall, 1); // signal a timeout
88       break;
89
90     case SIMCALL_SEM_ACQUIRE:
91       simgrid::xbt::intrusive_erase(simcall_sem_acquire__get__sem(simcall)->sleeping_, *simcall->issuer);
92       break;
93
94     case SIMCALL_SEM_ACQUIRE_TIMEOUT:
95       simgrid::xbt::intrusive_erase(simcall_sem_acquire_timeout__get__sem(simcall)->sleeping_, *simcall->issuer);
96       simcall_sem_acquire_timeout__set__result(simcall, 1); // signal a timeout
97       break;
98
99     default:
100       THROW_IMPOSSIBLE;
101   }
102   simcall->issuer->waiting_synchro = nullptr;
103   SIMIX_simcall_answer(simcall);
104 }
105
106 } // namespace activity
107 } // namespace kernel
108 } // namespace simgrid