Logo AND Algorithmique Numérique Distribuée

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