Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Give a way to add binaries to the list that shouldn't be messed with by sthread
[simgrid.git] / examples / cpp / trace-masterworkers / s4u-trace-masterworkers.cpp
index f7973d29a450e555b37920bdae0adb6c3d6f3fe5..d63d4a135412908a868f854127913b876e1c79b6 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. */
@@ -7,6 +7,7 @@
 #include <simgrid/s4u.hpp>
 
 XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_trace_masterworker, "Messages specific for this example");
+namespace sg4 = simgrid::s4u;
 
 struct Task {
   std::string name;
@@ -22,24 +23,24 @@ static void master(std::vector<std::string> args)
   double compute_cost     = std::stod(args[2]);
   long communication_cost = std::stol(args[3]);
   size_t workers_count    = args.size() - 4;
-  const char* my_hostname = simgrid::s4u::this_actor::get_host()->get_cname();
-  auto mailbox            = simgrid::s4u::Mailbox::by_name("master_mailbox");
+  const auto& my_host     = sg4::this_actor::get_host()->get_name();
+  auto* mailbox           = sg4::Mailbox::by_name("master_mailbox");
 
   XBT_DEBUG("Got %zu workers and %ld tasks to process", workers_count, tasks_count);
 
   // setting the variable "is_master" (previously declared) to value 1
-  TRACE_host_variable_set(my_hostname, "is_master", 1);
+  simgrid::instr::set_host_variable(my_host, "is_master", 1);
 
-  TRACE_mark("msmark", "start_send_tasks");
+  simgrid::instr::mark("msmark", "start_send_tasks");
   for (int i = 0; i < tasks_count; i++) {
     // setting the variable "task_creation" to value i
-    TRACE_host_variable_set(my_hostname, "task_creation", i);
+    simgrid::instr::set_host_variable(my_host, "task_creation", i);
 
     // setting the category of task to "compute"
     Task task = {"task", "compute", compute_cost};
     mailbox->put(new Task(task), communication_cost);
   }
-  TRACE_mark("msmark", "finish_send_tasks");
+  simgrid::instr::mark("msmark", "finish_send_tasks");
 
   XBT_DEBUG("All tasks have been dispatched. Request all workers to stop.");
   for (unsigned int i = 0; i < workers_count; i++) {
@@ -52,11 +53,11 @@ static void worker(std::vector<std::string> args)
 {
   xbt_assert(args.size() == 1, "The worker expects no argument");
 
-  const char* my_hostname = simgrid::s4u::this_actor::get_host()->get_cname();
-  auto mailbox            = simgrid::s4u::Mailbox::by_name("master_mailbox");
+  const auto& my_host = sg4::this_actor::get_host()->get_name();
+  auto* mailbox       = sg4::Mailbox::by_name("master_mailbox");
 
-  TRACE_host_variable_set(my_hostname, "is_worker", 1);
-  TRACE_host_variable_set(my_hostname, "task_computation", 0);
+  simgrid::instr::set_host_variable(my_host, "is_worker", 1);
+  simgrid::instr::set_host_variable(my_host, "task_computation", 0);
 
   while (true) {
     auto task = mailbox->get_unique<Task>();
@@ -64,11 +65,8 @@ static void worker(std::vector<std::string> args)
       break;
     }
     // adding the task's cost to the variable "task_computation"
-    TRACE_host_variable_add(my_hostname, "task_computation", task->flops);
-    simgrid::s4u::this_actor::exec_init(task->flops)
-        ->set_name(task->name)
-        ->set_tracing_category(task->category)
-        ->wait();
+    simgrid::instr::add_host_variable(my_host, "task_computation", task->flops);
+    sg4::this_actor::exec_init(task->flops)->set_name(task->name)->set_tracing_category(task->category)->wait();
   }
 
   XBT_DEBUG("Exiting now.");
@@ -76,28 +74,28 @@ static void worker(std::vector<std::string> args)
 
 int main(int argc, char* argv[])
 {
-  simgrid::s4u::Engine e(&argc, argv);
+  sg4::Engine e(&argc, argv);
   xbt_assert(argc > 2, "Usage: %s platform_file deployment_file\n", argv[0]);
 
   e.load_platform(argv[1]);
 
   // declaring user variables
-  TRACE_host_variable_declare("is_worker");
-  TRACE_host_variable_declare("is_master");
-  TRACE_host_variable_declare("task_creation");
-  TRACE_host_variable_declare("task_computation");
+  simgrid::instr::declare_host_variable("is_worker");
+  simgrid::instr::declare_host_variable("is_master");
+  simgrid::instr::declare_host_variable("task_creation");
+  simgrid::instr::declare_host_variable("task_computation");
 
   // declaring user markers and values
-  TRACE_declare_mark("msmark");
-  TRACE_declare_mark_value("msmark", "start_send_tasks");
-  TRACE_declare_mark_value("msmark", "finish_send_tasks");
+  simgrid::instr::declare_mark("msmark");
+  simgrid::instr::declare_mark_value("msmark", "start_send_tasks");
+  simgrid::instr::declare_mark_value("msmark", "finish_send_tasks");
 
   // declaring user categories with RGB colors (values from 0 to 1)
-  TRACE_category_with_color("compute", "1 0 0");  // compute is red
-  TRACE_category_with_color("finalize", "0 1 0"); // finalize is green
+  simgrid::instr::declare_tracing_category("compute", "1 0 0");  // compute is red
+  simgrid::instr::declare_tracing_category("finalize", "0 1 0"); // finalize is green
   // categories without user-defined colors receive random colors generated by the tracing system
-  TRACE_category("request");
-  TRACE_category_with_color("report", nullptr);
+  simgrid::instr::declare_tracing_category("request");
+  simgrid::instr::declare_tracing_category("report");
 
   e.register_function("master", &master);
   e.register_function("worker", &worker);
@@ -107,25 +105,16 @@ int main(int argc, char* argv[])
 
   XBT_DEBUG("Simulation is over");
 
-  unsigned int cursor;
-  xbt_dynar_t categories = TRACE_get_categories();
-  if (categories) {
+  if (const auto& categories = simgrid::instr::get_tracing_categories(); not categories.empty()) {
     XBT_INFO("Declared tracing categories:");
-    char* category;
-    xbt_dynar_foreach (categories, cursor, category) {
-      XBT_INFO("%s", category);
-    }
-    xbt_dynar_free(&categories);
+    for (const auto& category : categories)
+      XBT_INFO("%s", category.c_str());
   }
 
-  xbt_dynar_t marks = TRACE_get_marks();
-  if (marks) {
+  if (const auto& marks = simgrid::instr::get_marks(); not marks.empty()) {
     XBT_INFO("Declared marks:");
-    char* mark;
-    xbt_dynar_foreach (marks, cursor, mark) {
-      XBT_INFO("%s", mark);
-    }
-    xbt_dynar_free(&marks);
+    for (const auto& mark : marks)
+      XBT_INFO("%s", mark.c_str());
   }
 
   return 0;