Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' into fix/execute_benched
[simgrid.git] / examples / msg / platform-properties / platform-properties.c
1 /* Copyright (c) 2007-2016. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "simgrid/msg.h"
7
8 XBT_LOG_NEW_DEFAULT_CATEGORY(test, "Property test");
9
10 static void test_host(const char*hostname)
11 {
12   msg_host_t thehost = MSG_host_by_name(hostname);
13   xbt_dict_t props = MSG_host_get_properties(thehost);
14   xbt_dict_cursor_t cursor = NULL;
15   char *key;
16   char *data;
17   const char *noexist = "Unknown";
18   const char *value;
19   char exist[] = "Hdd";
20
21   XBT_INFO("== Print the properties of the host '%s'", hostname);
22   xbt_dict_foreach(props, cursor, key, data)
23     XBT_INFO("  Host property: '%s' -> '%s'", key, data);
24
25   XBT_INFO("== Try to get a host property that does not exist");
26   value = MSG_host_get_property_value(thehost, noexist);
27   xbt_assert(!value, "The key exists (it's not supposed to)");
28
29   XBT_INFO("== Try to get a host property that does exist");
30   value = MSG_host_get_property_value(thehost, exist);
31   xbt_assert(value, "\tProperty %s is undefined (where it should)", exist);
32   xbt_assert(!strcmp(value, "180"), "\tValue of property %s is defined to %s (where it should be 180)", exist, value);
33   XBT_INFO("   Property: %s old value: %s", exist, value);
34
35   XBT_INFO("== Trying to modify a host property");
36   MSG_host_set_property_value(thehost, exist, (char*)"250");
37
38   /* Test if we have changed the value */
39   value = MSG_host_get_property_value(thehost, exist);
40   xbt_assert(value, "Property %s is undefined (where it should)", exist);
41   xbt_assert(!strcmp(value, "250"), "Value of property %s is defined to %s (where it should be 250)", exist, value);
42   XBT_INFO("   Property: %s old value: %s", exist, value);
43
44   /* Restore the value for the next test */
45   MSG_host_set_property_value(thehost, exist, (char*)"180");
46
47   xbt_dict_free(&props);
48 }
49
50 static int alice(int argc, char *argv[]) { /* Dump what we have on the current host */
51   test_host("host1");
52   return 0;
53 }
54
55 static int carole(int argc, char *argv[]) {/* Dump what we have on a remote host */
56   MSG_process_sleep(1); // Wait for alice to be done with its experiment
57   test_host("host1");
58   return 0;
59 }
60
61 static int david(int argc, char *argv[]) {/* Dump what we have on a remote host */
62   MSG_process_sleep(2); // Wait for alice and carole to be done with its experiment
63   test_host("node-0.acme.org");
64   return 0;
65 }
66
67 static int bob(int argc, char *argv[])
68 {
69   /* this host also tests the properties of the AS*/
70   msg_as_t root = MSG_zone_get_root();
71   XBT_INFO("== Print the properties of the AS");
72   XBT_INFO("   Process property: filename -> %s", MSG_zone_get_property_value(root, "filename"));
73   XBT_INFO("   Process property: date -> %s", MSG_zone_get_property_value(root, "date"));
74   XBT_INFO("   Process property: author -> %s", MSG_zone_get_property_value(root, "author"));
75
76   /* Get the property list of current bob process */
77   xbt_dict_t props = MSG_process_get_properties(MSG_process_self());
78   xbt_dict_cursor_t cursor = NULL;
79   char *key;
80   char *data;
81   const char *noexist = "UnknownProcessProp";
82   XBT_ATTRIB_UNUSED const char *value;
83
84   XBT_INFO("== Print the properties of the process");
85   xbt_dict_foreach(props, cursor, key, data)
86     XBT_INFO("   Process property: %s -> %s", key, data);
87
88   XBT_INFO("== Try to get a process property that does not exist");
89
90   value = MSG_process_get_property_value(MSG_process_self(), noexist);
91   xbt_assert(!value, "The property is defined (it shouldnt)");
92   xbt_dict_free(&props);
93
94   return 0;
95 }
96
97 int main(int argc, char *argv[])
98 {
99   unsigned int i;
100   msg_host_t host;
101
102   MSG_init(&argc, argv);
103   xbt_assert(argc > 2, "Usage: %s platform_file deployment_file\n"
104              "\tExample: %s msg_platform.xml msg_deployment.xml\n", argv[0], argv[0]);
105
106   MSG_function_register("alice", alice);
107   MSG_function_register("bob", bob);
108   MSG_function_register("carole", carole);
109   MSG_function_register("david", david);
110
111   MSG_create_environment(argv[1]);
112
113   XBT_INFO("There are %d hosts in the environment", MSG_get_host_number());
114
115   xbt_dynar_t hosts = MSG_hosts_as_dynar();
116   xbt_dynar_foreach(hosts, i, host){
117     XBT_INFO("Host '%s' runs at %.0f flops/s",MSG_host_get_name(host), MSG_host_get_speed(host));
118   }
119   xbt_dynar_free(&hosts);
120
121   MSG_launch_application(argv[2]);
122
123   msg_error_t res =  MSG_main();
124
125   return res!=MSG_OK;
126 }