Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
continue the deprecation of instrumentation C interface
[simgrid.git] / examples / cpp / trace-host-user-variables / s4u-trace-host-user-variables.cpp
1 /* Copyright (c) 2010-2022. 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 /* This source code simply loads the platform. This is only useful to play
7  * with the tracing module. See the tesh file to see how to generate the
8  * traces.
9  */
10
11 #include "simgrid/instr.h"
12 #include "simgrid/s4u.hpp"
13
14 XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_test, "Messages specific for this s4u example");
15
16 static void trace_fun()
17 {
18   const auto host = simgrid::s4u::this_actor::get_host()->get_name();
19
20   // the hostname has an empty HDD with a capacity of 100000 (bytes)
21   simgrid::instr::set_host_variable(host, "HDD_capacity", 100000);
22   simgrid::instr::set_host_variable(host, "HDD_utilization", 0);
23
24   for (int i = 0; i < 10; i++) {
25     // create and execute a task just to make the simulated time advance
26     simgrid::s4u::this_actor::execute(1e4);
27
28     // ADD: after the execution of this task, the HDD utilization increases by 100 (bytes)
29     simgrid::instr::add_host_variable(host, "HDD_utilization", 100);
30   }
31
32   for (int i = 0; i < 10; i++) {
33     // create and execute a task just to make the simulated time advance
34     simgrid::s4u::this_actor::execute(1e4);
35
36     // SUB: after the execution of this task, the HDD utilization decreases by 100 (bytes)
37     simgrid::instr::sub_host_variable(host, "HDD_utilization", 100);
38   }
39 }
40
41 int main(int argc, char* argv[])
42 {
43   simgrid::s4u::Engine e(&argc, argv);
44   xbt_assert(argc > 1, "Usage: %s platform_file\n \tExample: %s small_platform.xml\n", argv[0], argv[0]);
45
46   e.load_platform(argv[1]);
47
48   // declaring user variables
49   simgrid::instr::declare_host_variable("HDD_capacity");
50   simgrid::instr::declare_host_variable("HDD_utilization", "1 0 0"); // red color
51
52   simgrid::s4u::Actor::create("master", e.host_by_name("Tremblay"), trace_fun);
53
54   e.run();
55
56   // get user declared variables
57   const auto& host_variables = simgrid::instr::get_host_variables();
58   if (not host_variables.empty()) {
59     XBT_INFO("Declared host variables:");
60     for (const auto& var : host_variables)
61       XBT_INFO("%s", var.c_str());
62   }
63   const auto& link_variables = simgrid::instr::get_link_variables();
64   xbt_assert(link_variables.empty(), "Should not have any declared link variable!");
65
66   return 0;
67 }