Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
39ffe5d493951aa51866e227815c57cad6f41b34
[simgrid.git] / examples / simdag / sd_fail.c
1 /* Copyright (c) 2006, 2007, 2008, 2009, 2010. 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 <stdio.h>
8 #include <stdlib.h>
9 #include "simdag/simdag.h"
10 #include "xbt/ex.h"
11 #include "xbt/log.h"
12
13 XBT_LOG_NEW_DEFAULT_CATEGORY(sd_fail,
14                              "Logging specific to this SimDag example");
15
16 int main(int argc, char **argv)
17 {
18   SD_task_t task;
19
20   /* initialization of SD */
21   SD_init(&argc, argv);
22
23   /* creation of the environment */
24   SD_create_environment("./faulty_host.xml");
25  
26   /* creation of a single task that will poorly fail when the workstation
27    * will stop */
28
29   task = SD_task_create_comp_seq("Poor task", NULL, 2e10);
30
31   XBT_INFO("Schedule task '%s' on workstation 'Faulty Host'",
32            SD_task_get_name(task));
33
34   SD_task_schedulel(task, 1, SD_workstation_get_by_name("Faulty Host"));
35
36   SD_simulate(-1.0);
37
38   SD_task_dump(task);
39
40   XBT_INFO("Task %s has failed. %.f flops remain to be done",
41            SD_task_get_name(task),
42            SD_task_get_remaining_amount(task));
43
44   XBT_INFO("let's unschedule taks %s and reschedule it on the 'Safe Host'",
45            SD_task_get_name(task));
46   SD_task_unschedule(task);
47   SD_task_schedulel(task, 1, SD_workstation_get_by_name("Safe Host"));
48
49   XBT_INFO("Run the simulation again");
50   SD_simulate(-1.0);
51
52   SD_task_dump(task);
53   XBT_INFO("Task '%s' start time: %f, finish time: %f",
54       SD_task_get_name(task),
55       SD_task_get_start_time(task),
56       SD_task_get_finish_time(task));
57
58   SD_task_destroy(task);
59
60   SD_exit();
61   return 0;
62 }