First THREADED backport attempt, focusing on adding locks and making sure the API...
[platform/upstream/gstreamer.git] / tools / gst-inspect.c
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *               2000 Wim Taymans <wtay@chello.be>
4  *               2004 Thomas Vander Stichele <thomas@apestaart.org>
5  *
6  * gst-inspect.c: tool to inspect the GStreamer registry
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public
19  * License along with this library; if not, write to the
20  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21  * Boston, MA 02111-1307, USA.
22  */
23
24 #ifdef HAVE_CONFIG_H
25 #  include "config.h"
26 #endif
27
28 #include <gst/gst.h>
29 #include <gst/control/control.h>
30
31 #include "gst/gst-i18n-app.h"
32
33 #include <string.h>
34 #include <locale.h>
35 #include <glib/gprintf.h>
36
37 static char *_name;
38
39 static int print_element_info (GstElementFactory * factory,
40     gboolean print_names);
41
42 void
43 n_print (const char *format, ...)
44 {
45   va_list args;
46   gint retval;
47
48   if (_name)
49     g_print (_name);
50
51   va_start (args, format);
52   retval = g_vprintf (format, args);
53   va_end (args);
54 }
55
56 static gboolean
57 print_field (GQuark field, const GValue * value, gpointer pfx)
58 {
59   gchar *str = gst_value_serialize (value);
60
61   n_print ("%s  %15s: %s\n", (gchar *) pfx, g_quark_to_string (field), str);
62   g_free (str);
63   return TRUE;
64 }
65
66 static void
67 print_caps (const GstCaps * caps, const gchar * pfx)
68 {
69   guint i;
70
71   g_return_if_fail (caps != NULL);
72
73   if (gst_caps_is_any (caps)) {
74     n_print ("%sANY\n", pfx);
75     return;
76   }
77   if (gst_caps_is_empty (caps)) {
78     n_print ("%sEMPTY\n", pfx);
79     return;
80   }
81
82   for (i = 0; i < gst_caps_get_size (caps); i++) {
83     GstStructure *structure = gst_caps_get_structure (caps, i);
84
85     n_print ("%s%s\n", pfx, gst_structure_get_name (structure));
86     gst_structure_foreach (structure, print_field, (gpointer) pfx);
87   }
88 }
89
90 static void
91 print_formats (const GstFormat * formats)
92 {
93   while (formats && *formats) {
94     const GstFormatDefinition *definition;
95
96     definition = gst_format_get_details (*formats);
97     if (definition)
98       n_print ("\t\t(%d):\t%s (%s)\n", *formats,
99           definition->nick, definition->description);
100     else
101       n_print ("\t\t(%d):\tUnknown format\n", *formats);
102
103     formats++;
104   }
105 }
106
107 static void
108 print_query_types (const GstQueryType * types)
109 {
110   while (types && *types) {
111     const GstQueryTypeDefinition *definition;
112
113     definition = gst_query_type_get_details (*types);
114     if (definition)
115       n_print ("\t\t(%d):\t%s (%s)\n", *types,
116           definition->nick, definition->description);
117     else
118       n_print ("\t\t(%d):\tUnknown query format\n", *types);
119
120     types++;
121   }
122 }
123
124 #ifndef GST_DISABLE_ENUMTYPES
125 static void
126 print_event_masks (const GstEventMask * masks)
127 {
128   GType event_type;
129   GEnumClass *klass;
130   GType event_flags;
131   GFlagsClass *flags_class = NULL;
132
133   event_type = gst_event_type_get_type ();
134   klass = (GEnumClass *) g_type_class_ref (event_type);
135
136   while (masks && masks->type) {
137     GEnumValue *value;
138     gint flags = 0, index = 0;
139
140     switch (masks->type) {
141       case GST_EVENT_SEEK:
142         flags = masks->flags;
143         event_flags = gst_seek_type_get_type ();
144         flags_class = (GFlagsClass *) g_type_class_ref (event_flags);
145         break;
146       default:
147         break;
148     }
149
150     value = g_enum_get_value (klass, masks->type);
151     g_print ("\t\t%s ", value->value_nick);
152
153     while (flags) {
154       GFlagsValue *value;
155
156       if (flags & 1) {
157         value = g_flags_get_first_value (flags_class, 1 << index);
158
159         if (value)
160           g_print ("| %s ", value->value_nick);
161         else
162           g_print ("| ? ");
163       }
164       flags >>= 1;
165       index++;
166     }
167     g_print ("\n");
168
169     masks++;
170   }
171 }
172 #else
173 static void
174 print_event_masks (const GstEventMask * masks)
175 {
176 }
177 #endif
178
179 static char *
180 get_rank_name (gint rank)
181 {
182   switch (rank) {
183     case GST_RANK_NONE:
184       return "none";
185     case GST_RANK_MARGINAL:
186       return "marginal";
187     case GST_RANK_SECONDARY:
188       return "secondary";
189     case GST_RANK_PRIMARY:
190       return "primary";
191     default:
192       return "unknown";
193   }
194 }
195
196 static void
197 print_factory_details_info (GstElementFactory * factory)
198 {
199   n_print ("Factory Details:\n");
200   n_print ("  Long name:\t%s\n", factory->details.longname);
201   n_print ("  Class:\t%s\n", factory->details.klass);
202   n_print ("  Description:\t%s\n", factory->details.description);
203   n_print ("  Author(s):\t%s\n", factory->details.author);
204   n_print ("  Rank:\t\t%s (%d)\n",
205       get_rank_name (GST_PLUGIN_FEATURE (factory)->rank),
206       GST_PLUGIN_FEATURE (factory)->rank);
207   n_print ("\n");
208 }
209
210 static void
211 print_hierarchy (GType type, gint level, gint * maxlevel)
212 {
213   GType parent;
214   gint i;
215
216   parent = g_type_parent (type);
217
218   *maxlevel = *maxlevel + 1;
219   level++;
220
221   if (parent)
222     print_hierarchy (parent, level, maxlevel);
223
224   if (_name)
225     g_print (_name);
226
227   for (i = 1; i < *maxlevel - level; i++)
228     g_print ("      ");
229   if (*maxlevel - level)
230     g_print (" +----");
231
232   g_print ("%s\n", g_type_name (type));
233
234   if (level == 1)
235     n_print ("\n");
236 }
237
238 static void
239 print_element_properties_info (GstElement * element)
240 {
241   GParamSpec **property_specs;
242   gint num_properties, i;
243   gboolean readable;
244   const char *string_val;
245
246   property_specs = g_object_class_list_properties
247       (G_OBJECT_GET_CLASS (element), &num_properties);
248   n_print ("\n");
249   n_print ("Element Properties:\n");
250
251   for (i = 0; i < num_properties; i++) {
252     GValue value = { 0, };
253     GParamSpec *param = property_specs[i];
254
255     readable = FALSE;
256
257     g_value_init (&value, param->value_type);
258     if (param->flags & G_PARAM_READABLE) {
259       g_object_get_property (G_OBJECT (element), param->name, &value);
260       readable = TRUE;
261     }
262
263     n_print ("  %-20s: %s\n", g_param_spec_get_name (param),
264         g_param_spec_get_blurb (param));
265
266     switch (G_VALUE_TYPE (&value)) {
267       case G_TYPE_STRING:
268         string_val = g_value_get_string (&value);
269         n_print ("%-23.23s String. ", "");
270         if (readable) {
271           if (string_val == NULL)
272             g_print ("(Default \"\")");
273           else
274             g_print ("(Default \"%s\")", g_value_get_string (&value));
275         }
276         break;
277       case G_TYPE_BOOLEAN:
278         n_print ("%-23.23s Boolean. ", "");
279         if (readable)
280           g_print ("(Default %s)",
281               (g_value_get_boolean (&value) ? "true" : "false"));
282         break;
283       case G_TYPE_ULONG:
284       {
285         GParamSpecULong *pulong = G_PARAM_SPEC_ULONG (param);
286
287         n_print ("%-23.23s Unsigned Long. ", "");
288         if (readable)
289           g_print ("Range: %lu - %lu (Default %lu)",
290               pulong->minimum, pulong->maximum, g_value_get_ulong (&value));
291         break;
292       }
293       case G_TYPE_LONG:
294       {
295         GParamSpecLong *plong = G_PARAM_SPEC_LONG (param);
296
297         n_print ("%-23.23s Long. ", "");
298         if (readable)
299           g_print ("Range: %ld - %ld (Default %ld)",
300               plong->minimum, plong->maximum, g_value_get_long (&value));
301         break;
302       }
303       case G_TYPE_UINT:
304       {
305         GParamSpecUInt *puint = G_PARAM_SPEC_UINT (param);
306
307         n_print ("%-23.23s Unsigned Integer. ", "");
308         if (readable)
309           g_print ("Range: %u - %u (Default %u)",
310               puint->minimum, puint->maximum, g_value_get_uint (&value));
311         break;
312       }
313       case G_TYPE_INT:
314       {
315         GParamSpecInt *pint = G_PARAM_SPEC_INT (param);
316
317         n_print ("%-23.23s Integer. ", "");
318         if (readable)
319           g_print ("Range: %d - %d (Default %d)",
320               pint->minimum, pint->maximum, g_value_get_int (&value));
321         break;
322       }
323       case G_TYPE_UINT64:
324       {
325         GParamSpecUInt64 *puint64 = G_PARAM_SPEC_UINT64 (param);
326
327         n_print ("%-23.23s Unsigned Integer64. ", "");
328         if (readable)
329           g_print ("Range: %" G_GUINT64_FORMAT " - %"
330               G_GUINT64_FORMAT " (Default %" G_GUINT64_FORMAT ")",
331               puint64->minimum, puint64->maximum, g_value_get_uint64 (&value));
332         break;
333       }
334       case G_TYPE_INT64:
335       {
336         GParamSpecInt64 *pint64 = G_PARAM_SPEC_INT64 (param);
337
338         n_print ("%-23.23s Integer64. ", "");
339         if (readable)
340           g_print ("Range: %" G_GINT64_FORMAT " - %" G_GINT64_FORMAT
341               " (Default %" G_GINT64_FORMAT ")", pint64->minimum,
342               pint64->maximum, g_value_get_int64 (&value));
343         break;
344       }
345       case G_TYPE_FLOAT:
346       {
347         GParamSpecFloat *pfloat = G_PARAM_SPEC_FLOAT (param);
348
349         n_print ("%-23.23s Float. Default: %-8.8s %15.7g\n", "", "",
350             g_value_get_float (&value));
351         n_print ("%-23.23s Range: %15.7g - %15.7g", "",
352             pfloat->minimum, pfloat->maximum);
353         break;
354       }
355       case G_TYPE_DOUBLE:
356       {
357         GParamSpecDouble *pdouble = G_PARAM_SPEC_DOUBLE (param);
358
359         n_print ("%-23.23s Double. Default: %-8.8s %15.7g\n", "", "",
360             g_value_get_double (&value));
361         n_print ("%-23.23s Range: %15.7g - %15.7g", "",
362             pdouble->minimum, pdouble->maximum);
363         break;
364       }
365       default:
366         if (param->value_type == GST_TYPE_URI) {
367           n_print ("%-23.23s URI", "");
368         }
369         if (param->value_type == GST_TYPE_CAPS) {
370           const GstCaps *caps = gst_value_get_caps (&value);
371
372           if (!caps)
373             n_print ("%-23.23s Caps (NULL)", "");
374           else {
375             print_caps (caps, "                           ");
376           }
377         } else if (G_IS_PARAM_SPEC_ENUM (param)) {
378           GEnumValue *values;
379           guint j = 0;
380           gint enum_value;
381
382           values = G_ENUM_CLASS (g_type_class_ref (param->value_type))->values;
383           enum_value = g_value_get_enum (&value);
384
385           while (values[j].value_name) {
386             if (values[j].value == enum_value)
387               break;
388             j++;
389           }
390
391           n_print ("%-23.23s Enum \"%s\" (default %d, \"%s\")", "",
392               g_type_name (G_VALUE_TYPE (&value)),
393               enum_value, values[j].value_nick);
394
395           j = 0;
396           while (values[j].value_name) {
397             g_print ("\n%s%-23.23s    (%d): \t%s", "",
398                 _name, values[j].value, values[j].value_nick);
399             j++;
400           }
401           /* g_type_class_unref (ec); */
402         } else if (G_IS_PARAM_SPEC_FLAGS (param)) {
403           GFlagsValue *values;
404           guint j = 0;
405           gint flags_value;
406           GString *flags = NULL;
407
408           values = G_FLAGS_CLASS (g_type_class_ref (param->value_type))->values;
409           flags_value = g_value_get_flags (&value);
410
411           while (values[j].value_name) {
412             if (values[j].value & flags_value) {
413               if (flags) {
414                 g_string_append_printf (flags, " | %s", values[j].value_nick);
415               } else {
416                 flags = g_string_new (values[j].value_nick);
417               }
418             }
419             j++;
420           }
421
422           n_print ("%-23.23s Flags \"%s\" (default %d, \"%s\")", "",
423               g_type_name (G_VALUE_TYPE (&value)),
424               flags_value, (flags ? flags->str : "(none)"));
425
426           j = 0;
427           while (values[j].value_name) {
428             g_print ("\n%s%-23.23s    (%d): \t%s", "",
429                 _name, values[j].value, values[j].value_nick);
430             j++;
431           }
432
433           if (flags)
434             g_string_free (flags, TRUE);
435         } else if (G_IS_PARAM_SPEC_OBJECT (param)) {
436           n_print ("%-23.23s Object of type \"%s\"", "",
437               g_type_name (param->value_type));
438         } else {
439           n_print ("%-23.23s Unknown type %ld \"%s\"", "", param->value_type,
440               g_type_name (param->value_type));
441         }
442         break;
443     }
444     if (!readable)
445       g_print (" Write only\n");
446     else
447       g_print ("\n");
448   }
449   if (num_properties == 0)
450     n_print ("  none\n");
451 }
452
453 static void
454 print_pad_templates_info (GstElement * element, GstElementFactory * factory)
455 {
456   GstElementClass *gstelement_class;
457   const GList *pads;
458   GstPadTemplate *padtemplate;
459
460   n_print ("Pad Templates:\n");
461   if (!factory->numpadtemplates) {
462     n_print ("  none\n");
463     return;
464   }
465
466   gstelement_class = GST_ELEMENT_CLASS (G_OBJECT_GET_CLASS (element));
467
468   pads = factory->padtemplates;
469   while (pads) {
470     padtemplate = (GstPadTemplate *) (pads->data);
471     pads = g_list_next (pads);
472
473     if (padtemplate->direction == GST_PAD_SRC)
474       n_print ("  SRC template: '%s'\n", padtemplate->name_template);
475     else if (padtemplate->direction == GST_PAD_SINK)
476       n_print ("  SINK template: '%s'\n", padtemplate->name_template);
477     else
478       n_print ("  UNKNOWN!!! template: '%s'\n", padtemplate->name_template);
479
480     if (padtemplate->presence == GST_PAD_ALWAYS)
481       n_print ("    Availability: Always\n");
482     else if (padtemplate->presence == GST_PAD_SOMETIMES)
483       n_print ("    Availability: Sometimes\n");
484     else if (padtemplate->presence == GST_PAD_REQUEST) {
485       n_print ("    Availability: On request\n");
486       n_print ("      Has request_new_pad() function: %s\n",
487           GST_DEBUG_FUNCPTR_NAME (gstelement_class->request_new_pad));
488     } else
489       n_print ("    Availability: UNKNOWN!!!\n");
490
491     if (padtemplate->caps) {
492       n_print ("    Capabilities:\n");
493       print_caps (padtemplate->caps, "      ");
494     }
495
496     n_print ("\n");
497   }
498 }
499
500 static void
501 print_element_flag_info (GstElement * element)
502 {
503   gboolean have_flags = FALSE;
504
505   n_print ("\n");
506   n_print ("Element Flags:\n");
507
508   if (GST_FLAG_IS_SET (element, GST_ELEMENT_DECOUPLED)) {
509     n_print ("  GST_ELEMENT_DECOUPLED\n");
510     have_flags = TRUE;
511   }
512   if (GST_FLAG_IS_SET (element, GST_ELEMENT_EVENT_AWARE)) {
513     n_print ("  GST_ELEMENT_EVENT_AWARE\n");
514     have_flags = TRUE;
515   }
516   if (!have_flags)
517     n_print ("  no flags set\n");
518
519   if (GST_IS_BIN (element)) {
520     n_print ("\n");
521     n_print ("Bin Flags:\n");
522     if (GST_FLAG_IS_SET (element, GST_BIN_FLAG_MANAGER)) {
523       n_print ("  GST_BIN_FLAG_MANAGER\n");
524       have_flags = TRUE;
525     }
526     if (GST_FLAG_IS_SET (element, GST_BIN_SELF_SCHEDULABLE)) {
527       n_print ("  GST_BIN_SELF_SCHEDULABLE\n");
528       have_flags = TRUE;
529     }
530     if (!have_flags)
531       n_print ("  no flags set\n");
532   }
533 }
534
535 static void
536 print_implementation_info (GstElement * element)
537 {
538   GstObjectClass *gstobject_class;
539   GstElementClass *gstelement_class;
540
541   gstobject_class = GST_OBJECT_CLASS (G_OBJECT_GET_CLASS (element));
542   gstelement_class = GST_ELEMENT_CLASS (G_OBJECT_GET_CLASS (element));
543
544   n_print ("\n");
545   n_print ("Element Implementation:\n");
546
547   if (element->loopfunc)
548     n_print ("  loopfunc()-based element: %s\n",
549         GST_DEBUG_FUNCPTR_NAME (element->loopfunc));
550   else
551     n_print ("  No loopfunc(), must be chain-based or not configured yet\n");
552
553   n_print ("  Has change_state() function: %s\n",
554       GST_DEBUG_FUNCPTR_NAME (gstelement_class->change_state));
555 #ifndef GST_DISABLE_LOADSAVE
556   n_print ("  Has custom save_thyself() function: %s\n",
557       GST_DEBUG_FUNCPTR_NAME (gstobject_class->save_thyself));
558   n_print ("  Has custom restore_thyself() function: %s\n",
559       GST_DEBUG_FUNCPTR_NAME (gstobject_class->restore_thyself));
560 #endif
561 }
562
563 static void
564 print_clocking_info (GstElement * element)
565 {
566   if (!gst_element_requires_clock (element) &&
567       !(gst_element_provides_clock (element) &&
568           gst_element_get_clock (element))) {
569     n_print ("\n");
570     n_print ("Element has no clocking capabilities.");
571     return;
572   }
573
574   n_print ("\n");
575   n_print ("Clocking Interaction:\n");
576   if (gst_element_requires_clock (element)) {
577     n_print ("  element requires a clock\n");
578   }
579
580   if (gst_element_provides_clock (element)) {
581     GstClock *clock;
582
583     clock = gst_element_get_clock (element);
584     if (clock)
585       n_print ("  element provides a clock: %s\n", GST_OBJECT_NAME (clock));
586     else
587       n_print ("  element is supposed to provide a clock but returned NULL\n");
588   }
589 }
590
591 #ifndef GST_DISABLE_INDEX
592 static void
593 print_index_info (GstElement * element)
594 {
595   if (gst_element_is_indexable (element)) {
596     n_print ("\n");
597     n_print ("Indexing capabilities:\n");
598     n_print ("  element can do indexing\n");
599   } else {
600     n_print ("\n");
601     n_print ("Element has no indexing capabilities.\n");
602   }
603 }
604 #else
605 static void
606 print_index_info (GstElement * element)
607 {
608 }
609 #endif
610
611 static void
612 print_pad_info (GstElement * element)
613 {
614   const GList *pads;
615   GstPad *pad;
616   GstRealPad *realpad;
617
618   n_print ("\n");
619   n_print ("Pads:\n");
620
621   if (!element->numpads) {
622     n_print ("  none\n");
623     return;
624   }
625
626   pads = element->pads;
627   while (pads) {
628     pad = GST_PAD (pads->data);
629     pads = g_list_next (pads);
630     realpad = GST_PAD_REALIZE (pad);
631
632     n_print ("");
633
634     if (gst_pad_get_direction (GST_PAD (realpad)) == GST_PAD_SRC)
635       g_print ("  SRC: '%s'", gst_pad_get_name (pad));
636     else if (gst_pad_get_direction (GST_PAD (realpad)) == GST_PAD_SINK)
637       g_print ("  SINK: '%s'", gst_pad_get_name (pad));
638     else
639       g_print ("  UNKNOWN!!!: '%s'", gst_pad_get_name (pad));
640
641     if (GST_IS_GHOST_PAD (pad))
642       g_print (", ghost of real pad %s:%s\n", GST_DEBUG_PAD_NAME (realpad));
643     else
644       g_print ("\n");
645
646     n_print ("    Implementation:\n");
647     if (realpad->chainfunc)
648       n_print ("      Has chainfunc(): %s\n",
649           GST_DEBUG_FUNCPTR_NAME (realpad->chainfunc));
650     if (realpad->getfunc)
651       n_print ("      Has getfunc(): %s\n",
652           GST_DEBUG_FUNCPTR_NAME (realpad->getfunc));
653     if (realpad->formatsfunc != gst_pad_get_formats_default) {
654       n_print ("      Supports seeking/conversion/query formats:\n");
655       print_formats (gst_pad_get_formats (GST_PAD (realpad)));
656     }
657     if (realpad->convertfunc != gst_pad_convert_default)
658       n_print ("      Has custom convertfunc(): %s\n",
659           GST_DEBUG_FUNCPTR_NAME (realpad->convertfunc));
660     if (realpad->eventfunc != gst_pad_event_default)
661       n_print ("      Has custom eventfunc(): %s\n",
662           GST_DEBUG_FUNCPTR_NAME (realpad->eventfunc));
663     if (realpad->eventmaskfunc != gst_pad_get_event_masks_default) {
664       n_print ("        Provides event masks:\n");
665       print_event_masks (gst_pad_get_event_masks (GST_PAD (realpad)));
666     }
667     if (realpad->queryfunc != gst_pad_query_default)
668       n_print ("      Has custom queryfunc(): %s\n",
669           GST_DEBUG_FUNCPTR_NAME (realpad->queryfunc));
670     if (realpad->querytypefunc != gst_pad_get_query_types_default) {
671       n_print ("        Provides query types:\n");
672       print_query_types (gst_pad_get_query_types (GST_PAD (realpad)));
673     }
674
675     if (realpad->intlinkfunc != gst_pad_get_internal_links_default)
676       n_print ("      Has custom intconnfunc(): %s\n",
677           GST_DEBUG_FUNCPTR_NAME (realpad->intlinkfunc));
678
679     if (realpad->bufferallocfunc)
680       n_print ("      Has bufferallocfunc(): %s\n",
681           GST_DEBUG_FUNCPTR_NAME (realpad->bufferallocfunc));
682
683     if (pad->padtemplate)
684       n_print ("    Pad Template: '%s'\n", pad->padtemplate->name_template);
685
686     if (realpad->caps) {
687       n_print ("    Capabilities:\n");
688       print_caps (realpad->caps, "      ");
689     }
690   }
691 }
692
693 static void
694 print_dynamic_parameters_info (GstElement * element)
695 {
696   GstDParamManager *dpman;
697   GParamSpec **specs = NULL;
698   gint x;
699
700   if ((dpman = gst_dpman_get_manager (element))) {
701     specs = gst_dpman_list_dparam_specs (dpman);
702   }
703
704   if (specs && specs[0] != NULL) {
705     n_print ("\n");
706     n_print ("Dynamic Parameters:\n");
707
708     for (x = 0; specs[x] != NULL; x++) {
709       g_print ("  %-20.20s: ", g_param_spec_get_name (specs[x]));
710
711       switch (G_PARAM_SPEC_VALUE_TYPE (specs[x])) {
712         case G_TYPE_INT64:
713           g_print ("64 Bit Integer (Default %" G_GINT64_FORMAT ", Range %"
714               G_GINT64_FORMAT " -> %" G_GINT64_FORMAT ")",
715               ((GParamSpecInt64 *) specs[x])->default_value,
716               ((GParamSpecInt64 *) specs[x])->minimum,
717               ((GParamSpecInt64 *) specs[x])->maximum);
718           break;
719         case G_TYPE_INT:
720           g_print ("Integer (Default %d, Range %d -> %d)",
721               ((GParamSpecInt *) specs[x])->default_value,
722               ((GParamSpecInt *) specs[x])->minimum,
723               ((GParamSpecInt *) specs[x])->maximum);
724           break;
725         case G_TYPE_FLOAT:
726           g_print ("Float. Default: %-8.8s %15.7g\n", "",
727               ((GParamSpecFloat *) specs[x])->default_value);
728           g_print ("%-23.23s Range: %15.7g - %15.7g", "",
729               ((GParamSpecFloat *) specs[x])->minimum,
730               ((GParamSpecFloat *) specs[x])->maximum);
731           break;
732         case G_TYPE_DOUBLE:
733           g_print ("Double. Default: %-8.8s %15.7g\n", "",
734               ((GParamSpecDouble *) specs[x])->default_value);
735           g_print ("%-23.23s Range: %15.7g - %15.7g", "",
736               ((GParamSpecDouble *) specs[x])->minimum,
737               ((GParamSpecDouble *) specs[x])->maximum);
738           break;
739         default:
740           g_print ("unknown %ld", G_PARAM_SPEC_VALUE_TYPE (specs[x]));
741       }
742       g_print ("\n");
743     }
744     g_free (specs);
745   }
746 }
747
748 #if 0
749 static gint
750 compare_signal_names (GSignalQuery * a, GSignalQuery * b)
751 {
752   return strcmp (a->signal_name, b->signal_name);
753 }
754 #endif
755
756 static void
757 print_signal_info (GstElement * element)
758 {
759   /* Signals/Actions Block */
760   guint *signals;
761   guint nsignals;
762   gint i = 0, j, k;
763   GSignalQuery *query = NULL;
764   GType type;
765   GSList *found_signals, *l;
766
767   for (k = 0; k < 2; k++) {
768     found_signals = NULL;
769     for (type = G_OBJECT_TYPE (element); type; type = g_type_parent (type)) {
770       if (type == GST_TYPE_ELEMENT || type == GST_TYPE_OBJECT)
771         break;
772
773       if (type == GST_TYPE_BIN && G_OBJECT_TYPE (element) != GST_TYPE_BIN)
774         continue;
775
776       signals = g_signal_list_ids (type, &nsignals);
777       for (i = 0; i < nsignals; i++) {
778         query = g_new0 (GSignalQuery, 1);
779         g_signal_query (signals[i], query);
780
781         if ((k == 0 && !(query->signal_flags & G_SIGNAL_ACTION)) ||
782             (k == 1 && (query->signal_flags & G_SIGNAL_ACTION)))
783           found_signals = g_slist_append (found_signals, query);
784       }
785     }
786
787     if (found_signals) {
788       n_print ("\n");
789       if (k == 0)
790         n_print ("Element Signals:\n");
791       else
792         n_print ("Element Actions:\n");
793     } else {
794       continue;
795     }
796
797     for (l = found_signals; l; l = l->next) {
798       gchar *indent;
799       int indent_len;
800
801       query = (GSignalQuery *) l->data;
802       indent_len = strlen (query->signal_name) +
803           strlen (g_type_name (query->return_type)) + 24;
804
805       indent = g_new0 (gchar, indent_len + 1);
806       memset (indent, ' ', indent_len);
807
808       n_print ("  \"%s\" :  %s user_function (%s* object",
809           query->signal_name,
810           g_type_name (query->return_type), g_type_name (type));
811
812       for (j = 0; j < query->n_params; j++) {
813         if (G_TYPE_IS_FUNDAMENTAL (query->param_types[j])) {
814           g_print (",\n%s%s%s arg%d", _name, indent,
815               g_type_name (query->param_types[j]), j);
816         } else {
817           g_print (",\n%s%s%s* arg%d", _name, indent,
818               g_type_name (query->param_types[j]), j);
819         }
820       }
821
822       if (k == 0)
823         g_print (",\n%s%sgpointer user_data);\n", _name, indent);
824       else
825         g_print (");\n");
826
827       g_free (indent);
828     }
829
830     if (found_signals) {
831       g_slist_foreach (found_signals, (GFunc) g_free, NULL);
832       g_slist_free (found_signals);
833     }
834   }
835 }
836
837 static void
838 print_children_info (GstElement * element)
839 {
840   GList *children;
841
842   if (!GST_IS_BIN (element))
843     return;
844
845   children = (GList *) GST_BIN (element)->children;
846   if (children) {
847     n_print ("\n");
848     g_print ("Children:\n");
849   }
850
851   while (children) {
852     n_print ("  %s\n", GST_ELEMENT_NAME (GST_ELEMENT (children->data)));
853     children = g_list_next (children);
854   }
855 }
856
857 static void
858 print_element_list (gboolean print_all)
859 {
860   GList *plugins;
861
862   plugins = gst_registry_pool_plugin_list ();
863   while (plugins) {
864     GList *features;
865     GstPlugin *plugin;
866
867     plugin = (GstPlugin *) (plugins->data);
868     plugins = g_list_next (plugins);
869
870     features = gst_plugin_get_feature_list (plugin);
871     while (features) {
872       GstPluginFeature *feature;
873
874       feature = GST_PLUGIN_FEATURE (features->data);
875
876       if (GST_IS_ELEMENT_FACTORY (feature)) {
877         GstElementFactory *factory;
878
879         factory = GST_ELEMENT_FACTORY (feature);
880         if (print_all)
881           print_element_info (factory, TRUE);
882         else
883           g_print ("%s:  %s: %s\n", plugin->desc.name,
884               GST_PLUGIN_FEATURE_NAME (factory), factory->details.longname);
885       }
886 #ifndef GST_DISABLE_INDEX
887       else if (GST_IS_INDEX_FACTORY (feature)) {
888         GstIndexFactory *factory;
889
890         factory = GST_INDEX_FACTORY (feature);
891         if (!print_all)
892           g_print ("%s:  %s: %s\n", plugin->desc.name,
893               GST_PLUGIN_FEATURE_NAME (factory), factory->longdesc);
894       }
895 #endif
896       else if (GST_IS_TYPE_FIND_FACTORY (feature)) {
897         GstTypeFindFactory *factory;
898
899         factory = GST_TYPE_FIND_FACTORY (feature);
900         if (!print_all)
901           g_print ("%s: %s: ", plugin->desc.name,
902               gst_plugin_feature_get_name (feature));
903         if (factory->extensions) {
904           guint i = 0;
905
906           while (factory->extensions[i]) {
907             if (!print_all)
908               g_print ("%s%s", i > 0 ? ", " : "", factory->extensions[i]);
909             i++;
910           }
911           if (!print_all)
912             g_print ("\n");
913         } else {
914           if (!print_all)
915             g_print ("no extensions\n");
916         }
917       } else if (GST_IS_SCHEDULER_FACTORY (feature)) {
918         GstSchedulerFactory *factory;
919
920         factory = GST_SCHEDULER_FACTORY (feature);
921         if (!print_all)
922           g_print ("%s:  %s: %s\n", plugin->desc.name,
923               GST_PLUGIN_FEATURE_NAME (factory), factory->longdesc);
924       } else {
925         if (!print_all)
926           n_print ("%s:  %s (%s)\n", plugin->desc.name,
927               GST_PLUGIN_FEATURE_NAME (feature),
928               g_type_name (G_OBJECT_TYPE (feature)));
929       }
930
931       features = g_list_next (features);
932     }
933   }
934 }
935
936 static void
937 print_plugin_info (GstPlugin * plugin)
938 {
939   n_print ("Plugin Details:\n");
940   n_print ("  Name:\t\t%s\n", plugin->desc.name);
941   n_print ("  Description:\t%s\n", plugin->desc.description);
942   n_print ("  Filename:\t%s\n", plugin->filename ? plugin->filename : "(null)");
943   n_print ("  Version:\t%s\n", plugin->desc.version);
944   n_print ("  License:\t%s\n", plugin->desc.license);
945   n_print ("  Package:\t%s\n", plugin->desc.package);
946   n_print ("  Origin URL:\t%s\n", plugin->desc.origin);
947   n_print ("\n");
948 }
949
950 static void
951 print_plugin_features (GstPlugin * plugin)
952 {
953   GList *features;
954   gint num_features = 0;
955   gint num_elements = 0;
956   gint num_types = 0;
957   gint num_schedulers = 0;
958   gint num_indexes = 0;
959   gint num_other = 0;
960
961   features = gst_plugin_get_feature_list (plugin);
962
963   while (features) {
964     GstPluginFeature *feature;
965
966     feature = GST_PLUGIN_FEATURE (features->data);
967
968     if (GST_IS_ELEMENT_FACTORY (feature)) {
969       GstElementFactory *factory;
970
971       factory = GST_ELEMENT_FACTORY (feature);
972       n_print ("  %s: %s\n", GST_OBJECT_NAME (factory),
973           factory->details.longname);
974       num_elements++;
975     }
976 #ifndef GST_DISABLE_INDEX
977     else if (GST_IS_INDEX_FACTORY (feature)) {
978       GstIndexFactory *factory;
979
980       factory = GST_INDEX_FACTORY (feature);
981       n_print ("  %s: %s\n", GST_OBJECT_NAME (factory), factory->longdesc);
982       num_indexes++;
983     }
984 #endif
985     else if (GST_IS_TYPE_FIND_FACTORY (feature)) {
986       GstTypeFindFactory *factory;
987
988       factory = GST_TYPE_FIND_FACTORY (feature);
989       if (factory->extensions) {
990         guint i = 0;
991
992         g_print ("%s type: ", plugin->desc.name);
993         while (factory->extensions[i]) {
994           g_print ("%s%s", i > 0 ? ", " : "", factory->extensions[i]);
995           i++;
996         }
997         g_print ("\n");
998       } else
999         g_print ("%s type: N/A\n", plugin->desc.name);
1000
1001       num_types++;
1002     } else if (GST_IS_SCHEDULER_FACTORY (feature)) {
1003       GstSchedulerFactory *factory;
1004
1005       factory = GST_SCHEDULER_FACTORY (feature);
1006       n_print ("  %s: %s\n", GST_OBJECT_NAME (factory), factory->longdesc);
1007       num_schedulers++;
1008     } else {
1009       n_print ("  %s (%s)\n", gst_object_get_name (GST_OBJECT (feature)),
1010           g_type_name (G_OBJECT_TYPE (feature)));
1011       num_other++;
1012     }
1013     num_features++;
1014     features = g_list_next (features);
1015   }
1016   n_print ("\n");
1017   n_print ("  %d features:\n", num_features);
1018   if (num_elements > 0)
1019     n_print ("  +-- %d elements\n", num_elements);
1020   if (num_types > 0)
1021     n_print ("  +-- %d types\n", num_types);
1022   if (num_schedulers > 0)
1023     n_print ("  +-- %d schedulers\n", num_schedulers);
1024   if (num_indexes > 0)
1025     n_print ("  +-- %d indexes\n", num_indexes);
1026   if (num_other > 0)
1027     n_print ("  +-- %d other objects\n", num_other);
1028
1029   n_print ("\n");
1030 }
1031
1032 static int
1033 print_element_features (const gchar * element_name)
1034 {
1035   GstPluginFeature *feature;
1036
1037   /* FIXME implement other pretty print function for these */
1038   feature = gst_registry_pool_find_feature (element_name,
1039       GST_TYPE_SCHEDULER_FACTORY);
1040   if (feature) {
1041     n_print ("%s: a scheduler\n", element_name);
1042     return 0;
1043   }
1044 #ifndef GST_DISABLE_INDEX
1045   feature = gst_registry_pool_find_feature (element_name,
1046       GST_TYPE_INDEX_FACTORY);
1047   if (feature) {
1048     n_print ("%s: an index\n", element_name);
1049     return 0;
1050   }
1051 #endif
1052   feature = gst_registry_pool_find_feature (element_name,
1053       GST_TYPE_TYPE_FIND_FACTORY);
1054   if (feature) {
1055     n_print ("%s: a typefind function\n", element_name);
1056     return 0;
1057   }
1058 #ifndef GST_DISABLE_URI
1059   feature = gst_registry_pool_find_feature (element_name, GST_TYPE_URI_HANDLER);
1060   if (feature) {
1061     n_print ("%s: an uri handler\n", element_name);
1062     return 0;
1063   }
1064 #endif
1065
1066   return -1;
1067 }
1068
1069 static int
1070 print_element_info (GstElementFactory * factory, gboolean print_names)
1071 {
1072   GstElement *element;
1073   gint maxlevel = 0;
1074
1075   element = gst_element_factory_create (factory, NULL);
1076   if (!element) {
1077     g_print ("couldn't construct element for some reason\n");
1078     return -1;
1079   }
1080
1081   if (print_names)
1082     _name = g_strdup_printf ("%s: ", GST_PLUGIN_FEATURE (factory)->name);
1083   else
1084     _name = "";
1085
1086   print_factory_details_info (factory);
1087   if (GST_PLUGIN_FEATURE (factory)->manager) {
1088     GstPlugin *plugin = (GstPlugin *) GST_PLUGIN_FEATURE (factory)->manager;
1089
1090     print_plugin_info (plugin);
1091   }
1092
1093   print_hierarchy (G_OBJECT_TYPE (element), 0, &maxlevel);
1094
1095   print_pad_templates_info (element, factory);
1096   print_element_flag_info (element);
1097   print_implementation_info (element);
1098   print_clocking_info (element);
1099   print_index_info (element);
1100   print_pad_info (element);
1101   print_element_properties_info (element);
1102   print_dynamic_parameters_info (element);
1103   print_signal_info (element);
1104   print_children_info (element);
1105
1106   if (_name != "")
1107     g_free (_name);
1108
1109   return 0;
1110 }
1111
1112 int
1113 main (int argc, char *argv[])
1114 {
1115   gboolean print_all = FALSE;
1116   struct poptOption options[] = {
1117     {"print-all", 'a', POPT_ARG_NONE | POPT_ARGFLAG_STRIP, &print_all, 0,
1118         N_("Print all elements"), NULL},
1119     POPT_TABLEEND
1120   };
1121
1122 #ifdef GETTEXT_PACKAGE
1123   bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
1124   bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
1125   textdomain (GETTEXT_PACKAGE);
1126 #endif
1127
1128   gst_init_with_popt_table (&argc, &argv, options);
1129   gst_control_init (&argc, &argv);
1130
1131   if (print_all && argc > 2) {
1132     g_print ("-a requires no extra arguments\n");
1133     return 1;
1134   }
1135
1136   /* if no arguments, print out list of elements */
1137   if (argc == 1 || print_all) {
1138     print_element_list (print_all);
1139     /* else we try to get a factory */
1140   } else {
1141     GstElementFactory *factory;
1142     GstPlugin *plugin;
1143     const char *arg = argv[argc - 1];
1144     int retval;
1145
1146     factory = gst_element_factory_find (arg);
1147     /* if there's a factory, print out the info */
1148     if (factory) {
1149       retval = print_element_info (factory, print_all);
1150     } else {
1151       retval = print_element_features (arg);
1152     }
1153
1154     /* otherwise check if it's a plugin */
1155     if (retval) {
1156       plugin = gst_registry_pool_find_plugin (arg);
1157
1158       /* if there is such a plugin, print out info */
1159       if (plugin) {
1160         print_plugin_info (plugin);
1161         print_plugin_features (plugin);
1162       } else {
1163         g_print ("No such element or plugin '%s'\n", arg);
1164         return -1;
1165       }
1166     }
1167   }
1168
1169   return 0;
1170 }