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