X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/65ed12738b3113afdcb29e4c5fd177cbae2ac856..1b30f00857843f1cee60814ed519ff82e8ef4787:/src/surf/surf_config.c diff --git a/src/surf/surf_config.c b/src/surf/surf_config.c index 3b28a5114f..818b456019 100644 --- a/src/surf/surf_config.c +++ b/src/surf/surf_config.c @@ -32,10 +32,14 @@ static void surf_config_cmd_line(int *argc, char **argv) remove_it = 1; } else if (!strncmp(argv[i], "--cfg-help", strlen("--cfg-help") + 1) || !strncmp(argv[i], "--help", strlen("--help") + 1)) { - printf - ("Description of the configuration accepted by this simulator:\n"); + printf("Description of the configuration accepted by this simulator:\n"); xbt_cfg_help(_surf_cfg_set); - remove_it = 1; + printf("\nYou can also use --help-models to see the details of all models known by this simulator.\n"); + exit(0); + } else if (!strncmp(argv[i], "--help-models", strlen("--help-models")+1)) { + model_help("workstation",surf_workstation_model_description); + model_help("CPU",surf_cpu_model_description); + model_help("network",surf_network_model_description); exit(0); } if (remove_it) { /*remove this from argv */ @@ -64,8 +68,13 @@ static void _surf_cfg_cb__workstation_model(const char *name, int pos) "Cannot change the model after the initialization"); val = xbt_cfg_get_string(_surf_cfg_set, name); - /* New Module missing */ + if (!strcmp(val,"help")) { + model_help("workstation",surf_workstation_model_description); + exit(0); + } + + /* Make sure that the model exists */ find_model_description(surf_workstation_model_description, val); } @@ -78,6 +87,12 @@ static void _surf_cfg_cb__cpu_model(const char *name, int pos) "Cannot change the model after the initialization"); val = xbt_cfg_get_string(_surf_cfg_set, name); + + if (!strcmp(val,"help")) { + model_help("CPU",surf_cpu_model_description); + exit(0); + } + /* New Module missing */ find_model_description(surf_cpu_model_description, val); } @@ -91,6 +106,12 @@ static void _surf_cfg_cb__network_model(const char *name, int pos) "Cannot change the model after the initialization"); val = xbt_cfg_get_string(_surf_cfg_set, name); + + if (!strcmp(val,"help")) { + model_help("network",surf_network_model_description); + exit(0); + } + /* New Module missing */ find_model_description(surf_network_model_description, val); } @@ -150,6 +171,7 @@ void surf_config_init(int *argc, char **argv) p += sprintf(p, "%s%s", (i == 0 ? "" : ", "), surf_cpu_model_description[i].name); + sprintf(p,".\n (use 'help' as a value to see the long description of each model)"); default_value = xbt_strdup("Cas01"); xbt_cfg_register(&_surf_cfg_set, "cpu/model", description, xbt_cfgelm_string, @@ -163,6 +185,7 @@ void surf_config_init(int *argc, char **argv) p += sprintf(p, "%s%s", (i == 0 ? "" : ", "), surf_network_model_description[i].name); + sprintf(p,".\n (use 'help' as a value to see the long description of each model)"); default_value = xbt_strdup("LV08"); xbt_cfg_register(&_surf_cfg_set, "network/model", description, xbt_cfgelm_string, @@ -177,6 +200,7 @@ void surf_config_init(int *argc, char **argv) p += sprintf(p, "%s%s", (i == 0 ? "" : ", "), surf_workstation_model_description[i].name); + sprintf(p,".\n (use 'help' as a value to see the long description of each model)"); default_value = xbt_strdup("CLM03"); xbt_cfg_register(&_surf_cfg_set, "workstation/model", description, xbt_cfgelm_string, @@ -244,6 +268,8 @@ void surf_config_init(int *argc, char **argv) surf_config_cmd_line(argc, argv); + } else { + WARN0("Call to surf_config_init() after initialization ignored"); } }