Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Rename some struct fields in private datatype to explicit whether they are smx object...
[simgrid.git] / src / simix / smx_environment.c
1 /*      $Id$     */
2
3 /* Copyright (c) 2007 Arnaud Legrand, Bruno Donnassolo.
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 #include "private.h"
10 #include "xbt/sysdep.h"
11 #include "xbt/log.h"
12 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_environment, simix,
13                                 "Logging specific to SIMIX (environment)");
14
15 /********************************* SIMIX **************************************/
16
17 /** 
18  * \brief A platform constructor.
19  *
20  * Creates a new platform, including hosts, links and the
21  * routing_table. 
22  * \param file a filename of a xml description of a platform. This file 
23  * follows this DTD :
24  *
25  *     \include surfxml.dtd
26  *
27  * Here is a small example of such a platform 
28  *
29  *     \include small_platform.xml
30  *
31  */
32 void SIMIX_create_environment(const char *file) 
33 {
34   xbt_dict_cursor_t cursor = NULL;
35   char *name = NULL;
36   void *workstation = NULL;
37   char *workstation_model_name;
38
39   simix_config_init(); /* make sure that our configuration set is created */
40   surf_timer_resource_init(file);
41
42   /* which model do you want today? */
43   workstation_model_name = xbt_cfg_get_string (_simix_cfg_set, "surf_workstation_model");
44
45   DEBUG1("Model : %s", workstation_model_name);
46   if (!strcmp(workstation_model_name,"KCCFLN05")) {
47     surf_workstation_resource_init_KCCFLN05(file);
48   } else if (!strcmp(workstation_model_name,"KCCFLN05_proportional")) {
49     surf_workstation_resource_init_KCCFLN05_proportional(file);
50   } else if (!strcmp(workstation_model_name,"KCCFLN05_Vegas")) {
51     surf_workstation_resource_init_KCCFLN05_Vegas(file);
52   } else if (!strcmp(workstation_model_name,"KCCFLN05_Reno")) {
53     surf_workstation_resource_init_KCCFLN05_Reno(file);
54   } else if (!strcmp(workstation_model_name,"CLM03")) {
55     surf_workstation_resource_init_CLM03(file);
56   } else {
57     xbt_assert0(0,"The impossible happened (once again)");
58   }
59   _simix_init_status = 2; /* inited; don't change settings now */
60
61   xbt_dict_foreach(workstation_set, cursor, name, workstation) {
62     __SIMIX_host_create(name, workstation, NULL);
63   }
64
65   return;
66 }
67