X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e41099ae20756bd6d3d3b01b14bdede95b6821cc..23f5bf52cc58cf837840f231cf638e9fcd45097b:/src/simix/smx_environment.c diff --git a/src/simix/smx_environment.c b/src/simix/smx_environment.c index fe57ebf539..dd4709a949 100644 --- a/src/simix/smx_environment.c +++ b/src/simix/smx_environment.c @@ -1,63 +1,56 @@ -/* $Id$ */ - -/* Copyright (c) 2007 Arnaud Legrand, Bruno Donnassolo. - All rights reserved. */ +/* Copyright (c) 2007, 2008, 2009, 2010. The SimGrid Team. + * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ -#include "private.h" +#include "smx_private.h" #include "xbt/sysdep.h" #include "xbt/log.h" +#include "xbt/xbt_os_time.h" +#include "xbt/config.h" +#include "surf/surfxml_parse.h" + XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_environment, simix, - "Logging specific to SIMIX (environment)"); + "Logging specific to SIMIX (environment)"); /********************************* SIMIX **************************************/ -/** +/** * \brief A platform constructor. * * Creates a new platform, including hosts, links and the - * routing_table. - * \param file a filename of a xml description of a platform. This file + * routing_table. + * \param file a filename of a xml description of a platform. This file * follows this DTD : * * \include surfxml.dtd * - * Here is a small example of such a platform + * Here is a small example of such a platform * * \include small_platform.xml * */ -void SIMIX_create_environment(const char *file) +void SIMIX_create_environment(const char *file) { - xbt_dict_cursor_t cursor = NULL; - char *name = NULL; - void *workstation = NULL; - char *workstation_model_name; - - simix_config_init(); /* make sure that our configuration set is created */ - surf_timer_resource_init(file); - - /* which model do you want today? */ - workstation_model_name = xbt_cfg_get_string (_simix_cfg_set, "surf_workstation_model"); - - DEBUG1("Model : %s", workstation_model_name); - if (!strcmp(workstation_model_name,"KCCFLN05")) { - surf_workstation_resource_init_KCCFLN05(file); - } else if (!strcmp(workstation_model_name,"KCCFLN05_proportionnal")) { - surf_workstation_resource_init_KCCFLN05_proportionnal(file); - } else if (!strcmp(workstation_model_name,"CLM03")) { - surf_workstation_resource_init_CLM03(file); - } else { - xbt_assert0(0,"The impossible happened (once again)"); - } - _simix_init_status = 2; /* inited; don't change settings now */ + double start, end; - xbt_dict_foreach(workstation_set, cursor, name, workstation) { - __SIMIX_host_create(name, workstation, NULL); - } + start = xbt_os_time(); + parse_platform_file(file); + end = xbt_os_time(); + XBT_DEBUG("PARSE TIME: %lg", (end - start)); - return; } +void SIMIX_post_create_environment(void) { + + void **workstation = NULL; + xbt_lib_cursor_t cursor = NULL; + char *name = NULL; + + xbt_lib_foreach(host_lib, cursor, name, workstation) { + if(workstation[SURF_WKS_LEVEL]) + SIMIX_host_create(name, workstation[SURF_WKS_LEVEL], NULL); + } + surf_presolve(); +}