Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
rename AsImpl::getRouteRecursive to AsImpl::getGlobalRoute (+doc improvment)
[simgrid.git] / src / simix / smx_host.cpp
1 /* Copyright (c) 2007-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include "mc/mc.h"
8 #include "smx_private.h"
9 #include "src/mc/mc_replay.h"
10 #include "src/surf/HostImpl.hpp"
11 #include "src/surf/VirtualMachineImpl.hpp"
12 #include "xbt/sysdep.h"
13 #include <xbt/ex.hpp>
14
15 #include "src/kernel/activity/SynchroExec.hpp"
16 #include "src/kernel/activity/SynchroComm.hpp"
17
18 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_host, simix, "SIMIX hosts");
19
20 namespace simgrid {
21   namespace simix {
22     simgrid::xbt::Extension<simgrid::s4u::Host, Host> Host::EXTENSION_ID;
23
24     Host::Host()
25     {
26       if (!Host::EXTENSION_ID.valid())
27         Host::EXTENSION_ID = s4u::Host::extension_create<simix::Host>();
28
29       simgrid::simix::ActorImpl act;
30       process_list = xbt_swag_new(xbt_swag_offset(act, host_proc_hookup));
31     }
32
33     Host::~Host()
34     {
35       /* Clean Simulator data */
36       if (xbt_swag_size(process_list) != 0) {
37         char *msg = xbt_strdup("Shutting down host, but it's not empty:");
38         char *tmp;
39         smx_actor_t process = nullptr;
40
41         xbt_swag_foreach(process, process_list) {
42           tmp = bprintf("%s\n\t%s", msg, process->name.c_str());
43           free(msg);
44           msg = tmp;
45         }
46         SIMIX_display_process_status();
47         THROWF(arg_error, 0, "%s", msg);
48       }
49       for (auto arg : auto_restart_processes)
50         delete arg;
51       auto_restart_processes.clear();
52       for (auto arg : boot_processes)
53         delete arg;
54       boot_processes.clear();
55       xbt_swag_free(process_list);
56     }
57
58     /** Re-starts all the actors that are marked as restartable.
59      *
60      * Weird things will happen if you turn on an host that is already on. S4U is fool-proof, not this.
61      */
62     void Host::turnOn()
63     {
64       for (auto arg : boot_processes) {
65         XBT_DEBUG("Booting Process %s(%s) right now", arg->name.c_str(), arg->host->name().c_str());
66         simix_global->create_process_function(arg->name.c_str(),
67             arg->code,
68             nullptr,
69             arg->host,
70             arg->kill_time,
71             arg->properties,
72             arg->auto_restart,
73             nullptr);
74       }
75     }
76
77 }} // namespaces
78
79 /** @brief Stop the host if it is on */
80 void SIMIX_host_off(sg_host_t h, smx_actor_t issuer)
81 {
82   smx_host_priv_t host = sg_host_simix(h);
83
84   xbt_assert((host != nullptr), "Invalid parameters");
85
86   if (h->isOn()) {
87     h->pimpl_cpu->turnOff();
88
89     /* Clean Simulator data */
90     if (xbt_swag_size(host->process_list) != 0) {
91       smx_actor_t process = nullptr;
92       xbt_swag_foreach(process, host->process_list) {
93         SIMIX_process_kill(process, issuer);
94         XBT_DEBUG("Killing %s on %s by %s",
95           process->name.c_str(),  sg_host_get_name(process->host),
96           issuer->name.c_str());
97       }
98     }
99   } else {
100     XBT_INFO("Host %s is already off", h->name().c_str());
101   }
102 }
103
104 sg_host_t SIMIX_host_self()
105 {
106   smx_actor_t process = SIMIX_process_self();
107   return (process == nullptr) ? nullptr : process->host;
108 }
109
110 /* needs to be public and without simcall for exceptions and logging events */
111 const char* SIMIX_host_self_get_name()
112 {
113   sg_host_t host = SIMIX_host_self();
114   if (host == nullptr || SIMIX_process_self() == simix_global->maestro_process)
115     return "";
116
117   return sg_host_get_name(host);
118 }
119
120 void _SIMIX_host_free_process_arg(void *data)
121 {
122   smx_process_arg_t arg = *(static_cast<smx_process_arg_t*>(data));
123   delete arg;
124 }
125 /**
126  * \brief Add a process to the list of the processes that the host will restart when it comes back
127  * This function add a process to the list of the processes that will be restarted when the host comes
128  * back. It is expected that this function is called when the host is down.
129  * The processes will only be restarted once, meaning that you will have to register the process
130  * again to restart the process again.
131  */
132 void SIMIX_host_add_auto_restart_process(
133   sg_host_t host, const char *name, std::function<void()> code,
134   void* data, double kill_time, xbt_dict_t properties, int auto_restart)
135 {
136   smx_process_arg_t arg = new simgrid::simix::ProcessArg();
137   arg->name = name;
138   arg->code = std::move(code);
139   arg->data = data;
140   arg->host = host;
141   arg->kill_time = kill_time;
142   arg->properties = properties;
143   arg->auto_restart = auto_restart;
144
145   if( host->isOff() && !xbt_dict_get_or_null(watched_hosts_lib,sg_host_get_name(host))){
146     xbt_dict_set(watched_hosts_lib,sg_host_get_name(host),host,nullptr);
147     XBT_DEBUG("Push host %s to watched_hosts_lib because state == SURF_RESOURCE_OFF",sg_host_get_name(host));
148   }
149   sg_host_simix(host)->auto_restart_processes.push_back(arg);
150 }
151 /** @brief Restart the list of processes that have been registered to the host */
152 void SIMIX_host_autorestart(sg_host_t host)
153 {
154   std::vector<simgrid::simix::ProcessArg*> process_list = sg_host_simix(host)->auto_restart_processes;
155   if (process_list.empty())
156     return;
157
158   for (auto arg : process_list) {
159
160     XBT_DEBUG("Restarting Process %s@%s right now", arg->name.c_str(), arg->host->name().c_str());
161     simix_global->create_process_function(arg->name.c_str(), arg->code, nullptr, arg->host, arg->kill_time,
162         arg->properties, arg->auto_restart, nullptr);
163   }
164   process_list.clear();
165 }
166
167 smx_activity_t simcall_HANDLER_execution_start(smx_simcall_t simcall, const char* name, double flops_amount,
168                                               double priority, double bound) {
169   return SIMIX_execution_start(simcall->issuer, name,flops_amount,priority,bound);
170 }
171
172 smx_activity_t SIMIX_execution_start(smx_actor_t issuer, const char *name, double flops_amount, double priority,
173                                     double bound){
174
175   /* alloc structures and initialize */
176   simgrid::kernel::activity::Exec *exec = new simgrid::kernel::activity::Exec(name, issuer->host);
177
178   /* set surf's action */
179   if (!MC_is_active() && !MC_record_replay_is_active()) {
180
181     exec->surf_exec = issuer->host->pimpl_cpu->execution_start(flops_amount);
182     exec->surf_exec->setData(exec);
183     exec->surf_exec->setPriority(priority);
184
185     if (bound > 0)
186       static_cast<simgrid::surf::CpuAction*>(exec->surf_exec)->setBound(bound);
187   }
188
189   XBT_DEBUG("Create execute synchro %p: %s", exec, exec->name.c_str());
190
191   return exec;
192 }
193
194 smx_activity_t SIMIX_execution_parallel_start(const char* name, int host_nb, sg_host_t* host_list, double* flops_amount,
195                                               double* bytes_amount, double amount, double rate, double timeout)
196 {
197
198   /* alloc structures and initialize */
199   simgrid::kernel::activity::Exec *exec = new simgrid::kernel::activity::Exec(name, nullptr);
200
201   /* set surf's synchro */
202   sg_host_t *host_list_cpy = xbt_new0(sg_host_t, host_nb);
203   for (int i = 0; i < host_nb; i++)
204     host_list_cpy[i] = host_list[i];
205
206   /* Check that we are not mixing VMs and PMs in the parallel task */
207   bool is_a_vm = (nullptr != dynamic_cast<simgrid::surf::VirtualMachineImpl*>(host_list[0]->pimpl_));
208   for (int i = 1; i < host_nb; i++) {
209     bool tmp_is_a_vm = (nullptr != dynamic_cast<simgrid::surf::VirtualMachineImpl*>(host_list[i]->pimpl_));
210     xbt_assert(is_a_vm == tmp_is_a_vm, "parallel_execute: mixing VMs and PMs is not supported (yet).");
211   }
212
213   /* set surf's synchro */
214   if (!MC_is_active() && !MC_record_replay_is_active()) {
215     exec->surf_exec = surf_host_model->executeParallelTask(host_nb, host_list_cpy, flops_amount, bytes_amount, rate);
216     exec->surf_exec->setData(exec);
217     if (timeout > 0) {
218       exec->timeoutDetector = host_list[0]->pimpl_cpu->sleep(timeout);
219       exec->timeoutDetector->setData(exec);
220     }
221   }
222   XBT_DEBUG("Create parallel execute synchro %p", exec);
223
224   return exec;
225 }
226
227 void SIMIX_execution_cancel(smx_activity_t synchro)
228 {
229   XBT_DEBUG("Cancel synchro %p", synchro);
230   simgrid::kernel::activity::Exec *exec = static_cast<simgrid::kernel::activity::Exec *>(synchro);
231
232   if (exec->surf_exec)
233     exec->surf_exec->cancel();
234 }
235
236 void SIMIX_execution_set_priority(smx_activity_t synchro, double priority)
237 {
238   simgrid::kernel::activity::Exec *exec = static_cast<simgrid::kernel::activity::Exec *>(synchro);
239   if(exec->surf_exec)
240     exec->surf_exec->setPriority(priority);
241 }
242
243 void SIMIX_execution_set_bound(smx_activity_t synchro, double bound)
244 {
245   simgrid::kernel::activity::Exec *exec = static_cast<simgrid::kernel::activity::Exec *>(synchro);
246   if(exec->surf_exec)
247     static_cast<simgrid::surf::CpuAction*>(exec->surf_exec)->setBound(bound);
248 }
249
250 void simcall_HANDLER_execution_wait(smx_simcall_t simcall, smx_activity_t synchro)
251 {
252   simgrid::kernel::activity::Exec *exec = static_cast<simgrid::kernel::activity::Exec *>(synchro);
253   XBT_DEBUG("Wait for execution of synchro %p, state %d", synchro, (int)synchro->state);
254
255   /* Associate this simcall to the synchro */
256   synchro->simcalls.push_back(simcall);
257   simcall->issuer->waiting_synchro = synchro;
258
259   /* set surf's synchro */
260   if (MC_is_active() || MC_record_replay_is_active()) {
261     synchro->state = SIMIX_DONE;
262     SIMIX_execution_finish(exec);
263     return;
264   }
265
266   /* If the synchro is already finished then perform the error handling */
267   if (synchro->state != SIMIX_RUNNING)
268     SIMIX_execution_finish(exec);
269 }
270
271 void SIMIX_execution_finish(simgrid::kernel::activity::Exec *exec)
272 {
273   for (smx_simcall_t simcall : exec->simcalls) {
274     switch (exec->state) {
275
276       case SIMIX_DONE:
277         /* do nothing, synchro done */
278         XBT_DEBUG("SIMIX_execution_finished: execution successful");
279         break;
280
281       case SIMIX_FAILED:
282         XBT_DEBUG("SIMIX_execution_finished: host '%s' failed", sg_host_get_name(simcall->issuer->host));
283         simcall->issuer->context->iwannadie = 1;
284         SMX_EXCEPTION(simcall->issuer, host_error, 0, "Host failed");
285         break;
286
287       case SIMIX_CANCELED:
288         XBT_DEBUG("SIMIX_execution_finished: execution canceled");
289         SMX_EXCEPTION(simcall->issuer, cancel_error, 0, "Canceled");
290         break;
291
292       case SIMIX_TIMEOUT:
293         XBT_DEBUG("SIMIX_execution_finished: execution timeouted");
294         SMX_EXCEPTION(simcall->issuer, timeout_error, 0, "Timeouted");
295         break;
296
297       default:
298         xbt_die("Internal error in SIMIX_execution_finish: unexpected synchro state %d",
299             (int)exec->state);
300     }
301     /* Fail the process if the host is down */
302     if (simcall->issuer->host->isOff())
303       simcall->issuer->context->iwannadie = 1;
304
305     simcall->issuer->waiting_synchro = nullptr;
306     simcall_execution_wait__set__result(simcall, exec->state);
307     SIMIX_simcall_answer(simcall);
308   }
309
310   /* We no longer need it */
311   exec->unref();
312 }
313
314 void SIMIX_set_category(smx_activity_t synchro, const char *category)
315 {
316   if (synchro->state != SIMIX_RUNNING)
317     return;
318
319   simgrid::kernel::activity::Exec *exec = dynamic_cast<simgrid::kernel::activity::Exec *>(synchro);
320   if (exec != nullptr) {
321     exec->surf_exec->setCategory(category);
322     return;
323   }
324
325   simgrid::kernel::activity::Comm *comm = dynamic_cast<simgrid::kernel::activity::Comm *>(synchro);
326   if (comm != nullptr) {
327     comm->surf_comm->setCategory(category);
328     return;
329   }
330 }