Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge changes of maxmin_selective_update branch into the trunk.
[simgrid.git] / src / simix / smx_global.c
1 /*      $Id$     */
2
3 /* Copyright (c) 2007 Arnaud Legrand, Bruno Donassolo.
4    All rights reserved.                                          */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #include "private.h"
10 #include "xbt/sysdep.h"
11 #include "xbt/log.h"
12 #include "xbt/str.h"
13 #include "xbt/ex.h"             /* ex_backtrace_display */
14 XBT_LOG_EXTERNAL_CATEGORY(simix);
15 XBT_LOG_EXTERNAL_CATEGORY(simix_action);
16 XBT_LOG_EXTERNAL_CATEGORY(simix_deployment);
17 XBT_LOG_EXTERNAL_CATEGORY(simix_environment);
18 XBT_LOG_EXTERNAL_CATEGORY(simix_host);
19 XBT_LOG_EXTERNAL_CATEGORY(simix_process);
20 XBT_LOG_EXTERNAL_CATEGORY(simix_synchro);
21 XBT_LOG_EXTERNAL_CATEGORY(simix_context);
22 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_kernel, simix,
23                                 "Logging specific to SIMIX (kernel)");
24
25 SIMIX_Global_t simix_global = NULL;
26
27
28 /* FIXME: Yeah, I'll do it in a portable maner one day [Mt] */
29 #include <signal.h>
30
31 static void _XBT_CALL inthandler(int ignored)
32 {
33   INFO0("CTRL-C pressed. Displaying status and bailing out");
34   SIMIX_display_process_status();
35   exit(1);
36 }
37
38 /********************************* SIMIX **************************************/
39
40 /**
41  * \brief Initialize SIMIX internal data.
42  *
43  * \param argc Argc
44  * \param argv Argv
45  */
46 void SIMIX_global_init(int *argc, char **argv)
47 {
48   s_smx_process_t proc;
49
50   if (!simix_global) {
51     /* Connect our log channels: that must be done manually under windows */
52     XBT_LOG_CONNECT(simix_action, simix);
53     XBT_LOG_CONNECT(simix_deployment, simix);
54     XBT_LOG_CONNECT(simix_environment, simix);
55     XBT_LOG_CONNECT(simix_host, simix);
56     XBT_LOG_CONNECT(simix_kernel, simix);
57     XBT_LOG_CONNECT(simix_process, simix);
58     XBT_LOG_CONNECT(simix_synchro, simix);
59     XBT_LOG_CONNECT(simix_context, simix);
60
61     simix_global = xbt_new0(s_SIMIX_Global_t, 1);
62
63     simix_global->host = xbt_dict_new();
64     simix_global->process_to_run =
65       xbt_swag_new(xbt_swag_offset(proc, synchro_hookup));
66     simix_global->process_list =
67       xbt_swag_new(xbt_swag_offset(proc, process_hookup));
68     simix_global->process_to_destroy =
69       xbt_swag_new(xbt_swag_offset(proc, destroy_hookup));
70
71     simix_global->current_process = NULL;
72     simix_global->maestro_process = NULL;
73     simix_global->registered_functions = xbt_dict_new();
74
75     simix_global->create_process_function = NULL;
76     simix_global->kill_process_function = NULL;
77     simix_global->cleanup_process_function = SIMIX_process_cleanup;
78
79     SIMIX_context_mod_init();
80     SIMIX_create_maestro_process();
81
82     /* context exception handlers */
83     __xbt_ex_ctx = SIMIX_process_get_exception;
84     __xbt_ex_terminate = SIMIX_process_exception_terminate;
85
86
87     /* Prepare to display some more info when dying on Ctrl-C pressing */
88     signal(SIGINT, inthandler);
89     surf_init(argc, argv);      /* Initialize SURF structures */
90   }
91 }
92
93 /* Debug purpose, incomplete */
94 void SIMIX_display_process_status(void)
95 {
96   smx_process_t process = NULL;
97   xbt_fifo_item_t item = NULL;
98   smx_action_t act;
99   int nbprocess = xbt_swag_size(simix_global->process_list);
100
101   INFO1("%d processes are still running, waiting for something.", nbprocess);
102   /*  List the process and their state */
103   INFO0
104     ("Legend of the following listing: \"<process> on <host>: <status>.\"");
105   xbt_swag_foreach(process, simix_global->process_list) {
106     char *who, *who2;
107
108     asprintf(&who, "%s on %s: %s",
109              process->name,
110              process->smx_host->name,
111              (process->blocked) ? "[BLOCKED] "
112              : ((process->suspended) ? "[SUSPENDED] " : ""));
113
114     if (process->mutex) {
115       who2 =
116         bprintf("%s Blocked on mutex %p", who,
117                 (XBT_LOG_ISENABLED(simix_kernel, xbt_log_priority_verbose)) ?
118                 process->mutex : (void *) 0xdead);
119       free(who);
120       who = who2;
121     } else if (process->cond) {
122       who2 =
123         bprintf
124         ("%s Blocked on condition %p; Waiting for the following actions:",
125          who,
126          (XBT_LOG_ISENABLED(simix_kernel, xbt_log_priority_verbose)) ?
127          process->cond : (void *) 0xdead);
128       free(who);
129       who = who2;
130       xbt_fifo_foreach(process->cond->actions, item, act, smx_action_t) {
131         who2 =
132           bprintf("%s '%s'(%p)", who, act->name,
133                   (XBT_LOG_ISENABLED(simix_kernel, xbt_log_priority_verbose))
134                   ? act : (void *) 0xdead);
135         free(who);
136         who = who2;
137       }
138     } else {
139       who2 =
140         bprintf
141         ("%s Blocked in an unknown status (please report this bug)", who);
142       free(who);
143       who = who2;
144     }
145     INFO1("%s.", who);
146     free(who);
147   }
148 }
149
150
151 /**
152  * \brief Launch the SIMIX simulation, debug purpose
153  */
154 void __SIMIX_main(void)
155 {
156   smx_process_t process = NULL;
157   smx_cond_t cond = NULL;
158   smx_action_t smx_action;
159   xbt_fifo_t actions_done = xbt_fifo_new();
160   xbt_fifo_t actions_failed = xbt_fifo_new();
161
162   /* Clean IO before the run */
163   fflush(stdout);
164   fflush(stderr);
165
166   //surf_solve(); /* Takes traces into account. Returns 0.0 */
167   /* xbt_fifo_size(msg_global->process_to_run) */
168
169   while (SIMIX_solve(actions_done, actions_failed) != -1.0) {
170
171     while ((smx_action = xbt_fifo_pop(actions_failed))) {
172
173       xbt_fifo_item_t _cursor;
174
175       DEBUG1("** %s failed **", smx_action->name);
176       xbt_fifo_foreach(smx_action->cond_list, _cursor, cond, smx_cond_t) {
177         xbt_swag_foreach(process, cond->sleeping) {
178           DEBUG2("\t preparing to wake up %s on %s",
179                  process->name, process->smx_host->name);
180         }
181         SIMIX_cond_broadcast(cond);
182         /* remove conditional from action */
183         SIMIX_unregister_action_to_condition(smx_action, cond);
184       }
185     }
186
187     while ((smx_action = xbt_fifo_pop(actions_done))) {
188       xbt_fifo_item_t _cursor;
189
190       DEBUG1("** %s done **", smx_action->name);
191       xbt_fifo_foreach(smx_action->cond_list, _cursor, cond, smx_cond_t) {
192         xbt_swag_foreach(process, cond->sleeping) {
193           DEBUG2("\t preparing to wake up %s on %s",
194                  process->name, process->smx_host->name);
195         }
196         SIMIX_cond_broadcast(cond);
197         /* remove conditional from action */
198         SIMIX_unregister_action_to_condition(smx_action, cond);
199       }
200     }
201   }
202   return;
203 }
204
205 /**
206  * \brief Kill all running process
207  *  Only maestro can kill everyone :)
208  */
209 void SIMIX_process_killall()
210 {
211   smx_process_t p = NULL;
212   xbt_assert0((simix_global->current_process == simix_global->maestro_process),
213               "You are not supposed to run this function here!");
214
215   while ((p = xbt_swag_extract(simix_global->process_list)))
216     SIMIX_process_kill(p);
217
218   SIMIX_process_empty_trash();
219
220   return;
221 }
222
223 /**
224  * \brief Clean the SIMIX simulation
225  *
226  * This functions remove the memory used by SIMIX
227  */
228 void SIMIX_clean(void)
229 {
230   /* Kill everyone (except maestro) */
231   SIMIX_process_killall();
232
233   /* Free the remaining data structures */
234   xbt_swag_free(simix_global->process_to_run);
235   xbt_swag_free(simix_global->process_to_destroy);
236   xbt_swag_free(simix_global->process_list);
237   simix_global->process_list = NULL;
238   simix_global->process_to_destroy = NULL;
239   xbt_dict_free(&(simix_global->registered_functions));
240   xbt_dict_free(&(simix_global->host));
241
242   /* Let's free maestro now */
243   SIMIX_context_free(simix_global->maestro_process->context);
244   xbt_free(simix_global->maestro_process->exception);
245   xbt_free(simix_global->maestro_process);  
246   simix_global->maestro_process = NULL;
247
248   /* Restore the default exception setup */
249   __xbt_ex_ctx = &__xbt_ex_ctx_default;
250   __xbt_ex_terminate = &__xbt_ex_terminate_default;
251   
252   /* Finish context module and SURF */
253   SIMIX_context_mod_exit();
254
255   surf_exit();
256
257   xbt_free(simix_global);
258   simix_global = NULL;
259
260   return;
261 }
262
263
264 /**
265  * \brief A clock (in second).
266  *
267  * \return Return the clock.
268  */
269 double SIMIX_get_clock(void)
270 {
271   return surf_get_clock();
272 }
273
274 /**
275  *      \brief Finish the simulation initialization
276  *
277  *      Must be called before the first call to SIMIX_solve()
278  */
279 void SIMIX_init(void)
280 {
281   surf_presolve();
282 }
283
284 /**
285  *      \brief Does a turn of the simulation
286  *
287  *      Executes a step in the surf simulation, adding to the two lists all the actions that finished on this turn. Schedules all processus in the process_to_run list.
288  *      \param actions_done List of actions done
289  *      \param actions_failed List of actions failed
290  *      \return The time spent to execute the simulation or -1 if the simulation ended
291  */
292 double SIMIX_solve(xbt_fifo_t actions_done, xbt_fifo_t actions_failed)
293 {
294
295   smx_process_t process = NULL;
296   unsigned int iter;
297   double elapsed_time = 0.0;
298   static int state_modifications = 1;
299
300   SIMIX_process_empty_trash();
301   if (xbt_swag_size(simix_global->process_to_run) && (elapsed_time > 0)) {
302     DEBUG0("**************************************************");
303   }
304
305   while ((process = xbt_swag_extract(simix_global->process_to_run))) {
306     DEBUG2("Scheduling %s on %s", process->name, process->smx_host->name);
307     SIMIX_process_schedule(process);
308   }
309
310   {
311     surf_action_t action = NULL;
312     surf_model_t model = NULL;
313     smx_action_t smx_action = NULL;
314
315     void *fun = NULL;
316     void *arg = NULL;
317
318     xbt_dynar_foreach(model_list, iter, model) {
319       if (xbt_swag_size(model->states.failed_action_set)
320           || xbt_swag_size(model->states.done_action_set)) {
321         state_modifications = 1;
322         break;
323       }
324     }
325
326     if (!state_modifications) {
327       DEBUG1("%f : Calling surf_solve", SIMIX_get_clock());
328       elapsed_time = surf_solve();
329       DEBUG1("Elapsed_time %f", elapsed_time);
330     }
331
332     while (surf_timer_model->extension.timer.get(&fun, (void *) &arg)) {
333       DEBUG2("got %p %p", fun, arg);
334       if (fun == SIMIX_process_create) {
335         smx_process_arg_t args = arg;
336         DEBUG2("Launching %s on %s", args->name, args->hostname);
337         process = SIMIX_process_create(args->name, args->code,
338                                        args->data, args->hostname,
339                                        args->argc, args->argv,
340                                        args->properties);
341         /* verify if process has been created */
342                 if (!process) {
343                         xbt_free(args);
344                         continue;
345                 }
346                 if (args->kill_time > SIMIX_get_clock()) {
347                         surf_timer_model->extension.timer.set(args->kill_time, (void *)
348                                                                                                 &SIMIX_process_kill,
349                                                                                                 (void *) process);
350                 }
351         xbt_free(args);
352       }
353       if (fun == simix_global->create_process_function) {
354         smx_process_arg_t args = arg;
355         DEBUG2("Launching %s on %s", args->name, args->hostname);
356         process =
357           (*simix_global->create_process_function) (args->name, args->code,
358                                                     args->data,
359                                                     args->hostname,
360                                                     args->argc, args->argv,
361                                                     args->properties);
362         /* verify if process has been created */
363         if (!process) {
364                 xbt_free(args);
365                 continue;
366         }
367         if (args->kill_time > SIMIX_get_clock()) {
368                 if (simix_global->kill_process_function)
369                         surf_timer_model->extension.timer.set(args->kill_time, (void *)
370                                                 simix_global->
371                                                 kill_process_function,
372                                                 process);
373                 else
374                         surf_timer_model->extension.timer.set(args->kill_time, (void *)
375                                                 &SIMIX_process_kill,
376                                                 (void *) process);
377         }
378         xbt_free(args);
379       }
380       if (fun == SIMIX_process_kill) {
381         process = arg;
382         DEBUG2("Killing %s on %s", process->name, process->smx_host->name);
383         SIMIX_process_kill(process);
384       }
385       if (fun == simix_global->kill_process_function) {
386         process = arg;
387         (*simix_global->kill_process_function) (process);
388       }
389     }
390
391     /* Wake up all process waiting for the action finish */
392     xbt_dynar_foreach(model_list, iter, model) {
393       while ((action = xbt_swag_extract(model->states.failed_action_set))) {
394         smx_action = action->data;
395         if (smx_action) {
396           xbt_fifo_unshift(actions_failed, smx_action);
397         }
398       }
399       while ((action = xbt_swag_extract(model->states.done_action_set))) {
400         smx_action = action->data;
401         if (smx_action) {
402           xbt_fifo_unshift(actions_done, smx_action);
403         }
404       }
405     }
406   }
407   state_modifications = 0;
408
409   if (elapsed_time == -1) {
410     if (xbt_swag_size(simix_global->process_list) == 0) {
411 /*                      INFO0("Congratulations ! Simulation terminated : all processes are over"); */
412     } else {
413       INFO0("Oops ! Deadlock or code not perfectly clean.");
414       SIMIX_display_process_status();
415       if (XBT_LOG_ISENABLED(simix, xbt_log_priority_debug) ||
416           XBT_LOG_ISENABLED(simix_kernel, xbt_log_priority_debug)) {
417         DEBUG0("Aborting!");
418         xbt_abort();
419       }
420       INFO0("Return a Warning.");
421     }
422   }
423   return elapsed_time;
424 }
425
426 /**
427  *      \brief Set the date to execute a function
428  *
429  * Set the date to execute the function on the surf.
430  *      \param date Date to execute function
431  *      \param function Function to be executed
432  *      \param arg Parameters of the function
433  *
434  */
435 void SIMIX_timer_set(double date, void *function, void *arg)
436 {
437   surf_timer_model->extension.timer.set(date, function, arg);
438 }
439
440 int SIMIX_timer_get(void **function, void **arg)
441 {
442   return surf_timer_model->extension.timer.get(function, arg);
443 }
444
445 /**
446  *      \brief Registers a function to create a process.
447  *
448  *      This function registers an user function to be called when a new process is created. The user function have to call the SIMIX_create_process function.
449  *      \param function Create process function
450  *
451  */
452 void SIMIX_function_register_process_create(smx_creation_func_t function)
453 {
454   xbt_assert0((simix_global->create_process_function == NULL),
455               "Data already set");
456
457   simix_global->create_process_function = function;
458 }
459
460 /**
461  *      \brief Registers a function to kill a process.
462  *
463  *      This function registers an user function to be called when a new process is killed. The user function have to call the SIMIX_kill_process function.
464  *      \param function Kill process function
465  *
466  */
467 void SIMIX_function_register_process_kill(void_f_pvoid_t function)
468 {
469   xbt_assert0((simix_global->kill_process_function == NULL),
470               "Data already set");
471
472   simix_global->kill_process_function = function;
473 }
474
475 /**
476  *      \brief Registers a function to cleanup a process.
477  *
478  *      This function registers an user function to be called when a new process ends properly.
479  *      \param function cleanup process function
480  *
481  */
482 void SIMIX_function_register_process_cleanup(void_f_pvoid_t function)
483 {
484   simix_global->cleanup_process_function = function;
485 }