Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
merge conflict resolved
[simgrid.git] / src / instr / instr_config.c
1 /* Copyright (c) 2010. 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
8 #include "instr/instr_private.h"
9
10 #ifdef HAVE_TRACING
11
12 XBT_LOG_NEW_CATEGORY(instr, "Logging the behavior of the tracing system (used for Visualization/Analysis of simulations)");
13 XBT_LOG_NEW_DEFAULT_SUBCATEGORY (instr_config, instr, "Configuration");
14
15 #define OPT_TRACING               "tracing"
16 #define OPT_TRACING_PLATFORM      "tracing/platform"
17 #define OPT_TRACING_SMPI          "tracing/smpi"
18 #define OPT_TRACING_SMPI_GROUP    "tracing/smpi/group"
19 #define OPT_TRACING_CATEGORIZED   "tracing/categorized"
20 #define OPT_TRACING_UNCATEGORIZED "tracing/uncategorized"
21 #define OPT_TRACING_MSG_PROCESS   "tracing/msg/process"
22 #define OPT_TRACING_FILENAME      "tracing/filename"
23 #define OPT_TRACING_BUFFER        "tracing/buffer"
24 #define OPT_TRACING_ONELINK_ONLY  "tracing/onelink_only"
25 #define OPT_TRACING_DISABLE_DESTROY "tracing/disable_destroy"
26 #define OPT_TRIVA_UNCAT_CONF      "triva/uncategorized"
27 #define OPT_TRIVA_CAT_CONF        "triva/categorized"
28
29 static int trace_enabled;
30 static int trace_platform;
31 static int trace_smpi_enabled;
32 static int trace_smpi_grouped;
33 static int trace_categorized;
34 static int trace_uncategorized;
35 static int trace_msg_process_enabled;
36 static int trace_buffer;
37 static int trace_onelink_only;
38 static int trace_disable_destroy;
39
40 static int trace_configured = 0;
41 static int trace_active = 0;
42
43 xbt_dict_t created_categories; //declared in instr_interface.c
44
45 static void TRACE_getopts(void)
46 {
47   trace_enabled = xbt_cfg_get_int(_surf_cfg_set, OPT_TRACING);
48   trace_platform = xbt_cfg_get_int(_surf_cfg_set, OPT_TRACING_PLATFORM);
49   trace_smpi_enabled = xbt_cfg_get_int(_surf_cfg_set, OPT_TRACING_SMPI);
50   trace_smpi_grouped = xbt_cfg_get_int(_surf_cfg_set, OPT_TRACING_SMPI_GROUP);
51   trace_categorized = xbt_cfg_get_int(_surf_cfg_set, OPT_TRACING_CATEGORIZED);
52   trace_uncategorized = xbt_cfg_get_int(_surf_cfg_set, OPT_TRACING_UNCATEGORIZED);
53   trace_msg_process_enabled = xbt_cfg_get_int(_surf_cfg_set, OPT_TRACING_MSG_PROCESS);
54   trace_buffer = xbt_cfg_get_int(_surf_cfg_set, OPT_TRACING_BUFFER);
55   trace_onelink_only = xbt_cfg_get_int(_surf_cfg_set, OPT_TRACING_ONELINK_ONLY);
56   trace_disable_destroy = xbt_cfg_get_int(_surf_cfg_set, OPT_TRACING_DISABLE_DESTROY);
57 }
58
59 int TRACE_start()
60 {
61   TRACE_getopts();
62
63   // tracing system must be:
64   //    - enabled (with --cfg=tracing:1)
65   //    - already configured (TRACE_global_init already called)
66   if (!(TRACE_is_enabled() && TRACE_is_configured())){
67     return 0;
68   }
69
70   XBT_DEBUG("Tracing starts");
71
72   /* open the trace file */
73   TRACE_paje_start();
74
75   /* activate trace */
76   if (trace_active == 1){
77     THROWF (tracing_error, 0, "Tracing is already active");
78   }
79   trace_active = 1;
80   XBT_DEBUG ("Tracing is on");
81
82   /* other trace initialization */
83   created_categories = xbt_dict_new_homogeneous(xbt_free);
84   TRACE_surf_alloc();
85   TRACE_smpi_alloc();
86   return 0;
87 }
88
89 int TRACE_end()
90 {
91   if (!trace_active)
92     return 1;
93
94   /* generate uncategorized graph configuration for triva */
95   if (TRACE_get_triva_uncat_conf()){
96     TRACE_generate_triva_uncat_conf();
97   }
98
99   /* generate categorized graph configuration for triva */
100   if (TRACE_get_triva_cat_conf()){
101     TRACE_generate_triva_cat_conf();
102   }
103
104   /* dump trace buffer */
105   TRACE_last_timestamp_to_dump = surf_get_clock();
106   TRACE_paje_dump_buffer(1);
107
108   /* destroy all data structures of tracing (and free) */
109   PJ_container_free_all();
110   PJ_type_free_all();
111   PJ_container_release();
112   PJ_type_release();
113   TRACE_surf_release();
114   TRACE_smpi_release();
115   xbt_dict_free(&created_categories);
116
117   /* close the trace file */
118   TRACE_paje_end();
119
120   /* de-activate trace */
121   trace_active = 0;
122   XBT_DEBUG ("Tracing is off");
123   XBT_DEBUG("Tracing system is shutdown");
124   return 0;
125 }
126
127 int TRACE_needs_platform (void)
128 {
129   return TRACE_msg_process_is_enabled() ||
130          TRACE_categorized() ||
131          TRACE_uncategorized() ||
132          TRACE_platform () ||
133          (TRACE_smpi_is_enabled() && TRACE_smpi_is_grouped());
134 }
135
136 int TRACE_is_enabled(void)
137 {
138   return trace_enabled;
139 }
140
141 int TRACE_platform(void)
142 {
143   return trace_platform;
144 }
145
146 int TRACE_is_configured(void)
147 {
148   return trace_configured;
149 }
150
151 int TRACE_smpi_is_enabled(void)
152 {
153   return (xbt_cfg_get_int(_surf_cfg_set, OPT_TRACING_SMPI) ||
154        TRACE_smpi_is_grouped())&&
155       TRACE_is_enabled();
156 }
157
158 int TRACE_smpi_is_grouped(void)
159 {
160   return trace_smpi_grouped;
161 }
162
163 int TRACE_categorized (void)
164 {
165   return trace_categorized;
166 }
167
168 int TRACE_uncategorized (void)
169 {
170   return trace_uncategorized;
171 }
172
173 int TRACE_msg_process_is_enabled(void)
174 {
175   return trace_msg_process_enabled && TRACE_is_enabled();
176 }
177
178 int TRACE_buffer (void)
179 {
180   return trace_buffer && TRACE_is_enabled();
181 }
182
183 int TRACE_onelink_only (void)
184 {
185   return trace_onelink_only && TRACE_is_enabled();
186 }
187
188 int TRACE_disable_destroy (void)
189 {
190   return trace_disable_destroy && TRACE_is_enabled();
191 }
192
193 char *TRACE_get_filename(void)
194 {
195   return xbt_cfg_get_string(_surf_cfg_set, OPT_TRACING_FILENAME);
196 }
197
198 char *TRACE_get_triva_uncat_conf (void)
199 {
200   return xbt_cfg_get_string(_surf_cfg_set, OPT_TRIVA_UNCAT_CONF);
201 }
202
203 char *TRACE_get_triva_cat_conf (void)
204 {
205   return xbt_cfg_get_string(_surf_cfg_set, OPT_TRIVA_CAT_CONF);
206 }
207
208 void TRACE_global_init(int *argc, char **argv)
209 {
210   /* name of the tracefile */
211   char *default_tracing_filename = xbt_strdup("simgrid.trace");
212   xbt_cfg_register(&_surf_cfg_set, OPT_TRACING_FILENAME,
213                    "Trace file created by the instrumented SimGrid.",
214                    xbt_cfgelm_string, &default_tracing_filename, 1, 1,
215                    NULL, NULL);
216
217   /* tracing */
218   int default_tracing = 0;
219   xbt_cfg_register(&_surf_cfg_set, OPT_TRACING,
220                    "Enable Tracing.",
221                    xbt_cfgelm_int, &default_tracing, 0, 1,
222                    NULL, NULL);
223
224   /* register platform in the trace */
225   int default_tracing_platform = 0;
226   xbt_cfg_register(&_surf_cfg_set, OPT_TRACING_PLATFORM,
227                    "Register the platform in the trace as a graph.",
228                    xbt_cfgelm_int, &default_tracing_platform, 0, 1,
229                    NULL, NULL);
230
231   /* smpi */
232   int default_tracing_smpi = 0;
233   xbt_cfg_register(&_surf_cfg_set, OPT_TRACING_SMPI,
234                    "Tracing of the SMPI interface.",
235                    xbt_cfgelm_int, &default_tracing_smpi, 0, 1,
236                    NULL, NULL);
237
238   /* smpi grouped */
239   int default_tracing_smpi_grouped = 0;
240   xbt_cfg_register(&_surf_cfg_set, OPT_TRACING_SMPI_GROUP,
241                    "Group MPI processes by host.",
242                    xbt_cfgelm_int, &default_tracing_smpi_grouped, 0, 1,
243                    NULL, NULL);
244
245
246   /* tracing categorized resource utilization traces */
247   int default_tracing_categorized = 0;
248   xbt_cfg_register(&_surf_cfg_set, OPT_TRACING_CATEGORIZED,
249                    "Tracing categorized resource utilization of hosts and links.",
250                    xbt_cfgelm_int, &default_tracing_categorized, 0, 1,
251                    NULL, NULL);
252
253   /* tracing uncategorized resource utilization */
254   int default_tracing_uncategorized = 0;
255   xbt_cfg_register(&_surf_cfg_set, OPT_TRACING_UNCATEGORIZED,
256                    "Tracing uncategorized resource utilization of hosts and links.",
257                    xbt_cfgelm_int, &default_tracing_uncategorized, 0, 1,
258                    NULL, NULL);
259
260   /* msg process */
261   int default_tracing_msg_process = 0;
262   xbt_cfg_register(&_surf_cfg_set, OPT_TRACING_MSG_PROCESS,
263                    "Tracing of MSG process behavior.",
264                    xbt_cfgelm_int, &default_tracing_msg_process, 0, 1,
265                    NULL, NULL);
266
267   /* tracing buffer */
268   int default_buffer = 0;
269   xbt_cfg_register(&_surf_cfg_set, OPT_TRACING_BUFFER,
270                    "Buffer trace events to put them in temporal order.",
271                    xbt_cfgelm_int, &default_buffer, 0, 1,
272                    NULL, NULL);
273
274   /* tracing one link only */
275   int default_onelink_only = 0;
276   xbt_cfg_register(&_surf_cfg_set, OPT_TRACING_ONELINK_ONLY,
277                    "Use only routes with one link to trace platform.",
278                    xbt_cfgelm_int, &default_onelink_only, 0, 1,
279                    NULL, NULL);
280
281   /* disable destroy */
282   int default_disable_destroy = 0;
283   xbt_cfg_register(&_surf_cfg_set, OPT_TRACING_DISABLE_DESTROY,
284                    "Disable platform containers destruction.",
285                    xbt_cfgelm_int, &default_disable_destroy, 0, 1,
286                    NULL, NULL);
287
288   /* Triva graph configuration for uncategorized tracing */
289   char *default_triva_uncat_conf_file = xbt_strdup ("");
290   xbt_cfg_register(&_surf_cfg_set, OPT_TRIVA_UNCAT_CONF,
291                    "Triva Graph configuration file for uncategorized resource utilization traces.",
292                    xbt_cfgelm_string, &default_triva_uncat_conf_file, 1, 1,
293                    NULL, NULL);
294
295   /* Triva graph configuration for uncategorized tracing */
296   char *default_triva_cat_conf_file = xbt_strdup ("");
297   xbt_cfg_register(&_surf_cfg_set, OPT_TRIVA_CAT_CONF,
298                    "Triva Graph configuration file for categorized resource utilization traces.",
299                    xbt_cfgelm_string, &default_triva_cat_conf_file, 1, 1,
300                    NULL, NULL);
301
302   /* instrumentation can be considered configured now */
303   trace_configured = 1;
304 }
305
306 static void print_line (const char *option, const char *desc, const char *longdesc, int detailed)
307 {
308   char str[INSTR_DEFAULT_STR_SIZE];
309   snprintf (str, INSTR_DEFAULT_STR_SIZE, "--cfg=%s ", option);
310
311   int len = strlen (str);
312   printf ("%s%*.*s %s\n", str, 30-len, 30-len, "", desc);
313   if (!!longdesc && detailed){
314     printf ("%s\n\n", longdesc);
315   }
316 }
317
318 void TRACE_help (int detailed)
319 {
320   printf(
321       "Description of the tracing options accepted by this simulator:\n\n");
322   print_line (OPT_TRACING, "Enable the tracing system",
323       "  It activates the tracing system and register the simulation platform\n"
324       "  in the trace file. You have to enable this option to others take effect.",
325       detailed);
326   print_line (OPT_TRACING_CATEGORIZED, "Trace categorized resource utilization",
327       "  It activates the categorized resource utilization tracing. It should\n"
328       "  be enabled if tracing categories are used by this simulator.",
329       detailed);
330   print_line (OPT_TRACING_UNCATEGORIZED, "Trace uncategorized resource utilization",
331       "  It activates the uncategorized resource utilization tracing. Use it if\n"
332       "  this simulator do not use tracing categories and resource use have to be\n"
333       "  traced.",
334       detailed);
335   print_line (OPT_TRACING_FILENAME, "Filename to register traces",
336       "  A file with this name will be created to register the simulation. The file\n"
337       "  is in the Paje format and can be analyzed using Triva or Paje visualization\n"
338       "  tools. More information can be found in these webpages:\n"
339       "     http://triva.gforge.inria.fr/\n"
340       "     http://paje.sourceforge.net/",
341       detailed);
342   print_line (OPT_TRACING_SMPI, "Trace the MPI Interface (SMPI)",
343       "  This option only has effect if this simulator is SMPI-based. Traces the MPI\n"
344       "  interface and generates a trace that can be analyzed using Gantt-like\n"
345       "  visualizations. Every MPI function (implemented by SMPI) is transformed in a\n"
346       "  state, and point-to-point communications can be analyzed with arrows.",
347       detailed);
348   print_line (OPT_TRACING_SMPI_GROUP, "Group MPI processes by host (SMPI)",
349       "  This option only has effect if this simulator is SMPI-based. The processes\n"
350       "  are grouped by the hosts where they were executed.",
351       detailed);
352   print_line (OPT_TRACING_MSG_PROCESS, "Trace processes behavior (MSG)",
353       "  This option only has effect if this simulator is MSG-based. It traces the\n"
354       "  behavior of all categorized MSG processes, grouping them by hosts. This option\n"
355       "  can be used to track process location if this simulator has process migration.",
356       detailed);
357   print_line (OPT_TRACING_BUFFER, "Buffer events to put them in temporal order",
358       "  This option put some events in a time-ordered buffer using the insertion\n"
359       "  sort algorithm. The process of acquiring and releasing locks to access this\n"
360       "  buffer and the cost of the sorting algorithm make this process slow. The\n"
361       "  simulator performance can be severely impacted if this option is activated,\n"
362       "  but you are sure to get a trace file with events sorted.",
363       detailed);
364   print_line (OPT_TRACING_ONELINK_ONLY, "Consider only one link routes to trace platform",
365       "  This option changes the way SimGrid register its platform on the trace file.\n"
366       "  Normally, the tracing considers all routes (no matter their size) on the\n"
367       "  platform file to re-create the resource topology. If this option is activated,\n"
368       "  only the routes with one link are used to register the topology within an AS.\n"
369       "  Routes among AS continue to be traced as usual.",
370       detailed);
371   print_line (OPT_TRACING_DISABLE_DESTROY, "Disable platform containers destruction",
372       "  Disable the destruction of containers at the end of simulation. This can be\n"
373       "  used with simulators that have a different notion of time (different from\n"
374       "  the simulated time).",
375       detailed);
376   print_line (OPT_TRIVA_UNCAT_CONF, "Generate graph configuration for Triva",
377       "  This option can be used in all types of simulators build with SimGrid\n"
378       "  to generate a uncategorized resource utilization graph to be used as\n"
379       "  configuration for the Triva visualization analysis. This option\n"
380       "  can be used with tracing/categorized:1 and tracing:1 options to\n"
381       "  analyze an unmodified simulator before changing it to contain\n"
382       "  categories.",
383       detailed);
384   print_line (OPT_TRIVA_CAT_CONF, "generate uncategorized graph configuration for Triva",
385       "  This option can be used if this simulator uses tracing categories\n"
386       "  in its code. The file specified by this option holds a graph configuration\n"
387       "  file for the Triva visualization tool that can be used to analyze a categorized\n"
388       "  resource utilization.",
389       detailed);
390 }
391
392 void TRACE_generate_triva_uncat_conf (void)
393 {
394   char *output = TRACE_get_triva_uncat_conf ();
395   if (output && strlen(output) > 0){
396     xbt_dict_cursor_t cursor=NULL;
397     char *name, *value;
398
399     FILE *file = fopen (output, "w");
400     if (file == NULL){
401       THROWF (system_error, 1, "Unable to open file (%s) for writing triva graph "
402           "configuration (uncategorized).", output);
403     }
404
405     //open
406     fprintf (file, "{\n");
407
408     //register NODE types
409     fprintf (file, "  node = (");
410     xbt_dict_foreach(trivaNodeTypes, cursor, name, value) {
411       fprintf (file, "%s, ", name);
412     }
413
414     //register EDGE types
415     fprintf (file,
416         ");\n"
417         "  edge = (");
418     xbt_dict_foreach(trivaEdgeTypes, cursor, name, value) {
419       fprintf (file, "%s, ", name);
420     }
421     fprintf (file,
422         ");\n"
423         "\n");
424
425     //configuration for all nodes
426     fprintf (file,
427         "  host = {\n"
428         "    type = square;\n"
429         "    size = power;\n"
430         "    values = (power_used);\n"
431         "  };\n"
432         "  link = {\n"
433         "    type = rhombus;\n"
434         "    size = bandwidth;\n"
435         "    values = (bandwidth_used);\n"
436         "  };\n");
437     //close
438     fprintf (file, "}\n");
439     fclose (file);
440   }
441 }
442
443 void TRACE_generate_triva_cat_conf (void)
444 {
445   char *output = TRACE_get_triva_cat_conf();
446   if (output && strlen(output) > 0){
447     xbt_dict_cursor_t cursor=NULL, cursor2=NULL;
448     char *name, *name2, *value, *value2;
449
450     //check if we do have categories declared
451     if (xbt_dict_is_empty(created_categories)){
452       XBT_INFO("No categories declared, ignoring generation of triva graph configuration");
453       return;
454     }
455
456     FILE *file = fopen (output, "w");
457     if (file == NULL){
458       THROWF (system_error, 1, "Unable to open file (%s) for writing triva graph "
459           "configuration (categorized).", output);
460     }
461
462     //open
463     fprintf (file, "{\n");
464
465     //register NODE types
466     fprintf (file, "  node = (");
467     xbt_dict_foreach(trivaNodeTypes, cursor, name, value) {
468       fprintf (file, "%s, ", name);
469     }
470
471     //register EDGE types
472     fprintf (file,
473         ");\n"
474         "  edge = (");
475     xbt_dict_foreach(trivaEdgeTypes, cursor, name, value) {
476       fprintf (file, "%s, ", name);
477     }
478     fprintf (file,
479         ");\n"
480         "\n");
481
482     //configuration for all nodes
483     fprintf (file,
484         "  host = {\n"
485         "    type = square;\n"
486         "    size = power;\n"
487         "    values = (");
488     xbt_dict_foreach(created_categories,cursor2,name2,value2) {
489       fprintf (file, "p%s, ", name2);
490     }
491     fprintf (file,
492         ");\n"
493         "  };\n"
494         "  link = {\n"
495         "    type = rhombus;\n"
496         "    size = bandwidth;\n"
497         "    values = (");
498     xbt_dict_foreach(created_categories,cursor2,name2,value2) {
499       fprintf (file, "b%s, ", name2);
500     }
501     fprintf (file,
502         ");\n"
503         "  };\n");
504     //close
505     fprintf (file, "}\n");
506     fclose (file);
507   }
508 }
509
510 void TRACE_set_network_update_mechanism (void)
511 {
512   if (TRACE_is_enabled()){
513     if (TRACE_categorized() || TRACE_uncategorized()){
514       XBT_INFO ("Tracing resource utilization active, network/optim configuration now set to Full.");
515       xbt_cfg_set_string (_surf_cfg_set, "network/optim", "Full");
516     }
517   }
518 }
519
520 #undef OPT_TRACING
521 #undef OPT_TRACING_PLATFORM
522 #undef OPT_TRACING_SMPI
523 #undef OPT_TRACING_SMPI_GROUP
524 #undef OPT_TRACING_CATEGORIZED
525 #undef OPT_TRACING_UNCATEGORIZED
526 #undef OPT_TRACING_MSG_PROCESS
527 #undef OPT_TRACING_FILENAME
528 #undef OPT_TRACING_BUFFER
529 #undef OPT_TRACING_ONELINK_ONLY
530 #undef OPT_TRACING_DISABLE_DESTROY
531 #undef OPT_TRIVA_UNCAT_CONF
532 #undef OPT_TRIVA_CAT_CONF
533
534 #endif /* HAVE_TRACING */