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