Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' into vmtrace
[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 #ifdef HAVE_TRACING
422   TRACE_add_start_function(TRACE_surf_alloc);
423   TRACE_add_end_function(TRACE_surf_release);
424 #endif
425
426   sg_config_init(argc, argv);
427
428   surf_action_init();
429   if (MC_is_active())
430     MC_memory_init();
431 }
432
433 #ifdef _XBT_WIN32
434 # define FILE_DELIM "\\"
435 #else
436 # define FILE_DELIM "/"         /* FIXME: move to better location */
437 #endif
438
439 FILE *surf_fopen(const char *name, const char *mode)
440 {
441   unsigned int cpt;
442   char *path_elm = NULL;
443   char *buff;
444   FILE *file = NULL;
445
446   xbt_assert(name);
447
448   if (__surf_is_absolute_file_path(name))       /* don't mess with absolute file names */
449     return fopen(name, mode);
450
451   /* search relative files in the path */
452   xbt_dynar_foreach(surf_path, cpt, path_elm) {
453     buff = bprintf("%s" FILE_DELIM "%s", path_elm, name);
454     file = fopen(buff, mode);
455     free(buff);
456
457     if (file)
458       return file;
459   }
460   return NULL;
461 }
462
463 void surf_exit(void)
464 {
465   unsigned int iter;
466   surf_model_t model = NULL;
467
468   sg_config_finalize();
469
470   xbt_dynar_foreach(model_list, iter, model)
471       model->model_private->finalize();
472   xbt_dynar_free(&model_list);
473   routing_exit();
474
475   if (maxmin_system) {
476     lmm_system_free(maxmin_system);
477     maxmin_system = NULL;
478   }
479   if (history) {
480     tmgr_history_free(history);
481     history = NULL;
482   }
483   surf_action_exit();
484
485 #ifdef CONTEXT_THREADS
486   xbt_parmap_destroy(surf_parmap);
487   xbt_free(surf_mins);
488   surf_mins = NULL;
489 #endif
490
491   xbt_dynar_free(&surf_path);
492
493   xbt_lib_free(&host_lib);
494   xbt_lib_free(&link_lib);
495   xbt_lib_free(&as_router_lib);
496   xbt_lib_free(&storage_lib);
497   xbt_lib_free(&storage_type_lib);
498
499   xbt_dict_free(&watched_hosts_lib);
500
501   tmgr_finalize();
502   surf_parse_lex_destroy();
503   surf_parse_free_callbacks();
504
505   NOW = 0;                      /* Just in case the user plans to restart the simulation afterward */
506 }
507
508 void surf_presolve(void)
509 {
510   double next_event_date = -1.0;
511   tmgr_trace_event_t event = NULL;
512   double value = -1.0;
513   surf_resource_t resource = NULL;
514   surf_model_t model = NULL;
515   unsigned int iter;
516
517   XBT_DEBUG
518       ("First Run! Let's \"purge\" events and put models in the right state");
519   while ((next_event_date = tmgr_history_next_date(history)) != -1.0) {
520     if (next_event_date > NOW)
521       break;
522     while ((event =
523             tmgr_history_get_next_event_leq(history, next_event_date,
524                                             &value,
525                                             (void **) &resource))) {
526       if (value >= 0){
527         resource->model->model_private->update_resource_state(resource,
528                                                               event, value,
529                                                               NOW);
530       }
531     }
532   }
533   xbt_dynar_foreach(model_list, iter, model)
534       model->model_private->update_actions_state(NOW, 0.0);
535 }
536
537 double surf_solve(double max_date)
538 {
539   min = -1.0; /* duration */
540   double next_event_date = -1.0;
541   double model_next_action_end = -1.0;
542   double value = -1.0;
543   surf_resource_t resource = NULL;
544   surf_model_t model = NULL;
545   tmgr_trace_event_t event = NULL;
546   unsigned int iter;
547
548   if (max_date != -1.0 && max_date != NOW) {
549     min = max_date - NOW;
550   }
551
552   XBT_DEBUG("Looking for next action end for all models except NS3");
553
554   if (surf_mins == NULL) {
555     surf_mins = xbt_new(double, xbt_dynar_length(model_list));
556   }
557   surf_min_index = 0;
558
559
560   if (surf_get_nthreads() > 1) {
561     /* parallel version */
562 #ifdef CONTEXT_THREADS
563     xbt_parmap_apply(surf_parmap, (void_f_pvoid_t) surf_share_resources, model_list);
564 #else
565     xbt_die("Asked to run in parallel, but no thread at hand...");
566 #endif
567   }
568   else {
569     /* sequential version */
570     xbt_dynar_foreach(model_list, iter, model) {
571       surf_share_resources(model);
572     }
573   }
574
575   unsigned i;
576   for (i = 0; i < xbt_dynar_length(model_list); i++) {
577     if ((min < 0.0 || surf_mins[i] < min)
578         && surf_mins[i] >= 0.0) {
579       min = surf_mins[i];
580     }
581   }
582
583   XBT_DEBUG("Min for resources (remember that NS3 don't update that value) : %f", min);
584
585   XBT_DEBUG("Looking for next trace event");
586
587   do {
588     XBT_DEBUG("Next TRACE event : %f", next_event_date);
589
590     next_event_date = tmgr_history_next_date(history);
591
592     if(surf_network_model->name && !strcmp(surf_network_model->name,"network NS3")){
593       if(next_event_date!=-1.0 && min!=-1.0) {
594         min = MIN(next_event_date - NOW, min);
595       } else{
596         min = MAX(next_event_date - NOW, min);
597       }
598
599       XBT_DEBUG("Run for network at most %f", min);
600       // run until min or next flow
601       model_next_action_end = surf_network_model->model_private->share_resources(min);
602
603       XBT_DEBUG("Min for network : %f", model_next_action_end);
604       if(model_next_action_end>=0.0)
605         min = model_next_action_end;
606     }
607
608     if (next_event_date < 0.0) {
609       XBT_DEBUG("no next TRACE event. Stop searching for it");
610       break;
611     }
612
613     if ((min == -1.0) || (next_event_date > NOW + min)) break;
614
615     XBT_DEBUG("Updating models");
616     while ((event =
617             tmgr_history_get_next_event_leq(history, next_event_date,
618                                             &value,
619                                             (void **) &resource))) {
620       if (resource->model->model_private->resource_used(resource)) {
621         min = next_event_date - NOW;
622         XBT_DEBUG
623             ("This event will modify model state. Next event set to %f",
624              min);
625       }
626       /* update state of model_obj according to new value. Does not touch lmm.
627          It will be modified if needed when updating actions */
628       XBT_DEBUG("Calling update_resource_state for resource %s with min %lf",
629              resource->model->name, min);
630       resource->model->model_private->update_resource_state(resource,
631                                                             event, value,
632                                                             NOW + min);
633     }
634   } while (1);
635
636   /* FIXME: Moved this test to here to avoid stopping simulation if there are actions running on cpus and all cpus are with availability = 0.
637    * This may cause an infinite loop if one cpu has a trace with periodicity = 0 and the other a trace with periodicity > 0.
638    * The options are: all traces with same periodicity(0 or >0) or we need to change the way how the events are managed */
639   if (min == -1.0) {
640   XBT_DEBUG("No next event at all. Bail out now.");
641     return -1.0;
642   }
643
644   XBT_DEBUG("Duration set to %f", min);
645
646   NOW = NOW + min;
647
648   if (surf_get_nthreads() > 1) {
649     /* parallel version */
650 #ifdef CONTEXT_THREADS
651     xbt_parmap_apply(surf_parmap, (void_f_pvoid_t) surf_update_actions_state, model_list);
652 #endif
653   }
654   else {
655     /* sequential version */
656     xbt_dynar_foreach(model_list, iter, model) {
657       surf_update_actions_state(model);
658     }
659   }
660
661 #ifdef HAVE_TRACING
662   TRACE_paje_dump_buffer (0);
663 #endif
664
665   return min;
666 }
667
668 XBT_INLINE double surf_get_clock(void)
669 {
670   return NOW;
671 }
672
673 static void surf_share_resources(surf_model_t model)
674 {
675   double next_action_end = -1.0;
676   int i = __sync_fetch_and_add(&surf_min_index, 1);
677   if (strcmp(model->name,"network NS3")) {
678     XBT_DEBUG("Running for Resource [%s]", model->name);
679     next_action_end = model->model_private->share_resources(NOW);
680     XBT_DEBUG("Resource [%s] : next action end = %f",
681         model->name, next_action_end);
682   }
683   surf_mins[i] = next_action_end;
684 }
685
686 static void surf_update_actions_state(surf_model_t model)
687 {
688   model->model_private->update_actions_state(NOW, min);
689 }
690
691 /**
692  * \brief Returns the number of parallel threads used to update the models.
693  * \return the number of threads (1 means no parallelism)
694  */
695 int surf_get_nthreads(void) {
696   return surf_nthreads;
697 }
698
699 /**
700  * \brief Sets the number of parallel threads used to update the models.
701  *
702  * A value of 1 means no parallelism.
703  *
704  * \param nb_threads the number of threads to use
705  */
706 void surf_set_nthreads(int nthreads) {
707
708   if (nthreads<=0) {
709      nthreads = xbt_os_get_numcores();
710      XBT_INFO("Auto-setting surf/nthreads to %d",nthreads);
711   }
712
713 #ifdef CONTEXT_THREADS
714   xbt_parmap_destroy(surf_parmap);
715   surf_parmap = NULL;
716 #endif
717
718   if (nthreads > 1) {
719 #ifdef CONTEXT_THREADS
720     surf_parmap = xbt_parmap_new(nthreads, XBT_PARMAP_DEFAULT);
721 #else
722     THROWF(arg_error, 0, "Cannot activate parallel threads in Surf: your architecture does not support threads");
723 #endif
724   }
725
726   surf_nthreads = nthreads;
727 }
728
729 /* This function is a pimple that we ought to fix. But it won't be easy.
730  *
731  * The surf_solve() function does properly return the set of actions that changed.
732  * Instead, each model change a global data, and then the caller of surf_solve must
733  * pick into these sets of action_failed and action_done.
734  *
735  * This was not clean but ok as long as we didn't had to restart the processes when the resource comes back up.
736  * We worked by putting sentinel actions on every resources we are interested in,
737  * so that surf informs us if/when the corresponding resource fails.
738  *
739  * But this does not work to get Simix informed of when a resource comes back up, and this is where this pimple comes.
740  * We have a set of resources that are currently down and for which simix needs to know when it comes back up.
741  * And the current function is called *at every simulation step* to sweep over that set, searching for a resource
742  * that was turned back up in the meanwhile. This is UGLY and slow.
743  *
744  * The proper solution would be to not rely on globals for the action_failed and action_done swags.
745  * They must be passed as parameter by the caller (the handling of these actions in simix may let you
746  * think that these two sets can be merged, but their handling in SimDag induce the contrary unless this
747  * simdag code can check by itself whether the action is done of failed -- seems very doable, but yet more
748  * cleanup to do).
749  *
750  * Once surf_solve() is passed the set of actions that changed, you want to add a new set of resources back up
751  * as parameter to this function. You also want to add a boolean field "restart_watched" to each resource, and
752  * make sure that whenever a resource with this field enabled comes back up, it's added to that set so that Simix
753  * sees it and react accordingly. This would kill that need for surf to call simix.
754  *
755  */
756 void surf_watched_hosts(void)
757 {
758   char *key;
759   void *host;
760   xbt_dict_cursor_t cursor;
761
762   XBT_DEBUG("Check for host SURF_RESOURCE_ON on watched_hosts_lib");
763   xbt_dict_foreach(watched_hosts_lib,cursor,key,host)
764   {
765     if(SIMIX_host_get_state(host) == SURF_RESOURCE_ON){
766       XBT_INFO("Restart processes on host: %s",SIMIX_host_get_name(host));
767       SIMIX_host_autorestart(host);
768       xbt_dict_remove(watched_hosts_lib,key);
769     }
770     else
771       XBT_DEBUG("See SURF_RESOURCE_OFF on host: %s",key);
772   }
773 }