Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Kill a few globals.
[simgrid.git] / examples / cpp / trace-host-user-variables / s4u-trace-host-user-variables.cpp
1 /* Copyright (c) 2010-2023. 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 namespace sg4 = simgrid::s4u;
16
17 static void trace_fun()
18 {
19   const auto host = sg4::this_actor::get_host()->get_name();
20
21   // the hostname has an empty HDD with a capacity of 100000 (bytes)
22   simgrid::instr::set_host_variable(host, "HDD_capacity", 100000);
23   simgrid::instr::set_host_variable(host, "HDD_utilization", 0);
24
25   for (int i = 0; i < 10; i++) {
26     // create and execute a task just to make the simulated time advance
27     sg4::this_actor::execute(1e4);
28
29     // ADD: after the execution of this task, the HDD utilization increases by 100 (bytes)
30     simgrid::instr::add_host_variable(host, "HDD_utilization", 100);
31   }
32
33   for (int i = 0; i < 10; i++) {
34     // create and execute a task just to make the simulated time advance
35     sg4::this_actor::execute(1e4);
36
37     // SUB: after the execution of this task, the HDD utilization decreases by 100 (bytes)
38     simgrid::instr::sub_host_variable(host, "HDD_utilization", 100);
39   }
40 }
41
42 int main(int argc, char* argv[])
43 {
44   sg4::Engine e(&argc, argv);
45   xbt_assert(argc > 1, "Usage: %s platform_file\n \tExample: %s small_platform.xml\n", argv[0], argv[0]);
46
47   e.load_platform(argv[1]);
48
49   // declaring user variables
50   simgrid::instr::declare_host_variable("HDD_capacity");
51   simgrid::instr::declare_host_variable("HDD_utilization", "1 0 0"); // red color
52
53   sg4::Actor::create("master", e.host_by_name("Tremblay"), trace_fun);
54
55   e.run();
56
57   // get user declared variables
58   if (const auto& host_variables = simgrid::instr::get_host_variables(); 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 }