Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
A Pull from simgrid/master and a subsequent merge
[simgrid.git] / examples / s4u / trace-link-user-variables / s4u-trace-link-user-variables.cpp
1 /* Copyright (c) 2010-2020. 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
19   // Set the Link_Capacity variable
20   TRACE_link_variable_set("6", "Link_Capacity", 12.34);
21   TRACE_link_variable_set("3", "Link_Capacity", 56.78);
22
23   // Set the Link_Utilization variable
24   TRACE_link_variable_set("3", "Link_Utilization", 1.2);
25   TRACE_link_variable_set("6", "Link_Utilization", 3.4);
26
27   // run the simulation, update my variables accordingly
28   for (int i = 0; i < 10; i++) {
29     simgrid::s4u::this_actor::execute(1e6);
30
31     // Add to link user variables
32     TRACE_link_variable_add("3", "Link_Utilization", 5.6);
33     TRACE_link_variable_add("6", "Link_Utilization", 7.8);
34   }
35
36   for (int i = 0; i < 10; i++) {
37     simgrid::s4u::this_actor::execute(1e6);
38
39     // Subtract from link user variables
40     TRACE_link_variable_sub("3", "Link_Utilization", 3.4);
41     TRACE_link_variable_sub("6", "Link_Utilization", 5.6);
42   }
43 }
44
45 int main(int argc, char* argv[])
46 {
47   simgrid::s4u::Engine e(&argc, argv);
48   xbt_assert(argc > 1, "Usage: %s platform_file\n \tExample: %s small_platform.xml\n", argv[0], argv[0]);
49
50   e.load_platform(argv[1]);
51
52   // declaring link user variables (one without, another with an RGB color)
53   TRACE_link_variable_declare("Link_Capacity");
54   TRACE_link_variable_declare_with_color("Link_Utilization", "0.9 0.1 0.1");
55
56   simgrid::s4u::Actor::create("master", simgrid::s4u::Host::by_name("Tremblay"), trace_fun);
57   simgrid::s4u::Actor::create("worker", simgrid::s4u::Host::by_name("Tremblay"), trace_fun);
58   simgrid::s4u::Actor::create("worker", simgrid::s4u::Host::by_name("Jupiter"), trace_fun);
59   simgrid::s4u::Actor::create("worker", simgrid::s4u::Host::by_name("Fafard"), trace_fun);
60   simgrid::s4u::Actor::create("worker", simgrid::s4u::Host::by_name("Ginette"), trace_fun);
61   simgrid::s4u::Actor::create("worker", simgrid::s4u::Host::by_name("Bourassa"), trace_fun);
62
63   e.run();
64   return 0;
65 }