gst-inspect: Fix colors for "URI handling" section
[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  *               2018 Collabora Ltd.
6  *
7  * gst-inspect.c: tool to inspect the GStreamer registry
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Library General Public
11  * License as published by the Free Software Foundation; either
12  * version 2 of the License, or (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Library General Public License for more details.
18  *
19  * You should have received a copy of the GNU Library General Public
20  * License along with this library; if not, write to the
21  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
22  * Boston, MA 02110-1301, USA.
23  */
24
25 #ifdef HAVE_CONFIG_H
26 #  include "config.h"
27 #endif
28
29 /* FIXME 2.0: suppress warnings for deprecated API such as GValueArray
30  * with newer GLib versions (>= 2.31.0) */
31 #define GLIB_DISABLE_DEPRECATION_WARNINGS
32
33 #include "tools.h"
34 #include <gst/gst_private.h>    /* for internal Factories */
35
36 #include <string.h>
37 #include <locale.h>
38 #include <glib/gprintf.h>
39 #ifdef G_OS_UNIX
40 #   include <unistd.h>
41 #   include <sys/wait.h>
42 #endif
43
44 #define DEFAULT_PAGER "less -F -X -R"
45
46 gboolean colored_output = TRUE;
47
48 /* Console colors */
49
50 /* Escape values for colors */
51 #define BLUE      "\033[34m"
52 #define BRBLUE    "\033[94m"
53 #define BRCYAN    "\033[96m"
54 #define BRMAGENTA "\033[95m"
55 #define BRYELLOW  "\033[33m"
56 #define CYAN      "\033[36m"
57 #define GREEN     "\033[32m"
58 #define MAGENTA   "\033[35m"
59 #define YELLOW    "\033[33m"
60
61 /* General colors */
62 #define RESET_COLOR           (colored_output? "\033[0m": "")
63 #define HEADING_COLOR         (colored_output? BRYELLOW : "")
64 #define PROP_NAME_COLOR       (colored_output? BRBLUE : "")
65 #define PROP_VALUE_COLOR      (colored_output? RESET_COLOR: "")
66 #define PROP_ATTR_NAME_COLOR  (colored_output? BRYELLOW : "")
67 #define PROP_ATTR_VALUE_COLOR (colored_output? CYAN: "")
68 /* FIXME: find a good color that works on both dark & light bg. */
69 #define DESC_COLOR            (colored_output? RESET_COLOR: "")
70
71 /* Datatype-related colors */
72 #define DATATYPE_COLOR        (colored_output? GREEN : "")
73 #define CHILD_LINK_COLOR      (colored_output? BRMAGENTA : "")
74
75 /* Caps colors */
76 #define FIELD_NAME_COLOR      (colored_output? CYAN: "")
77 #define FIELD_VALUE_COLOR     (colored_output? BRBLUE : "")
78 #define CAPS_TYPE_COLOR       (colored_output? YELLOW : "")
79 #define STRUCT_NAME_COLOR     (colored_output? YELLOW : "")
80 #define CAPS_FEATURE_COLOR    (colored_output? GREEN : "")
81
82 /* Plugin listing colors */
83 #define PLUGIN_NAME_COLOR     (colored_output? BRBLUE : "")
84 #define ELEMENT_NAME_COLOR    (colored_output? GREEN : "")
85 /* FIXME: find a good color that works on both dark & light bg. */
86 #define ELEMENT_DETAIL_COLOR  (colored_output? RESET_COLOR : "")
87 #define PLUGIN_FEATURE_COLOR  (colored_output? BRBLUE: "")
88
89 /* Feature listing colors */
90 #define FEATURE_NAME_COLOR    (colored_output? GREEN : "")
91 #define FEATURE_DIR_COLOR     (colored_output? BRMAGENTA : "")
92 #define FEATURE_RANK_COLOR    (colored_output? CYAN : "")
93 #define FEATURE_PROTO_COLOR   (colored_output? BRYELLOW : "")
94
95 static char *_name = NULL;
96 static int indent = 0;
97
98 static int print_element_info (GstPluginFeature * feature,
99     gboolean print_names);
100 static int print_typefind_info (GstPluginFeature * feature,
101     gboolean print_names);
102 static int print_tracer_info (GstPluginFeature * feature, gboolean print_names);
103
104 #define push_indent() push_indent_n(1)
105 #define pop_indent() push_indent_n(-1)
106 #define pop_indent_n(n) push_indent_n(-n)
107
108 static void
109 push_indent_n (int n)
110 {
111   g_assert (n > 0 || indent > 0);
112   indent += n;
113 }
114
115 /* *INDENT-OFF* */
116 G_GNUC_PRINTF (1, 2)
117 /* *INDENT-ON* */
118
119 static void
120 n_print (const char *format, ...)
121 {
122   va_list args;
123   int i;
124
125   if (_name)
126     g_print ("%s", _name);
127
128   for (i = 0; i < indent; ++i)
129     g_print ("  ");
130
131   va_start (args, format);
132   g_vprintf (format, args);
133   va_end (args);
134 }
135
136 static gboolean
137 print_field (GQuark field, const GValue * value, gpointer pfx)
138 {
139   gchar *str = gst_value_serialize (value);
140
141   n_print ("%s  %s%15s%s: %s%s%s\n",
142       (gchar *) pfx, FIELD_NAME_COLOR, g_quark_to_string (field), RESET_COLOR,
143       FIELD_VALUE_COLOR, str, RESET_COLOR);
144   g_free (str);
145   return TRUE;
146 }
147
148 static void
149 print_caps (const GstCaps * caps, const gchar * pfx)
150 {
151   guint i;
152
153   g_return_if_fail (caps != NULL);
154
155   if (gst_caps_is_any (caps)) {
156     n_print ("%s%sANY%s\n", CAPS_TYPE_COLOR, pfx, RESET_COLOR);
157     return;
158   }
159   if (gst_caps_is_empty (caps)) {
160     n_print ("%s%sEMPTY%s\n", CAPS_TYPE_COLOR, pfx, RESET_COLOR);
161     return;
162   }
163
164   for (i = 0; i < gst_caps_get_size (caps); i++) {
165     GstStructure *structure = gst_caps_get_structure (caps, i);
166     GstCapsFeatures *features = gst_caps_get_features (caps, i);
167
168     if (features && (gst_caps_features_is_any (features) ||
169             !gst_caps_features_is_equal (features,
170                 GST_CAPS_FEATURES_MEMORY_SYSTEM_MEMORY))) {
171       gchar *features_string = gst_caps_features_to_string (features);
172
173       n_print ("%s%s%s%s(%s%s%s)\n", pfx, STRUCT_NAME_COLOR,
174           gst_structure_get_name (structure), RESET_COLOR,
175           CAPS_FEATURE_COLOR, features_string, RESET_COLOR);
176       g_free (features_string);
177     } else {
178       n_print ("%s%s%s%s\n", pfx, STRUCT_NAME_COLOR,
179           gst_structure_get_name (structure), RESET_COLOR);
180     }
181     gst_structure_foreach (structure, print_field, (gpointer) pfx);
182   }
183 }
184
185 static const char *
186 get_rank_name (char *s, gint rank)
187 {
188   static const int ranks[4] = {
189     GST_RANK_NONE, GST_RANK_MARGINAL, GST_RANK_SECONDARY, GST_RANK_PRIMARY
190   };
191   static const char *rank_names[4] = { "none", "marginal", "secondary",
192     "primary"
193   };
194   int i;
195   int best_i;
196
197   best_i = 0;
198   for (i = 0; i < 4; i++) {
199     if (rank == ranks[i])
200       return rank_names[i];
201     if (abs (rank - ranks[i]) < abs (rank - ranks[best_i])) {
202       best_i = i;
203     }
204   }
205
206   sprintf (s, "%s %c %d", rank_names[best_i],
207       (rank - ranks[best_i] > 0) ? '+' : '-', abs (ranks[best_i] - rank));
208
209   return s;
210 }
211
212 static void
213 print_factory_details_info (GstElementFactory * factory)
214 {
215   gchar **keys, **k;
216   GstRank rank;
217   char s[20];
218
219   rank = gst_plugin_feature_get_rank (GST_PLUGIN_FEATURE (factory));
220   n_print ("%sFactory Details:%s\n", HEADING_COLOR, RESET_COLOR);
221
222   push_indent ();
223   n_print ("%s%-25s%s%s (%d)%s\n", PROP_NAME_COLOR, "Rank", PROP_VALUE_COLOR,
224       get_rank_name (s, rank), rank, RESET_COLOR);
225
226   keys = gst_element_factory_get_metadata_keys (factory);
227   if (keys != NULL) {
228     for (k = keys; *k != NULL; ++k) {
229       const gchar *val;
230       gchar *key = *k;
231
232       val = gst_element_factory_get_metadata (factory, key);
233       key[0] = g_ascii_toupper (key[0]);
234       n_print ("%s%-25s%s%s%s\n", PROP_NAME_COLOR, key, PROP_VALUE_COLOR, val,
235           RESET_COLOR);
236     }
237     g_strfreev (keys);
238   }
239   pop_indent ();
240   n_print ("\n");
241 }
242
243 static void
244 print_hierarchy (GType type, gint level, gint * maxlevel)
245 {
246   GType parent;
247   gint i;
248
249   parent = g_type_parent (type);
250
251   *maxlevel = *maxlevel + 1;
252   level++;
253
254   if (parent)
255     print_hierarchy (parent, level, maxlevel);
256
257   if (_name)
258     g_print ("%s%s%s", DATATYPE_COLOR, _name, RESET_COLOR);
259
260   for (i = 1; i < *maxlevel - level; i++)
261     g_print ("      ");
262   if (*maxlevel - level)
263     g_print (" %s+----%s", CHILD_LINK_COLOR, RESET_COLOR);
264
265   g_print ("%s%s%s\n", DATATYPE_COLOR, g_type_name (type), RESET_COLOR);
266
267   if (level == 1)
268     n_print ("\n");
269 }
270
271 static void
272 print_interfaces (GType type)
273 {
274   guint n_ifaces;
275   GType *iface, *ifaces = g_type_interfaces (type, &n_ifaces);
276
277   if (ifaces) {
278     if (n_ifaces) {
279       n_print (_("%sImplemented Interfaces%s:\n"), HEADING_COLOR, RESET_COLOR);
280       push_indent ();
281       iface = ifaces;
282       while (*iface) {
283         n_print ("%s%s%s\n", DATATYPE_COLOR, g_type_name (*iface), RESET_COLOR);
284         iface++;
285       }
286       pop_indent ();
287       n_print ("\n");
288     }
289     g_free (ifaces);
290   }
291 }
292
293 static gchar *
294 flags_to_string (GFlagsValue * vals, guint flags)
295 {
296   GString *s = NULL;
297   guint flags_left, i;
298
299   /* first look for an exact match and count the number of values */
300   for (i = 0; vals[i].value_name != NULL; ++i) {
301     if (vals[i].value == flags)
302       return g_strdup (vals[i].value_nick);
303   }
304
305   s = g_string_new (NULL);
306
307   /* we assume the values are sorted from lowest to highest value */
308   flags_left = flags;
309   while (i > 0) {
310     --i;
311     if (vals[i].value != 0 && (flags_left & vals[i].value) == vals[i].value) {
312       if (s->len > 0)
313         g_string_append_c (s, '+');
314       g_string_append (s, vals[i].value_nick);
315       flags_left -= vals[i].value;
316       if (flags_left == 0)
317         break;
318     }
319   }
320
321   if (s->len == 0)
322     g_string_assign (s, "(none)");
323
324   return g_string_free (s, FALSE);
325 }
326
327 #define KNOWN_PARAM_FLAGS \
328   (G_PARAM_CONSTRUCT | G_PARAM_CONSTRUCT_ONLY | \
329   G_PARAM_LAX_VALIDATION |  G_PARAM_STATIC_STRINGS | \
330   G_PARAM_READABLE | G_PARAM_WRITABLE | G_PARAM_DEPRECATED | \
331   GST_PARAM_CONTROLLABLE | GST_PARAM_MUTABLE_PLAYING | \
332   GST_PARAM_MUTABLE_PAUSED | GST_PARAM_MUTABLE_READY)
333
334 static int
335 sort_gparamspecs (GParamSpec ** a, GParamSpec ** b)
336 {
337   return g_strcmp0 (g_param_spec_get_name (*a), g_param_spec_get_name (*b));
338 }
339
340 /* obj will be NULL if we're printing properties of pad template pads */
341 static void
342 print_object_properties_info (GObject * obj, GObjectClass * obj_class,
343     const gchar * desc)
344 {
345   GParamSpec **property_specs;
346   guint num_properties, i;
347   gboolean readable;
348   gboolean first_flag;
349
350   property_specs = g_object_class_list_properties (obj_class, &num_properties);
351   g_qsort_with_data (property_specs, num_properties, sizeof (gpointer),
352       (GCompareDataFunc) sort_gparamspecs, NULL);
353
354   n_print ("%s%s%s:\n", HEADING_COLOR, desc, RESET_COLOR);
355
356   push_indent ();
357
358   for (i = 0; i < num_properties; i++) {
359     GValue value = { 0, };
360     GParamSpec *param = property_specs[i];
361     GType owner_type = param->owner_type;
362
363     /* We're printing pad properties */
364     if (obj == NULL && (owner_type == G_TYPE_OBJECT
365             || owner_type == GST_TYPE_OBJECT || owner_type == GST_TYPE_PAD))
366       continue;
367
368     readable = FALSE;
369
370     g_value_init (&value, param->value_type);
371
372     n_print ("%s%-20s%s: %s%s%s\n", PROP_NAME_COLOR,
373         g_param_spec_get_name (param), RESET_COLOR, PROP_VALUE_COLOR,
374         g_param_spec_get_blurb (param), RESET_COLOR);
375
376     push_indent_n (11);
377
378     first_flag = TRUE;
379     n_print ("%sflags%s: ", PROP_ATTR_NAME_COLOR, RESET_COLOR);
380     readable = ! !(param->flags & G_PARAM_READABLE);
381     if (readable && obj != NULL) {
382       g_object_get_property (obj, param->name, &value);
383     } else {
384       /* if we can't read the property value, assume it's set to the default
385        * (which might not be entirely true for sub-classes, but that's an
386        * unlikely corner-case anyway) */
387       g_param_value_set_default (param, &value);
388     }
389     if (readable) {
390       g_print ("%s%s%s%s", (first_flag) ? "" : ", ", PROP_ATTR_VALUE_COLOR,
391           _("readable"), RESET_COLOR);
392       first_flag = FALSE;
393     }
394     if (param->flags & G_PARAM_WRITABLE) {
395       g_print ("%s%s%s%s", (first_flag) ? "" : ", ", PROP_ATTR_VALUE_COLOR,
396           _("writable"), RESET_COLOR);
397       first_flag = FALSE;
398     }
399     if (param->flags & G_PARAM_DEPRECATED) {
400       g_print ("%s%s%s%s", (first_flag) ? "" : ", ", PROP_ATTR_VALUE_COLOR,
401           _("deprecated"), RESET_COLOR);
402       first_flag = FALSE;
403     }
404     if (param->flags & GST_PARAM_CONTROLLABLE) {
405       g_print (", %s%s%s", PROP_ATTR_VALUE_COLOR, _("controllable"),
406           RESET_COLOR);
407       first_flag = FALSE;
408     }
409     if (param->flags & GST_PARAM_MUTABLE_PLAYING) {
410       g_print (", %s%s%s", PROP_ATTR_VALUE_COLOR,
411           _("changeable in NULL, READY, PAUSED or PLAYING state"), RESET_COLOR);
412     } else if (param->flags & GST_PARAM_MUTABLE_PAUSED) {
413       g_print (", %s%s%s", PROP_ATTR_VALUE_COLOR,
414           _("changeable only in NULL, READY or PAUSED state"), RESET_COLOR);
415     } else if (param->flags & GST_PARAM_MUTABLE_READY) {
416       g_print (", %s%s%s", PROP_ATTR_VALUE_COLOR,
417           _("changeable only in NULL or READY state"), RESET_COLOR);
418     }
419     if (param->flags & ~KNOWN_PARAM_FLAGS) {
420       g_print ("%s0x%s%0x%s", (first_flag) ? "" : ", ", PROP_ATTR_VALUE_COLOR,
421           param->flags & ~KNOWN_PARAM_FLAGS, RESET_COLOR);
422     }
423     g_print ("\n");
424
425     switch (G_VALUE_TYPE (&value)) {
426       case G_TYPE_STRING:
427       {
428         const char *string_val = g_value_get_string (&value);
429
430         n_print ("%sString%s. ", DATATYPE_COLOR, RESET_COLOR);
431
432         if (string_val == NULL)
433           g_print ("%sDefault%s: %snull%s", PROP_ATTR_NAME_COLOR, RESET_COLOR,
434               PROP_ATTR_VALUE_COLOR, RESET_COLOR);
435         else
436           g_print ("%sDefault%s: %s\"%s\"%s", PROP_ATTR_NAME_COLOR, RESET_COLOR,
437               PROP_ATTR_VALUE_COLOR, string_val, RESET_COLOR);
438         break;
439       }
440       case G_TYPE_BOOLEAN:
441       {
442         gboolean bool_val = g_value_get_boolean (&value);
443
444         n_print ("%sBoolean%s. %sDefault%s: %s%s%s", DATATYPE_COLOR,
445             RESET_COLOR, PROP_ATTR_NAME_COLOR, RESET_COLOR,
446             PROP_ATTR_VALUE_COLOR, bool_val ? "true" : "false", RESET_COLOR);
447         break;
448       }
449       case G_TYPE_ULONG:
450       {
451         GParamSpecULong *pulong = G_PARAM_SPEC_ULONG (param);
452
453         n_print
454             ("%sUnsigned Long%s. %sRange%s: %s%lu - %lu%s %sDefault%s: %s%lu%s ",
455             DATATYPE_COLOR, RESET_COLOR, PROP_ATTR_NAME_COLOR, RESET_COLOR,
456             PROP_ATTR_VALUE_COLOR, pulong->minimum, pulong->maximum,
457             RESET_COLOR, PROP_ATTR_NAME_COLOR, RESET_COLOR,
458             PROP_ATTR_VALUE_COLOR, g_value_get_ulong (&value), RESET_COLOR);
459
460         GST_ERROR ("%s: property '%s' of type ulong: consider changing to "
461             "uint/uint64", G_OBJECT_CLASS_NAME (obj_class),
462             g_param_spec_get_name (param));
463         break;
464       }
465       case G_TYPE_LONG:
466       {
467         GParamSpecLong *plong = G_PARAM_SPEC_LONG (param);
468
469         n_print ("%sLong%s. %sRange%s: %s%ld - %ld%s %sDefault%s: %s%ld%s ",
470             DATATYPE_COLOR, RESET_COLOR, PROP_ATTR_NAME_COLOR, RESET_COLOR,
471             PROP_ATTR_VALUE_COLOR, plong->minimum, plong->maximum, RESET_COLOR,
472             PROP_ATTR_NAME_COLOR, RESET_COLOR, PROP_ATTR_VALUE_COLOR,
473             g_value_get_long (&value), RESET_COLOR);
474
475         GST_ERROR ("%s: property '%s' of type long: consider changing to "
476             "int/int64", G_OBJECT_CLASS_NAME (obj_class),
477             g_param_spec_get_name (param));
478         break;
479       }
480       case G_TYPE_UINT:
481       {
482         GParamSpecUInt *puint = G_PARAM_SPEC_UINT (param);
483
484         n_print
485             ("%sUnsigned Integer%s. %sRange%s: %s%u - %u%s %sDefault%s: %s%u%s ",
486             DATATYPE_COLOR, RESET_COLOR, PROP_ATTR_NAME_COLOR, RESET_COLOR,
487             PROP_ATTR_VALUE_COLOR, puint->minimum, puint->maximum, RESET_COLOR,
488             PROP_ATTR_NAME_COLOR, RESET_COLOR, PROP_ATTR_VALUE_COLOR,
489             g_value_get_uint (&value), RESET_COLOR);
490         break;
491       }
492       case G_TYPE_INT:
493       {
494         GParamSpecInt *pint = G_PARAM_SPEC_INT (param);
495
496         n_print ("%sInteger%s. %sRange%s: %s%d - %d%s %sDefault%s: %s%d%s ",
497             DATATYPE_COLOR, RESET_COLOR, PROP_ATTR_NAME_COLOR, RESET_COLOR,
498             PROP_ATTR_VALUE_COLOR, pint->minimum, pint->maximum, RESET_COLOR,
499             PROP_ATTR_NAME_COLOR, RESET_COLOR, PROP_ATTR_VALUE_COLOR,
500             g_value_get_int (&value), RESET_COLOR);
501         break;
502       }
503       case G_TYPE_UINT64:
504       {
505         GParamSpecUInt64 *puint64 = G_PARAM_SPEC_UINT64 (param);
506
507         n_print ("%sUnsigned Integer64%s. %sRange%s: %s%" G_GUINT64_FORMAT " - "
508             "%" G_GUINT64_FORMAT "%s %sDefault%s: %s%" G_GUINT64_FORMAT "%s ",
509             DATATYPE_COLOR, RESET_COLOR, PROP_ATTR_NAME_COLOR, RESET_COLOR,
510             PROP_ATTR_VALUE_COLOR, puint64->minimum, puint64->maximum,
511             RESET_COLOR, PROP_ATTR_NAME_COLOR, RESET_COLOR,
512             PROP_ATTR_VALUE_COLOR, g_value_get_uint64 (&value), RESET_COLOR);
513         break;
514       }
515       case G_TYPE_INT64:
516       {
517         GParamSpecInt64 *pint64 = G_PARAM_SPEC_INT64 (param);
518
519         n_print ("%sInteger64%s. %sRange%s: %s%" G_GINT64_FORMAT " - %"
520             G_GINT64_FORMAT "%s %sDefault%s: %s%" G_GINT64_FORMAT "%s ",
521             DATATYPE_COLOR, RESET_COLOR, PROP_ATTR_NAME_COLOR, RESET_COLOR,
522             PROP_ATTR_VALUE_COLOR, pint64->minimum, pint64->maximum,
523             RESET_COLOR, PROP_ATTR_NAME_COLOR, RESET_COLOR,
524             PROP_ATTR_VALUE_COLOR, g_value_get_int64 (&value), RESET_COLOR);
525         break;
526       }
527       case G_TYPE_FLOAT:
528       {
529         GParamSpecFloat *pfloat = G_PARAM_SPEC_FLOAT (param);
530
531         n_print ("%sFloat%s. %sRange%s: %s%15.7g - %15.7g%s "
532             "%sDefault%s: %s%15.7g%s ", DATATYPE_COLOR, RESET_COLOR,
533             PROP_ATTR_NAME_COLOR, RESET_COLOR, PROP_ATTR_VALUE_COLOR,
534             pfloat->minimum, pfloat->maximum, RESET_COLOR, PROP_ATTR_NAME_COLOR,
535             RESET_COLOR, PROP_ATTR_VALUE_COLOR, g_value_get_float (&value),
536             RESET_COLOR);
537         break;
538       }
539       case G_TYPE_DOUBLE:
540       {
541         GParamSpecDouble *pdouble = G_PARAM_SPEC_DOUBLE (param);
542
543         n_print ("%sDouble%s. %sRange%s: %s%15.7g - %15.7g%s "
544             "%sDefault%s: %s%15.7g%s ", DATATYPE_COLOR, RESET_COLOR,
545             PROP_ATTR_NAME_COLOR, RESET_COLOR, PROP_ATTR_VALUE_COLOR,
546             pdouble->minimum, pdouble->maximum, RESET_COLOR,
547             PROP_ATTR_NAME_COLOR, RESET_COLOR, PROP_ATTR_VALUE_COLOR,
548             g_value_get_double (&value), RESET_COLOR);
549         break;
550       }
551       case G_TYPE_CHAR:
552       case G_TYPE_UCHAR:
553         GST_ERROR ("%s: property '%s' of type char: consider changing to "
554             "int/string", G_OBJECT_CLASS_NAME (obj_class),
555             g_param_spec_get_name (param));
556         /* fall through */
557       default:
558         if (param->value_type == GST_TYPE_CAPS) {
559           const GstCaps *caps = gst_value_get_caps (&value);
560
561           if (!caps)
562             n_print ("%sCaps%s (NULL)", DATATYPE_COLOR, RESET_COLOR);
563           else {
564             print_caps (caps, "                           ");
565           }
566         } else if (G_IS_PARAM_SPEC_ENUM (param)) {
567           GEnumValue *values;
568           guint j = 0;
569           gint enum_value;
570           const gchar *value_nick = "";
571
572           values = G_ENUM_CLASS (g_type_class_ref (param->value_type))->values;
573           enum_value = g_value_get_enum (&value);
574
575           while (values[j].value_name) {
576             if (values[j].value == enum_value)
577               value_nick = values[j].value_nick;
578             j++;
579           }
580
581           n_print ("%sEnum \"%s\"%s %sDefault%s: %s%d, \"%s\"%s",
582               DATATYPE_COLOR, g_type_name (G_VALUE_TYPE (&value)), RESET_COLOR,
583               PROP_ATTR_NAME_COLOR, RESET_COLOR, PROP_ATTR_VALUE_COLOR,
584               enum_value, value_nick, RESET_COLOR);
585
586           j = 0;
587           while (values[j].value_name) {
588             g_print ("\n");
589             n_print ("   %s(%d)%s: %s%-16s%s - %s%s%s",
590                 PROP_ATTR_NAME_COLOR, values[j].value, RESET_COLOR,
591                 PROP_ATTR_VALUE_COLOR, values[j].value_nick, RESET_COLOR,
592                 DESC_COLOR, values[j].value_name, RESET_COLOR);
593             j++;
594           }
595           /* g_type_class_unref (ec); */
596         } else if (G_IS_PARAM_SPEC_FLAGS (param)) {
597           GParamSpecFlags *pflags = G_PARAM_SPEC_FLAGS (param);
598           GFlagsValue *vals;
599           gchar *cur;
600
601           vals = pflags->flags_class->values;
602
603           cur = flags_to_string (vals, g_value_get_flags (&value));
604
605           n_print ("%sFlags \"%s\"%s %sDefault%s: %s0x%08x, \"%s\"%s",
606               DATATYPE_COLOR, g_type_name (G_VALUE_TYPE (&value)), RESET_COLOR,
607               PROP_ATTR_NAME_COLOR, RESET_COLOR, PROP_ATTR_VALUE_COLOR,
608               g_value_get_flags (&value), cur, RESET_COLOR);
609
610           while (vals[0].value_name) {
611             g_print ("\n");
612             n_print ("   %s(0x%08x)%s: %s%-16s%s - %s%s%s",
613                 PROP_ATTR_NAME_COLOR, vals[0].value, RESET_COLOR,
614                 PROP_ATTR_VALUE_COLOR, vals[0].value_nick, RESET_COLOR,
615                 DESC_COLOR, vals[0].value_name, RESET_COLOR);
616             ++vals;
617           }
618
619           g_free (cur);
620         } else if (G_IS_PARAM_SPEC_OBJECT (param)) {
621           n_print ("%sObject of type%s %s\"%s\"%s", PROP_VALUE_COLOR,
622               RESET_COLOR, DATATYPE_COLOR,
623               g_type_name (param->value_type), RESET_COLOR);
624         } else if (G_IS_PARAM_SPEC_BOXED (param)) {
625           n_print ("%sBoxed pointer of type%s %s\"%s\"%s", PROP_VALUE_COLOR,
626               RESET_COLOR, DATATYPE_COLOR,
627               g_type_name (param->value_type), RESET_COLOR);
628           if (param->value_type == GST_TYPE_STRUCTURE) {
629             const GstStructure *s = gst_value_get_structure (&value);
630             if (s)
631               gst_structure_foreach (s, print_field,
632                   (gpointer) "                           ");
633           }
634         } else if (G_IS_PARAM_SPEC_POINTER (param)) {
635           if (param->value_type != G_TYPE_POINTER) {
636             n_print ("%sPointer of type%s %s\"%s\"%s.", PROP_VALUE_COLOR,
637                 RESET_COLOR, DATATYPE_COLOR, g_type_name (param->value_type),
638                 RESET_COLOR);
639           } else {
640             n_print ("%sPointer.%s", PROP_VALUE_COLOR, RESET_COLOR);
641           }
642         } else if (param->value_type == G_TYPE_VALUE_ARRAY) {
643           GParamSpecValueArray *pvarray = G_PARAM_SPEC_VALUE_ARRAY (param);
644
645           if (pvarray->element_spec) {
646             n_print ("%sArray of GValues of type%s %s\"%s\"%s",
647                 PROP_VALUE_COLOR, RESET_COLOR, DATATYPE_COLOR,
648                 g_type_name (pvarray->element_spec->value_type), RESET_COLOR);
649           } else {
650             n_print ("%sArray of GValues%s", PROP_VALUE_COLOR, RESET_COLOR);
651           }
652         } else if (GST_IS_PARAM_SPEC_FRACTION (param)) {
653           GstParamSpecFraction *pfraction = GST_PARAM_SPEC_FRACTION (param);
654
655           n_print ("%sFraction%s. %sRange%s: %s%d/%d - %d/%d%s "
656               "%sDefault%s: %s%d/%d%s ", DATATYPE_COLOR, RESET_COLOR,
657               PROP_ATTR_NAME_COLOR, RESET_COLOR, PROP_ATTR_VALUE_COLOR,
658               pfraction->min_num, pfraction->min_den, pfraction->max_num,
659               pfraction->max_den, RESET_COLOR, PROP_ATTR_NAME_COLOR,
660               RESET_COLOR, PROP_ATTR_VALUE_COLOR,
661               gst_value_get_fraction_numerator (&value),
662               gst_value_get_fraction_denominator (&value), RESET_COLOR);
663         } else if (param->value_type == GST_TYPE_ARRAY) {
664           GstParamSpecArray *parray = GST_PARAM_SPEC_ARRAY_LIST (param);
665
666           if (parray->element_spec) {
667             n_print ("%sGstValueArray of GValues of type%s %s\"%s\"%s",
668                 PROP_VALUE_COLOR, RESET_COLOR, DATATYPE_COLOR,
669                 g_type_name (parray->element_spec->value_type), RESET_COLOR);
670           } else {
671             n_print ("%sGstValueArray of GValues%s", PROP_VALUE_COLOR,
672                 RESET_COLOR);
673           }
674         } else {
675           n_print ("%sUnknown type %ld%s %s\"%s\"%s", PROP_VALUE_COLOR,
676               (glong) param->value_type, RESET_COLOR, DATATYPE_COLOR,
677               g_type_name (param->value_type), RESET_COLOR);
678         }
679         break;
680     }
681     if (!readable)
682       g_print (" %sWrite only%s\n", PROP_VALUE_COLOR, RESET_COLOR);
683     else
684       g_print ("\n");
685
686     pop_indent_n (11);
687
688     g_value_reset (&value);
689   }
690   if (num_properties == 0)
691     n_print ("%snone%s\n", PROP_VALUE_COLOR, RESET_COLOR);
692
693   pop_indent ();
694
695   g_free (property_specs);
696 }
697
698 static void
699 print_element_properties_info (GstElement * element)
700 {
701   g_print ("\n");
702   print_object_properties_info (G_OBJECT (element),
703       G_OBJECT_GET_CLASS (element), "Element Properties");
704 }
705
706 static void
707 print_pad_templates_info (GstElement * element, GstElementFactory * factory)
708 {
709   const GList *pads;
710   GstStaticPadTemplate *padtemplate;
711   GstPadTemplate *tmpl;
712
713   n_print ("%sPad Templates%s:\n", HEADING_COLOR, RESET_COLOR);
714
715   push_indent ();
716
717   if (gst_element_factory_get_num_pad_templates (factory) == 0) {
718     n_print ("%snone%s\n", PROP_VALUE_COLOR, RESET_COLOR);
719     goto done;
720   }
721
722   pads = gst_element_factory_get_static_pad_templates (factory);
723   while (pads) {
724     padtemplate = (GstStaticPadTemplate *) (pads->data);
725     pads = g_list_next (pads);
726
727     if (padtemplate->direction == GST_PAD_SRC)
728       n_print ("%sSRC template%s: %s'%s'%s\n", PROP_NAME_COLOR, RESET_COLOR,
729           PROP_VALUE_COLOR, padtemplate->name_template, RESET_COLOR);
730     else if (padtemplate->direction == GST_PAD_SINK)
731       n_print ("%sSINK template%s: %s'%s'%s\n", PROP_NAME_COLOR, RESET_COLOR,
732           PROP_VALUE_COLOR, padtemplate->name_template, RESET_COLOR);
733     else
734       n_print ("%sUNKNOWN template%s: %s'%s'%s\n", PROP_NAME_COLOR, RESET_COLOR,
735           PROP_VALUE_COLOR, padtemplate->name_template, RESET_COLOR);
736
737     push_indent ();
738
739     if (padtemplate->presence == GST_PAD_ALWAYS)
740       n_print ("%sAvailability%s: %sAlways%s\n", PROP_NAME_COLOR, RESET_COLOR,
741           PROP_VALUE_COLOR, RESET_COLOR);
742     else if (padtemplate->presence == GST_PAD_SOMETIMES)
743       n_print ("%sAvailability%s: %sSometimes%s\n", PROP_NAME_COLOR,
744           RESET_COLOR, PROP_VALUE_COLOR, RESET_COLOR);
745     else if (padtemplate->presence == GST_PAD_REQUEST) {
746       n_print ("%sAvailability%s: %sOn request%s\n", PROP_NAME_COLOR,
747           RESET_COLOR, PROP_VALUE_COLOR, RESET_COLOR);
748     } else
749       n_print ("%sAvailability%s: %sUNKNOWN%s\n", PROP_NAME_COLOR, RESET_COLOR,
750           PROP_VALUE_COLOR, RESET_COLOR);
751
752     if (padtemplate->static_caps.string) {
753       GstCaps *caps = gst_static_caps_get (&padtemplate->static_caps);
754
755       n_print ("%sCapabilities%s:\n", PROP_NAME_COLOR, RESET_COLOR);
756
757       push_indent ();
758       print_caps (caps, "");    // FIXME
759       pop_indent ();
760
761       gst_caps_unref (caps);
762     }
763
764     tmpl = gst_element_class_get_pad_template (GST_ELEMENT_GET_CLASS (element),
765         padtemplate->name_template);
766     if (tmpl != NULL) {
767       GType pad_type = GST_PAD_TEMPLATE_GTYPE (tmpl);
768
769       if (pad_type != G_TYPE_NONE && pad_type != GST_TYPE_PAD) {
770         gpointer pad_klass;
771
772         pad_klass = g_type_class_ref (pad_type);
773         n_print ("%sType%s: %s%s%s\n", PROP_NAME_COLOR, RESET_COLOR,
774             DATATYPE_COLOR, g_type_name (pad_type), RESET_COLOR);
775         print_object_properties_info (NULL, pad_klass, "Pad Properties");
776         g_type_class_unref (pad_klass);
777       }
778     }
779
780     pop_indent ();
781
782     if (pads != NULL)
783       n_print ("\n");
784   }
785
786 done:
787   pop_indent ();
788 }
789
790 static void
791 print_clocking_info (GstElement * element)
792 {
793   gboolean requires_clock, provides_clock;
794
795   requires_clock =
796       GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_FLAG_REQUIRE_CLOCK);
797   provides_clock =
798       GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_FLAG_PROVIDE_CLOCK);
799
800   if (!requires_clock && !provides_clock) {
801     n_print ("\n");
802     n_print ("%sElement has no clocking capabilities.%s\n", DESC_COLOR,
803         RESET_COLOR);
804     return;
805   }
806
807   n_print ("\n");
808   n_print ("%sClocking Interaction%s:\n", PROP_NAME_COLOR, RESET_COLOR);
809
810   push_indent ();
811
812   if (requires_clock) {
813     n_print ("%selement requires a clock%s\n", PROP_VALUE_COLOR, RESET_COLOR);
814   }
815
816   if (provides_clock) {
817     GstClock *clock;
818
819     clock = gst_element_get_clock (element);
820     if (clock) {
821       n_print ("%selement provides a clock%s: %s%s%s\n", PROP_VALUE_COLOR,
822           RESET_COLOR, DATATYPE_COLOR, GST_OBJECT_NAME (clock), RESET_COLOR);
823       gst_object_unref (clock);
824     } else
825       n_print ("%selement is supposed to provide a clock but returned NULL%s\n",
826           PROP_VALUE_COLOR, RESET_COLOR);
827   }
828
829   pop_indent ();
830 }
831
832 static void
833 print_uri_handler_info (GstElement * element)
834 {
835   if (GST_IS_URI_HANDLER (element)) {
836     const gchar *const *uri_protocols;
837     const gchar *uri_type;
838
839     if (gst_uri_handler_get_uri_type (GST_URI_HANDLER (element)) == GST_URI_SRC)
840       uri_type = "source";
841     else if (gst_uri_handler_get_uri_type (GST_URI_HANDLER (element)) ==
842         GST_URI_SINK)
843       uri_type = "sink";
844     else
845       uri_type = "unknown";
846
847     uri_protocols = gst_uri_handler_get_protocols (GST_URI_HANDLER (element));
848
849     n_print ("\n");
850     n_print ("%sURI handling capabilities:%s\n", HEADING_COLOR, RESET_COLOR);
851
852     push_indent ();
853
854     n_print ("%sElement can act as %s.%s\n", DESC_COLOR, uri_type, RESET_COLOR);
855
856     if (uri_protocols && *uri_protocols) {
857       n_print ("%sSupported URI protocols%s:\n", DESC_COLOR, RESET_COLOR);
858       push_indent ();
859       for (; *uri_protocols != NULL; uri_protocols++)
860         n_print ("%s%s%s\n", PROP_ATTR_VALUE_COLOR, *uri_protocols,
861             RESET_COLOR);
862       pop_indent ();
863     } else {
864       n_print ("%sNo supported URI protocols%s\n", PROP_VALUE_COLOR,
865           RESET_COLOR);
866     }
867
868     pop_indent ();
869   } else {
870     n_print ("%sElement has no URI handling capabilities.%s\n", DESC_COLOR,
871         RESET_COLOR);
872   }
873 }
874
875 static void
876 print_pad_info (GstElement * element)
877 {
878   const GList *pads;
879   GstPad *pad;
880
881   n_print ("\n");
882   n_print ("%sPads:%s\n", HEADING_COLOR, RESET_COLOR);
883
884   push_indent ();
885
886   if (!element->numpads) {
887     n_print ("%snone%s\n", PROP_VALUE_COLOR, RESET_COLOR);
888     goto done;
889   }
890
891   pads = element->pads;
892   while (pads) {
893     gchar *name;
894     GstCaps *caps;
895
896     pad = GST_PAD (pads->data);
897     pads = g_list_next (pads);
898
899     name = gst_pad_get_name (pad);
900     if (gst_pad_get_direction (pad) == GST_PAD_SRC)
901       n_print ("%sSRC%s: %s'%s'%s\n", PROP_NAME_COLOR, RESET_COLOR,
902           PROP_VALUE_COLOR, name, RESET_COLOR);
903     else if (gst_pad_get_direction (pad) == GST_PAD_SINK)
904       n_print ("%sSINK%s: %s'%s'%s\n", PROP_NAME_COLOR, RESET_COLOR,
905           PROP_VALUE_COLOR, name, RESET_COLOR);
906     else
907       n_print ("%sUNKNOWN%s: %s'%s'%s\n", PROP_NAME_COLOR, RESET_COLOR,
908           PROP_VALUE_COLOR, name, RESET_COLOR);
909
910     g_free (name);
911
912     if (pad->padtemplate) {
913       push_indent ();
914       n_print ("%sPad Template%s: %s'%s'%s\n", PROP_NAME_COLOR, RESET_COLOR,
915           PROP_VALUE_COLOR, pad->padtemplate->name_template, RESET_COLOR);
916       pop_indent ();
917     }
918
919     caps = gst_pad_get_current_caps (pad);
920     if (caps) {
921       n_print ("%sCapabilities:%s\n", PROP_NAME_COLOR, RESET_COLOR);
922       push_indent ();
923       print_caps (caps, "");    // FIXME
924       pop_indent ();
925       gst_caps_unref (caps);
926     }
927   }
928
929 done:
930   pop_indent ();
931 }
932
933 static gboolean
934 has_sometimes_template (GstElement * element)
935 {
936   GstElementClass *klass = GST_ELEMENT_GET_CLASS (element);
937   GList *l;
938
939   for (l = klass->padtemplates; l != NULL; l = l->next) {
940     if (GST_PAD_TEMPLATE (l->data)->presence == GST_PAD_SOMETIMES)
941       return TRUE;
942   }
943
944   return FALSE;
945 }
946
947 static gboolean
948 gtype_needs_ptr_marker (GType type)
949 {
950   if (type == G_TYPE_POINTER)
951     return FALSE;
952
953   if (G_TYPE_FUNDAMENTAL (type) == G_TYPE_POINTER || G_TYPE_IS_BOXED (type)
954       || G_TYPE_IS_OBJECT (type))
955     return TRUE;
956
957   return FALSE;
958 }
959
960 static void
961 print_signal_info (GstElement * element)
962 {
963   /* Signals/Actions Block */
964   guint *signals;
965   guint nsignals;
966   gint i = 0, j, k;
967   GSignalQuery *query = NULL;
968   GType type;
969   GSList *found_signals, *l;
970
971   for (k = 0; k < 2; k++) {
972     found_signals = NULL;
973
974     /* For elements that have sometimes pads, also list a few useful GstElement
975      * signals. Put these first, so element-specific ones come later. */
976     if (k == 0 && has_sometimes_template (element)) {
977       query = g_new0 (GSignalQuery, 1);
978       g_signal_query (g_signal_lookup ("pad-added", GST_TYPE_ELEMENT), query);
979       found_signals = g_slist_append (found_signals, query);
980       query = g_new0 (GSignalQuery, 1);
981       g_signal_query (g_signal_lookup ("pad-removed", GST_TYPE_ELEMENT), query);
982       found_signals = g_slist_append (found_signals, query);
983       query = g_new0 (GSignalQuery, 1);
984       g_signal_query (g_signal_lookup ("no-more-pads", GST_TYPE_ELEMENT),
985           query);
986       found_signals = g_slist_append (found_signals, query);
987     }
988
989     for (type = G_OBJECT_TYPE (element); type; type = g_type_parent (type)) {
990       if (type == GST_TYPE_ELEMENT || type == GST_TYPE_OBJECT)
991         break;
992
993       if (type == GST_TYPE_BIN && G_OBJECT_TYPE (element) != GST_TYPE_BIN)
994         continue;
995
996       signals = g_signal_list_ids (type, &nsignals);
997       for (i = 0; i < nsignals; i++) {
998         query = g_new0 (GSignalQuery, 1);
999         g_signal_query (signals[i], query);
1000
1001         if ((k == 0 && !(query->signal_flags & G_SIGNAL_ACTION)) ||
1002             (k == 1 && (query->signal_flags & G_SIGNAL_ACTION)))
1003           found_signals = g_slist_append (found_signals, query);
1004         else
1005           g_free (query);
1006       }
1007       g_free (signals);
1008       signals = NULL;
1009     }
1010
1011     if (found_signals) {
1012       n_print ("\n");
1013       if (k == 0)
1014         n_print ("%sElement Signals%s:\n", HEADING_COLOR, RESET_COLOR);
1015       else
1016         n_print ("%sElement Actions%s:\n", HEADING_COLOR, RESET_COLOR);
1017     } else {
1018       continue;
1019     }
1020
1021     for (l = found_signals; l; l = l->next) {
1022       gchar *indent;
1023       const gchar *pmark;
1024       int indent_len;
1025
1026       query = (GSignalQuery *) l->data;
1027       indent_len = strlen (query->signal_name) +
1028           strlen (g_type_name (query->return_type)) + 24;
1029
1030       if (gtype_needs_ptr_marker (query->return_type)) {
1031         pmark = "* ";
1032         indent_len += 2;
1033       } else {
1034         pmark = " ";
1035       }
1036
1037       indent = g_new0 (gchar, indent_len + 1);
1038       memset (indent, ' ', indent_len);
1039
1040       n_print ("  %s\"%s\"%s :  %s%s%s%suser_function%s (%s%s%s* object%s",
1041           PROP_NAME_COLOR, query->signal_name, RESET_COLOR,
1042           DATATYPE_COLOR, g_type_name (query->return_type), PROP_VALUE_COLOR,
1043           pmark, RESET_COLOR, DATATYPE_COLOR, g_type_name (type),
1044           PROP_VALUE_COLOR, RESET_COLOR);
1045
1046       for (j = 0; j < query->n_params; j++) {
1047         const gchar *type_name, *asterisk;
1048
1049         type_name = g_type_name (query->param_types[j]);
1050         asterisk = gtype_needs_ptr_marker (query->param_types[j]) ? "*" : "";
1051
1052         g_print (",\n");
1053         n_print ("%s%s%s%s%s arg%d%s", indent, DATATYPE_COLOR, type_name,
1054             PROP_VALUE_COLOR, asterisk, j, RESET_COLOR);
1055       }
1056
1057       if (k == 0) {
1058         g_print (",\n");
1059         n_print ("%s%sgpointer %suser_data%s);\n", indent, DATATYPE_COLOR,
1060             PROP_VALUE_COLOR, RESET_COLOR);
1061       } else
1062         g_print (");\n");
1063
1064       g_free (indent);
1065     }
1066
1067     if (found_signals) {
1068       g_slist_foreach (found_signals, (GFunc) g_free, NULL);
1069       g_slist_free (found_signals);
1070     }
1071   }
1072 }
1073
1074 static void
1075 print_children_info (GstElement * element)
1076 {
1077   GList *children;
1078
1079   if (!GST_IS_BIN (element))
1080     return;
1081
1082   children = (GList *) GST_BIN (element)->children;
1083   if (children) {
1084     n_print ("\n");
1085     n_print ("%sChildren%s:\n", HEADING_COLOR, RESET_COLOR);
1086   }
1087
1088   while (children) {
1089     n_print ("  %s%s%s\n", DATATYPE_COLOR,
1090         GST_ELEMENT_NAME (GST_ELEMENT (children->data)), RESET_COLOR);
1091     children = g_list_next (children);
1092   }
1093 }
1094
1095 static void
1096 print_preset_list (GstElement * element)
1097 {
1098   gchar **presets, **preset;
1099
1100   if (!GST_IS_PRESET (element))
1101     return;
1102
1103   presets = gst_preset_get_preset_names (GST_PRESET (element));
1104   if (presets && *presets) {
1105     n_print ("\n");
1106     n_print ("%sPresets%s:\n", HEADING_COLOR, RESET_COLOR);
1107     for (preset = presets; *preset; preset++) {
1108       n_print ("  \"%s\"\n", *preset);
1109     }
1110     g_strfreev (presets);
1111   }
1112 }
1113
1114 static void
1115 print_blacklist (void)
1116 {
1117   GList *plugins, *cur;
1118   gint count = 0;
1119
1120   g_print ("%s%s%s\n", HEADING_COLOR, _("Blacklisted files:"), RESET_COLOR);
1121
1122   plugins = gst_registry_get_plugin_list (gst_registry_get ());
1123   for (cur = plugins; cur != NULL; cur = g_list_next (cur)) {
1124     GstPlugin *plugin = (GstPlugin *) (cur->data);
1125     if (GST_OBJECT_FLAG_IS_SET (plugin, GST_PLUGIN_FLAG_BLACKLISTED)) {
1126       g_print ("  %s\n", gst_plugin_get_name (plugin));
1127       count++;
1128     }
1129   }
1130
1131   g_print ("\n");
1132   g_print (_("%sTotal count%s: %s"), PROP_NAME_COLOR, RESET_COLOR,
1133       PROP_VALUE_COLOR);
1134   g_print (ngettext ("%d blacklisted file", "%d blacklisted files", count),
1135       count);
1136   g_print ("%s\n", RESET_COLOR);
1137   gst_plugin_list_free (plugins);
1138 }
1139
1140 static void
1141 print_typefind_extensions (const gchar * const *extensions, const gchar * color)
1142 {
1143   guint i = 0;
1144
1145   while (extensions[i]) {
1146     g_print ("%s%s%s%s", i > 0 ? ", " : "", color, extensions[i], RESET_COLOR);
1147     i++;
1148   }
1149 }
1150
1151 static void
1152 print_element_list (gboolean print_all, gchar * ftypes)
1153 {
1154   int plugincount = 0, featurecount = 0, blacklistcount = 0;
1155   GList *plugins, *orig_plugins;
1156   gchar **types = NULL;
1157
1158   if (ftypes) {
1159     gint i;
1160
1161     types = g_strsplit (ftypes, "/", -1);
1162     for (i = 0; types[i]; i++)
1163       *types[i] = g_ascii_toupper (*types[i]);
1164
1165   }
1166
1167   orig_plugins = plugins = gst_registry_get_plugin_list (gst_registry_get ());
1168   while (plugins) {
1169     GList *features, *orig_features;
1170     GstPlugin *plugin;
1171
1172     plugin = (GstPlugin *) (plugins->data);
1173     plugins = g_list_next (plugins);
1174     plugincount++;
1175
1176     if (GST_OBJECT_FLAG_IS_SET (plugin, GST_PLUGIN_FLAG_BLACKLISTED)) {
1177       blacklistcount++;
1178       continue;
1179     }
1180
1181     orig_features = features =
1182         gst_registry_get_feature_list_by_plugin (gst_registry_get (),
1183         gst_plugin_get_name (plugin));
1184     while (features) {
1185       GstPluginFeature *feature;
1186
1187       if (G_UNLIKELY (features->data == NULL))
1188         goto next;
1189       feature = GST_PLUGIN_FEATURE (features->data);
1190       featurecount++;
1191
1192       if (GST_IS_ELEMENT_FACTORY (feature)) {
1193         const gchar *klass;
1194         GstElementFactory *factory;
1195
1196         factory = GST_ELEMENT_FACTORY (feature);
1197         if (types) {
1198           gint i;
1199           gboolean all_found = TRUE;
1200
1201           klass =
1202               gst_element_factory_get_metadata (factory,
1203               GST_ELEMENT_METADATA_KLASS);
1204           for (i = 0; types[i]; i++) {
1205             if (!strstr (klass, types[i])) {
1206               all_found = FALSE;
1207               break;
1208             }
1209           }
1210
1211           if (!all_found)
1212             goto next;
1213         }
1214         if (print_all)
1215           print_element_info (feature, TRUE);
1216         else
1217           g_print ("%s%s%s:  %s%s%s: %s%s%s\n", PLUGIN_NAME_COLOR,
1218               gst_plugin_get_name (plugin), RESET_COLOR, ELEMENT_NAME_COLOR,
1219               GST_OBJECT_NAME (factory), RESET_COLOR, ELEMENT_DETAIL_COLOR,
1220               gst_element_factory_get_metadata (factory,
1221                   GST_ELEMENT_METADATA_LONGNAME), RESET_COLOR);
1222       } else if (GST_IS_TYPE_FIND_FACTORY (feature)) {
1223         GstTypeFindFactory *factory;
1224         const gchar *const *extensions;
1225
1226         if (types)
1227           goto next;
1228         factory = GST_TYPE_FIND_FACTORY (feature);
1229         if (!print_all)
1230           g_print ("%s%s%s: %s%s%s: ", PLUGIN_NAME_COLOR,
1231               gst_plugin_get_name (plugin), RESET_COLOR, ELEMENT_NAME_COLOR,
1232               gst_plugin_feature_get_name (feature), RESET_COLOR);
1233
1234         extensions = gst_type_find_factory_get_extensions (factory);
1235         if (extensions != NULL) {
1236           if (!print_all) {
1237             print_typefind_extensions (extensions, ELEMENT_DETAIL_COLOR);
1238             g_print ("\n");
1239           }
1240         } else {
1241           if (!print_all)
1242             g_print ("%sno extensions%s\n", ELEMENT_DETAIL_COLOR, RESET_COLOR);
1243         }
1244       } else {
1245         if (types)
1246           goto next;
1247         if (!print_all)
1248           n_print ("%s%s%s:  %s%s%s (%s%s%s)\n", PLUGIN_NAME_COLOR,
1249               gst_plugin_get_name (plugin), RESET_COLOR, ELEMENT_NAME_COLOR,
1250               GST_OBJECT_NAME (feature), RESET_COLOR, ELEMENT_DETAIL_COLOR,
1251               g_type_name (G_OBJECT_TYPE (feature)), RESET_COLOR);
1252       }
1253
1254     next:
1255       features = g_list_next (features);
1256     }
1257
1258     gst_plugin_feature_list_free (orig_features);
1259   }
1260
1261   gst_plugin_list_free (orig_plugins);
1262   g_strfreev (types);
1263
1264   g_print ("\n");
1265   g_print (_("%sTotal count%s: %s"), PROP_NAME_COLOR, RESET_COLOR,
1266       PROP_VALUE_COLOR);
1267   g_print (ngettext ("%d plugin", "%d plugins", plugincount), plugincount);
1268   if (blacklistcount) {
1269     g_print (" (");
1270     g_print (ngettext ("%d blacklist entry", "%d blacklist entries",
1271             blacklistcount), blacklistcount);
1272     g_print (" not shown)");
1273   }
1274   g_print ("%s, %s", RESET_COLOR, PROP_VALUE_COLOR);
1275   g_print (ngettext ("%d feature", "%d features", featurecount), featurecount);
1276   g_print ("%s\n", RESET_COLOR);
1277 }
1278
1279 static void
1280 print_all_uri_handlers (void)
1281 {
1282   GList *plugins, *p, *features, *f;
1283
1284   plugins = gst_registry_get_plugin_list (gst_registry_get ());
1285
1286   for (p = plugins; p; p = p->next) {
1287     GstPlugin *plugin = (GstPlugin *) (p->data);
1288
1289     features =
1290         gst_registry_get_feature_list_by_plugin (gst_registry_get (),
1291         gst_plugin_get_name (plugin));
1292
1293     for (f = features; f; f = f->next) {
1294       GstPluginFeature *feature = GST_PLUGIN_FEATURE (f->data);
1295
1296       if (GST_IS_ELEMENT_FACTORY (feature)) {
1297         GstElementFactory *factory;
1298         GstElement *element;
1299
1300         factory = GST_ELEMENT_FACTORY (gst_plugin_feature_load (feature));
1301         if (!factory) {
1302           g_print ("element plugin %s couldn't be loaded\n",
1303               gst_plugin_get_name (plugin));
1304           continue;
1305         }
1306
1307         element = gst_element_factory_create (factory, NULL);
1308         if (!element) {
1309           g_print ("couldn't construct element for %s for some reason\n",
1310               GST_OBJECT_NAME (factory));
1311           gst_object_unref (factory);
1312           continue;
1313         }
1314
1315         if (GST_IS_URI_HANDLER (element)) {
1316           const gchar *const *uri_protocols;
1317           const gchar *const *protocol;
1318           const gchar *dir;
1319
1320           switch (gst_uri_handler_get_uri_type (GST_URI_HANDLER (element))) {
1321             case GST_URI_SRC:
1322               dir = "read";
1323               break;
1324             case GST_URI_SINK:
1325               dir = "write";
1326               break;
1327             default:
1328               dir = "unknown";
1329               break;
1330           }
1331
1332           g_print ("%s%s%s (%s%s%s, %srank %u%s): ",
1333               FEATURE_NAME_COLOR,
1334               gst_plugin_feature_get_name (GST_PLUGIN_FEATURE (factory)),
1335               RESET_COLOR, FEATURE_DIR_COLOR, dir, RESET_COLOR,
1336               FEATURE_RANK_COLOR,
1337               gst_plugin_feature_get_rank (GST_PLUGIN_FEATURE (factory)),
1338               RESET_COLOR);
1339
1340           uri_protocols =
1341               gst_uri_handler_get_protocols (GST_URI_HANDLER (element));
1342           for (protocol = uri_protocols; *protocol != NULL; protocol++) {
1343             if (protocol != uri_protocols)
1344               g_print (", ");
1345             g_print ("%s%s%s", FEATURE_PROTO_COLOR, *protocol, RESET_COLOR);
1346           }
1347           g_print ("\n");
1348         }
1349
1350         gst_object_unref (element);
1351         gst_object_unref (factory);
1352       }
1353     }
1354
1355     gst_plugin_feature_list_free (features);
1356   }
1357
1358   gst_plugin_list_free (plugins);
1359 }
1360
1361 static void
1362 print_plugin_info (GstPlugin * plugin)
1363 {
1364   const gchar *release_date = gst_plugin_get_release_date_string (plugin);
1365   const gchar *filename = gst_plugin_get_filename (plugin);
1366
1367   n_print ("%sPlugin Details%s:\n", HEADING_COLOR, RESET_COLOR);
1368
1369   push_indent ();
1370
1371   n_print ("%s%-25s%s%s%s%s\n", PROP_NAME_COLOR, "Name", RESET_COLOR,
1372       PROP_VALUE_COLOR, gst_plugin_get_name (plugin), RESET_COLOR);
1373   n_print ("%s%-25s%s%s%s%s\n", PROP_NAME_COLOR, "Description", RESET_COLOR,
1374       PROP_VALUE_COLOR, gst_plugin_get_description (plugin), RESET_COLOR);
1375   n_print ("%s%-25s%s%s%s%s\n", PROP_NAME_COLOR, "Filename", RESET_COLOR,
1376       PROP_VALUE_COLOR, (filename != NULL) ? filename : "(null)", RESET_COLOR);
1377   n_print ("%s%-25s%s%s%s%s\n", PROP_NAME_COLOR, "Version", RESET_COLOR,
1378       PROP_VALUE_COLOR, gst_plugin_get_version (plugin), RESET_COLOR);
1379   n_print ("%s%-25s%s%s%s%s\n", PROP_NAME_COLOR, "License", RESET_COLOR,
1380       PROP_VALUE_COLOR, gst_plugin_get_license (plugin), RESET_COLOR);
1381   n_print ("%s%-25s%s%s%s%s\n", PROP_NAME_COLOR, "Source module", RESET_COLOR,
1382       PROP_VALUE_COLOR, gst_plugin_get_source (plugin), RESET_COLOR);
1383
1384   if (release_date != NULL) {
1385     const gchar *tz = "(UTC)";
1386     gchar *str, *sep;
1387
1388 /* may be: YYYY-MM-DD or YYYY-MM-DDTHH:MMZ */
1389 /* YYYY-MM-DDTHH:MMZ => YYYY-MM-DD HH:MM (UTC) */
1390     str = g_strdup (release_date);
1391     sep = strstr (str, "T");
1392     if (sep != NULL) {
1393       *sep = ' ';
1394       sep = strstr (sep + 1, "Z");
1395       if (sep != NULL)
1396         *sep = ' ';
1397     } else {
1398       tz = "";
1399     }
1400     n_print ("%s%-25s%s%s%s%s%s\n", PROP_NAME_COLOR, "Source release date",
1401         RESET_COLOR, PROP_VALUE_COLOR, str, tz, RESET_COLOR);
1402     g_free (str);
1403   }
1404   n_print ("%s%-25s%s%s%s%s\n", PROP_NAME_COLOR, "Binary package", RESET_COLOR,
1405       PROP_VALUE_COLOR, gst_plugin_get_package (plugin), RESET_COLOR);
1406   n_print ("%s%-25s%s%s%s%s\n", PROP_NAME_COLOR, "Origin URL", RESET_COLOR,
1407       PROP_VALUE_COLOR, gst_plugin_get_origin (plugin), RESET_COLOR);
1408
1409   pop_indent ();
1410
1411   n_print ("\n");
1412 }
1413
1414 static void
1415 print_plugin_features (GstPlugin * plugin)
1416 {
1417   GList *features, *origlist;
1418   gint num_features = 0;
1419   gint num_elements = 0;
1420   gint num_tracers = 0;
1421   gint num_typefinders = 0;
1422   gint num_devproviders = 0;
1423   gint num_other = 0;
1424
1425   origlist = features =
1426       gst_registry_get_feature_list_by_plugin (gst_registry_get (),
1427       gst_plugin_get_name (plugin));
1428
1429   while (features) {
1430     GstPluginFeature *feature;
1431
1432     feature = GST_PLUGIN_FEATURE (features->data);
1433
1434     if (GST_IS_ELEMENT_FACTORY (feature)) {
1435       GstElementFactory *factory;
1436
1437       factory = GST_ELEMENT_FACTORY (feature);
1438       n_print ("  %s%s%s: %s%s%s\n", ELEMENT_NAME_COLOR,
1439           GST_OBJECT_NAME (factory), RESET_COLOR, ELEMENT_DETAIL_COLOR,
1440           gst_element_factory_get_metadata (factory,
1441               GST_ELEMENT_METADATA_LONGNAME), RESET_COLOR);
1442       num_elements++;
1443     } else if (GST_IS_TYPE_FIND_FACTORY (feature)) {
1444       GstTypeFindFactory *factory;
1445       const gchar *const *extensions;
1446
1447       factory = GST_TYPE_FIND_FACTORY (feature);
1448       extensions = gst_type_find_factory_get_extensions (factory);
1449       if (extensions) {
1450         g_print ("  %s%s%s: ", ELEMENT_NAME_COLOR,
1451             gst_plugin_feature_get_name (feature), RESET_COLOR);
1452         print_typefind_extensions (extensions, ELEMENT_DETAIL_COLOR);
1453         g_print ("\n");
1454       } else
1455         g_print ("  %s%s%s: %sno extensions%s\n", ELEMENT_NAME_COLOR,
1456             gst_plugin_feature_get_name (feature), RESET_COLOR,
1457             ELEMENT_DETAIL_COLOR, RESET_COLOR);
1458
1459       num_typefinders++;
1460     } else if (GST_IS_DEVICE_PROVIDER_FACTORY (feature)) {
1461       GstDeviceProviderFactory *factory;
1462
1463       factory = GST_DEVICE_PROVIDER_FACTORY (feature);
1464       n_print ("  %s%s%s: %s%s%s\n", ELEMENT_NAME_COLOR,
1465           GST_OBJECT_NAME (factory), RESET_COLOR, ELEMENT_DETAIL_COLOR,
1466           gst_device_provider_factory_get_metadata (factory,
1467               GST_ELEMENT_METADATA_LONGNAME), RESET_COLOR);
1468       num_devproviders++;
1469     } else if (GST_IS_TRACER_FACTORY (feature)) {
1470       n_print ("  %s%s%s (%s%s%s)\n", ELEMENT_NAME_COLOR,
1471           gst_object_get_name (GST_OBJECT (feature)), RESET_COLOR,
1472           DATATYPE_COLOR, g_type_name (G_OBJECT_TYPE (feature)), RESET_COLOR);
1473       num_tracers++;
1474     } else if (feature) {
1475       n_print ("  %s%s%s (%s%s%s)\n", ELEMENT_NAME_COLOR,
1476           gst_object_get_name (GST_OBJECT (feature)), RESET_COLOR,
1477           DATATYPE_COLOR, g_type_name (G_OBJECT_TYPE (feature)), RESET_COLOR);
1478       num_other++;
1479     }
1480     num_features++;
1481     features = g_list_next (features);
1482   }
1483
1484   gst_plugin_feature_list_free (origlist);
1485
1486   n_print ("\n");
1487   n_print ("  %s%d features%s:\n", HEADING_COLOR, num_features, RESET_COLOR);
1488   if (num_elements > 0)
1489     n_print ("  %s+--%s %s%d elements%s\n", CHILD_LINK_COLOR, RESET_COLOR,
1490         PLUGIN_FEATURE_COLOR, num_elements, RESET_COLOR);
1491   if (num_typefinders > 0)
1492     n_print ("  %s+--%s %s%d typefinders%s\n", CHILD_LINK_COLOR, RESET_COLOR,
1493         PLUGIN_FEATURE_COLOR, num_typefinders, RESET_COLOR);
1494   if (num_devproviders > 0)
1495     n_print ("  %s+--%s %s%d device providers%s\n", CHILD_LINK_COLOR,
1496         RESET_COLOR, PLUGIN_FEATURE_COLOR, num_devproviders, RESET_COLOR);
1497   if (num_tracers > 0)
1498     n_print ("  %s+--%s %s%d tracers%s\n", CHILD_LINK_COLOR, RESET_COLOR,
1499         PLUGIN_FEATURE_COLOR, num_tracers, RESET_COLOR);
1500   if (num_other > 0)
1501     n_print ("  %s+--%s %s%d other objects%s\n", CHILD_LINK_COLOR, RESET_COLOR,
1502         PLUGIN_FEATURE_COLOR, num_other, RESET_COLOR);
1503
1504   n_print ("\n");
1505 }
1506
1507 static int
1508 print_feature_info (const gchar * feature_name, gboolean print_all)
1509 {
1510   GstPluginFeature *feature;
1511   GstRegistry *registry = gst_registry_get ();
1512   int ret;
1513
1514   if ((feature = gst_registry_find_feature (registry, feature_name,
1515               GST_TYPE_ELEMENT_FACTORY))) {
1516     ret = print_element_info (feature, print_all);
1517     goto handled;
1518   }
1519   if ((feature = gst_registry_find_feature (registry, feature_name,
1520               GST_TYPE_TYPE_FIND_FACTORY))) {
1521     ret = print_typefind_info (feature, print_all);
1522     goto handled;
1523   }
1524   if ((feature = gst_registry_find_feature (registry, feature_name,
1525               GST_TYPE_TRACER_FACTORY))) {
1526     ret = print_tracer_info (feature, print_all);
1527     goto handled;
1528   }
1529
1530   /* TODO: handle DEVICE_PROVIDER_FACTORY */
1531
1532   return -1;
1533
1534 handled:
1535   gst_object_unref (feature);
1536   return ret;
1537 }
1538
1539 static int
1540 print_element_info (GstPluginFeature * feature, gboolean print_names)
1541 {
1542   GstElementFactory *factory;
1543   GstElement *element;
1544   GstPlugin *plugin;
1545   gint maxlevel = 0;
1546
1547   factory = GST_ELEMENT_FACTORY (gst_plugin_feature_load (feature));
1548   if (!factory) {
1549     g_print ("%selement plugin couldn't be loaded%s\n", DESC_COLOR,
1550         RESET_COLOR);
1551     return -1;
1552   }
1553
1554   element = gst_element_factory_create (factory, NULL);
1555   if (!element) {
1556     gst_object_unref (factory);
1557     g_print ("%scouldn't construct element for some reason%s\n", DESC_COLOR,
1558         RESET_COLOR);
1559     return -1;
1560   }
1561
1562   if (print_names)
1563     _name =
1564         g_strdup_printf ("%s%s%s: ", DATATYPE_COLOR, GST_OBJECT_NAME (factory),
1565         RESET_COLOR);
1566   else
1567     _name = NULL;
1568
1569   print_factory_details_info (factory);
1570
1571   plugin = gst_plugin_feature_get_plugin (GST_PLUGIN_FEATURE (factory));
1572   if (plugin) {
1573     print_plugin_info (plugin);
1574     gst_object_unref (plugin);
1575   }
1576
1577   print_hierarchy (G_OBJECT_TYPE (element), 0, &maxlevel);
1578   print_interfaces (G_OBJECT_TYPE (element));
1579
1580   print_pad_templates_info (element, factory);
1581   print_clocking_info (element);
1582   print_uri_handler_info (element);
1583   print_pad_info (element);
1584   print_element_properties_info (element);
1585   print_signal_info (element);
1586   print_children_info (element);
1587   print_preset_list (element);
1588
1589   gst_object_unref (element);
1590   gst_object_unref (factory);
1591   g_free (_name);
1592   return 0;
1593 }
1594
1595 static int
1596 print_typefind_info (GstPluginFeature * feature, gboolean print_names)
1597 {
1598   GstTypeFindFactory *factory;
1599   GstPlugin *plugin;
1600   GstCaps *caps;
1601   GstRank rank;
1602   char s[20];
1603   const gchar *const *extensions;
1604
1605   factory = GST_TYPE_FIND_FACTORY (gst_plugin_feature_load (feature));
1606   if (!factory) {
1607     g_print ("%stypefind plugin couldn't be loaded%s\n", DESC_COLOR,
1608         RESET_COLOR);
1609     return -1;
1610   }
1611
1612   if (print_names)
1613     _name =
1614         g_strdup_printf ("%s%s%s: ", DATATYPE_COLOR, GST_OBJECT_NAME (factory),
1615         RESET_COLOR);
1616   else
1617     _name = NULL;
1618
1619   n_print ("%sFactory Details%s:\n", HEADING_COLOR, RESET_COLOR);
1620   rank = gst_plugin_feature_get_rank (feature);
1621   n_print ("  %s%-25s%s%s (%d)%s\n", PROP_NAME_COLOR, "Rank", PROP_VALUE_COLOR,
1622       get_rank_name (s, rank), rank, RESET_COLOR);
1623   n_print ("  %s%-25s%s%s%s\n", PROP_NAME_COLOR, "Name", PROP_VALUE_COLOR,
1624       GST_OBJECT_NAME (factory), RESET_COLOR);
1625   caps = gst_type_find_factory_get_caps (factory);
1626   if (caps) {
1627     gchar *caps_str = gst_caps_to_string (factory->caps);
1628
1629     n_print ("  %s%-25s%s%s%s\n", PROP_NAME_COLOR, "Caps", PROP_VALUE_COLOR,
1630         caps_str, RESET_COLOR);
1631     g_free (caps_str);
1632   }
1633   extensions = gst_type_find_factory_get_extensions (factory);
1634   if (extensions) {
1635     n_print ("  %s%-25s%s", PROP_NAME_COLOR, "Extensions", RESET_COLOR);
1636     print_typefind_extensions (extensions, PROP_VALUE_COLOR);
1637     n_print ("\n");
1638   }
1639   n_print ("\n");
1640
1641   plugin = gst_plugin_feature_get_plugin (GST_PLUGIN_FEATURE (factory));
1642   if (plugin) {
1643     print_plugin_info (plugin);
1644     gst_object_unref (plugin);
1645   }
1646
1647   gst_object_unref (factory);
1648   g_free (_name);
1649   return 0;
1650 }
1651
1652 static int
1653 print_tracer_info (GstPluginFeature * feature, gboolean print_names)
1654 {
1655   GstTracerFactory *factory;
1656   GstTracer *tracer;
1657   GstPlugin *plugin;
1658   gint maxlevel = 0;
1659
1660   factory = GST_TRACER_FACTORY (gst_plugin_feature_load (feature));
1661   if (!factory) {
1662     g_print ("%stracer plugin couldn't be loaded%s\n", DESC_COLOR, RESET_COLOR);
1663     return -1;
1664   }
1665
1666   tracer = (GstTracer *) g_object_new (factory->type, NULL);
1667   if (!tracer) {
1668     gst_object_unref (factory);
1669     g_print ("%scouldn't construct tracer for some reason%s\n", DESC_COLOR,
1670         RESET_COLOR);
1671     return -1;
1672   }
1673
1674   if (print_names)
1675     _name =
1676         g_strdup_printf ("%s%s%s: ", DATATYPE_COLOR, GST_OBJECT_NAME (factory),
1677         RESET_COLOR);
1678   else
1679     _name = NULL;
1680
1681   n_print ("%sFactory Details%s:\n", HEADING_COLOR, RESET_COLOR);
1682   n_print ("  %s%-25s%s%s%s\n", PROP_NAME_COLOR, "Name", PROP_VALUE_COLOR,
1683       GST_OBJECT_NAME (factory), RESET_COLOR);
1684   n_print ("\n");
1685
1686   plugin = gst_plugin_feature_get_plugin (GST_PLUGIN_FEATURE (factory));
1687   if (plugin) {
1688     print_plugin_info (plugin);
1689     gst_object_unref (plugin);
1690   }
1691
1692   print_hierarchy (G_OBJECT_TYPE (tracer), 0, &maxlevel);
1693   print_interfaces (G_OBJECT_TYPE (tracer));
1694
1695   /* TODO: list what hooks it registers
1696    * - the data is available in gsttracerutils, we need to iterate the
1697    *   _priv_tracers hashtable for each probe and then check the list of hooks
1698    *  for each probe whether hook->tracer == tracer :/
1699    */
1700
1701   /* TODO: list what records it emits
1702    * - in class_init tracers can create GstTracerRecord instances
1703    * - those only get logged right now and there is no association with the
1704    *   tracer that created them
1705    * - we'd need to add them to GstTracerFactory
1706    *   gst_tracer_class_add_record (klass, record);
1707    *   - needs work in gstregistrychunks to (de)serialize specs
1708    *   - gst_tracer_register() would need to iterate the list of records and
1709    *     copy the record->spec into the factory
1710    */
1711
1712   gst_object_unref (tracer);
1713   gst_object_unref (factory);
1714   g_free (_name);
1715   return 0;
1716 }
1717
1718 /* NOTE: Not coloring output from automatic install functions, as their output
1719  * is meant for machines, not humans.
1720  */
1721 static void
1722 print_plugin_automatic_install_info_codecs (GstElementFactory * factory)
1723 {
1724   GstPadDirection direction;
1725   const gchar *type_name;
1726   const gchar *klass;
1727   const GList *static_templates, *l;
1728   GstCaps *caps = NULL;
1729   guint i, num;
1730
1731   klass =
1732       gst_element_factory_get_metadata (factory, GST_ELEMENT_METADATA_KLASS);
1733   g_return_if_fail (klass != NULL);
1734
1735   if (strstr (klass, "Demuxer") ||
1736       strstr (klass, "Decoder") ||
1737       strstr (klass, "Depay") || strstr (klass, "Parser")) {
1738     type_name = "decoder";
1739     direction = GST_PAD_SINK;
1740   } else if (strstr (klass, "Muxer") ||
1741       strstr (klass, "Encoder") || strstr (klass, "Pay")) {
1742     type_name = "encoder";
1743     direction = GST_PAD_SRC;
1744   } else {
1745     return;
1746   }
1747
1748   /* decoder/demuxer sink pads should always be static and there should only
1749    * be one, the same applies to encoders/muxers and source pads */
1750   static_templates = gst_element_factory_get_static_pad_templates (factory);
1751   for (l = static_templates; l != NULL; l = l->next) {
1752     GstStaticPadTemplate *tmpl = NULL;
1753
1754     tmpl = (GstStaticPadTemplate *) l->data;
1755     if (tmpl->direction == direction) {
1756       caps = gst_static_pad_template_get_caps (tmpl);
1757       break;
1758     }
1759   }
1760
1761   if (caps == NULL) {
1762     g_printerr ("Couldn't find static pad template for %s '%s'\n",
1763         type_name, GST_OBJECT_NAME (factory));
1764     return;
1765   }
1766
1767   caps = gst_caps_make_writable (caps);
1768   num = gst_caps_get_size (caps);
1769   for (i = 0; i < num; ++i) {
1770     GstStructure *s;
1771     gchar *s_str;
1772
1773     s = gst_caps_get_structure (caps, i);
1774     /* remove fields that are almost always just MIN-MAX of some sort
1775      * in order to make the caps look less messy */
1776     gst_structure_remove_field (s, "pixel-aspect-ratio");
1777     gst_structure_remove_field (s, "framerate");
1778     gst_structure_remove_field (s, "channels");
1779     gst_structure_remove_field (s, "width");
1780     gst_structure_remove_field (s, "height");
1781     gst_structure_remove_field (s, "rate");
1782     gst_structure_remove_field (s, "depth");
1783     gst_structure_remove_field (s, "clock-rate");
1784     s_str = gst_structure_to_string (s);
1785     g_print ("%s-%s\n", type_name, s_str);
1786     g_free (s_str);
1787   }
1788   gst_caps_unref (caps);
1789 }
1790
1791 static void
1792 print_plugin_automatic_install_info_protocols (GstElementFactory * factory)
1793 {
1794   const gchar *const *protocols;
1795
1796   protocols = gst_element_factory_get_uri_protocols (factory);
1797   if (protocols != NULL && *protocols != NULL) {
1798     switch (gst_element_factory_get_uri_type (factory)) {
1799       case GST_URI_SINK:
1800         while (*protocols != NULL) {
1801           g_print ("urisink-%s\n", *protocols);
1802           ++protocols;
1803         }
1804         break;
1805       case GST_URI_SRC:
1806         while (*protocols != NULL) {
1807           g_print ("urisource-%s\n", *protocols);
1808           ++protocols;
1809         }
1810         break;
1811       default:
1812         break;
1813     }
1814   }
1815 }
1816
1817 static void
1818 print_plugin_automatic_install_info (GstPlugin * plugin)
1819 {
1820   GList *features, *l;
1821
1822   /* not interested in typefind factories, only element factories */
1823   features = gst_registry_get_feature_list (gst_registry_get (),
1824       GST_TYPE_ELEMENT_FACTORY);
1825
1826   for (l = features; l != NULL; l = l->next) {
1827     GstPluginFeature *feature;
1828     GstPlugin *feature_plugin;
1829
1830     feature = GST_PLUGIN_FEATURE (l->data);
1831
1832     /* only interested in the ones that are in the plugin we just loaded */
1833     feature_plugin = gst_plugin_feature_get_plugin (feature);
1834     if (feature_plugin == plugin) {
1835       GstElementFactory *factory;
1836
1837       g_print ("element-%s\n", gst_plugin_feature_get_name (feature));
1838
1839       factory = GST_ELEMENT_FACTORY (feature);
1840       print_plugin_automatic_install_info_protocols (factory);
1841       print_plugin_automatic_install_info_codecs (factory);
1842     }
1843     if (feature_plugin)
1844       gst_object_unref (feature_plugin);
1845   }
1846
1847   g_list_foreach (features, (GFunc) gst_object_unref, NULL);
1848   g_list_free (features);
1849 }
1850
1851 static void
1852 print_all_plugin_automatic_install_info (void)
1853 {
1854   GList *plugins, *orig_plugins;
1855
1856   orig_plugins = plugins = gst_registry_get_plugin_list (gst_registry_get ());
1857   while (plugins) {
1858     GstPlugin *plugin;
1859
1860     plugin = (GstPlugin *) (plugins->data);
1861     plugins = g_list_next (plugins);
1862
1863     print_plugin_automatic_install_info (plugin);
1864   }
1865   gst_plugin_list_free (orig_plugins);
1866 }
1867
1868 #ifdef G_OS_UNIX
1869 static void
1870 redirect_stdout (void)
1871 {
1872   int pipefd[2];
1873   pid_t child_id;
1874
1875   if (pipe (pipefd) == -1) {
1876     g_printerr (_("Error creating pipe: %s\n"), g_strerror (errno));
1877     exit (-1);
1878   }
1879
1880   child_id = fork ();
1881   if (child_id == -1) {
1882     g_printerr (_("Error forking: %s\n"), g_strerror (errno));
1883     exit (-1);
1884   }
1885
1886   if (child_id == 0) {
1887     char **argv;
1888     const char *pager;
1889     int ret;
1890
1891     pager = g_getenv ("PAGER");
1892     if (pager == NULL)
1893       pager = DEFAULT_PAGER;
1894     argv = g_strsplit (pager, " ", 0);
1895
1896     /* child process */
1897     close (pipefd[1]);
1898     dup2 (pipefd[0], STDIN_FILENO);
1899     close (pipefd[0]);
1900
1901     ret = execvp (argv[0], argv);
1902     g_strfreev (argv);
1903     if (ret == -1) {
1904       /* No less? Let's just dump everything to stdout then */
1905       char buffer[1024];
1906
1907       do {
1908         int bytes_written;
1909
1910         if ((ret = read (STDIN_FILENO, buffer, sizeof (buffer))) == -1) {
1911           if (errno == EINTR || errno == EAGAIN) {
1912             continue;
1913           }
1914
1915           g_printerr (_("Error reading from console: %s\n"),
1916               g_strerror (errno));
1917           exit (-1);
1918         }
1919
1920         do {
1921           bytes_written = write (STDOUT_FILENO, buffer, ret);
1922         } while (bytes_written == -1 && (errno == EINTR || errno == EAGAIN));
1923
1924         if (bytes_written < 0) {
1925           g_printerr (_("Error writing to console: %s\n"), g_strerror (errno));
1926           exit (-1);
1927         }
1928       } while (ret > 0);
1929
1930       exit (0);
1931     }
1932   } else {
1933     close (pipefd[0]);
1934     dup2 (pipefd[1], STDOUT_FILENO);
1935     if (isatty (STDERR_FILENO))
1936       dup2 (pipefd[1], STDERR_FILENO);
1937     close (pipefd[1]);
1938     close (STDIN_FILENO);
1939   }
1940 }
1941 #endif
1942
1943 int
1944 main (int argc, char *argv[])
1945 {
1946   gboolean print_all = FALSE;
1947   gboolean do_print_blacklist = FALSE;
1948   gboolean plugin_name = FALSE;
1949   gboolean print_aii = FALSE;
1950   gboolean uri_handlers = FALSE;
1951   gboolean check_exists = FALSE;
1952   gchar *min_version = NULL;
1953   guint minver_maj = GST_VERSION_MAJOR;
1954   guint minver_min = GST_VERSION_MINOR;
1955   guint minver_micro = 0;
1956   gchar *types = NULL;
1957   const gchar *no_colors;
1958 #ifndef GST_DISABLE_OPTION_PARSING
1959   GOptionEntry options[] = {
1960     {"print-all", 'a', 0, G_OPTION_ARG_NONE, &print_all,
1961         N_("Print all elements"), NULL},
1962     {"print-blacklist", 'b', 0, G_OPTION_ARG_NONE, &do_print_blacklist,
1963         N_("Print list of blacklisted files"), NULL},
1964     {"print-plugin-auto-install-info", '\0', 0, G_OPTION_ARG_NONE, &print_aii,
1965         N_("Print a machine-parsable list of features the specified plugin "
1966               "or all plugins provide.\n                                       "
1967               "Useful in connection with external automatic plugin "
1968               "installation mechanisms"), NULL},
1969     {"plugin", '\0', 0, G_OPTION_ARG_NONE, &plugin_name,
1970         N_("List the plugin contents"), NULL},
1971     {"types", 't', 0, G_OPTION_ARG_STRING, &types,
1972         N_("A slashes ('/') separated list of types of elements (also known "
1973               "as klass) to list. (unordered)"), NULL},
1974     {"exists", '\0', 0, G_OPTION_ARG_NONE, &check_exists,
1975         N_("Check if the specified element or plugin exists"), NULL},
1976     {"atleast-version", '\0', 0, G_OPTION_ARG_STRING, &min_version,
1977         N_
1978           ("When checking if an element or plugin exists, also check that its "
1979               "version is at least the version specified"), NULL},
1980     {"uri-handlers", 'u', 0, G_OPTION_ARG_NONE, &uri_handlers,
1981           N_
1982           ("Print supported URI schemes, with the elements that implement them"),
1983         NULL},
1984     {"no-colors", '\0', G_OPTION_FLAG_REVERSE, G_OPTION_ARG_NONE,
1985           &colored_output,
1986           N_
1987           ("Disable colors in output. You can also achieve the same by setting"
1988               "'GST_INSPECT_NO_COLORS' environment variable to any value."),
1989         NULL},
1990     GST_TOOLS_GOPTION_VERSION,
1991     {NULL}
1992   };
1993   GOptionContext *ctx;
1994   GError *err = NULL;
1995 #endif
1996
1997   setlocale (LC_ALL, "");
1998
1999 #ifdef ENABLE_NLS
2000   bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
2001   bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
2002   textdomain (GETTEXT_PACKAGE);
2003 #endif
2004
2005   /* avoid glib warnings when inspecting deprecated properties */
2006   g_setenv ("G_ENABLE_DIAGNOSTIC", "0", FALSE);
2007
2008   g_set_prgname ("gst-inspect-" GST_API_VERSION);
2009
2010 #ifndef GST_DISABLE_OPTION_PARSING
2011   ctx = g_option_context_new ("[ELEMENT-NAME | PLUGIN-NAME]");
2012   g_option_context_add_main_entries (ctx, options, GETTEXT_PACKAGE);
2013   g_option_context_add_group (ctx, gst_init_get_option_group ());
2014   if (!g_option_context_parse (ctx, &argc, &argv, &err)) {
2015     g_printerr ("Error initializing: %s\n", err->message);
2016     g_clear_error (&err);
2017     g_option_context_free (ctx);
2018     return -1;
2019   }
2020   g_option_context_free (ctx);
2021 #else
2022   gst_init (&argc, &argv);
2023 #endif
2024
2025   no_colors = g_getenv ("GST_INSPECT_NO_COLORS");
2026   /* We only support truecolor */
2027   colored_output &= (no_colors == NULL);
2028
2029 #ifdef G_OS_UNIX
2030   if (isatty (STDOUT_FILENO)) {
2031     redirect_stdout ();
2032   }
2033 #endif
2034
2035   gst_tools_print_version ();
2036
2037   if (print_all && argc > 1) {
2038     g_printerr ("-a requires no extra arguments\n");
2039     return -1;
2040   }
2041
2042   if (uri_handlers && argc > 1) {
2043     g_printerr ("-u requires no extra arguments\n");
2044     return -1;
2045   }
2046
2047   /* --atleast-version implies --exists */
2048   if (min_version != NULL) {
2049     if (sscanf (min_version, "%u.%u.%u", &minver_maj, &minver_min,
2050             &minver_micro) < 2) {
2051       g_printerr ("Can't parse version '%s' passed to --atleast-version\n",
2052           min_version);
2053       return -1;
2054     }
2055     check_exists = TRUE;
2056   }
2057
2058   if (check_exists) {
2059     int exit_code;
2060
2061     if (argc == 1) {
2062       g_printerr ("--exists requires an extra command line argument\n");
2063       exit_code = -1;
2064     } else {
2065       if (!plugin_name) {
2066         GstPluginFeature *feature;
2067
2068         feature = gst_registry_lookup_feature (gst_registry_get (), argv[1]);
2069         if (feature != NULL && gst_plugin_feature_check_version (feature,
2070                 minver_maj, minver_min, minver_micro)) {
2071           exit_code = 0;
2072         } else {
2073           exit_code = 1;
2074         }
2075
2076         if (feature)
2077           gst_object_unref (feature);
2078       } else {
2079         /* FIXME: support checking for plugins too */
2080         g_printerr ("Checking for plugins is not supported yet\n");
2081         exit_code = -1;
2082       }
2083     }
2084     return exit_code;
2085   }
2086
2087   /* if no arguments, print out list of elements */
2088   if (uri_handlers) {
2089     print_all_uri_handlers ();
2090   } else if (argc == 1 || print_all) {
2091     if (do_print_blacklist)
2092       print_blacklist ();
2093     else {
2094       if (print_aii)
2095         print_all_plugin_automatic_install_info ();
2096       else
2097         print_element_list (print_all, types);
2098     }
2099   } else {
2100     /* else we try to get a factory */
2101     const char *arg = argv[argc - 1];
2102     int retval = -1;
2103
2104     if (!plugin_name) {
2105       retval = print_feature_info (arg, print_all);
2106     }
2107
2108     /* otherwise check if it's a plugin */
2109     if (retval) {
2110       GstPlugin *plugin = gst_registry_find_plugin (gst_registry_get (), arg);
2111
2112       /* if there is such a plugin, print out info */
2113       if (plugin) {
2114         if (print_aii) {
2115           print_plugin_automatic_install_info (plugin);
2116         } else {
2117           print_plugin_info (plugin);
2118           print_plugin_features (plugin);
2119         }
2120       } else {
2121         GError *error = NULL;
2122
2123         if (g_file_test (arg, G_FILE_TEST_EXISTS)) {
2124           plugin = gst_plugin_load_file (arg, &error);
2125
2126           if (plugin) {
2127             if (print_aii) {
2128               print_plugin_automatic_install_info (plugin);
2129             } else {
2130               print_plugin_info (plugin);
2131               print_plugin_features (plugin);
2132             }
2133           } else {
2134             g_printerr (_("Could not load plugin file: %s\n"), error->message);
2135             g_clear_error (&error);
2136             return -1;
2137           }
2138         } else {
2139           g_printerr (_("No such element or plugin '%s'\n"), arg);
2140           return -1;
2141         }
2142       }
2143     }
2144   }
2145
2146 #ifdef G_OS_UNIX
2147   fflush (stdout);
2148   fflush (stderr);
2149   /* So that the pipe we create in redirect_stdout() is closed */
2150   close (STDOUT_FILENO);
2151   close (STDERR_FILENO);
2152   wait (NULL);
2153 #endif
2154
2155   return 0;
2156 }