introspection: Assorted minor introspection and documentation fixes
[platform/upstream/gstreamer.git] / gst / gstdebugutils.c
1 /* GStreamer
2  * Copyright (C) 2007 Stefan Kost <ensonic@users.sf.net>
3  *
4  * gstdebugutils.c: debugging and analysis utillities
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
19  * Boston, MA 02110-1301, USA.
20  */
21 /* TODO:
22  * edge [ constraint=false ];
23  *   this creates strange graphs ("minlen=0" is better)
24  * try puting src/sink ghostpads for each bin into invisible clusters
25  *
26  * for more compact nodes, try
27  * - changing node-shape from box into record
28  * - use labels like : element [ label="{element | <src> src | <sink> sink}"]
29  * - point to record-connectors : element1:src -> element2:sink
30  * - we use head/tail labels for pad-caps right now
31  *   - this does not work well, as dot seems to not look at their size when
32  *     doing the layout
33  *   - we could add the caps to the pad itself, then we should use one line per
34  *     caps (simple caps = one line)
35  */
36
37 #include "gst_private.h"
38 #include "gstdebugutils.h"
39
40 #ifndef GST_DISABLE_GST_DEBUG
41
42 #include <stdlib.h>
43 #include <stdio.h>
44 #include <string.h>
45 #include <errno.h>
46
47 #include "gstinfo.h"
48 #include "gstbin.h"
49 #include "gstobject.h"
50 #include "gstghostpad.h"
51 #include "gstpad.h"
52 #include "gstutils.h"
53 #include "gstvalue.h"
54
55 /*** PIPELINE GRAPHS **********************************************************/
56
57 extern const gchar *priv_gst_dump_dot_dir;      /* NULL *//* set from gst.c */
58
59 const gchar spaces[] = {
60   "                                "    /* 32 */
61       "                                "        /* 64 */
62       "                                "        /* 96 */
63       "                                "        /* 128 */
64 };
65
66 extern GstClockTime _priv_gst_info_start_time;
67
68 static gchar *
69 debug_dump_make_object_name (GstObject * obj)
70 {
71   return g_strcanon (g_strdup_printf ("%s_%p", GST_OBJECT_NAME (obj), obj),
72       G_CSET_A_2_Z G_CSET_a_2_z G_CSET_DIGITS "_", '_');
73 }
74
75 static gchar *
76 debug_dump_get_element_state (GstElement * element)
77 {
78   gchar *state_name = NULL;
79   const gchar *state_icons = "~0-=>";
80   GstState state = GST_STATE_VOID_PENDING, pending = GST_STATE_VOID_PENDING;
81
82   gst_element_get_state (element, &state, &pending, 0);
83   if (pending == GST_STATE_VOID_PENDING) {
84     gboolean is_locked = gst_element_is_locked_state (element);
85     state_name = g_strdup_printf ("\\n[%c]%s", state_icons[state],
86         (is_locked ? "(locked)" : ""));
87   } else {
88     state_name = g_strdup_printf ("\\n[%c] -> [%c]", state_icons[state],
89         state_icons[pending]);
90   }
91   return state_name;
92 }
93
94 static gchar *
95 debug_dump_get_element_params (GstElement * element)
96 {
97   gchar *param_name = NULL;
98   GParamSpec **properties, *property;
99   GValue value = { 0, };
100   guint i, number_of_properties;
101   gchar *tmp, *value_str;
102
103   /* get paramspecs and show non-default properties */
104   properties =
105       g_object_class_list_properties (G_OBJECT_CLASS (GST_ELEMENT_GET_CLASS
106           (element)), &number_of_properties);
107   if (properties) {
108     for (i = 0; i < number_of_properties; i++) {
109       property = properties[i];
110
111       /* ski some properties */
112       if (!(property->flags & G_PARAM_READABLE))
113         continue;
114       if (!strcmp (property->name, "name"))
115         continue;
116
117       g_value_init (&value, property->value_type);
118       g_object_get_property (G_OBJECT (element), property->name, &value);
119       if (!(g_param_value_defaults (property, &value))) {
120         tmp = g_strdup_value_contents (&value);
121         value_str = g_strescape (tmp, NULL);
122         g_free (tmp);
123         if (param_name) {
124           tmp = param_name;
125           param_name = g_strdup_printf ("%s\\n%s=%s",
126               tmp, property->name, value_str);
127           g_free (tmp);
128         } else {
129           param_name = g_strdup_printf ("\\n%s=%s", property->name, value_str);
130         }
131         g_free (value_str);
132       }
133       g_value_unset (&value);
134     }
135     g_free (properties);
136   }
137   return param_name;
138 }
139
140 static void
141 debug_dump_pad (GstPad * pad, const gchar * color_name,
142     const gchar * element_name, GstDebugGraphDetails details, FILE * out,
143     const gint indent)
144 {
145   GstPadTemplate *pad_templ;
146   GstPadPresence presence;
147   gchar *pad_name;
148   const gchar *style_name;
149   const gchar *spc = &spaces[MAX (sizeof (spaces) - (1 + indent * 2), 0)];
150
151   pad_name = debug_dump_make_object_name (GST_OBJECT (pad));
152
153   /* pad availability */
154   style_name = "filled,solid";
155   if ((pad_templ = gst_pad_get_pad_template (pad))) {
156     presence = GST_PAD_TEMPLATE_PRESENCE (pad_templ);
157     if (presence == GST_PAD_SOMETIMES) {
158       style_name = "filled,dotted";
159     } else if (presence == GST_PAD_REQUEST) {
160       style_name = "filled,dashed";
161     }
162   }
163   if (details & GST_DEBUG_GRAPH_SHOW_STATES) {
164     gchar pad_flags[4];
165     const gchar *activation_mode = "-><";
166     const gchar *task_mode = "";
167     GstTask *task;
168
169     GST_OBJECT_LOCK (pad);
170     task = GST_PAD_TASK (pad);
171     if (task) {
172       switch (gst_task_get_state (task)) {
173         case GST_TASK_STARTED:
174           task_mode = "[T]";
175           break;
176         case GST_TASK_PAUSED:
177           task_mode = "[t]";
178           break;
179         default:
180           /* Invalid task state, ignoring */
181           break;
182       }
183     }
184     GST_OBJECT_UNLOCK (pad);
185
186     /* check if pad flags */
187     pad_flags[0] =
188         GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_BLOCKED) ? 'B' : 'b';
189     pad_flags[1] =
190         GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_FLUSHING) ? 'F' : 'f';
191     pad_flags[2] =
192         GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_BLOCKING) ? 'B' : 'b';
193     pad_flags[3] = '\0';
194
195     fprintf (out,
196         "%s  %s_%s [color=black, fillcolor=\"%s\", label=\"%s\\n[%c][%s]%s\", height=\"0.2\", style=\"%s\"];\n",
197         spc, element_name, pad_name, color_name, GST_OBJECT_NAME (pad),
198         activation_mode[pad->mode], pad_flags, task_mode, style_name);
199   } else {
200     fprintf (out,
201         "%s  %s_%s [color=black, fillcolor=\"%s\", label=\"%s\", height=\"0.2\", style=\"%s\"];\n",
202         spc, element_name, pad_name, color_name, GST_OBJECT_NAME (pad),
203         style_name);
204   }
205
206   g_free (pad_name);
207 }
208
209 static void
210 debug_dump_element_pad (GstPad * pad, GstElement * element,
211     GstDebugGraphDetails details, FILE * out, const gint indent)
212 {
213   GstElement *target_element;
214   GstPad *target_pad, *tmp_pad;
215   GstPadDirection dir;
216   gchar *element_name;
217   gchar *target_element_name;
218   const gchar *color_name;
219
220   dir = gst_pad_get_direction (pad);
221   element_name = debug_dump_make_object_name (GST_OBJECT (element));
222   if (GST_IS_GHOST_PAD (pad)) {
223     color_name =
224         (dir == GST_PAD_SRC) ? "#ffdddd" : ((dir ==
225             GST_PAD_SINK) ? "#ddddff" : "#ffffff");
226     /* output target-pad so that it belongs to this element */
227     if ((tmp_pad = gst_ghost_pad_get_target (GST_GHOST_PAD (pad)))) {
228       if ((target_pad = gst_pad_get_peer (tmp_pad))) {
229         gchar *pad_name, *target_pad_name;
230         const gchar *spc = &spaces[MAX (sizeof (spaces) - (1 + indent * 2), 0)];
231
232         if ((target_element = gst_pad_get_parent_element (target_pad))) {
233           target_element_name =
234               debug_dump_make_object_name (GST_OBJECT (target_element));
235         } else {
236           target_element_name = g_strdup ("");
237         }
238         debug_dump_pad (target_pad, color_name, target_element_name, details,
239             out, indent);
240         /* src ghostpad relationship */
241         pad_name = debug_dump_make_object_name (GST_OBJECT (pad));
242         target_pad_name = debug_dump_make_object_name (GST_OBJECT (target_pad));
243         if (dir == GST_PAD_SRC) {
244           fprintf (out, "%s%s_%s -> %s_%s [style=dashed, minlen=0]\n", spc,
245               target_element_name, target_pad_name, element_name, pad_name);
246         } else {
247           fprintf (out, "%s%s_%s -> %s_%s [style=dashed, minlen=0]\n", spc,
248               element_name, pad_name, target_element_name, target_pad_name);
249         }
250         g_free (target_pad_name);
251         g_free (target_element_name);
252         if (target_element)
253           gst_object_unref (target_element);
254         gst_object_unref (target_pad);
255         g_free (pad_name);
256       }
257       gst_object_unref (tmp_pad);
258     }
259   } else {
260     color_name =
261         (dir == GST_PAD_SRC) ? "#ffaaaa" : ((dir ==
262             GST_PAD_SINK) ? "#aaaaff" : "#cccccc");
263   }
264   /* pads */
265   debug_dump_pad (pad, color_name, element_name, details, out, indent);
266   g_free (element_name);
267 }
268
269 static gboolean
270 string_append_field (GQuark field, const GValue * value, gpointer ptr)
271 {
272   GString *str = (GString *) ptr;
273   gchar *value_str = gst_value_serialize (value);
274   gchar *esc_value_str;
275
276   if (value_str == NULL) {
277     g_string_append_printf (str, "  %18s: NULL\\l", g_quark_to_string (field));
278     return TRUE;
279   }
280
281   /* some enums can become really long */
282   if (strlen (value_str) > 25) {
283     gint pos = 24;
284
285     /* truncate */
286     value_str[25] = '\0';
287
288     /* mirror any brackets and quotes */
289     if (value_str[0] == '<')
290       value_str[pos--] = '>';
291     if (value_str[0] == '[')
292       value_str[pos--] = ']';
293     if (value_str[0] == '(')
294       value_str[pos--] = ')';
295     if (value_str[0] == '{')
296       value_str[pos--] = '}';
297     if (value_str[0] == '"')
298       value_str[pos--] = '"';
299     if (pos != 24)
300       value_str[pos--] = ' ';
301     /* elippsize */
302     value_str[pos--] = '.';
303     value_str[pos--] = '.';
304     value_str[pos--] = '.';
305   }
306   esc_value_str = g_strescape (value_str, NULL);
307
308   g_string_append_printf (str, "  %18s: %s\\l", g_quark_to_string (field),
309       esc_value_str);
310
311   g_free (value_str);
312   g_free (esc_value_str);
313   return TRUE;
314 }
315
316 static gchar *
317 debug_dump_describe_caps (GstCaps * caps, GstDebugGraphDetails details)
318 {
319   gchar *media = NULL;
320
321   if (details & GST_DEBUG_GRAPH_SHOW_CAPS_DETAILS) {
322
323     if (gst_caps_is_any (caps) || gst_caps_is_empty (caps)) {
324       media = gst_caps_to_string (caps);
325
326     } else {
327       GString *str = NULL;
328       guint i;
329       guint slen = 0;
330
331       for (i = 0; i < gst_caps_get_size (caps); i++) {
332         slen += 25 +
333             STRUCTURE_ESTIMATED_STRING_LEN (gst_caps_get_structure (caps, i));
334       }
335
336       str = g_string_sized_new (slen);
337       for (i = 0; i < gst_caps_get_size (caps); i++) {
338         GstStructure *structure = gst_caps_get_structure (caps, i);
339
340         g_string_append (str, gst_structure_get_name (structure));
341         g_string_append (str, "\\l");
342
343         gst_structure_foreach (structure, string_append_field, (gpointer) str);
344       }
345
346       media = g_string_free (str, FALSE);
347     }
348
349   } else {
350     if (GST_CAPS_IS_SIMPLE (caps))
351       media =
352           g_strdup (gst_structure_get_name (gst_caps_get_structure (caps, 0)));
353     else
354       media = g_strdup ("*");
355   }
356   return media;
357 }
358
359 static void
360 debug_dump_element_pad_link (GstPad * pad, GstElement * element,
361     GstDebugGraphDetails details, FILE * out, const gint indent)
362 {
363   GstElement *peer_element;
364   GstPad *peer_pad;
365   GstCaps *caps, *peer_caps;
366   gchar *media = NULL;
367   gchar *media_src = NULL, *media_sink = NULL;
368   gchar *pad_name, *element_name;
369   gchar *peer_pad_name, *peer_element_name;
370   const gchar *spc = &spaces[MAX (sizeof (spaces) - (1 + indent * 2), 0)];
371
372   if ((peer_pad = gst_pad_get_peer (pad))) {
373     if ((details & GST_DEBUG_GRAPH_SHOW_MEDIA_TYPE) ||
374         (details & GST_DEBUG_GRAPH_SHOW_CAPS_DETAILS)
375         ) {
376       caps = gst_pad_get_current_caps (pad);
377       if (!caps)
378         caps = gst_pad_get_pad_template_caps (pad);
379       peer_caps = gst_pad_get_current_caps (peer_pad);
380       if (!peer_caps)
381         peer_caps = gst_pad_get_pad_template_caps (peer_pad);
382
383       media = debug_dump_describe_caps (caps, details);
384       /* check if peer caps are different */
385       if (peer_caps && !gst_caps_is_equal (caps, peer_caps)) {
386         gchar *tmp;
387
388         tmp = debug_dump_describe_caps (peer_caps, details);
389         if (gst_pad_get_direction (pad) == GST_PAD_SRC) {
390           media_src = media;
391           media_sink = tmp;
392         } else {
393           media_src = tmp;
394           media_sink = media;
395         }
396         media = NULL;
397       }
398       gst_caps_unref (peer_caps);
399       gst_caps_unref (caps);
400     }
401
402     pad_name = debug_dump_make_object_name (GST_OBJECT (pad));
403     if (element) {
404       element_name = debug_dump_make_object_name (GST_OBJECT (element));
405     } else {
406       element_name = g_strdup ("");
407     }
408     peer_pad_name = debug_dump_make_object_name (GST_OBJECT (peer_pad));
409     if ((peer_element = gst_pad_get_parent_element (peer_pad))) {
410       peer_element_name =
411           debug_dump_make_object_name (GST_OBJECT (peer_element));
412     } else {
413       peer_element_name = g_strdup ("");
414     }
415
416     /* pad link */
417     if (media) {
418       fprintf (out, "%s%s_%s -> %s_%s [label=\"%s\"]\n", spc,
419           element_name, pad_name, peer_element_name, peer_pad_name, media);
420       g_free (media);
421     } else if (media_src && media_sink) {
422       /* dot has some issues with placement of head and taillabels,
423        * we need an empty label to make space */
424       fprintf (out, "%s%s_%s -> %s_%s [labeldistance=\"10\", labelangle=\"0\", "
425           "label=\"                                                  \", "
426           "taillabel=\"%s\", headlabel=\"%s\"]\n",
427           spc, element_name, pad_name, peer_element_name, peer_pad_name,
428           media_src, media_sink);
429       g_free (media_src);
430       g_free (media_sink);
431     } else {
432       fprintf (out, "%s%s_%s -> %s_%s\n", spc,
433           element_name, pad_name, peer_element_name, peer_pad_name);
434     }
435
436     g_free (pad_name);
437     g_free (element_name);
438     g_free (peer_pad_name);
439     g_free (peer_element_name);
440     if (peer_element)
441       gst_object_unref (peer_element);
442     gst_object_unref (peer_pad);
443   }
444 }
445
446 static void
447 debug_dump_element_pads (GstIterator * pad_iter, GstPad * pad,
448     GstElement * element, GstDebugGraphDetails details, FILE * out,
449     const gint indent, guint * src_pads, guint * sink_pads)
450 {
451   GValue item = { 0, };
452   gboolean pads_done;
453   GstPadDirection dir;
454
455   pads_done = FALSE;
456   while (!pads_done) {
457     switch (gst_iterator_next (pad_iter, &item)) {
458       case GST_ITERATOR_OK:
459         pad = g_value_get_object (&item);
460         debug_dump_element_pad (pad, element, details, out, indent);
461         dir = gst_pad_get_direction (pad);
462         if (dir == GST_PAD_SRC)
463           (*src_pads)++;
464         else if (dir == GST_PAD_SINK)
465           (*sink_pads)++;
466         g_value_reset (&item);
467         break;
468       case GST_ITERATOR_RESYNC:
469         gst_iterator_resync (pad_iter);
470         break;
471       case GST_ITERATOR_ERROR:
472       case GST_ITERATOR_DONE:
473         pads_done = TRUE;
474         break;
475     }
476   }
477 }
478
479 /*
480  * debug_dump_element:
481  * @bin: the bin that should be analyzed
482  * @out: file to write to
483  * @indent: level of graph indentation
484  *
485  * Helper for gst_debug_bin_to_dot_file() to recursively dump a pipeline.
486  */
487 static void
488 debug_dump_element (GstBin * bin, GstDebugGraphDetails details, FILE * out,
489     const gint indent)
490 {
491   GstIterator *element_iter, *pad_iter;
492   gboolean elements_done, pads_done;
493   GValue item = { 0, };
494   GValue item2 = { 0, };
495   GstElement *element;
496   GstPad *pad = NULL;
497   guint src_pads, sink_pads;
498   gchar *element_name;
499   gchar *state_name = NULL;
500   gchar *param_name = NULL;
501   const gchar *spc = &spaces[MAX (sizeof (spaces) - (1 + indent * 2), 0)];
502
503   element_iter = gst_bin_iterate_elements (bin);
504   elements_done = FALSE;
505   while (!elements_done) {
506     switch (gst_iterator_next (element_iter, &item)) {
507       case GST_ITERATOR_OK:
508         element = g_value_get_object (&item);
509         element_name = debug_dump_make_object_name (GST_OBJECT (element));
510
511         if (details & GST_DEBUG_GRAPH_SHOW_STATES) {
512           state_name = debug_dump_get_element_state (GST_ELEMENT (element));
513         }
514         if (details & GST_DEBUG_GRAPH_SHOW_NON_DEFAULT_PARAMS) {
515           param_name = debug_dump_get_element_params (GST_ELEMENT (element));
516         }
517         /* elements */
518         fprintf (out, "%ssubgraph cluster_%s {\n", spc, element_name);
519         fprintf (out, "%s  fontname=\"Bitstream Vera Sans\";\n", spc);
520         fprintf (out, "%s  fontsize=\"8\";\n", spc);
521         fprintf (out, "%s  style=filled;\n", spc);
522         fprintf (out, "%s  color=black;\n\n", spc);
523         fprintf (out, "%s  label=\"%s\\n%s%s%s\";\n", spc,
524             G_OBJECT_TYPE_NAME (element), GST_OBJECT_NAME (element),
525             (state_name ? state_name : ""), (param_name ? param_name : "")
526             );
527         if (state_name) {
528           g_free (state_name);
529           state_name = NULL;
530         }
531         if (param_name) {
532           g_free (param_name);
533           param_name = NULL;
534         }
535         g_free (element_name);
536
537         src_pads = sink_pads = 0;
538         if ((pad_iter = gst_element_iterate_sink_pads (element))) {
539           debug_dump_element_pads (pad_iter, pad, element, details, out, indent,
540               &src_pads, &sink_pads);
541           gst_iterator_free (pad_iter);
542         }
543         if ((pad_iter = gst_element_iterate_src_pads (element))) {
544           debug_dump_element_pads (pad_iter, pad, element, details, out, indent,
545               &src_pads, &sink_pads);
546           gst_iterator_free (pad_iter);
547         }
548         if (GST_IS_BIN (element)) {
549           fprintf (out, "%s  fillcolor=\"#ffffff\";\n", spc);
550           /* recurse */
551           debug_dump_element (GST_BIN (element), details, out, indent + 1);
552         } else {
553           if (src_pads && !sink_pads)
554             fprintf (out, "%s  fillcolor=\"#ffaaaa\";\n", spc);
555           else if (!src_pads && sink_pads)
556             fprintf (out, "%s  fillcolor=\"#aaaaff\";\n", spc);
557           else if (src_pads && sink_pads)
558             fprintf (out, "%s  fillcolor=\"#aaffaa\";\n", spc);
559           else
560             fprintf (out, "%s  fillcolor=\"#ffffff\";\n", spc);
561         }
562         fprintf (out, "%s}\n\n", spc);
563         if ((pad_iter = gst_element_iterate_pads (element))) {
564           pads_done = FALSE;
565           while (!pads_done) {
566             switch (gst_iterator_next (pad_iter, &item2)) {
567               case GST_ITERATOR_OK:
568                 pad = g_value_get_object (&item2);
569                 if (gst_pad_is_linked (pad)) {
570                   if (gst_pad_get_direction (pad) == GST_PAD_SRC) {
571                     debug_dump_element_pad_link (pad, element, details, out,
572                         indent);
573                   } else {
574                     GstPad *peer_pad = gst_pad_get_peer (pad);
575
576                     if (peer_pad) {
577                       if (!GST_IS_GHOST_PAD (peer_pad)
578                           && GST_IS_PROXY_PAD (peer_pad)) {
579                         debug_dump_element_pad_link (peer_pad, NULL, details,
580                             out, indent);
581                       }
582                       gst_object_unref (peer_pad);
583                     }
584                   }
585                 }
586                 g_value_reset (&item2);
587                 break;
588               case GST_ITERATOR_RESYNC:
589                 gst_iterator_resync (pad_iter);
590                 break;
591               case GST_ITERATOR_ERROR:
592               case GST_ITERATOR_DONE:
593                 pads_done = TRUE;
594                 break;
595             }
596           }
597           g_value_unset (&item2);
598           gst_iterator_free (pad_iter);
599         }
600         g_value_reset (&item);
601         break;
602       case GST_ITERATOR_RESYNC:
603         gst_iterator_resync (element_iter);
604         break;
605       case GST_ITERATOR_ERROR:
606       case GST_ITERATOR_DONE:
607         elements_done = TRUE;
608         break;
609     }
610   }
611
612   g_value_unset (&item);
613   gst_iterator_free (element_iter);
614 }
615
616 /*
617  * gst_debug_bin_to_dot_file:
618  * @bin: the top-level pipeline that should be analyzed
619  * @file_name: output base filename (e.g. "myplayer")
620  *
621  * To aid debugging applications one can use this method to write out the whole
622  * network of gstreamer elements that form the pipeline into an dot file.
623  * This file can be processed with graphviz to get an image.
624  * <informalexample><programlisting>
625  *  dot -Tpng -oimage.png graph_lowlevel.dot
626  * </programlisting></informalexample>
627  */
628 void
629 gst_debug_bin_to_dot_file (GstBin * bin, GstDebugGraphDetails details,
630     const gchar * file_name)
631 {
632   gchar *full_file_name = NULL;
633   FILE *out;
634
635   g_return_if_fail (GST_IS_BIN (bin));
636
637   if (G_LIKELY (priv_gst_dump_dot_dir == NULL))
638     return;
639
640   if (!file_name) {
641     file_name = g_get_application_name ();
642     if (!file_name)
643       file_name = "unnamed";
644   }
645
646   full_file_name = g_strdup_printf ("%s" G_DIR_SEPARATOR_S "%s.dot",
647       priv_gst_dump_dot_dir, file_name);
648
649   if ((out = fopen (full_file_name, "wb"))) {
650     gchar *state_name = NULL;
651     gchar *param_name = NULL;
652
653     if (details & GST_DEBUG_GRAPH_SHOW_STATES) {
654       state_name = debug_dump_get_element_state (GST_ELEMENT (bin));
655     }
656     if (details & GST_DEBUG_GRAPH_SHOW_NON_DEFAULT_PARAMS) {
657       param_name = debug_dump_get_element_params (GST_ELEMENT (bin));
658     }
659
660     /* write header */
661     fprintf (out,
662         "digraph pipeline {\n"
663         "  rankdir=LR;\n"
664         "  fontname=\"sans\";\n"
665         "  fontsize=\"10\";\n"
666         "  labelloc=t;\n"
667         "  nodesep=.1;\n"
668         "  ranksep=.2;\n"
669         "  label=\"<%s>\\n%s%s%s\";\n"
670         "  node [style=filled, shape=box, fontsize=\"9\", fontname=\"sans\", margin=\"0.0,0.0\"];\n"
671         "  edge [labelfontsize=\"6\", fontsize=\"9\", fontname=\"monospace\"];\n"
672         "  \n"
673         "  legend [\n"
674         "    pos=\"0,0!\",\n"
675         "    margin=\"0.05,0.05\",\n"
676         "    label=\"Legend\\lElement-States: [~] void-pending, [0] null, [-] ready, [=] paused, [>] playing\\lPad-Activation: [-] none, [>] push, [<] pull\\lPad-Flags: [b]locked, [f]lushing, [b]locking; upper-case is set\\lPad-Task: [T] has started task, [t] has paused task\\l\"\n,"
677         "  ];"
678         "\n", G_OBJECT_TYPE_NAME (bin), GST_OBJECT_NAME (bin),
679         (state_name ? state_name : ""), (param_name ? param_name : "")
680         );
681     if (state_name)
682       g_free (state_name);
683     if (param_name)
684       g_free (param_name);
685
686     debug_dump_element (bin, details, out, 1);
687
688     /* write footer */
689     fprintf (out, "}\n");
690     fclose (out);
691     GST_INFO ("wrote bin graph to : '%s'", full_file_name);
692   } else {
693     GST_WARNING ("Failed to open file '%s' for writing: %s", full_file_name,
694         g_strerror (errno));
695   }
696   g_free (full_file_name);
697 }
698
699 /*
700  * gst_debug_bin_to_dot_file_with_ts:
701  * @bin: the top-level pipeline that should be analyzed
702  * @file_name: output base filename (e.g. "myplayer")
703  *
704  * This works like gst_debug_bin_to_dot_file(), but adds the current timestamp
705  * to the filename, so that it can be used to take multiple snapshots.
706  */
707 void
708 gst_debug_bin_to_dot_file_with_ts (GstBin * bin,
709     GstDebugGraphDetails details, const gchar * file_name)
710 {
711   gchar *ts_file_name = NULL;
712   GstClockTime elapsed;
713
714   g_return_if_fail (GST_IS_BIN (bin));
715
716   if (!file_name) {
717     file_name = g_get_application_name ();
718     if (!file_name)
719       file_name = "unnamed";
720   }
721
722   /* add timestamp */
723   elapsed = GST_CLOCK_DIFF (_priv_gst_info_start_time,
724       gst_util_get_timestamp ());
725
726   /* we don't use GST_TIME_FORMAT as such filenames would fail on some
727    * filesystems like fat */
728   ts_file_name =
729       g_strdup_printf ("%u.%02u.%02u.%09u-%s", GST_TIME_ARGS (elapsed),
730       file_name);
731
732   gst_debug_bin_to_dot_file (bin, details, ts_file_name);
733   g_free (ts_file_name);
734 }
735 #else /* !GST_DISABLE_GST_DEBUG */
736 #ifndef GST_REMOVE_DISABLED
737 void
738 gst_debug_bin_to_dot_file (GstBin * bin, GstDebugGraphDetails details,
739     const gchar * file_name)
740 {
741 }
742
743 void
744 gst_debug_bin_to_dot_file_with_ts (GstBin * bin, GstDebugGraphDetails details,
745     const gchar * file_name)
746 {
747 }
748 #endif /* GST_REMOVE_DISABLED */
749 #endif /* GST_DISABLE_GST_DEBUG */