Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines for 2023.
[simgrid.git] / teshsuite / s4u / basic-parsing-test / basic-parsing-test.cpp
index c745023..b69c457 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2008-2021. The SimGrid Team.
+/* Copyright (c) 2008-2023. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
@@ -11,7 +11,7 @@ XBT_LOG_NEW_DEFAULT_CATEGORY(basic_parsing_test, "[usage] basic-parsing-test <pl
 
 namespace sg4 = simgrid::s4u;
 
-static void test_one_link(const std::vector<sg4::Host*> hosts)
+static void test_one_link(const std::vector<sg4::Host*>& hosts)
 {
   const sg4::Host* h1 = hosts[0];
   const sg4::Host* h2 = hosts[1];
@@ -19,62 +19,61 @@ static void test_one_link(const std::vector<sg4::Host*> hosts)
   double latency = 0;
   double min_bandwidth = -1;
 
-  XBT_INFO("Route between %s and %s\n", h1->get_cname(), h2->get_cname());
+  XBT_INFO("Route between %s and %s", h1->get_cname(), h2->get_cname());
   h1->route_to(h2, route, &latency);
-  XBT_INFO("Route size %zu\n", route.size());
+  XBT_INFO("Route size %zu", route.size());
 
-  for (auto link: route) {
+  for (auto const* link : route) {
     double bandwidth = link->get_bandwidth();
-    XBT_INFO("  Link %s: latency = %f, bandwidth = %f\n", link->get_cname(), link->get_latency(), bandwidth);
+    XBT_INFO("  Link %s: latency = %f, bandwidth = %f", link->get_cname(), link->get_latency(), bandwidth);
     if (bandwidth < min_bandwidth || min_bandwidth < 0.0)
       min_bandwidth = bandwidth;
-
   }
-  XBT_INFO("Route latency = %f, route bandwidth = %f\n", latency, min_bandwidth);
+  XBT_INFO("Route latency = %f, route bandwidth = %f", latency, min_bandwidth);
 }
 
-static void test_full_link(const std::vector<sg4::Host*> hosts)
+static void test_full_link(const std::vector<sg4::Host*>& hosts)
 {
   size_t list_size = hosts.size();
   for (size_t i = 0; i < list_size; i++) {
     const sg4::Host* h1 = hosts[i];
     for (size_t j = 0; j < list_size; j++) {
       const sg4::Host* h2 = hosts[j];
-      XBT_INFO("Route between %s and %s\n", h1->get_cname(), h2->get_cname());
+      XBT_INFO("Route between %s and %s", h1->get_cname(), h2->get_cname());
       std::vector<sg4::Link*> route;
       double latency = 0;
       double min_bandwidth = -1;
       h1->route_to(h2, route, &latency);
-      XBT_INFO("  Route size %zu\n", route.size());
+      XBT_INFO("  Route size %zu", route.size());
 
-      for (auto link: route) {
+      for (auto const* link : route) {
         double bandwidth = link->get_bandwidth();
-        XBT_INFO("  Link %s: latency = %f, bandwidth = %f\n", link->get_cname(), link->get_latency(), bandwidth);
+        XBT_INFO("  Link %s: latency = %f, bandwidth = %f", link->get_cname(), link->get_latency(), bandwidth);
         if (bandwidth < min_bandwidth || min_bandwidth < 0.0)
           min_bandwidth = bandwidth;
-
       }
-      XBT_INFO("  Route latency = %f, route bandwidth = %f\n", latency, min_bandwidth);
+      XBT_INFO("  Route latency = %f, route bandwidth = %f", latency, min_bandwidth);
     }
   }
 }
 
 int main(int argc, char** argv)
 {
-  simgrid::s4u::Engine e(&argc, argv);
+  sg4::Engine e(&argc, argv);
 
   /* creation of the environment */
   e.load_platform(argv[1]);
-  XBT_INFO("Workstation number: %zu, link number: %zu\n", e.get_host_count(), e.get_link_count());
+  e.seal_platform();
+  XBT_INFO("Workstation number: %zu, link number: %zu", e.get_host_count(), e.get_link_count());
 
-  std::vector<simgrid::s4u::Host*> hosts = e.get_all_hosts();
+  std::vector<sg4::Host*> hosts = e.get_all_hosts();
   if (argc >= 3) {
-    if (!strcmp(argv[2], "ONE_LINK"))
+    if (strcmp(argv[2], "ONE_LINK") == 0)
       test_one_link(hosts);
-    if (!strcmp(argv[2], "FULL_LINK"))
+    if (strcmp(argv[2], "FULL_LINK") == 0)
       test_full_link(hosts);
-    if (!strcmp(argv[2], "PROP"))
-      XBT_INFO("SG_TEST_mem: %s\n", sg4::Host::by_name("host1")->get_property("SG_TEST_mem"));
+    if (strcmp(argv[2], "PROP") == 0)
+      XBT_INFO("SG_TEST_mem: %s", e.host_by_name("host1")->get_property("SG_TEST_mem"));
   }
 
   return 0;