Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix copyright headers
[simgrid.git] / src / surf / surf_config.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 /* surf_config: configuration infrastructure for the simulation world       */
8
9 #include "xbt/config.h"
10 #include "xbt/str.h"
11 #include "surf/surf_private.h"
12
13 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_config, surf,
14                                 "About the configuration of surf (and the rest of the simulation)");
15
16 xbt_cfg_t _surf_cfg_set = NULL;
17
18
19 /* Parse the command line, looking for options */
20 static void surf_config_cmd_line(int *argc, char **argv)
21 {
22   int i, j;
23   char *opt;
24
25   for (i = 1; i < *argc; i++) {
26     int remove_it = 0;
27     if (!strncmp(argv[i], "--cfg=", strlen("--cfg="))) {
28       opt = strchr(argv[i], '=');
29       opt++;
30
31       xbt_cfg_set_parse(_surf_cfg_set, opt);
32       DEBUG1("Did apply '%s' as config setting", opt);
33       remove_it = 1;
34     } else if (!strncmp(argv[i], "--cfg-help", strlen("--cfg-help") + 1) ||
35                !strncmp(argv[i], "--help", strlen("--help") + 1)) {
36       printf("Description of the configuration accepted by this simulator:\n");
37       xbt_cfg_help(_surf_cfg_set);
38       printf("\nYou can also use --help-models to see the details of all models known by this simulator.\n");
39       exit(0);
40     } else if (!strncmp(argv[i], "--help-models", strlen("--help-models")+1)) {
41       model_help("workstation",surf_workstation_model_description);
42       model_help("CPU",surf_cpu_model_description);
43       model_help("network",surf_network_model_description);
44       exit(0);
45     }
46     if (remove_it) {            /*remove this from argv */
47       for (j = i + 1; j < *argc; j++) {
48         argv[j - 1] = argv[j];
49       }
50
51       argv[j - 1] = NULL;
52       (*argc)--;
53       i--;                      /* compensate effect of next loop incrementation */
54     }
55   }
56 }
57
58
59 int _surf_init_status = 0;      /* 0: beginning of time;
60                                    1: pre-inited (cfg_set created);
61                                    2: inited (running) */
62
63 /* callback of the workstation/model variable */
64 static void _surf_cfg_cb__workstation_model(const char *name, int pos)
65 {
66   char *val;
67
68   xbt_assert0(_surf_init_status < 2,
69               "Cannot change the model after the initialization");
70
71   val = xbt_cfg_get_string(_surf_cfg_set, name);
72
73   if (!strcmp(val,"help")) {
74     model_help("workstation",surf_workstation_model_description);
75     exit(0);
76   }
77
78   /* Make sure that the model exists */
79   find_model_description(surf_workstation_model_description, val);
80 }
81
82 /* callback of the cpu/model variable */
83 static void _surf_cfg_cb__cpu_model(const char *name, int pos)
84 {
85   char *val;
86
87   xbt_assert0(_surf_init_status < 2,
88               "Cannot change the model after the initialization");
89
90   val = xbt_cfg_get_string(_surf_cfg_set, name);
91
92   if (!strcmp(val,"help")) {
93     model_help("CPU",surf_cpu_model_description);
94     exit(0);
95   }
96
97   /* New Module missing */
98   find_model_description(surf_cpu_model_description, val);
99 }
100
101 /* callback of the workstation_model variable */
102 static void _surf_cfg_cb__network_model(const char *name, int pos)
103 {
104   char *val;
105
106   xbt_assert0(_surf_init_status < 2,
107               "Cannot change the model after the initialization");
108
109   val = xbt_cfg_get_string(_surf_cfg_set, name);
110
111   if (!strcmp(val,"help")) {
112     model_help("network",surf_network_model_description);
113     exit(0);
114   }
115
116   /* New Module missing */
117   find_model_description(surf_network_model_description, val);
118 }
119
120
121 /* callbacks of the network models values */
122 static void _surf_cfg_cb__tcp_gamma(const char *name, int pos) {
123   sg_tcp_gamma = xbt_cfg_get_double(_surf_cfg_set, name);
124 }
125 static void _surf_cfg_cb__latency_factor(const char *name, int pos) {
126   sg_latency_factor = xbt_cfg_get_double(_surf_cfg_set, name);
127 }
128 static void _surf_cfg_cb__bandwidth_factor(const char *name, int pos) {
129   sg_bandwidth_factor = xbt_cfg_get_double(_surf_cfg_set, name);
130 }
131 static void _surf_cfg_cb__weight_S(const char *name, int pos) {
132   sg_weight_S_parameter = xbt_cfg_get_double(_surf_cfg_set, name);
133 }
134 static void _surf_cfg_cb__surf_maxmin_selective_update(const char *name, int pos) {
135         sg_maxmin_selective_update = xbt_cfg_get_int(_surf_cfg_set, name);
136 }
137
138 /* callback of the inclusion path */
139 static void _surf_cfg_cb__surf_path(const char *name, int pos) {
140   char *path = xbt_cfg_get_string_at(_surf_cfg_set, name, pos);
141   xbt_dynar_push(surf_path, &path);
142 }
143
144
145 #ifdef HAVE_GTNETS
146 static void _surf_cfg_cb__gtnets_jitter(const char *name, int pos){
147         sg_gtnets_jitter = xbt_cfg_get_double(_surf_cfg_set, name);
148 }
149 static void _surf_cfg_cb__gtnets_jitter_seed(const char *name, int pos){
150         sg_gtnets_jitter_seed = xbt_cfg_get_int(_surf_cfg_set, name);
151 }
152 #endif
153
154 /* create the config set, register what should be and parse the command line*/
155 void surf_config_init(int *argc, char **argv)
156 {
157
158   /* Create the configuration support */
159   if (_surf_init_status == 0) { /* Only create stuff if not already inited */
160     _surf_init_status = 1;
161
162     char *description = xbt_malloc(1024), *p = description;
163     char *default_value;
164     double double_default_value;
165         int default_value_int;
166     int i;
167
168     sprintf(description, "The model to use for the CPU. Possible values: ");
169     p = description;
170     while (*(++p) != '\0');
171     for (i = 0; surf_cpu_model_description[i].name; i++)
172       p +=
173         sprintf(p, "%s%s", (i == 0 ? "" : ", "),
174                 surf_cpu_model_description[i].name);
175     sprintf(p,".\n       (use 'help' as a value to see the long description of each model)");
176     default_value = xbt_strdup("Cas01");
177     xbt_cfg_register(&_surf_cfg_set,
178                      "cpu/model", description, xbt_cfgelm_string,
179                      &default_value, 1, 1, &_surf_cfg_cb__cpu_model, NULL);
180
181     sprintf(description,
182             "The model to use for the network. Possible values: ");
183     p = description;
184     while (*(++p) != '\0');
185     for (i = 0; surf_network_model_description[i].name; i++)
186       p +=
187         sprintf(p, "%s%s", (i == 0 ? "" : ", "),
188                 surf_network_model_description[i].name);
189     sprintf(p,".\n       (use 'help' as a value to see the long description of each model)");
190     default_value = xbt_strdup("LV08");
191     xbt_cfg_register(&_surf_cfg_set,
192                      "network/model", description, xbt_cfgelm_string,
193                      &default_value, 1, 1, &_surf_cfg_cb__network_model,
194                      NULL);
195
196     sprintf(description,
197             "The model to use for the workstation. Possible values: ");
198     p = description;
199     while (*(++p) != '\0');
200     for (i = 0; surf_workstation_model_description[i].name; i++)
201       p +=
202         sprintf(p, "%s%s", (i == 0 ? "" : ", "),
203                 surf_workstation_model_description[i].name);
204     sprintf(p,".\n       (use 'help' as a value to see the long description of each model)");
205     default_value = xbt_strdup("CLM03");
206     xbt_cfg_register(&_surf_cfg_set,
207                      "workstation/model", description, xbt_cfgelm_string,
208                      &default_value, 1, 1, &_surf_cfg_cb__workstation_model,
209                      NULL);
210
211     xbt_free(description);
212
213     default_value = xbt_strdup("Full");
214     xbt_cfg_register(&_surf_cfg_set, "routing",
215                      "Model to use to store the routing information",
216                      xbt_cfgelm_string, &default_value, 1, 1, NULL, NULL);
217
218     xbt_cfg_register(&_surf_cfg_set, "TCP_gamma",
219                      "Size of the biggest TCP window (cat /proc/sys/net/ipv4/tcp_[rw]mem for recv/send window; Use the last given value, which is the max window size)",
220                      xbt_cfgelm_double, NULL, 1, 1, _surf_cfg_cb__tcp_gamma, NULL);
221     xbt_cfg_set_double(_surf_cfg_set, "TCP_gamma", 20000.0);
222
223     /* The parameters of network models */
224     double_default_value = 1.0;
225     xbt_cfg_register(&_surf_cfg_set, "network/latency_factor",
226                      "Correction factor to apply to the provided latency (default value set by network model)",
227                      xbt_cfgelm_double, &double_default_value, 1, 1, _surf_cfg_cb__latency_factor, NULL);
228     double_default_value = 1.0;
229     xbt_cfg_register(&_surf_cfg_set, "network/bandwidth_factor",
230                      "Correction factor to apply to the provided bandwidth (default value set by network model)",
231                      xbt_cfgelm_double, &double_default_value, 1, 1, _surf_cfg_cb__bandwidth_factor, NULL);
232     double_default_value = 0.0;
233     xbt_cfg_register(&_surf_cfg_set, "network/weight_S",
234                      "Correction factor to apply to the weight of competing streams(default value set by network model)",
235                      xbt_cfgelm_double, &double_default_value, 1, 1, _surf_cfg_cb__weight_S, NULL);
236
237     /* Inclusion path */
238     xbt_cfg_register(&_surf_cfg_set, "path",
239                      "Lookup path for inclusions in platform and deployment XML files",
240                      xbt_cfgelm_string, NULL, 0, 0, _surf_cfg_cb__surf_path,
241                      NULL);
242
243                 default_value_int = 0;
244     xbt_cfg_register(&_surf_cfg_set, "maxmin_selective_update",
245                      "Update the constraint set propagating recursively to others constraints",
246                      xbt_cfgelm_int, &default_value_int, 0, 1, _surf_cfg_cb__surf_maxmin_selective_update, NULL);
247
248 #ifdef HAVE_GTNETS
249     xbt_cfg_register(&_surf_cfg_set, "gtnets_jitter",
250                      "Double value to oscillate the link latency, uniformly in random interval [-latency*gtnets_jitter,latency*gtnets_jitter)", xbt_cfgelm_double,
251                      NULL, 1, 1, _surf_cfg_cb__gtnets_jitter, NULL);
252     xbt_cfg_set_double(_surf_cfg_set, "gtnets_jitter", 0.0);
253
254     default_value_int = 10;
255     xbt_cfg_register(&_surf_cfg_set, "gtnets_jitter_seed",
256                      "Use a positive seed to reproduce jitted results, value must be in [1,1e8], default is 10",
257                      xbt_cfgelm_int, &default_value_int, 0, 1, _surf_cfg_cb__gtnets_jitter_seed, NULL);
258 #endif
259
260     if (!surf_path) {
261       /* retrieves the current directory of the        current process */
262       const char *initial_path = __surf_get_initial_path();
263       xbt_assert0((initial_path),
264                   "__surf_get_initial_path() failed! Can't resolves current Windows directory");
265
266       surf_path = xbt_dynar_new(sizeof(char *), NULL);
267       xbt_cfg_set_string(_surf_cfg_set, "path", initial_path);
268     }
269
270
271     surf_config_cmd_line(argc, argv);
272   } else {
273     WARN0("Call to surf_config_init() after initialization ignored");
274   }
275 }
276
277 void surf_config_finalize(void)
278 {
279   if (!_surf_init_status)
280     return;                     /* Not initialized yet. Nothing to do */
281
282   xbt_cfg_free(&_surf_cfg_set);
283   _surf_init_status = 0;
284 }
285
286 void surf_config_models_setup(const char *platform_file)
287 {
288   char *workstation_model_name;
289   int workstation_id = -1;
290
291   surf_timer_model_init(platform_file);
292
293   workstation_model_name =
294     xbt_cfg_get_string(_surf_cfg_set, "workstation/model");
295   char *network_model_name = xbt_cfg_get_string(_surf_cfg_set, "network/model");
296   char *cpu_model_name = xbt_cfg_get_string(_surf_cfg_set, "cpu/model");
297
298   if ((strcmp(network_model_name,"LV08") || strcmp(cpu_model_name,"Cas01"))
299       && !strcmp(workstation_model_name, "CLM03")){
300     const char *val = "compound";
301     INFO0("Switching workstation model to compound since you changed the network and/or cpu model(s)");
302     xbt_cfg_set_string(_surf_cfg_set,"workstation/model",val);
303     workstation_model_name = (char*)"compound";
304   }
305
306   DEBUG1("Workstation model: %s", workstation_model_name);
307   workstation_id =
308     find_model_description(surf_workstation_model_description,
309                            workstation_model_name);
310   if (!strcmp(workstation_model_name, "compound")) {
311     int network_id = -1;
312     int cpu_id = -1;
313
314     xbt_assert0(cpu_model_name,
315         "Set a cpu model to use with the 'compound' workstation model");
316
317     xbt_assert0(network_model_name,
318         "Set a network model to use with the 'compound' workstation model");
319
320     network_id =
321       find_model_description(surf_network_model_description,
322                              network_model_name);
323     cpu_id =
324       find_model_description(surf_cpu_model_description, cpu_model_name);
325
326     surf_cpu_model_description[cpu_id].model_init_preparse(platform_file);
327     surf_network_model_description[network_id].
328       model_init_preparse(platform_file);
329   }
330
331   DEBUG0("Call workstation_model_init");
332   surf_workstation_model_description[workstation_id].model_init_preparse
333     (platform_file);
334 }
335
336 void surf_config_models_create_elms(void)
337 {
338   char *workstation_model_name =
339     xbt_cfg_get_string(_surf_cfg_set, "workstation/model");
340   int workstation_id =
341     find_model_description(surf_workstation_model_description,
342                            workstation_model_name);
343   if (surf_workstation_model_description[workstation_id].
344       model_init_postparse != NULL)
345     surf_workstation_model_description[workstation_id].model_init_postparse();
346 }