tools: gst-inspect: prettify type names for strings
[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     found_signals = NULL;
1099
1100     /* For elements that have sometimes pads, also list a few useful GstElement
1101      * signals. Put these first, so element-specific ones come later. */
1102     if (k == 0 && has_sometimes_template (element)) {
1103       query = g_new0 (GSignalQuery, 1);
1104       g_signal_query (g_signal_lookup ("pad-added", GST_TYPE_ELEMENT), query);
1105       found_signals = g_slist_append (found_signals, query);
1106       query = g_new0 (GSignalQuery, 1);
1107       g_signal_query (g_signal_lookup ("pad-removed", GST_TYPE_ELEMENT), query);
1108       found_signals = g_slist_append (found_signals, query);
1109       query = g_new0 (GSignalQuery, 1);
1110       g_signal_query (g_signal_lookup ("no-more-pads", GST_TYPE_ELEMENT),
1111           query);
1112       found_signals = g_slist_append (found_signals, query);
1113     }
1114
1115     for (type = G_OBJECT_TYPE (element); type; type = g_type_parent (type)) {
1116       if (type == GST_TYPE_ELEMENT || type == GST_TYPE_OBJECT)
1117         break;
1118
1119       if (type == GST_TYPE_BIN && G_OBJECT_TYPE (element) != GST_TYPE_BIN)
1120         continue;
1121
1122       signals = g_signal_list_ids (type, &nsignals);
1123       for (i = 0; i < nsignals; i++) {
1124         query = g_new0 (GSignalQuery, 1);
1125         g_signal_query (signals[i], query);
1126
1127         if ((k == 0 && !(query->signal_flags & G_SIGNAL_ACTION)) ||
1128             (k == 1 && (query->signal_flags & G_SIGNAL_ACTION)))
1129           found_signals = g_slist_append (found_signals, query);
1130         else
1131           g_free (query);
1132       }
1133       g_free (signals);
1134       signals = NULL;
1135     }
1136
1137     if (found_signals) {
1138       n_print ("\n");
1139       if (k == 0)
1140         n_print ("%sElement Signals%s:\n", HEADING_COLOR, RESET_COLOR);
1141       else
1142         n_print ("%sElement Actions%s:\n", HEADING_COLOR, RESET_COLOR);
1143       n_print ("\n");
1144     } else {
1145       continue;
1146     }
1147
1148     for (l = found_signals; l; l = l->next) {
1149       gchar *indent;
1150       const gchar *pmark;
1151       const gchar *retval_type_name;
1152       int indent_len;
1153
1154       query = (GSignalQuery *) l->data;
1155       retval_type_name = pretty_type_name (query->return_type, &pmark);
1156       indent_len =
1157           strlen (query->signal_name) + strlen (retval_type_name) + 24 +
1158           strlen (pmark) - 1;
1159
1160       indent = g_new0 (gchar, indent_len + 1);
1161       memset (indent, ' ', indent_len);
1162
1163       n_print ("  %s\"%s\"%s :  %s%s%s%suser_function%s (%s%s%s * object%s",
1164           PROP_NAME_COLOR, query->signal_name, RESET_COLOR,
1165           DATATYPE_COLOR, retval_type_name, PROP_VALUE_COLOR,
1166           pmark, RESET_COLOR, DATATYPE_COLOR, g_type_name (type),
1167           PROP_VALUE_COLOR, RESET_COLOR);
1168
1169       for (j = 0; j < query->n_params; j++) {
1170         const gchar *type_name, *asterisk, *const_prefix;
1171
1172         type_name = pretty_type_name (query->param_types[j], &asterisk);
1173
1174         /* Add const prefix for string and string array arguments */
1175         if (g_str_equal (type_name, "gchar") && strchr (asterisk, '*')) {
1176           const_prefix = "const ";
1177         } else {
1178           const_prefix = "";
1179         }
1180
1181         g_print (",\n");
1182         n_print ("%s%s%s%s%s%sarg%d%s", indent, DATATYPE_COLOR, const_prefix,
1183             type_name, PROP_VALUE_COLOR, asterisk, j, RESET_COLOR);
1184       }
1185
1186       if (k == 0) {
1187         g_print (",\n");
1188         n_print ("%s%sgpointer %suser_data%s);\n", indent, DATATYPE_COLOR,
1189             PROP_VALUE_COLOR, RESET_COLOR);
1190       } else
1191         g_print (");\n");
1192
1193       g_free (indent);
1194       g_print ("\n");
1195     }
1196
1197     if (found_signals) {
1198       g_slist_foreach (found_signals, (GFunc) g_free, NULL);
1199       g_slist_free (found_signals);
1200     }
1201   }
1202 }
1203
1204 static void
1205 print_children_info (GstElement * element)
1206 {
1207   GList *children;
1208
1209   if (!GST_IS_BIN (element))
1210     return;
1211
1212   children = (GList *) GST_BIN (element)->children;
1213   if (children) {
1214     n_print ("\n");
1215     n_print ("%sChildren%s:\n", HEADING_COLOR, RESET_COLOR);
1216   }
1217
1218   while (children) {
1219     n_print ("  %s%s%s\n", DATATYPE_COLOR,
1220         GST_ELEMENT_NAME (GST_ELEMENT (children->data)), RESET_COLOR);
1221     children = g_list_next (children);
1222   }
1223 }
1224
1225 static void
1226 print_preset_list (GstElement * element)
1227 {
1228   gchar **presets, **preset;
1229
1230   if (!GST_IS_PRESET (element))
1231     return;
1232
1233   presets = gst_preset_get_preset_names (GST_PRESET (element));
1234   if (presets && *presets) {
1235     n_print ("\n");
1236     n_print ("%sPresets%s:\n", HEADING_COLOR, RESET_COLOR);
1237     for (preset = presets; *preset; preset++) {
1238       gchar *comment = NULL;
1239       n_print ("  \"%s\"", *preset);
1240
1241       if (gst_preset_get_meta (GST_PRESET (element), *preset, "comment",
1242               &comment) && comment)
1243         g_print (": %s", comment);
1244       g_free (comment);
1245       g_print ("\n");
1246     }
1247     g_strfreev (presets);
1248   }
1249 }
1250
1251 static gint
1252 gst_plugin_name_compare_func (gconstpointer p1, gconstpointer p2)
1253 {
1254   return strcmp (gst_plugin_get_name ((GstPlugin *) p1),
1255       gst_plugin_get_name ((GstPlugin *) p2));
1256 }
1257
1258 static gint
1259 gst_plugin_feature_name_compare_func (gconstpointer p1, gconstpointer p2)
1260 {
1261   return strcmp (GST_OBJECT_NAME (p1), GST_OBJECT_NAME (p2));
1262 }
1263
1264 static void
1265 print_blacklist (void)
1266 {
1267   GList *plugins, *cur;
1268   gint count = 0;
1269
1270   g_print ("%s%s%s\n", HEADING_COLOR, _("Blacklisted files:"), RESET_COLOR);
1271
1272   plugins = gst_registry_get_plugin_list (gst_registry_get ());
1273   if (sort_output == SORT_TYPE_NAME)
1274     plugins = g_list_sort (plugins, gst_plugin_name_compare_func);
1275
1276   for (cur = plugins; cur != NULL; cur = g_list_next (cur)) {
1277     GstPlugin *plugin = (GstPlugin *) (cur->data);
1278     if (GST_OBJECT_FLAG_IS_SET (plugin, GST_PLUGIN_FLAG_BLACKLISTED)) {
1279       g_print ("  %s\n", gst_plugin_get_name (plugin));
1280       count++;
1281     }
1282   }
1283
1284   g_print ("\n");
1285   g_print (_("%sTotal count%s: %s"), PROP_NAME_COLOR, RESET_COLOR,
1286       PROP_VALUE_COLOR);
1287   g_print (ngettext ("%d blacklisted file", "%d blacklisted files", count),
1288       count);
1289   g_print ("%s\n", RESET_COLOR);
1290   gst_plugin_list_free (plugins);
1291 }
1292
1293 static void
1294 print_typefind_extensions (const gchar * const *extensions, const gchar * color)
1295 {
1296   guint i = 0;
1297
1298   while (extensions[i]) {
1299     g_print ("%s%s%s%s", i > 0 ? ", " : "", color, extensions[i], RESET_COLOR);
1300     i++;
1301   }
1302 }
1303
1304 static void
1305 print_element_list (gboolean print_all, gchar * ftypes)
1306 {
1307   int plugincount = 0, featurecount = 0, blacklistcount = 0;
1308   GList *plugins, *orig_plugins;
1309   gchar **types = NULL;
1310
1311   if (ftypes) {
1312     gint i;
1313
1314     types = g_strsplit (ftypes, "/", -1);
1315     for (i = 0; types[i]; i++)
1316       *types[i] = g_ascii_toupper (*types[i]);
1317
1318   }
1319
1320   orig_plugins = plugins = gst_registry_get_plugin_list (gst_registry_get ());
1321   if (sort_output == SORT_TYPE_NAME)
1322     plugins = g_list_sort (plugins, gst_plugin_name_compare_func);
1323   while (plugins) {
1324     GList *features, *orig_features;
1325     GstPlugin *plugin;
1326
1327     plugin = (GstPlugin *) (plugins->data);
1328     plugins = g_list_next (plugins);
1329     plugincount++;
1330
1331     if (GST_OBJECT_FLAG_IS_SET (plugin, GST_PLUGIN_FLAG_BLACKLISTED)) {
1332       blacklistcount++;
1333       continue;
1334     }
1335
1336     orig_features = features =
1337         gst_registry_get_feature_list_by_plugin (gst_registry_get (),
1338         gst_plugin_get_name (plugin));
1339     if (sort_output == SORT_TYPE_NAME)
1340       features = g_list_sort (features, gst_plugin_feature_name_compare_func);
1341     while (features) {
1342       GstPluginFeature *feature;
1343
1344       if (G_UNLIKELY (features->data == NULL))
1345         goto next;
1346       feature = GST_PLUGIN_FEATURE (features->data);
1347       featurecount++;
1348
1349       if (GST_IS_ELEMENT_FACTORY (feature)) {
1350         const gchar *klass;
1351         GstElementFactory *factory;
1352
1353         factory = GST_ELEMENT_FACTORY (feature);
1354         if (types) {
1355           gint i;
1356           gboolean all_found = TRUE;
1357
1358           klass =
1359               gst_element_factory_get_metadata (factory,
1360               GST_ELEMENT_METADATA_KLASS);
1361           for (i = 0; types[i]; i++) {
1362             if (!strstr (klass, types[i])) {
1363               all_found = FALSE;
1364               break;
1365             }
1366           }
1367
1368           if (!all_found)
1369             goto next;
1370         }
1371         if (print_all)
1372           print_element_info (feature, TRUE);
1373         else
1374           g_print ("%s%s%s:  %s%s%s: %s%s%s\n", PLUGIN_NAME_COLOR,
1375               gst_plugin_get_name (plugin), RESET_COLOR, ELEMENT_NAME_COLOR,
1376               GST_OBJECT_NAME (factory), RESET_COLOR, ELEMENT_DETAIL_COLOR,
1377               gst_element_factory_get_metadata (factory,
1378                   GST_ELEMENT_METADATA_LONGNAME), RESET_COLOR);
1379       } else if (GST_IS_TYPE_FIND_FACTORY (feature)) {
1380         GstTypeFindFactory *factory;
1381         const gchar *const *extensions;
1382
1383         if (types)
1384           goto next;
1385         factory = GST_TYPE_FIND_FACTORY (feature);
1386         if (!print_all)
1387           g_print ("%s%s%s: %s%s%s: ", PLUGIN_NAME_COLOR,
1388               gst_plugin_get_name (plugin), RESET_COLOR, ELEMENT_NAME_COLOR,
1389               gst_plugin_feature_get_name (feature), RESET_COLOR);
1390
1391         extensions = gst_type_find_factory_get_extensions (factory);
1392         if (extensions != NULL) {
1393           if (!print_all) {
1394             print_typefind_extensions (extensions, ELEMENT_DETAIL_COLOR);
1395             g_print ("\n");
1396           }
1397         } else {
1398           if (!print_all)
1399             g_print ("%sno extensions%s\n", ELEMENT_DETAIL_COLOR, RESET_COLOR);
1400         }
1401       } else {
1402         if (types)
1403           goto next;
1404         if (!print_all)
1405           n_print ("%s%s%s:  %s%s%s (%s%s%s)\n", PLUGIN_NAME_COLOR,
1406               gst_plugin_get_name (plugin), RESET_COLOR, ELEMENT_NAME_COLOR,
1407               GST_OBJECT_NAME (feature), RESET_COLOR, ELEMENT_DETAIL_COLOR,
1408               g_type_name (G_OBJECT_TYPE (feature)), RESET_COLOR);
1409       }
1410
1411     next:
1412       features = g_list_next (features);
1413     }
1414
1415     gst_plugin_feature_list_free (orig_features);
1416   }
1417
1418   gst_plugin_list_free (orig_plugins);
1419   g_strfreev (types);
1420
1421   g_print ("\n");
1422   g_print (_("%sTotal count%s: %s"), PROP_NAME_COLOR, RESET_COLOR,
1423       PROP_VALUE_COLOR);
1424   g_print (ngettext ("%d plugin", "%d plugins", plugincount), plugincount);
1425   if (blacklistcount) {
1426     g_print (" (");
1427     g_print (ngettext ("%d blacklist entry", "%d blacklist entries",
1428             blacklistcount), blacklistcount);
1429     g_print (" not shown)");
1430   }
1431   g_print ("%s, %s", RESET_COLOR, PROP_VALUE_COLOR);
1432   g_print (ngettext ("%d feature", "%d features", featurecount), featurecount);
1433   g_print ("%s\n", RESET_COLOR);
1434 }
1435
1436 static void
1437 print_all_uri_handlers (void)
1438 {
1439   GList *plugins, *p, *features, *f;
1440
1441   plugins = gst_registry_get_plugin_list (gst_registry_get ());
1442   if (sort_output == SORT_TYPE_NAME)
1443     plugins = g_list_sort (plugins, gst_plugin_name_compare_func);
1444   for (p = plugins; p; p = p->next) {
1445     GstPlugin *plugin = (GstPlugin *) (p->data);
1446
1447     features =
1448         gst_registry_get_feature_list_by_plugin (gst_registry_get (),
1449         gst_plugin_get_name (plugin));
1450     if (sort_output == SORT_TYPE_NAME)
1451       features = g_list_sort (features, gst_plugin_feature_name_compare_func);
1452     for (f = features; f; f = f->next) {
1453       GstPluginFeature *feature = GST_PLUGIN_FEATURE (f->data);
1454
1455       if (GST_IS_ELEMENT_FACTORY (feature)) {
1456         GstElementFactory *factory;
1457         GstElement *element;
1458
1459         factory = GST_ELEMENT_FACTORY (gst_plugin_feature_load (feature));
1460         if (!factory) {
1461           g_print ("element plugin %s couldn't be loaded\n",
1462               gst_plugin_get_name (plugin));
1463           continue;
1464         }
1465
1466         element = gst_element_factory_create (factory, NULL);
1467         if (!element) {
1468           g_print ("couldn't construct element for %s for some reason\n",
1469               GST_OBJECT_NAME (factory));
1470           gst_object_unref (factory);
1471           continue;
1472         }
1473
1474         if (GST_IS_URI_HANDLER (element)) {
1475           const gchar *const *uri_protocols;
1476           const gchar *const *protocol;
1477           const gchar *dir;
1478
1479           switch (gst_uri_handler_get_uri_type (GST_URI_HANDLER (element))) {
1480             case GST_URI_SRC:
1481               dir = "read";
1482               break;
1483             case GST_URI_SINK:
1484               dir = "write";
1485               break;
1486             default:
1487               dir = "unknown";
1488               break;
1489           }
1490
1491           g_print ("%s%s%s (%s%s%s, %srank %u%s): ",
1492               FEATURE_NAME_COLOR,
1493               gst_plugin_feature_get_name (GST_PLUGIN_FEATURE (factory)),
1494               RESET_COLOR, FEATURE_DIR_COLOR, dir, RESET_COLOR,
1495               FEATURE_RANK_COLOR,
1496               gst_plugin_feature_get_rank (GST_PLUGIN_FEATURE (factory)),
1497               RESET_COLOR);
1498
1499           uri_protocols =
1500               gst_uri_handler_get_protocols (GST_URI_HANDLER (element));
1501           for (protocol = uri_protocols; *protocol != NULL; protocol++) {
1502             if (protocol != uri_protocols)
1503               g_print (", ");
1504             g_print ("%s%s%s", FEATURE_PROTO_COLOR, *protocol, RESET_COLOR);
1505           }
1506           g_print ("\n");
1507         }
1508
1509         gst_object_unref (element);
1510         gst_object_unref (factory);
1511       }
1512     }
1513
1514     gst_plugin_feature_list_free (features);
1515   }
1516
1517   gst_plugin_list_free (plugins);
1518 }
1519
1520 static void
1521 print_plugin_info (GstPlugin * plugin)
1522 {
1523   const gchar *plugin_name = gst_plugin_get_name (plugin);
1524   const gchar *release_date = gst_plugin_get_release_date_string (plugin);
1525   const gchar *filename = gst_plugin_get_filename (plugin);
1526   const gchar *module = gst_plugin_get_source (plugin);
1527   const gchar *origin = gst_plugin_get_origin (plugin);
1528
1529   n_print ("%sPlugin Details%s:\n", HEADING_COLOR, RESET_COLOR);
1530
1531   push_indent ();
1532
1533   n_print ("%s%-25s%s%s%s%s\n", PROP_NAME_COLOR, "Name", RESET_COLOR,
1534       PROP_VALUE_COLOR, plugin_name, RESET_COLOR);
1535   n_print ("%s%-25s%s%s%s%s\n", PROP_NAME_COLOR, "Description", RESET_COLOR,
1536       PROP_VALUE_COLOR, gst_plugin_get_description (plugin), RESET_COLOR);
1537   n_print ("%s%-25s%s%s%s%s\n", PROP_NAME_COLOR, "Filename", RESET_COLOR,
1538       PROP_VALUE_COLOR, (filename != NULL) ? filename : "(null)", RESET_COLOR);
1539   n_print ("%s%-25s%s%s%s%s\n", PROP_NAME_COLOR, "Version", RESET_COLOR,
1540       PROP_VALUE_COLOR, gst_plugin_get_version (plugin), RESET_COLOR);
1541   n_print ("%s%-25s%s%s%s%s\n", PROP_NAME_COLOR, "License", RESET_COLOR,
1542       PROP_VALUE_COLOR, gst_plugin_get_license (plugin), RESET_COLOR);
1543   n_print ("%s%-25s%s%s%s%s\n", PROP_NAME_COLOR, "Source module", RESET_COLOR,
1544       PROP_VALUE_COLOR, module, RESET_COLOR);
1545
1546   /* gst-plugins-rs has per-plugin module names so need to check origin there */
1547   if (g_strv_contains (gstreamer_modules, module)
1548       || (origin != NULL && g_str_has_suffix (origin, "/gst-plugins-rs"))) {
1549     n_print ("%s%-25s%s%s%s/%s/%s\n", PROP_NAME_COLOR, "Documentation",
1550         RESET_COLOR, PROP_VALUE_COLOR, GST_DOC_BASE_URL, plugin_name,
1551         RESET_COLOR);
1552   }
1553
1554   if (release_date != NULL) {
1555     const gchar *tz = "(UTC)";
1556     gchar *str, *sep;
1557
1558 /* may be: YYYY-MM-DD or YYYY-MM-DDTHH:MMZ */
1559 /* YYYY-MM-DDTHH:MMZ => YYYY-MM-DD HH:MM (UTC) */
1560     str = g_strdup (release_date);
1561     sep = strstr (str, "T");
1562     if (sep != NULL) {
1563       *sep = ' ';
1564       sep = strstr (sep + 1, "Z");
1565       if (sep != NULL)
1566         *sep = ' ';
1567     } else {
1568       tz = "";
1569     }
1570     n_print ("%s%-25s%s%s%s%s%s\n", PROP_NAME_COLOR, "Source release date",
1571         RESET_COLOR, PROP_VALUE_COLOR, str, tz, RESET_COLOR);
1572     g_free (str);
1573   }
1574   n_print ("%s%-25s%s%s%s%s\n", PROP_NAME_COLOR, "Binary package", RESET_COLOR,
1575       PROP_VALUE_COLOR, gst_plugin_get_package (plugin), RESET_COLOR);
1576   n_print ("%s%-25s%s%s%s%s\n", PROP_NAME_COLOR, "Origin URL", RESET_COLOR,
1577       PROP_VALUE_COLOR, gst_plugin_get_origin (plugin), RESET_COLOR);
1578
1579   pop_indent ();
1580
1581   n_print ("\n");
1582 }
1583
1584 static void
1585 print_plugin_features (GstPlugin * plugin)
1586 {
1587   GList *features, *origlist;
1588   gint num_features = 0;
1589   gint num_elements = 0;
1590   gint num_tracers = 0;
1591   gint num_typefinders = 0;
1592   gint num_devproviders = 0;
1593   gint num_other = 0;
1594
1595   origlist = features =
1596       gst_registry_get_feature_list_by_plugin (gst_registry_get (),
1597       gst_plugin_get_name (plugin));
1598   if (sort_output == SORT_TYPE_NAME)
1599     features = g_list_sort (features, gst_plugin_feature_name_compare_func);
1600   while (features) {
1601     GstPluginFeature *feature;
1602
1603     feature = GST_PLUGIN_FEATURE (features->data);
1604
1605     if (GST_IS_ELEMENT_FACTORY (feature)) {
1606       GstElementFactory *factory;
1607
1608       factory = GST_ELEMENT_FACTORY (feature);
1609       n_print ("  %s%s%s: %s%s%s\n", ELEMENT_NAME_COLOR,
1610           GST_OBJECT_NAME (factory), RESET_COLOR, ELEMENT_DETAIL_COLOR,
1611           gst_element_factory_get_metadata (factory,
1612               GST_ELEMENT_METADATA_LONGNAME), RESET_COLOR);
1613       num_elements++;
1614     } else if (GST_IS_TYPE_FIND_FACTORY (feature)) {
1615       GstTypeFindFactory *factory;
1616       const gchar *const *extensions;
1617
1618       factory = GST_TYPE_FIND_FACTORY (feature);
1619       extensions = gst_type_find_factory_get_extensions (factory);
1620       if (extensions) {
1621         g_print ("  %s%s%s: ", ELEMENT_NAME_COLOR,
1622             gst_plugin_feature_get_name (feature), RESET_COLOR);
1623         print_typefind_extensions (extensions, ELEMENT_DETAIL_COLOR);
1624         g_print ("\n");
1625       } else
1626         g_print ("  %s%s%s: %sno extensions%s\n", ELEMENT_NAME_COLOR,
1627             gst_plugin_feature_get_name (feature), RESET_COLOR,
1628             ELEMENT_DETAIL_COLOR, RESET_COLOR);
1629
1630       num_typefinders++;
1631     } else if (GST_IS_DEVICE_PROVIDER_FACTORY (feature)) {
1632       GstDeviceProviderFactory *factory;
1633
1634       factory = GST_DEVICE_PROVIDER_FACTORY (feature);
1635       n_print ("  %s%s%s: %s%s%s\n", ELEMENT_NAME_COLOR,
1636           GST_OBJECT_NAME (factory), RESET_COLOR, ELEMENT_DETAIL_COLOR,
1637           gst_device_provider_factory_get_metadata (factory,
1638               GST_ELEMENT_METADATA_LONGNAME), RESET_COLOR);
1639       num_devproviders++;
1640     } else if (GST_IS_TRACER_FACTORY (feature)) {
1641       n_print ("  %s%s%s (%s%s%s)\n", ELEMENT_NAME_COLOR,
1642           gst_object_get_name (GST_OBJECT (feature)), RESET_COLOR,
1643           DATATYPE_COLOR, g_type_name (G_OBJECT_TYPE (feature)), RESET_COLOR);
1644       num_tracers++;
1645     } else if (feature) {
1646       n_print ("  %s%s%s (%s%s%s)\n", ELEMENT_NAME_COLOR,
1647           gst_object_get_name (GST_OBJECT (feature)), RESET_COLOR,
1648           DATATYPE_COLOR, g_type_name (G_OBJECT_TYPE (feature)), RESET_COLOR);
1649       num_other++;
1650     }
1651     num_features++;
1652     features = g_list_next (features);
1653   }
1654
1655   gst_plugin_feature_list_free (origlist);
1656
1657   n_print ("\n");
1658   n_print ("  %s%d features%s:\n", HEADING_COLOR, num_features, RESET_COLOR);
1659   if (num_elements > 0)
1660     n_print ("  %s+--%s %s%d elements%s\n", CHILD_LINK_COLOR, RESET_COLOR,
1661         PLUGIN_FEATURE_COLOR, num_elements, RESET_COLOR);
1662   if (num_typefinders > 0)
1663     n_print ("  %s+--%s %s%d typefinders%s\n", CHILD_LINK_COLOR, RESET_COLOR,
1664         PLUGIN_FEATURE_COLOR, num_typefinders, RESET_COLOR);
1665   if (num_devproviders > 0)
1666     n_print ("  %s+--%s %s%d device providers%s\n", CHILD_LINK_COLOR,
1667         RESET_COLOR, PLUGIN_FEATURE_COLOR, num_devproviders, RESET_COLOR);
1668   if (num_tracers > 0)
1669     n_print ("  %s+--%s %s%d tracers%s\n", CHILD_LINK_COLOR, RESET_COLOR,
1670         PLUGIN_FEATURE_COLOR, num_tracers, RESET_COLOR);
1671   if (num_other > 0)
1672     n_print ("  %s+--%s %s%d other objects%s\n", CHILD_LINK_COLOR, RESET_COLOR,
1673         PLUGIN_FEATURE_COLOR, num_other, RESET_COLOR);
1674
1675   n_print ("\n");
1676 }
1677
1678 static int
1679 print_feature_info (const gchar * feature_name, gboolean print_all)
1680 {
1681   GstPluginFeature *feature;
1682   GstRegistry *registry = gst_registry_get ();
1683   int ret;
1684
1685   if ((feature = gst_registry_find_feature (registry, feature_name,
1686               GST_TYPE_ELEMENT_FACTORY))) {
1687     ret = print_element_info (feature, print_all);
1688     goto handled;
1689   }
1690   if ((feature = gst_registry_find_feature (registry, feature_name,
1691               GST_TYPE_TYPE_FIND_FACTORY))) {
1692     ret = print_typefind_info (feature, print_all);
1693     goto handled;
1694   }
1695   if ((feature = gst_registry_find_feature (registry, feature_name,
1696               GST_TYPE_TRACER_FACTORY))) {
1697     ret = print_tracer_info (feature, print_all);
1698     goto handled;
1699   }
1700
1701   /* TODO: handle DEVICE_PROVIDER_FACTORY */
1702
1703   return -1;
1704
1705 handled:
1706   gst_object_unref (feature);
1707   return ret;
1708 }
1709
1710 static int
1711 print_element_info (GstPluginFeature * feature, gboolean print_names)
1712 {
1713   GstElementFactory *factory;
1714   GstElement *element;
1715   GstPlugin *plugin;
1716   gint maxlevel = 0;
1717
1718   factory = GST_ELEMENT_FACTORY (gst_plugin_feature_load (feature));
1719   if (!factory) {
1720     g_print ("%selement plugin couldn't be loaded%s\n", DESC_COLOR,
1721         RESET_COLOR);
1722     return -1;
1723   }
1724
1725   element = gst_element_factory_create (factory, NULL);
1726   if (!element) {
1727     gst_object_unref (factory);
1728     g_print ("%scouldn't construct element for some reason%s\n", DESC_COLOR,
1729         RESET_COLOR);
1730     return -1;
1731   }
1732
1733   if (print_names)
1734     _name =
1735         g_strdup_printf ("%s%s%s: ", DATATYPE_COLOR, GST_OBJECT_NAME (factory),
1736         RESET_COLOR);
1737   else
1738     _name = NULL;
1739
1740   plugin = gst_plugin_feature_get_plugin (GST_PLUGIN_FEATURE (factory));
1741
1742   print_factory_details_info (factory, plugin);
1743
1744   if (plugin) {
1745     print_plugin_info (plugin);
1746     gst_object_unref (plugin);
1747   }
1748
1749   print_hierarchy (G_OBJECT_TYPE (element), 0, &maxlevel);
1750   print_interfaces (G_OBJECT_TYPE (element));
1751
1752   print_pad_templates_info (element, factory);
1753   print_clocking_info (element);
1754   print_uri_handler_info (element);
1755   print_pad_info (element);
1756   print_element_properties_info (element);
1757   print_signal_info (element);
1758   print_children_info (element);
1759   print_preset_list (element);
1760
1761   gst_object_unref (element);
1762   gst_object_unref (factory);
1763   g_free (_name);
1764   return 0;
1765 }
1766
1767 static int
1768 print_typefind_info (GstPluginFeature * feature, gboolean print_names)
1769 {
1770   GstTypeFindFactory *factory;
1771   GstPlugin *plugin;
1772   GstCaps *caps;
1773   GstRank rank;
1774   char s[40];
1775   const gchar *const *extensions;
1776
1777   factory = GST_TYPE_FIND_FACTORY (gst_plugin_feature_load (feature));
1778   if (!factory) {
1779     g_print ("%stypefind plugin couldn't be loaded%s\n", DESC_COLOR,
1780         RESET_COLOR);
1781     return -1;
1782   }
1783
1784   if (print_names)
1785     _name =
1786         g_strdup_printf ("%s%s%s: ", DATATYPE_COLOR, GST_OBJECT_NAME (factory),
1787         RESET_COLOR);
1788   else
1789     _name = NULL;
1790
1791   n_print ("%sFactory Details%s:\n", HEADING_COLOR, RESET_COLOR);
1792   rank = gst_plugin_feature_get_rank (feature);
1793   n_print ("  %s%-25s%s%s (%d)%s\n", PROP_NAME_COLOR, "Rank", PROP_VALUE_COLOR,
1794       get_rank_name (s, rank), rank, RESET_COLOR);
1795   n_print ("  %s%-25s%s%s%s\n", PROP_NAME_COLOR, "Name", PROP_VALUE_COLOR,
1796       GST_OBJECT_NAME (factory), RESET_COLOR);
1797   caps = gst_type_find_factory_get_caps (factory);
1798   if (caps) {
1799     gchar *caps_str = gst_caps_to_string (factory->caps);
1800
1801     n_print ("  %s%-25s%s%s%s\n", PROP_NAME_COLOR, "Caps", PROP_VALUE_COLOR,
1802         caps_str, RESET_COLOR);
1803     g_free (caps_str);
1804   }
1805   extensions = gst_type_find_factory_get_extensions (factory);
1806   if (extensions) {
1807     n_print ("  %s%-25s%s", PROP_NAME_COLOR, "Extensions", RESET_COLOR);
1808     print_typefind_extensions (extensions, PROP_VALUE_COLOR);
1809     n_print ("\n");
1810   }
1811   n_print ("\n");
1812
1813   plugin = gst_plugin_feature_get_plugin (GST_PLUGIN_FEATURE (factory));
1814   if (plugin) {
1815     print_plugin_info (plugin);
1816     gst_object_unref (plugin);
1817   }
1818
1819   gst_object_unref (factory);
1820   g_free (_name);
1821   return 0;
1822 }
1823
1824 static int
1825 print_tracer_info (GstPluginFeature * feature, gboolean print_names)
1826 {
1827   GstTracerFactory *factory;
1828   GstTracer *tracer;
1829   GstPlugin *plugin;
1830   gint maxlevel = 0;
1831
1832   factory = GST_TRACER_FACTORY (gst_plugin_feature_load (feature));
1833   if (!factory) {
1834     g_print ("%stracer plugin couldn't be loaded%s\n", DESC_COLOR, RESET_COLOR);
1835     return -1;
1836   }
1837
1838   tracer = (GstTracer *) g_object_new (factory->type, NULL);
1839   if (!tracer) {
1840     gst_object_unref (factory);
1841     g_print ("%scouldn't construct tracer for some reason%s\n", DESC_COLOR,
1842         RESET_COLOR);
1843     return -1;
1844   }
1845
1846   if (print_names)
1847     _name =
1848         g_strdup_printf ("%s%s%s: ", DATATYPE_COLOR, GST_OBJECT_NAME (factory),
1849         RESET_COLOR);
1850   else
1851     _name = NULL;
1852
1853   n_print ("%sFactory Details%s:\n", HEADING_COLOR, RESET_COLOR);
1854   n_print ("  %s%-25s%s%s%s\n", PROP_NAME_COLOR, "Name", PROP_VALUE_COLOR,
1855       GST_OBJECT_NAME (factory), RESET_COLOR);
1856   n_print ("\n");
1857
1858   plugin = gst_plugin_feature_get_plugin (GST_PLUGIN_FEATURE (factory));
1859   if (plugin) {
1860     print_plugin_info (plugin);
1861     gst_object_unref (plugin);
1862   }
1863
1864   print_hierarchy (G_OBJECT_TYPE (tracer), 0, &maxlevel);
1865   print_interfaces (G_OBJECT_TYPE (tracer));
1866
1867   /* TODO: list what hooks it registers
1868    * - the data is available in gsttracerutils, we need to iterate the
1869    *   _priv_tracers hashtable for each probe and then check the list of hooks
1870    *  for each probe whether hook->tracer == tracer :/
1871    */
1872
1873   /* TODO: list what records it emits
1874    * - in class_init tracers can create GstTracerRecord instances
1875    * - those only get logged right now and there is no association with the
1876    *   tracer that created them
1877    * - we'd need to add them to GstTracerFactory
1878    *   gst_tracer_class_add_record (klass, record);
1879    *   - needs work in gstregistrychunks to (de)serialize specs
1880    *   - gst_tracer_register() would need to iterate the list of records and
1881    *     copy the record->spec into the factory
1882    */
1883
1884   gst_object_unref (tracer);
1885   gst_object_unref (factory);
1886   g_free (_name);
1887   return 0;
1888 }
1889
1890 /* NOTE: Not coloring output from automatic install functions, as their output
1891  * is meant for machines, not humans.
1892  */
1893 static void
1894 print_plugin_automatic_install_info_codecs (GstElementFactory * factory)
1895 {
1896   GstPadDirection direction;
1897   const gchar *type_name;
1898   const gchar *klass;
1899   const GList *static_templates, *l;
1900   GstCaps *caps = NULL;
1901   guint i, num;
1902
1903   klass =
1904       gst_element_factory_get_metadata (factory, GST_ELEMENT_METADATA_KLASS);
1905   g_return_if_fail (klass != NULL);
1906
1907   if (strstr (klass, "Demuxer") ||
1908       strstr (klass, "Decoder") ||
1909       strstr (klass, "Depay") || strstr (klass, "Parser")) {
1910     type_name = "decoder";
1911     direction = GST_PAD_SINK;
1912   } else if (strstr (klass, "Muxer") ||
1913       strstr (klass, "Encoder") || strstr (klass, "Pay")) {
1914     type_name = "encoder";
1915     direction = GST_PAD_SRC;
1916   } else {
1917     return;
1918   }
1919
1920   /* decoder/demuxer sink pads should always be static and there should only
1921    * be one, the same applies to encoders/muxers and source pads */
1922   static_templates = gst_element_factory_get_static_pad_templates (factory);
1923   for (l = static_templates; l != NULL; l = l->next) {
1924     GstStaticPadTemplate *tmpl = NULL;
1925
1926     tmpl = (GstStaticPadTemplate *) l->data;
1927     if (tmpl->direction == direction) {
1928       caps = gst_static_pad_template_get_caps (tmpl);
1929       break;
1930     }
1931   }
1932
1933   if (caps == NULL) {
1934     g_printerr ("Couldn't find static pad template for %s '%s'\n",
1935         type_name, GST_OBJECT_NAME (factory));
1936     return;
1937   }
1938
1939   caps = gst_caps_make_writable (caps);
1940   num = gst_caps_get_size (caps);
1941   for (i = 0; i < num; ++i) {
1942     GstStructure *s;
1943     gchar *s_str;
1944
1945     s = gst_caps_get_structure (caps, i);
1946     /* remove fields that are almost always just MIN-MAX of some sort
1947      * in order to make the caps look less messy */
1948     gst_structure_remove_field (s, "pixel-aspect-ratio");
1949     gst_structure_remove_field (s, "framerate");
1950     gst_structure_remove_field (s, "channels");
1951     gst_structure_remove_field (s, "width");
1952     gst_structure_remove_field (s, "height");
1953     gst_structure_remove_field (s, "rate");
1954     gst_structure_remove_field (s, "depth");
1955     gst_structure_remove_field (s, "clock-rate");
1956     s_str = gst_structure_to_string (s);
1957     g_print ("%s-%s\n", type_name, s_str);
1958     g_free (s_str);
1959   }
1960   gst_caps_unref (caps);
1961 }
1962
1963 static void
1964 print_plugin_automatic_install_info_protocols (GstElementFactory * factory)
1965 {
1966   const gchar *const *protocols;
1967
1968   protocols = gst_element_factory_get_uri_protocols (factory);
1969   if (protocols != NULL && *protocols != NULL) {
1970     switch (gst_element_factory_get_uri_type (factory)) {
1971       case GST_URI_SINK:
1972         while (*protocols != NULL) {
1973           g_print ("urisink-%s\n", *protocols);
1974           ++protocols;
1975         }
1976         break;
1977       case GST_URI_SRC:
1978         while (*protocols != NULL) {
1979           g_print ("urisource-%s\n", *protocols);
1980           ++protocols;
1981         }
1982         break;
1983       default:
1984         break;
1985     }
1986   }
1987 }
1988
1989 static void
1990 print_plugin_automatic_install_info (GstPlugin * plugin)
1991 {
1992   GList *features, *l;
1993
1994   /* not interested in typefind factories, only element factories */
1995   features = gst_registry_get_feature_list (gst_registry_get (),
1996       GST_TYPE_ELEMENT_FACTORY);
1997
1998   for (l = features; l != NULL; l = l->next) {
1999     GstPluginFeature *feature;
2000     GstPlugin *feature_plugin;
2001
2002     feature = GST_PLUGIN_FEATURE (l->data);
2003
2004     /* only interested in the ones that are in the plugin we just loaded */
2005     feature_plugin = gst_plugin_feature_get_plugin (feature);
2006     if (feature_plugin == plugin) {
2007       GstElementFactory *factory;
2008
2009       g_print ("element-%s\n", gst_plugin_feature_get_name (feature));
2010
2011       factory = GST_ELEMENT_FACTORY (feature);
2012       print_plugin_automatic_install_info_protocols (factory);
2013       print_plugin_automatic_install_info_codecs (factory);
2014     }
2015     if (feature_plugin)
2016       gst_object_unref (feature_plugin);
2017   }
2018
2019   g_list_foreach (features, (GFunc) gst_object_unref, NULL);
2020   g_list_free (features);
2021 }
2022
2023 static void
2024 print_all_plugin_automatic_install_info (void)
2025 {
2026   GList *plugins, *orig_plugins;
2027
2028   orig_plugins = plugins = gst_registry_get_plugin_list (gst_registry_get ());
2029   if (sort_output == SORT_TYPE_NAME)
2030     plugins = g_list_sort (plugins, gst_plugin_name_compare_func);
2031   while (plugins) {
2032     GstPlugin *plugin;
2033
2034     plugin = (GstPlugin *) (plugins->data);
2035     plugins = g_list_next (plugins);
2036
2037     print_plugin_automatic_install_info (plugin);
2038   }
2039   gst_plugin_list_free (orig_plugins);
2040 }
2041
2042 #ifdef G_OS_UNIX
2043 static gboolean
2044 redirect_stdout (void)
2045 {
2046   GError *error = NULL;
2047   gchar **argv;
2048   const gchar *pager, *less;
2049   gint stdin_fd;
2050   gchar **envp;
2051
2052   pager = g_getenv ("PAGER");
2053   if (pager == NULL)
2054     pager = DEFAULT_PAGER;
2055
2056   argv = g_strsplit (pager, " ", 0);
2057
2058   less = g_getenv ("GST_LESS");
2059   if (less == NULL)
2060     less = DEFAULT_LESS_OPTS;
2061
2062   envp = g_get_environ ();
2063   envp = g_environ_setenv (envp, "LESS", less, TRUE);
2064
2065   if (!g_spawn_async_with_pipes (NULL, argv, envp,
2066           G_SPAWN_DO_NOT_REAP_CHILD | G_SPAWN_SEARCH_PATH,
2067           NULL, NULL, &child_pid, &stdin_fd,
2068           /* pass null stdout/stderr to inherit our fds */
2069           NULL, NULL, &error)) {
2070     if (pager != DEFAULT_PAGER) {
2071       g_warning ("g_spawn_async_with_pipes() failed: %s\n",
2072           GST_STR_NULL (error->message));
2073     }
2074     g_strfreev (argv);
2075     g_strfreev (envp);
2076     g_clear_error (&error);
2077
2078     return FALSE;
2079   }
2080
2081   /* redirect our stdout to child stdin */
2082   dup2 (stdin_fd, STDOUT_FILENO);
2083   if (isatty (STDERR_FILENO))
2084     dup2 (stdin_fd, STDERR_FILENO);
2085   close (stdin_fd);
2086
2087   g_strfreev (argv);
2088   g_strfreev (envp);
2089
2090   return TRUE;
2091 }
2092
2093 static void
2094 child_exit_cb (GPid child_pid, gint status, gpointer user_data)
2095 {
2096   g_spawn_close_pid (child_pid);
2097   g_main_loop_quit (loop);
2098 }
2099 #endif
2100
2101 static gboolean
2102 _parse_sort_type (const gchar * option_name, const gchar * optarg,
2103     gpointer data, GError ** error)
2104 {
2105   if (!g_strcmp0 (optarg, "name")) {
2106     sort_output = SORT_TYPE_NAME;
2107     return TRUE;
2108   } else if (!g_strcmp0 (optarg, "none")) {
2109     sort_output = SORT_TYPE_NONE;
2110     return TRUE;
2111   }
2112
2113   return FALSE;
2114 }
2115
2116 static int
2117 real_main (int argc, char *argv[])
2118 {
2119   gboolean print_all = FALSE;
2120   gboolean do_print_blacklist = FALSE;
2121   gboolean plugin_name = FALSE;
2122   gboolean print_aii = FALSE;
2123   gboolean uri_handlers = FALSE;
2124   gboolean check_exists = FALSE;
2125   gboolean color_always = FALSE;
2126   gchar *min_version = NULL;
2127   guint minver_maj = GST_VERSION_MAJOR;
2128   guint minver_min = GST_VERSION_MINOR;
2129   guint minver_micro = 0;
2130   gchar *types = NULL;
2131   const gchar *no_colors;
2132   int exit_code = 0;
2133 #ifndef GST_DISABLE_OPTION_PARSING
2134   GOptionEntry options[] = {
2135     {"print-all", 'a', 0, G_OPTION_ARG_NONE, &print_all,
2136         N_("Print all elements"), NULL},
2137     {"print-blacklist", 'b', 0, G_OPTION_ARG_NONE, &do_print_blacklist,
2138         N_("Print list of blacklisted files"), NULL},
2139     {"print-plugin-auto-install-info", '\0', 0, G_OPTION_ARG_NONE, &print_aii,
2140         N_("Print a machine-parsable list of features the specified plugin "
2141               "or all plugins provide.\n                                       "
2142               "Useful in connection with external automatic plugin "
2143               "installation mechanisms"), NULL},
2144     {"plugin", '\0', 0, G_OPTION_ARG_NONE, &plugin_name,
2145         N_("List the plugin contents"), NULL},
2146     {"types", 't', 0, G_OPTION_ARG_STRING, &types,
2147         N_("A slashes ('/') separated list of types of elements (also known "
2148               "as klass) to list. (unordered)"), NULL},
2149     {"exists", '\0', 0, G_OPTION_ARG_NONE, &check_exists,
2150         N_("Check if the specified element or plugin exists"), NULL},
2151     {"atleast-version", '\0', 0, G_OPTION_ARG_STRING, &min_version,
2152         N_
2153           ("When checking if an element or plugin exists, also check that its "
2154               "version is at least the version specified"), NULL},
2155     {"uri-handlers", 'u', 0, G_OPTION_ARG_NONE, &uri_handlers,
2156           N_
2157           ("Print supported URI schemes, with the elements that implement them"),
2158         NULL},
2159     {"no-colors", '\0', G_OPTION_FLAG_REVERSE, G_OPTION_ARG_NONE,
2160           &colored_output,
2161           N_
2162           ("Disable colors in output. You can also achieve the same by setting "
2163               "'GST_INSPECT_NO_COLORS' environment variable to any value."),
2164         NULL},
2165     {"sort", '\0', G_OPTION_ARG_NONE, G_OPTION_ARG_CALLBACK, &_parse_sort_type,
2166           "Sort plugins and features. Sorting keys: name (default), none.",
2167         "<sort-key>"}
2168     ,
2169     {"color", 'C', 0, G_OPTION_ARG_NONE, &color_always,
2170           N_("Color output, even when not sending to a tty."),
2171         NULL},
2172     GST_TOOLS_GOPTION_VERSION,
2173     {NULL}
2174   };
2175   GOptionContext *ctx;
2176   GError *err = NULL;
2177 #endif
2178
2179   setlocale (LC_ALL, "");
2180
2181 #ifdef ENABLE_NLS
2182   bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
2183   bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
2184   textdomain (GETTEXT_PACKAGE);
2185 #endif
2186
2187   /* avoid glib warnings when inspecting deprecated properties */
2188   g_setenv ("G_ENABLE_DIAGNOSTIC", "0", FALSE);
2189
2190   g_set_prgname ("gst-inspect-" GST_API_VERSION);
2191
2192 #ifndef GST_DISABLE_OPTION_PARSING
2193   ctx = g_option_context_new ("[ELEMENT-NAME | PLUGIN-NAME]");
2194   g_option_context_add_main_entries (ctx, options, GETTEXT_PACKAGE);
2195   g_option_context_add_group (ctx, gst_init_get_option_group ());
2196 #if defined(G_OS_WIN32) && !defined(GST_CHECK_MAIN)
2197   if (!g_option_context_parse_strv (ctx, &argv, &err))
2198 #else
2199   if (!g_option_context_parse (ctx, &argc, &argv, &err))
2200 #endif
2201   {
2202     g_printerr ("Error initializing: %s\n", err->message);
2203     g_clear_error (&err);
2204     g_option_context_free (ctx);
2205     return -1;
2206   }
2207   g_option_context_free (ctx);
2208 #else
2209   gst_init (&argc, &argv);
2210 #endif
2211
2212 #if defined(G_OS_WIN32) && !defined(GST_CHECK_MAIN)
2213   argc = g_strv_length (argv);
2214 #endif
2215
2216   gst_tools_print_version ();
2217
2218   if (print_all && argc > 1) {
2219     g_printerr ("-a requires no extra arguments\n");
2220     return -1;
2221   }
2222
2223   if (uri_handlers && argc > 1) {
2224     g_printerr ("-u requires no extra arguments\n");
2225     return -1;
2226   }
2227
2228   /* --atleast-version implies --exists */
2229   if (min_version != NULL) {
2230     if (sscanf (min_version, "%u.%u.%u", &minver_maj, &minver_min,
2231             &minver_micro) < 2) {
2232       g_printerr ("Can't parse version '%s' passed to --atleast-version\n",
2233           min_version);
2234       g_free (min_version);
2235       return -1;
2236     }
2237     g_free (min_version);
2238     check_exists = TRUE;
2239   }
2240
2241   if (check_exists) {
2242     if (argc == 1) {
2243       g_printerr ("--exists requires an extra command line argument\n");
2244       exit_code = -1;
2245     } else {
2246       if (!plugin_name) {
2247         GstPluginFeature *feature;
2248
2249         feature = gst_registry_lookup_feature (gst_registry_get (), argv[1]);
2250         if (feature != NULL && gst_plugin_feature_check_version (feature,
2251                 minver_maj, minver_min, minver_micro)) {
2252           exit_code = 0;
2253         } else {
2254           exit_code = 1;
2255         }
2256
2257         if (feature)
2258           gst_object_unref (feature);
2259       } else {
2260         /* FIXME: support checking for plugins too */
2261         g_printerr ("Checking for plugins is not supported yet\n");
2262         exit_code = -1;
2263       }
2264     }
2265     return exit_code;
2266   }
2267
2268   no_colors = g_getenv ("GST_INSPECT_NO_COLORS");
2269   /* We only support truecolor */
2270   colored_output &= (no_colors == NULL);
2271
2272 #ifdef G_OS_UNIX
2273   if (isatty (STDOUT_FILENO)) {
2274     if (redirect_stdout ())
2275       loop = g_main_loop_new (NULL, FALSE);
2276   } else {
2277     colored_output = (color_always) ? TRUE : FALSE;
2278   }
2279 #elif defined(G_OS_WIN32)
2280   {
2281     /* g_log_writer_supports_color is available since 2.50.0 */
2282     gint fd = _fileno (stdout);
2283     /* On Windows 10, g_log_writer_supports_color will also setup the console
2284      * so that it correctly interprets ANSI VT sequences if it's supported */
2285     if (!_isatty (fd) || !g_log_writer_supports_color (fd))
2286       colored_output = FALSE;
2287   }
2288 #endif
2289
2290   /* if no arguments, print out list of elements */
2291   if (uri_handlers) {
2292     print_all_uri_handlers ();
2293   } else if (argc == 1 || print_all) {
2294     if (do_print_blacklist)
2295       print_blacklist ();
2296     else {
2297       if (print_aii)
2298         print_all_plugin_automatic_install_info ();
2299       else
2300         print_element_list (print_all, types);
2301     }
2302   } else {
2303     /* else we try to get a factory */
2304     const char *arg = argv[argc - 1];
2305     int retval = -1;
2306
2307     if (!plugin_name) {
2308       retval = print_feature_info (arg, print_all);
2309     }
2310
2311     /* otherwise check if it's a plugin */
2312     if (retval) {
2313       GstPlugin *plugin = gst_registry_find_plugin (gst_registry_get (), arg);
2314
2315       /* if there is such a plugin, print out info */
2316       if (plugin) {
2317         if (print_aii) {
2318           print_plugin_automatic_install_info (plugin);
2319         } else {
2320           print_plugin_info (plugin);
2321           print_plugin_features (plugin);
2322         }
2323       } else {
2324         GError *error = NULL;
2325
2326         if (g_file_test (arg, G_FILE_TEST_EXISTS)) {
2327           plugin = gst_plugin_load_file (arg, &error);
2328
2329           if (plugin) {
2330             if (print_aii) {
2331               print_plugin_automatic_install_info (plugin);
2332             } else {
2333               print_plugin_info (plugin);
2334               print_plugin_features (plugin);
2335             }
2336           } else {
2337             g_printerr (_("Could not load plugin file: %s\n"), error->message);
2338             g_clear_error (&error);
2339             exit_code = -1;
2340             goto done;
2341           }
2342         } else {
2343           g_printerr (_("No such element or plugin '%s'\n"), arg);
2344           exit_code = -1;
2345           goto done;
2346         }
2347       }
2348     }
2349   }
2350
2351 done:
2352
2353 #ifdef G_OS_UNIX
2354   if (loop) {
2355     fflush (stdout);
2356     fflush (stderr);
2357     /* So that the pipe we create in redirect_stdout() is closed */
2358     close (STDOUT_FILENO);
2359     close (STDERR_FILENO);
2360     g_child_watch_add (child_pid, child_exit_cb, NULL);
2361     g_main_loop_run (loop);
2362     g_main_loop_unref (loop);
2363   }
2364 #endif
2365
2366   return exit_code;
2367 }
2368
2369 int
2370 main (int argc, char *argv[])
2371 {
2372   int ret;
2373
2374   /* gstinspect.c calls this function */
2375 #if defined(G_OS_WIN32) && !defined(GST_CHECK_MAIN)
2376   argv = g_win32_get_command_line ();
2377 #endif
2378
2379 #if defined(__APPLE__) && TARGET_OS_MAC && !TARGET_OS_IPHONE
2380   ret = gst_macos_main ((GstMainFunc) real_main, argc, argv, NULL);
2381 #else
2382   ret = real_main (argc, argv);
2383 #endif
2384
2385 #if defined(G_OS_WIN32) && !defined(GST_CHECK_MAIN)
2386   g_strfreev (argv);
2387 #endif
2388
2389   return ret;
2390 }