Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Do not declare variables in the middle of nowhere.
[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   fprintf(stderr, "Parse error on line %d: %s\n", dax_lineno, msg);
22   abort();
23 }
24 static double dax_parse_double(const char *string) {
25   int ret = 0;
26   double value;
27
28   ret = sscanf(string, "%lg", &value);
29   if (ret != 1)
30     dax_parse_error(bprintf("%s is not a double", string));
31   return value;
32 }
33 static int dax_parse_int(const char *string) {
34   int ret = 0;
35   int value;
36
37   ret = sscanf(string, "%d", &value);
38   if (ret != 1)
39     dax_parse_error(bprintf("%s is not an integer", string));
40   return value;
41 }
42
43 static YY_BUFFER_STATE input_buffer;
44
45 static xbt_dynar_t result;
46 static xbt_dict_t jobs;
47 static xbt_dict_t files;
48 static SD_task_t current_job;
49 static SD_task_t root_task,end_task;
50
51 static void dump_res() {
52   unsigned int cursor;
53   SD_task_t task;
54   xbt_dynar_foreach(result,cursor,task) {
55     INFO1("Task %d",cursor);
56     SD_task_dump(task);
57   }
58 }
59
60 static void dax_task_free(void*task){
61   SD_task_t t=task;
62   SD_task_destroy(t);
63 }
64
65 /** @brief loads a DAX file describing a DAG
66  * 
67  * See https://confluence.pegasus.isi.edu/display/pegasus/WorkflowGenerator
68  * for more details.
69  */
70 xbt_dynar_t SD_daxload(const char*filename) {
71   xbt_dict_cursor_t cursor;
72   SD_task_t file;
73   char *name;
74   FILE* in_file = fopen(filename,"r");
75   xbt_assert1(in_file, "Unable to open \"%s\"\n", filename);
76   input_buffer = dax__create_buffer(in_file, 10);
77   dax__switch_to_buffer(input_buffer);
78   dax_lineno = 1;
79
80   result = xbt_dynar_new(sizeof(SD_task_t),dax_task_free);
81   files=xbt_dict_new();
82   jobs=xbt_dict_new();
83   root_task = SD_task_create_comp_seq("root",NULL,0);
84   xbt_dynar_push(result,&root_task);
85   end_task = SD_task_create_comp_seq("end",NULL,0);
86
87   xbt_assert2(!dax_lex(),"Parse error in %s: %s",filename,dax__parse_err_msg());
88   dax__delete_buffer(input_buffer);
89   fclose(in_file);
90   xbt_dict_free(&jobs);
91
92   /* And now, post-process the files.
93    * We want a file task per pair of computation tasks exchanging the file. Duplicate on need
94    * Files not produced in the system are said to be produced by root task (top of DAG).
95    * Files not consumed in the system are said to be consumed by end task (bottom of DAG).
96    */
97
98   xbt_dict_foreach(files,cursor,name,file) {
99     unsigned int cpt1,cpt2;
100     SD_task_t newfile = NULL;
101     SD_dependency_t depbefore,depafter;
102     if (xbt_dynar_length(file->tasks_before) == 0) {
103       xbt_dynar_foreach(file->tasks_after,cpt2,depafter) {
104         SD_task_t newfile = SD_task_create_comm_e2e(file->name,NULL,file->amount);
105         SD_task_dependency_add(NULL,NULL,root_task,newfile);
106         SD_task_dependency_add(NULL,NULL,newfile,depafter->dst);
107         xbt_dynar_push(result,&newfile);
108       }
109     } else if (xbt_dynar_length(file->tasks_after) == 0) {
110       xbt_dynar_foreach(file->tasks_before,cpt2,depbefore) {
111         SD_task_t newfile = SD_task_create_comm_e2e(file->name,NULL,file->amount);
112         SD_task_dependency_add(NULL,NULL,depbefore->src,newfile);
113         SD_task_dependency_add(NULL,NULL,newfile,end_task);
114         xbt_dynar_push(result,&newfile);
115       }
116     } else {
117       xbt_dynar_foreach(file->tasks_before,cpt1,depbefore) {
118         xbt_dynar_foreach(file->tasks_after,cpt2,depafter) {
119           if (depbefore->src == depafter->dst) {
120             WARN2("File %s is produced and consumed by task %s. This loop dependency will prevent the execution of the task.",
121                 file->name,depbefore->src->name);
122           }
123           newfile = SD_task_create_comm_e2e(file->name,NULL,file->amount);
124           SD_task_dependency_add(NULL,NULL,depbefore->src,newfile);
125           SD_task_dependency_add(NULL,NULL,newfile,depafter->dst);
126           xbt_dynar_push(result,&newfile);
127         }
128       }
129     }
130   }
131
132   /* Push end task last */
133   xbt_dynar_push(result,&end_task);
134
135   /* Free previous copy of the files */
136   xbt_dict_free(&files);
137
138   return result;
139 }
140
141 void STag_dax__adag(void) {
142   double version = dax_parse_double(A_dax__adag_version);
143
144   xbt_assert1((version == 2.1), "Expected version 2.1 in <adag> tag, got %f. Fix the parser or your file",version);
145 }
146 void STag_dax__job(void) {
147   double runtime = dax_parse_double(A_dax__job_runtime);
148   char *name=bprintf("%s@%s",A_dax__job_id,A_dax__job_name);
149   runtime*=4200000000.; /* Assume that timings were done on a 4.2GFlops machine. I mean, why not? */
150 //  INFO3("See <job id=%s runtime=%s %.0f>",A_dax__job_id,A_dax__job_runtime,runtime);
151   current_job = SD_task_create_comp_seq(name,NULL,runtime);
152   xbt_dict_set(jobs,A_dax__job_id,current_job,NULL);
153   free(name);
154   xbt_dynar_push(result,&current_job);
155 }
156 void STag_dax__uses(void) {
157   SD_task_t file;
158   double size = dax_parse_double(A_dax__uses_size);
159   int is_input = (A_dax__uses_link == A_dax__uses_link_input);
160
161 //  INFO2("See <uses file=%s %s>",A_dax__uses_file,(is_input?"in":"out"));
162   file = xbt_dict_get_or_null(files,A_dax__uses_file);
163   if (file==NULL) {
164     file = SD_task_create_comm_e2e(A_dax__uses_file,NULL,size);
165     xbt_dict_set(files,A_dax__uses_file,file,&dax_task_free);
166   } else {
167     if (SD_task_get_amount(file)!=size) {
168       WARN3("Ignoring file %s size redefinition from %.0f to %.0f",
169           A_dax__uses_file,SD_task_get_amount(file),size);
170     }
171   }
172   if (is_input) {
173     SD_task_dependency_add(NULL,NULL,file,current_job);
174   } else {
175     SD_task_dependency_add(NULL,NULL,current_job,file);
176     if (xbt_dynar_length(file->tasks_before)>1) {
177       WARN1("File %s created at more than one location...",file->name);
178     }
179   }
180 }
181 static SD_task_t current_child;
182 void STag_dax__child(void) {
183   current_child = xbt_dict_get_or_null(jobs,A_dax__child_ref);
184   if (current_child==NULL)
185     dax_parse_error(bprintf("Asked to add dependencies to the non-existent %s task",A_dax__child_ref));
186 }
187 void ETag_dax__child(void) {
188   current_child=NULL;
189 }
190 void STag_dax__parent(void) {
191   SD_task_t parent = xbt_dict_get_or_null(jobs,A_dax__parent_ref);
192   if (parent == NULL)
193     dax_parse_error(bprintf("Asked to add a dependency from %s to %s, but %s does not exist",
194         current_child->name,A_dax__parent_ref,A_dax__parent_ref));
195   SD_task_dependency_add(NULL,NULL,parent,current_child);
196   DEBUG2("Control-flow dependency from %s to %s", current_child->name,parent->name);
197 }
198 void ETag_dax__adag(void) {
199 //  INFO0("See </adag>");
200 }
201 void ETag_dax__job(void) {
202   current_job = NULL;
203 //  INFO0("See </job>");
204 }
205 void ETag_dax__parent(void) {
206 //  INFO0("See </parent>");
207 }
208 void ETag_dax__uses(void) {
209 //  INFO0("See </uses>");
210 }