Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
d1f79c1fb5192cb32194806f2a75f12806cd107a
[simgrid.git] / src / simdag / sd_daxloader.c
1 /* Copyright (c) 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 "private.h"
8 #include "simdag/simdag.h"
9 #include "xbt/misc.h"
10 #include "xbt/log.h"
11
12 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(sd_daxparse, sd, "Parsing DAX files");
13
14 #undef CLEANUP
15 #include "dax_dtd.h"
16 #include "dax_dtd.c"
17
18
19 /* Parsing helpers */
20 static void dax_parse_error(char *msg)
21 {
22   fprintf(stderr, "Parse error on line %d: %s\n", dax_lineno, msg);
23   abort();
24 }
25
26 static double dax_parse_double(const char *string)
27 {
28   int ret = 0;
29   double value;
30
31   ret = sscanf(string, "%lg", &value);
32   if (ret != 1)
33     dax_parse_error(bprintf("%s is not a double", string));
34   return value;
35 }
36
37 static int dax_parse_int(const char *string)
38 {
39   int ret = 0;
40   int value;
41
42   ret = sscanf(string, "%d", &value);
43   if (ret != 1)
44     dax_parse_error(bprintf("%s is not an integer", string));
45   return value;
46 }
47
48 /* Ensure that transfer tasks have unique names even though a file is used
49  * several times */
50
51 void uniq_transfer_task_name(SD_task_t task)
52 {
53   SD_task_t child, parent;
54   xbt_dynar_t children, parents;
55   char *new_name;
56
57   children = SD_task_get_children(task);
58   parents = SD_task_get_parents(task);
59
60   xbt_dynar_get_cpy(children, 0, &child);
61   xbt_dynar_get_cpy(parents, 0, &parent);
62
63   new_name = bprintf("%s_%s_%s",
64                      SD_task_get_name(parent),
65                      SD_task_get_name(task), SD_task_get_name(child));
66
67   SD_task_set_name(task, new_name);
68
69   xbt_dynar_free_container(&children);
70   xbt_dynar_free_container(&parents);
71   free(new_name);
72 }
73
74
75 static YY_BUFFER_STATE input_buffer;
76
77 static xbt_dynar_t result;
78 static xbt_dict_t jobs;
79 static xbt_dict_t files;
80 static SD_task_t current_job;
81 static SD_task_t root_task, end_task;
82
83 static void dump_res()
84 {
85   unsigned int cursor;
86   SD_task_t task;
87   xbt_dynar_foreach(result, cursor, task) {
88     INFO1("Task %d", cursor);
89     SD_task_dump(task);
90   }
91 }
92
93 static void dax_task_free(void *task)
94 {
95   SD_task_t t = task;
96   SD_task_destroy(t);
97 }
98
99 /** @brief loads a DAX file describing a DAG
100  * 
101  * See https://confluence.pegasus.isi.edu/display/pegasus/WorkflowGenerator
102  * for more details.
103  */
104 xbt_dynar_t SD_daxload(const char *filename)
105 {
106   xbt_dict_cursor_t cursor;
107   SD_task_t file;
108   char *name;
109   FILE *in_file = fopen(filename, "r");
110   xbt_assert1(in_file, "Unable to open \"%s\"\n", filename);
111   input_buffer = dax__create_buffer(in_file, 10);
112   dax__switch_to_buffer(input_buffer);
113   dax_lineno = 1;
114
115   result = xbt_dynar_new(sizeof(SD_task_t), dax_task_free);
116   files = xbt_dict_new();
117   jobs = xbt_dict_new();
118   root_task = SD_task_create_comp_seq("root", NULL, 0);
119   /* by design the root task is always SCHEDULABLE */
120   __SD_task_set_state(root_task, SD_SCHEDULABLE);
121
122   xbt_dynar_push(result, &root_task);
123   end_task = SD_task_create_comp_seq("end", NULL, 0);
124
125   xbt_assert2(!dax_lex(), "Parse error in %s: %s", filename,
126               dax__parse_err_msg());
127   dax__delete_buffer(input_buffer);
128   fclose(in_file);
129   xbt_dict_free(&jobs);
130
131   /* And now, post-process the files.
132    * We want a file task per pair of computation tasks exchanging the file. Duplicate on need
133    * Files not produced in the system are said to be produced by root task (top of DAG).
134    * Files not consumed in the system are said to be consumed by end task (bottom of DAG).
135    */
136
137   xbt_dict_foreach(files, cursor, name, file) {
138     unsigned int cpt1, cpt2;
139     SD_task_t newfile = NULL;
140     SD_dependency_t depbefore, depafter;
141     if (xbt_dynar_length(file->tasks_before) == 0) {
142       xbt_dynar_foreach(file->tasks_after, cpt2, depafter) {
143         SD_task_t newfile =
144             SD_task_create_comm_e2e(file->name, NULL, file->amount);
145         SD_task_dependency_add(NULL, NULL, root_task, newfile);
146         SD_task_dependency_add(NULL, NULL, newfile, depafter->dst);
147         xbt_dynar_push(result, &newfile);
148       }
149     } else if (xbt_dynar_length(file->tasks_after) == 0) {
150       xbt_dynar_foreach(file->tasks_before, cpt2, depbefore) {
151         SD_task_t newfile =
152             SD_task_create_comm_e2e(file->name, NULL, file->amount);
153         SD_task_dependency_add(NULL, NULL, depbefore->src, newfile);
154         SD_task_dependency_add(NULL, NULL, newfile, end_task);
155         xbt_dynar_push(result, &newfile);
156       }
157     } else {
158       xbt_dynar_foreach(file->tasks_before, cpt1, depbefore) {
159         xbt_dynar_foreach(file->tasks_after, cpt2, depafter) {
160           if (depbefore->src == depafter->dst) {
161             WARN2
162                 ("File %s is produced and consumed by task %s. This loop dependency will prevent the execution of the task.",
163                  file->name, depbefore->src->name);
164           }
165           newfile =
166               SD_task_create_comm_e2e(file->name, NULL, file->amount);
167           SD_task_dependency_add(NULL, NULL, depbefore->src, newfile);
168           SD_task_dependency_add(NULL, NULL, newfile, depafter->dst);
169           xbt_dynar_push(result, &newfile);
170         }
171       }
172     }
173   }
174
175   /* Push end task last */
176   xbt_dynar_push(result, &end_task);
177
178   /* Free previous copy of the files */
179   xbt_dict_free(&files);
180   unsigned int cpt;
181   xbt_dynar_foreach(result, cpt, file) {
182     if (SD_task_get_kind(file) == SD_TASK_COMM_E2E) {
183       uniq_transfer_task_name(file);
184     }
185   }
186
187   return result;
188 }
189
190 void STag_dax__adag(void)
191 {
192   double version = dax_parse_double(A_dax__adag_version);
193
194   xbt_assert1((version == 2.1),
195               "Expected version 2.1 in <adag> tag, got %f. Fix the parser or your file",
196               version);
197 }
198
199 void STag_dax__job(void)
200 {
201   double runtime = dax_parse_double(A_dax__job_runtime);
202   char *name = bprintf("%s@%s", A_dax__job_id, A_dax__job_name);
203   runtime *= 4200000000.;       /* Assume that timings were done on a 4.2GFlops machine. I mean, why not? */
204 //  INFO3("See <job id=%s runtime=%s %.0f>",A_dax__job_id,A_dax__job_runtime,runtime);
205   current_job = SD_task_create_comp_seq(name, NULL, runtime);
206   xbt_dict_set(jobs, A_dax__job_id, current_job, NULL);
207   free(name);
208   xbt_dynar_push(result, &current_job);
209 }
210
211 void STag_dax__uses(void)
212 {
213   SD_task_t file;
214   double size = dax_parse_double(A_dax__uses_size);
215   int is_input = (A_dax__uses_link == A_dax__uses_link_input);
216
217 //  INFO2("See <uses file=%s %s>",A_dax__uses_file,(is_input?"in":"out"));
218   file = xbt_dict_get_or_null(files, A_dax__uses_file);
219   if (file == NULL) {
220     file = SD_task_create_comm_e2e(A_dax__uses_file, NULL, size);
221     xbt_dict_set(files, A_dax__uses_file, file, &dax_task_free);
222   } else {
223     if (SD_task_get_amount(file) != size) {
224       WARN3("Ignoring file %s size redefinition from %.0f to %.0f",
225             A_dax__uses_file, SD_task_get_amount(file), size);
226     }
227   }
228   if (is_input) {
229     SD_task_dependency_add(NULL, NULL, file, current_job);
230   } else {
231     SD_task_dependency_add(NULL, NULL, current_job, file);
232     if (xbt_dynar_length(file->tasks_before) > 1) {
233       WARN1("File %s created at more than one location...", file->name);
234     }
235   }
236 }
237
238 static SD_task_t current_child;
239 void STag_dax__child(void)
240 {
241   current_child = xbt_dict_get_or_null(jobs, A_dax__child_ref);
242   if (current_child == NULL)
243     dax_parse_error(bprintf
244                     ("Asked to add dependencies to the non-existent %s task",
245                      A_dax__child_ref));
246 }
247
248 void ETag_dax__child(void)
249 {
250   current_child = NULL;
251 }
252
253 void STag_dax__parent(void)
254 {
255   SD_task_t parent = xbt_dict_get_or_null(jobs, A_dax__parent_ref);
256   if (parent == NULL)
257     dax_parse_error(bprintf
258                     ("Asked to add a dependency from %s to %s, but %s does not exist",
259                      current_child->name, A_dax__parent_ref,
260                      A_dax__parent_ref));
261   SD_task_dependency_add(NULL, NULL, parent, current_child);
262   DEBUG2("Control-flow dependency from %s to %s", current_child->name,
263          parent->name);
264 }
265
266 void ETag_dax__adag(void)
267 {
268 //  INFO0("See </adag>");
269 }
270
271 void ETag_dax__job(void)
272 {
273   current_job = NULL;
274 //  INFO0("See </job>");
275 }
276
277 void ETag_dax__parent(void)
278 {
279 //  INFO0("See </parent>");
280 }
281
282 void ETag_dax__uses(void)
283 {
284 //  INFO0("See </uses>");
285 }