Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
[simgrid.git] / examples / msg / tracing / 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 master(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   if (argc < 3) {
64     printf("Usage: %s platform_file deployment_file\n", argv[0]);
65     exit(1);
66   }
67
68   MSG_create_environment(argv[1]);
69
70   //declaring link user variables (one without, another with a RGB color)
71   TRACE_link_variable_declare("Link_Capacity");
72   TRACE_link_variable_declare_with_color ("Link_Utilization", "0.9 0.1 0.1");
73
74   //register "master" and "slave" functions and launch deployment
75   MSG_function_register("master", master);
76   MSG_function_register("slave", master);
77   MSG_launch_application(argv[2]);
78
79   MSG_main();
80   return 0;
81 }