Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'oldstyle_element_set'
[simgrid.git] / src / msg / msg_environment.cpp
1 /* Copyright (c) 2004-2015. 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 storages */
46   xbt_lib_foreach(storage_lib, cursor, name, data) {
47     if(data[SIMIX_STORAGE_LEVEL])
48       __MSG_storage_create(xbt_dict_cursor_get_elm(cursor));
49   }
50
51 }
52
53 msg_as_t MSG_environment_get_routing_root() {
54   return surf_AS_get_routing_root();
55 }
56
57 const char *MSG_environment_as_get_name(msg_as_t as) {
58   return surf_AS_get_name(as);
59 }
60
61 msg_as_t MSG_environment_as_get_by_name(const char * name) {
62   return surf_AS_get_by_name(name);
63 }
64
65 xbt_dict_t MSG_environment_as_get_routing_sons(msg_as_t as) {
66   xbt_dict_t res = surf_AS_get_routing_sons(as);
67   return res;
68 }
69
70 const char *MSG_environment_as_get_property_value(msg_as_t as, const char *name)
71 {
72   xbt_dict_t dict = (xbt_dict_t) xbt_lib_get_or_null(as_router_lib, MSG_environment_as_get_name(as), ROUTING_PROP_ASR_LEVEL);
73   if (dict==NULL)
74     return NULL;
75   return (char*) xbt_dict_get_or_null(dict, name);
76 }
77
78 xbt_dynar_t MSG_environment_as_get_hosts(msg_as_t as) {
79   return surf_AS_get_hosts(as);
80 }