Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[trace] output the command line used to generate the trace file
[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_SMPI_COMPUTING "tracing/smpi/computing"
20 #define OPT_TRACING_CATEGORIZED   "tracing/categorized"
21 #define OPT_TRACING_UNCATEGORIZED "tracing/uncategorized"
22 #define OPT_TRACING_MSG_PROCESS   "tracing/msg/process"
23 #define OPT_TRACING_FILENAME      "tracing/filename"
24 #define OPT_TRACING_BUFFER        "tracing/buffer"
25 #define OPT_TRACING_ONELINK_ONLY  "tracing/onelink_only"
26 #define OPT_TRACING_DISABLE_DESTROY "tracing/disable_destroy"
27 #define OPT_TRACING_BASIC         "tracing/basic"
28 #define OPT_TRACING_COMMENT       "tracing/comment"
29 #define OPT_TRACING_COMMENT_FILE  "tracing/comment_file"
30 #define OPT_TRIVA_UNCAT_CONF      "triva/uncategorized"
31 #define OPT_TRIVA_CAT_CONF        "triva/categorized"
32 #define OPT_VIVA_UNCAT_CONF      "viva/uncategorized"
33 #define OPT_VIVA_CAT_CONF        "viva/categorized"
34
35 static int trace_enabled;
36 static int trace_platform;
37 static int trace_smpi_enabled;
38 static int trace_smpi_grouped;
39 static int trace_smpi_computing;
40 static int trace_categorized;
41 static int trace_uncategorized;
42 static int trace_msg_process_enabled;
43 static int trace_buffer;
44 static int trace_onelink_only;
45 static int trace_disable_destroy;
46 static int trace_basic;
47
48 static int trace_configured = 0;
49 static int trace_active = 0;
50
51 static void TRACE_getopts(void)
52 {
53   trace_enabled = xbt_cfg_get_int(_surf_cfg_set, OPT_TRACING);
54   trace_platform = xbt_cfg_get_int(_surf_cfg_set, OPT_TRACING_PLATFORM);
55   trace_smpi_enabled = xbt_cfg_get_int(_surf_cfg_set, OPT_TRACING_SMPI);
56   trace_smpi_grouped = xbt_cfg_get_int(_surf_cfg_set, OPT_TRACING_SMPI_GROUP);
57   trace_smpi_computing = xbt_cfg_get_int(_surf_cfg_set, OPT_TRACING_SMPI_COMPUTING);
58   trace_categorized = xbt_cfg_get_int(_surf_cfg_set, OPT_TRACING_CATEGORIZED);
59   trace_uncategorized = xbt_cfg_get_int(_surf_cfg_set, OPT_TRACING_UNCATEGORIZED);
60   trace_msg_process_enabled = xbt_cfg_get_int(_surf_cfg_set, OPT_TRACING_MSG_PROCESS);
61   trace_buffer = xbt_cfg_get_int(_surf_cfg_set, OPT_TRACING_BUFFER);
62   trace_onelink_only = xbt_cfg_get_int(_surf_cfg_set, OPT_TRACING_ONELINK_ONLY);
63   trace_disable_destroy = xbt_cfg_get_int(_surf_cfg_set, OPT_TRACING_DISABLE_DESTROY);
64   trace_basic = xbt_cfg_get_int(_surf_cfg_set, OPT_TRACING_BASIC);
65 }
66
67 int TRACE_start()
68 {
69   TRACE_getopts();
70
71   // tracing system must be:
72   //    - enabled (with --cfg=tracing:1)
73   //    - already configured (TRACE_global_init already called)
74   if (!(TRACE_is_enabled() && TRACE_is_configured())){
75     return 0;
76   }
77
78   XBT_DEBUG("Tracing starts");
79
80   /* open the trace file */
81   TRACE_paje_start();
82
83   /* activate trace */
84   if (trace_active == 1){
85     THROWF (tracing_error, 0, "Tracing is already active");
86   }
87   trace_active = 1;
88   XBT_DEBUG ("Tracing is on");
89
90   /* other trace initialization */
91   created_categories = xbt_dict_new_homogeneous(xbt_free);
92   declared_marks = xbt_dict_new_homogeneous (xbt_free);
93   user_host_variables = xbt_dict_new_homogeneous (xbt_free);
94   user_link_variables = xbt_dict_new_homogeneous (xbt_free);
95   TRACE_surf_alloc();
96   TRACE_smpi_alloc();
97   return 0;
98 }
99
100 int TRACE_end()
101 {
102   if (!trace_active)
103     return 1;
104
105   TRACE_generate_triva_uncat_conf();
106   TRACE_generate_triva_cat_conf();
107   TRACE_generate_viva_uncat_conf();
108   TRACE_generate_viva_cat_conf();
109
110   /* dump trace buffer */
111   TRACE_last_timestamp_to_dump = surf_get_clock();
112   TRACE_paje_dump_buffer(1);
113
114   /* destroy all data structures of tracing (and free) */
115   PJ_container_free_all();
116   PJ_type_free_all();
117   PJ_container_release();
118   PJ_type_release();
119   TRACE_smpi_release();
120   TRACE_surf_release();
121   xbt_dict_free(&user_link_variables);
122   xbt_dict_free(&user_host_variables);
123   xbt_dict_free(&declared_marks);
124   xbt_dict_free(&created_categories);
125
126   /* close the trace file */
127   TRACE_paje_end();
128
129   /* de-activate trace */
130   trace_active = 0;
131   XBT_DEBUG ("Tracing is off");
132   XBT_DEBUG("Tracing system is shutdown");
133   return 0;
134 }
135
136 int TRACE_needs_platform (void)
137 {
138   return TRACE_msg_process_is_enabled() ||
139          TRACE_categorized() ||
140          TRACE_uncategorized() ||
141          TRACE_platform () ||
142          (TRACE_smpi_is_enabled() && TRACE_smpi_is_grouped());
143 }
144
145 int TRACE_is_enabled(void)
146 {
147   return trace_enabled;
148 }
149
150 int TRACE_platform(void)
151 {
152   return trace_platform;
153 }
154
155 int TRACE_is_configured(void)
156 {
157   return trace_configured;
158 }
159
160 int TRACE_smpi_is_enabled(void)
161 {
162   return (trace_smpi_enabled || TRACE_smpi_is_grouped())
163     && TRACE_is_enabled();
164 }
165
166 int TRACE_smpi_is_grouped(void)
167 {
168   return trace_smpi_grouped;
169 }
170
171 int TRACE_smpi_is_computing(void)
172 {
173   return trace_smpi_computing;
174 }
175
176
177 int TRACE_categorized (void)
178 {
179   return trace_categorized;
180 }
181
182 int TRACE_uncategorized (void)
183 {
184   return trace_uncategorized;
185 }
186
187 int TRACE_msg_process_is_enabled(void)
188 {
189   return trace_msg_process_enabled && TRACE_is_enabled();
190 }
191
192 int TRACE_buffer (void)
193 {
194   return trace_buffer && TRACE_is_enabled();
195 }
196
197 int TRACE_onelink_only (void)
198 {
199   return trace_onelink_only && TRACE_is_enabled();
200 }
201
202 int TRACE_disable_destroy (void)
203 {
204   return trace_disable_destroy && TRACE_is_enabled();
205 }
206
207 int TRACE_basic (void)
208 {
209   return trace_basic && TRACE_is_enabled();
210 }
211
212 char *TRACE_get_comment (void)
213 {
214   return xbt_cfg_get_string(_surf_cfg_set, OPT_TRACING_COMMENT);
215 }
216
217 char *TRACE_get_comment_file (void)
218 {
219   return xbt_cfg_get_string(_surf_cfg_set, OPT_TRACING_COMMENT_FILE);
220 }
221
222 char *TRACE_get_filename(void)
223 {
224   return xbt_cfg_get_string(_surf_cfg_set, OPT_TRACING_FILENAME);
225 }
226
227 char *TRACE_get_triva_uncat_conf (void)
228 {
229   return xbt_cfg_get_string(_surf_cfg_set, OPT_TRIVA_UNCAT_CONF);
230 }
231
232 char *TRACE_get_triva_cat_conf (void)
233 {
234   return xbt_cfg_get_string(_surf_cfg_set, OPT_TRIVA_CAT_CONF);
235 }
236
237 char *TRACE_get_viva_uncat_conf (void)
238 {
239   return xbt_cfg_get_string(_surf_cfg_set, OPT_VIVA_UNCAT_CONF);
240 }
241
242 char *TRACE_get_viva_cat_conf (void)
243 {
244   return xbt_cfg_get_string(_surf_cfg_set, OPT_VIVA_CAT_CONF);
245 }
246
247 void TRACE_global_init(int *argc, char **argv)
248 {
249   /* name of the tracefile */
250   char *default_tracing_filename = xbt_strdup("simgrid.trace");
251   xbt_cfg_register(&_surf_cfg_set, OPT_TRACING_FILENAME,
252                    "Trace file created by the instrumented SimGrid.",
253                    xbt_cfgelm_string, &default_tracing_filename, 1, 1,
254                    NULL, NULL);
255
256   /* tracing */
257   int default_tracing = 0;
258   xbt_cfg_register(&_surf_cfg_set, OPT_TRACING,
259                    "Enable Tracing.",
260                    xbt_cfgelm_int, &default_tracing, 0, 1,
261                    NULL, NULL);
262
263   /* register platform in the trace */
264   int default_tracing_platform = 0;
265   xbt_cfg_register(&_surf_cfg_set, OPT_TRACING_PLATFORM,
266                    "Register the platform in the trace as a graph.",
267                    xbt_cfgelm_int, &default_tracing_platform, 0, 1,
268                    NULL, NULL);
269
270   /* smpi */
271   int default_tracing_smpi = 0;
272   xbt_cfg_register(&_surf_cfg_set, OPT_TRACING_SMPI,
273                    "Tracing of the SMPI interface.",
274                    xbt_cfgelm_int, &default_tracing_smpi, 0, 1,
275                    NULL, NULL);
276
277   /* smpi grouped */
278   int default_tracing_smpi_grouped = 0;
279   xbt_cfg_register(&_surf_cfg_set, OPT_TRACING_SMPI_GROUP,
280                    "Group MPI processes by host.",
281                    xbt_cfgelm_int, &default_tracing_smpi_grouped, 0, 1,
282                    NULL, NULL);
283
284   /* smpi computing */
285   int default_tracing_smpi_computing = 0;
286   xbt_cfg_register(&_surf_cfg_set, OPT_TRACING_SMPI_COMPUTING,
287                    "Generate states for timing out of SMPI parts of the application",
288                    xbt_cfgelm_int, &default_tracing_smpi_computing, 0, 1,
289                    NULL, NULL);
290
291   /* tracing categorized resource utilization traces */
292   int default_tracing_categorized = 0;
293   xbt_cfg_register(&_surf_cfg_set, OPT_TRACING_CATEGORIZED,
294                    "Tracing categorized resource utilization of hosts and links.",
295                    xbt_cfgelm_int, &default_tracing_categorized, 0, 1,
296                    NULL, NULL);
297
298   /* tracing uncategorized resource utilization */
299   int default_tracing_uncategorized = 0;
300   xbt_cfg_register(&_surf_cfg_set, OPT_TRACING_UNCATEGORIZED,
301                    "Tracing uncategorized resource utilization of hosts and links.",
302                    xbt_cfgelm_int, &default_tracing_uncategorized, 0, 1,
303                    NULL, NULL);
304
305   /* msg process */
306   int default_tracing_msg_process = 0;
307   xbt_cfg_register(&_surf_cfg_set, OPT_TRACING_MSG_PROCESS,
308                    "Tracing of MSG process behavior.",
309                    xbt_cfgelm_int, &default_tracing_msg_process, 0, 1,
310                    NULL, NULL);
311
312   /* tracing buffer */
313   int default_buffer = 1;
314   xbt_cfg_register(&_surf_cfg_set, OPT_TRACING_BUFFER,
315                    "Buffer trace events to put them in temporal order.",
316                    xbt_cfgelm_int, &default_buffer, 0, 1,
317                    NULL, NULL);
318
319   /* tracing one link only */
320   int default_onelink_only = 0;
321   xbt_cfg_register(&_surf_cfg_set, OPT_TRACING_ONELINK_ONLY,
322                    "Use only routes with one link to trace platform.",
323                    xbt_cfgelm_int, &default_onelink_only, 0, 1,
324                    NULL, NULL);
325
326   /* disable destroy */
327   int default_disable_destroy = 0;
328   xbt_cfg_register(&_surf_cfg_set, OPT_TRACING_DISABLE_DESTROY,
329                    "Disable platform containers destruction.",
330                    xbt_cfgelm_int, &default_disable_destroy, 0, 1,
331                    NULL, NULL);
332
333   /* basic -- Avoid extended events (impoverished trace file) */
334   int default_basic = 0;
335   xbt_cfg_register(&_surf_cfg_set, OPT_TRACING_BASIC,
336                    "Avoid extended events (impoverished trace file).",
337                    xbt_cfgelm_int, &default_basic, 0, 1,
338                    NULL, NULL);
339
340   /* comment */
341   char *default_tracing_comment = xbt_strdup ("");
342   xbt_cfg_register(&_surf_cfg_set, OPT_TRACING_COMMENT,
343                    "Comment to be added on the top of the trace file.",
344                    xbt_cfgelm_string, &default_tracing_comment, 1, 1,
345                    NULL, NULL);
346
347   /* comment_file */
348   char *default_tracing_comment_file = xbt_strdup ("");
349   xbt_cfg_register(&_surf_cfg_set, OPT_TRACING_COMMENT_FILE,
350                    "The contents of the file are added to the top of the trace file as comment.",
351                    xbt_cfgelm_string, &default_tracing_comment_file, 1, 1,
352                    NULL, NULL);
353
354   /* Triva graph configuration for uncategorized tracing */
355   char *default_triva_uncat_conf_file = xbt_strdup ("");
356   xbt_cfg_register(&_surf_cfg_set, OPT_TRIVA_UNCAT_CONF,
357                    "Triva Graph configuration file for uncategorized resource utilization traces.",
358                    xbt_cfgelm_string, &default_triva_uncat_conf_file, 1, 1,
359                    NULL, NULL);
360
361   /* Triva graph configuration for uncategorized tracing */
362   char *default_triva_cat_conf_file = xbt_strdup ("");
363   xbt_cfg_register(&_surf_cfg_set, OPT_TRIVA_CAT_CONF,
364                    "Triva Graph configuration file for categorized resource utilization traces.",
365                    xbt_cfgelm_string, &default_triva_cat_conf_file, 1, 1,
366                    NULL, NULL);
367
368   /* Viva graph configuration for uncategorized tracing */
369   char *default_viva_uncat_conf_file = xbt_strdup ("");
370   xbt_cfg_register(&_surf_cfg_set, OPT_VIVA_UNCAT_CONF,
371                    "Viva Graph configuration file for uncategorized resource utilization traces.",
372                    xbt_cfgelm_string, &default_viva_uncat_conf_file, 1, 1,
373                    NULL, NULL);
374
375   /* Viva graph configuration for uncategorized tracing */
376   char *default_viva_cat_conf_file = xbt_strdup ("");
377   xbt_cfg_register(&_surf_cfg_set, OPT_VIVA_CAT_CONF,
378                    "Viva Graph configuration file for categorized resource utilization traces.",
379                    xbt_cfgelm_string, &default_viva_cat_conf_file, 1, 1,
380                    NULL, NULL);
381
382   /* instrumentation can be considered configured now */
383   trace_configured = 1;
384 }
385
386 static void print_line (const char *option, const char *desc, const char *longdesc, int detailed)
387 {
388   char str[INSTR_DEFAULT_STR_SIZE];
389   snprintf (str, INSTR_DEFAULT_STR_SIZE, "--cfg=%s ", option);
390
391   int len = strlen (str);
392   printf ("%s%*.*s %s\n", str, 30-len, 30-len, "", desc);
393   if (!!longdesc && detailed){
394     printf ("%s\n\n", longdesc);
395   }
396 }
397
398 void TRACE_help (int detailed)
399 {
400   printf(
401       "Description of the tracing options accepted by this simulator:\n\n");
402   print_line (OPT_TRACING, "Enable the tracing system",
403       "  It activates the tracing system and register the simulation platform\n"
404       "  in the trace file. You have to enable this option to others take effect.",
405       detailed);
406   print_line (OPT_TRACING_CATEGORIZED, "Trace categorized resource utilization",
407       "  It activates the categorized resource utilization tracing. It should\n"
408       "  be enabled if tracing categories are used by this simulator.",
409       detailed);
410   print_line (OPT_TRACING_UNCATEGORIZED, "Trace uncategorized resource utilization",
411       "  It activates the uncategorized resource utilization tracing. Use it if\n"
412       "  this simulator do not use tracing categories and resource use have to be\n"
413       "  traced.",
414       detailed);
415   print_line (OPT_TRACING_FILENAME, "Filename to register traces",
416       "  A file with this name will be created to register the simulation. The file\n"
417       "  is in the Paje format and can be analyzed using Triva or Paje visualization\n"
418       "  tools. More information can be found in these webpages:\n"
419       "     http://triva.gforge.inria.fr/\n"
420       "     http://paje.sourceforge.net/",
421       detailed);
422   print_line (OPT_TRACING_SMPI, "Trace the MPI Interface (SMPI)",
423       "  This option only has effect if this simulator is SMPI-based. Traces the MPI\n"
424       "  interface and generates a trace that can be analyzed using Gantt-like\n"
425       "  visualizations. Every MPI function (implemented by SMPI) is transformed in a\n"
426       "  state, and point-to-point communications can be analyzed with arrows.",
427       detailed);
428   print_line (OPT_TRACING_SMPI_GROUP, "Group MPI processes by host (SMPI)",
429       "  This option only has effect if this simulator is SMPI-based. The processes\n"
430       "  are grouped by the hosts where they were executed.",
431       detailed);
432   print_line (OPT_TRACING_SMPI_COMPUTING, "Generates a \" Computing \" State",
433       "  This option aims at tracing computations in the application, outside SMPI\n"
434       "  to allow further study of simulated or real computation time",
435       detailed);
436   print_line (OPT_TRACING_MSG_PROCESS, "Trace processes behavior (MSG)",
437       "  This option only has effect if this simulator is MSG-based. It traces the\n"
438       "  behavior of all categorized MSG processes, grouping them by hosts. This option\n"
439       "  can be used to track process location if this simulator has process migration.",
440       detailed);
441   print_line (OPT_TRACING_BUFFER, "Buffer events to put them in temporal order",
442       "  This option put some events in a time-ordered buffer using the insertion\n"
443       "  sort algorithm. The process of acquiring and releasing locks to access this\n"
444       "  buffer and the cost of the sorting algorithm make this process slow. The\n"
445       "  simulator performance can be severely impacted if this option is activated,\n"
446       "  but you are sure to get a trace file with events sorted.",
447       detailed);
448   print_line (OPT_TRACING_ONELINK_ONLY, "Consider only one link routes to trace platform",
449       "  This option changes the way SimGrid register its platform on the trace file.\n"
450       "  Normally, the tracing considers all routes (no matter their size) on the\n"
451       "  platform file to re-create the resource topology. If this option is activated,\n"
452       "  only the routes with one link are used to register the topology within an AS.\n"
453       "  Routes among AS continue to be traced as usual.",
454       detailed);
455   print_line (OPT_TRACING_DISABLE_DESTROY, "Disable platform containers destruction",
456       "  Disable the destruction of containers at the end of simulation. This can be\n"
457       "  used with simulators that have a different notion of time (different from\n"
458       "  the simulated time).",
459       detailed);
460   print_line (OPT_TRACING_BASIC, "Avoid extended events (impoverished trace file).",
461       "  Some visualization tools are not able to parse correctly the Paje file format.\n"
462       "  Use this option if you are using one of these tools to visualize the simulation\n"
463       "  trace. Keep in mind that the trace might be incomplete, without all the\n"
464       "  information that would be registered otherwise.",
465       detailed);
466   print_line (OPT_TRACING_COMMENT, "Comment to be added on the top of the trace file.",
467       "  Use this to add a comment line to the top of the trace file.",
468       detailed);
469   print_line (OPT_TRACING_COMMENT_FILE, "File contents added to trace file as comment.",
470       "  Use this to add the contents of a file to the top of the trace file as comment.",
471       detailed);
472   print_line (OPT_TRIVA_UNCAT_CONF, "Generate graph configuration for Triva",
473       "  This option can be used in all types of simulators build with SimGrid\n"
474       "  to generate a uncategorized resource utilization graph to be used as\n"
475       "  configuration for the Triva visualization analysis. This option\n"
476       "  can be used with tracing/categorized:1 and tracing:1 options to\n"
477       "  analyze an unmodified simulator before changing it to contain\n"
478       "  categories.",
479       detailed);
480   print_line (OPT_TRIVA_CAT_CONF, "generate uncategorized graph configuration for Triva",
481       "  This option can be used if this simulator uses tracing categories\n"
482       "  in its code. The file specified by this option holds a graph configuration\n"
483       "  file for the Triva visualization tool that can be used to analyze a categorized\n"
484       "  resource utilization.",
485       detailed);
486   print_line (OPT_VIVA_UNCAT_CONF, "Generate a graph configuration for Viva",
487       "  This option can be used in all types of simulators build with SimGrid\n"
488       "  to generate a uncategorized resource utilization graph to be used as\n"
489       "  configuration for the Viva visualization tool. This option\n"
490       "  can be used with tracing/categorized:1 and tracing:1 options to\n"
491       "  analyze an unmodified simulator before changing it to contain\n"
492       "  categories.",
493       detailed);
494   print_line (OPT_VIVA_CAT_CONF, "Generate an uncategorized graph configuration for Viva",
495       "  This option can be used if this simulator uses tracing categories\n"
496       "  in its code. The file specified by this option holds a graph configuration\n"
497       "  file for the Viva visualization tool that can be used to analyze a categorized\n"
498       "  resource utilization.",
499       detailed);
500 }
501
502 static void output_types (const char *name, xbt_dynar_t types, FILE *file)
503 {
504   unsigned int i;
505   fprintf (file, "  %s = (", name);
506   for (i = xbt_dynar_length(types); i > 0; i--) {
507     char *type = *(char**)xbt_dynar_get_ptr(types, i - 1);
508     fprintf (file, "\"%s\"", type);
509     if (i - 1 > 0){
510       fprintf (file, ",");
511     }else{
512       fprintf (file, ");\n");
513     }
514   }
515   xbt_dynar_free (&types);
516 }
517
518 static void output_categories (const char *name, xbt_dynar_t cats, FILE *file)
519 {
520   unsigned int i;
521   fprintf (file, "    values = (");
522   for (i = xbt_dynar_length(cats); i > 0; i--) {
523     char *cat = *(char**)xbt_dynar_get_ptr(cats, i - 1);
524     fprintf (file, "\"%s%s\"", name, cat);
525     if (i - 1 > 0){
526       fprintf (file, ",");
527     }else{
528       fprintf (file, ");\n");
529     }
530   }
531   xbt_dynar_free (&cats);
532 }
533
534 static void uncat_configuration (FILE *file)
535 {
536   //register NODE and EDGE types
537   output_types ("node", TRACE_get_node_types(), file);
538   output_types ("edge", TRACE_get_edge_types(), file);
539   fprintf (file, "\n");
540
541   //configuration for all nodes
542   fprintf (file,
543       "  host = {\n"
544       "    type = \"square\";\n"
545       "    size = \"power\";\n"
546       "    values = (\"power_used\");\n"
547       "  };\n"
548       "  link = {\n"
549       "    type = \"rhombus\";\n"
550       "    size = \"bandwidth\";\n"
551       "    values = (\"bandwidth_used\");\n"
552       "  };\n");
553   //close
554 }
555
556 static void cat_configuration (FILE *file)
557 {
558   //register NODE and EDGE types
559   output_types ("node", TRACE_get_node_types(), file);
560   output_types ("edge", TRACE_get_edge_types(), file);
561   fprintf (file, "\n");
562
563   //configuration for all nodes
564   fprintf (file,
565            "  host = {\n"
566            "    type = \"square\";\n"
567            "    size = \"power\";\n");
568   output_categories ("p", TRACE_get_categories(), file);
569   fprintf (file,
570            "  };\n"
571            "  link = {\n"
572            "    type = \"rhombus\";\n"
573            "    size = \"bandwidth\";\n");
574   output_categories ("b", TRACE_get_categories(), file);
575   fprintf (file, "  };\n");
576   //close
577 }
578
579 static void generate_uncat_configuration (const char *output, const char *name, int brackets)
580 {
581   if (output && strlen(output) > 0){
582     FILE *file = fopen (output, "w");
583     if (file == NULL){
584       THROWF (system_error, 1, "Unable to open file (%s) for writing %s graph "
585           "configuration (uncategorized).", output, name);
586     }
587
588     if (brackets) fprintf (file, "{\n");
589     uncat_configuration (file);
590     if (brackets) fprintf (file, "}\n");
591     fclose (file);
592   }
593 }
594
595 static void generate_cat_configuration (const char *output, const char *name, int brackets)
596 {
597   if (output && strlen(output) > 0){
598     //check if we do have categories declared
599     if (xbt_dict_is_empty(created_categories)){
600       XBT_INFO("No categories declared, ignoring generation of %s graph configuration", name);
601       return;
602     }
603
604     FILE *file = fopen (output, "w");
605     if (file == NULL){
606       THROWF (system_error, 1, "Unable to open file (%s) for writing %s graph "
607           "configuration (categorized).", output, name);
608     }
609
610     if (brackets) fprintf (file, "{\n");
611     cat_configuration (file);
612     if (brackets) fprintf (file, "}\n");
613     fclose (file);
614   }
615 }
616
617 void TRACE_generate_triva_uncat_conf (void)
618 {
619   generate_uncat_configuration (TRACE_get_triva_uncat_conf (), "triva", 1);
620 }
621
622 void TRACE_generate_triva_cat_conf (void)
623 {
624   generate_cat_configuration (TRACE_get_triva_cat_conf(), "triva", 1);
625 }
626
627 void TRACE_generate_viva_uncat_conf (void)
628 {
629   generate_uncat_configuration (TRACE_get_viva_uncat_conf (), "viva", 0);
630 }
631
632 void TRACE_generate_viva_cat_conf (void)
633 {
634   generate_cat_configuration (TRACE_get_viva_cat_conf(), "viva", 0);
635 }
636
637 static int previous_trace_state = -1;
638
639 void instr_pause_tracing (void)
640 {
641   previous_trace_state = trace_enabled;
642   if (!TRACE_is_enabled()){
643     XBT_DEBUG ("Tracing is already paused, therefore do nothing.");
644   }else{
645     XBT_DEBUG ("Tracing is being paused.");
646   }
647   trace_enabled = 0;
648   XBT_DEBUG ("Tracing is paused.");
649 }
650
651 void instr_resume_tracing (void)
652 {
653   if (TRACE_is_enabled()){
654     XBT_DEBUG ("Tracing is already running while trying to resume, therefore do nothing.");
655   }else{
656     XBT_DEBUG ("Tracing is being resumed.");
657   }
658
659   if (previous_trace_state != -1){
660     trace_enabled = previous_trace_state;
661   }else{
662     trace_enabled = 1;
663   }
664   XBT_DEBUG ("Tracing is resumed.");
665   previous_trace_state = -1;
666 }
667
668 #undef OPT_TRACING
669 #undef OPT_TRACING_PLATFORM
670 #undef OPT_TRACING_SMPI
671 #undef OPT_TRACING_SMPI_GROUP
672 #undef OPT_TRACING_CATEGORIZED
673 #undef OPT_TRACING_UNCATEGORIZED
674 #undef OPT_TRACING_MSG_PROCESS
675 #undef OPT_TRACING_FILENAME
676 #undef OPT_TRACING_BUFFER
677 #undef OPT_TRACING_ONELINK_ONLY
678 #undef OPT_TRACING_DISABLE_DESTROY
679 #undef OPT_TRACING_BASIC
680 #undef OPT_TRACING_COMMENT
681 #undef OPT_TRACING_COMMENT_FILE
682 #undef OPT_TRIVA_UNCAT_CONF
683 #undef OPT_TRIVA_CAT_CONF
684 #undef OPT_VIVA_UNCAT_CONF
685 #undef OPT_VIVA_CAT_CONF
686
687 #endif /* HAVE_TRACING */