Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[trace] new example to show how to use TRACE_link_srcdst_variable_(set/add/sub)
[simgrid.git] / examples / msg / tracing / link_srcdst_user_variables.c
1 /* Copyright (c) 2012. 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 <msg/msg.h>
8
9 int master(int argc, char *argv[]);
10
11 //dump function to create and execute a task
12 static void create_and_execute_task (void)
13 {
14   m_task_t task = MSG_task_create("task", 1000000, 0, NULL);
15   MSG_task_execute (task);
16   MSG_task_destroy (task);
17 }
18
19 int master(int argc, char *argv[])
20 {
21   int i;
22
23   //Set initial values for the link user variables
24   //
25   //This example uses source and destination where
26   //source and destination are the name of hosts in
27   //the platform file.
28   //
29   //The functions will set/change the value of the variable
30   //for all links in the route between source and destination.
31
32   //Set the Link_Capacity variable
33   TRACE_link_srcdst_variable_set("Tremblay", "Bourassa", "Link_Capacity", 12.34);
34   TRACE_link_srcdst_variable_set("Fafard", "Ginette", "Link_Capacity", 56.78);
35
36   //Set the Link_Utilization variable
37   TRACE_link_srcdst_variable_set("Tremblay", "Bourassa", "Link_Utilization", 1.2);
38   TRACE_link_srcdst_variable_set("Fafard", "Ginette", "Link_Utilization", 3.4);
39
40   //run the simulation, update my variables accordingly
41   for (i = 0; i < 10; i++) {
42     create_and_execute_task ();
43
44     //Add to link user variables
45     TRACE_link_srcdst_variable_add ("Tremblay", "Bourassa", "Link_Utilization", 5.6);
46     TRACE_link_srcdst_variable_add ("Fafard", "Ginette", "Link_Utilization", 7.8);
47   }
48
49   for (i = 0; i < 10; i++) {
50     create_and_execute_task ();
51
52     //Subtract from link user variables
53     TRACE_link_srcdst_variable_sub ("Tremblay", "Bourassa", "Link_Utilization", 3.4);
54     TRACE_link_srcdst_variable_sub ("Fafard", "Ginette", "Link_Utilization", 5.6);
55   }
56
57   return 0;
58 }
59
60 /** Main function */
61 int main(int argc, char *argv[])
62 {
63   MSG_global_init(&argc, argv);
64   if (argc < 3) {
65     printf("Usage: %s platform_file deployment_file\n", argv[0]);
66     exit(1);
67   }
68
69   char *platform_file = argv[1];
70   char *deployment_file = argv[2];
71   MSG_create_environment(platform_file);
72
73   //declaring link user variables (one without, another with a RGB color)
74   TRACE_link_variable_declare("Link_Capacity");
75   TRACE_link_variable_declare_with_color ("Link_Utilization", "0.9 0.1 0.1");
76
77   //register "master" and "slave" functions and launch deployment
78   MSG_function_register("master", master);
79   MSG_function_register("slave", master);
80   MSG_launch_application(deployment_file);
81
82   MSG_main();
83   MSG_clean();
84   return 0;
85 }