Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
public functions in header + fix deprecation info
[simgrid.git] / examples / cpp / trace-link-user-variables / s4u-trace-link-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 static void trace_fun()
15 {
16   // set initial values for the link user variables this example only shows for links identified by "6" and "3" in the
17   // platform file
18   const auto* link_3 = simgrid::s4u::Link::by_name("3");
19   const auto* link_6 = simgrid::s4u::Link::by_name("6");
20   // Set the Link_Capacity variable
21   simgrid::instr::set_link_variable(link_6, "Link_Capacity", 12.34);
22   simgrid::instr::set_link_variable(link_3, "Link_Capacity", 56.78);
23
24   // Set the Link_Utilization variable
25   simgrid::instr::set_link_variable(link_3, "Link_Utilization", 1.2);
26   simgrid::instr::set_link_variable(link_6, "Link_Utilization", 3.4);
27
28   // run the simulation, update my variables accordingly
29   for (int i = 0; i < 10; i++) {
30     simgrid::s4u::this_actor::execute(1e6);
31
32     // Add to link user variables
33     simgrid::instr::add_link_variable(link_3, "Link_Utilization", 5.6);
34     simgrid::instr::add_link_variable(link_6, "Link_Utilization", 7.8);
35   }
36
37   for (int i = 0; i < 10; i++) {
38     simgrid::s4u::this_actor::execute(1e6);
39
40     // Subtract from link user variables
41     simgrid::instr::sub_link_variable(link_3, "Link_Utilization", 3.4);
42     simgrid::instr::sub_link_variable(link_6, "Link_Utilization", 5.6);
43   }
44 }
45
46 int main(int argc, char* argv[])
47 {
48   simgrid::s4u::Engine e(&argc, argv);
49   xbt_assert(argc > 1, "Usage: %s platform_file\n \tExample: %s small_platform.xml\n", argv[0], argv[0]);
50
51   e.load_platform(argv[1]);
52
53   // declaring link user variables (one without, another with an RGB color)
54   simgrid::instr::declare_link_variable("Link_Capacity");
55   simgrid::instr::declare_link_variable("Link_Utilization", "0.9 0.1 0.1");
56
57   simgrid::s4u::Actor::create("master", e.host_by_name("Tremblay"), trace_fun);
58   simgrid::s4u::Actor::create("worker", e.host_by_name("Tremblay"), trace_fun);
59   simgrid::s4u::Actor::create("worker", e.host_by_name("Jupiter"), trace_fun);
60   simgrid::s4u::Actor::create("worker", e.host_by_name("Fafard"), trace_fun);
61   simgrid::s4u::Actor::create("worker", e.host_by_name("Ginette"), trace_fun);
62   simgrid::s4u::Actor::create("worker", e.host_by_name("Bourassa"), trace_fun);
63
64   e.run();
65   return 0;
66 }