Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'mc++'
[simgrid.git] / src / simix / smx_host.c
1 /* Copyright (c) 2007-2014. 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 "smx_private.h"
8 #include "xbt/sysdep.h"
9 #include "xbt/log.h"
10 #include "xbt/dict.h"
11 #include "mc/mc.h"
12
13 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_host, simix,
14                                 "Logging specific to SIMIX (hosts)");
15
16 static void SIMIX_execution_finish(smx_action_t action);
17
18 /**
19  * \brief Internal function to create a SIMIX host.
20  * \param name name of the host to create
21  * \param workstation the SURF workstation to encapsulate
22  * \param data some user data (may be NULL)
23  */
24 smx_host_t SIMIX_host_create(const char *name,
25                                void *workstation, void *data)
26 {
27   smx_host_priv_t smx_host = xbt_new0(s_smx_host_priv_t, 1);
28   s_smx_process_t proc;
29
30   /* Host structure */
31   smx_host->process_list =
32       xbt_swag_new(xbt_swag_offset(proc, host_proc_hookup));
33
34   /* Update global variables */
35   xbt_lib_set(host_lib,name,SIMIX_HOST_LEVEL,smx_host);
36   
37   return xbt_lib_get_elm_or_null(host_lib, name);
38 }
39
40 void SIMIX_pre_host_on(smx_simcall_t simcall, smx_host_t h)
41 {
42   SIMIX_host_on(h);
43 }
44
45 /**
46  * \brief Start the host if it is off
47  *
48  */
49 void SIMIX_host_on(smx_host_t h)
50 {
51   smx_host_priv_t host = SIMIX_host_priv(h);
52
53   xbt_assert((host != NULL), "Invalid parameters");
54
55   if (surf_resource_get_state(surf_workstation_resource_priv(h))==SURF_RESOURCE_OFF) {
56     surf_resource_set_state(surf_workstation_resource_priv(h), SURF_RESOURCE_ON);
57     unsigned int cpt;
58     smx_process_arg_t arg;
59     xbt_dynar_foreach(host->boot_processes,cpt,arg) {
60       smx_process_t process;
61
62       XBT_DEBUG("Booting Process %s(%s) right now", arg->argv[0], arg->hostname);
63       if (simix_global->create_process_function) {
64         simix_global->create_process_function(&process,
65                                               arg->argv[0],
66                                               arg->code,
67                                               NULL,
68                                               arg->hostname,
69                                               arg->kill_time,
70                                               arg->argc,
71                                               arg->argv,
72                                               arg->properties,
73                                               arg->auto_restart,
74                                               NULL);
75       } else {
76         simcall_process_create(&process,
77                                arg->argv[0],
78                                arg->code,
79                                NULL,
80                                arg->hostname,
81                                arg->kill_time,
82                                arg->argc,
83                                arg->argv,
84                                arg->properties,
85                                arg->auto_restart);
86       }
87     }
88   }
89 }
90
91 void SIMIX_pre_host_off(smx_simcall_t simcall, smx_host_t h)
92 {
93   SIMIX_host_off(h, simcall->issuer);
94 }
95
96 /**
97  * \brief Stop the host if it is on
98  *
99  */
100 void SIMIX_host_off(smx_host_t h, smx_process_t issuer)
101 {
102   smx_host_priv_t host = SIMIX_host_priv(h);
103
104   xbt_assert((host != NULL), "Invalid parameters");
105   
106   if (surf_resource_get_state(surf_workstation_resource_priv(h))==SURF_RESOURCE_ON) {
107         surf_resource_set_state(surf_workstation_resource_priv(h), SURF_RESOURCE_OFF);
108
109     /* Clean Simulator data */
110     if (xbt_swag_size(host->process_list) != 0) {
111       smx_process_t process = NULL;
112       xbt_swag_foreach(process, host->process_list) {
113         SIMIX_process_kill(process, issuer);
114         XBT_DEBUG("Killing %s on %s by %s", process->name,  sg_host_name(process->smx_host), issuer->name);
115       }
116     }
117   }
118 }
119
120 /**
121  * \brief Internal function to destroy a SIMIX host.
122  *
123  * \param h the host to destroy (a smx_host_t)
124  */
125 void SIMIX_host_destroy(void *h)
126 {
127   smx_host_priv_t host = (smx_host_priv_t) h;
128
129   xbt_assert((host != NULL), "Invalid parameters");
130
131   /* Clean Simulator data */
132   if (xbt_swag_size(host->process_list) != 0) {
133     char *msg = xbt_strdup("Shutting down host, but it's not empty:");
134     char *tmp;
135     smx_process_t process = NULL;
136
137     xbt_swag_foreach(process, host->process_list) {
138       tmp = bprintf("%s\n\t%s", msg, process->name);
139       free(msg);
140       msg = tmp;
141     }
142     SIMIX_display_process_status();
143     THROWF(arg_error, 0, "%s", msg);
144   }
145   xbt_dynar_free(&host->auto_restart_processes);
146   xbt_dynar_free(&host->boot_processes);
147   xbt_swag_free(host->process_list);
148
149   /* Clean host structure */
150   free(host); 
151   return;
152 }
153
154 ///**
155 // * \brief Returns a dict of all hosts.
156 // *
157 // * \return List of all hosts (as a #xbt_dict_t)
158 // */
159 //xbt_dict_t SIMIX_host_get_dict(void)
160 //{
161 //  xbt_dict_t host_dict = xbt_dict_new_homogeneous(NULL);
162 //  xbt_lib_cursor_t cursor = NULL;
163 //  char *name = NULL;
164 //  void **host = NULL;
165 //
166 //  xbt_lib_foreach(host_lib, cursor, name, host){
167 //    if(host[SIMIX_HOST_LEVEL])
168 //            xbt_dict_set(host_dict,name,host[SIMIX_HOST_LEVEL], NULL);
169 //  }
170 //  return host_dict;
171 //}
172 smx_host_t SIMIX_pre_host_get_by_name(smx_simcall_t simcall, const char *name){
173    return SIMIX_host_get_by_name(name);
174 }
175 smx_host_t SIMIX_host_get_by_name(const char *name){
176   xbt_assert(((simix_global != NULL)
177                && (host_lib != NULL)),
178               "Environment not set yet");
179
180   return xbt_lib_get_elm_or_null(host_lib, name);
181 }
182
183 smx_host_t SIMIX_host_self(void)
184 {
185   smx_process_t process = SIMIX_process_self();
186   return (process == NULL) ? NULL : SIMIX_process_get_host(process);
187 }
188
189 const char* SIMIX_pre_host_self_get_name(smx_simcall_t simcall){
190    return SIMIX_host_self_get_name();
191 }
192 /* needs to be public and without simcall because it is called
193    by exceptions and logging events */
194 const char* SIMIX_host_self_get_name(void)
195 {
196   smx_host_t host = SIMIX_host_self();
197   if (host == NULL || SIMIX_process_self() == simix_global->maestro_process)
198     return "";
199
200   return SIMIX_host_get_name(host);
201 }
202
203 const char* SIMIX_pre_host_get_name(smx_simcall_t simcall, smx_host_t host){
204    return SIMIX_host_get_name(host);
205 }
206 const char* SIMIX_host_get_name(smx_host_t host){
207   xbt_assert((host != NULL), "Invalid parameters");
208
209   return sg_host_name(host);
210 }
211
212 xbt_dict_t SIMIX_pre_host_get_properties(smx_simcall_t simcall, smx_host_t host){
213   return SIMIX_host_get_properties(host);
214 }
215 xbt_dict_t SIMIX_host_get_properties(smx_host_t host){
216   xbt_assert((host != NULL), "Invalid parameters (simix host is NULL)");
217
218   return surf_resource_get_properties(surf_workstation_resource_priv(host));
219 }
220
221 double SIMIX_pre_host_get_speed(smx_simcall_t simcall, smx_host_t host){
222   return SIMIX_host_get_speed(host);
223 }
224 double SIMIX_host_get_speed(smx_host_t host){
225   xbt_assert((host != NULL), "Invalid parameters (simix host is NULL)");
226   return surf_workstation_get_speed(host, 1.0);
227 }
228
229 int SIMIX_pre_host_get_core(smx_simcall_t simcall, smx_host_t host){
230   return SIMIX_host_get_core(host);
231 }
232 int SIMIX_host_get_core(smx_host_t host){
233   xbt_assert((host != NULL), "Invalid parameters (simix host is NULL)");
234
235   return surf_workstation_get_core(host);
236 }
237
238 xbt_swag_t SIMIX_pre_host_get_process_list(smx_simcall_t simcall, smx_host_t host){
239   return SIMIX_host_get_process_list(host);
240 }
241
242 xbt_swag_t SIMIX_host_get_process_list(smx_host_t host){
243   xbt_assert((host != NULL), "Invalid parameters (simix host is NULL)");
244   smx_host_priv_t host_priv = SIMIX_host_priv(host);
245
246   return host_priv->process_list;
247 }
248
249
250 double SIMIX_pre_host_get_available_speed(smx_simcall_t simcall, smx_host_t host){
251   return SIMIX_host_get_available_speed(host);
252 }
253 double SIMIX_host_get_available_speed(smx_host_t host){
254   xbt_assert((host != NULL), "Invalid parameters (simix host is NULL)");
255
256   return surf_workstation_get_available_speed(host);
257 }
258
259 double SIMIX_pre_host_get_current_power_peak(smx_simcall_t simcall, smx_host_t host){
260   return SIMIX_host_get_current_power_peak(host);
261 }
262 double SIMIX_host_get_current_power_peak(smx_host_t host) {
263           xbt_assert((host != NULL), "Invalid parameters (simix host is NULL)");
264           return surf_workstation_get_current_power_peak(host);
265 }
266
267 double SIMIX_pre_host_get_power_peak_at(smx_simcall_t simcall, smx_host_t host, int pstate_index){
268   return SIMIX_host_get_power_peak_at(host, pstate_index);
269 }
270 double SIMIX_host_get_power_peak_at(smx_host_t host, int pstate_index) {
271           xbt_assert((host != NULL), "Invalid parameters (simix host is NULL)");
272
273           return surf_workstation_get_power_peak_at(host, pstate_index);
274 }
275
276 int SIMIX_pre_host_get_nb_pstates(smx_simcall_t simcall, smx_host_t host){
277   return SIMIX_host_get_nb_pstates(host);
278 }
279 int SIMIX_host_get_nb_pstates(smx_host_t host) {
280           xbt_assert((host != NULL), "Invalid parameters (simix host is NULL)");
281
282           return surf_workstation_get_nb_pstates(host);
283 }
284
285
286 void SIMIX_pre_host_set_power_peak_at(smx_simcall_t simcall, smx_host_t host, int pstate_index){
287   SIMIX_host_set_power_peak_at(host, pstate_index);
288 }
289 void SIMIX_host_set_power_peak_at(smx_host_t host, int pstate_index) {
290           xbt_assert((host != NULL), "Invalid parameters (simix host is NULL)");
291
292           surf_workstation_set_power_peak_at(host, pstate_index);
293 }
294
295 double SIMIX_pre_host_get_consumed_energy(smx_simcall_t simcall, smx_host_t host){
296   return SIMIX_host_get_consumed_energy(host);
297 }
298 double SIMIX_host_get_consumed_energy(smx_host_t host) {
299           xbt_assert((host != NULL), "Invalid parameters (simix host is NULL)");
300           return surf_workstation_get_consumed_energy(host);
301 }
302
303 int SIMIX_pre_host_get_state(smx_simcall_t simcall, smx_host_t host){
304   return SIMIX_host_get_state(host);
305 }
306 int SIMIX_host_get_state(smx_host_t host){
307   xbt_assert((host != NULL), "Invalid parameters (simix host is NULL)");
308
309   return surf_resource_get_state(surf_workstation_resource_priv(host));
310 }
311
312 void _SIMIX_host_free_process_arg(void *data)
313 {
314   smx_process_arg_t arg = *(void**)data;
315   int i;
316   for (i = 0; i < arg->argc; i++)
317     xbt_free(arg->argv[i]);
318   xbt_free(arg->argv);
319   xbt_free(arg->name);
320   xbt_free(arg);
321 }
322 /**
323  * \brief Add a process to the list of the processes that the host will restart when it comes back
324  * This function add a process to the list of the processes that will be restarted when the host comes
325  * back. It is expected that this function is called when the host is down.
326  * The processes will only be restarted once, meaning that you will have to register the process
327  * again to restart the process again.
328  */
329 void SIMIX_host_add_auto_restart_process(smx_host_t host,
330                                          const char *name,
331                                          xbt_main_func_t code,
332                                          void *data,
333                                          const char *hostname,
334                                          double kill_time,
335                                          int argc, char **argv,
336                                          xbt_dict_t properties,
337                                          int auto_restart)
338 {
339   if (!SIMIX_host_priv(host)->auto_restart_processes) {
340     SIMIX_host_priv(host)->auto_restart_processes = xbt_dynar_new(sizeof(smx_process_arg_t),_SIMIX_host_free_process_arg);
341   }
342   smx_process_arg_t arg = xbt_new(s_smx_process_arg_t,1);
343   arg->name = xbt_strdup(name);
344   arg->code = code;
345   arg->data = data;
346   arg->hostname = hostname;
347   arg->kill_time = kill_time;
348   arg->argc = argc;
349
350   arg->argv = xbt_new(char*,argc + 1);
351
352   int i;
353   for (i = 0; i < argc; i++) {
354     arg->argv[i] = xbt_strdup(argv[i]);
355   }
356   arg->argv[argc] = NULL;
357
358   arg->properties = properties;
359   arg->auto_restart = auto_restart;
360
361   if( SIMIX_host_get_state(host) == SURF_RESOURCE_OFF
362       && !xbt_dict_get_or_null(watched_hosts_lib,sg_host_name(host))){
363     xbt_dict_set(watched_hosts_lib,sg_host_name(host),host,NULL);
364     XBT_DEBUG("Have pushed host %s to watched_hosts_lib because state == SURF_RESOURCE_OFF",sg_host_name(host));
365   }
366   xbt_dynar_push_as(SIMIX_host_priv(host)->auto_restart_processes,smx_process_arg_t,arg);
367 }
368 /**
369  * \brief Restart the list of processes that have been registered to the host
370  */
371 void SIMIX_host_restart_processes(smx_host_t host)
372 {
373   unsigned int cpt;
374   smx_process_arg_t arg;
375   xbt_dynar_t process_list = SIMIX_host_priv(host)->auto_restart_processes;
376   if (!process_list)
377     return;
378
379   xbt_dynar_foreach (process_list, cpt, arg) {
380
381     smx_process_t process;
382
383     XBT_DEBUG("Restarting Process %s(%s) right now", arg->argv[0], arg->hostname);
384     if (simix_global->create_process_function) {
385       simix_global->create_process_function(&process,
386                                             arg->argv[0],
387                                             arg->code,
388                                             NULL,
389                                             arg->hostname,
390                                             arg->kill_time,
391                                             arg->argc,
392                                             arg->argv,
393                                             arg->properties,
394                                             arg->auto_restart,
395                                             NULL);
396     } else {
397       simcall_process_create(&process,
398                              arg->argv[0],
399                              arg->code,
400                              NULL,
401                              arg->hostname,
402                              arg->kill_time,
403                              arg->argc,
404                              arg->argv,
405                              arg->properties,
406                              arg->auto_restart);
407
408     }
409     /* arg->argv is used by the process created above.  Hide it to
410      * _SIMIX_host_free_process_arg() which is called by xbt_dynar_reset()
411      * below. */
412     arg->argc = 0;
413     arg->argv = NULL;
414   }
415   xbt_dynar_reset(process_list);
416 }
417
418 void SIMIX_host_autorestart(smx_host_t host)
419 {
420   if(simix_global->autorestart)
421     simix_global->autorestart(host);
422   else
423     xbt_die("No function for simix_global->autorestart");
424 }
425
426 smx_action_t SIMIX_pre_host_execute(smx_simcall_t simcall,const char *name,
427     smx_host_t host, double computation_amount, double priority, double bound, unsigned long affinity_mask){
428   return SIMIX_host_execute(name, host, computation_amount, priority, bound, affinity_mask);
429 }
430 smx_action_t SIMIX_host_execute(const char *name,
431     smx_host_t host, double computation_amount, double priority, double bound, unsigned long affinity_mask){
432
433   /* alloc structures and initialize */
434   smx_action_t action = xbt_mallocator_get(simix_global->action_mallocator);
435   action->type = SIMIX_ACTION_EXECUTE;
436   action->name = xbt_strdup(name);
437   action->state = SIMIX_RUNNING;
438   action->execution.host = host;
439
440 #ifdef HAVE_TRACING
441   action->category = NULL;
442 #endif
443
444   /* set surf's action */
445   if (!MC_is_active()) {
446
447     action->execution.surf_exec = surf_workstation_execute(host, computation_amount);
448     surf_action_set_data(action->execution.surf_exec, action);
449     surf_action_set_priority(action->execution.surf_exec, priority);
450
451     /* Note (hypervisor): for multicore, the bound value being passed to the
452      * surf layer should not be zero (i.e., unlimited). It should be the
453      * capacity of a CPU core. */
454     if (bound == 0)
455       surf_cpu_action_set_bound(action->execution.surf_exec, SIMIX_host_get_speed(host));
456     else
457       surf_cpu_action_set_bound(action->execution.surf_exec, bound);
458
459     if (affinity_mask != 0) {
460       /* just a double check to confirm that this host is the host where this task is running. */
461       xbt_assert(action->execution.host == host);
462       surf_cpu_action_set_affinity(action->execution.surf_exec, host, affinity_mask);
463     }
464   }
465
466   XBT_DEBUG("Create execute action %p: %s", action, action->name);
467
468   return action;
469 }
470
471 smx_action_t SIMIX_pre_host_parallel_execute(smx_simcall_t simcall, const char *name,
472     int host_nb, smx_host_t *host_list,
473     double *computation_amount, double *communication_amount,
474     double amount, double rate){
475   return SIMIX_host_parallel_execute(name, host_nb, host_list, computation_amount,
476                                      communication_amount, amount, rate);
477 }
478 smx_action_t SIMIX_host_parallel_execute(const char *name,
479     int host_nb, smx_host_t *host_list,
480     double *computation_amount, double *communication_amount,
481     double amount, double rate){
482
483   void **workstation_list = NULL;
484   int i;
485
486   /* alloc structures and initialize */
487   smx_action_t action = xbt_mallocator_get(simix_global->action_mallocator);
488   action->type = SIMIX_ACTION_PARALLEL_EXECUTE;
489   action->name = xbt_strdup(name);
490   action->state = SIMIX_RUNNING;
491   action->execution.host = NULL; /* FIXME: do we need the list of hosts? */
492
493 #ifdef HAVE_TRACING
494   action->category = NULL;
495 #endif
496
497   /* set surf's action */
498   workstation_list = xbt_new0(void *, host_nb);
499   for (i = 0; i < host_nb; i++)
500     workstation_list[i] = surf_workstation_resource_priv(host_list[i]);
501
502
503   /* FIXME: what happens if host_list contains VMs and PMs. If
504    * execute_parallel_task() does not change the state of the model, we can mix
505    * them. */
506   surf_model_t ws_model = surf_resource_model(host_list[0], SURF_WKS_LEVEL);
507   for (i = 1; i < host_nb; i++) {
508     surf_model_t ws_model_tmp = surf_resource_model(host_list[i], SURF_WKS_LEVEL);
509     if (ws_model_tmp != ws_model) {
510       XBT_CRITICAL("mixing VMs and PMs is not supported");
511       DIE_IMPOSSIBLE;
512     }
513   }
514
515   /* set surf's action */
516   if (!MC_is_active()) {
517     action->execution.surf_exec =
518       surf_workstation_model_execute_parallel_task((surf_workstation_model_t)surf_workstation_model,
519                   host_nb, workstation_list, computation_amount, communication_amount, rate);
520
521     surf_action_set_data(action->execution.surf_exec, action);
522   }
523   XBT_DEBUG("Create parallel execute action %p", action);
524
525   return action;
526 }
527
528 void SIMIX_pre_host_execution_destroy(smx_simcall_t simcall, smx_action_t action){
529   SIMIX_host_execution_destroy(action);
530 }
531 void SIMIX_host_execution_destroy(smx_action_t action){
532   XBT_DEBUG("Destroy action %p", action);
533
534   if (action->execution.surf_exec) {
535     surf_action_unref(action->execution.surf_exec);
536     action->execution.surf_exec = NULL;
537   }
538   xbt_free(action->name);
539   xbt_mallocator_release(simix_global->action_mallocator, action);
540 }
541
542 void SIMIX_pre_host_execution_cancel(smx_simcall_t simcall, smx_action_t action){
543   SIMIX_host_execution_cancel(action);
544 }
545 void SIMIX_host_execution_cancel(smx_action_t action){
546   XBT_DEBUG("Cancel action %p", action);
547
548   if (action->execution.surf_exec)
549     surf_action_cancel(action->execution.surf_exec);
550 }
551
552 double SIMIX_pre_host_execution_get_remains(smx_simcall_t simcall, smx_action_t action){
553   return SIMIX_host_execution_get_remains(action);
554 }
555 double SIMIX_host_execution_get_remains(smx_action_t action){
556   double result = 0.0;
557
558   if (action->state == SIMIX_RUNNING)
559     result = surf_action_get_remains(action->execution.surf_exec);
560
561   return result;
562 }
563
564 e_smx_state_t SIMIX_pre_host_execution_get_state(smx_simcall_t simcall, smx_action_t action){
565   return SIMIX_host_execution_get_state(action);
566 }
567 e_smx_state_t SIMIX_host_execution_get_state(smx_action_t action){
568   return action->state;
569 }
570
571 void SIMIX_pre_host_execution_set_priority(smx_simcall_t simcall, smx_action_t action,
572                                         double priority){
573   SIMIX_host_execution_set_priority(action, priority);
574 }
575 void SIMIX_host_execution_set_priority(smx_action_t action, double priority){
576
577   if(action->execution.surf_exec)
578         surf_action_set_priority(action->execution.surf_exec, priority);
579 }
580
581 void SIMIX_pre_host_execution_set_bound(smx_simcall_t simcall, smx_action_t action,
582                                         double bound){
583   SIMIX_host_execution_set_bound(action, bound);
584 }
585 void SIMIX_host_execution_set_bound(smx_action_t action, double bound){
586
587   if(action->execution.surf_exec)
588         surf_cpu_action_set_bound(action->execution.surf_exec, bound);
589 }
590
591 void SIMIX_pre_host_execution_set_affinity(smx_simcall_t simcall,
592     smx_action_t action, smx_host_t host, unsigned long mask){
593   SIMIX_host_execution_set_affinity(action, host, mask);
594 }
595 void SIMIX_host_execution_set_affinity(smx_action_t action, smx_host_t host, unsigned long mask){
596   xbt_assert(action->type == SIMIX_ACTION_EXECUTE);
597
598   if (action->execution.surf_exec) {
599     /* just a double check to confirm that this host is the host where this task is running. */
600     xbt_assert(action->execution.host == host);
601     surf_cpu_action_set_affinity(action->execution.surf_exec, host, mask);
602   }
603 }
604
605 void SIMIX_pre_host_execution_wait(smx_simcall_t simcall, smx_action_t action){
606
607   XBT_DEBUG("Wait for execution of action %p, state %d", action, (int)action->state);
608
609   /* Associate this simcall to the action */
610   xbt_fifo_push(action->simcalls, simcall);
611   simcall->issuer->waiting_action = action;
612
613   /* set surf's action */
614   if (MC_is_active()) {
615     action->state = SIMIX_DONE;
616     SIMIX_execution_finish(action);
617     return;
618   }
619
620   /* If the action is already finished then perform the error handling */
621   if (action->state != SIMIX_RUNNING)
622     SIMIX_execution_finish(action);
623 }
624
625 void SIMIX_host_execution_suspend(smx_action_t action)
626 {
627   if(action->execution.surf_exec)
628     surf_action_suspend(action->execution.surf_exec);
629 }
630
631 void SIMIX_host_execution_resume(smx_action_t action)
632 {
633   if(action->execution.surf_exec)
634     surf_action_resume(action->execution.surf_exec);
635 }
636
637 void SIMIX_execution_finish(smx_action_t action)
638 {
639   xbt_fifo_item_t item;
640   smx_simcall_t simcall;
641
642   xbt_fifo_foreach(action->simcalls, item, simcall, smx_simcall_t) {
643
644     switch (action->state) {
645
646       case SIMIX_DONE:
647         /* do nothing, action done */
648   XBT_DEBUG("SIMIX_execution_finished: execution successful");
649         break;
650
651       case SIMIX_FAILED:
652         XBT_DEBUG("SIMIX_execution_finished: host '%s' failed", sg_host_name(simcall->issuer->smx_host));
653         simcall->issuer->context->iwannadie = 1;
654         SMX_EXCEPTION(simcall->issuer, host_error, 0, "Host failed");
655         break;
656
657       case SIMIX_CANCELED:
658         XBT_DEBUG("SIMIX_execution_finished: execution canceled");
659         SMX_EXCEPTION(simcall->issuer, cancel_error, 0, "Canceled");
660         break;
661
662       default:
663         xbt_die("Internal error in SIMIX_execution_finish: unexpected action state %d",
664             (int)action->state);
665     }
666     /* check if the host is down */
667     if (surf_resource_get_state(surf_workstation_resource_priv(simcall->issuer->smx_host)) != SURF_RESOURCE_ON) {
668       simcall->issuer->context->iwannadie = 1;
669     }
670
671     simcall->issuer->waiting_action =    NULL;
672     simcall_host_execution_wait__set__result(simcall, action->state);
673     SIMIX_simcall_answer(simcall);
674   }
675
676   /* We no longer need it */
677   SIMIX_host_execution_destroy(action);
678 }
679
680
681 void SIMIX_post_host_execute(smx_action_t action)
682 {
683   if (action->type == SIMIX_ACTION_EXECUTE && /* FIMXE: handle resource failure
684                                                * for parallel tasks too */
685       surf_resource_get_state(surf_workstation_resource_priv(action->execution.host)) == SURF_RESOURCE_OFF) {
686     /* If the host running the action failed, notice it so that the asking
687      * process can be killed if it runs on that host itself */
688     action->state = SIMIX_FAILED;
689   } else if (surf_action_get_state(action->execution.surf_exec) == SURF_ACTION_FAILED) {
690     /* If the host running the action didn't fail, then the action was
691      * canceled */
692     action->state = SIMIX_CANCELED;
693   } else {
694     action->state = SIMIX_DONE;
695   }
696
697   if (action->execution.surf_exec) {
698     surf_action_unref(action->execution.surf_exec);
699     action->execution.surf_exec = NULL;
700   }
701
702   /* If there are simcalls associated with the action, then answer them */
703   if (xbt_fifo_size(action->simcalls)) {
704     SIMIX_execution_finish(action);
705   }
706 }
707
708
709 #ifdef HAVE_TRACING
710 void SIMIX_pre_set_category(smx_simcall_t simcall, smx_action_t action,
711                             const char *category){
712   SIMIX_set_category(action, category);
713 }
714 void SIMIX_set_category(smx_action_t action, const char *category)
715 {
716   if (action->state != SIMIX_RUNNING) return;
717   if (action->type == SIMIX_ACTION_EXECUTE){
718     surf_action_set_category(action->execution.surf_exec, category);
719   }else if (action->type == SIMIX_ACTION_COMMUNICATE){
720     surf_action_set_category(action->comm.surf_comm, category);
721   }
722 }
723 #endif
724
725 /**
726  * \brief Function to get the parameters of the given the SIMIX host.
727  *
728  * \param host the host to get_phys_host (a smx_host_t)
729  * \param param the parameter object space to be overwritten (a ws_params_t)
730  */
731 void SIMIX_host_get_params(smx_host_t ind_vm, ws_params_t params)
732 {
733   /* jump to ws_get_params(). */
734   surf_workstation_get_params(ind_vm, params);
735 }
736
737 void SIMIX_pre_host_get_params(smx_simcall_t simcall, smx_host_t ind_vm, ws_params_t params)
738 {
739   SIMIX_host_get_params(ind_vm, params);
740 }
741
742 void SIMIX_host_set_params(smx_host_t ind_vm, ws_params_t params)
743 {
744   /* jump to ws_set_params(). */
745   surf_workstation_set_params(ind_vm, params);
746 }
747
748 void SIMIX_pre_host_set_params(smx_simcall_t simcall, smx_host_t ind_vm, ws_params_t params)
749 {
750   SIMIX_host_set_params(ind_vm, params);
751 }
752
753 xbt_dict_t SIMIX_pre_host_get_mounted_storage_list(smx_simcall_t simcall, smx_host_t host){
754   return SIMIX_host_get_mounted_storage_list(host);
755 }
756
757 xbt_dict_t SIMIX_host_get_mounted_storage_list(smx_host_t host){
758   xbt_assert((host != NULL), "Invalid parameters (simix host is NULL)");
759
760   return surf_workstation_get_mounted_storage_list(host);
761 }
762
763 xbt_dynar_t SIMIX_pre_host_get_attached_storage_list(smx_simcall_t simcall, smx_host_t host){
764   return SIMIX_host_get_attached_storage_list(host);
765 }
766
767 xbt_dynar_t SIMIX_host_get_attached_storage_list(smx_host_t host){
768   xbt_assert((host != NULL), "Invalid parameters (simix host is NULL)");
769
770   return surf_workstation_get_attached_storage_list(host);
771 }