Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
this tentative of storage layer in SD was a bad idea.
[simgrid.git] / src / simdag / sd_global.cpp
1 /* Copyright (c) 2006-2016. 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 "src/surf/surf_interface.hpp"
8 #include "src/simdag/simdag_private.h"
9 #include "instr/instr_interface.h"
10 #include "xbt/sysdep.h"
11 #include "xbt/dynar.h"
12 #include "surf/surf.h"
13 #include "simgrid/sg_config.h"
14 #include "simgrid/host.h"
15 #include "xbt/ex.h"
16 #include "xbt/log.h"
17 #include "xbt/str.h"
18 #include "xbt/config.h"
19 #include "surf/surfxml_parse.h"
20 #ifdef HAVE_LUA
21 #include <lua.h>
22 #include <lauxlib.h>
23 #include <lualib.h>
24 #endif
25
26 #ifdef HAVE_JEDULE
27 #include "simgrid/jedule/jedule_sd_binding.h"
28 #endif
29
30 XBT_LOG_NEW_CATEGORY(sd, "Logging specific to SimDag");
31 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(sd_kernel, sd,
32                                 "Logging specific to SimDag (kernel)");
33
34 SD_global_t sd_global = NULL;
35
36 /**
37  * \brief Initializes SD internal data
38  *
39  * This function must be called before any other SD function. Then you
40  * should call SD_create_environment().
41  *
42  * \param argc argument number
43  * \param argv argument list
44  * \see SD_create_environment(), SD_exit()
45  */
46 void SD_init(int *argc, char **argv)
47 {
48   TRACE_global_init(argc, argv);
49
50   xbt_assert(sd_global == NULL, "SD_init() already called");
51
52   sd_global = xbt_new(s_SD_global_t, 1);
53   sd_global->watch_point_reached = 0;
54
55   sd_global->task_mallocator=xbt_mallocator_new(65536, SD_task_new_f,
56                                                 SD_task_free_f,
57                                                 SD_task_recycle_f);
58
59   sd_global->initial_task_set = xbt_dynar_new(sizeof(SD_task_t), NULL);
60   sd_global->executable_task_set = xbt_dynar_new(sizeof(SD_task_t), NULL);
61   sd_global->completed_task_set = xbt_dynar_new(sizeof(SD_task_t), NULL);
62   sd_global->return_set = xbt_dynar_new(sizeof(SD_task_t), NULL);
63
64   sd_global->task_number = 0;
65
66   surf_init(argc, argv);
67
68   xbt_cfg_setdefault_string(_sg_cfg_set, "host/model",
69                             "ptask_L07");
70
71 #ifdef HAVE_JEDULE
72   jedule_sd_init();
73 #endif
74
75   if (_sg_cfg_exit_asap) {
76     SD_exit();
77     exit(0);
78   }
79 }
80
81 /** \brief set a configuration variable
82  *
83  * Do --help on any simgrid binary to see the list of currently existing
84  * configuration variables, and see Section @ref options.
85  *
86  * Example:
87  * SD_config("host/model","default");
88  */
89 void SD_config(const char *key, const char *value){
90   xbt_assert(sd_global,"ERROR: Please call SD_init() before using SD_config()");
91   xbt_cfg_set_as_string(_sg_cfg_set, key, value);
92 }
93
94 /**
95  * \brief Reinits the application part of the simulation (experimental feature)
96  *
97  * This function allows you to run several simulations on the same platform
98  * by resetting the part describing the application.
99  *
100  * @warning: this function is still experimental and not perfect. For example,
101  * the simulation clock (and traces usage) is not reset. So, do not use it if
102  * you use traces in your simulation, and do not use absolute timing after
103  * using it.
104  * That being said, this function is still precious if you want to compare a
105  * bunch of heuristics on the same platforms.
106  */
107 void SD_application_reinit(void)
108 {
109
110 //  s_SD_task_t task;
111
112 //  SD_task_t done_task, next_done_task;
113   xbt_die("This function is not working since the C++ links and others. Please report the problem if you really need that function.");
114
115    XBT_DEBUG("Recreating the swags...");
116
117 //  xbt_swag_foreach_safe(done_task, next_done_task, sd_global->done_task_set){
118 //    if (xbt_dynar_is_empty(done_task->tasks_before)){
119 //      __SD_task_set_state(done_task, SD_SCHEDULABLE);
120 //    } else{
121 //      __SD_task_set_state(done_task, SD_NOT_SCHEDULED);
122 //      done_task->unsatisfied_dependencies =
123 //        xbt_dynar_length(done_task->tasks_before);
124 //      done_task->is_not_ready = done_task->unsatisfied_dependencies;
125 //    }
126 //    free(done_task->workstation_list);
127 //    done_task->workstation_list = NULL;
128 //    done_task->workstation_nb = 0;
129 //  }
130
131   sd_global->task_number = 0;
132
133
134 #ifdef HAVE_JEDULE
135   jedule_sd_dump();
136   jedule_sd_cleanup();
137   jedule_sd_init();
138 #endif
139 }
140
141 /**
142  * \brief Creates the environment
143  *
144  * The environment (i.e. the \ref sg_host_management "hosts"
145  * and the \ref SD_link_management "links") is created with the data stored
146  * in the given XML platform file.
147  *
148  * \param platform_file name of an XML file describing the environment to create
149  * \see sg_host_management, SD_link_management
150  *
151  * The XML file follows this DTD:
152  *
153  *     \include simgrid.dtd
154  *
155  * Here is a small example of such a platform:
156  *
157  *     \include small_platform.xml
158  */
159 void SD_create_environment(const char *platform_file)
160 {
161   parse_platform_file(platform_file);
162
163   XBT_DEBUG("Workstation number: %zu, link number: %d",
164          sg_host_count(), sg_link_count());
165 #ifdef HAVE_JEDULE
166   jedule_setup_platform();
167 #endif
168 }
169
170 /**
171  * \brief Launches the simulation.
172  *
173  * The function will execute the \ref SD_RUNNABLE runnable tasks.
174  * If \a how_long is positive, then the simulation will be stopped either
175  * when time reaches \a how_long or when a watch point is reached.
176  * A non-positive value for \a how_long means no time limit, in which case
177  * the simulation will be stopped either when a watch point is reached or
178  * when no more task can be executed.
179  * Then you can call SD_simulate() again.
180  *
181  * \param how_long maximum duration of the simulation (a negative value means
182  * no time limit)
183  * \return a dynar of \ref SD_task_t whose state has changed.
184  * \see SD_task_schedule(), SD_task_watch()
185  */
186
187 xbt_dynar_t SD_simulate(double how_long) {
188   /* we stop the simulation when total_time >= how_long */
189   double total_time = 0.0;
190   double elapsed_time = 0.0;
191   SD_task_t task, dst;
192   SD_dependency_t dependency;
193   surf_action_t action;
194   unsigned int iter, depcnt;
195   static int first_time = 1;
196
197   if (first_time) {
198     XBT_VERB("Starting simulation...");
199
200     surf_presolve();            /* Takes traces into account */
201     first_time = 0;
202   }
203
204   XBT_VERB("Run simulation for %f seconds", how_long);
205   sd_global->watch_point_reached = 0;
206
207   xbt_dynar_reset(sd_global->return_set);
208
209   /* explore the runnable tasks */
210   xbt_dynar_foreach(sd_global->executable_task_set , iter, task) {
211     XBT_VERB("Executing task '%s'", SD_task_get_name(task));
212     SD_task_run(task);
213     xbt_dynar_push(sd_global->return_set, &task);
214     iter--;
215   }
216
217   /* main loop */
218   elapsed_time = 0.0;
219   while (elapsed_time >= 0.0 &&
220          (how_long < 0.0 || 0.00001 < (how_long -total_time)) &&
221          !sd_global->watch_point_reached) {
222     surf_model_t model = NULL;
223     /* dumb variables */
224
225
226     XBT_DEBUG("Total time: %f", total_time);
227
228     elapsed_time = surf_solve(how_long > 0 ? surf_get_clock() + how_long - total_time: -1.0);
229     XBT_DEBUG("surf_solve() returns %f", elapsed_time);
230     if (elapsed_time > 0.0)
231       total_time += elapsed_time;
232
233     /* let's see which tasks are done */
234     xbt_dynar_foreach(all_existing_models, iter, model) {
235       while ((action = surf_model_extract_done_action_set(model))) {
236         task = (SD_task_t) action->getData();
237         task->start_time = task->surf_action->getStartTime();
238
239         task->finish_time = surf_get_clock();
240         XBT_VERB("Task '%s' done", SD_task_get_name(task));
241         SD_task_set_state(task, SD_DONE);
242         task->surf_action->unref();
243         task->surf_action = NULL;
244
245         /* the state has changed. Add it only if it's the first change */
246         if (xbt_dynar_search_or_negative(sd_global->return_set, &task) < 0) {
247           xbt_dynar_push(sd_global->return_set, &task);
248         }
249
250         /* remove the dependencies after this task */
251         xbt_dynar_foreach(task->tasks_after, depcnt, dependency) {
252           dst = dependency->dst;
253           if (dst->unsatisfied_dependencies > 0)
254             dst->unsatisfied_dependencies--;
255           if (dst->is_not_ready > 0)
256             dst->is_not_ready--;
257
258           XBT_DEBUG("Released a dependency on %s: %d remain(s). Became schedulable if %d=0",
259              SD_task_get_name(dst), dst->unsatisfied_dependencies,
260              dst->is_not_ready);
261
262           if (!(dst->unsatisfied_dependencies)) {
263             if (SD_task_get_state(dst) == SD_SCHEDULED)
264               SD_task_set_state(dst, SD_RUNNABLE);
265             else
266               SD_task_set_state(dst, SD_SCHEDULABLE);
267           }
268
269           if (SD_task_get_state(dst) == SD_NOT_SCHEDULED &&
270               !(dst->is_not_ready)) {
271             SD_task_set_state(dst, SD_SCHEDULABLE);
272           }
273
274           if (SD_task_get_kind(dst) == SD_TASK_COMM_E2E) {
275             SD_dependency_t comm_dep;
276             SD_task_t comm_dst;
277             xbt_dynar_get_cpy(dst->tasks_after, 0, &comm_dep);
278             comm_dst = comm_dep->dst;
279             if (SD_task_get_state(comm_dst) == SD_NOT_SCHEDULED &&
280                 comm_dst->is_not_ready > 0) {
281               comm_dst->is_not_ready--;
282
283             XBT_DEBUG("%s is a transfer, %s may be ready now if %d=0",
284                SD_task_get_name(dst), SD_task_get_name(comm_dst),
285                comm_dst->is_not_ready);
286
287               if (!(comm_dst->is_not_ready)) {
288                 SD_task_set_state(comm_dst, SD_SCHEDULABLE);
289               }
290             }
291           }
292
293           /* is dst runnable now? */
294           if (SD_task_get_state(dst) == SD_RUNNABLE
295               && !sd_global->watch_point_reached) {
296             XBT_VERB("Executing task '%s'", SD_task_get_name(dst));
297             SD_task_run(dst);
298             xbt_dynar_push(sd_global->return_set, &dst);
299           }
300         }
301       }
302
303       /* let's see which tasks have just failed */
304       while ((action = surf_model_extract_failed_action_set(model))) {
305         task = (SD_task_t) action->getData();
306         task->start_time = surf_action_get_start_time(task->surf_action);
307         task->finish_time = surf_get_clock();
308         XBT_VERB("Task '%s' failed", SD_task_get_name(task));
309         SD_task_set_state(task, SD_FAILED);
310         action->unref();
311         task->surf_action = NULL;
312
313         xbt_dynar_push(sd_global->return_set, &task);
314       }
315     }
316   }
317
318   if (!sd_global->watch_point_reached && how_long<0){
319     if ((int) xbt_dynar_length(sd_global->completed_task_set) <
320          sd_global->task_number){
321         XBT_WARN("Simulation is finished but %d tasks are still not done",
322             (sd_global->task_number -
323              (int) xbt_dynar_length(sd_global->completed_task_set)));
324         static const char* state_names[] =
325               { "SD_NOT_SCHEDULED", "SD_SCHEDULABLE", "SD_SCHEDULED",
326                 "SD_RUNNABLE", "SD_RUNNING", "SD_DONE",
327                 "SD_FAILED" };
328         xbt_dynar_foreach(sd_global->initial_task_set, iter, task){
329           XBT_WARN("%s is in %s state", SD_task_get_name(task),
330                    state_names[SD_task_get_state(task)]);
331         }
332     }
333   }
334
335   XBT_DEBUG("elapsed_time = %f, total_time = %f, watch_point_reached = %d",
336          elapsed_time, total_time, sd_global->watch_point_reached);
337   XBT_DEBUG("current time = %f", surf_get_clock());
338
339   return sd_global->return_set;
340 }
341
342 /**
343  * \brief Returns the current clock
344  *
345  * \return the current clock, in second
346  */
347 double SD_get_clock(void) {
348   return surf_get_clock();
349 }
350
351 /**
352  * \brief Destroys all SD internal data
353  *
354  * This function should be called when the simulation is over. Don't forget
355  * to destroy too.
356  *
357  * \see SD_init(), SD_task_destroy()
358  */
359 void SD_exit(void)
360 {
361   TRACE_surf_resource_utilization_release();
362
363   xbt_mallocator_free(sd_global->task_mallocator);
364
365   XBT_DEBUG("Destroying the dynars ...");
366   xbt_dynar_free_container(&(sd_global->initial_task_set));
367   xbt_dynar_free_container(&(sd_global->executable_task_set));
368   xbt_dynar_free_container(&(sd_global->completed_task_set));
369   xbt_dynar_free_container(&(sd_global->return_set));
370
371   TRACE_end();
372
373   xbt_free(sd_global);
374   sd_global = NULL;
375
376 #ifdef HAVE_JEDULE
377   jedule_sd_dump();
378   jedule_sd_cleanup();
379   jedule_sd_exit();
380 #endif
381
382   XBT_DEBUG("Exiting Surf...");
383   surf_exit();
384 }