Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branches 'auto_restart' and 'auto_restart' of framagit.org:simgrid/simgrid
[simgrid.git] / examples / s4u / platform-properties / s4u-platform-properties.cpp
1 /* Copyright (c) 2017-2018. 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 // TODO: also test the properties attached to links
7
8 #include <algorithm>
9 #include <simgrid/s4u.hpp>
10 #include <string>
11
12 XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_test, "Property test");
13
14 static void test_host(std::string hostname)
15 {
16   simgrid::s4u::Host* thehost = simgrid::s4u::Host::by_name(hostname);
17   std::unordered_map<std::string, std::string>* props = thehost->get_properties();
18   const char* noexist = "Unknown";
19   const char* exist   = "Hdd";
20   const char* value;
21
22   XBT_INFO("== Print the properties of the host '%s'", hostname.c_str());
23   // Sort the properties before displaying them, so that the tests are perfectly reproducible
24   std::vector<std::string> keys;
25   for (auto const& kv : *props)
26     keys.push_back(kv.first);
27   std::sort(keys.begin(), keys.end());
28   for (std::string key : keys)
29     XBT_INFO("  Host property: '%s' -> '%s'", key.c_str(), props->at(key).c_str());
30
31   XBT_INFO("== Try to get a host property that does not exist");
32   value = thehost->get_property(noexist);
33   xbt_assert(not value, "The key exists (it's not supposed to)");
34
35   XBT_INFO("== Try to get a host property that does exist");
36   value = thehost->get_property(exist);
37   xbt_assert(value, "\tProperty %s is undefined (where it should)", exist);
38   xbt_assert(!strcmp(value, "180"), "\tValue of property %s is defined to %s (where it should be 180)", exist, value);
39   XBT_INFO("   Property: %s old value: %s", exist, value);
40
41   XBT_INFO("== Trying to modify a host property");
42   thehost->set_property(exist, "250");
43
44   /* Test if we have changed the value */
45   value = thehost->get_property(exist);
46   xbt_assert(value, "Property %s is undefined (where it should)", exist);
47   xbt_assert(!strcmp(value, "250"), "Value of property %s is defined to %s (where it should be 250)", exist, value);
48   XBT_INFO("   Property: %s old value: %s", exist, value);
49
50   /* Restore the value for the next test */
51   thehost->set_property(exist, "180");
52 }
53
54 static int alice(int argc, char* argv[])
55 {
56   /* Dump what we have on the current host */
57   test_host("host1");
58   return 0;
59 }
60
61 static int carole(int argc, char* argv[])
62 {
63   /* Dump what we have on a remote host */
64   simgrid::s4u::this_actor::sleep_for(1); // Wait for alice to be done with its experiment
65   test_host("host1");
66   return 0;
67 }
68
69 static int david(int argc, char* argv[])
70 {
71   /* Dump what we have on a remote host */
72   simgrid::s4u::this_actor::sleep_for(2); // Wait for alice and carole to be done with its experiment
73   test_host("node-0.acme.org");
74   return 0;
75 }
76
77 static int bob(int argc, char* argv[])
78 {
79   /* this host also tests the properties of the AS*/
80   simgrid::s4u::NetZone* root = simgrid::s4u::Engine::get_instance()->get_netzone_root();
81   XBT_INFO("== Print the properties of the zone");
82   XBT_INFO("   Zone property: filename -> %s", root->get_property("filename"));
83   XBT_INFO("   Zone property: date -> %s", root->get_property("date"));
84   XBT_INFO("   Zone property: author -> %s", root->get_property("author"));
85
86   /* Get the property list of current bob process */
87   std::unordered_map<std::string, std::string>* props = simgrid::s4u::Actor::self()->get_properties();
88   const char* noexist = "UnknownProcessProp";
89   XBT_ATTRIB_UNUSED const char* value;
90
91   XBT_INFO("== Print the properties of the actor");
92   for (const auto& kv : *props)
93     XBT_INFO("   Actor property: %s -> %s", kv.first.c_str(), kv.second.c_str());
94
95   XBT_INFO("== Try to get an actor property that does not exist");
96
97   value = simgrid::s4u::Actor::self()->get_property(noexist);
98   xbt_assert(not value, "The property is defined (it should not)");
99   return 0;
100 }
101
102 int main(int argc, char* argv[])
103 {
104   simgrid::s4u::Engine e(&argc, argv);
105   e.load_platform(argv[1]);
106
107   e.register_function("alice", alice);
108   e.register_function("bob", bob);
109   e.register_function("carole", carole);
110   e.register_function("david", david);
111
112   size_t totalHosts = e.get_host_count();
113
114   XBT_INFO("There are %zu hosts in the environment", totalHosts);
115   std::vector<simgrid::s4u::Host*> hosts = e.get_all_hosts();
116   for (unsigned int i = 0; i < hosts.size(); i++)
117     XBT_INFO("Host '%s' runs at %.0f flops/s", hosts[i]->get_cname(), hosts[i]->get_speed());
118
119   e.load_deployment(argv[2]);
120   e.run();
121
122   return 0;
123 }