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