Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
rename some fields (change toto to toto_)
[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/mc/mc_replay.hpp"
9 #include "src/plugins/vm/VirtualMachineImpl.hpp"
10 #include "src/simix/smx_host_private.hpp"
11 #include "src/surf/surf_interface.hpp"
12 #include "xbt/ex.hpp"
13
14 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_host, simix, "SIMIX hosts");
15
16 namespace simgrid {
17   namespace simix {
18     simgrid::xbt::Extension<simgrid::s4u::Host, Host> Host::EXTENSION_ID;
19
20     Host::Host()
21     {
22       if (not Host::EXTENSION_ID.valid())
23         Host::EXTENSION_ID = s4u::Host::extension_create<simix::Host>();
24     }
25
26     Host::~Host()
27     {
28       /* All processes should be gone when the host is turned off (by the end of the simulation). */
29       if (not process_list.empty()) {
30         std::string msg     = std::string("Shutting down host, but it's not empty:");
31         for (auto const& process : process_list)
32           msg += "\n\t" + std::string(process.get_name());
33
34         SIMIX_display_process_status();
35         THROWF(arg_error, 0, "%s", msg.c_str());
36       }
37       for (auto const& arg : auto_restart_processes)
38         delete arg;
39       auto_restart_processes.clear();
40       for (auto const& arg : boot_processes)
41         delete arg;
42       boot_processes.clear();
43     }
44
45     /** Re-starts all the actors that are marked as restartable.
46      *
47      * Weird things will happen if you turn on an host that is already on. S4U is fool-proof, not this.
48      */
49     void Host::turnOn()
50     {
51       for (auto const& arg : boot_processes) {
52         XBT_DEBUG("Booting 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     }
61
62 }} // namespaces
63
64 /** @brief Stop the host if it is on */
65 void SIMIX_host_off(sg_host_t h, smx_actor_t issuer)
66 {
67   simgrid::simix::Host* host = h->extension<simgrid::simix::Host>();
68
69   xbt_assert((host != nullptr), "Invalid parameters");
70
71   if (h->isOn()) {
72     h->pimpl_cpu->turn_off();
73
74     /* Clean Simulator data */
75     if (not host->process_list.empty()) {
76       for (auto& process : host->process_list) {
77         SIMIX_process_kill(&process, issuer);
78         XBT_DEBUG("Killing %s@%s on behalf of %s which turned off that host.", process.get_cname(),
79                   process.host->get_cname(), issuer->get_cname());
80       }
81     }
82   } else {
83     XBT_INFO("Host %s is already off", h->get_cname());
84   }
85 }
86
87 /* needs to be public and without simcall for exceptions and logging events */
88 const char* sg_host_self_get_name()
89 {
90   sg_host_t host = sg_host_self();
91   if (host == nullptr || SIMIX_process_self() == simix_global->maestro_process)
92     return "";
93
94   return host->get_cname();
95 }
96
97 /**
98  * \brief Add a process to the list of the processes that the host will restart when it comes back
99  * This function add a process to the list of the processes that will be restarted when the host comes
100  * back. It is expected that this function is called when the host is down.
101  * The processes will only be restarted once, meaning that you will have to register the process
102  * again to restart the process again.
103  */
104 void SIMIX_host_add_auto_restart_process(sg_host_t host, const char* name, std::function<void()> code, void* data,
105                                          double kill_time, std::map<std::string, std::string>* properties,
106                                          int auto_restart)
107 {
108   simgrid::kernel::actor::ProcessArg* arg =
109       new simgrid::kernel::actor::ProcessArg(name, code, data, host, kill_time, nullptr, auto_restart);
110   arg->properties.reset(properties, [](decltype(properties)) {});
111
112   if (host->isOff() && watched_hosts.find(host->get_cname()) == watched_hosts.end()) {
113     watched_hosts.insert(host->get_cname());
114     XBT_DEBUG("Push host %s to watched_hosts because state == SURF_RESOURCE_OFF", host->get_cname());
115   }
116   XBT_DEBUG("Adding Process %s to the auto-restart list of Host %s", arg->name.c_str(), arg->host->get_cname());
117   host->extension<simgrid::simix::Host>()->auto_restart_processes.push_back(arg);
118 }
119
120 /** @brief Restart the list of processes that have been registered to the host */
121 void SIMIX_host_autorestart(sg_host_t host)
122 {
123   std::vector<simgrid::kernel::actor::ProcessArg*> process_list =
124       host->extension<simgrid::simix::Host>()->auto_restart_processes;
125
126   for (auto const& arg : process_list) {
127     XBT_DEBUG("Restarting Process %s@%s right now", arg->name.c_str(), arg->host->get_cname());
128     smx_actor_t actor = simix_global->create_process_function(arg->name.c_str(), arg->code, nullptr, arg->host,
129                                                               arg->properties.get(), nullptr);
130     if (arg->kill_time >= 0)
131       simcall_process_set_kill_time(actor, arg->kill_time);
132     if (arg->auto_restart)
133       actor->auto_restart = arg->auto_restart;
134   }
135   process_list.clear();
136 }
137
138 boost::intrusive_ptr<simgrid::kernel::activity::ExecImpl>
139 SIMIX_execution_start(const char* name, double flops_amount, double priority, double bound, sg_host_t host)
140 {
141   /* set surf's action */
142   simgrid::kernel::resource::Action* surf_action = nullptr;
143   if (not MC_is_active() && not MC_record_replay_is_active()) {
144     surf_action = host->pimpl_cpu->execution_start(flops_amount);
145     surf_action->set_priority(priority);
146     if (bound > 0)
147       static_cast<simgrid::surf::CpuAction*>(surf_action)->set_bound(bound);
148   }
149
150   simgrid::kernel::activity::ExecImplPtr exec = simgrid::kernel::activity::ExecImplPtr(
151       new simgrid::kernel::activity::ExecImpl(name, surf_action, /*timeout_detector*/ nullptr, host));
152
153   XBT_DEBUG("Create execute synchro %p: %s", exec.get(), exec->name_.c_str());
154   simgrid::kernel::activity::ExecImpl::onCreation(exec);
155
156   return exec;
157 }
158
159 boost::intrusive_ptr<simgrid::kernel::activity::ExecImpl>
160 SIMIX_execution_parallel_start(const char* name, int host_nb, sg_host_t* host_list, double* flops_amount,
161                                double* bytes_amount, double rate, double timeout)
162 {
163
164   /* Check that we are not mixing VMs and PMs in the parallel task */
165   bool is_a_vm = (nullptr != dynamic_cast<simgrid::s4u::VirtualMachine*>(host_list[0]));
166   for (int i = 1; i < host_nb; i++) {
167     bool tmp_is_a_vm = (nullptr != dynamic_cast<simgrid::s4u::VirtualMachine*>(host_list[i]));
168     xbt_assert(is_a_vm == tmp_is_a_vm, "parallel_execute: mixing VMs and PMs is not supported (yet).");
169   }
170
171   /* set surf's synchro */
172   simgrid::kernel::resource::Action* surf_action      = nullptr;
173   simgrid::kernel::resource::Action* timeout_detector = nullptr;
174   if (not MC_is_active() && not MC_record_replay_is_active()) {
175     sg_host_t* host_list_cpy = new sg_host_t[host_nb];
176     std::copy_n(host_list, host_nb, host_list_cpy);
177     surf_action = surf_host_model->execute_parallel(host_nb, host_list_cpy, flops_amount, bytes_amount, rate);
178     if (timeout > 0) {
179       timeout_detector = host_list[0]->pimpl_cpu->sleep(timeout);
180     }
181   }
182
183   simgrid::kernel::activity::ExecImplPtr exec = simgrid::kernel::activity::ExecImplPtr(
184       new simgrid::kernel::activity::ExecImpl(name, surf_action, timeout_detector, nullptr));
185
186   XBT_DEBUG("Create parallel execute synchro %p", exec.get());
187
188   return exec;
189 }
190
191 void simcall_HANDLER_execution_wait(smx_simcall_t simcall, smx_activity_t synchro)
192 {
193   XBT_DEBUG("Wait for execution of synchro %p, state %d", synchro.get(), (int)synchro->state_);
194
195   /* Associate this simcall to the synchro */
196   synchro->simcalls_.push_back(simcall);
197   simcall->issuer->waiting_synchro = synchro;
198
199   /* set surf's synchro */
200   if (MC_is_active() || MC_record_replay_is_active()) {
201     synchro->state_ = SIMIX_DONE;
202     SIMIX_execution_finish(synchro);
203     return;
204   }
205
206   /* If the synchro is already finished then perform the error handling */
207   if (synchro->state_ != SIMIX_RUNNING)
208     SIMIX_execution_finish(synchro);
209 }
210
211 void simcall_HANDLER_execution_test(smx_simcall_t simcall, smx_activity_t synchro)
212 {
213   simcall_execution_test__set__result(simcall, (synchro->state_ != SIMIX_WAITING && synchro->state_ != SIMIX_RUNNING));
214   if (simcall_execution_test__get__result(simcall)) {
215     synchro->simcalls_.push_back(simcall);
216     SIMIX_execution_finish(synchro);
217   } else {
218     SIMIX_simcall_answer(simcall);
219   }
220   /* If the synchro is already finished then perform the error handling */
221   if (synchro->state_ != SIMIX_RUNNING)
222     SIMIX_execution_finish(synchro);
223 }
224
225 void SIMIX_execution_finish(smx_activity_t synchro)
226 {
227   simgrid::kernel::activity::ExecImplPtr exec =
228       boost::static_pointer_cast<simgrid::kernel::activity::ExecImpl>(synchro);
229
230   while (not synchro->simcalls_.empty()) {
231     smx_simcall_t simcall = synchro->simcalls_.front();
232     synchro->simcalls_.pop_front();
233     switch (exec->state_) {
234
235       case SIMIX_DONE:
236         /* do nothing, synchro done */
237         XBT_DEBUG("SIMIX_execution_finished: execution successful");
238         break;
239
240       case SIMIX_FAILED:
241         XBT_DEBUG("SIMIX_execution_finished: host '%s' failed", simcall->issuer->host->get_cname());
242         simcall->issuer->context->iwannadie = 1;
243         SMX_EXCEPTION(simcall->issuer, host_error, 0, "Host failed");
244         break;
245
246       case SIMIX_CANCELED:
247         XBT_DEBUG("SIMIX_execution_finished: execution canceled");
248         SMX_EXCEPTION(simcall->issuer, cancel_error, 0, "Canceled");
249         break;
250
251       case SIMIX_TIMEOUT:
252         XBT_DEBUG("SIMIX_execution_finished: execution timeouted");
253         SMX_EXCEPTION(simcall->issuer, timeout_error, 0, "Timeouted");
254         break;
255
256       default:
257         xbt_die("Internal error in SIMIX_execution_finish: unexpected synchro state %d", (int)exec->state_);
258     }
259     /* Fail the process if the host is down */
260     if (simcall->issuer->host->isOff())
261       simcall->issuer->context->iwannadie = 1;
262
263     simcall->issuer->waiting_synchro = nullptr;
264     simcall_execution_wait__set__result(simcall, exec->state_);
265     SIMIX_simcall_answer(simcall);
266   }
267 }
268
269 void SIMIX_set_category(smx_activity_t synchro, const char *category)
270 {
271   if (synchro->state_ != SIMIX_RUNNING)
272     return;
273
274   simgrid::kernel::activity::ExecImplPtr exec =
275       boost::dynamic_pointer_cast<simgrid::kernel::activity::ExecImpl>(synchro);
276   if (exec != nullptr) {
277     exec->surf_action_->set_category(category);
278     return;
279   }
280
281   simgrid::kernel::activity::CommImplPtr comm =
282       boost::dynamic_pointer_cast<simgrid::kernel::activity::CommImpl>(synchro);
283   if (comm != nullptr) {
284     comm->surfAction_->set_category(category);
285   }
286 }