Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
dfc751f0e3fee0755a4b493d06713333797004b7
[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, xbt_strdup("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, xbt_strdup("180"));
46 }
47
48 static int alice(int argc, char *argv[]) { /* Dump what we have on the current host */
49   test_host("host1");
50   return 0;
51 }
52
53 static int carole(int argc, char *argv[]) {/* Dump what we have on a remote host */
54   MSG_process_sleep(1); // Wait for alice to be done with its experiment
55   test_host("host1");
56   return 0;
57 }
58
59 static int david(int argc, char *argv[]) {/* Dump what we have on a remote host */
60   MSG_process_sleep(2); // Wait for alice and carole to be done with its experiment
61   test_host("node-0.acme.org");
62   return 0;
63 }
64
65 static int bob(int argc, char *argv[])
66 {
67   /* Get the property list of current bob process */
68   xbt_dict_t props = MSG_process_get_properties(MSG_process_self());
69   xbt_dict_cursor_t cursor = NULL;
70   char *key;
71   char *data;
72   const char *noexist = "UnknownProcessProp";
73   XBT_ATTRIB_UNUSED const char *value;
74
75   XBT_INFO("== Print the properties of the process");
76   xbt_dict_foreach(props, cursor, key, data)
77     XBT_INFO("   Process property: %s -> %s", key, data);
78
79   XBT_INFO("== Try to get a process property that does not exist");
80
81   value = MSG_process_get_property_value(MSG_process_self(), noexist);
82   xbt_assert(!value, "The property is defined (it shouldnt)");
83
84   return 0;
85 }
86
87 int main(int argc, char *argv[])
88 {
89   unsigned int i;
90   msg_host_t host;
91
92   MSG_init(&argc, argv);
93   xbt_assert(argc > 2, "Usage: %s platform_file deployment_file\n"
94              "\tExample: %s msg_platform.xml msg_deployment.xml\n", argv[0], argv[0]);
95
96   MSG_function_register("alice", alice);
97   MSG_function_register("bob", bob);
98   MSG_function_register("carole", carole);
99   MSG_function_register("david", david);
100
101   MSG_create_environment(argv[1]);
102
103   XBT_INFO("There are %d hosts in the environment", MSG_get_host_number());
104
105   xbt_dynar_t hosts = MSG_hosts_as_dynar();
106   xbt_dynar_foreach(hosts, i, host){
107     XBT_INFO("Host '%s' runs at %.0f flops/s",MSG_host_get_name(host), MSG_host_get_speed(host));
108   }
109   xbt_dynar_free(&hosts);
110
111   MSG_launch_application(argv[2]);
112
113   msg_error_t res =  MSG_main();
114
115   return res!=MSG_OK;
116 }