Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Move all XBT_LOG_CONNECT into one place.
[simgrid.git] / tools / gras / stub_generator.c
1 /* gras_stub_generator - creates the main() to use a GRAS program           */
2
3 /* Copyright (c) 2005, 2006, 2007, 2009, 2010. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 /* specific to Borland Compiler */
10 #ifdef __BORLANDDC__
11 #pragma hdrstop
12 #endif
13
14 #include <stdio.h>
15 #include "xbt/sysdep.h"
16 #include "xbt/function_types.h"
17 #include "xbt/log.h"
18 #include "surf/surfxml_parse.h"
19 #include "surf/surf.h"
20 #include "portable.h"           /* Needed for the time of the SIMIX convertion */
21
22 #include "gras_stub_generator.h"
23 #include <stdarg.h>
24 extern char *xbt_binary_name;
25
26 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(stubgen, gras, "Stub generator");
27
28 #ifdef _XBT_WIN32
29 #include <windows.h>
30 #endif
31
32 /* specific to Borland Compiler */
33 #ifdef __BORLANDDC__
34 #pragma argsused
35 #endif
36
37
38 /**********************************************/
39 /********* Parse XML deployment file **********/
40 /**********************************************/
41 xbt_dict_t process_function_set = NULL;
42 xbt_dynar_t process_list = NULL;
43 xbt_dict_t machine_set = NULL;
44 char *warning = NULL;
45
46 void s_process_free(void *process)
47 {
48   s_process_t *p = (s_process_t *) process;
49   int i;
50   for (i = 0; i < p->argc; i++)
51     free(p->argv[i]);
52   free(p->argv);
53   free(p->host);
54 }
55
56 static s_process_t process;
57
58 static void parse_process_init(void)
59 {
60   xbt_dict_set(process_function_set, A_surfxml_process_function, NULL, NULL);
61   xbt_dict_set(machine_set, A_surfxml_process_host, NULL, NULL);
62   process.argc = 1;
63   process.argv = xbt_new(char *, 1);
64   process.argv[0] = xbt_strdup(A_surfxml_process_function);
65   process.host = strdup(A_surfxml_process_host);
66   /*XBT_VERB("Function: %s",A_surfxml_process_function); */
67 }
68
69 static void parse_argument(void)
70 {
71   process.argc++;
72   process.argv =
73       xbt_realloc(process.argv, (process.argc) * sizeof(char *));
74   process.argv[(process.argc) - 1] = xbt_strdup(A_surfxml_argument_value);
75 }
76
77 static void parse_process_finalize(void)
78 {
79   xbt_dynar_push(process_list, &process);
80   /*XBT_VERB("Function: %s",process.argv[0]); */
81 }
82
83 /*FIXME Defined in surfxml_parse.c*/
84 #ifndef WIN32
85 void surfxml_add_callback(xbt_dynar_t cb_list, void_f_void_t function)
86 {
87   xbt_dynar_push(cb_list, &function);
88 }
89 #endif
90
91
92 int main(int argc, char *argv[])
93 {
94   char *project_name = NULL;
95   char *deployment_file = NULL;
96   int i;
97
98   xbt_binary_name=xbt_strdup(argv[0]);
99
100   surf_init(&argc, argv);
101   process_function_set = xbt_dict_new_homogeneous(NULL);
102   process_list = xbt_dynar_new(sizeof(s_process_t), s_process_free);
103   machine_set = xbt_dict_new_homogeneous(NULL);
104
105   for (i = 1; i < argc; i++) {
106     int need_removal = 0;
107     if (!strncmp("--extra-process=", argv[i], strlen("--extra-process="))) {
108       xbt_dict_set(process_function_set,
109                    argv[i] + strlen("--extra-process="), NULL, NULL);
110       need_removal = 1;
111     }
112
113
114     if (need_removal) {         /* remove the handled argument from argv */
115       int j;
116       for (j = i + 1; j < argc; j++) {
117         argv[j - 1] = argv[j];
118       }
119       argv[j - 1] = NULL;
120       argc--;
121       i--;                      /* compensate effect of next loop incrementation */
122     }
123   }
124
125   xbt_assert((argc >= 3),
126               "Usage: %s project_name deployment_file [deployment_file...]\n",
127               argv[0]);
128
129   project_name = argv[1];
130
131   surf_parse_reset_callbacks();
132   XBT_DEBUG("%p %p", parse_process_init, &parse_process_init);
133   surfxml_add_callback(STag_surfxml_process_cb_list, &parse_process_init);
134   surfxml_add_callback(ETag_surfxml_argument_cb_list, &parse_argument);
135   surfxml_add_callback(ETag_surfxml_process_cb_list,
136                        &parse_process_finalize);
137
138   for (i = 2; i < argc; i++) {
139     deployment_file = argv[i];
140     surf_parse_open(deployment_file);
141     if (surf_parse())
142       xbt_die("Parse error in %s", deployment_file);
143
144     surf_parse_close();
145   }
146
147
148   warning = xbt_new(char, strlen(WARN) + strlen(deployment_file) + 10);
149   sprintf(warning, WARN, deployment_file);
150
151   /*if(XBT_LOG_ISENABLED(stubgen, xbt_log_priority_debug)) {
152      xbt_dict_cursor_t cursor=NULL;
153      char *key = NULL;
154      void *data = NULL;
155
156      for (cursor=NULL, xbt_dict_cursor_first((process_function_set),&(cursor)) ;
157      xbt_dict_cursor_get_or_free(&(cursor),&(key),(void**)(&data));
158      xbt_dict_cursor_step(cursor) ) {
159      XBT_DEBUG("Function %s", key);
160      }
161
162      xbt_dict_dump(process_function_set,print);
163      } */
164
165   generate_sim(project_name);
166   generate_rl(project_name);
167   generate_makefile_local(project_name, deployment_file);
168 #ifdef __BORLANDC__
169   generate_borland_simulation_project(project_name);
170   generate_borland_real_life_project(project_name);
171   generate_simulation_dsp_file(project_name);
172   generate_real_live_dsp_file(project_name);
173
174   xbt_free(__gras_path);
175 #endif
176
177   free(warning);
178
179   xbt_dict_free(&process_function_set);
180   xbt_dynar_free(&process_list);
181   xbt_dict_free(&machine_set);
182   surf_exit();
183
184   return 0;
185 }