Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
77c876146d828b1f72da220230dcd8d2f1a9a36d
[simgrid.git] / src / msg / msg_environment.c
1 /* Copyright (c) 2004, 2005, 2006, 2007, 2008, 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 #include "msg_private.h"
8 #include "xbt/sysdep.h"
9 #include "xbt/log.h"
10
11 #ifdef HAVE_LUA
12 #include <lua.h>
13 #include <lauxlib.h>
14 #include <lualib.h>
15 #endif
16
17 /********************************* MSG **************************************/
18
19 /** \ingroup msg_simulation
20  * \brief A platform constructor.
21  *
22  * Creates a new platform, including hosts, links and the
23  * routing_table. 
24  * \param file a filename of a xml description of a platform. This file 
25  * follows this DTD :
26  *
27  *     \include simgrid.dtd
28  *
29  * Here is a small example of such a platform 
30  *
31  *     \include small_platform.xml
32  *
33  * Have a look in the directory examples/msg/ to have a big example.
34  */
35 void MSG_create_environment(const char *file)
36 {
37   SIMIX_create_environment(file);
38 }
39
40 void MSG_post_create_environment(void) {
41   xbt_lib_cursor_t cursor;
42   void **data;
43   char *name;
44
45   /* Initialize MSG hosts */
46   xbt_lib_foreach(host_lib, cursor, name, data) {
47     if(data[SIMIX_HOST_LEVEL])
48       __MSG_host_create(xbt_dict_cursor_get_elm(cursor));
49   }
50 }
51
52 msg_as_t MSG_environment_get_routing_root() {
53   return surf_AS_get_routing_root();
54 }
55
56 const char *MSG_environment_as_get_name(msg_as_t as) {
57   return surf_AS_get_name(as);
58 }
59
60 xbt_dict_t MSG_environment_as_get_routing_sons(msg_as_t as) {
61   xbt_dict_t res = surf_AS_get_routing_sons(as);
62   return res;
63 }
64
65 const char *MSG_environment_as_get_property_value(msg_as_t as, const char *name)
66 {
67   xbt_dict_t dict = xbt_lib_get_or_null(as_router_lib, MSG_environment_as_get_name(as), ROUTING_PROP_ASR_LEVEL);
68   if (dict==NULL)
69     return NULL;
70   return xbt_dict_get_or_null(dict, name);
71 }
72
73 const char *MSG_environment_as_get_model(msg_as_t as) {
74   return surf_AS_get_model(as);
75 }
76
77 xbt_dynar_t MSG_environment_as_get_hosts(msg_as_t as) {
78   return surf_AS_get_hosts(as);
79 }