X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9b9103db7f7aac95d28b162b7f78c6a946bba864..c5151a86dde4a71352f55b9209bb3edc8b824aeb:/src/msg/environment.c diff --git a/src/msg/environment.c b/src/msg/environment.c index 1bb3d29ab9..c82b2d0f05 100644 --- a/src/msg/environment.c +++ b/src/msg/environment.c @@ -5,12 +5,20 @@ /* 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"xbt/sysdep.h" -#include "xbt/error.h" -XBT_LOG_NEW_DEFAULT_SUBCATEGORY(environment, msg, +#include "private.h" +#include "xbt/sysdep.h" +#include "xbt/log.h" +XBT_LOG_NEW_DEFAULT_SUBCATEGORY(msg_environment, msg, "Logging specific to MSG (environment)"); +/** \defgroup msg_easier_life Platform and Application management + * \brief This section describes functions to manage the platform creation + * and the application deployment. You should also have a look at + * \ref MSG_examples to have an overview of their usage. + * \htmlonly \endhtmlonly + * + */ + /********************************* MSG **************************************/ /** \ingroup msg_easier_life @@ -39,32 +47,38 @@ m_host_t MSG_get_host_by_name(const char *name) * * Creates a new platform, including hosts, links and the * routing_table. - * \param file a filename of a description of a platform. This file is a simple text - * file in which you can use C-style comments and C-style strings. - * Here is a simple description of the format: - \verbatim - -host_name "power in MFlops" "availability" "availability file" ON/OFF "failure file" -host_name "power in MFlops" "availability" "availability file" ON/OFF "failure file" -... - -link_name "bandwidth in Mbytes" "bandwidth file" "latency in ms" "latency file" -link_name "bandwidth in Mbytes" "bandwidth file" "latency in ms" "latency file" -... -ROUTES -src_name dst_name (link_name link_name link_name ... ) -src_name dst_name (link_name link_name link_name ... ) -... -\endverbatim - * Have a look in the directory examples/msg/ to have a better idea of what - * it looks like. + * \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 + * + * \include small_platform.xml + * + * Have a look in the directory examples/msg/ to have a big example. */ void MSG_create_environment(const char *file) { xbt_dict_cursor_t cursor = NULL; char *name = NULL; void *workstation = NULL; + char *workstation_model_name; + + msg_config_init(); /* make sure that our configuration set is created */ + surf_timer_resource_init(file); - surf_workstation_resource_init_CLM03(file); + /* which model do you want today? */ + workstation_model_name = xbt_cfg_get_string (_msg_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,"CLM03")) { + surf_workstation_resource_init_CLM03(file); + } else { + xbt_assert0(0,"The impossible happened (once again)"); + } + _msg_init_status = 2; /* inited; don't change settings now */ xbt_dict_foreach(workstation_set, cursor, name, workstation) { __MSG_host_create(name, workstation, NULL);