Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update .mailmap.
[simgrid.git] / examples / cpp / trace-host-user-variables / s4u-trace-host-user-variables.cpp
index e152cc1..8dc6247 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2010-2021. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2010-2023. The SimGrid Team. All rights reserved.          */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
 #include "simgrid/s4u.hpp"
 
 XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_test, "Messages specific for this s4u example");
+namespace sg4 = simgrid::s4u;
 
 static void trace_fun()
 {
-  const char* hostname = simgrid::s4u::this_actor::get_host()->get_cname();
+  const auto host = sg4::this_actor::get_host()->get_name();
 
   // the hostname has an empty HDD with a capacity of 100000 (bytes)
-  TRACE_host_variable_set(hostname, "HDD_capacity", 100000);
-  TRACE_host_variable_set(hostname, "HDD_utilization", 0);
+  simgrid::instr::set_host_variable(host, "HDD_capacity", 100000);
+  simgrid::instr::set_host_variable(host, "HDD_utilization", 0);
 
   for (int i = 0; i < 10; i++) {
     // create and execute a task just to make the simulated time advance
-    simgrid::s4u::this_actor::execute(1e4);
+    sg4::this_actor::execute(1e4);
 
     // ADD: after the execution of this task, the HDD utilization increases by 100 (bytes)
-    TRACE_host_variable_add(hostname, "HDD_utilization", 100);
+    simgrid::instr::add_host_variable(host, "HDD_utilization", 100);
   }
 
   for (int i = 0; i < 10; i++) {
     // create and execute a task just to make the simulated time advance
-    simgrid::s4u::this_actor::execute(1e4);
+    sg4::this_actor::execute(1e4);
 
     // SUB: after the execution of this task, the HDD utilization decreases by 100 (bytes)
-    TRACE_host_variable_sub(hostname, "HDD_utilization", 100);
+    simgrid::instr::sub_host_variable(host, "HDD_utilization", 100);
   }
 }
 
 int main(int argc, char* argv[])
 {
-  simgrid::s4u::Engine e(&argc, argv);
+  sg4::Engine e(&argc, argv);
   xbt_assert(argc > 1, "Usage: %s platform_file\n \tExample: %s small_platform.xml\n", argv[0], argv[0]);
 
   e.load_platform(argv[1]);
 
   // declaring user variables
-  TRACE_host_variable_declare("HDD_capacity");
-  TRACE_host_variable_declare("HDD_utilization");
+  simgrid::instr::declare_host_variable("HDD_capacity");
+  simgrid::instr::declare_host_variable("HDD_utilization", "1 0 0"); // red color
 
-  simgrid::s4u::Actor::create("master", e.host_by_name("Tremblay"), trace_fun);
+  sg4::Actor::create("master", e.host_by_name("Tremblay"), trace_fun);
 
   e.run();
 
   // get user declared variables
-  xbt_dynar_t host_variables = TRACE_get_host_variables();
-  if (host_variables) {
+  if (const auto& host_variables = simgrid::instr::get_host_variables(); not host_variables.empty()) {
     XBT_INFO("Declared host variables:");
-    unsigned int cursor;
-    char* variable;
-    xbt_dynar_foreach (host_variables, cursor, variable) {
-      XBT_INFO("%s", variable);
-    }
-    xbt_dynar_free(&host_variables);
-  }
-  xbt_dynar_t link_variables = TRACE_get_link_variables();
-  if (link_variables) {
-    xbt_assert(xbt_dynar_is_empty(link_variables), "Should not have any declared link variable!");
-    xbt_dynar_free(&link_variables);
+    for (const auto& var : host_variables)
+      XBT_INFO("%s", var.c_str());
   }
+  const auto& link_variables = simgrid::instr::get_link_variables();
+  xbt_assert(link_variables.empty(), "Should not have any declared link variable!");
 
   return 0;
 }