Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
when parallel ctests are performed, using the default tracing filename may cause...
[simgrid.git] / src / msg / msg_environment.c
1 /* Copyright (c) 2004-2013. 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   /* Initialize MSG storages */
52   xbt_lib_foreach(storage_lib, cursor, name, data) {
53     if(data[SIMIX_STORAGE_LEVEL])
54       __MSG_storage_create(xbt_dict_cursor_get_elm(cursor));
55   }
56
57 }
58
59 msg_as_t MSG_environment_get_routing_root() {
60   return surf_AS_get_routing_root();
61 }
62
63 const char *MSG_environment_as_get_name(msg_as_t as) {
64   return surf_AS_get_name(as);
65 }
66
67 xbt_dict_t MSG_environment_as_get_routing_sons(msg_as_t as) {
68   xbt_dict_t res = surf_AS_get_routing_sons(as);
69   return res;
70 }
71
72 const char *MSG_environment_as_get_property_value(msg_as_t as, const char *name)
73 {
74   xbt_dict_t dict = xbt_lib_get_or_null(as_router_lib, MSG_environment_as_get_name(as), ROUTING_PROP_ASR_LEVEL);
75   if (dict==NULL)
76     return NULL;
77   return xbt_dict_get_or_null(dict, name);
78 }
79
80 const char *MSG_environment_as_get_model(msg_as_t as) {
81   return surf_AS_get_model(as);
82 }
83
84 xbt_dynar_t MSG_environment_as_get_hosts(msg_as_t as) {
85   return surf_AS_get_hosts(as);
86 }