2 * Copyright (C) 2007 Stefan Kost <ensonic@users.sf.net>
4 * gstdebugutils.c: debugging and analysis utillities
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.
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.
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.
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
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
33 * - we could add the caps to the pad itself, then we should use one line per
34 * caps (simple caps = one line)
37 #include "gst_private.h"
38 #include "gstdebugutils.h"
40 #ifndef GST_DISABLE_GST_DEBUG
49 #include "gstobject.h"
50 #include "gstghostpad.h"
55 /*** PIPELINE GRAPHS **********************************************************/
57 extern const gchar *priv_gst_dump_dot_dir; /* NULL *//* set from gst.c */
59 const gchar spaces[] = {
66 extern GstClockTime _priv_gst_info_start_time;
69 debug_dump_make_object_name (GstObject * obj)
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 "_", '_');
76 debug_dump_get_element_state (GstElement * element)
78 gchar *state_name = NULL;
79 const gchar *state_icons = "~0-=>";
80 GstState state = GST_STATE_VOID_PENDING, pending = GST_STATE_VOID_PENDING;
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)" : ""));
88 state_name = g_strdup_printf ("\\n[%c] -> [%c]", state_icons[state],
89 state_icons[pending]);
95 debug_dump_get_element_params (GstElement * element)
97 gchar *param_name = NULL;
98 GParamSpec **properties, *property;
99 GValue value = { 0, };
100 guint i, number_of_properties;
101 gchar *tmp, *value_str;
103 /* get paramspecs and show non-default properties */
105 g_object_class_list_properties (G_OBJECT_CLASS (GST_ELEMENT_GET_CLASS
106 (element)), &number_of_properties);
108 for (i = 0; i < number_of_properties; i++) {
109 property = properties[i];
111 /* ski some properties */
112 if (!(property->flags & G_PARAM_READABLE))
114 if (!strcmp (property->name, "name"))
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);
125 param_name = g_strdup_printf ("%s\\n%s=%s",
126 tmp, property->name, value_str);
129 param_name = g_strdup_printf ("\\n%s=%s", property->name, value_str);
133 g_value_unset (&value);
141 debug_dump_pad (GstPad * pad, const gchar * color_name,
142 const gchar * element_name, GstDebugGraphDetails details, FILE * out,
145 GstPadTemplate *pad_templ;
146 GstPadPresence presence;
148 const gchar *style_name;
149 const gchar *spc = &spaces[MAX (sizeof (spaces) - (1 + indent * 2), 0)];
151 pad_name = debug_dump_make_object_name (GST_OBJECT (pad));
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";
163 if (details & GST_DEBUG_GRAPH_SHOW_STATES) {
165 const gchar *activation_mode = "-><";
166 const gchar *task_mode = "";
169 GST_OBJECT_LOCK (pad);
170 task = GST_PAD_TASK (pad);
172 switch (gst_task_get_state (task)) {
173 case GST_TASK_STARTED:
176 case GST_TASK_PAUSED:
180 /* Invalid task state, ignoring */
184 GST_OBJECT_UNLOCK (pad);
186 /* check if pad flags */
188 GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_BLOCKED) ? 'B' : 'b';
190 GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_FLUSHING) ? 'F' : 'f';
192 GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_BLOCKING) ? 'B' : 'b';
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);
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),
210 debug_dump_element_pad (GstPad * pad, GstElement * element,
211 GstDebugGraphDetails details, FILE * out, const gint indent)
213 GstElement *target_element;
214 GstPad *target_pad, *tmp_pad;
217 gchar *target_element_name;
218 const gchar *color_name;
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)) {
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)];
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));
236 target_element_name = g_strdup ("");
238 debug_dump_pad (target_pad, color_name, target_element_name, details,
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);
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);
250 g_free (target_pad_name);
251 g_free (target_element_name);
253 gst_object_unref (target_element);
254 gst_object_unref (target_pad);
257 gst_object_unref (tmp_pad);
261 (dir == GST_PAD_SRC) ? "#ffaaaa" : ((dir ==
262 GST_PAD_SINK) ? "#aaaaff" : "#cccccc");
265 debug_dump_pad (pad, color_name, element_name, details, out, indent);
266 g_free (element_name);
270 string_append_field (GQuark field, const GValue * value, gpointer ptr)
272 GString *str = (GString *) ptr;
273 gchar *value_str = gst_value_serialize (value);
274 gchar *esc_value_str;
276 if (value_str == NULL) {
277 g_string_append_printf (str, " %18s: NULL\\l", g_quark_to_string (field));
281 /* some enums can become really long */
282 if (strlen (value_str) > 25) {
286 value_str[25] = '\0';
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--] = '"';
300 value_str[pos--] = ' ';
302 value_str[pos--] = '.';
303 value_str[pos--] = '.';
304 value_str[pos--] = '.';
306 esc_value_str = g_strescape (value_str, NULL);
308 g_string_append_printf (str, " %18s: %s\\l", g_quark_to_string (field),
312 g_free (esc_value_str);
317 debug_dump_describe_caps (GstCaps * caps, GstDebugGraphDetails details)
321 if (details & GST_DEBUG_GRAPH_SHOW_CAPS_DETAILS) {
323 if (gst_caps_is_any (caps) || gst_caps_is_empty (caps)) {
324 media = gst_caps_to_string (caps);
331 for (i = 0; i < gst_caps_get_size (caps); i++) {
333 STRUCTURE_ESTIMATED_STRING_LEN (gst_caps_get_structure (caps, i));
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);
340 g_string_append (str, gst_structure_get_name (structure));
341 g_string_append (str, "\\l");
343 gst_structure_foreach (structure, string_append_field, (gpointer) str);
346 media = g_string_free (str, FALSE);
350 if (GST_CAPS_IS_SIMPLE (caps))
352 g_strdup (gst_structure_get_name (gst_caps_get_structure (caps, 0)));
354 media = g_strdup ("*");
360 debug_dump_element_pad_link (GstPad * pad, GstElement * element,
361 GstDebugGraphDetails details, FILE * out, const gint indent)
363 GstElement *peer_element;
365 GstCaps *caps, *peer_caps;
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)];
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)
376 caps = gst_pad_get_current_caps (pad);
378 caps = gst_pad_get_pad_template_caps (pad);
379 peer_caps = gst_pad_get_current_caps (peer_pad);
381 peer_caps = gst_pad_get_pad_template_caps (peer_pad);
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)) {
388 tmp = debug_dump_describe_caps (peer_caps, details);
389 if (gst_pad_get_direction (pad) == GST_PAD_SRC) {
398 gst_caps_unref (peer_caps);
399 gst_caps_unref (caps);
402 pad_name = debug_dump_make_object_name (GST_OBJECT (pad));
404 element_name = debug_dump_make_object_name (GST_OBJECT (element));
406 element_name = g_strdup ("");
408 peer_pad_name = debug_dump_make_object_name (GST_OBJECT (peer_pad));
409 if ((peer_element = gst_pad_get_parent_element (peer_pad))) {
411 debug_dump_make_object_name (GST_OBJECT (peer_element));
413 peer_element_name = g_strdup ("");
418 fprintf (out, "%s%s_%s -> %s_%s [label=\"%s\"]\n", spc,
419 element_name, pad_name, peer_element_name, peer_pad_name, 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\", "
426 "taillabel=\"%s\", headlabel=\"%s\"]\n",
427 spc, element_name, pad_name, peer_element_name, peer_pad_name,
428 media_src, media_sink);
432 fprintf (out, "%s%s_%s -> %s_%s\n", spc,
433 element_name, pad_name, peer_element_name, peer_pad_name);
437 g_free (element_name);
438 g_free (peer_pad_name);
439 g_free (peer_element_name);
441 gst_object_unref (peer_element);
442 gst_object_unref (peer_pad);
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)
451 GValue item = { 0, };
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)
464 else if (dir == GST_PAD_SINK)
466 g_value_reset (&item);
468 case GST_ITERATOR_RESYNC:
469 gst_iterator_resync (pad_iter);
471 case GST_ITERATOR_ERROR:
472 case GST_ITERATOR_DONE:
480 * debug_dump_element:
481 * @bin: the bin that should be analyzed
482 * @out: file to write to
483 * @indent: level of graph indentation
485 * Helper for gst_debug_bin_to_dot_file() to recursively dump a pipeline.
488 debug_dump_element (GstBin * bin, GstDebugGraphDetails details, FILE * out,
491 GstIterator *element_iter, *pad_iter;
492 gboolean elements_done, pads_done;
493 GValue item = { 0, };
494 GValue item2 = { 0, };
497 guint src_pads, sink_pads;
499 gchar *state_name = NULL;
500 gchar *param_name = NULL;
501 const gchar *spc = &spaces[MAX (sizeof (spaces) - (1 + indent * 2), 0)];
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));
511 if (details & GST_DEBUG_GRAPH_SHOW_STATES) {
512 state_name = debug_dump_get_element_state (GST_ELEMENT (element));
514 if (details & GST_DEBUG_GRAPH_SHOW_NON_DEFAULT_PARAMS) {
515 param_name = debug_dump_get_element_params (GST_ELEMENT (element));
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 : "")
535 g_free (element_name);
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);
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);
548 if (GST_IS_BIN (element)) {
549 fprintf (out, "%s fillcolor=\"#ffffff\";\n", spc);
551 debug_dump_element (GST_BIN (element), details, out, indent + 1);
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);
560 fprintf (out, "%s fillcolor=\"#ffffff\";\n", spc);
562 fprintf (out, "%s}\n\n", spc);
563 if ((pad_iter = gst_element_iterate_pads (element))) {
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,
574 GstPad *peer_pad = gst_pad_get_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,
582 gst_object_unref (peer_pad);
586 g_value_reset (&item2);
588 case GST_ITERATOR_RESYNC:
589 gst_iterator_resync (pad_iter);
591 case GST_ITERATOR_ERROR:
592 case GST_ITERATOR_DONE:
597 g_value_unset (&item2);
598 gst_iterator_free (pad_iter);
600 g_value_reset (&item);
602 case GST_ITERATOR_RESYNC:
603 gst_iterator_resync (element_iter);
605 case GST_ITERATOR_ERROR:
606 case GST_ITERATOR_DONE:
607 elements_done = TRUE;
612 g_value_unset (&item);
613 gst_iterator_free (element_iter);
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")
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>
629 gst_debug_bin_to_dot_file (GstBin * bin, GstDebugGraphDetails details,
630 const gchar * file_name)
632 gchar *full_file_name = NULL;
635 g_return_if_fail (GST_IS_BIN (bin));
637 if (G_LIKELY (priv_gst_dump_dot_dir == NULL))
641 file_name = g_get_application_name ();
643 file_name = "unnamed";
646 full_file_name = g_strdup_printf ("%s" G_DIR_SEPARATOR_S "%s.dot",
647 priv_gst_dump_dot_dir, file_name);
649 if ((out = fopen (full_file_name, "wb"))) {
650 gchar *state_name = NULL;
651 gchar *param_name = NULL;
653 if (details & GST_DEBUG_GRAPH_SHOW_STATES) {
654 state_name = debug_dump_get_element_state (GST_ELEMENT (bin));
656 if (details & GST_DEBUG_GRAPH_SHOW_NON_DEFAULT_PARAMS) {
657 param_name = debug_dump_get_element_params (GST_ELEMENT (bin));
662 "digraph pipeline {\n"
664 " fontname=\"sans\";\n"
665 " fontsize=\"10\";\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"
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,"
678 "\n", G_OBJECT_TYPE_NAME (bin), GST_OBJECT_NAME (bin),
679 (state_name ? state_name : ""), (param_name ? param_name : "")
686 debug_dump_element (bin, details, out, 1);
689 fprintf (out, "}\n");
691 GST_INFO ("wrote bin graph to : '%s'", full_file_name);
693 GST_WARNING ("Failed to open file '%s' for writing: %s", full_file_name,
696 g_free (full_file_name);
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")
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.
708 gst_debug_bin_to_dot_file_with_ts (GstBin * bin,
709 GstDebugGraphDetails details, const gchar * file_name)
711 gchar *ts_file_name = NULL;
712 GstClockTime elapsed;
714 g_return_if_fail (GST_IS_BIN (bin));
717 file_name = g_get_application_name ();
719 file_name = "unnamed";
723 elapsed = GST_CLOCK_DIFF (_priv_gst_info_start_time,
724 gst_util_get_timestamp ());
726 /* we don't use GST_TIME_FORMAT as such filenames would fail on some
727 * filesystems like fat */
729 g_strdup_printf ("%u.%02u.%02u.%09u-%s", GST_TIME_ARGS (elapsed),
732 gst_debug_bin_to_dot_file (bin, details, ts_file_name);
733 g_free (ts_file_name);
735 #else /* !GST_DISABLE_GST_DEBUG */
736 #ifndef GST_REMOVE_DISABLED
738 gst_debug_bin_to_dot_file (GstBin * bin, GstDebugGraphDetails details,
739 const gchar * file_name)
744 gst_debug_bin_to_dot_file_with_ts (GstBin * bin, GstDebugGraphDetails details,
745 const gchar * file_name)
748 #endif /* GST_REMOVE_DISABLED */
749 #endif /* GST_DISABLE_GST_DEBUG */