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