Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
implement CRTP in kernel::activity
[simgrid.git] / src / kernel / activity / SleepImpl.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/SleepImpl.hpp"
7 #include "simgrid/Exception.hpp"
8 #include "simgrid/kernel/resource/Action.hpp"
9 #include "simgrid/s4u/Host.hpp"
10 #include "src/kernel/context/Context.hpp"
11 #include "src/simix/popping_private.hpp"
12 #include "src/simix/smx_private.hpp"
13 #include "src/surf/cpu_interface.hpp"
14 #include "src/surf/surf_interface.hpp"
15
16 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(simix_process);
17 namespace simgrid {
18 namespace kernel {
19 namespace activity {
20
21 SleepImpl& SleepImpl::set_host(s4u::Host* host)
22 {
23   host_ = host;
24   return *this;
25 }
26
27 SleepImpl& SleepImpl::set_duration(double duration)
28 {
29   duration_ = duration;
30   return *this;
31 }
32
33 SleepImpl* SleepImpl::start()
34 {
35   surf_action_ = host_->pimpl_cpu->sleep(duration_);
36   surf_action_->set_data(this);
37   XBT_DEBUG("Create sleep synchronization %p", this);
38   return this;
39 }
40
41 void SleepImpl::post()
42 {
43   while (not simcalls_.empty()) {
44     smx_simcall_t simcall = simcalls_.front();
45     simcalls_.pop_front();
46     e_smx_state_t result;
47     if (host_ && not host_->is_on()) {
48       /* If the host running the synchro failed, notice it. This way, the asking
49        * actor can be killed if it runs on that host itself */
50       result = SIMIX_SRC_HOST_FAILURE;
51       simcall->issuer->throw_exception(
52           std::make_exception_ptr(simgrid::HostFailureException(XBT_THROW_POINT, "Host failed")));
53     }
54
55     switch (surf_action_->get_state()) {
56       case resource::Action::State::FAILED:
57         simcall->issuer->context_->iwannadie = true;
58         result                               = SIMIX_FAILED;
59         break;
60
61       case resource::Action::State::FINISHED:
62         result = SIMIX_DONE;
63         break;
64
65       default:
66         THROW_IMPOSSIBLE;
67     }
68     if (not simcall->issuer->get_host()->is_on()) {
69       simcall->issuer->context_->iwannadie = true;
70     }
71     simcall_process_sleep__set__result(simcall, result);
72     simcall->issuer->waiting_synchro = nullptr;
73     if (simcall->issuer->is_suspended()) {
74       XBT_DEBUG("Wait! This process is suspended and can't wake up now.");
75       simcall->issuer->suspended_ = false;
76       simcall_HANDLER_process_suspend(simcall, simcall->issuer);
77     } else {
78       SIMIX_simcall_answer(simcall);
79     }
80   }
81   SIMIX_process_sleep_destroy(this);
82 }
83 void SleepImpl::finish()
84 {
85   /* FIXME some part of post should move to finish */
86 }
87 } // namespace activity
88 } // namespace kernel
89 } // namespace simgrid