Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
simplify SIMIX_host_add_auto_restart_process
[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 /* needs to be public and without simcall for exceptions and logging events */
65 const char* sg_host_self_get_name()
66 {
67   sg_host_t host = sg_host_self();
68   if (host == nullptr || SIMIX_process_self() == simix_global->maestro_process)
69     return "";
70
71   return host->get_cname();
72 }
73
74 /**
75  * \brief Add a process to the list of the processes that the host will restart when it comes back
76  * This function add a process to the list of the processes that will be restarted when the host comes
77  * back. It is expected that this function is called when the host is down.
78  * The processes will only be restarted once, meaning that you will have to register the process
79  * again to restart the process again.
80  */
81 void SIMIX_host_add_auto_restart_process(sg_host_t host, simgrid::kernel::actor::ActorImpl* actor)
82 {
83   simgrid::kernel::actor::ProcessArg* arg = new simgrid::kernel::actor::ProcessArg(host, actor);
84
85   if (host->is_off() && watched_hosts.find(host->get_cname()) == watched_hosts.end()) {
86     watched_hosts.insert(host->get_cname());
87     XBT_DEBUG("Push host %s to watched_hosts because state == SURF_RESOURCE_OFF", host->get_cname());
88   }
89   XBT_DEBUG("Adding Process %s to the auto-restart list of Host %s", arg->name.c_str(), arg->host->get_cname());
90   host->extension<simgrid::simix::Host>()->auto_restart_processes.push_back(arg);
91 }
92
93 /** @brief Restart the list of processes that have been registered to the host */
94 void SIMIX_host_autorestart(sg_host_t host)
95 {
96   std::vector<simgrid::kernel::actor::ProcessArg*> process_list =
97       host->extension<simgrid::simix::Host>()->auto_restart_processes;
98
99   for (auto const& arg : process_list) {
100     XBT_DEBUG("Restarting Process %s@%s right now", arg->name.c_str(), arg->host->get_cname());
101     smx_actor_t actor = simix_global->create_process_function(arg->name.c_str(), arg->code, nullptr, arg->host,
102                                                               arg->properties.get(), nullptr);
103     if (arg->kill_time >= 0)
104       simcall_process_set_kill_time(actor, arg->kill_time);
105     if (arg->auto_restart)
106       actor->auto_restart_ = arg->auto_restart;
107   }
108   process_list.clear();
109 }
110
111 boost::intrusive_ptr<simgrid::kernel::activity::ExecImpl>
112 SIMIX_execution_start(const char* name, double flops_amount, double priority, double bound, sg_host_t host)
113 {
114   /* set surf's action */
115   simgrid::kernel::resource::Action* surf_action = nullptr;
116   if (not MC_is_active() && not MC_record_replay_is_active()) {
117     surf_action = host->pimpl_cpu->execution_start(flops_amount);
118     surf_action->set_priority(priority);
119     if (bound > 0)
120       static_cast<simgrid::surf::CpuAction*>(surf_action)->set_bound(bound);
121   }
122
123   simgrid::kernel::activity::ExecImplPtr exec = simgrid::kernel::activity::ExecImplPtr(
124       new simgrid::kernel::activity::ExecImpl(name, surf_action, /*timeout_detector*/ nullptr, host));
125
126   XBT_DEBUG("Create execute synchro %p: %s", exec.get(), exec->name_.c_str());
127   simgrid::kernel::activity::ExecImpl::onCreation(exec);
128
129   return exec;
130 }
131
132 boost::intrusive_ptr<simgrid::kernel::activity::ExecImpl>
133 SIMIX_execution_parallel_start(const char* name, int host_nb, sg_host_t* host_list, double* flops_amount,
134                                double* bytes_amount, double rate, double timeout)
135 {
136
137   /* Check that we are not mixing VMs and PMs in the parallel task */
138   bool is_a_vm = (nullptr != dynamic_cast<simgrid::s4u::VirtualMachine*>(host_list[0]));
139   for (int i = 1; i < host_nb; i++) {
140     bool tmp_is_a_vm = (nullptr != dynamic_cast<simgrid::s4u::VirtualMachine*>(host_list[i]));
141     xbt_assert(is_a_vm == tmp_is_a_vm, "parallel_execute: mixing VMs and PMs is not supported (yet).");
142   }
143
144   /* set surf's synchro */
145   simgrid::kernel::resource::Action* surf_action      = nullptr;
146   simgrid::kernel::resource::Action* timeout_detector = nullptr;
147   if (not MC_is_active() && not MC_record_replay_is_active()) {
148     sg_host_t* host_list_cpy = new sg_host_t[host_nb];
149     std::copy_n(host_list, host_nb, host_list_cpy);
150     surf_action = surf_host_model->execute_parallel(host_nb, host_list_cpy, flops_amount, bytes_amount, rate);
151     if (timeout > 0) {
152       timeout_detector = host_list[0]->pimpl_cpu->sleep(timeout);
153     }
154   }
155
156   simgrid::kernel::activity::ExecImplPtr exec = simgrid::kernel::activity::ExecImplPtr(
157       new simgrid::kernel::activity::ExecImpl(name, surf_action, timeout_detector, nullptr));
158
159   XBT_DEBUG("Create parallel execute synchro %p", exec.get());
160
161   return exec;
162 }
163
164 void simcall_HANDLER_execution_wait(smx_simcall_t simcall, smx_activity_t synchro)
165 {
166   XBT_DEBUG("Wait for execution of synchro %p, state %d", synchro.get(), (int)synchro->state_);
167
168   /* Associate this simcall to the synchro */
169   synchro->simcalls_.push_back(simcall);
170   simcall->issuer->waiting_synchro = synchro;
171
172   /* set surf's synchro */
173   if (MC_is_active() || MC_record_replay_is_active()) {
174     synchro->state_ = SIMIX_DONE;
175     SIMIX_execution_finish(synchro);
176     return;
177   }
178
179   /* If the synchro is already finished then perform the error handling */
180   if (synchro->state_ != SIMIX_RUNNING)
181     SIMIX_execution_finish(synchro);
182 }
183
184 void simcall_HANDLER_execution_test(smx_simcall_t simcall, smx_activity_t synchro)
185 {
186   int res = (synchro->state_ != SIMIX_WAITING && synchro->state_ != SIMIX_RUNNING);
187   if (res) {
188     synchro->simcalls_.push_back(simcall);
189     SIMIX_execution_finish(synchro);
190   } else {
191     SIMIX_simcall_answer(simcall);
192   }
193   simcall_execution_test__set__result(simcall, res);
194 }
195
196 void SIMIX_execution_finish(smx_activity_t synchro)
197 {
198   simgrid::kernel::activity::ExecImplPtr exec =
199       boost::static_pointer_cast<simgrid::kernel::activity::ExecImpl>(synchro);
200
201   while (not synchro->simcalls_.empty()) {
202     smx_simcall_t simcall = synchro->simcalls_.front();
203     synchro->simcalls_.pop_front();
204     switch (exec->state_) {
205
206       case SIMIX_DONE:
207         /* do nothing, synchro done */
208         XBT_DEBUG("SIMIX_execution_finished: execution successful");
209         break;
210
211       case SIMIX_FAILED:
212         XBT_DEBUG("SIMIX_execution_finished: host '%s' failed", simcall->issuer->host_->get_cname());
213         simcall->issuer->context_->iwannadie = 1;
214         SMX_EXCEPTION(simcall->issuer, host_error, 0, "Host failed");
215         break;
216
217       case SIMIX_CANCELED:
218         XBT_DEBUG("SIMIX_execution_finished: execution canceled");
219         SMX_EXCEPTION(simcall->issuer, cancel_error, 0, "Canceled");
220         break;
221
222       case SIMIX_TIMEOUT:
223         XBT_DEBUG("SIMIX_execution_finished: execution timeouted");
224         SMX_EXCEPTION(simcall->issuer, timeout_error, 0, "Timeouted");
225         break;
226
227       default:
228         xbt_die("Internal error in SIMIX_execution_finish: unexpected synchro state %d", (int)exec->state_);
229     }
230     /* Fail the process if the host is down */
231     if (simcall->issuer->host_->is_off())
232       simcall->issuer->context_->iwannadie = 1;
233
234     simcall->issuer->waiting_synchro = nullptr;
235     simcall_execution_wait__set__result(simcall, exec->state_);
236     SIMIX_simcall_answer(simcall);
237   }
238 }
239
240 void SIMIX_set_category(smx_activity_t synchro, const char *category)
241 {
242   if (synchro->state_ != SIMIX_RUNNING)
243     return;
244
245   simgrid::kernel::activity::ExecImplPtr exec =
246       boost::dynamic_pointer_cast<simgrid::kernel::activity::ExecImpl>(synchro);
247   if (exec != nullptr) {
248     exec->surf_action_->set_category(category);
249     return;
250   }
251
252   simgrid::kernel::activity::CommImplPtr comm =
253       boost::dynamic_pointer_cast<simgrid::kernel::activity::CommImpl>(synchro);
254   if (comm != nullptr) {
255     comm->surfAction_->set_category(category);
256   }
257 }