Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
5c97ac6cb06d1cee01e277d658deaf188ddb82d8
[simgrid.git] / examples / msg / trace-link-user-variables / trace-link-user-variables.c
1 /* Copyright (c) 2012-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include <simgrid/msg.h>
8
9 /** @addtogroup MSG_examples
10  *
11  * - <b>tracing/link_user_variables.c</b>: This program demonstrates how to trace user variables associated to the
12  * links of the platform file. You need to provide the name of the link to update the value of the variable associated
13  * to that link. You might want to run this program with the following parameters:
14  * --cfg=tracing:yes
15  * --cfg=tracing/platform:yes
16  * (See \ref tracing_tracing_options for details)
17  */
18
19 //dump function to create and execute a task
20 static void create_and_execute_task (void)
21 {
22   msg_task_t task = MSG_task_create("task", 1000000, 0, NULL);
23   MSG_task_execute (task);
24   MSG_task_destroy (task);
25 }
26
27 static int trace_fun(int argc, char *argv[])
28 {
29   //set initial values for the link user variables this example only shows for links identified by "6" and "3" in the
30   //platform file
31
32   //Set the Link_Capacity variable
33   TRACE_link_variable_set("6", "Link_Capacity", 12.34);
34   TRACE_link_variable_set("3", "Link_Capacity", 56.78);
35
36   //Set the Link_Utilization variable
37   TRACE_link_variable_set("3", "Link_Utilization", 1.2);
38   TRACE_link_variable_set("6", "Link_Utilization", 3.4);
39
40   //run the simulation, update my variables accordingly
41   for (int i = 0; i < 10; i++) {
42     create_and_execute_task ();
43
44     //Add to link user variables
45     TRACE_link_variable_add ("3", "Link_Utilization", 5.6);
46     TRACE_link_variable_add ("6", "Link_Utilization", 7.8);
47   }
48
49   for (int i = 0; i < 10; i++) {
50     create_and_execute_task ();
51
52     //Subtract from link user variables
53     TRACE_link_variable_sub ("3", "Link_Utilization", 3.4);
54     TRACE_link_variable_sub ("6", "Link_Utilization", 5.6);
55   }
56
57   return 0;
58 }
59
60 int main(int argc, char *argv[])
61 {
62   MSG_init(&argc, argv);
63   xbt_assert(argc > 2, "Usage: %s platform_file deployment_file\n"
64              "\tExample: %s msg_platform.xml msg_deployment.xml\n", argv[0], argv[0]);
65
66   MSG_create_environment(argv[1]);
67
68   //declaring link user variables (one without, another with a RGB color)
69   TRACE_link_variable_declare("Link_Capacity");
70   TRACE_link_variable_declare_with_color ("Link_Utilization", "0.9 0.1 0.1");
71
72   //register functions and launch deployment
73   MSG_function_register("master", trace_fun);
74   MSG_function_register("worker", trace_fun);
75   MSG_launch_application(argv[2]);
76
77   MSG_main();
78   return 0;
79 }