bin: Use the new group-id field of the stream-start message for stream-start message...
[platform/upstream/gstreamer.git] / gst / gstelementfactory.c
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *                    2000 Wim Taymans <wtay@chello.be>
4  *                    2003 Benjamin Otte <in7y118@public.uni-hamburg.de>
5  *
6  * gstelementfactory.c: GstElementFactory object, support routines
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., 51 Franklin St, Fifth Floor,
21  * Boston, MA 02110-1301, USA.
22  */
23
24 /**
25  * SECTION:gstelementfactory
26  * @short_description: Create GstElements from a factory
27  * @see_also: #GstElement, #GstPlugin, #GstPluginFeature, #GstPadTemplate.
28  *
29  * #GstElementFactory is used to create instances of elements. A
30  * GstElementfactory can be added to a #GstPlugin as it is also a
31  * #GstPluginFeature.
32  *
33  * Use the gst_element_factory_find() and gst_element_factory_create()
34  * functions to create element instances or use gst_element_factory_make() as a
35  * convenient shortcut.
36  *
37  * The following code example shows you how to create a GstFileSrc element.
38  *
39  * <example>
40  * <title>Using an element factory</title>
41  * <programlisting language="c">
42  *   #include &lt;gst/gst.h&gt;
43  *
44  *   GstElement *src;
45  *   GstElementFactory *srcfactory;
46  *
47  *   gst_init (&amp;argc, &amp;argv);
48  *
49  *   srcfactory = gst_element_factory_find ("filesrc");
50  *   g_return_if_fail (srcfactory != NULL);
51  *   src = gst_element_factory_create (srcfactory, "src");
52  *   g_return_if_fail (src != NULL);
53  *   ...
54  * </programlisting>
55  * </example>
56  *
57  * Last reviewed on 2005-11-23 (0.9.5)
58  */
59
60 #include "gst_private.h"
61
62 #include "gstelement.h"
63 #include "gstelementmetadata.h"
64 #include "gstinfo.h"
65 #include "gsturi.h"
66 #include "gstregistry.h"
67 #include "gst.h"
68
69 #include "glib-compat-private.h"
70
71 GST_DEBUG_CATEGORY_STATIC (element_factory_debug);
72 #define GST_CAT_DEFAULT element_factory_debug
73
74 static void gst_element_factory_finalize (GObject * object);
75 static void gst_element_factory_cleanup (GstElementFactory * factory);
76
77 /* static guint gst_element_factory_signals[LAST_SIGNAL] = { 0 }; */
78
79 /* this is defined in gstelement.c */
80 extern GQuark __gst_elementclass_factory;
81
82 #define _do_init \
83 { \
84   GST_DEBUG_CATEGORY_INIT (element_factory_debug, "GST_ELEMENT_FACTORY", \
85       GST_DEBUG_BOLD | GST_DEBUG_FG_WHITE | GST_DEBUG_BG_RED, \
86       "element factories keep information about installed elements"); \
87 }
88
89 G_DEFINE_TYPE_WITH_CODE (GstElementFactory, gst_element_factory,
90     GST_TYPE_PLUGIN_FEATURE, _do_init);
91
92 static void
93 gst_element_factory_class_init (GstElementFactoryClass * klass)
94 {
95   GObjectClass *gobject_class = (GObjectClass *) klass;
96
97   gobject_class->finalize = gst_element_factory_finalize;
98 }
99
100 static void
101 gst_element_factory_init (GstElementFactory * factory)
102 {
103   factory->staticpadtemplates = NULL;
104   factory->numpadtemplates = 0;
105
106   factory->uri_type = GST_URI_UNKNOWN;
107   factory->uri_protocols = NULL;
108
109   factory->interfaces = NULL;
110 }
111
112 static void
113 gst_element_factory_finalize (GObject * object)
114 {
115   GstElementFactory *factory = GST_ELEMENT_FACTORY (object);
116
117   gst_element_factory_cleanup (factory);
118   G_OBJECT_CLASS (gst_element_factory_parent_class)->finalize (object);
119 }
120
121 /**
122  * gst_element_factory_find:
123  * @name: name of factory to find
124  *
125  * Search for an element factory of the given name. Refs the returned
126  * element factory; caller is responsible for unreffing.
127  *
128  * Returns: (transfer full): #GstElementFactory if found, NULL otherwise
129  */
130 GstElementFactory *
131 gst_element_factory_find (const gchar * name)
132 {
133   GstPluginFeature *feature;
134
135   g_return_val_if_fail (name != NULL, NULL);
136
137   feature = gst_registry_find_feature (gst_registry_get (), name,
138       GST_TYPE_ELEMENT_FACTORY);
139   if (feature)
140     return GST_ELEMENT_FACTORY (feature);
141
142   /* this isn't an error, for instance when you query if an element factory is
143    * present */
144   GST_LOG ("no such element factory \"%s\"", name);
145   return NULL;
146 }
147
148 static void
149 gst_element_factory_cleanup (GstElementFactory * factory)
150 {
151   GList *item;
152
153   if (factory->metadata) {
154     gst_structure_free ((GstStructure *) factory->metadata);
155     factory->metadata = NULL;
156   }
157   if (factory->type) {
158     factory->type = G_TYPE_INVALID;
159   }
160
161   for (item = factory->staticpadtemplates; item; item = item->next) {
162     GstStaticPadTemplate *templ = item->data;
163
164     gst_static_caps_cleanup (&templ->static_caps);
165     g_slice_free (GstStaticPadTemplate, templ);
166   }
167   g_list_free (factory->staticpadtemplates);
168   factory->staticpadtemplates = NULL;
169   factory->numpadtemplates = 0;
170   factory->uri_type = GST_URI_UNKNOWN;
171   if (factory->uri_protocols) {
172     g_strfreev (factory->uri_protocols);
173     factory->uri_protocols = NULL;
174   }
175
176   g_list_free (factory->interfaces);
177   factory->interfaces = NULL;
178 }
179
180 #define CHECK_METADATA_FIELD(klass, name, key)                                 \
181   G_STMT_START {                                                               \
182     const gchar *metafield = gst_element_class_get_metadata (klass, key);      \
183     if (G_UNLIKELY (metafield == NULL || *metafield == '\0')) {                \
184       g_warning ("Element factory metadata for '%s' has no valid %s field", name, key);    \
185       goto detailserror;                                                       \
186     } \
187   } G_STMT_END;
188
189 /**
190  * gst_element_register:
191  * @plugin: (allow-none): #GstPlugin to register the element with, or NULL for
192  *     a static element.
193  * @name: name of elements of this type
194  * @rank: rank of element (higher rank means more importance when autoplugging)
195  * @type: GType of element to register
196  *
197  * Create a new elementfactory capable of instantiating objects of the
198  * @type and add the factory to @plugin.
199  *
200  * Returns: TRUE, if the registering succeeded, FALSE on error
201  */
202 gboolean
203 gst_element_register (GstPlugin * plugin, const gchar * name, guint rank,
204     GType type)
205 {
206   GstPluginFeature *existing_feature;
207   GstRegistry *registry;
208   GstElementFactory *factory;
209   GType *interfaces;
210   guint n_interfaces, i;
211   GstElementClass *klass;
212   GList *item;
213
214   g_return_val_if_fail (name != NULL, FALSE);
215   g_return_val_if_fail (g_type_is_a (type, GST_TYPE_ELEMENT), FALSE);
216
217   registry = gst_registry_get ();
218
219   /* check if feature already exists, if it exists there is no need to update it
220    * when the registry is getting updated, outdated plugins and all their
221    * features are removed and readded.
222    */
223   existing_feature = gst_registry_lookup_feature (registry, name);
224   if (existing_feature) {
225     GST_DEBUG_OBJECT (registry, "update existing feature %p (%s)",
226         existing_feature, name);
227     factory = GST_ELEMENT_FACTORY_CAST (existing_feature);
228     factory->type = type;
229     existing_feature->loaded = TRUE;
230     g_type_set_qdata (type, __gst_elementclass_factory, factory);
231     gst_object_unref (existing_feature);
232     return TRUE;
233   }
234
235   factory =
236       GST_ELEMENT_FACTORY_CAST (g_object_newv (GST_TYPE_ELEMENT_FACTORY, 0,
237           NULL));
238   gst_plugin_feature_set_name (GST_PLUGIN_FEATURE_CAST (factory), name);
239   GST_LOG_OBJECT (factory, "Created new elementfactory for type %s",
240       g_type_name (type));
241
242   /* provide info needed during class structure setup */
243   g_type_set_qdata (type, __gst_elementclass_factory, factory);
244   klass = GST_ELEMENT_CLASS (g_type_class_ref (type));
245
246   CHECK_METADATA_FIELD (klass, name, GST_ELEMENT_METADATA_LONGNAME);
247   CHECK_METADATA_FIELD (klass, name, GST_ELEMENT_METADATA_KLASS);
248   CHECK_METADATA_FIELD (klass, name, GST_ELEMENT_METADATA_DESCRIPTION);
249   CHECK_METADATA_FIELD (klass, name, GST_ELEMENT_METADATA_AUTHOR);
250
251   factory->type = type;
252   factory->metadata = gst_structure_copy ((GstStructure *) klass->metadata);
253
254   for (item = klass->padtemplates; item; item = item->next) {
255     GstPadTemplate *templ = item->data;
256     GstStaticPadTemplate *newt;
257     gchar *caps_string = gst_caps_to_string (templ->caps);
258
259     newt = g_slice_new (GstStaticPadTemplate);
260     newt->name_template = g_intern_string (templ->name_template);
261     newt->direction = templ->direction;
262     newt->presence = templ->presence;
263     newt->static_caps.caps = NULL;
264     newt->static_caps.string = g_intern_string (caps_string);
265     factory->staticpadtemplates =
266         g_list_append (factory->staticpadtemplates, newt);
267
268     g_free (caps_string);
269   }
270   factory->numpadtemplates = klass->numpadtemplates;
271
272   /* special stuff for URI handling */
273   if (g_type_is_a (type, GST_TYPE_URI_HANDLER)) {
274     GstURIHandlerInterface *iface = (GstURIHandlerInterface *)
275         g_type_interface_peek (klass, GST_TYPE_URI_HANDLER);
276
277     if (!iface || !iface->get_type || !iface->get_protocols)
278       goto urierror;
279     if (iface->get_type)
280       factory->uri_type = iface->get_type (factory->type);
281     if (!GST_URI_TYPE_IS_VALID (factory->uri_type))
282       goto urierror;
283     if (iface->get_protocols) {
284       const gchar *const *protocols;
285
286       protocols = iface->get_protocols (factory->type);
287       factory->uri_protocols = g_strdupv ((gchar **) protocols);
288     }
289     if (!factory->uri_protocols)
290       goto urierror;
291   }
292
293   interfaces = g_type_interfaces (type, &n_interfaces);
294   for (i = 0; i < n_interfaces; i++) {
295     __gst_element_factory_add_interface (factory, g_type_name (interfaces[i]));
296   }
297   g_free (interfaces);
298
299   if (plugin && plugin->desc.name) {
300     GST_PLUGIN_FEATURE_CAST (factory)->plugin_name = plugin->desc.name;
301     GST_PLUGIN_FEATURE_CAST (factory)->plugin = plugin;
302     g_object_add_weak_pointer ((GObject *) plugin,
303         (gpointer *) & GST_PLUGIN_FEATURE_CAST (factory)->plugin);
304   } else {
305     GST_PLUGIN_FEATURE_CAST (factory)->plugin_name = "NULL";
306     GST_PLUGIN_FEATURE_CAST (factory)->plugin = NULL;
307   }
308   gst_plugin_feature_set_rank (GST_PLUGIN_FEATURE_CAST (factory), rank);
309   GST_PLUGIN_FEATURE_CAST (factory)->loaded = TRUE;
310
311   gst_registry_add_feature (registry, GST_PLUGIN_FEATURE_CAST (factory));
312
313   return TRUE;
314
315   /* ERRORS */
316 urierror:
317   {
318     GST_WARNING_OBJECT (factory, "error with uri handler!");
319     gst_element_factory_cleanup (factory);
320     return FALSE;
321   }
322
323 detailserror:
324   {
325     gst_element_factory_cleanup (factory);
326     return FALSE;
327   }
328 }
329
330 /**
331  * gst_element_factory_create:
332  * @factory: factory to instantiate
333  * @name: (allow-none): name of new element, or NULL to automatically create
334  *    a unique name
335  *
336  * Create a new element of the type defined by the given elementfactory.
337  * It will be given the name supplied, since all elements require a name as
338  * their first argument.
339  *
340  * Returns: (transfer floating): new #GstElement or NULL if the element couldn't
341  *     be created
342  */
343 GstElement *
344 gst_element_factory_create (GstElementFactory * factory, const gchar * name)
345 {
346   GstElement *element;
347   GstElementClass *oclass;
348   GstElementFactory *newfactory;
349
350   g_return_val_if_fail (factory != NULL, NULL);
351
352   newfactory =
353       GST_ELEMENT_FACTORY (gst_plugin_feature_load (GST_PLUGIN_FEATURE
354           (factory)));
355
356   if (newfactory == NULL)
357     goto load_failed;
358
359   factory = newfactory;
360
361   if (name)
362     GST_INFO ("creating element \"%s\" named \"%s\"",
363         GST_OBJECT_NAME (factory), GST_STR_NULL (name));
364   else
365     GST_INFO ("creating element \"%s\"", GST_OBJECT_NAME (factory));
366
367   if (factory->type == 0)
368     goto no_type;
369
370   /* create an instance of the element, cast so we don't assert on NULL
371    * also set name as early as we can
372    */
373   if (name)
374     element =
375         GST_ELEMENT_CAST (g_object_new (factory->type, "name", name, NULL));
376   else
377     element = GST_ELEMENT_CAST (g_object_newv (factory->type, 0, NULL));
378   if (G_UNLIKELY (element == NULL))
379     goto no_element;
380
381   /* fill in the pointer to the factory in the element class. The
382    * class will not be unreffed currently.
383    * Be thread safe as there might be 2 threads creating the first instance of
384    * an element at the same moment
385    */
386   oclass = GST_ELEMENT_GET_CLASS (element);
387   if (!g_atomic_pointer_compare_and_exchange (&oclass->elementfactory, NULL,
388           factory))
389     gst_object_unref (factory);
390
391   GST_DEBUG ("created element \"%s\"", GST_OBJECT_NAME (factory));
392
393   return element;
394
395   /* ERRORS */
396 load_failed:
397   {
398     GST_WARNING_OBJECT (factory,
399         "loading plugin containing feature %s returned NULL!", name);
400     return NULL;
401   }
402 no_type:
403   {
404     GST_WARNING_OBJECT (factory, "factory has no type");
405     gst_object_unref (factory);
406     return NULL;
407   }
408 no_element:
409   {
410     GST_WARNING_OBJECT (factory, "could not create element");
411     gst_object_unref (factory);
412     return NULL;
413   }
414 }
415
416 /**
417  * gst_element_factory_make:
418  * @factoryname: a named factory to instantiate
419  * @name: (allow-none): name of new element, or NULL to automatically create
420  *    a unique name
421  *
422  * Create a new element of the type defined by the given element factory.
423  * If name is NULL, then the element will receive a guaranteed unique name,
424  * consisting of the element factory name and a number.
425  * If name is given, it will be given the name supplied.
426  *
427  * Returns: (transfer floating): new #GstElement or NULL if unable to create element
428  */
429 GstElement *
430 gst_element_factory_make (const gchar * factoryname, const gchar * name)
431 {
432   GstElementFactory *factory;
433   GstElement *element;
434
435   g_return_val_if_fail (factoryname != NULL, NULL);
436   g_return_val_if_fail (gst_is_initialized (), NULL);
437
438   GST_LOG ("gstelementfactory: make \"%s\" \"%s\"",
439       factoryname, GST_STR_NULL (name));
440
441   factory = gst_element_factory_find (factoryname);
442   if (factory == NULL)
443     goto no_factory;
444
445   GST_LOG_OBJECT (factory, "found factory %p", factory);
446   element = gst_element_factory_create (factory, name);
447   if (element == NULL)
448     goto create_failed;
449
450   gst_object_unref (factory);
451   return element;
452
453   /* ERRORS */
454 no_factory:
455   {
456     GST_INFO ("no such element factory \"%s\"!", factoryname);
457     return NULL;
458   }
459 create_failed:
460   {
461     GST_INFO_OBJECT (factory, "couldn't create instance!");
462     gst_object_unref (factory);
463     return NULL;
464   }
465 }
466
467 void
468 __gst_element_factory_add_static_pad_template (GstElementFactory * factory,
469     GstStaticPadTemplate * templ)
470 {
471   g_return_if_fail (factory != NULL);
472   g_return_if_fail (templ != NULL);
473
474   factory->staticpadtemplates =
475       g_list_append (factory->staticpadtemplates, templ);
476   factory->numpadtemplates++;
477 }
478
479 /**
480  * gst_element_factory_get_element_type:
481  * @factory: factory to get managed #GType from
482  *
483  * Get the #GType for elements managed by this factory. The type can
484  * only be retrieved if the element factory is loaded, which can be
485  * assured with gst_plugin_feature_load().
486  *
487  * Returns: the #GType for elements managed by this factory or 0 if
488  * the factory is not loaded.
489  */
490 GType
491 gst_element_factory_get_element_type (GstElementFactory * factory)
492 {
493   g_return_val_if_fail (GST_IS_ELEMENT_FACTORY (factory), 0);
494
495   return factory->type;
496 }
497
498 /**
499  * gst_element_factory_get_metadata:
500  * @factory: a #GstElementFactory
501  * @key: a key
502  *
503  * Get the metadata on @factory with @key.
504  *
505  * Returns: the metadata with @key on @factory or %NULL when there was no
506  * metadata with the given @key.
507  */
508 const gchar *
509 gst_element_factory_get_metadata (GstElementFactory * factory,
510     const gchar * key)
511 {
512   return gst_structure_get_string ((GstStructure *) factory->metadata, key);
513 }
514
515 /**
516  * gst_element_factory_get_metadata_keys:
517  * @factory: a #GstElementFactory
518  *
519  * Get the available keys for the metadata on @factory.
520  *
521  * Returns: (transfer full) (element-type utf8) (array zero-terminated=1):
522  * a %NULL-terminated array of key strings, or %NULL when there is no
523  * metadata. Free with g_strfreev() when no longer needed.
524  */
525 gchar **
526 gst_element_factory_get_metadata_keys (GstElementFactory * factory)
527 {
528   GstStructure *metadata;
529   gchar **arr;
530   gint i, num;
531
532   g_return_val_if_fail (GST_IS_ELEMENT_FACTORY (factory), NULL);
533
534   metadata = (GstStructure *) factory->metadata;
535   if (metadata == NULL)
536     return NULL;
537
538   num = gst_structure_n_fields (metadata);
539   if (num == 0)
540     return NULL;
541
542   arr = g_new (gchar *, num + 1);
543   for (i = 0; i < num; ++i) {
544     arr[i] = g_strdup (gst_structure_nth_field_name (metadata, i));
545   }
546   arr[i] = NULL;
547   return arr;
548 }
549
550 /**
551  * gst_element_factory_get_num_pad_templates:
552  * @factory: a #GstElementFactory
553  *
554  * Gets the number of pad_templates in this factory.
555  *
556  * Returns: the number of pad_templates
557  */
558 guint
559 gst_element_factory_get_num_pad_templates (GstElementFactory * factory)
560 {
561   g_return_val_if_fail (GST_IS_ELEMENT_FACTORY (factory), 0);
562
563   return factory->numpadtemplates;
564 }
565
566 /**
567  * __gst_element_factory_add_interface:
568  * @elementfactory: The elementfactory to add the interface to
569  * @interfacename: Name of the interface
570  *
571  * Adds the given interfacename to the list of implemented interfaces of the
572  * element.
573  */
574 void
575 __gst_element_factory_add_interface (GstElementFactory * elementfactory,
576     const gchar * interfacename)
577 {
578   g_return_if_fail (GST_IS_ELEMENT_FACTORY (elementfactory));
579   g_return_if_fail (interfacename != NULL);
580   g_return_if_fail (interfacename[0] != '\0');  /* no empty string */
581
582   elementfactory->interfaces =
583       g_list_prepend (elementfactory->interfaces,
584       (gpointer) g_intern_string (interfacename));
585 }
586
587 /**
588  * gst_element_factory_get_static_pad_templates:
589  * @factory: a #GstElementFactory
590  *
591  * Gets the #GList of #GstStaticPadTemplate for this factory.
592  *
593  * Returns: (transfer none) (element-type Gst.StaticPadTemplate): the
594  *     static pad templates
595  */
596 const GList *
597 gst_element_factory_get_static_pad_templates (GstElementFactory * factory)
598 {
599   g_return_val_if_fail (GST_IS_ELEMENT_FACTORY (factory), NULL);
600
601   return factory->staticpadtemplates;
602 }
603
604 /**
605  * gst_element_factory_get_uri_type:
606  * @factory: a #GstElementFactory
607  *
608  * Gets the type of URIs the element supports or #GST_URI_UNKNOWN if none.
609  *
610  * Returns: type of URIs this element supports
611  */
612 GstURIType
613 gst_element_factory_get_uri_type (GstElementFactory * factory)
614 {
615   g_return_val_if_fail (GST_IS_ELEMENT_FACTORY (factory), GST_URI_UNKNOWN);
616
617   return factory->uri_type;
618 }
619
620 /**
621  * gst_element_factory_get_uri_protocols:
622  * @factory: a #GstElementFactory
623  *
624  * Gets a NULL-terminated array of protocols this element supports or NULL if
625  * no protocols are supported. You may not change the contents of the returned
626  * array, as it is still owned by the element factory. Use g_strdupv() to
627  * make a copy of the protocol string array if you need to.
628  *
629  * Returns: (transfer none) (array zero-terminated=1): the supported protocols
630  *     or NULL
631  */
632 const gchar *const *
633 gst_element_factory_get_uri_protocols (GstElementFactory * factory)
634 {
635   g_return_val_if_fail (GST_IS_ELEMENT_FACTORY (factory), NULL);
636
637   return (const gchar * const *) factory->uri_protocols;
638 }
639
640 /**
641  * gst_element_factory_has_interface:
642  * @factory: a #GstElementFactory
643  * @interfacename: an interface name
644  *
645  * Check if @factory implements the interface with name @interfacename.
646  *
647  * Returns: #TRUE when @factory implement the interface.
648  */
649 gboolean
650 gst_element_factory_has_interface (GstElementFactory * factory,
651     const gchar * interfacename)
652 {
653   GList *walk;
654
655   g_return_val_if_fail (GST_IS_ELEMENT_FACTORY (factory), FALSE);
656
657   for (walk = factory->interfaces; walk; walk = g_list_next (walk)) {
658     gchar *iname = (gchar *) walk->data;
659
660     if (!strcmp (iname, interfacename))
661       return TRUE;
662   }
663   return FALSE;
664 }
665
666
667 typedef struct
668 {
669   GstElementFactoryListType type;
670   GstRank minrank;
671 } FilterData;
672
673
674 /**
675  * gst_element_factory_list_is_type:
676  * @factory: a #GstElementFactory
677  * @type: a #GstElementFactoryListType
678  *
679  * Check if @factory is of the given types.
680  *
681  * Returns: %TRUE if @factory is of @type.
682  */
683 gboolean
684 gst_element_factory_list_is_type (GstElementFactory * factory,
685     GstElementFactoryListType type)
686 {
687   gboolean res = FALSE;
688   const gchar *klass;
689
690   klass =
691       gst_element_factory_get_metadata (factory, GST_ELEMENT_METADATA_KLASS);
692
693   if (klass == NULL) {
694     GST_ERROR_OBJECT (factory, "element factory is missing klass identifiers");
695     return res;
696   }
697
698   /* Filter by element type first, as soon as it matches
699    * one type, we skip all other tests */
700   if (!res && (type & GST_ELEMENT_FACTORY_TYPE_SINK))
701     res = (strstr (klass, "Sink") != NULL);
702
703   if (!res && (type & GST_ELEMENT_FACTORY_TYPE_SRC))
704     res = (strstr (klass, "Source") != NULL);
705
706   if (!res && (type & GST_ELEMENT_FACTORY_TYPE_DECODER))
707     res = (strstr (klass, "Decoder") != NULL);
708
709   if (!res && (type & GST_ELEMENT_FACTORY_TYPE_ENCODER))
710     res = (strstr (klass, "Encoder") != NULL);
711
712   if (!res && (type & GST_ELEMENT_FACTORY_TYPE_MUXER))
713     res = (strstr (klass, "Muxer") != NULL);
714
715   if (!res && (type & GST_ELEMENT_FACTORY_TYPE_DEMUXER))
716     res = (strstr (klass, "Demux") != NULL);
717
718   /* FIXME : We're actually parsing two Classes here... */
719   if (!res && (type & GST_ELEMENT_FACTORY_TYPE_PARSER))
720     res = ((strstr (klass, "Parser") != NULL)
721         && (strstr (klass, "Codec") != NULL));
722
723   if (!res && (type & GST_ELEMENT_FACTORY_TYPE_DEPAYLOADER))
724     res = (strstr (klass, "Depayloader") != NULL);
725
726   if (!res && (type & GST_ELEMENT_FACTORY_TYPE_PAYLOADER))
727     res = (strstr (klass, "Payloader") != NULL);
728
729   if (!res && (type & GST_ELEMENT_FACTORY_TYPE_FORMATTER))
730     res = (strstr (klass, "Formatter") != NULL);
731
732   /* Filter by media type now, we only test if it
733    * matched any of the types above or only checking the media
734    * type was requested. */
735   if ((res || !(type & (GST_ELEMENT_FACTORY_TYPE_MAX_ELEMENTS - 1)))
736       && (type & (GST_ELEMENT_FACTORY_TYPE_MEDIA_AUDIO |
737               GST_ELEMENT_FACTORY_TYPE_MEDIA_VIDEO |
738               GST_ELEMENT_FACTORY_TYPE_MEDIA_IMAGE |
739               GST_ELEMENT_FACTORY_TYPE_MEDIA_SUBTITLE |
740               GST_ELEMENT_FACTORY_TYPE_MEDIA_METADATA)))
741     res = ((type & GST_ELEMENT_FACTORY_TYPE_MEDIA_AUDIO)
742         && (strstr (klass, "Audio") != NULL))
743         || ((type & GST_ELEMENT_FACTORY_TYPE_MEDIA_VIDEO)
744         && (strstr (klass, "Video") != NULL))
745         || ((type & GST_ELEMENT_FACTORY_TYPE_MEDIA_IMAGE)
746         && (strstr (klass, "Image") != NULL)) ||
747         ((type & GST_ELEMENT_FACTORY_TYPE_MEDIA_SUBTITLE)
748         && (strstr (klass, "Subtitle") != NULL)) ||
749         ((type & GST_ELEMENT_FACTORY_TYPE_MEDIA_METADATA)
750         && (strstr (klass, "Metadata") != NULL));
751
752   return res;
753 }
754
755 static gboolean
756 element_filter (GstPluginFeature * feature, FilterData * data)
757 {
758   gboolean res;
759
760   /* we only care about element factories */
761   if (G_UNLIKELY (!GST_IS_ELEMENT_FACTORY (feature)))
762     return FALSE;
763
764   res = (gst_plugin_feature_get_rank (feature) >= data->minrank) &&
765       gst_element_factory_list_is_type (GST_ELEMENT_FACTORY_CAST (feature),
766       data->type);
767
768   return res;
769 }
770
771 /**
772  * gst_element_factory_list_get_elements:
773  * @type: a #GstElementFactoryListType
774  * @minrank: Minimum rank
775  *
776  * Get a list of factories that match the given @type. Only elements
777  * with a rank greater or equal to @minrank will be returned.
778  * The list of factories is returned by decreasing rank.
779  *
780  * Returns: (transfer full) (element-type Gst.ElementFactory): a #GList of
781  *     #GstElementFactory elements. Use gst_plugin_feature_list_free() after
782  *     usage.
783  */
784 GList *
785 gst_element_factory_list_get_elements (GstElementFactoryListType type,
786     GstRank minrank)
787 {
788   GList *result;
789   FilterData data;
790
791   /* prepare type */
792   data.type = type;
793   data.minrank = minrank;
794
795   /* get the feature list using the filter */
796   result = gst_registry_feature_filter (gst_registry_get (),
797       (GstPluginFeatureFilter) element_filter, FALSE, &data);
798
799   /* sort on rank and name */
800   result = g_list_sort (result, gst_plugin_feature_rank_compare_func);
801
802   return result;
803 }
804
805 /**
806  * gst_element_factory_list_filter:
807  * @list: (transfer none) (element-type Gst.ElementFactory): a #GList of
808  *     #GstElementFactory to filter
809  * @caps: a #GstCaps
810  * @direction: a #GstPadDirection to filter on
811  * @subsetonly: whether to filter on caps subsets or not.
812  *
813  * Filter out all the elementfactories in @list that can handle @caps in
814  * the given direction.
815  *
816  * If @subsetonly is %TRUE, then only the elements whose pads templates
817  * are a complete superset of @caps will be returned. Else any element
818  * whose pad templates caps can intersect with @caps will be returned.
819  *
820  * Returns: (transfer full) (element-type Gst.ElementFactory): a #GList of
821  *     #GstElementFactory elements that match the given requisits.
822  *     Use #gst_plugin_feature_list_free after usage.
823  */
824 GList *
825 gst_element_factory_list_filter (GList * list,
826     const GstCaps * caps, GstPadDirection direction, gboolean subsetonly)
827 {
828   GQueue results = G_QUEUE_INIT;
829
830   GST_DEBUG ("finding factories");
831
832   /* loop over all the factories */
833   for (; list; list = list->next) {
834     GstElementFactory *factory;
835     const GList *templates;
836     GList *walk;
837
838     factory = (GstElementFactory *) list->data;
839
840     GST_DEBUG ("Trying %s",
841         gst_plugin_feature_get_name ((GstPluginFeature *) factory));
842
843     /* get the templates from the element factory */
844     templates = gst_element_factory_get_static_pad_templates (factory);
845     for (walk = (GList *) templates; walk; walk = g_list_next (walk)) {
846       GstStaticPadTemplate *templ = walk->data;
847
848       /* we only care about the sink templates */
849       if (templ->direction == direction) {
850         GstCaps *tmpl_caps;
851
852         /* try to intersect the caps with the caps of the template */
853         tmpl_caps = gst_static_caps_get (&templ->static_caps);
854
855         /* FIXME, intersect is not the right method, we ideally want to check
856          * for a subset here */
857
858         /* check if the intersection is empty */
859         if ((subsetonly && gst_caps_is_subset (caps, tmpl_caps)) ||
860             (!subsetonly && gst_caps_can_intersect (caps, tmpl_caps))) {
861           /* non empty intersection, we can use this element */
862           g_queue_push_tail (&results, gst_object_ref (factory));
863           gst_caps_unref (tmpl_caps);
864           break;
865         }
866         gst_caps_unref (tmpl_caps);
867       }
868     }
869   }
870   return results.head;
871 }