Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
obey our coding standards and cosmetics
[simgrid.git] / src / simix / smx_host.cpp
1 /* Copyright (c) 2007-2018. 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 "mc/mc.h"
7 #include "smx_private.hpp"
8 #include "src/kernel/activity/CommImpl.hpp"
9 #include "src/kernel/activity/ExecImpl.hpp"
10 #include "src/mc/mc_replay.hpp"
11 #include "src/plugins/vm/VirtualMachineImpl.hpp"
12 #include "src/simix/smx_host_private.hpp"
13 #include "xbt/ex.hpp"
14
15 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_host, simix, "SIMIX hosts");
16
17 /* needs to be public and without simcall for exceptions and logging events */
18 const char* sg_host_self_get_name()
19 {
20   sg_host_t host = sg_host_self();
21   if (host == nullptr || SIMIX_process_self() == simix_global->maestro_process)
22     return "";
23
24   return host->get_cname();
25 }
26
27 /**
28  * \brief Add a process to the list of the processes that the host will restart when it comes back
29  * This function add a process to the list of the processes that will be restarted when the host comes
30  * back. It is expected that this function is called when the host is down.
31  * The processes will only be restarted once, meaning that you will have to register the process
32  * again to restart the process again.
33  */
34 void SIMIX_host_add_auto_restart_process(sg_host_t host, simgrid::kernel::actor::ActorImpl* actor)
35 {
36   simgrid::kernel::actor::ProcessArg* arg = new simgrid::kernel::actor::ProcessArg(host, actor);
37
38   if (host->is_off() && watched_hosts.find(host->get_cname()) == watched_hosts.end()) {
39     watched_hosts.insert(host->get_cname());
40     XBT_DEBUG("Push host %s to watched_hosts because state == SURF_RESOURCE_OFF", host->get_cname());
41   }
42   XBT_DEBUG("Adding Process %s to the auto-restart list of Host %s", arg->name.c_str(), arg->host->get_cname());
43   host->pimpl_->auto_restart_processes_.push_back(arg);
44 }
45
46 /** @brief Restart the list of processes that have been registered to the host */
47 void SIMIX_host_autorestart(sg_host_t host)
48 {
49   std::vector<simgrid::kernel::actor::ProcessArg*> process_list = host->pimpl_->auto_restart_processes_;
50
51   for (auto const& arg : process_list) {
52     XBT_DEBUG("Restarting Process %s@%s right now", arg->name.c_str(), arg->host->get_cname());
53     smx_actor_t actor = simix_global->create_process_function(arg->name.c_str(), arg->code, nullptr, arg->host,
54                                                               arg->properties.get(), nullptr);
55     if (arg->kill_time >= 0)
56       simcall_process_set_kill_time(actor, arg->kill_time);
57     if (arg->auto_restart)
58       actor->auto_restart_ = arg->auto_restart;
59   }
60   process_list.clear();
61 }
62
63 boost::intrusive_ptr<simgrid::kernel::activity::ExecImpl>
64 SIMIX_execution_start(const char* name, double flops_amount, double priority, double bound, sg_host_t host)
65 {
66   /* set surf's action */
67   simgrid::kernel::resource::Action* surf_action = nullptr;
68   if (not MC_is_active() && not MC_record_replay_is_active()) {
69     surf_action = host->pimpl_cpu->execution_start(flops_amount);
70     surf_action->set_priority(priority);
71     if (bound > 0)
72       static_cast<simgrid::surf::CpuAction*>(surf_action)->set_bound(bound);
73   }
74
75   simgrid::kernel::activity::ExecImplPtr exec = simgrid::kernel::activity::ExecImplPtr(
76       new simgrid::kernel::activity::ExecImpl(name, surf_action, /*timeout_detector*/ nullptr, host));
77
78   XBT_DEBUG("Create execute synchro %p: %s", exec.get(), exec->name_.c_str());
79   simgrid::kernel::activity::ExecImpl::onCreation(exec);
80
81   return exec;
82 }
83
84 boost::intrusive_ptr<simgrid::kernel::activity::ExecImpl>
85 SIMIX_execution_parallel_start(const char* name, int host_nb, sg_host_t* host_list, double* flops_amount,
86                                double* bytes_amount, double rate, double timeout)
87 {
88
89   /* Check that we are not mixing VMs and PMs in the parallel task */
90   bool is_a_vm = (nullptr != dynamic_cast<simgrid::s4u::VirtualMachine*>(host_list[0]));
91   for (int i = 1; i < host_nb; i++) {
92     bool tmp_is_a_vm = (nullptr != dynamic_cast<simgrid::s4u::VirtualMachine*>(host_list[i]));
93     xbt_assert(is_a_vm == tmp_is_a_vm, "parallel_execute: mixing VMs and PMs is not supported (yet).");
94   }
95
96   /* set surf's synchro */
97   simgrid::kernel::resource::Action* surf_action      = nullptr;
98   simgrid::kernel::resource::Action* timeout_detector = nullptr;
99   if (not MC_is_active() && not MC_record_replay_is_active()) {
100     sg_host_t* host_list_cpy = new sg_host_t[host_nb];
101     std::copy_n(host_list, host_nb, host_list_cpy);
102     surf_action = surf_host_model->execute_parallel(host_nb, host_list_cpy, flops_amount, bytes_amount, rate);
103     if (timeout > 0) {
104       timeout_detector = host_list[0]->pimpl_cpu->sleep(timeout);
105     }
106   }
107
108   simgrid::kernel::activity::ExecImplPtr exec = simgrid::kernel::activity::ExecImplPtr(
109       new simgrid::kernel::activity::ExecImpl(name, surf_action, timeout_detector, nullptr));
110
111   XBT_DEBUG("Create parallel execute synchro %p", exec.get());
112
113   return exec;
114 }
115
116 void simcall_HANDLER_execution_wait(smx_simcall_t simcall, smx_activity_t synchro)
117 {
118   XBT_DEBUG("Wait for execution of synchro %p, state %d", synchro.get(), (int)synchro->state_);
119
120   /* Associate this simcall to the synchro */
121   synchro->simcalls_.push_back(simcall);
122   simcall->issuer->waiting_synchro = synchro;
123
124   /* set surf's synchro */
125   if (MC_is_active() || MC_record_replay_is_active()) {
126     synchro->state_ = SIMIX_DONE;
127     SIMIX_execution_finish(synchro);
128     return;
129   }
130
131   /* If the synchro is already finished then perform the error handling */
132   if (synchro->state_ != SIMIX_RUNNING)
133     SIMIX_execution_finish(synchro);
134 }
135
136 void simcall_HANDLER_execution_test(smx_simcall_t simcall, smx_activity_t synchro)
137 {
138   int res = (synchro->state_ != SIMIX_WAITING && synchro->state_ != SIMIX_RUNNING);
139   if (res) {
140     synchro->simcalls_.push_back(simcall);
141     SIMIX_execution_finish(synchro);
142   } else {
143     SIMIX_simcall_answer(simcall);
144   }
145   simcall_execution_test__set__result(simcall, res);
146 }
147
148 void SIMIX_execution_finish(smx_activity_t synchro)
149 {
150   simgrid::kernel::activity::ExecImplPtr exec =
151       boost::static_pointer_cast<simgrid::kernel::activity::ExecImpl>(synchro);
152
153   while (not synchro->simcalls_.empty()) {
154     smx_simcall_t simcall = synchro->simcalls_.front();
155     synchro->simcalls_.pop_front();
156     switch (exec->state_) {
157
158       case SIMIX_DONE:
159         /* do nothing, synchro done */
160         XBT_DEBUG("SIMIX_execution_finished: execution successful");
161         break;
162
163       case SIMIX_FAILED:
164         XBT_DEBUG("SIMIX_execution_finished: host '%s' failed", simcall->issuer->host_->get_cname());
165         simcall->issuer->context_->iwannadie = 1;
166         SMX_EXCEPTION(simcall->issuer, host_error, 0, "Host failed");
167         break;
168
169       case SIMIX_CANCELED:
170         XBT_DEBUG("SIMIX_execution_finished: execution canceled");
171         SMX_EXCEPTION(simcall->issuer, cancel_error, 0, "Canceled");
172         break;
173
174       case SIMIX_TIMEOUT:
175         XBT_DEBUG("SIMIX_execution_finished: execution timeouted");
176         SMX_EXCEPTION(simcall->issuer, timeout_error, 0, "Timeouted");
177         break;
178
179       default:
180         xbt_die("Internal error in SIMIX_execution_finish: unexpected synchro state %d", (int)exec->state_);
181     }
182     /* Fail the process if the host is down */
183     if (simcall->issuer->host_->is_off())
184       simcall->issuer->context_->iwannadie = 1;
185
186     simcall->issuer->waiting_synchro = nullptr;
187     simcall_execution_wait__set__result(simcall, exec->state_);
188     SIMIX_simcall_answer(simcall);
189   }
190 }
191
192 void SIMIX_set_category(smx_activity_t synchro, const char *category)
193 {
194   if (synchro->state_ != SIMIX_RUNNING)
195     return;
196
197   simgrid::kernel::activity::ExecImplPtr exec =
198       boost::dynamic_pointer_cast<simgrid::kernel::activity::ExecImpl>(synchro);
199   if (exec != nullptr) {
200     exec->surf_action_->set_category(category);
201     return;
202   }
203
204   simgrid::kernel::activity::CommImplPtr comm =
205       boost::dynamic_pointer_cast<simgrid::kernel::activity::CommImpl>(synchro);
206   if (comm != nullptr) {
207     comm->surfAction_->set_category(category);
208   }
209 }