Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
2cc050d9e842e0b7239d03e1e2f507eed1ea6a67
[simgrid.git] / src / surf / surf.c
1 /* Copyright (c) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011. 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 "surf_private.h"
8 #include "xbt/module.h"
9 #include "mc/mc.h"
10 #include "simix/smx_host_private.h"
11 #include "surf/surf_resource.h"
12 #include "xbt/xbt_os_thread.h"
13 #include "simgrid/sg_config.h"
14
15 #include <ctype.h>
16
17 XBT_LOG_NEW_CATEGORY(surf, "All SURF categories");
18 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_kernel, surf,
19                                 "Logging specific to SURF (kernel)");
20
21 /* Additional declarations for Windows portability. */
22
23 #ifndef MAX_DRIVE
24 #define MAX_DRIVE 26
25 #endif
26
27 #ifdef _XBT_WIN32
28 #include <windows.h>
29 static const char *disk_drives_letter_table[MAX_DRIVE] = {
30   "A:\\",
31   "B:\\",
32   "C:\\",
33   "D:\\",
34   "E:\\",
35   "F:\\",
36   "G:\\",
37   "H:\\",
38   "I:\\",
39   "J:\\",
40   "K:\\",
41   "L:\\",
42   "M:\\",
43   "N:\\",
44   "O:\\",
45   "P:\\",
46   "Q:\\",
47   "R:\\",
48   "S:\\",
49   "T:\\",
50   "U:\\",
51   "V:\\",
52   "W:\\",
53   "X:\\",
54   "Y:\\",
55   "Z:\\"
56 };
57 #endif                          /* #ifdef _XBT_WIN32 */
58
59 /*
60  * Returns the initial path. On Windows the initial path is
61  * the current directory for the current process in the other
62  * case the function returns "./" that represents the current
63  * directory on Unix/Linux platforms.
64  */
65
66 const char *__surf_get_initial_path(void)
67 {
68
69 #ifdef _XBT_WIN32
70   unsigned i;
71   char current_directory[MAX_PATH + 1] = { 0 };
72   unsigned int len = GetCurrentDirectory(MAX_PATH + 1, current_directory);
73   char root[4] = { 0 };
74
75   if (!len)
76     return NULL;
77
78   strncpy(root, current_directory, 3);
79
80   for (i = 0; i < MAX_DRIVE; i++) {
81     if (toupper(root[0]) == disk_drives_letter_table[i][0])
82       return disk_drives_letter_table[i];
83   }
84
85   return NULL;
86 #else
87   return "./";
88 #endif
89 }
90
91 /* The __surf_is_absolute_file_path() returns 1 if
92  * file_path is a absolute file path, in the other
93  * case the function returns 0.
94  */
95 int __surf_is_absolute_file_path(const char *file_path)
96 {
97 #ifdef _XBT_WIN32
98   WIN32_FIND_DATA wfd = { 0 };
99   HANDLE hFile = FindFirstFile(file_path, &wfd);
100
101   if (INVALID_HANDLE_VALUE == hFile)
102     return 0;
103
104   FindClose(hFile);
105   return 1;
106 #else
107   return (file_path[0] == '/');
108 #endif
109 }
110
111 double NOW = 0;
112
113 /* model_list_invoke contains only surf_workstation and surf_vm_workstation.
114  * The callback functions of cpu_model and network_model will be called from
115  * those of these workstation models. */
116 xbt_dynar_t model_list = NULL; /* for destroying all models correctly */
117 xbt_dynar_t model_list_invoke = NULL;  /* for invoking callbacks */
118 tmgr_history_t history = NULL;
119 lmm_system_t maxmin_system = NULL;
120 xbt_dynar_t surf_path = NULL;
121
122 /* Don't forget to update the option description in smx_config when you change this */
123 s_surf_model_description_t surf_network_model_description[] = {
124   {"LV08",
125    "Realistic network analytic model (slow-start modeled by multiplying latency by 10.4, bandwidth by .92; bottleneck sharing uses a payload of S=8775 for evaluating RTT). ",
126    surf_network_model_init_LegrandVelho},
127   {"Constant",
128    "Simplistic network model where all communication take a constant time (one second). This model provides the lowest realism, but is (marginally) faster.",
129    surf_network_model_init_Constant},
130   {"SMPI",
131    "Realistic network model specifically tailored for HPC settings (accurate modeling of slow start with correction factors on three intervals: < 1KiB, < 64 KiB, >= 64 KiB)",
132    surf_network_model_init_SMPI},
133   {"CM02",
134    "Legacy network analytic model (Very similar to LV08, but without corrective factors. The timings of small messages are thus poorly modeled).",
135    surf_network_model_init_CM02},
136 #ifdef HAVE_GTNETS
137   {"GTNets",
138    "Network pseudo-model using the GTNets simulator instead of an analytic model",
139    surf_network_model_init_GTNETS},
140 #endif
141 #ifdef HAVE_NS3
142   {"NS3",
143    "Network pseudo-model using the NS3 tcp model instead of an analytic model",
144   surf_network_model_init_NS3},
145 #endif
146   {"Reno",
147    "Model from Steven H. Low using lagrange_solve instead of lmm_solve (experts only; check the code for more info).",
148    surf_network_model_init_Reno},
149   {"Reno2",
150    "Model from Steven H. Low using lagrange_solve instead of lmm_solve (experts only; check the code for more info).",
151    surf_network_model_init_Reno2},
152   {"Vegas",
153    "Model from Steven H. Low using lagrange_solve instead of lmm_solve (experts only; check the code for more info).",
154    surf_network_model_init_Vegas},
155   {NULL, NULL, NULL}      /* this array must be NULL terminated */
156 };
157
158 s_surf_model_description_t surf_cpu_model_description[] = {
159   {"Cas01",
160    "Simplistic CPU model (time=size/power).",
161    surf_cpu_model_init_Cas01},
162   {NULL, NULL,  NULL}      /* this array must be NULL terminated */
163 };
164
165 s_surf_model_description_t surf_workstation_model_description[] = {
166   {"default",
167    "Default workstation model. Currently, CPU:Cas01 and network:LV08 (with cross traffic enabled)",
168    surf_workstation_model_init_current_default},
169   {"compound",
170    "Workstation model that is automatically chosen if you change the network and CPU models",
171    surf_workstation_model_init_compound},
172   {"ptask_L07", "Workstation model somehow similar to Cas01+CM02 but allowing parallel tasks",
173    surf_workstation_model_init_ptask_L07},
174   {NULL, NULL, NULL}      /* this array must be NULL terminated */
175 };
176
177 s_surf_model_description_t surf_optimization_mode_description[] = {
178   {"Lazy",
179    "Lazy action management (partial invalidation in lmm + heap in action remaining).",
180    NULL},
181   {"TI",
182    "Trace integration. Highly optimized mode when using availability traces (only available for the Cas01 CPU model for now).",
183     NULL},
184   {"Full",
185    "Full update of remaining and variables. Slow but may be useful when debugging.",
186    NULL},
187   {NULL, NULL, NULL}      /* this array must be NULL terminated */
188 };
189
190 s_surf_model_description_t surf_storage_model_description[] = {
191   {"default",
192    "Simplistic storage model.",
193    surf_storage_model_init_default},
194   {NULL, NULL,  NULL}      /* this array must be NULL terminated */
195 };
196
197 /* ********************************************************************* */
198 /* TUTORIAL: New model                                                   */
199 s_surf_model_description_t surf_new_model_description[] = {
200   {"default",
201    "Tutorial model.",
202    surf_new_model_init_default},
203   {NULL, NULL,  NULL}      /* this array must be NULL terminated */
204 };
205 /* ********************************************************************* */
206
207 #ifdef CONTEXT_THREADS
208 static xbt_parmap_t surf_parmap = NULL; /* parallel map on models */
209 #endif
210
211 static double *surf_mins = NULL; /* return value of share_resources for each model */
212 static int surf_min_index;       /* current index in surf_mins */
213 static double min;               /* duration determined by surf_solve */
214
215 static void surf_share_resources(surf_model_t model);
216 static void surf_update_actions_state(surf_model_t model);
217
218 /** Displays the long description of all registered models, and quit */
219 void model_help(const char *category, s_surf_model_description_t * table)
220 {
221   int i;
222   printf("Long description of the %s models accepted by this simulator:\n",
223          category);
224   for (i = 0; table[i].name; i++)
225     printf("  %s: %s\n", table[i].name, table[i].description);
226 }
227
228 int find_model_description(s_surf_model_description_t * table,
229                            const char *name)
230 {
231   int i;
232   char *name_list = NULL;
233
234   for (i = 0; table[i].name; i++)
235     if (!strcmp(name, table[i].name)) {
236       return i;
237     }
238   name_list = strdup(table[0].name);
239   for (i = 1; table[i].name; i++) {
240     name_list =
241         xbt_realloc(name_list,
242                     strlen(name_list) + strlen(table[i].name) + 3);
243     strcat(name_list, ", ");
244     strcat(name_list, table[i].name);
245   }
246   xbt_die("Model '%s' is invalid! Valid models are: %s.", name, name_list);
247   return -1;
248 }
249
250 double generic_maxmin_share_resources(xbt_swag_t running_actions,
251                                       size_t offset,
252                                       lmm_system_t sys,
253                                       void (*solve) (lmm_system_t))
254 {
255   surf_action_t action = NULL;
256   double min = -1;
257   double value = -1;
258 #define VARIABLE(action) (*((lmm_variable_t*)(((char *) (action)) + (offset))))
259
260   solve(sys);
261
262   xbt_swag_foreach(action, running_actions) {
263     value = lmm_variable_getvalue(VARIABLE(action));
264     if ((value > 0) || (action->max_duration >= 0))
265       break;
266   }
267
268   if (!action)
269     return -1.0;
270
271   if (value > 0) {
272     if (action->remains > 0)
273       min = action->remains / value;
274     else
275       min = 0.0;
276     if ((action->max_duration >= 0) && (action->max_duration < min))
277       min = action->max_duration;
278   } else
279     min = action->max_duration;
280
281
282   for (action = xbt_swag_getNext(action, running_actions->offset);
283        action;
284        action = xbt_swag_getNext(action, running_actions->offset)) {
285     value = lmm_variable_getvalue(VARIABLE(action));
286     if (value > 0) {
287       if (action->remains > 0)
288         value = action->remains / value;
289       else
290         value = 0.0;
291       if (value < min) {
292         min = value;
293         XBT_DEBUG("Updating min (value) with %p: %f", action, min);
294       }
295     }
296     if ((action->max_duration >= 0) && (action->max_duration < min)) {
297       min = action->max_duration;
298       XBT_DEBUG("Updating min (duration) with %p: %f", action, min);
299     }
300   }
301   XBT_DEBUG("min value : %f", min);
302
303 #undef VARIABLE
304   return min;
305 }
306
307 double generic_share_resources_lazy(double now, surf_model_t model)
308 {
309   surf_action_lmm_t action = NULL;
310   double min = -1;
311   double value;
312
313   XBT_DEBUG
314       ("Before share resources, the size of modified actions set is %d",
315        xbt_swag_size(model->model_private->modified_set));
316
317   lmm_solve(model->model_private->maxmin_system);
318
319   XBT_DEBUG
320       ("After share resources, The size of modified actions set is %d",
321        xbt_swag_size(model->model_private->modified_set));
322
323   while((action = xbt_swag_extract(model->model_private->modified_set))) {
324     int max_dur_flag = 0;
325
326     if (action->generic_action.state_set !=
327         model->states.running_action_set)
328       continue;
329
330     /* bogus priority, skip it */
331     if (action->generic_action.priority <= 0)
332       continue;
333
334     generic_update_action_remaining_lazy(action,now);
335
336     min = -1;
337     value = lmm_variable_getvalue(action->variable);
338     if (value > 0) {
339       if (action->generic_action.remains > 0) {
340         value = action->generic_action.remains / value;
341         min = now + value;
342       } else {
343         value = 0.0;
344         min = now;
345       }
346     }
347
348     if ((action->generic_action.max_duration != NO_MAX_DURATION)
349         && (min == -1
350             || action->generic_action.start +
351             action->generic_action.max_duration < min)) {
352       min = action->generic_action.start +
353           action->generic_action.max_duration;
354       max_dur_flag = 1;
355     }
356
357     XBT_DEBUG("Action(%p) Start %lf Finish %lf Max_duration %lf", action,
358         action->generic_action.start, now + value,
359         action->generic_action.max_duration);
360
361     if (min != -1) {
362       surf_action_lmm_heap_remove(model->model_private->action_heap,action);
363       surf_action_lmm_heap_insert(model->model_private->action_heap,action, min, max_dur_flag ? MAX_DURATION : NORMAL);
364       XBT_DEBUG("Insert at heap action(%p) min %lf now %lf", action, min,
365                 now);
366     } else DIE_IMPOSSIBLE;
367   }
368
369   //hereafter must have already the min value for this resource model
370   if (xbt_heap_size(model->model_private->action_heap) > 0)
371     min = xbt_heap_maxkey(model->model_private->action_heap) - now;
372   else
373     min = -1;
374
375   XBT_DEBUG("The minimum with the HEAP %lf", min);
376
377   return min;
378 }
379 static XBT_INLINE void routing_asr_host_free(void *p)
380 {
381   sg_routing_edge_t elm = p;
382   free(elm->name);
383   xbt_free(elm);
384 }
385
386 static XBT_INLINE void routing_asr_prop_free(void *p)
387 {
388   xbt_dict_t elm = p;
389   xbt_dict_free(&elm);
390 }
391
392 void sg_version(int *ver_major,int *ver_minor,int *ver_patch) {
393   *ver_major = SIMGRID_VERSION_MAJOR;
394   *ver_minor = SIMGRID_VERSION_MINOR;
395   *ver_patch = SIMGRID_VERSION_PATCH;
396 }
397
398 void surf_init(int *argc, char **argv)
399 {
400   XBT_DEBUG("Create all Libs");
401   host_lib = xbt_lib_new();
402   link_lib = xbt_lib_new();
403   as_router_lib = xbt_lib_new();
404   storage_lib = xbt_lib_new();
405   storage_type_lib = xbt_lib_new();
406   watched_hosts_lib = xbt_dict_new();
407
408   XBT_DEBUG("Add routing levels");
409   ROUTING_HOST_LEVEL = xbt_lib_add_level(host_lib,routing_asr_host_free);
410   ROUTING_ASR_LEVEL  = xbt_lib_add_level(as_router_lib,routing_asr_host_free);
411   ROUTING_PROP_ASR_LEVEL = xbt_lib_add_level(as_router_lib,routing_asr_prop_free);
412
413   XBT_DEBUG("Add SURF levels");
414   SURF_CPU_LEVEL = xbt_lib_add_level(host_lib,surf_resource_free);
415   SURF_WKS_LEVEL = xbt_lib_add_level(host_lib,surf_resource_free);
416   SURF_LINK_LEVEL = xbt_lib_add_level(link_lib,surf_resource_free);
417
418   xbt_init(argc, argv);
419   if (!model_list)
420     model_list = xbt_dynar_new(sizeof(surf_model_private_t), NULL);
421   if (!model_list_invoke)
422     model_list_invoke = xbt_dynar_new(sizeof(surf_model_private_t), NULL);
423   if (!history)
424     history = tmgr_history_new();
425
426 #ifdef HAVE_TRACING
427   TRACE_add_start_function(TRACE_surf_alloc);
428   TRACE_add_end_function(TRACE_surf_release);
429 #endif
430
431   sg_config_init(argc, argv);
432
433   surf_action_init();
434   if (MC_is_active())
435     MC_memory_init();
436 }
437
438 #ifdef _XBT_WIN32
439 # define FILE_DELIM "\\"
440 #else
441 # define FILE_DELIM "/"         /* FIXME: move to better location */
442 #endif
443
444 FILE *surf_fopen(const char *name, const char *mode)
445 {
446   unsigned int cpt;
447   char *path_elm = NULL;
448   char *buff;
449   FILE *file = NULL;
450
451   xbt_assert(name);
452
453   if (__surf_is_absolute_file_path(name))       /* don't mess with absolute file names */
454     return fopen(name, mode);
455
456   /* search relative files in the path */
457   xbt_dynar_foreach(surf_path, cpt, path_elm) {
458     buff = bprintf("%s" FILE_DELIM "%s", path_elm, name);
459     file = fopen(buff, mode);
460     free(buff);
461
462     if (file)
463       return file;
464   }
465   return NULL;
466 }
467
468 void surf_exit(void)
469 {
470   unsigned int iter;
471   surf_model_t model = NULL;
472
473   sg_config_finalize();
474
475   xbt_dynar_foreach(model_list, iter, model)
476       model->model_private->finalize(model);
477   xbt_dynar_free(&model_list);
478
479   xbt_dynar_free(&model_list_invoke);
480
481   routing_exit();
482
483   if (maxmin_system) {
484     lmm_system_free(maxmin_system);
485     maxmin_system = NULL;
486   }
487   if (history) {
488     tmgr_history_free(history);
489     history = NULL;
490   }
491   surf_action_exit();
492
493 #ifdef CONTEXT_THREADS
494   xbt_parmap_destroy(surf_parmap);
495   xbt_free(surf_mins);
496   surf_mins = NULL;
497 #endif
498
499   xbt_dynar_free(&surf_path);
500
501   xbt_lib_free(&host_lib);
502   xbt_lib_free(&link_lib);
503   xbt_lib_free(&as_router_lib);
504   xbt_lib_free(&storage_lib);
505   xbt_lib_free(&storage_type_lib);
506
507   xbt_dict_free(&watched_hosts_lib);
508
509   tmgr_finalize();
510   surf_parse_lex_destroy();
511   surf_parse_free_callbacks();
512
513   NOW = 0;                      /* Just in case the user plans to restart the simulation afterward */
514 }
515
516 void surf_presolve(void)
517 {
518   double next_event_date = -1.0;
519   tmgr_trace_event_t event = NULL;
520   double value = -1.0;
521   surf_resource_t resource = NULL;
522   surf_model_t model = NULL;
523   unsigned int iter;
524
525   XBT_DEBUG
526       ("First Run! Let's \"purge\" events and put models in the right state");
527   while ((next_event_date = tmgr_history_next_date(history)) != -1.0) {
528     if (next_event_date > NOW)
529       break;
530     while ((event =
531             tmgr_history_get_next_event_leq(history, next_event_date,
532                                             &value,
533                                             (void **) &resource))) {
534       if (value >= 0){
535         resource->model->model_private->update_resource_state(resource,
536                                                               event, value,
537                                                               NOW);
538       }
539     }
540   }
541
542   /* FIXME: see what is check_update_action_state(). if necessary, use model_list_invoke. */
543   xbt_dynar_foreach(model_list, iter, model)
544       model->model_private->update_actions_state(model, NOW, 0.0);
545 }
546
547 double surf_solve(double max_date)
548 {
549   min = -1.0; /* duration */
550   double next_event_date = -1.0;
551   double model_next_action_end = -1.0;
552   double value = -1.0;
553   surf_resource_t resource = NULL;
554   surf_model_t model = NULL;
555   tmgr_trace_event_t event = NULL;
556   unsigned int iter;
557
558   if (max_date != -1.0 && max_date != NOW) {
559     min = max_date - NOW;
560   }
561
562   XBT_DEBUG("Looking for next action end for all models except NS3");
563
564   if (surf_mins == NULL) {
565     surf_mins = xbt_new(double, xbt_dynar_length(model_list_invoke));
566   }
567   surf_min_index = 0;
568
569   /* sequential version */
570   xbt_dynar_foreach(model_list_invoke, iter, model) {
571     surf_share_resources(model);
572   }
573
574   unsigned i;
575   for (i = 0; i < xbt_dynar_length(model_list_invoke); i++) {
576     if ((min < 0.0 || surf_mins[i] < min)
577         && surf_mins[i] >= 0.0) {
578       min = surf_mins[i];
579     }
580   }
581
582   XBT_DEBUG("Min for resources (remember that NS3 don't update that value) : %f", min);
583
584   XBT_DEBUG("Looking for next trace event");
585
586   do {
587     XBT_DEBUG("Next TRACE event : %f", next_event_date);
588
589     next_event_date = tmgr_history_next_date(history);
590
591     if(surf_network_model->name && !strcmp(surf_network_model->name,"network NS3")){
592       if(next_event_date!=-1.0 && min!=-1.0) {
593         min = MIN(next_event_date - NOW, min);
594       } else{
595         min = MAX(next_event_date - NOW, min);
596       }
597
598       XBT_DEBUG("Run for network at most %f", min);
599       // run until min or next flow
600       model_next_action_end = surf_network_model->model_private->share_resources(surf_network_model, min);
601
602       XBT_DEBUG("Min for network : %f", model_next_action_end);
603       if(model_next_action_end>=0.0)
604         min = model_next_action_end;
605     }
606
607     if (next_event_date < 0.0) {
608       XBT_DEBUG("no next TRACE event. Stop searching for it");
609       break;
610     }
611
612     if ((min == -1.0) || (next_event_date > NOW + min)) break;
613
614     XBT_DEBUG("Updating models (min = %g, NOW = %g, next_event_date = %g)",min, NOW, next_event_date);
615     while ((event =
616             tmgr_history_get_next_event_leq(history, next_event_date,
617                                             &value,
618                                             (void **) &resource))) {
619       if (resource->model->model_private->resource_used(resource)) {
620         min = next_event_date - NOW;
621         XBT_DEBUG
622             ("This event will modify model state. Next event set to %f",
623              min);
624       }
625       /* update state of model_obj according to new value. Does not touch lmm.
626          It will be modified if needed when updating actions */
627       XBT_DEBUG("Calling update_resource_state for resource %s with min %lf",
628              resource->model->name, min);
629       resource->model->model_private->update_resource_state(resource,
630                                                             event, value,
631                                                             next_event_date);
632     }
633   } while (1);
634
635   /* FIXME: Moved this test to here to avoid stopping simulation if there are actions running on cpus and all cpus are with availability = 0.
636    * This may cause an infinite loop if one cpu has a trace with periodicity = 0 and the other a trace with periodicity > 0.
637    * The options are: all traces with same periodicity(0 or >0) or we need to change the way how the events are managed */
638   if (min == -1.0) {
639   XBT_DEBUG("No next event at all. Bail out now.");
640     return -1.0;
641   }
642
643   XBT_DEBUG("Duration set to %f", min);
644
645   NOW = NOW + min;
646   /* FIXME: model_list or model_list_invoke? revisit here later */
647   /* sequential version */
648   xbt_dynar_foreach(model_list, iter, model) {
649     surf_update_actions_state(model);
650   }
651
652 #ifdef HAVE_TRACING
653   TRACE_paje_dump_buffer (0);
654 #endif
655
656   return min;
657 }
658
659 XBT_INLINE double surf_get_clock(void)
660 {
661   return NOW;
662 }
663
664 static void surf_share_resources(surf_model_t model)
665 {
666   double next_action_end = -1.0;
667   int i = __sync_fetch_and_add(&surf_min_index, 1);
668   if (strcmp(model->name,"network NS3")) {
669     XBT_DEBUG("Running for Resource [%s]", model->name);
670     next_action_end = model->model_private->share_resources(model, NOW);
671     XBT_DEBUG("Resource [%s] : next action end = %f",
672         model->name, next_action_end);
673   }
674   surf_mins[i] = next_action_end;
675 }
676
677 static void surf_update_actions_state(surf_model_t model)
678 {
679   model->model_private->update_actions_state(model, NOW, min);
680 }
681
682 /* This function is a pimple that we ought to fix. But it won't be easy.
683  *
684  * The surf_solve() function does properly return the set of actions that changed.
685  * Instead, each model change a global data, and then the caller of surf_solve must
686  * pick into these sets of action_failed and action_done.
687  *
688  * This was not clean but ok as long as we didn't had to restart the processes when the resource comes back up.
689  * We worked by putting sentinel actions on every resources we are interested in,
690  * so that surf informs us if/when the corresponding resource fails.
691  *
692  * But this does not work to get Simix informed of when a resource comes back up, and this is where this pimple comes.
693  * We have a set of resources that are currently down and for which simix needs to know when it comes back up.
694  * And the current function is called *at every simulation step* to sweep over that set, searching for a resource
695  * that was turned back up in the meanwhile. This is UGLY and slow.
696  *
697  * The proper solution would be to not rely on globals for the action_failed and action_done swags.
698  * They must be passed as parameter by the caller (the handling of these actions in simix may let you
699  * think that these two sets can be merged, but their handling in SimDag induce the contrary unless this
700  * simdag code can check by itself whether the action is done of failed -- seems very doable, but yet more
701  * cleanup to do).
702  *
703  * Once surf_solve() is passed the set of actions that changed, you want to add a new set of resources back up
704  * as parameter to this function. You also want to add a boolean field "restart_watched" to each resource, and
705  * make sure that whenever a resource with this field enabled comes back up, it's added to that set so that Simix
706  * sees it and react accordingly. This would kill that need for surf to call simix.
707  *
708  */
709
710 static void remove_watched_host(void *key)
711 {
712   xbt_dict_remove(watched_hosts_lib, *(char**)key);
713 }
714
715 void surf_watched_hosts(void)
716 {
717   char *key;
718   void *host;
719   xbt_dict_cursor_t cursor;
720   xbt_dynar_t hosts = xbt_dynar_new(sizeof(char*), NULL);
721
722   XBT_DEBUG("Check for host SURF_RESOURCE_ON on watched_hosts_lib");
723   xbt_dict_foreach(watched_hosts_lib,cursor,key,host)
724   {
725     if(SIMIX_host_get_state(host) == SURF_RESOURCE_ON){
726       XBT_INFO("Restart processes on host: %s",SIMIX_host_get_name(host));
727       SIMIX_host_autorestart(host);
728       xbt_dynar_push_as(hosts, char*, key);
729     }
730     else
731       XBT_DEBUG("See SURF_RESOURCE_OFF on host: %s",key);
732   }
733   xbt_dynar_map(hosts, remove_watched_host);
734   xbt_dynar_free(&hosts);
735 }