Logo AND Algorithmique Numérique Distribuée

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