pad: make an ACCEPT_CAPS query
[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     }
335     if (param->flags & G_PARAM_WRITABLE) {
336       g_print ("%s%s", (first_flag) ? "" : ", ", _("writable"));
337       first_flag = FALSE;
338     }
339     if (param->flags & GST_PARAM_CONTROLLABLE) {
340       g_print (", %s", _("controllable"));
341       first_flag = FALSE;
342     }
343     if (param->flags & GST_PARAM_MUTABLE_PLAYING) {
344       g_print (", %s", _("changeable in NULL, READY, PAUSED or PLAYING state"));
345     } else if (param->flags & GST_PARAM_MUTABLE_PAUSED) {
346       g_print (", %s", _("changeable only in NULL, READY or PAUSED state"));
347     } else if (param->flags & GST_PARAM_MUTABLE_READY) {
348       g_print (", %s", _("changeable only in NULL or READY state"));
349     }
350     if (param->flags & ~KNOWN_PARAM_FLAGS) {
351       g_print ("%s0x%0x", (first_flag) ? "" : ", ",
352           param->flags & ~KNOWN_PARAM_FLAGS);
353     }
354     n_print ("\n");
355
356     switch (G_VALUE_TYPE (&value)) {
357       case G_TYPE_STRING:
358       {
359         GParamSpecString *pstring = G_PARAM_SPEC_STRING (param);
360
361         n_print ("%-23.23s String. ", "");
362
363         if (pstring->default_value == NULL)
364           g_print ("Default: null ");
365         else
366           g_print ("Default: \"%s\" ", pstring->default_value);
367
368         if (readable) {
369           const char *string_val = g_value_get_string (&value);
370
371           if (string_val == NULL)
372             g_print ("Current: null");
373           else
374             g_print ("Current: \"%s\"", string_val);
375         }
376         break;
377       }
378       case G_TYPE_BOOLEAN:
379       {
380         GParamSpecBoolean *pboolean = G_PARAM_SPEC_BOOLEAN (param);
381
382         n_print ("%-23.23s Boolean. ", "");
383         g_print ("Default: %s ", (pboolean->default_value ? "true" : "false"));
384         if (readable)
385           g_print ("Current: %s",
386               (g_value_get_boolean (&value) ? "true" : "false"));
387         break;
388       }
389       case G_TYPE_ULONG:
390       {
391         GParamSpecULong *pulong = G_PARAM_SPEC_ULONG (param);
392
393         n_print ("%-23.23s Unsigned Long. ", "");
394         g_print ("Range: %lu - %lu Default: %lu ",
395             pulong->minimum, pulong->maximum, pulong->default_value);
396         if (readable)
397           g_print ("Current: %lu", g_value_get_ulong (&value));
398         break;
399       }
400       case G_TYPE_LONG:
401       {
402         GParamSpecLong *plong = G_PARAM_SPEC_LONG (param);
403
404         n_print ("%-23.23s Long. ", "");
405         g_print ("Range: %ld - %ld Default: %ld ",
406             plong->minimum, plong->maximum, plong->default_value);
407         if (readable)
408           g_print ("Current: %ld", g_value_get_long (&value));
409         break;
410       }
411       case G_TYPE_UINT:
412       {
413         GParamSpecUInt *puint = G_PARAM_SPEC_UINT (param);
414
415         n_print ("%-23.23s Unsigned Integer. ", "");
416         g_print ("Range: %u - %u Default: %u ",
417             puint->minimum, puint->maximum, puint->default_value);
418         if (readable)
419           g_print ("Current: %u", g_value_get_uint (&value));
420         break;
421       }
422       case G_TYPE_INT:
423       {
424         GParamSpecInt *pint = G_PARAM_SPEC_INT (param);
425
426         n_print ("%-23.23s Integer. ", "");
427         g_print ("Range: %d - %d Default: %d ",
428             pint->minimum, pint->maximum, pint->default_value);
429         if (readable)
430           g_print ("Current: %d", g_value_get_int (&value));
431         break;
432       }
433       case G_TYPE_UINT64:
434       {
435         GParamSpecUInt64 *puint64 = G_PARAM_SPEC_UINT64 (param);
436
437         n_print ("%-23.23s Unsigned Integer64. ", "");
438         g_print ("Range: %" G_GUINT64_FORMAT " - %" G_GUINT64_FORMAT
439             " Default: %" G_GUINT64_FORMAT " ",
440             puint64->minimum, puint64->maximum, puint64->default_value);
441         if (readable)
442           g_print ("Current: %" G_GUINT64_FORMAT, g_value_get_uint64 (&value));
443         break;
444       }
445       case G_TYPE_INT64:
446       {
447         GParamSpecInt64 *pint64 = G_PARAM_SPEC_INT64 (param);
448
449         n_print ("%-23.23s Integer64. ", "");
450         g_print ("Range: %" G_GINT64_FORMAT " - %" G_GINT64_FORMAT
451             " Default: %" G_GINT64_FORMAT " ",
452             pint64->minimum, pint64->maximum, pint64->default_value);
453         if (readable)
454           g_print ("Current: %" G_GINT64_FORMAT, g_value_get_int64 (&value));
455         break;
456       }
457       case G_TYPE_FLOAT:
458       {
459         GParamSpecFloat *pfloat = G_PARAM_SPEC_FLOAT (param);
460
461         n_print ("%-23.23s Float. ", "");
462         g_print ("Range: %15.7g - %15.7g Default: %15.7g ",
463             pfloat->minimum, pfloat->maximum, pfloat->default_value);
464         if (readable)
465           g_print ("Current: %15.7g", g_value_get_float (&value));
466         break;
467       }
468       case G_TYPE_DOUBLE:
469       {
470         GParamSpecDouble *pdouble = G_PARAM_SPEC_DOUBLE (param);
471
472         n_print ("%-23.23s Double. ", "");
473         g_print ("Range: %15.7g - %15.7g Default: %15.7g ",
474             pdouble->minimum, pdouble->maximum, pdouble->default_value);
475         if (readable)
476           g_print ("Current: %15.7g", g_value_get_double (&value));
477         break;
478       }
479       default:
480         if (param->value_type == GST_TYPE_CAPS) {
481           const GstCaps *caps = gst_value_get_caps (&value);
482
483           if (!caps)
484             n_print ("%-23.23s Caps (NULL)", "");
485           else {
486             print_caps (caps, "                           ");
487           }
488         } else if (G_IS_PARAM_SPEC_ENUM (param)) {
489           GParamSpecEnum *penum = G_PARAM_SPEC_ENUM (param);
490           GEnumValue *values;
491           guint j = 0;
492           gint enum_value;
493           const gchar *def_val_nick = "", *cur_val_nick = "";
494
495           values = G_ENUM_CLASS (g_type_class_ref (param->value_type))->values;
496           enum_value = g_value_get_enum (&value);
497
498           while (values[j].value_name) {
499             if (values[j].value == enum_value)
500               cur_val_nick = values[j].value_nick;
501             if (values[j].value == penum->default_value)
502               def_val_nick = values[j].value_nick;
503             j++;
504           }
505
506           n_print
507               ("%-23.23s Enum \"%s\" Default: %d, \"%s\" Current: %d, \"%s\"",
508               "", g_type_name (G_VALUE_TYPE (&value)), penum->default_value,
509               def_val_nick, enum_value, cur_val_nick);
510
511           j = 0;
512           while (values[j].value_name) {
513             g_print ("\n");
514             if (_name)
515               g_print ("%s", _name);
516             g_print ("%-23.23s    (%d): %-16s - %s", "",
517                 values[j].value, values[j].value_nick, values[j].value_name);
518             j++;
519           }
520           /* g_type_class_unref (ec); */
521         } else if (G_IS_PARAM_SPEC_FLAGS (param)) {
522           GParamSpecFlags *pflags = G_PARAM_SPEC_FLAGS (param);
523           GFlagsValue *vals;
524           gchar *cur, *def;
525
526           vals = pflags->flags_class->values;
527
528           cur = flags_to_string (vals, g_value_get_flags (&value));
529           def = flags_to_string (vals, pflags->default_value);
530
531           n_print
532               ("%-23.23s Flags \"%s\" Default: 0x%08x, \"%s\" Current: 0x%08x, \"%s\"",
533               "", g_type_name (G_VALUE_TYPE (&value)), pflags->default_value,
534               def, g_value_get_flags (&value), cur);
535
536           while (vals[0].value_name) {
537             g_print ("\n");
538             if (_name)
539               g_print ("%s", _name);
540             g_print ("%-23.23s    (0x%08x): %-16s - %s", "",
541                 vals[0].value, vals[0].value_nick, vals[0].value_name);
542             ++vals;
543           }
544
545           g_free (cur);
546           g_free (def);
547         } else if (G_IS_PARAM_SPEC_OBJECT (param)) {
548           n_print ("%-23.23s Object of type \"%s\"", "",
549               g_type_name (param->value_type));
550         } else if (G_IS_PARAM_SPEC_BOXED (param)) {
551           n_print ("%-23.23s Boxed pointer of type \"%s\"", "",
552               g_type_name (param->value_type));
553         } else if (G_IS_PARAM_SPEC_POINTER (param)) {
554           if (param->value_type != G_TYPE_POINTER) {
555             n_print ("%-23.23s Pointer of type \"%s\".", "",
556                 g_type_name (param->value_type));
557           } else {
558             n_print ("%-23.23s Pointer.", "");
559           }
560         } else if (param->value_type == G_TYPE_VALUE_ARRAY) {
561           GParamSpecValueArray *pvarray = G_PARAM_SPEC_VALUE_ARRAY (param);
562
563           if (pvarray->element_spec) {
564             n_print ("%-23.23s Array of GValues of type \"%s\"", "",
565                 g_type_name (pvarray->element_spec->value_type));
566           } else {
567             n_print ("%-23.23s Array of GValues", "");
568           }
569         } else if (GST_IS_PARAM_SPEC_FRACTION (param)) {
570           GstParamSpecFraction *pfraction = GST_PARAM_SPEC_FRACTION (param);
571
572           n_print ("%-23.23s Fraction. ", "");
573
574           g_print ("Range: %d/%d - %d/%d Default: %d/%d ",
575               pfraction->min_num, pfraction->min_den,
576               pfraction->max_num, pfraction->max_den,
577               pfraction->def_num, pfraction->def_den);
578           if (readable)
579             g_print ("Current: %d/%d",
580                 gst_value_get_fraction_numerator (&value),
581                 gst_value_get_fraction_denominator (&value));
582
583         } else {
584           n_print ("%-23.23s Unknown type %ld \"%s\"", "", param->value_type,
585               g_type_name (param->value_type));
586         }
587         break;
588     }
589     if (!readable)
590       g_print (" Write only\n");
591     else
592       g_print ("\n");
593
594     g_value_reset (&value);
595   }
596   if (num_properties == 0)
597     n_print ("  none\n");
598
599   g_free (property_specs);
600 }
601
602 static void
603 print_pad_templates_info (GstElement * element, GstElementFactory * factory)
604 {
605   GstElementClass *gstelement_class;
606   const GList *pads;
607   GstStaticPadTemplate *padtemplate;
608
609   n_print ("Pad Templates:\n");
610   if (!factory->numpadtemplates) {
611     n_print ("  none\n");
612     return;
613   }
614
615   gstelement_class = GST_ELEMENT_CLASS (G_OBJECT_GET_CLASS (element));
616
617   pads = factory->staticpadtemplates;
618   while (pads) {
619     padtemplate = (GstStaticPadTemplate *) (pads->data);
620     pads = g_list_next (pads);
621
622     if (padtemplate->direction == GST_PAD_SRC)
623       n_print ("  SRC template: '%s'\n", padtemplate->name_template);
624     else if (padtemplate->direction == GST_PAD_SINK)
625       n_print ("  SINK template: '%s'\n", padtemplate->name_template);
626     else
627       n_print ("  UNKNOWN!!! template: '%s'\n", padtemplate->name_template);
628
629     if (padtemplate->presence == GST_PAD_ALWAYS)
630       n_print ("    Availability: Always\n");
631     else if (padtemplate->presence == GST_PAD_SOMETIMES)
632       n_print ("    Availability: Sometimes\n");
633     else if (padtemplate->presence == GST_PAD_REQUEST) {
634       n_print ("    Availability: On request\n");
635       n_print ("      Has request_new_pad() function: %s\n",
636           GST_DEBUG_FUNCPTR_NAME (gstelement_class->request_new_pad));
637     } else
638       n_print ("    Availability: UNKNOWN!!!\n");
639
640     if (padtemplate->static_caps.string) {
641       n_print ("    Capabilities:\n");
642       print_caps (gst_static_caps_get (&padtemplate->static_caps), "      ");
643     }
644
645     n_print ("\n");
646   }
647 }
648
649 static void
650 print_element_flag_info (GstElement * element)
651 {
652   gboolean have_flags = FALSE;
653
654   n_print ("\n");
655   n_print ("Element Flags:\n");
656
657   if (!have_flags)
658     n_print ("  no flags set\n");
659
660   if (GST_IS_BIN (element)) {
661     n_print ("\n");
662     n_print ("Bin Flags:\n");
663     if (!have_flags)
664       n_print ("  no flags set\n");
665   }
666 }
667
668 static void
669 print_implementation_info (GstElement * element)
670 {
671   GstElementClass *gstelement_class;
672
673   gstelement_class = GST_ELEMENT_CLASS (G_OBJECT_GET_CLASS (element));
674
675   n_print ("\n");
676   n_print ("Element Implementation:\n");
677
678   n_print ("  Has change_state() function: %s\n",
679       GST_DEBUG_FUNCPTR_NAME (gstelement_class->change_state));
680 }
681
682 static void
683 print_clocking_info (GstElement * element)
684 {
685   if (!gst_element_requires_clock (element) &&
686       !(gst_element_provides_clock (element) &&
687           gst_element_get_clock (element))) {
688     n_print ("\n");
689     n_print ("Element has no clocking capabilities.");
690     return;
691   }
692
693   n_print ("\n");
694   n_print ("Clocking Interaction:\n");
695   if (gst_element_requires_clock (element)) {
696     n_print ("  element requires a clock\n");
697   }
698
699   if (gst_element_provides_clock (element)) {
700     GstClock *clock;
701
702     clock = gst_element_get_clock (element);
703     if (clock)
704       n_print ("  element provides a clock: %s\n", GST_OBJECT_NAME (clock));
705     else
706       n_print ("  element is supposed to provide a clock but returned NULL\n");
707   }
708 }
709
710 static void
711 print_index_info (GstElement * element)
712 {
713   if (gst_element_is_indexable (element)) {
714     n_print ("\n");
715     n_print ("Indexing capabilities:\n");
716     n_print ("  element can do indexing\n");
717   } else {
718     n_print ("\n");
719     n_print ("Element has no indexing capabilities.\n");
720   }
721 }
722
723 static void
724 print_uri_handler_info (GstElement * element)
725 {
726   if (GST_IS_URI_HANDLER (element)) {
727     const gchar *uri_type;
728     gchar **uri_protocols;
729
730     if (gst_uri_handler_get_uri_type (GST_URI_HANDLER (element)) == GST_URI_SRC)
731       uri_type = "source";
732     else if (gst_uri_handler_get_uri_type (GST_URI_HANDLER (element)) ==
733         GST_URI_SINK)
734       uri_type = "sink";
735     else
736       uri_type = "unknown";
737
738     uri_protocols = gst_uri_handler_get_protocols (GST_URI_HANDLER (element));
739
740     n_print ("\n");
741     n_print ("URI handling capabilities:\n");
742     n_print ("  Element can act as %s.\n", uri_type);
743
744     if (uri_protocols && *uri_protocols) {
745       n_print ("  Supported URI protocols:\n");
746       for (; *uri_protocols != NULL; uri_protocols++)
747         n_print ("    %s\n", *uri_protocols);
748     } else {
749       n_print ("  No supported URI protocols\n");
750     }
751   } else {
752     n_print ("Element has no URI handling capabilities.\n");
753   }
754 }
755
756 static void
757 print_pad_info (GstElement * element)
758 {
759   const GList *pads;
760   GstPad *pad;
761
762   n_print ("\n");
763   n_print ("Pads:\n");
764
765   if (!element->numpads) {
766     n_print ("  none\n");
767     return;
768   }
769
770   pads = element->pads;
771   while (pads) {
772     gchar *name;
773     GstCaps *caps;
774
775     pad = GST_PAD (pads->data);
776     pads = g_list_next (pads);
777
778     n_print ("");
779
780     name = gst_pad_get_name (pad);
781     if (gst_pad_get_direction (pad) == GST_PAD_SRC)
782       g_print ("  SRC: '%s'", name);
783     else if (gst_pad_get_direction (pad) == GST_PAD_SINK)
784       g_print ("  SINK: '%s'", name);
785     else
786       g_print ("  UNKNOWN!!!: '%s'", name);
787
788     g_free (name);
789
790     g_print ("\n");
791
792     n_print ("    Implementation:\n");
793     if (pad->chainfunc)
794       n_print ("      Has chainfunc(): %s\n",
795           GST_DEBUG_FUNCPTR_NAME (pad->chainfunc));
796     if (pad->getrangefunc)
797       n_print ("      Has getrangefunc(): %s\n",
798           GST_DEBUG_FUNCPTR_NAME (pad->getrangefunc));
799     if (pad->eventfunc != gst_pad_event_default)
800       n_print ("      Has custom eventfunc(): %s\n",
801           GST_DEBUG_FUNCPTR_NAME (pad->eventfunc));
802     if (pad->queryfunc != gst_pad_query_default)
803       n_print ("      Has custom queryfunc(): %s\n",
804           GST_DEBUG_FUNCPTR_NAME (pad->queryfunc));
805
806     if (pad->iterintlinkfunc != gst_pad_iterate_internal_links_default)
807       n_print ("      Has custom iterintlinkfunc(): %s\n",
808           GST_DEBUG_FUNCPTR_NAME (pad->iterintlinkfunc));
809
810     if (pad->getcapsfunc)
811       n_print ("      Has getcapsfunc(): %s\n",
812           GST_DEBUG_FUNCPTR_NAME (pad->getcapsfunc));
813     if (pad->fixatecapsfunc)
814       n_print ("      Has fixatecapsfunc(): %s\n",
815           GST_DEBUG_FUNCPTR_NAME (pad->fixatecapsfunc));
816
817
818     if (pad->padtemplate)
819       n_print ("    Pad Template: '%s'\n", pad->padtemplate->name_template);
820
821     caps = gst_pad_get_current_caps (pad);
822     if (caps) {
823       n_print ("    Capabilities:\n");
824       print_caps (caps, "      ");
825       gst_caps_unref (caps);
826     }
827   }
828 }
829
830 static gboolean
831 has_sometimes_template (GstElement * element)
832 {
833   GstElementClass *klass = GST_ELEMENT_GET_CLASS (element);
834   GList *l;
835
836   for (l = klass->padtemplates; l != NULL; l = l->next) {
837     if (GST_PAD_TEMPLATE (l->data)->presence == GST_PAD_SOMETIMES)
838       return TRUE;
839   }
840
841   return FALSE;
842 }
843
844 static void
845 print_signal_info (GstElement * element)
846 {
847   /* Signals/Actions Block */
848   guint *signals;
849   guint nsignals;
850   gint i = 0, j, k;
851   GSignalQuery *query = NULL;
852   GType type;
853   GSList *found_signals, *l;
854
855   for (k = 0; k < 2; k++) {
856     found_signals = NULL;
857
858     /* For elements that have sometimes pads, also list a few useful GstElement
859      * signals. Put these first, so element-specific ones come later. */
860     if (k == 0 && has_sometimes_template (element)) {
861       query = g_new0 (GSignalQuery, 1);
862       g_signal_query (g_signal_lookup ("pad-added", GST_TYPE_ELEMENT), query);
863       found_signals = g_slist_append (found_signals, query);
864       query = g_new0 (GSignalQuery, 1);
865       g_signal_query (g_signal_lookup ("pad-removed", GST_TYPE_ELEMENT), query);
866       found_signals = g_slist_append (found_signals, query);
867       query = g_new0 (GSignalQuery, 1);
868       g_signal_query (g_signal_lookup ("no-more-pads", GST_TYPE_ELEMENT),
869           query);
870       found_signals = g_slist_append (found_signals, query);
871     }
872
873     for (type = G_OBJECT_TYPE (element); type; type = g_type_parent (type)) {
874       if (type == GST_TYPE_ELEMENT || type == GST_TYPE_OBJECT)
875         break;
876
877       if (type == GST_TYPE_BIN && G_OBJECT_TYPE (element) != GST_TYPE_BIN)
878         continue;
879
880       signals = g_signal_list_ids (type, &nsignals);
881       for (i = 0; i < nsignals; i++) {
882         query = g_new0 (GSignalQuery, 1);
883         g_signal_query (signals[i], query);
884
885         if ((k == 0 && !(query->signal_flags & G_SIGNAL_ACTION)) ||
886             (k == 1 && (query->signal_flags & G_SIGNAL_ACTION)))
887           found_signals = g_slist_append (found_signals, query);
888         else
889           g_free (query);
890       }
891       g_free (signals);
892       signals = NULL;
893     }
894
895     if (found_signals) {
896       n_print ("\n");
897       if (k == 0)
898         n_print ("Element Signals:\n");
899       else
900         n_print ("Element Actions:\n");
901     } else {
902       continue;
903     }
904
905     for (l = found_signals; l; l = l->next) {
906       gchar *indent;
907       int indent_len;
908
909       query = (GSignalQuery *) l->data;
910       indent_len = strlen (query->signal_name) +
911           strlen (g_type_name (query->return_type)) + 24;
912
913       indent = g_new0 (gchar, indent_len + 1);
914       memset (indent, ' ', indent_len);
915
916       n_print ("  \"%s\" :  %s user_function (%s* object",
917           query->signal_name,
918           g_type_name (query->return_type), g_type_name (type));
919
920       for (j = 0; j < query->n_params; j++) {
921         if (_name)
922           g_print ("%s", _name);
923         if (G_TYPE_IS_FUNDAMENTAL (query->param_types[j])) {
924           g_print (",\n%s%s arg%d", indent,
925               g_type_name (query->param_types[j]), j);
926         } else if (G_TYPE_IS_ENUM (query->param_types[j])) {
927           g_print (",\n%s%s arg%d", indent,
928               g_type_name (query->param_types[j]), j);
929         } else {
930           g_print (",\n%s%s* arg%d", indent,
931               g_type_name (query->param_types[j]), j);
932         }
933       }
934
935       if (k == 0) {
936         if (_name)
937           g_print ("%s", _name);
938         g_print (",\n%sgpointer user_data);\n", indent);
939       } else
940         g_print (");\n");
941
942       g_free (indent);
943     }
944
945     if (found_signals) {
946       g_slist_foreach (found_signals, (GFunc) g_free, NULL);
947       g_slist_free (found_signals);
948     }
949   }
950 }
951
952 static void
953 print_children_info (GstElement * element)
954 {
955   GList *children;
956
957   if (!GST_IS_BIN (element))
958     return;
959
960   children = (GList *) GST_BIN (element)->children;
961   if (children) {
962     n_print ("\n");
963     g_print ("Children:\n");
964   }
965
966   while (children) {
967     n_print ("  %s\n", GST_ELEMENT_NAME (GST_ELEMENT (children->data)));
968     children = g_list_next (children);
969   }
970 }
971
972 static void
973 print_blacklist (void)
974 {
975   GList *plugins, *cur;
976   gint count = 0;
977
978   g_print ("%s\n", _("Blacklisted files:"));
979
980   plugins = gst_default_registry_get_plugin_list ();
981   for (cur = plugins; cur != NULL; cur = g_list_next (cur)) {
982     GstPlugin *plugin = (GstPlugin *) (cur->data);
983     if (plugin->flags & GST_PLUGIN_FLAG_BLACKLISTED) {
984       g_print ("  %s\n", plugin->desc.name);
985       count++;
986     }
987   }
988
989   g_print ("\n");
990   g_print (_("Total count: "));
991   g_print (ngettext ("%d blacklisted file", "%d blacklisted files", count),
992       count);
993   g_print ("\n");
994   gst_plugin_list_free (plugins);
995 }
996
997 static void
998 print_element_list (gboolean print_all)
999 {
1000   int plugincount = 0, featurecount = 0, blacklistcount = 0;
1001   GList *plugins, *orig_plugins;
1002
1003   orig_plugins = plugins = gst_default_registry_get_plugin_list ();
1004   while (plugins) {
1005     GList *features, *orig_features;
1006     GstPlugin *plugin;
1007
1008     plugin = (GstPlugin *) (plugins->data);
1009     plugins = g_list_next (plugins);
1010     plugincount++;
1011
1012     if (plugin->flags & GST_PLUGIN_FLAG_BLACKLISTED) {
1013       blacklistcount++;
1014       continue;
1015     }
1016
1017     orig_features = features =
1018         gst_registry_get_feature_list_by_plugin (gst_registry_get_default (),
1019         plugin->desc.name);
1020     while (features) {
1021       GstPluginFeature *feature;
1022
1023       if (G_UNLIKELY (features->data == NULL))
1024         goto next;
1025       feature = GST_PLUGIN_FEATURE (features->data);
1026       featurecount++;
1027
1028       if (GST_IS_ELEMENT_FACTORY (feature)) {
1029         GstElementFactory *factory;
1030
1031         factory = GST_ELEMENT_FACTORY (feature);
1032         if (print_all)
1033           print_element_info (factory, TRUE);
1034         else
1035           g_print ("%s:  %s: %s\n", plugin->desc.name,
1036               GST_OBJECT_NAME (factory),
1037               gst_element_factory_get_longname (factory));
1038       } else if (GST_IS_INDEX_FACTORY (feature)) {
1039         GstIndexFactory *factory;
1040
1041         factory = GST_INDEX_FACTORY (feature);
1042         if (!print_all)
1043           g_print ("%s:  %s: %s\n", plugin->desc.name,
1044               GST_OBJECT_NAME (factory), factory->longdesc);
1045       } else if (GST_IS_TYPE_FIND_FACTORY (feature)) {
1046         GstTypeFindFactory *factory;
1047
1048         factory = GST_TYPE_FIND_FACTORY (feature);
1049         if (!print_all)
1050           g_print ("%s: %s: ", plugin->desc.name,
1051               gst_plugin_feature_get_name (feature));
1052         if (factory->extensions) {
1053           guint i = 0;
1054
1055           while (factory->extensions[i]) {
1056             if (!print_all)
1057               g_print ("%s%s", i > 0 ? ", " : "", factory->extensions[i]);
1058             i++;
1059           }
1060           if (!print_all)
1061             g_print ("\n");
1062         } else {
1063           if (!print_all)
1064             g_print ("no extensions\n");
1065         }
1066       } else {
1067         if (!print_all)
1068           n_print ("%s:  %s (%s)\n", plugin->desc.name,
1069               GST_OBJECT_NAME (feature), g_type_name (G_OBJECT_TYPE (feature)));
1070       }
1071
1072     next:
1073       features = g_list_next (features);
1074     }
1075
1076     gst_plugin_feature_list_free (orig_features);
1077   }
1078
1079   gst_plugin_list_free (orig_plugins);
1080
1081   g_print ("\n");
1082   g_print (_("Total count: "));
1083   g_print (ngettext ("%d plugin", "%d plugins", plugincount), plugincount);
1084   if (blacklistcount) {
1085     g_print (" (");
1086     g_print (ngettext ("%d blacklist entry", "%d blacklist entries",
1087             blacklistcount), blacklistcount);
1088     g_print (" not shown)");
1089   }
1090   g_print (", ");
1091   g_print (ngettext ("%d feature", "%d features", featurecount), featurecount);
1092   g_print ("\n");
1093 }
1094
1095 static void
1096 print_all_uri_handlers (void)
1097 {
1098   GList *plugins, *p, *features, *f;
1099
1100   plugins = gst_default_registry_get_plugin_list ();
1101
1102   for (p = plugins; p; p = p->next) {
1103     GstPlugin *plugin = (GstPlugin *) (p->data);
1104
1105     features =
1106         gst_registry_get_feature_list_by_plugin (gst_registry_get_default (),
1107         plugin->desc.name);
1108
1109     for (f = features; f; f = f->next) {
1110       GstPluginFeature *feature = GST_PLUGIN_FEATURE (f->data);
1111
1112       if (GST_IS_ELEMENT_FACTORY (feature)) {
1113         GstElementFactory *factory;
1114         GstElement *element;
1115
1116         factory = GST_ELEMENT_FACTORY (gst_plugin_feature_load (feature));
1117         if (!factory) {
1118           g_print ("element plugin %s couldn't be loaded\n", plugin->desc.name);
1119           continue;
1120         }
1121
1122         element = gst_element_factory_create (factory, NULL);
1123         if (!element) {
1124           g_print ("couldn't construct element for %s for some reason\n",
1125               GST_OBJECT_NAME (factory));
1126           gst_object_unref (factory);
1127           continue;
1128         }
1129
1130         if (GST_IS_URI_HANDLER (element)) {
1131           const gchar *dir;
1132           gchar **uri_protocols, *joined;
1133
1134           switch (gst_uri_handler_get_uri_type (GST_URI_HANDLER (element))) {
1135             case GST_URI_SRC:
1136               dir = "read";
1137               break;
1138             case GST_URI_SINK:
1139               dir = "write";
1140               break;
1141             default:
1142               dir = "unknown";
1143               break;
1144           }
1145
1146           uri_protocols =
1147               gst_uri_handler_get_protocols (GST_URI_HANDLER (element));
1148           joined = g_strjoinv (", ", uri_protocols);
1149
1150           g_print ("%s (%s, rank %u): %s\n",
1151               gst_plugin_feature_get_name (GST_PLUGIN_FEATURE (factory)), dir,
1152               gst_plugin_feature_get_rank (GST_PLUGIN_FEATURE (factory)),
1153               joined);
1154
1155           g_free (joined);
1156         }
1157
1158         gst_object_unref (element);
1159         gst_object_unref (factory);
1160       }
1161     }
1162
1163     gst_plugin_feature_list_free (features);
1164   }
1165
1166   gst_plugin_list_free (plugins);
1167 }
1168
1169 static void
1170 print_plugin_info (GstPlugin * plugin)
1171 {
1172   n_print ("Plugin Details:\n");
1173   n_print ("  Name:\t\t\t%s\n", plugin->desc.name);
1174   n_print ("  Description:\t\t%s\n", plugin->desc.description);
1175   n_print ("  Filename:\t\t%s\n",
1176       plugin->filename ? plugin->filename : "(null)");
1177   n_print ("  Version:\t\t%s\n", plugin->desc.version);
1178   n_print ("  License:\t\t%s\n", plugin->desc.license);
1179   n_print ("  Source module:\t%s\n", plugin->desc.source);
1180   if (plugin->desc.release_datetime != NULL) {
1181     const gchar *tz = "(UTC)";
1182     gchar *str, *sep;
1183
1184     /* may be: YYYY-MM-DD or YYYY-MM-DDTHH:MMZ */
1185     /* YYYY-MM-DDTHH:MMZ => YYYY-MM-DD HH:MM (UTC) */
1186     str = g_strdup (plugin->desc.release_datetime);
1187     sep = strstr (str, "T");
1188     if (sep != NULL) {
1189       *sep = ' ';
1190       sep = strstr (sep + 1, "Z");
1191       if (sep != NULL)
1192         *sep = ' ';
1193     } else {
1194       tz = "";
1195     }
1196     n_print ("  Source release date:\t%s%s\n", str, tz);
1197     g_free (str);
1198   }
1199   n_print ("  Binary package:\t%s\n", plugin->desc.package);
1200   n_print ("  Origin URL:\t\t%s\n", plugin->desc.origin);
1201   n_print ("\n");
1202 }
1203
1204 static void
1205 print_plugin_features (GstPlugin * plugin)
1206 {
1207   GList *features, *origlist;
1208   gint num_features = 0;
1209   gint num_elements = 0;
1210   gint num_typefinders = 0;
1211   gint num_indexes = 0;
1212   gint num_other = 0;
1213
1214   origlist = features =
1215       gst_registry_get_feature_list_by_plugin (gst_registry_get_default (),
1216       plugin->desc.name);
1217
1218   while (features) {
1219     GstPluginFeature *feature;
1220
1221     feature = GST_PLUGIN_FEATURE (features->data);
1222
1223     if (GST_IS_ELEMENT_FACTORY (feature)) {
1224       GstElementFactory *factory;
1225
1226       factory = GST_ELEMENT_FACTORY (feature);
1227       n_print ("  %s: %s\n", GST_OBJECT_NAME (factory),
1228           gst_element_factory_get_longname (factory));
1229       num_elements++;
1230     } else if (GST_IS_INDEX_FACTORY (feature)) {
1231       GstIndexFactory *factory;
1232
1233       factory = GST_INDEX_FACTORY (feature);
1234       n_print ("  %s: %s\n", GST_OBJECT_NAME (factory), factory->longdesc);
1235       num_indexes++;
1236     } else if (GST_IS_TYPE_FIND_FACTORY (feature)) {
1237       GstTypeFindFactory *factory;
1238
1239       factory = GST_TYPE_FIND_FACTORY (feature);
1240       if (factory->extensions) {
1241         guint i = 0;
1242
1243         g_print ("%s: %s: ", plugin->desc.name,
1244             gst_plugin_feature_get_name (feature));
1245         while (factory->extensions[i]) {
1246           g_print ("%s%s", i > 0 ? ", " : "", factory->extensions[i]);
1247           i++;
1248         }
1249         g_print ("\n");
1250       } else
1251         g_print ("%s: %s: no extensions\n", plugin->desc.name,
1252             gst_plugin_feature_get_name (feature));
1253
1254       num_typefinders++;
1255     } else if (feature) {
1256       n_print ("  %s (%s)\n", gst_object_get_name (GST_OBJECT (feature)),
1257           g_type_name (G_OBJECT_TYPE (feature)));
1258       num_other++;
1259     }
1260     num_features++;
1261     features = g_list_next (features);
1262   }
1263
1264   gst_plugin_feature_list_free (origlist);
1265
1266   n_print ("\n");
1267   n_print ("  %d features:\n", num_features);
1268   if (num_elements > 0)
1269     n_print ("  +-- %d elements\n", num_elements);
1270   if (num_typefinders > 0)
1271     n_print ("  +-- %d typefinders\n", num_typefinders);
1272   if (num_indexes > 0)
1273     n_print ("  +-- %d indexes\n", num_indexes);
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_element_features (const gchar * element_name)
1282 {
1283   GstPluginFeature *feature;
1284
1285   /* FIXME implement other pretty print function for these */
1286   feature = gst_default_registry_find_feature (element_name,
1287       GST_TYPE_INDEX_FACTORY);
1288   if (feature) {
1289     n_print ("%s: an index\n", element_name);
1290     return 0;
1291   }
1292   feature = gst_default_registry_find_feature (element_name,
1293       GST_TYPE_TYPE_FIND_FACTORY);
1294   if (feature) {
1295     n_print ("%s: a typefind function\n", element_name);
1296     return 0;
1297   }
1298
1299   return -1;
1300 }
1301
1302 static int
1303 print_element_info (GstElementFactory * factory, gboolean print_names)
1304 {
1305   GstElement *element;
1306   gint maxlevel = 0;
1307
1308   factory =
1309       GST_ELEMENT_FACTORY (gst_plugin_feature_load (GST_PLUGIN_FEATURE
1310           (factory)));
1311
1312   if (!factory) {
1313     g_print ("element plugin couldn't be loaded\n");
1314     return -1;
1315   }
1316
1317   element = gst_element_factory_create (factory, NULL);
1318   if (!element) {
1319     g_print ("couldn't construct element for some reason\n");
1320     return -1;
1321   }
1322
1323   if (print_names)
1324     _name = g_strdup_printf ("%s: ", GST_OBJECT_NAME (factory));
1325   else
1326     _name = NULL;
1327
1328   print_factory_details_info (factory);
1329   if (GST_PLUGIN_FEATURE (factory)->plugin_name) {
1330     GstPlugin *plugin;
1331
1332     plugin = gst_registry_find_plugin (gst_registry_get_default (),
1333         GST_PLUGIN_FEATURE (factory)->plugin_name);
1334     if (plugin) {
1335       print_plugin_info (plugin);
1336     }
1337   }
1338
1339   print_hierarchy (G_OBJECT_TYPE (element), 0, &maxlevel);
1340   print_interfaces (G_OBJECT_TYPE (element));
1341
1342   print_pad_templates_info (element, factory);
1343   print_element_flag_info (element);
1344   print_implementation_info (element);
1345   print_clocking_info (element);
1346   print_index_info (element);
1347   print_uri_handler_info (element);
1348   print_pad_info (element);
1349   print_element_properties_info (element);
1350   print_signal_info (element);
1351   print_children_info (element);
1352
1353   gst_object_unref (element);
1354   gst_object_unref (factory);
1355   g_free (_name);
1356
1357   return 0;
1358 }
1359
1360
1361 static void
1362 print_plugin_automatic_install_info_codecs (GstElementFactory * factory)
1363 {
1364   GstPadDirection direction;
1365   const gchar *type_name;
1366   const gchar *klass;
1367   const GList *static_templates, *l;
1368   GstCaps *caps = NULL;
1369   guint i, num;
1370
1371   klass = gst_element_factory_get_klass (factory);
1372   g_return_if_fail (klass != NULL);
1373
1374   if (strstr (klass, "Demuxer") ||
1375       strstr (klass, "Decoder") ||
1376       strstr (klass, "Depay") || strstr (klass, "Parser")) {
1377     type_name = "decoder";
1378     direction = GST_PAD_SINK;
1379   } else if (strstr (klass, "Muxer") ||
1380       strstr (klass, "Encoder") || strstr (klass, "Pay")) {
1381     type_name = "encoder";
1382     direction = GST_PAD_SRC;
1383   } else {
1384     return;
1385   }
1386
1387   /* decoder/demuxer sink pads should always be static and there should only
1388    * be one, the same applies to encoders/muxers and source pads */
1389   static_templates = gst_element_factory_get_static_pad_templates (factory);
1390   for (l = static_templates; l != NULL; l = l->next) {
1391     GstStaticPadTemplate *tmpl = NULL;
1392
1393     tmpl = (GstStaticPadTemplate *) l->data;
1394     if (tmpl->direction == direction) {
1395       caps = gst_static_pad_template_get_caps (tmpl);
1396       break;
1397     }
1398   }
1399
1400   if (caps == NULL) {
1401     g_printerr ("Couldn't find static pad template for %s '%s'\n",
1402         type_name, GST_OBJECT_NAME (factory));
1403     return;
1404   }
1405
1406   caps = gst_caps_make_writable (caps);
1407   num = gst_caps_get_size (caps);
1408   for (i = 0; i < num; ++i) {
1409     GstStructure *s;
1410     gchar *s_str;
1411
1412     s = gst_caps_get_structure (caps, i);
1413     /* remove fields that are almost always just MIN-MAX of some sort
1414      * in order to make the caps look less messy */
1415     gst_structure_remove_field (s, "pixel-aspect-ratio");
1416     gst_structure_remove_field (s, "framerate");
1417     gst_structure_remove_field (s, "channels");
1418     gst_structure_remove_field (s, "width");
1419     gst_structure_remove_field (s, "height");
1420     gst_structure_remove_field (s, "rate");
1421     gst_structure_remove_field (s, "depth");
1422     gst_structure_remove_field (s, "clock-rate");
1423     s_str = gst_structure_to_string (s);
1424     g_print ("%s-%s\n", type_name, s_str);
1425     g_free (s_str);
1426   }
1427   gst_caps_unref (caps);
1428 }
1429
1430 static void
1431 print_plugin_automatic_install_info_protocols (GstElementFactory * factory)
1432 {
1433   gchar **protocols, **p;
1434
1435   protocols = gst_element_factory_get_uri_protocols (factory);
1436   if (protocols != NULL && *protocols != NULL) {
1437     switch (gst_element_factory_get_uri_type (factory)) {
1438       case GST_URI_SINK:
1439         for (p = protocols; *p != NULL; ++p)
1440           g_print ("urisink-%s\n", *p);
1441         break;
1442       case GST_URI_SRC:
1443         for (p = protocols; *p != NULL; ++p)
1444           g_print ("urisource-%s\n", *p);
1445         break;
1446       default:
1447         break;
1448     }
1449     g_strfreev (protocols);
1450   }
1451 }
1452
1453 static void
1454 print_plugin_automatic_install_info (GstPlugin * plugin)
1455 {
1456   const gchar *plugin_name;
1457   GList *features, *l;
1458
1459   plugin_name = gst_plugin_get_name (plugin);
1460
1461   /* not interested in typefind factories, only element factories */
1462   features = gst_registry_get_feature_list (gst_registry_get_default (),
1463       GST_TYPE_ELEMENT_FACTORY);
1464
1465   for (l = features; l != NULL; l = l->next) {
1466     GstPluginFeature *feature;
1467
1468     feature = GST_PLUGIN_FEATURE (l->data);
1469
1470     /* only interested in the ones that are in the plugin we just loaded */
1471     if (g_str_equal (plugin_name, feature->plugin_name)) {
1472       GstElementFactory *factory;
1473
1474       g_print ("element-%s\n", gst_plugin_feature_get_name (feature));
1475
1476       factory = GST_ELEMENT_FACTORY (feature);
1477       print_plugin_automatic_install_info_protocols (factory);
1478       print_plugin_automatic_install_info_codecs (factory);
1479     }
1480   }
1481
1482   g_list_foreach (features, (GFunc) gst_object_unref, NULL);
1483   g_list_free (features);
1484 }
1485
1486 static void
1487 print_all_plugin_automatic_install_info (void)
1488 {
1489   GList *plugins, *orig_plugins;
1490
1491   orig_plugins = plugins = gst_default_registry_get_plugin_list ();
1492   while (plugins) {
1493     GstPlugin *plugin;
1494
1495     plugin = (GstPlugin *) (plugins->data);
1496     plugins = g_list_next (plugins);
1497
1498     print_plugin_automatic_install_info (plugin);
1499   }
1500   gst_plugin_list_free (orig_plugins);
1501 }
1502
1503 int
1504 main (int argc, char *argv[])
1505 {
1506   gboolean print_all = FALSE;
1507   gboolean do_print_blacklist = FALSE;
1508   gboolean plugin_name = FALSE;
1509   gboolean print_aii = FALSE;
1510   gboolean uri_handlers = FALSE;
1511 #ifndef GST_DISABLE_OPTION_PARSING
1512   GOptionEntry options[] = {
1513     {"print-all", 'a', 0, G_OPTION_ARG_NONE, &print_all,
1514         N_("Print all elements"), NULL},
1515     {"print-blacklist", 'b', 0, G_OPTION_ARG_NONE, &do_print_blacklist,
1516         N_("Print list of blacklisted files"), NULL},
1517     {"print-plugin-auto-install-info", '\0', 0, G_OPTION_ARG_NONE, &print_aii,
1518         N_("Print a machine-parsable list of features the specified plugin "
1519               "or all plugins provide.\n                                       "
1520               "Useful in connection with external automatic plugin "
1521               "installation mechanisms"), NULL},
1522     {"plugin", '\0', 0, G_OPTION_ARG_NONE, &plugin_name,
1523         N_("List the plugin contents"), NULL},
1524     {"uri-handlers", 'u', 0, G_OPTION_ARG_NONE, &uri_handlers,
1525           N_
1526           ("Print supported URI schemes, with the elements that implement them"),
1527         NULL},
1528     GST_TOOLS_GOPTION_VERSION,
1529     {NULL}
1530   };
1531   GOptionContext *ctx;
1532   GError *err = NULL;
1533 #endif
1534
1535 #ifdef ENABLE_NLS
1536   bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
1537   bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
1538   textdomain (GETTEXT_PACKAGE);
1539 #endif
1540
1541   g_thread_init (NULL);
1542
1543   gst_tools_set_prgname ("gst-inspect");
1544
1545 #ifndef GST_DISABLE_OPTION_PARSING
1546   ctx = g_option_context_new ("[ELEMENT-NAME | PLUGIN-NAME]");
1547   g_option_context_add_main_entries (ctx, options, GETTEXT_PACKAGE);
1548   g_option_context_add_group (ctx, gst_init_get_option_group ());
1549   if (!g_option_context_parse (ctx, &argc, &argv, &err)) {
1550     g_print ("Error initializing: %s\n", err->message);
1551     exit (1);
1552   }
1553   g_option_context_free (ctx);
1554 #else
1555   gst_init (&argc, &argv);
1556 #endif
1557
1558   gst_tools_print_version ("gst-inspect");
1559
1560   if (print_all && argc > 1) {
1561     g_print ("-a requires no extra arguments\n");
1562     return 1;
1563   }
1564
1565   if (uri_handlers && argc > 1) {
1566     g_print ("-u requires no extra arguments\n");
1567     exit (1);
1568   }
1569
1570   /* if no arguments, print out list of elements */
1571   if (uri_handlers) {
1572     print_all_uri_handlers ();
1573   } else if (argc == 1 || print_all) {
1574     if (do_print_blacklist)
1575       print_blacklist ();
1576     else {
1577       if (print_aii)
1578         print_all_plugin_automatic_install_info ();
1579       else
1580         print_element_list (print_all);
1581     }
1582   } else {
1583     /* else we try to get a factory */
1584     GstElementFactory *factory;
1585     GstPlugin *plugin;
1586     const char *arg = argv[argc - 1];
1587     int retval;
1588
1589     if (!plugin_name) {
1590       factory = gst_element_factory_find (arg);
1591
1592       /* if there's a factory, print out the info */
1593       if (factory) {
1594         retval = print_element_info (factory, print_all);
1595         gst_object_unref (factory);
1596       } else {
1597         retval = print_element_features (arg);
1598       }
1599     } else {
1600       retval = -1;
1601     }
1602
1603     /* otherwise check if it's a plugin */
1604     if (retval) {
1605       plugin = gst_default_registry_find_plugin (arg);
1606
1607       /* if there is such a plugin, print out info */
1608       if (plugin) {
1609         if (print_aii) {
1610           print_plugin_automatic_install_info (plugin);
1611         } else {
1612           print_plugin_info (plugin);
1613           print_plugin_features (plugin);
1614         }
1615       } else {
1616         GError *error = NULL;
1617
1618         if (g_file_test (arg, G_FILE_TEST_EXISTS)) {
1619           plugin = gst_plugin_load_file (arg, &error);
1620
1621           if (plugin) {
1622             if (print_aii) {
1623               print_plugin_automatic_install_info (plugin);
1624             } else {
1625               print_plugin_info (plugin);
1626               print_plugin_features (plugin);
1627             }
1628           } else {
1629             g_print (_("Could not load plugin file: %s\n"), error->message);
1630             g_error_free (error);
1631             return -1;
1632           }
1633         } else {
1634           g_print (_("No such element or plugin '%s'\n"), arg);
1635           return -1;
1636         }
1637       }
1638     }
1639   }
1640
1641   return 0;
1642 }