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