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 / user_variables.c
1 /* Copyright (c) 2010, 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 /** @addtogroup MSG_examples
8  * 
9  * - <b>tracing/user_variables.c</b>: This program demonstrates how to trace user variables associated to the hosts of
10  * the platform file. You might want to run this program with the following parameters:
11  * --cfg=tracing:yes
12  * --cfg=tracing/platform:yes
13  * (See \ref tracing_tracing_options for details)
14  */
15
16 #include "simgrid/msg.h"
17
18 XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test, "Messages specific for this msg example");
19
20 static int master(int argc, char *argv[])
21 {
22   const char *hostname = MSG_host_get_name(MSG_host_self());
23   int i;
24
25   //the hostname has an empty HDD with a capacity of 100000 (bytes)
26   TRACE_host_variable_set(hostname, "HDD_capacity", 100000);
27   TRACE_host_variable_set(hostname, "HDD_utilization", 0);
28
29   for (i = 0; i < 10; i++) {
30     //create and execute a task just to make the simulated time advance
31     msg_task_t task = MSG_task_create("task", 10000, 0, NULL);
32     MSG_task_execute (task);
33     MSG_task_destroy (task);
34
35     //ADD: after the execution of this task, the HDD utilization increases by 100 (bytes)
36     TRACE_host_variable_add(hostname, "HDD_utilization", 100);
37   }
38
39   for (i = 0; i < 10; i++) {
40     //create and execute a task just to make the simulated time advance
41     msg_task_t task = MSG_task_create("task", 10000, 0, NULL);
42     MSG_task_execute (task);
43     MSG_task_destroy (task);
44
45     //SUB: after the execution of this task, the HDD utilization decreases by 100 (bytes)
46     TRACE_host_variable_sub(hostname, "HDD_utilization", 100);
47   }
48   return 0;
49 }
50
51 int main(int argc, char *argv[])
52 {
53   MSG_init(&argc, argv);
54   if (argc < 3) {
55     printf("Usage: %s platform_file deployment_file\n", argv[0]);
56     exit(1);
57   }
58
59   MSG_create_environment(argv[1]);
60
61   //declaring user variables
62   TRACE_host_variable_declare("HDD_capacity");
63   TRACE_host_variable_declare("HDD_utilization");
64
65   //register functions and launch deployment
66   MSG_function_register("master", master);
67   MSG_function_register("slave", master);
68   MSG_launch_application(argv[2]);
69
70   MSG_main();
71
72   //get user declared variables
73   unsigned int cursor;
74   char *variable;
75   xbt_dynar_t host_variables = TRACE_get_host_variables ();
76   if (host_variables){
77     XBT_INFO ("Declared host variables:");
78     xbt_dynar_foreach (host_variables, cursor, variable){
79       XBT_INFO ("%s", variable);
80     }
81     xbt_dynar_free (&host_variables);
82   }
83   xbt_dynar_t link_variables = TRACE_get_link_variables ();
84   if (link_variables){
85     XBT_INFO ("Declared link variables:");
86     xbt_dynar_foreach (link_variables, cursor, variable){
87       XBT_INFO ("%s", variable);
88     }
89     xbt_dynar_free (&link_variables);
90   }
91
92   //create a customized viva graph configuration file
93   FILE *fp;
94   fp = fopen ("viva_graph.plist", "w");
95   if (!fp){
96     return 1;
97   }
98   fprintf (fp, "{\n node = (");
99   xbt_dynar_t nodes_type = TRACE_get_node_types ();
100   if (nodes_type){
101     XBT_INFO ("Node types in the trace:");
102     char *node_type;
103     xbt_dynar_foreach (nodes_type, cursor, node_type){
104       XBT_INFO ("%s", node_type);
105       fprintf (fp, "%s, ", node_type);
106     }
107     xbt_dynar_free (&nodes_type);
108   }
109   fprintf (fp, ");\n edge = (");
110   xbt_dynar_t edges_type = TRACE_get_edge_types ();
111   if (edges_type){
112     XBT_INFO ("Node types in the trace:");
113     char *edge_type;
114     xbt_dynar_foreach (edges_type, cursor, edge_type){
115       XBT_INFO ("%s", edge_type);
116       fprintf (fp, "%s, ", edge_type);
117     }
118     xbt_dynar_free (&edges_type);
119   }
120   fprintf (fp, ");\n");
121   fprintf (fp, " host = {\n  type = square;\n  size = HDD_capacity; \n  values = (HDD_utilization);\n };\n");
122   fprintf (fp, " link = {\n  type = rhombus;\n  size = bandwidth;\n };\n");
123   fprintf (fp, "}\n");
124   fclose (fp);
125
126   return 0;
127 }