Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[sonar] Constify pointer and reference local variables in examples/.
[simgrid.git] / examples / s4u / platform-properties / s4u-platform-properties.cpp
1 /* Copyright (c) 2017-2019. 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(const std::string& hostname)
15 {
16   simgrid::s4u::Host* thehost = simgrid::s4u::Host::by_name(hostname);
17   const std::unordered_map<std::string, std::string>* hostprops = 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 : *hostprops)
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(), hostprops->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   auto thezone = thehost->get_englobing_zone();
54   XBT_INFO("== Print the properties of the zone '%s' that contains '%s'", thezone->get_cname(), hostname.c_str());
55   const std::unordered_map<std::string, std::string>* zoneprops = thezone->get_properties();
56   keys.clear();
57   for (auto const& kv : *zoneprops)
58     keys.push_back(kv.first);
59   std::sort(keys.begin(), keys.end());
60   for (std::string key : keys)
61     XBT_INFO("  Zone property: '%s' -> '%s'", key.c_str(), zoneprops->at(key).c_str());
62 }
63
64 static void alice(std::vector<std::string> /*args*/)
65 {
66   /* Dump what we have on the current host */
67   test_host("host1");
68 }
69
70 static void carole(std::vector<std::string> /*args*/)
71 {
72   /* Dump what we have on a remote host */
73   simgrid::s4u::this_actor::sleep_for(1); // Wait for alice to be done with its experiment
74   test_host("host1");
75 }
76
77 static void david(std::vector<std::string> /*args*/)
78 {
79   /* Dump what we have on a remote host */
80   simgrid::s4u::this_actor::sleep_for(2); // Wait for alice and carole to be done with its experiment
81   test_host("node-0.simgrid.org");
82 }
83
84 static void bob(std::vector<std::string> /*args*/)
85 {
86   /* this host also tests the properties of the AS*/
87   const simgrid::s4u::NetZone* root = simgrid::s4u::Engine::get_instance()->get_netzone_root();
88   XBT_INFO("== Print the properties of the root zone");
89   XBT_INFO("   Zone property: filename -> %s", root->get_property("filename"));
90   XBT_INFO("   Zone property: date -> %s", root->get_property("date"));
91   XBT_INFO("   Zone property: author -> %s", root->get_property("author"));
92
93   /* Get the property list of current bob process */
94   const std::unordered_map<std::string, std::string>* props = simgrid::s4u::Actor::self()->get_properties();
95   const char* noexist = "UnknownProcessProp";
96   XBT_ATTRIB_UNUSED const char* value;
97
98   XBT_INFO("== Print the properties of the actor");
99   for (const auto& kv : *props)
100     XBT_INFO("   Actor property: %s -> %s", kv.first.c_str(), kv.second.c_str());
101
102   XBT_INFO("== Try to get an actor property that does not exist");
103
104   value = simgrid::s4u::Actor::self()->get_property(noexist);
105   xbt_assert(not value, "The property is defined (it should not)");
106 }
107
108 int main(int argc, char* argv[])
109 {
110   simgrid::s4u::Engine e(&argc, argv);
111   e.load_platform(argv[1]);
112
113   e.register_function("alice", alice);
114   e.register_function("bob", bob);
115   e.register_function("carole", carole);
116   e.register_function("david", david);
117
118   size_t totalHosts = e.get_host_count();
119
120   XBT_INFO("There are %zu hosts in the environment", totalHosts);
121   std::vector<simgrid::s4u::Host*> hosts = e.get_all_hosts();
122   for (unsigned int i = 0; i < hosts.size(); i++)
123     XBT_INFO("Host '%s' runs at %.0f flops/s", hosts[i]->get_cname(), hosts[i]->get_speed());
124
125   e.load_deployment(argv[2]);
126   e.run();
127
128   return 0;
129 }