Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Use exceptions instead of assertions when it is appropriate
[simgrid.git] / src / simdag / sd_global.c
1 #include "private.h"
2 #include "xbt/sysdep.h"
3 #include "xbt/dynar.h"
4 #include "surf/surf.h"
5
6 XBT_LOG_NEW_CATEGORY(sd,"Logging specific to SimDag");
7 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(sd_kernel,sd,
8                                 "Logging specific to SimDag (kernel)");
9
10 SD_global_t sd_global = NULL;
11
12 /**
13  * \brief Initialises SD internal data
14  *
15  * This function must be called before any other SD function. Then you
16  * should call SD_create_environment().
17  *
18  * \param argc argument number
19  * \param argv argument list
20  * \see SD_create_environment(), SD_exit()
21  */
22 void SD_init(int *argc, char **argv) {
23   if (SD_INITIALISED()) {
24     xbt_assert0(0, "SD_init() already called");
25   }
26
27   sd_global = xbt_new0(s_SD_global_t, 1);
28   sd_global->workstations = xbt_dict_new();
29   sd_global->workstation_count = 0;
30   sd_global->workstation_list = NULL;
31   sd_global->links = xbt_dict_new();
32   sd_global->link_count = 0;
33   sd_global->link_list = NULL;
34   sd_global->watch_point_reached = 0;
35
36   s_SD_task_t task;
37   sd_global->not_scheduled_task_set = xbt_swag_new(xbt_swag_offset(task, state_hookup));
38   sd_global->scheduled_task_set = xbt_swag_new(xbt_swag_offset(task, state_hookup));
39   sd_global->ready_task_set = xbt_swag_new(xbt_swag_offset(task, state_hookup));
40   sd_global->running_task_set = xbt_swag_new(xbt_swag_offset(task, state_hookup));
41   sd_global->done_task_set = xbt_swag_new(xbt_swag_offset(task, state_hookup));
42   sd_global->failed_task_set = xbt_swag_new(xbt_swag_offset(task, state_hookup));
43
44   surf_init(argc, argv);
45 }
46
47 /**
48  * \brief Creates the environment
49  *
50  * The environment (i.e. the \ref SD_workstation_management "workstations" and the
51  * \ref SD_link_management "links") is created with the data stored in the given XML
52  * platform file.
53  *
54  * \param platform_file name of an XML file describing the environment to create
55  * \see SD_workstation_management, SD_link_management
56  *
57  * The XML file follows this DTD:
58  *
59  *     \include surfxml.dtd
60  *
61  * Here is a small example of such a platform: 
62  *
63  *     \include small_platform.xml
64  */
65 void SD_create_environment(const char *platform_file) {
66   xbt_dict_cursor_t cursor = NULL;
67   char *name = NULL;
68   void *surf_workstation = NULL;
69   void *surf_link = NULL;
70
71   SD_CHECK_INIT_DONE();
72
73   DEBUG0("SD_create_environment");
74
75   surf_timer_resource_init(platform_file);  /* tell Surf to create the environnement */
76
77   surf_workstation_resource_init_KCCFLN05(platform_file);
78 /*   surf_workstation_resource_init_CLM03(platform_file); */
79
80   /* now let's create the SD wrappers for workstations and links */
81   xbt_dict_foreach(workstation_set, cursor, name, surf_workstation) {
82     __SD_workstation_create(surf_workstation, NULL);
83   }
84
85   xbt_dict_foreach(network_link_set, cursor, name, surf_link) {
86     __SD_link_create(surf_link, NULL);
87   }
88 }
89
90 /**
91  * \brief Launches the simulation.
92  *
93  * The function will execute the \ref SD_READY ready tasks.
94  * The simulation will be stopped when its time reaches \a how_long,
95  * when a watch point is reached, or when no more task can be executed.
96  * Then you can call SD_simulate() again.
97  * 
98  * \param how_long maximum duration of the simulation (a negative value means no time limit)
99  * \return a NULL-terminated array of \ref SD_task_t whose state has changed.
100  * \see SD_task_schedule(), SD_task_watch()
101  */
102 SD_task_t* SD_simulate(double how_long)
103 {
104   double total_time = 0.0; /* we stop the simulation when total_time >= how_long */
105   double elapsed_time = 0.0;
106   SD_task_t task, dst;
107   SD_dependency_t dependency;
108   surf_action_t action;
109   SD_task_t *changed_tasks = NULL;
110   int changed_task_number = 0;
111   int changed_task_capacity = 16; /* will be increased if necessary */
112   int i;
113   static int first_time = 1;
114
115   SD_CHECK_INIT_DONE();
116
117   INFO0("Starting simulation...");
118
119   /* create the array that will be returned */
120   changed_tasks = xbt_new0(SD_task_t, changed_task_capacity);
121   changed_tasks[0] = NULL;
122
123   if (first_time) {
124     surf_solve(); /* Takes traces into account. Returns 0.0 */
125     first_time = 0;
126   }
127
128   sd_global->watch_point_reached = 0;
129
130   /* explore the ready tasks */
131   xbt_swag_foreach(task, sd_global->ready_task_set) {
132     INFO1("Executing task '%s'", SD_task_get_name(task));
133     __SD_task_run(task);
134     surf_workstation_resource->common_public->action_set_data(task->surf_action, task);
135     task->state_changed = 1;
136     
137     changed_tasks[changed_task_number++] = task; /* replace NULL by the task */
138     if (changed_task_number == changed_task_capacity) {
139       changed_task_capacity *= 2;
140       changed_tasks = xbt_realloc(changed_tasks, sizeof(SD_task_t) * changed_task_capacity);
141     }
142     changed_tasks[changed_task_number] = NULL;
143   }
144
145   /* main loop */
146   elapsed_time = 0.0;
147   while (elapsed_time >= 0.0 &&
148          (how_long < 0.0 || total_time < how_long) &&
149          !sd_global->watch_point_reached) {
150
151     DEBUG1("Total time: %f", total_time);
152
153     elapsed_time = surf_solve();
154     DEBUG1("surf_solve() returns %f", elapsed_time);
155     if (elapsed_time > 0.0)
156       total_time += elapsed_time;
157
158     /* let's see which tasks are done */
159     while ((action = xbt_swag_extract(surf_workstation_resource->common_public->states.done_action_set))) {
160       task = action->data;
161       INFO1("Task '%s' done", SD_task_get_name(task));
162       __SD_task_set_state(task, SD_DONE);
163       surf_workstation_resource->common_public->action_free(action);
164       task->surf_action = NULL;
165
166       /* the state has changed */
167       if (!task->state_changed) {
168         task->state_changed = 1;
169         changed_tasks[changed_task_number++] = task;
170         if (changed_task_number == changed_task_capacity) {
171           changed_task_capacity *= 2;
172           changed_tasks = xbt_realloc(changed_tasks, sizeof(SD_task_t) * changed_task_capacity);
173         }
174         changed_tasks[changed_task_number] = NULL;
175       }
176
177       /* remove the dependencies after this task */
178       while (xbt_dynar_length(task->tasks_after) > 0) {
179         xbt_dynar_get_cpy(task->tasks_after, 0, &dependency);
180         dst = dependency->dst;
181         SD_task_dependency_remove(task, dst);
182         
183         /* is dst ready now? */
184         if (__SD_task_is_ready(dst) && !sd_global->watch_point_reached) {
185           INFO1("Executing task '%s'", SD_task_get_name(dst));
186           dst->surf_action = __SD_task_run(dst);
187           surf_workstation_resource->common_public->action_set_data(dst->surf_action, dst);
188           dst->state_changed = 1;
189           
190           changed_tasks[changed_task_number++] = dst;
191           if (changed_task_number == changed_task_capacity) {
192             changed_task_capacity *= 2;
193             changed_tasks = xbt_realloc(changed_tasks, sizeof(SD_task_t) * changed_task_capacity);
194           }
195           changed_tasks[changed_task_number] = NULL;
196         }
197       }
198     }
199
200     /* let's see which tasks have just failed */
201     while ((action = xbt_swag_extract(surf_workstation_resource->common_public->states.failed_action_set))) {
202       task = action->data;
203       INFO1("Task '%s' failed", SD_task_get_name(task));
204       __SD_task_set_state(task, SD_FAILED);
205       surf_workstation_resource->common_public->action_free(action);
206       task->surf_action = NULL;
207
208       if (!task->state_changed) {
209         task->state_changed = 1;
210         changed_tasks[changed_task_number++] = task;
211         if (changed_task_number == changed_task_capacity) {
212           changed_task_capacity *= 2;
213           changed_tasks = xbt_realloc(changed_tasks, sizeof(SD_task_t) * changed_task_capacity);
214         }
215         changed_tasks[changed_task_number] = NULL;
216       }
217     }
218   }
219
220   /* we must reset every task->state_changed */
221   i = 0;
222   while (changed_tasks[i] != NULL) {
223     changed_tasks[i]->state_changed = 0;
224     i++;
225   }
226
227   INFO0("Simulation finished");
228   DEBUG3("elapsed_time = %f, total_time = %f, watch_point_reached = %d", elapsed_time, total_time, sd_global->watch_point_reached);
229   DEBUG1("current time = %f", surf_get_clock());
230
231   return changed_tasks;
232 }
233
234 /**
235  * \brief Returns the current clock
236  *
237  * \return the current clock, in second
238  */
239 double SD_get_clock(void) {
240   SD_CHECK_INIT_DONE();
241
242   return surf_get_clock();
243 }
244
245 /**
246  * \brief Destroys all SD internal data
247  *
248  * This function should be called when the simulation is over. Don't forget also to destroy
249  * the tasks.
250  *
251  * \see SD_init(), SD_task_destroy()
252  */
253 void SD_exit(void) {
254   if (SD_INITIALISED()) {
255     DEBUG0("Destroying workstation and link dictionaries...");
256     xbt_dict_free(&sd_global->workstations);
257     xbt_dict_free(&sd_global->links);
258
259     DEBUG0("Destroying workstation and link arrays if necessary...");
260     if (sd_global->workstation_list != NULL)
261       xbt_free(sd_global->workstation_list);
262
263     if (sd_global->link_list != NULL)
264       xbt_free(sd_global->link_list);
265
266     DEBUG0("Destroying the swags...");
267     xbt_swag_free(sd_global->not_scheduled_task_set);
268     xbt_swag_free(sd_global->scheduled_task_set);
269     xbt_swag_free(sd_global->ready_task_set);
270     xbt_swag_free(sd_global->running_task_set);
271     xbt_swag_free(sd_global->done_task_set);
272     xbt_swag_free(sd_global->failed_task_set);
273
274     xbt_free(sd_global);
275     sd_global = NULL;
276
277     DEBUG0("Exiting Surf...");
278     surf_exit();
279   }
280   else {
281     fprintf(stderr, "Warning: SD_exit() called while SimDag was not running\n");
282     /* we cannot use exceptions here because xbt is not running! */
283   }
284 }