gst-inspect: print more details for typefind and tracer features
[platform/upstream/gstreamer.git] / tools / gst-inspect.c
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *               2000 Wim Taymans <wtay@chello.be>
4  *               2004 Thomas Vander Stichele <thomas@apestaart.org>
5  *
6  * gst-inspect.c: tool to inspect the GStreamer registry
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public
19  * License along with this library; if not, write to the
20  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
21  * Boston, MA 02110-1301, USA.
22  */
23
24 #ifdef HAVE_CONFIG_H
25 #  include "config.h"
26 #endif
27
28 /* FIXME 2.0: suppress warnings for deprecated API such as GValueArray
29  * with newer GLib versions (>= 2.31.0) */
30 #define GLIB_DISABLE_DEPRECATION_WARNINGS
31
32 #include "tools.h"
33 #include <gst/gst_private.h>    /* for internal Factories */
34
35 #include <string.h>
36 #include <locale.h>
37 #include <glib/gprintf.h>
38
39 static char *_name = NULL;
40
41 static int print_element_info (GstPluginFeature * feature,
42     gboolean print_names);
43 static int print_typefind_info (GstPluginFeature * feature,
44     gboolean print_names);
45 static int print_tracer_info (GstPluginFeature * feature, gboolean print_names);
46
47 /* *INDENT-OFF* */
48 G_GNUC_PRINTF (1, 2)
49 /* *INDENT-ON* */
50 static void
51 n_print (const char *format, ...)
52 {
53   va_list args;
54
55   if (_name)
56     g_print ("%s", _name);
57
58   va_start (args, format);
59   g_vprintf (format, args);
60   va_end (args);
61 }
62
63 static gboolean
64 print_field (GQuark field, const GValue * value, gpointer pfx)
65 {
66   gchar *str = gst_value_serialize (value);
67
68   n_print ("%s  %15s: %s\n", (gchar *) pfx, g_quark_to_string (field), str);
69   g_free (str);
70   return TRUE;
71 }
72
73 static void
74 print_caps (const GstCaps * caps, const gchar * pfx)
75 {
76   guint i;
77
78   g_return_if_fail (caps != NULL);
79
80   if (gst_caps_is_any (caps)) {
81     n_print ("%sANY\n", pfx);
82     return;
83   }
84   if (gst_caps_is_empty (caps)) {
85     n_print ("%sEMPTY\n", pfx);
86     return;
87   }
88
89   for (i = 0; i < gst_caps_get_size (caps); i++) {
90     GstStructure *structure = gst_caps_get_structure (caps, i);
91     GstCapsFeatures *features = gst_caps_get_features (caps, i);
92
93     if (features && (gst_caps_features_is_any (features) ||
94             !gst_caps_features_is_equal (features,
95                 GST_CAPS_FEATURES_MEMORY_SYSTEM_MEMORY))) {
96       gchar *features_string = gst_caps_features_to_string (features);
97
98       n_print ("%s%s(%s)\n", pfx, gst_structure_get_name (structure),
99           features_string);
100       g_free (features_string);
101     } else {
102       n_print ("%s%s\n", pfx, gst_structure_get_name (structure));
103     }
104     gst_structure_foreach (structure, print_field, (gpointer) pfx);
105   }
106 }
107
108 static const char *
109 get_rank_name (char *s, gint rank)
110 {
111   static const int ranks[4] = {
112     GST_RANK_NONE, GST_RANK_MARGINAL, GST_RANK_SECONDARY, GST_RANK_PRIMARY
113   };
114   static const char *rank_names[4] = { "none", "marginal", "secondary",
115     "primary"
116   };
117   int i;
118   int best_i;
119
120   best_i = 0;
121   for (i = 0; i < 4; i++) {
122     if (rank == ranks[i])
123       return rank_names[i];
124     if (abs (rank - ranks[i]) < abs (rank - ranks[best_i])) {
125       best_i = i;
126     }
127   }
128
129   sprintf (s, "%s %c %d", rank_names[best_i],
130       (rank - ranks[best_i] > 0) ? '+' : '-', abs (ranks[best_i] - rank));
131
132   return s;
133 }
134
135 static void
136 print_factory_details_info (GstElementFactory * factory)
137 {
138   gchar **keys, **k;
139   GstRank rank;
140   char s[20];
141
142   rank = gst_plugin_feature_get_rank (GST_PLUGIN_FEATURE (factory));
143   n_print ("Factory Details:\n");
144   n_print ("  %-25s%s (%d)\n", "Rank", get_rank_name (s, rank), rank);
145
146   keys = gst_element_factory_get_metadata_keys (factory);
147   if (keys != NULL) {
148     for (k = keys; *k != NULL; ++k) {
149       const gchar *val;
150       gchar *key = *k;
151
152       val = gst_element_factory_get_metadata (factory, key);
153       key[0] = g_ascii_toupper (key[0]);
154       n_print ("  %-25s%s\n", key, val);
155     }
156     g_strfreev (keys);
157   }
158   n_print ("\n");
159 }
160
161 static void
162 print_hierarchy (GType type, gint level, gint * maxlevel)
163 {
164   GType parent;
165   gint i;
166
167   parent = g_type_parent (type);
168
169   *maxlevel = *maxlevel + 1;
170   level++;
171
172   if (parent)
173     print_hierarchy (parent, level, maxlevel);
174
175   if (_name)
176     g_print ("%s", _name);
177
178   for (i = 1; i < *maxlevel - level; i++)
179     g_print ("      ");
180   if (*maxlevel - level)
181     g_print (" +----");
182
183   g_print ("%s\n", g_type_name (type));
184
185   if (level == 1)
186     n_print ("\n");
187 }
188
189 static void
190 print_interfaces (GType type)
191 {
192   guint n_ifaces;
193   GType *iface, *ifaces = g_type_interfaces (type, &n_ifaces);
194
195   if (ifaces) {
196     if (n_ifaces) {
197       if (_name)
198         g_print ("%s", _name);
199       g_print (_("Implemented Interfaces:\n"));
200       iface = ifaces;
201       while (*iface) {
202         if (_name)
203           g_print ("%s", _name);
204         g_print ("  %s\n", g_type_name (*iface));
205         iface++;
206       }
207       if (_name)
208         g_print ("%s", _name);
209       g_print ("\n");
210     }
211     g_free (ifaces);
212   }
213 }
214
215 static gchar *
216 flags_to_string (GFlagsValue * vals, guint flags)
217 {
218   GString *s = NULL;
219   guint flags_left, i;
220
221   /* first look for an exact match and count the number of values */
222   for (i = 0; vals[i].value_name != NULL; ++i) {
223     if (vals[i].value == flags)
224       return g_strdup (vals[i].value_nick);
225   }
226
227   s = g_string_new (NULL);
228
229   /* we assume the values are sorted from lowest to highest value */
230   flags_left = flags;
231   while (i > 0) {
232     --i;
233     if (vals[i].value != 0 && (flags_left & vals[i].value) == vals[i].value) {
234       if (s->len > 0)
235         g_string_append_c (s, '+');
236       g_string_append (s, vals[i].value_nick);
237       flags_left -= vals[i].value;
238       if (flags_left == 0)
239         break;
240     }
241   }
242
243   if (s->len == 0)
244     g_string_assign (s, "(none)");
245
246   return g_string_free (s, FALSE);
247 }
248
249 #define KNOWN_PARAM_FLAGS \
250   (G_PARAM_CONSTRUCT | G_PARAM_CONSTRUCT_ONLY | \
251   G_PARAM_LAX_VALIDATION |  G_PARAM_STATIC_STRINGS | \
252   G_PARAM_READABLE | G_PARAM_WRITABLE | G_PARAM_DEPRECATED | \
253   GST_PARAM_CONTROLLABLE | GST_PARAM_MUTABLE_PLAYING | \
254   GST_PARAM_MUTABLE_PAUSED | GST_PARAM_MUTABLE_READY)
255
256 static void
257 print_element_properties_info (GstElement * element)
258 {
259   GParamSpec **property_specs;
260   guint num_properties, i;
261   gboolean readable;
262   gboolean first_flag;
263
264   property_specs = g_object_class_list_properties
265       (G_OBJECT_GET_CLASS (element), &num_properties);
266   n_print ("\n");
267   n_print ("Element Properties:\n");
268
269   for (i = 0; i < num_properties; i++) {
270     GValue value = { 0, };
271     GParamSpec *param = property_specs[i];
272
273     readable = FALSE;
274
275     g_value_init (&value, param->value_type);
276
277     n_print ("  %-20s: %s\n", g_param_spec_get_name (param),
278         g_param_spec_get_blurb (param));
279
280     first_flag = TRUE;
281     n_print ("%-23.23s flags: ", "");
282     if (param->flags & G_PARAM_READABLE) {
283       g_object_get_property (G_OBJECT (element), param->name, &value);
284       readable = TRUE;
285       g_print ("%s%s", (first_flag) ? "" : ", ", _("readable"));
286       first_flag = FALSE;
287     } else {
288       /* if we can't read the property value, assume it's set to the default
289        * (which might not be entirely true for sub-classes, but that's an
290        * unlikely corner-case anyway) */
291       g_param_value_set_default (param, &value);
292     }
293     if (param->flags & G_PARAM_WRITABLE) {
294       g_print ("%s%s", (first_flag) ? "" : ", ", _("writable"));
295       first_flag = FALSE;
296     }
297     if (param->flags & G_PARAM_DEPRECATED) {
298       g_print ("%s%s", (first_flag) ? "" : ", ", _("deprecated"));
299       first_flag = FALSE;
300     }
301     if (param->flags & GST_PARAM_CONTROLLABLE) {
302       g_print (", %s", _("controllable"));
303       first_flag = FALSE;
304     }
305     if (param->flags & GST_PARAM_MUTABLE_PLAYING) {
306       g_print (", %s", _("changeable in NULL, READY, PAUSED or PLAYING state"));
307     } else if (param->flags & GST_PARAM_MUTABLE_PAUSED) {
308       g_print (", %s", _("changeable only in NULL, READY or PAUSED state"));
309     } else if (param->flags & GST_PARAM_MUTABLE_READY) {
310       g_print (", %s", _("changeable only in NULL or READY state"));
311     }
312     if (param->flags & ~KNOWN_PARAM_FLAGS) {
313       g_print ("%s0x%0x", (first_flag) ? "" : ", ",
314           param->flags & ~KNOWN_PARAM_FLAGS);
315     }
316     n_print ("\n");
317
318     switch (G_VALUE_TYPE (&value)) {
319       case G_TYPE_STRING:
320       {
321         const char *string_val = g_value_get_string (&value);
322
323         n_print ("%-23.23s String. ", "");
324
325         if (string_val == NULL)
326           g_print ("Default: null");
327         else
328           g_print ("Default: \"%s\"", string_val);
329         break;
330       }
331       case G_TYPE_BOOLEAN:
332       {
333         gboolean bool_val = g_value_get_boolean (&value);
334
335         n_print ("%-23.23s Boolean. ", "");
336
337         g_print ("Default: %s", bool_val ? "true" : "false");
338         break;
339       }
340       case G_TYPE_ULONG:
341       {
342         GParamSpecULong *pulong = G_PARAM_SPEC_ULONG (param);
343
344         n_print ("%-23.23s Unsigned Long. ", "");
345         g_print ("Range: %lu - %lu Default: %lu ",
346             pulong->minimum, pulong->maximum, g_value_get_ulong (&value));
347
348         GST_ERROR ("%s: property '%s' of type ulong: consider changing to "
349             "uint/uint64", GST_OBJECT_NAME (element),
350             g_param_spec_get_name (param));
351         break;
352       }
353       case G_TYPE_LONG:
354       {
355         GParamSpecLong *plong = G_PARAM_SPEC_LONG (param);
356
357         n_print ("%-23.23s Long. ", "");
358         g_print ("Range: %ld - %ld Default: %ld ",
359             plong->minimum, plong->maximum, g_value_get_long (&value));
360
361         GST_ERROR ("%s: property '%s' of type long: consider changing to "
362             "int/int64", GST_OBJECT_NAME (element),
363             g_param_spec_get_name (param));
364         break;
365       }
366       case G_TYPE_UINT:
367       {
368         GParamSpecUInt *puint = G_PARAM_SPEC_UINT (param);
369
370         n_print ("%-23.23s Unsigned Integer. ", "");
371         g_print ("Range: %u - %u Default: %u ",
372             puint->minimum, puint->maximum, g_value_get_uint (&value));
373         break;
374       }
375       case G_TYPE_INT:
376       {
377         GParamSpecInt *pint = G_PARAM_SPEC_INT (param);
378
379         n_print ("%-23.23s Integer. ", "");
380         g_print ("Range: %d - %d Default: %d ",
381             pint->minimum, pint->maximum, g_value_get_int (&value));
382         break;
383       }
384       case G_TYPE_UINT64:
385       {
386         GParamSpecUInt64 *puint64 = G_PARAM_SPEC_UINT64 (param);
387
388         n_print ("%-23.23s Unsigned Integer64. ", "");
389         g_print ("Range: %" G_GUINT64_FORMAT " - %" G_GUINT64_FORMAT
390             " Default: %" G_GUINT64_FORMAT " ",
391             puint64->minimum, puint64->maximum, g_value_get_uint64 (&value));
392         break;
393       }
394       case G_TYPE_INT64:
395       {
396         GParamSpecInt64 *pint64 = G_PARAM_SPEC_INT64 (param);
397
398         n_print ("%-23.23s Integer64. ", "");
399         g_print ("Range: %" G_GINT64_FORMAT " - %" G_GINT64_FORMAT
400             " Default: %" G_GINT64_FORMAT " ",
401             pint64->minimum, pint64->maximum, g_value_get_int64 (&value));
402         break;
403       }
404       case G_TYPE_FLOAT:
405       {
406         GParamSpecFloat *pfloat = G_PARAM_SPEC_FLOAT (param);
407
408         n_print ("%-23.23s Float. ", "");
409         g_print ("Range: %15.7g - %15.7g Default: %15.7g ",
410             pfloat->minimum, pfloat->maximum, g_value_get_float (&value));
411         break;
412       }
413       case G_TYPE_DOUBLE:
414       {
415         GParamSpecDouble *pdouble = G_PARAM_SPEC_DOUBLE (param);
416
417         n_print ("%-23.23s Double. ", "");
418         g_print ("Range: %15.7g - %15.7g Default: %15.7g ",
419             pdouble->minimum, pdouble->maximum, g_value_get_double (&value));
420         break;
421       }
422       case G_TYPE_CHAR:
423       case G_TYPE_UCHAR:
424         GST_ERROR ("%s: property '%s' of type char: consider changing to "
425             "int/string", GST_OBJECT_NAME (element),
426             g_param_spec_get_name (param));
427         /* fall through */
428       default:
429         if (param->value_type == GST_TYPE_CAPS) {
430           const GstCaps *caps = gst_value_get_caps (&value);
431
432           if (!caps)
433             n_print ("%-23.23s Caps (NULL)", "");
434           else {
435             print_caps (caps, "                           ");
436           }
437         } else if (G_IS_PARAM_SPEC_ENUM (param)) {
438           GEnumValue *values;
439           guint j = 0;
440           gint enum_value;
441           const gchar *value_nick = "";
442
443           values = G_ENUM_CLASS (g_type_class_ref (param->value_type))->values;
444           enum_value = g_value_get_enum (&value);
445
446           while (values[j].value_name) {
447             if (values[j].value == enum_value)
448               value_nick = values[j].value_nick;
449             j++;
450           }
451
452           n_print ("%-23.23s Enum \"%s\" Default: %d, \"%s\"", "",
453               g_type_name (G_VALUE_TYPE (&value)), enum_value, value_nick);
454
455           j = 0;
456           while (values[j].value_name) {
457             g_print ("\n");
458             if (_name)
459               g_print ("%s", _name);
460             g_print ("%-23.23s    (%d): %-16s - %s", "",
461                 values[j].value, values[j].value_nick, values[j].value_name);
462             j++;
463           }
464           /* g_type_class_unref (ec); */
465         } else if (G_IS_PARAM_SPEC_FLAGS (param)) {
466           GParamSpecFlags *pflags = G_PARAM_SPEC_FLAGS (param);
467           GFlagsValue *vals;
468           gchar *cur;
469
470           vals = pflags->flags_class->values;
471
472           cur = flags_to_string (vals, g_value_get_flags (&value));
473
474           n_print ("%-23.23s Flags \"%s\" Default: 0x%08x, \"%s\"", "",
475               g_type_name (G_VALUE_TYPE (&value)),
476               g_value_get_flags (&value), cur);
477
478           while (vals[0].value_name) {
479             g_print ("\n");
480             if (_name)
481               g_print ("%s", _name);
482             g_print ("%-23.23s    (0x%08x): %-16s - %s", "",
483                 vals[0].value, vals[0].value_nick, vals[0].value_name);
484             ++vals;
485           }
486
487           g_free (cur);
488         } else if (G_IS_PARAM_SPEC_OBJECT (param)) {
489           n_print ("%-23.23s Object of type \"%s\"", "",
490               g_type_name (param->value_type));
491         } else if (G_IS_PARAM_SPEC_BOXED (param)) {
492           n_print ("%-23.23s Boxed pointer of type \"%s\"", "",
493               g_type_name (param->value_type));
494           if (param->value_type == GST_TYPE_STRUCTURE) {
495             const GstStructure *s = gst_value_get_structure (&value);
496             if (s)
497               gst_structure_foreach (s, print_field,
498                   (gpointer) "                           ");
499           }
500         } else if (G_IS_PARAM_SPEC_POINTER (param)) {
501           if (param->value_type != G_TYPE_POINTER) {
502             n_print ("%-23.23s Pointer of type \"%s\".", "",
503                 g_type_name (param->value_type));
504           } else {
505             n_print ("%-23.23s Pointer.", "");
506           }
507         } else if (param->value_type == G_TYPE_VALUE_ARRAY) {
508           GParamSpecValueArray *pvarray = G_PARAM_SPEC_VALUE_ARRAY (param);
509
510           if (pvarray->element_spec) {
511             n_print ("%-23.23s Array of GValues of type \"%s\"", "",
512                 g_type_name (pvarray->element_spec->value_type));
513           } else {
514             n_print ("%-23.23s Array of GValues", "");
515           }
516         } else if (GST_IS_PARAM_SPEC_FRACTION (param)) {
517           GstParamSpecFraction *pfraction = GST_PARAM_SPEC_FRACTION (param);
518
519           n_print ("%-23.23s Fraction. ", "");
520
521           g_print ("Range: %d/%d - %d/%d Default: %d/%d ",
522               pfraction->min_num, pfraction->min_den,
523               pfraction->max_num, pfraction->max_den,
524               gst_value_get_fraction_numerator (&value),
525               gst_value_get_fraction_denominator (&value));
526         } else if (param->value_type == GST_TYPE_ARRAY) {
527           GstParamSpecArray *parray = GST_PARAM_SPEC_ARRAY_LIST (param);
528
529           if (parray->element_spec) {
530             n_print ("%-23.23s GstValueArray of GValues of type \"%s\"", "",
531                 g_type_name (parray->element_spec->value_type));
532           } else {
533             n_print ("%-23.23s GstValueArray of GValues", "");
534           }
535         } else {
536           n_print ("%-23.23s Unknown type %ld \"%s\"", "",
537               (glong) param->value_type, g_type_name (param->value_type));
538         }
539         break;
540     }
541     if (!readable)
542       g_print (" Write only\n");
543     else
544       g_print ("\n");
545
546     g_value_reset (&value);
547   }
548   if (num_properties == 0)
549     n_print ("  none\n");
550
551   g_free (property_specs);
552 }
553
554 static void
555 print_pad_templates_info (GstElement * element, GstElementFactory * factory)
556 {
557   const GList *pads;
558   GstStaticPadTemplate *padtemplate;
559
560   n_print ("Pad Templates:\n");
561   if (gst_element_factory_get_num_pad_templates (factory) == 0) {
562     n_print ("  none\n");
563     return;
564   }
565
566   pads = gst_element_factory_get_static_pad_templates (factory);
567   while (pads) {
568     padtemplate = (GstStaticPadTemplate *) (pads->data);
569     pads = g_list_next (pads);
570
571     if (padtemplate->direction == GST_PAD_SRC)
572       n_print ("  SRC template: '%s'\n", padtemplate->name_template);
573     else if (padtemplate->direction == GST_PAD_SINK)
574       n_print ("  SINK template: '%s'\n", padtemplate->name_template);
575     else
576       n_print ("  UNKNOWN!!! template: '%s'\n", padtemplate->name_template);
577
578     if (padtemplate->presence == GST_PAD_ALWAYS)
579       n_print ("    Availability: Always\n");
580     else if (padtemplate->presence == GST_PAD_SOMETIMES)
581       n_print ("    Availability: Sometimes\n");
582     else if (padtemplate->presence == GST_PAD_REQUEST) {
583       n_print ("    Availability: On request\n");
584     } else
585       n_print ("    Availability: UNKNOWN!!!\n");
586
587     if (padtemplate->static_caps.string) {
588       GstCaps *caps = gst_static_caps_get (&padtemplate->static_caps);
589
590       n_print ("    Capabilities:\n");
591       print_caps (caps, "      ");
592       gst_caps_unref (caps);
593     }
594
595     n_print ("\n");
596   }
597 }
598
599 static void
600 print_element_flag_info (GstElement * element)
601 {
602   gboolean have_flags = FALSE;
603
604   n_print ("\n");
605   n_print ("Element Flags:\n");
606
607   if (!have_flags)
608     n_print ("  no flags set\n");
609
610   if (GST_IS_BIN (element)) {
611     n_print ("\n");
612     n_print ("Bin Flags:\n");
613     if (!have_flags)
614       n_print ("  no flags set\n");
615   }
616 }
617
618 static void
619 print_implementation_info (GstElement * element)
620 {
621   GstElementClass *gstelement_class;
622
623   gstelement_class = GST_ELEMENT_CLASS (G_OBJECT_GET_CLASS (element));
624
625   n_print ("\n");
626   n_print ("Element Implementation:\n");
627
628   n_print ("  Has change_state() function: %s\n",
629       GST_DEBUG_FUNCPTR_NAME (gstelement_class->change_state));
630 }
631
632 static void
633 print_clocking_info (GstElement * element)
634 {
635   gboolean requires_clock, provides_clock;
636
637   requires_clock =
638       GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_FLAG_REQUIRE_CLOCK);
639   provides_clock =
640       GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_FLAG_PROVIDE_CLOCK);
641
642   if (!requires_clock && !provides_clock) {
643     n_print ("\n");
644     n_print ("Element has no clocking capabilities.\n");
645     return;
646   }
647
648   n_print ("\n");
649   n_print ("Clocking Interaction:\n");
650   if (requires_clock) {
651     n_print ("  element requires a clock\n");
652   }
653
654   if (provides_clock) {
655     GstClock *clock;
656
657     clock = gst_element_get_clock (element);
658     if (clock) {
659       n_print ("  element provides a clock: %s\n", GST_OBJECT_NAME (clock));
660       gst_object_unref (clock);
661     } else
662       n_print ("  element is supposed to provide a clock but returned NULL\n");
663   }
664 }
665
666 static void
667 print_uri_handler_info (GstElement * element)
668 {
669   if (GST_IS_URI_HANDLER (element)) {
670     const gchar *const *uri_protocols;
671     const gchar *uri_type;
672
673     if (gst_uri_handler_get_uri_type (GST_URI_HANDLER (element)) == GST_URI_SRC)
674       uri_type = "source";
675     else if (gst_uri_handler_get_uri_type (GST_URI_HANDLER (element)) ==
676         GST_URI_SINK)
677       uri_type = "sink";
678     else
679       uri_type = "unknown";
680
681     uri_protocols = gst_uri_handler_get_protocols (GST_URI_HANDLER (element));
682
683     n_print ("\n");
684     n_print ("URI handling capabilities:\n");
685     n_print ("  Element can act as %s.\n", uri_type);
686
687     if (uri_protocols && *uri_protocols) {
688       n_print ("  Supported URI protocols:\n");
689       for (; *uri_protocols != NULL; uri_protocols++)
690         n_print ("    %s\n", *uri_protocols);
691     } else {
692       n_print ("  No supported URI protocols\n");
693     }
694   } else {
695     n_print ("Element has no URI handling capabilities.\n");
696   }
697 }
698
699 static void
700 print_pad_info (GstElement * element)
701 {
702   const GList *pads;
703   GstPad *pad;
704
705   n_print ("\n");
706   n_print ("Pads:\n");
707
708   if (!element->numpads) {
709     n_print ("  none\n");
710     return;
711   }
712
713   pads = element->pads;
714   while (pads) {
715     gchar *name;
716     GstCaps *caps;
717
718     pad = GST_PAD (pads->data);
719     pads = g_list_next (pads);
720
721     name = gst_pad_get_name (pad);
722     if (gst_pad_get_direction (pad) == GST_PAD_SRC)
723       n_print ("  SRC: '%s'\n", name);
724     else if (gst_pad_get_direction (pad) == GST_PAD_SINK)
725       n_print ("  SINK: '%s'\n", name);
726     else
727       n_print ("  UNKNOWN!!!: '%s'\n", name);
728
729     g_free (name);
730
731     if (pad->padtemplate)
732       n_print ("    Pad Template: '%s'\n", pad->padtemplate->name_template);
733
734     caps = gst_pad_get_current_caps (pad);
735     if (caps) {
736       n_print ("    Capabilities:\n");
737       print_caps (caps, "      ");
738       gst_caps_unref (caps);
739     }
740   }
741 }
742
743 static gboolean
744 has_sometimes_template (GstElement * element)
745 {
746   GstElementClass *klass = GST_ELEMENT_GET_CLASS (element);
747   GList *l;
748
749   for (l = klass->padtemplates; l != NULL; l = l->next) {
750     if (GST_PAD_TEMPLATE (l->data)->presence == GST_PAD_SOMETIMES)
751       return TRUE;
752   }
753
754   return FALSE;
755 }
756
757 static gboolean
758 gtype_needs_ptr_marker (GType type)
759 {
760   if (type == G_TYPE_POINTER)
761     return FALSE;
762
763   if (G_TYPE_FUNDAMENTAL (type) == G_TYPE_POINTER || G_TYPE_IS_BOXED (type)
764       || G_TYPE_IS_OBJECT (type))
765     return TRUE;
766
767   return FALSE;
768 }
769
770 static void
771 print_signal_info (GstElement * element)
772 {
773   /* Signals/Actions Block */
774   guint *signals;
775   guint nsignals;
776   gint i = 0, j, k;
777   GSignalQuery *query = NULL;
778   GType type;
779   GSList *found_signals, *l;
780
781   for (k = 0; k < 2; k++) {
782     found_signals = NULL;
783
784     /* For elements that have sometimes pads, also list a few useful GstElement
785      * signals. Put these first, so element-specific ones come later. */
786     if (k == 0 && has_sometimes_template (element)) {
787       query = g_new0 (GSignalQuery, 1);
788       g_signal_query (g_signal_lookup ("pad-added", GST_TYPE_ELEMENT), query);
789       found_signals = g_slist_append (found_signals, query);
790       query = g_new0 (GSignalQuery, 1);
791       g_signal_query (g_signal_lookup ("pad-removed", GST_TYPE_ELEMENT), query);
792       found_signals = g_slist_append (found_signals, query);
793       query = g_new0 (GSignalQuery, 1);
794       g_signal_query (g_signal_lookup ("no-more-pads", GST_TYPE_ELEMENT),
795           query);
796       found_signals = g_slist_append (found_signals, query);
797     }
798
799     for (type = G_OBJECT_TYPE (element); type; type = g_type_parent (type)) {
800       if (type == GST_TYPE_ELEMENT || type == GST_TYPE_OBJECT)
801         break;
802
803       if (type == GST_TYPE_BIN && G_OBJECT_TYPE (element) != GST_TYPE_BIN)
804         continue;
805
806       signals = g_signal_list_ids (type, &nsignals);
807       for (i = 0; i < nsignals; i++) {
808         query = g_new0 (GSignalQuery, 1);
809         g_signal_query (signals[i], query);
810
811         if ((k == 0 && !(query->signal_flags & G_SIGNAL_ACTION)) ||
812             (k == 1 && (query->signal_flags & G_SIGNAL_ACTION)))
813           found_signals = g_slist_append (found_signals, query);
814         else
815           g_free (query);
816       }
817       g_free (signals);
818       signals = NULL;
819     }
820
821     if (found_signals) {
822       n_print ("\n");
823       if (k == 0)
824         n_print ("Element Signals:\n");
825       else
826         n_print ("Element Actions:\n");
827     } else {
828       continue;
829     }
830
831     for (l = found_signals; l; l = l->next) {
832       gchar *indent;
833       const gchar *pmark;
834       int indent_len;
835
836       query = (GSignalQuery *) l->data;
837       indent_len = strlen (query->signal_name) +
838           strlen (g_type_name (query->return_type)) + 24;
839
840       if (gtype_needs_ptr_marker (query->return_type)) {
841         pmark = "* ";
842         indent_len += 2;
843       } else {
844         pmark = "";
845       }
846
847       indent = g_new0 (gchar, indent_len + 1);
848       memset (indent, ' ', indent_len);
849
850       n_print ("  \"%s\" :  %s %suser_function (%s* object",
851           query->signal_name, g_type_name (query->return_type), pmark,
852           g_type_name (type));
853
854       for (j = 0; j < query->n_params; j++) {
855         const gchar *type_name, *asterisk;
856
857         type_name = g_type_name (query->param_types[j]);
858         asterisk = gtype_needs_ptr_marker (query->param_types[j]) ? "*" : "";
859
860         g_print (",\n");
861         n_print ("%s%s%s arg%d", indent, type_name, asterisk, j);
862       }
863
864       if (k == 0) {
865         g_print (",\n");
866         n_print ("%sgpointer user_data);\n", indent);
867       } else
868         g_print (");\n");
869
870       g_free (indent);
871     }
872
873     if (found_signals) {
874       g_slist_foreach (found_signals, (GFunc) g_free, NULL);
875       g_slist_free (found_signals);
876     }
877   }
878 }
879
880 static void
881 print_children_info (GstElement * element)
882 {
883   GList *children;
884
885   if (!GST_IS_BIN (element))
886     return;
887
888   children = (GList *) GST_BIN (element)->children;
889   if (children) {
890     n_print ("\n");
891     n_print ("Children:\n");
892   }
893
894   while (children) {
895     n_print ("  %s\n", GST_ELEMENT_NAME (GST_ELEMENT (children->data)));
896     children = g_list_next (children);
897   }
898 }
899
900 static void
901 print_preset_list (GstElement * element)
902 {
903   gchar **presets, **preset;
904
905   if (!GST_IS_PRESET (element))
906     return;
907
908   presets = gst_preset_get_preset_names (GST_PRESET (element));
909   if (presets && *presets) {
910     n_print ("\n");
911     n_print ("Presets:\n");
912     for (preset = presets; *preset; preset++) {
913       n_print ("  \"%s\"\n", *preset);
914     }
915     g_strfreev (presets);
916   }
917 }
918
919 static void
920 print_blacklist (void)
921 {
922   GList *plugins, *cur;
923   gint count = 0;
924
925   g_print ("%s\n", _("Blacklisted files:"));
926
927   plugins = gst_registry_get_plugin_list (gst_registry_get ());
928   for (cur = plugins; cur != NULL; cur = g_list_next (cur)) {
929     GstPlugin *plugin = (GstPlugin *) (cur->data);
930     if (GST_OBJECT_FLAG_IS_SET (plugin, GST_PLUGIN_FLAG_BLACKLISTED)) {
931       g_print ("  %s\n", gst_plugin_get_name (plugin));
932       count++;
933     }
934   }
935
936   g_print ("\n");
937   g_print (_("Total count: "));
938   g_print (ngettext ("%d blacklisted file", "%d blacklisted files", count),
939       count);
940   g_print ("\n");
941   gst_plugin_list_free (plugins);
942 }
943
944 static void
945 print_typefind_extensions (const gchar * const *extensions)
946 {
947   guint i = 0;
948
949   while (extensions[i]) {
950     g_print ("%s%s", i > 0 ? ", " : "", extensions[i]);
951     i++;
952   }
953 }
954
955 static void
956 print_element_list (gboolean print_all, gchar * ftypes)
957 {
958   int plugincount = 0, featurecount = 0, blacklistcount = 0;
959   GList *plugins, *orig_plugins;
960   gchar **types = NULL;
961
962   if (ftypes) {
963     gint i;
964
965     types = g_strsplit (ftypes, "/", -1);
966     for (i = 0; types[i]; i++)
967       *types[i] = g_ascii_toupper (*types[i]);
968
969   }
970
971   orig_plugins = plugins = gst_registry_get_plugin_list (gst_registry_get ());
972   while (plugins) {
973     GList *features, *orig_features;
974     GstPlugin *plugin;
975
976     plugin = (GstPlugin *) (plugins->data);
977     plugins = g_list_next (plugins);
978     plugincount++;
979
980     if (GST_OBJECT_FLAG_IS_SET (plugin, GST_PLUGIN_FLAG_BLACKLISTED)) {
981       blacklistcount++;
982       continue;
983     }
984
985     orig_features = features =
986         gst_registry_get_feature_list_by_plugin (gst_registry_get (),
987         gst_plugin_get_name (plugin));
988     while (features) {
989       GstPluginFeature *feature;
990
991       if (G_UNLIKELY (features->data == NULL))
992         goto next;
993       feature = GST_PLUGIN_FEATURE (features->data);
994       featurecount++;
995
996       if (GST_IS_ELEMENT_FACTORY (feature)) {
997         const gchar *klass;
998         GstElementFactory *factory;
999
1000         factory = GST_ELEMENT_FACTORY (feature);
1001         if (types) {
1002           gint i;
1003           gboolean all_found = TRUE;
1004
1005           klass =
1006               gst_element_factory_get_metadata (factory,
1007               GST_ELEMENT_METADATA_KLASS);
1008           for (i = 0; types[i]; i++) {
1009             if (!strstr (klass, types[i])) {
1010               all_found = FALSE;
1011               break;
1012             }
1013           }
1014
1015           if (!all_found)
1016             goto next;
1017         }
1018         if (print_all)
1019           print_element_info (feature, TRUE);
1020         else
1021           g_print ("%s:  %s: %s\n", gst_plugin_get_name (plugin),
1022               GST_OBJECT_NAME (factory),
1023               gst_element_factory_get_metadata (factory,
1024                   GST_ELEMENT_METADATA_LONGNAME));
1025       } else if (GST_IS_TYPE_FIND_FACTORY (feature)) {
1026         GstTypeFindFactory *factory;
1027         const gchar *const *extensions;
1028
1029         if (types)
1030           goto next;
1031         factory = GST_TYPE_FIND_FACTORY (feature);
1032         if (!print_all)
1033           g_print ("%s: %s: ", gst_plugin_get_name (plugin),
1034               gst_plugin_feature_get_name (feature));
1035
1036         extensions = gst_type_find_factory_get_extensions (factory);
1037         if (extensions != NULL) {
1038           if (!print_all) {
1039             print_typefind_extensions (extensions);
1040             g_print ("\n");
1041           }
1042         } else {
1043           if (!print_all)
1044             g_print ("no extensions\n");
1045         }
1046       } else {
1047         if (types)
1048           goto next;
1049         if (!print_all)
1050           n_print ("%s:  %s (%s)\n", gst_plugin_get_name (plugin),
1051               GST_OBJECT_NAME (feature), g_type_name (G_OBJECT_TYPE (feature)));
1052       }
1053
1054     next:
1055       features = g_list_next (features);
1056     }
1057
1058     gst_plugin_feature_list_free (orig_features);
1059   }
1060
1061   gst_plugin_list_free (orig_plugins);
1062   g_strfreev (types);
1063
1064   g_print ("\n");
1065   g_print (_("Total count: "));
1066   g_print (ngettext ("%d plugin", "%d plugins", plugincount), plugincount);
1067   if (blacklistcount) {
1068     g_print (" (");
1069     g_print (ngettext ("%d blacklist entry", "%d blacklist entries",
1070             blacklistcount), blacklistcount);
1071     g_print (" not shown)");
1072   }
1073   g_print (", ");
1074   g_print (ngettext ("%d feature", "%d features", featurecount), featurecount);
1075   g_print ("\n");
1076 }
1077
1078 static void
1079 print_all_uri_handlers (void)
1080 {
1081   GList *plugins, *p, *features, *f;
1082
1083   plugins = gst_registry_get_plugin_list (gst_registry_get ());
1084
1085   for (p = plugins; p; p = p->next) {
1086     GstPlugin *plugin = (GstPlugin *) (p->data);
1087
1088     features =
1089         gst_registry_get_feature_list_by_plugin (gst_registry_get (),
1090         gst_plugin_get_name (plugin));
1091
1092     for (f = features; f; f = f->next) {
1093       GstPluginFeature *feature = GST_PLUGIN_FEATURE (f->data);
1094
1095       if (GST_IS_ELEMENT_FACTORY (feature)) {
1096         GstElementFactory *factory;
1097         GstElement *element;
1098
1099         factory = GST_ELEMENT_FACTORY (gst_plugin_feature_load (feature));
1100         if (!factory) {
1101           g_print ("element plugin %s couldn't be loaded\n",
1102               gst_plugin_get_name (plugin));
1103           continue;
1104         }
1105
1106         element = gst_element_factory_create (factory, NULL);
1107         if (!element) {
1108           g_print ("couldn't construct element for %s for some reason\n",
1109               GST_OBJECT_NAME (factory));
1110           gst_object_unref (factory);
1111           continue;
1112         }
1113
1114         if (GST_IS_URI_HANDLER (element)) {
1115           const gchar *const *uri_protocols;
1116           const gchar *dir;
1117           gchar *joined;
1118
1119           switch (gst_uri_handler_get_uri_type (GST_URI_HANDLER (element))) {
1120             case GST_URI_SRC:
1121               dir = "read";
1122               break;
1123             case GST_URI_SINK:
1124               dir = "write";
1125               break;
1126             default:
1127               dir = "unknown";
1128               break;
1129           }
1130
1131           uri_protocols =
1132               gst_uri_handler_get_protocols (GST_URI_HANDLER (element));
1133           joined = g_strjoinv (", ", (gchar **) uri_protocols);
1134
1135           g_print ("%s (%s, rank %u): %s\n",
1136               gst_plugin_feature_get_name (GST_PLUGIN_FEATURE (factory)), dir,
1137               gst_plugin_feature_get_rank (GST_PLUGIN_FEATURE (factory)),
1138               joined);
1139
1140           g_free (joined);
1141         }
1142
1143         gst_object_unref (element);
1144         gst_object_unref (factory);
1145       }
1146     }
1147
1148     gst_plugin_feature_list_free (features);
1149   }
1150
1151   gst_plugin_list_free (plugins);
1152 }
1153
1154 static void
1155 print_plugin_info (GstPlugin * plugin)
1156 {
1157   const gchar *release_date = gst_plugin_get_release_date_string (plugin);
1158   const gchar *filename = gst_plugin_get_filename (plugin);
1159
1160   n_print ("Plugin Details:\n");
1161   n_print ("  %-25s%s\n", "Name", gst_plugin_get_name (plugin));
1162   n_print ("  %-25s%s\n", "Description", gst_plugin_get_description (plugin));
1163   n_print ("  %-25s%s\n", "Filename", (filename != NULL) ? filename : "(null)");
1164   n_print ("  %-25s%s\n", "Version", gst_plugin_get_version (plugin));
1165   n_print ("  %-25s%s\n", "License", gst_plugin_get_license (plugin));
1166   n_print ("  %-25s%s\n", "Source module", gst_plugin_get_source (plugin));
1167
1168   if (release_date != NULL) {
1169     const gchar *tz = "(UTC)";
1170     gchar *str, *sep;
1171
1172     /* may be: YYYY-MM-DD or YYYY-MM-DDTHH:MMZ */
1173     /* YYYY-MM-DDTHH:MMZ => YYYY-MM-DD HH:MM (UTC) */
1174     str = g_strdup (release_date);
1175     sep = strstr (str, "T");
1176     if (sep != NULL) {
1177       *sep = ' ';
1178       sep = strstr (sep + 1, "Z");
1179       if (sep != NULL)
1180         *sep = ' ';
1181     } else {
1182       tz = "";
1183     }
1184     n_print ("  %-25s%s%s\n", "Source release date", str, tz);
1185     g_free (str);
1186   }
1187   n_print ("  %-25s%s\n", "Binary package", gst_plugin_get_package (plugin));
1188   n_print ("  %-25s%s\n", "Origin URL", gst_plugin_get_origin (plugin));
1189   n_print ("\n");
1190 }
1191
1192 static void
1193 print_plugin_features (GstPlugin * plugin)
1194 {
1195   GList *features, *origlist;
1196   gint num_features = 0;
1197   gint num_elements = 0;
1198   gint num_tracers = 0;
1199   gint num_typefinders = 0;
1200   gint num_devproviders = 0;
1201   gint num_other = 0;
1202
1203   origlist = features =
1204       gst_registry_get_feature_list_by_plugin (gst_registry_get (),
1205       gst_plugin_get_name (plugin));
1206
1207   while (features) {
1208     GstPluginFeature *feature;
1209
1210     feature = GST_PLUGIN_FEATURE (features->data);
1211
1212     if (GST_IS_ELEMENT_FACTORY (feature)) {
1213       GstElementFactory *factory;
1214
1215       factory = GST_ELEMENT_FACTORY (feature);
1216       n_print ("  %s: %s\n", GST_OBJECT_NAME (factory),
1217           gst_element_factory_get_metadata (factory,
1218               GST_ELEMENT_METADATA_LONGNAME));
1219       num_elements++;
1220     } else if (GST_IS_TYPE_FIND_FACTORY (feature)) {
1221       GstTypeFindFactory *factory;
1222       const gchar *const *extensions;
1223
1224       factory = GST_TYPE_FIND_FACTORY (feature);
1225       extensions = gst_type_find_factory_get_extensions (factory);
1226       if (extensions) {
1227         guint i = 0;
1228
1229         g_print ("  %s: %s: ", gst_plugin_get_name (plugin),
1230             gst_plugin_feature_get_name (feature));
1231         while (extensions[i]) {
1232           g_print ("%s%s", i > 0 ? ", " : "", extensions[i]);
1233           i++;
1234         }
1235         g_print ("\n");
1236       } else
1237         g_print ("  %s: %s: no extensions\n", gst_plugin_get_name (plugin),
1238             gst_plugin_feature_get_name (feature));
1239
1240       num_typefinders++;
1241     } else if (GST_IS_DEVICE_PROVIDER_FACTORY (feature)) {
1242       GstDeviceProviderFactory *factory;
1243
1244       factory = GST_DEVICE_PROVIDER_FACTORY (feature);
1245       n_print ("  %s: %s\n", GST_OBJECT_NAME (factory),
1246           gst_device_provider_factory_get_metadata (factory,
1247               GST_ELEMENT_METADATA_LONGNAME));
1248       num_devproviders++;
1249     } else if (GST_IS_TRACER_FACTORY (feature)) {
1250       n_print ("  %s (%s)\n", gst_object_get_name (GST_OBJECT (feature)),
1251           g_type_name (G_OBJECT_TYPE (feature)));
1252       num_tracers++;
1253     } else if (feature) {
1254       n_print ("  %s (%s)\n", gst_object_get_name (GST_OBJECT (feature)),
1255           g_type_name (G_OBJECT_TYPE (feature)));
1256       num_other++;
1257     }
1258     num_features++;
1259     features = g_list_next (features);
1260   }
1261
1262   gst_plugin_feature_list_free (origlist);
1263
1264   n_print ("\n");
1265   n_print ("  %d features:\n", num_features);
1266   if (num_elements > 0)
1267     n_print ("  +-- %d elements\n", num_elements);
1268   if (num_typefinders > 0)
1269     n_print ("  +-- %d typefinders\n", num_typefinders);
1270   if (num_devproviders > 0)
1271     n_print ("  +-- %d device providers\n", num_devproviders);
1272   if (num_tracers > 0)
1273     n_print ("  +-- %d tracers\n", num_tracers);
1274   if (num_other > 0)
1275     n_print ("  +-- %d other objects\n", num_other);
1276
1277   n_print ("\n");
1278 }
1279
1280 static int
1281 print_feature_info (const gchar * feature_name, gboolean print_all)
1282 {
1283   GstPluginFeature *feature;
1284   GstRegistry *registry = gst_registry_get ();
1285   int ret;
1286
1287   if ((feature = gst_registry_find_feature (registry, feature_name,
1288               GST_TYPE_ELEMENT_FACTORY))) {
1289     ret = print_element_info (feature, print_all);
1290     goto handled;
1291   }
1292   if ((feature = gst_registry_find_feature (registry, feature_name,
1293               GST_TYPE_TYPE_FIND_FACTORY))) {
1294     ret = print_typefind_info (feature, print_all);
1295     goto handled;
1296   }
1297   if ((feature = gst_registry_find_feature (registry, feature_name,
1298               GST_TYPE_TRACER_FACTORY))) {
1299     ret = print_tracer_info (feature, print_all);
1300     goto handled;
1301   }
1302
1303   /* TODO: handle DEVICE_PROVIDER_FACTORY */
1304
1305   return -1;
1306
1307 handled:
1308   gst_object_unref (feature);
1309   return ret;
1310 }
1311
1312 static int
1313 print_element_info (GstPluginFeature * feature, gboolean print_names)
1314 {
1315   GstElementFactory *factory;
1316   GstElement *element;
1317   GstPlugin *plugin;
1318   gint maxlevel = 0;
1319
1320   factory = GST_ELEMENT_FACTORY (gst_plugin_feature_load (feature));
1321   if (!factory) {
1322     g_print ("element plugin couldn't be loaded\n");
1323     return -1;
1324   }
1325
1326   element = gst_element_factory_create (factory, NULL);
1327   if (!element) {
1328     gst_object_unref (factory);
1329     g_print ("couldn't construct element for some reason\n");
1330     return -1;
1331   }
1332
1333   if (print_names)
1334     _name = g_strdup_printf ("%s: ", GST_OBJECT_NAME (factory));
1335   else
1336     _name = NULL;
1337
1338   print_factory_details_info (factory);
1339
1340   plugin = gst_plugin_feature_get_plugin (GST_PLUGIN_FEATURE (factory));
1341   if (plugin) {
1342     print_plugin_info (plugin);
1343     gst_object_unref (plugin);
1344   }
1345
1346   print_hierarchy (G_OBJECT_TYPE (element), 0, &maxlevel);
1347   print_interfaces (G_OBJECT_TYPE (element));
1348
1349   print_pad_templates_info (element, factory);
1350   print_element_flag_info (element);
1351   print_implementation_info (element);
1352   print_clocking_info (element);
1353   print_uri_handler_info (element);
1354   print_pad_info (element);
1355   print_element_properties_info (element);
1356   print_signal_info (element);
1357   print_children_info (element);
1358   print_preset_list (element);
1359
1360   gst_object_unref (element);
1361   gst_object_unref (factory);
1362   g_free (_name);
1363   return 0;
1364 }
1365
1366 static int
1367 print_typefind_info (GstPluginFeature * feature, gboolean print_names)
1368 {
1369   GstTypeFindFactory *factory;
1370   GstPlugin *plugin;
1371   GstCaps *caps;
1372   GstRank rank;
1373   char s[20];
1374   const gchar *const *extensions;
1375
1376   factory = GST_TYPE_FIND_FACTORY (gst_plugin_feature_load (feature));
1377   if (!factory) {
1378     g_print ("typefind plugin couldn't be loaded\n");
1379     return -1;
1380   }
1381
1382   if (print_names)
1383     _name = g_strdup_printf ("%s: ", GST_OBJECT_NAME (factory));
1384   else
1385     _name = NULL;
1386
1387   n_print ("Factory Details:\n");
1388   rank = gst_plugin_feature_get_rank (feature);
1389   n_print ("  %-25s%s (%d)\n", "Rank", get_rank_name (s, rank), rank);
1390   n_print ("  %-25s%s\n", "Name", GST_OBJECT_NAME (factory));
1391   caps = gst_type_find_factory_get_caps (factory);
1392   if (caps) {
1393     gchar *caps_str = gst_caps_to_string (factory->caps);
1394
1395     n_print ("  %-25s%s\n", "Caps", caps_str);
1396     g_free (caps_str);
1397   }
1398   extensions = gst_type_find_factory_get_extensions (factory);
1399   if (extensions) {
1400     n_print ("  %-25s", "Extensions");
1401     print_typefind_extensions (extensions);
1402     n_print ("\n");
1403   }
1404   n_print ("\n");
1405
1406   plugin = gst_plugin_feature_get_plugin (GST_PLUGIN_FEATURE (factory));
1407   if (plugin) {
1408     print_plugin_info (plugin);
1409     gst_object_unref (plugin);
1410   }
1411
1412   gst_object_unref (factory);
1413   g_free (_name);
1414   return 0;
1415 }
1416
1417 static int
1418 print_tracer_info (GstPluginFeature * feature, gboolean print_names)
1419 {
1420   GstTracerFactory *factory;
1421   GstTracer *tracer;
1422   GstPlugin *plugin;
1423   gint maxlevel = 0;
1424
1425   factory = GST_TRACER_FACTORY (gst_plugin_feature_load (feature));
1426   if (!factory) {
1427     g_print ("tracer plugin couldn't be loaded\n");
1428     return -1;
1429   }
1430
1431   tracer = (GstTracer *) g_object_new (factory->type, NULL);
1432   if (!tracer) {
1433     gst_object_unref (factory);
1434     g_print ("couldn't construct tracer for some reason\n");
1435     return -1;
1436   }
1437
1438   if (print_names)
1439     _name = g_strdup_printf ("%s: ", GST_OBJECT_NAME (factory));
1440   else
1441     _name = NULL;
1442
1443   n_print ("Factory Details:\n");
1444   n_print ("  %-25s%s\n", "Name", GST_OBJECT_NAME (factory));
1445   n_print ("\n");
1446
1447   plugin = gst_plugin_feature_get_plugin (GST_PLUGIN_FEATURE (factory));
1448   if (plugin) {
1449     print_plugin_info (plugin);
1450     gst_object_unref (plugin);
1451   }
1452
1453   print_hierarchy (G_OBJECT_TYPE (tracer), 0, &maxlevel);
1454   print_interfaces (G_OBJECT_TYPE (tracer));
1455
1456   /* TODO: list what hooks it registers
1457    * - the data is available in gsttracerutils, we need to iterate the
1458    *   _priv_tracers hashtable for each probe and then check the list of hooks
1459    *  for each probe whether hook->tracer == tracer :/
1460    */
1461
1462   /* TODO: list what records it emits
1463    * - in class_init tracers can create GstTracerRecord instances
1464    * - those only get logged right now and there is no association with the
1465    *   tracer that created them
1466    * - we'd need to add them to GstTracerFactory
1467    *   gst_tracer_class_add_record (klass, record);
1468    *   - needs work in gstregistrychunks.
1469    */
1470
1471   gst_object_unref (tracer);
1472   gst_object_unref (factory);
1473   g_free (_name);
1474   return 0;
1475 }
1476
1477 static void
1478 print_plugin_automatic_install_info_codecs (GstElementFactory * factory)
1479 {
1480   GstPadDirection direction;
1481   const gchar *type_name;
1482   const gchar *klass;
1483   const GList *static_templates, *l;
1484   GstCaps *caps = NULL;
1485   guint i, num;
1486
1487   klass =
1488       gst_element_factory_get_metadata (factory, GST_ELEMENT_METADATA_KLASS);
1489   g_return_if_fail (klass != NULL);
1490
1491   if (strstr (klass, "Demuxer") ||
1492       strstr (klass, "Decoder") ||
1493       strstr (klass, "Depay") || strstr (klass, "Parser")) {
1494     type_name = "decoder";
1495     direction = GST_PAD_SINK;
1496   } else if (strstr (klass, "Muxer") ||
1497       strstr (klass, "Encoder") || strstr (klass, "Pay")) {
1498     type_name = "encoder";
1499     direction = GST_PAD_SRC;
1500   } else {
1501     return;
1502   }
1503
1504   /* decoder/demuxer sink pads should always be static and there should only
1505    * be one, the same applies to encoders/muxers and source pads */
1506   static_templates = gst_element_factory_get_static_pad_templates (factory);
1507   for (l = static_templates; l != NULL; l = l->next) {
1508     GstStaticPadTemplate *tmpl = NULL;
1509
1510     tmpl = (GstStaticPadTemplate *) l->data;
1511     if (tmpl->direction == direction) {
1512       caps = gst_static_pad_template_get_caps (tmpl);
1513       break;
1514     }
1515   }
1516
1517   if (caps == NULL) {
1518     g_printerr ("Couldn't find static pad template for %s '%s'\n",
1519         type_name, GST_OBJECT_NAME (factory));
1520     return;
1521   }
1522
1523   caps = gst_caps_make_writable (caps);
1524   num = gst_caps_get_size (caps);
1525   for (i = 0; i < num; ++i) {
1526     GstStructure *s;
1527     gchar *s_str;
1528
1529     s = gst_caps_get_structure (caps, i);
1530     /* remove fields that are almost always just MIN-MAX of some sort
1531      * in order to make the caps look less messy */
1532     gst_structure_remove_field (s, "pixel-aspect-ratio");
1533     gst_structure_remove_field (s, "framerate");
1534     gst_structure_remove_field (s, "channels");
1535     gst_structure_remove_field (s, "width");
1536     gst_structure_remove_field (s, "height");
1537     gst_structure_remove_field (s, "rate");
1538     gst_structure_remove_field (s, "depth");
1539     gst_structure_remove_field (s, "clock-rate");
1540     s_str = gst_structure_to_string (s);
1541     g_print ("%s-%s\n", type_name, s_str);
1542     g_free (s_str);
1543   }
1544   gst_caps_unref (caps);
1545 }
1546
1547 static void
1548 print_plugin_automatic_install_info_protocols (GstElementFactory * factory)
1549 {
1550   const gchar *const *protocols;
1551
1552   protocols = gst_element_factory_get_uri_protocols (factory);
1553   if (protocols != NULL && *protocols != NULL) {
1554     switch (gst_element_factory_get_uri_type (factory)) {
1555       case GST_URI_SINK:
1556         while (*protocols != NULL) {
1557           g_print ("urisink-%s\n", *protocols);
1558           ++protocols;
1559         }
1560         break;
1561       case GST_URI_SRC:
1562         while (*protocols != NULL) {
1563           g_print ("urisource-%s\n", *protocols);
1564           ++protocols;
1565         }
1566         break;
1567       default:
1568         break;
1569     }
1570   }
1571 }
1572
1573 static void
1574 print_plugin_automatic_install_info (GstPlugin * plugin)
1575 {
1576   GList *features, *l;
1577
1578   /* not interested in typefind factories, only element factories */
1579   features = gst_registry_get_feature_list (gst_registry_get (),
1580       GST_TYPE_ELEMENT_FACTORY);
1581
1582   for (l = features; l != NULL; l = l->next) {
1583     GstPluginFeature *feature;
1584     GstPlugin *feature_plugin;
1585
1586     feature = GST_PLUGIN_FEATURE (l->data);
1587
1588     /* only interested in the ones that are in the plugin we just loaded */
1589     feature_plugin = gst_plugin_feature_get_plugin (feature);
1590     if (feature_plugin == plugin) {
1591       GstElementFactory *factory;
1592
1593       g_print ("element-%s\n", gst_plugin_feature_get_name (feature));
1594
1595       factory = GST_ELEMENT_FACTORY (feature);
1596       print_plugin_automatic_install_info_protocols (factory);
1597       print_plugin_automatic_install_info_codecs (factory);
1598     }
1599     if (feature_plugin)
1600       gst_object_unref (feature_plugin);
1601   }
1602
1603   g_list_foreach (features, (GFunc) gst_object_unref, NULL);
1604   g_list_free (features);
1605 }
1606
1607 static void
1608 print_all_plugin_automatic_install_info (void)
1609 {
1610   GList *plugins, *orig_plugins;
1611
1612   orig_plugins = plugins = gst_registry_get_plugin_list (gst_registry_get ());
1613   while (plugins) {
1614     GstPlugin *plugin;
1615
1616     plugin = (GstPlugin *) (plugins->data);
1617     plugins = g_list_next (plugins);
1618
1619     print_plugin_automatic_install_info (plugin);
1620   }
1621   gst_plugin_list_free (orig_plugins);
1622 }
1623
1624 int
1625 main (int argc, char *argv[])
1626 {
1627   gboolean print_all = FALSE;
1628   gboolean do_print_blacklist = FALSE;
1629   gboolean plugin_name = FALSE;
1630   gboolean print_aii = FALSE;
1631   gboolean uri_handlers = FALSE;
1632   gboolean check_exists = FALSE;
1633   gchar *min_version = NULL;
1634   guint minver_maj = GST_VERSION_MAJOR;
1635   guint minver_min = GST_VERSION_MINOR;
1636   guint minver_micro = 0;
1637   gchar *types = NULL;
1638 #ifndef GST_DISABLE_OPTION_PARSING
1639   GOptionEntry options[] = {
1640     {"print-all", 'a', 0, G_OPTION_ARG_NONE, &print_all,
1641         N_("Print all elements"), NULL},
1642     {"print-blacklist", 'b', 0, G_OPTION_ARG_NONE, &do_print_blacklist,
1643         N_("Print list of blacklisted files"), NULL},
1644     {"print-plugin-auto-install-info", '\0', 0, G_OPTION_ARG_NONE, &print_aii,
1645         N_("Print a machine-parsable list of features the specified plugin "
1646               "or all plugins provide.\n                                       "
1647               "Useful in connection with external automatic plugin "
1648               "installation mechanisms"), NULL},
1649     {"plugin", '\0', 0, G_OPTION_ARG_NONE, &plugin_name,
1650         N_("List the plugin contents"), NULL},
1651     {"types", 't', 0, G_OPTION_ARG_STRING, &types,
1652         N_("A slashes ('/') separated list of types of elements (also known "
1653               "as klass) to list. (unordered)"), NULL},
1654     {"exists", '\0', 0, G_OPTION_ARG_NONE, &check_exists,
1655         N_("Check if the specified element or plugin exists"), NULL},
1656     {"atleast-version", '\0', 0, G_OPTION_ARG_STRING, &min_version,
1657         N_
1658           ("When checking if an element or plugin exists, also check that its "
1659               "version is at least the version specified"), NULL},
1660     {"uri-handlers", 'u', 0, G_OPTION_ARG_NONE, &uri_handlers,
1661           N_
1662           ("Print supported URI schemes, with the elements that implement them"),
1663         NULL},
1664     GST_TOOLS_GOPTION_VERSION,
1665     {NULL}
1666   };
1667   GOptionContext *ctx;
1668   GError *err = NULL;
1669 #endif
1670
1671   setlocale (LC_ALL, "");
1672
1673 #ifdef ENABLE_NLS
1674   bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
1675   bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
1676   textdomain (GETTEXT_PACKAGE);
1677 #endif
1678
1679   /* avoid glib warnings when inspecting deprecated properties */
1680   g_setenv ("G_ENABLE_DIAGNOSTIC", "0", FALSE);
1681
1682   g_set_prgname ("gst-inspect-" GST_API_VERSION);
1683
1684 #ifndef GST_DISABLE_OPTION_PARSING
1685   ctx = g_option_context_new ("[ELEMENT-NAME | PLUGIN-NAME]");
1686   g_option_context_add_main_entries (ctx, options, GETTEXT_PACKAGE);
1687   g_option_context_add_group (ctx, gst_init_get_option_group ());
1688   if (!g_option_context_parse (ctx, &argc, &argv, &err)) {
1689     g_printerr ("Error initializing: %s\n", err->message);
1690     g_clear_error (&err);
1691     g_option_context_free (ctx);
1692     return -1;
1693   }
1694   g_option_context_free (ctx);
1695 #else
1696   gst_init (&argc, &argv);
1697 #endif
1698
1699   gst_tools_print_version ();
1700
1701   if (print_all && argc > 1) {
1702     g_printerr ("-a requires no extra arguments\n");
1703     return -1;
1704   }
1705
1706   if (uri_handlers && argc > 1) {
1707     g_printerr ("-u requires no extra arguments\n");
1708     return -1;
1709   }
1710
1711   /* --atleast-version implies --exists */
1712   if (min_version != NULL) {
1713     if (sscanf (min_version, "%u.%u.%u", &minver_maj, &minver_min,
1714             &minver_micro) < 2) {
1715       g_printerr ("Can't parse version '%s' passed to --atleast-version\n",
1716           min_version);
1717       return -1;
1718     }
1719     check_exists = TRUE;
1720   }
1721
1722   if (check_exists) {
1723     int exit_code;
1724
1725     if (argc == 1) {
1726       g_printerr ("--exists requires an extra command line argument\n");
1727       exit_code = -1;
1728     } else {
1729       if (!plugin_name) {
1730         GstPluginFeature *feature;
1731
1732         feature = gst_registry_lookup_feature (gst_registry_get (), argv[1]);
1733         if (feature != NULL && gst_plugin_feature_check_version (feature,
1734                 minver_maj, minver_min, minver_micro)) {
1735           exit_code = 0;
1736         } else {
1737           exit_code = 1;
1738         }
1739
1740         if (feature)
1741           gst_object_unref (feature);
1742       } else {
1743         /* FIXME: support checking for plugins too */
1744         g_printerr ("Checking for plugins is not supported yet\n");
1745         exit_code = -1;
1746       }
1747     }
1748     return exit_code;
1749   }
1750
1751   /* if no arguments, print out list of elements */
1752   if (uri_handlers) {
1753     print_all_uri_handlers ();
1754   } else if (argc == 1 || print_all) {
1755     if (do_print_blacklist)
1756       print_blacklist ();
1757     else {
1758       if (print_aii)
1759         print_all_plugin_automatic_install_info ();
1760       else
1761         print_element_list (print_all, types);
1762     }
1763   } else {
1764     /* else we try to get a factory */
1765     const char *arg = argv[argc - 1];
1766     int retval = -1;
1767
1768     if (!plugin_name) {
1769       retval = print_feature_info (arg, print_all);
1770     }
1771
1772     /* otherwise check if it's a plugin */
1773     if (retval) {
1774       GstPlugin *plugin = gst_registry_find_plugin (gst_registry_get (), arg);
1775
1776       /* if there is such a plugin, print out info */
1777       if (plugin) {
1778         if (print_aii) {
1779           print_plugin_automatic_install_info (plugin);
1780         } else {
1781           print_plugin_info (plugin);
1782           print_plugin_features (plugin);
1783         }
1784       } else {
1785         GError *error = NULL;
1786
1787         if (g_file_test (arg, G_FILE_TEST_EXISTS)) {
1788           plugin = gst_plugin_load_file (arg, &error);
1789
1790           if (plugin) {
1791             if (print_aii) {
1792               print_plugin_automatic_install_info (plugin);
1793             } else {
1794               print_plugin_info (plugin);
1795               print_plugin_features (plugin);
1796             }
1797           } else {
1798             g_printerr (_("Could not load plugin file: %s\n"), error->message);
1799             g_clear_error (&error);
1800             return -1;
1801           }
1802         } else {
1803           g_printerr (_("No such element or plugin '%s'\n"), arg);
1804           return -1;
1805         }
1806       }
1807     }
1808   }
1809
1810   return 0;
1811 }