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