Merge branch 'master' into 0.11
[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., 59 Temple Place - Suite 330,
21  * Boston, MA 02111-1307, 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_default (), 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     GstCaps *caps = (GstCaps *) & (templ->static_caps);
164
165     /* FIXME: this is not threadsafe */
166     if (GST_CAPS_REFCOUNT_VALUE (caps) == 1) {
167       GstStructure *structure;
168       guint i;
169
170       for (i = 0; i < caps->structs->len; i++) {
171         structure = (GstStructure *) gst_caps_get_structure (caps, i);
172         gst_structure_set_parent_refcount (structure, NULL);
173         gst_structure_free (structure);
174       }
175       g_ptr_array_free (caps->structs, TRUE);
176       GST_CAPS_REFCOUNT (caps) = 0;
177     }
178     g_slice_free (GstStaticPadTemplate, templ);
179   }
180   g_list_free (factory->staticpadtemplates);
181   factory->staticpadtemplates = NULL;
182   factory->numpadtemplates = 0;
183   factory->uri_type = GST_URI_UNKNOWN;
184   if (factory->uri_protocols) {
185     g_strfreev (factory->uri_protocols);
186     factory->uri_protocols = NULL;
187   }
188
189   g_list_free (factory->interfaces);
190   factory->interfaces = NULL;
191 }
192
193 /**
194  * gst_element_register:
195  * @plugin: (allow-none): #GstPlugin to register the element with, or NULL for
196  *     a static element (note that passing NULL only works in GStreamer 0.10.13
197  *     and later)
198  * @name: name of elements of this type
199  * @rank: rank of element (higher rank means more importance when autoplugging)
200  * @type: GType of element to register
201  *
202  * Create a new elementfactory capable of instantiating objects of the
203  * @type and add the factory to @plugin.
204  *
205  * Returns: TRUE, if the registering succeeded, FALSE on error
206  */
207 gboolean
208 gst_element_register (GstPlugin * plugin, const gchar * name, guint rank,
209     GType type)
210 {
211   GstPluginFeature *existing_feature;
212   GstRegistry *registry;
213   GstElementFactory *factory;
214   GType *interfaces;
215   guint n_interfaces, i;
216   GstElementClass *klass;
217   GList *item;
218
219   g_return_val_if_fail (name != NULL, FALSE);
220   g_return_val_if_fail (g_type_is_a (type, GST_TYPE_ELEMENT), FALSE);
221
222   registry = gst_registry_get_default ();
223
224   /* check if feature already exists, if it exists there is no need to update it
225    * when the registry is getting updated, outdated plugins and all their
226    * features are removed and readded.
227    */
228   existing_feature = gst_registry_lookup_feature (registry, name);
229   if (existing_feature) {
230     GST_DEBUG_OBJECT (registry, "update existing feature %p (%s)",
231         existing_feature, name);
232     factory = GST_ELEMENT_FACTORY_CAST (existing_feature);
233     factory->type = type;
234     existing_feature->loaded = TRUE;
235     g_type_set_qdata (type, _gst_elementclass_factory, factory);
236     gst_object_unref (existing_feature);
237     return TRUE;
238   }
239
240   factory =
241       GST_ELEMENT_FACTORY_CAST (g_object_newv (GST_TYPE_ELEMENT_FACTORY, 0,
242           NULL));
243   gst_plugin_feature_set_name (GST_PLUGIN_FEATURE_CAST (factory), name);
244   GST_LOG_OBJECT (factory, "Created new elementfactory for type %s",
245       g_type_name (type));
246
247   /* provide info needed during class structure setup */
248   g_type_set_qdata (type, _gst_elementclass_factory, factory);
249   klass = GST_ELEMENT_CLASS (g_type_class_ref (type));
250 #if 0
251   /* FIXME */
252   if ((klass->details.longname == NULL) ||
253       (klass->details.klass == NULL) || (klass->details.author == NULL))
254     goto detailserror;
255 #endif
256
257   factory->type = type;
258   factory->metadata = gst_structure_copy ((GstStructure *) klass->metadata);
259
260   for (item = klass->padtemplates; item; item = item->next) {
261     GstPadTemplate *templ = item->data;
262     GstStaticPadTemplate *newt;
263     gchar *caps_string = gst_caps_to_string (templ->caps);
264
265     newt = g_slice_new (GstStaticPadTemplate);
266     newt->name_template = g_intern_string (templ->name_template);
267     newt->direction = templ->direction;
268     newt->presence = templ->presence;
269     newt->static_caps.caps.mini_object.refcount = 0;
270     newt->static_caps.string = g_intern_string (caps_string);
271     factory->staticpadtemplates =
272         g_list_append (factory->staticpadtemplates, newt);
273
274     g_free (caps_string);
275   }
276   factory->numpadtemplates = klass->numpadtemplates;
277
278   /* special stuff for URI handling */
279   if (g_type_is_a (type, GST_TYPE_URI_HANDLER)) {
280     GstURIHandlerInterface *iface = (GstURIHandlerInterface *)
281         g_type_interface_peek (klass, GST_TYPE_URI_HANDLER);
282
283     if (!iface || (!iface->get_type && !iface->get_type_full) ||
284         (!iface->get_protocols && !iface->get_protocols_full))
285       goto urierror;
286     if (iface->get_type)
287       factory->uri_type = iface->get_type ();
288     else if (iface->get_type_full)
289       factory->uri_type = iface->get_type_full (factory->type);
290     if (!GST_URI_TYPE_IS_VALID (factory->uri_type))
291       goto urierror;
292     if (iface->get_protocols)
293       factory->uri_protocols = g_strdupv (iface->get_protocols ());
294     else if (iface->get_protocols_full)
295       factory->uri_protocols = iface->get_protocols_full (factory->type);
296     if (!factory->uri_protocols)
297       goto urierror;
298   }
299
300   interfaces = g_type_interfaces (type, &n_interfaces);
301   for (i = 0; i < n_interfaces; i++) {
302     __gst_element_factory_add_interface (factory, g_type_name (interfaces[i]));
303   }
304   g_free (interfaces);
305
306   if (plugin && plugin->desc.name) {
307     GST_PLUGIN_FEATURE_CAST (factory)->plugin_name = plugin->desc.name;
308   } else {
309     GST_PLUGIN_FEATURE_CAST (factory)->plugin_name = "NULL";
310   }
311   gst_plugin_feature_set_rank (GST_PLUGIN_FEATURE_CAST (factory), rank);
312   GST_PLUGIN_FEATURE_CAST (factory)->loaded = TRUE;
313
314   gst_registry_add_feature (registry, GST_PLUGIN_FEATURE_CAST (factory));
315
316   return TRUE;
317
318   /* ERRORS */
319 urierror:
320   {
321     GST_WARNING_OBJECT (factory, "error with uri handler!");
322     gst_element_factory_cleanup (factory);
323     return FALSE;
324   }
325
326 #if 0
327 detailserror:
328   {
329     GST_WARNING_OBJECT (factory,
330         "The GstElementDetails don't seem to have been set properly");
331     gst_element_factory_cleanup (factory);
332     return FALSE;
333   }
334 #endif
335 }
336
337 /**
338  * gst_element_factory_create:
339  * @factory: factory to instantiate
340  * @name: name of new element
341  *
342  * Create a new element of the type defined by the given elementfactory.
343  * It will be given the name supplied, since all elements require a name as
344  * their first argument.
345  *
346  * Returns: (transfer full): new #GstElement or NULL if the element couldn't
347  *     be created
348  */
349 GstElement *
350 gst_element_factory_create (GstElementFactory * factory, const gchar * name)
351 {
352   GstElement *element;
353   GstElementClass *oclass;
354   GstElementFactory *newfactory;
355
356   g_return_val_if_fail (factory != NULL, NULL);
357
358   newfactory =
359       GST_ELEMENT_FACTORY (gst_plugin_feature_load (GST_PLUGIN_FEATURE
360           (factory)));
361
362   if (newfactory == NULL)
363     goto load_failed;
364
365   factory = newfactory;
366
367   if (name)
368     GST_INFO ("creating element \"%s\" named \"%s\"",
369         GST_PLUGIN_FEATURE_NAME (factory), GST_STR_NULL (name));
370   else
371     GST_INFO ("creating element \"%s\"", GST_PLUGIN_FEATURE_NAME (factory));
372
373   if (factory->type == 0)
374     goto no_type;
375
376   /* create an instance of the element, cast so we don't assert on NULL
377    * also set name as early as we can
378    */
379   if (name)
380     element =
381         GST_ELEMENT_CAST (g_object_new (factory->type, "name", name, NULL));
382   else
383     element = GST_ELEMENT_CAST (g_object_newv (factory->type, 0, NULL));
384   if (G_UNLIKELY (element == NULL))
385     goto no_element;
386
387   /* fill in the pointer to the factory in the element class. The
388    * class will not be unreffed currently.
389    * Be thread safe as there might be 2 threads creating the first instance of
390    * an element at the same moment
391    */
392   oclass = GST_ELEMENT_GET_CLASS (element);
393   if (!g_atomic_pointer_compare_and_exchange (
394           (gpointer) & oclass->elementfactory, NULL, factory))
395     gst_object_unref (factory);
396
397   GST_DEBUG ("created element \"%s\"", GST_PLUGIN_FEATURE_NAME (factory));
398
399   return element;
400
401   /* ERRORS */
402 load_failed:
403   {
404     GST_WARNING_OBJECT (factory,
405         "loading plugin containing feature %s returned NULL!", name);
406     return NULL;
407   }
408 no_type:
409   {
410     GST_WARNING_OBJECT (factory, "factory has no type");
411     gst_object_unref (factory);
412     return NULL;
413   }
414 no_element:
415   {
416     GST_WARNING_OBJECT (factory, "could not create element");
417     gst_object_unref (factory);
418     return NULL;
419   }
420 }
421
422 /**
423  * gst_element_factory_make:
424  * @factoryname: a named factory to instantiate
425  * @name: (allow-none): name of new element
426  *
427  * Create a new element of the type defined by the given element factory.
428  * If name is NULL, then the element will receive a guaranteed unique name,
429  * consisting of the element factory name and a number.
430  * If name is given, it will be given the name supplied.
431  *
432  * Returns: (transfer full): new #GstElement or NULL if unable to create element
433  */
434 GstElement *
435 gst_element_factory_make (const gchar * factoryname, const gchar * name)
436 {
437   GstElementFactory *factory;
438   GstElement *element;
439
440   g_return_val_if_fail (factoryname != NULL, NULL);
441   g_return_val_if_fail (gst_is_initialized (), NULL);
442
443   GST_LOG ("gstelementfactory: make \"%s\" \"%s\"",
444       factoryname, GST_STR_NULL (name));
445
446   factory = gst_element_factory_find (factoryname);
447   if (factory == NULL)
448     goto no_factory;
449
450   GST_LOG_OBJECT (factory, "found factory %p", factory);
451   element = gst_element_factory_create (factory, name);
452   if (element == NULL)
453     goto create_failed;
454
455   gst_object_unref (factory);
456   return element;
457
458   /* ERRORS */
459 no_factory:
460   {
461     GST_INFO ("no such element factory \"%s\"!", factoryname);
462     return NULL;
463   }
464 create_failed:
465   {
466     GST_INFO_OBJECT (factory, "couldn't create instance!");
467     gst_object_unref (factory);
468     return NULL;
469   }
470 }
471
472 void
473 __gst_element_factory_add_static_pad_template (GstElementFactory * factory,
474     GstStaticPadTemplate * templ)
475 {
476   g_return_if_fail (factory != NULL);
477   g_return_if_fail (templ != NULL);
478
479   factory->staticpadtemplates =
480       g_list_append (factory->staticpadtemplates, templ);
481   factory->numpadtemplates++;
482 }
483
484 /**
485  * gst_element_factory_get_element_type:
486  * @factory: factory to get managed #GType from
487  *
488  * Get the #GType for elements managed by this factory. The type can
489  * only be retrieved if the element factory is loaded, which can be
490  * assured with gst_plugin_feature_load().
491  *
492  * Returns: the #GType for elements managed by this factory or 0 if
493  * the factory is not loaded.
494  */
495 GType
496 gst_element_factory_get_element_type (GstElementFactory * factory)
497 {
498   g_return_val_if_fail (GST_IS_ELEMENT_FACTORY (factory), 0);
499
500   return factory->type;
501 }
502
503 G_CONST_RETURN gchar *
504 gst_element_factory_get_metadata (GstElementFactory * factory,
505     const gchar * key)
506 {
507   return gst_structure_get_string ((GstStructure *) factory->metadata, key);
508 }
509
510 /**
511  * gst_element_factory_get_num_pad_templates:
512  * @factory: a #GstElementFactory
513  *
514  * Gets the number of pad_templates in this factory.
515  *
516  * Returns: the number of pad_templates
517  */
518 guint
519 gst_element_factory_get_num_pad_templates (GstElementFactory * factory)
520 {
521   g_return_val_if_fail (GST_IS_ELEMENT_FACTORY (factory), 0);
522
523   return factory->numpadtemplates;
524 }
525
526 /**
527  * __gst_element_factory_add_interface:
528  * @elementfactory: The elementfactory to add the interface to
529  * @interfacename: Name of the interface
530  *
531  * Adds the given interfacename to the list of implemented interfaces of the
532  * element.
533  */
534 void
535 __gst_element_factory_add_interface (GstElementFactory * elementfactory,
536     const gchar * interfacename)
537 {
538   g_return_if_fail (GST_IS_ELEMENT_FACTORY (elementfactory));
539   g_return_if_fail (interfacename != NULL);
540   g_return_if_fail (interfacename[0] != '\0');  /* no empty string */
541
542   elementfactory->interfaces =
543       g_list_prepend (elementfactory->interfaces,
544       (gpointer) g_intern_string (interfacename));
545 }
546
547 /**
548  * gst_element_factory_get_static_pad_templates:
549  * @factory: a #GstElementFactory
550  *
551  * Gets the #GList of #GstStaticPadTemplate for this factory.
552  *
553  * Returns: (transfer none) (element-type Gst.StaticPadTemplate): the
554  *     static pad templates
555  */
556 G_CONST_RETURN GList *
557 gst_element_factory_get_static_pad_templates (GstElementFactory * factory)
558 {
559   g_return_val_if_fail (GST_IS_ELEMENT_FACTORY (factory), NULL);
560
561   return factory->staticpadtemplates;
562 }
563
564 /**
565  * gst_element_factory_get_uri_type:
566  * @factory: a #GstElementFactory
567  *
568  * Gets the type of URIs the element supports or #GST_URI_UNKNOWN if none.
569  *
570  * Returns: type of URIs this element supports
571  */
572 gint
573 gst_element_factory_get_uri_type (GstElementFactory * factory)
574 {
575   g_return_val_if_fail (GST_IS_ELEMENT_FACTORY (factory), GST_URI_UNKNOWN);
576
577   return factory->uri_type;
578 }
579
580 /**
581  * gst_element_factory_get_uri_protocols:
582  * @factory: a #GstElementFactory
583  *
584  * Gets a NULL-terminated array of protocols this element supports or NULL if
585  * no protocols are supported. You may not change the contents of the returned
586  * array, as it is still owned by the element factory. Use g_strdupv() to
587  * make a copy of the protocol string array if you need to.
588  *
589  * Returns: (transfer none) (array zero-terminated=1): the supported protocols
590  *     or NULL
591  */
592 gchar **
593 gst_element_factory_get_uri_protocols (GstElementFactory * factory)
594 {
595   g_return_val_if_fail (GST_IS_ELEMENT_FACTORY (factory), NULL);
596
597   return factory->uri_protocols;
598 }
599
600 /**
601  * gst_element_factory_has_interface:
602  * @factory: a #GstElementFactory
603  * @interfacename: an interface name
604  *
605  * Check if @factory implements the interface with name @interfacename.
606  *
607  * Returns: #TRUE when @factory implement the interface.
608  *
609  * Since: 0.10.14
610  */
611 gboolean
612 gst_element_factory_has_interface (GstElementFactory * factory,
613     const gchar * interfacename)
614 {
615   GList *walk;
616
617   g_return_val_if_fail (GST_IS_ELEMENT_FACTORY (factory), FALSE);
618
619   for (walk = factory->interfaces; walk; walk = g_list_next (walk)) {
620     gchar *iname = (gchar *) walk->data;
621
622     if (!strcmp (iname, interfacename))
623       return TRUE;
624   }
625   return FALSE;
626 }
627
628
629 typedef struct
630 {
631   GstElementFactoryListType type;
632   GstRank minrank;
633 } FilterData;
634
635
636 /**
637  * gst_element_factory_list_is_type:
638  * @factory: a #GstElementFactory
639  * @type: a #GstElementFactoryListType
640  *
641  * Check if @factory if of the given types.
642  *
643  * Returns: %TRUE if @factory is of @type.
644  *
645  * Since: 0.10.31
646  */
647 gboolean
648 gst_element_factory_list_is_type (GstElementFactory * factory,
649     GstElementFactoryListType type)
650 {
651   gboolean res = FALSE;
652   const gchar *klass;
653
654   klass =
655       gst_element_factory_get_metadata (factory, GST_ELEMENT_METADATA_KLASS);
656
657   /* Filter by element type first, as soon as it matches
658    * one type, we skip all other tests */
659   if (!res && (type & GST_ELEMENT_FACTORY_TYPE_SINK))
660     res = (strstr (klass, "Sink") != NULL);
661
662   if (!res && (type & GST_ELEMENT_FACTORY_TYPE_SRC))
663     res = (strstr (klass, "Source") != NULL);
664
665   if (!res && (type & GST_ELEMENT_FACTORY_TYPE_DECODER))
666     res = (strstr (klass, "Decoder") != NULL);
667
668   if (!res && (type & GST_ELEMENT_FACTORY_TYPE_ENCODER))
669     res = (strstr (klass, "Encoder") != NULL);
670
671   if (!res && (type & GST_ELEMENT_FACTORY_TYPE_MUXER))
672     res = (strstr (klass, "Muxer") != NULL);
673
674   if (!res && (type & GST_ELEMENT_FACTORY_TYPE_DEMUXER))
675     res = (strstr (klass, "Demux") != NULL);
676
677   /* FIXME : We're actually parsing two Classes here... */
678   if (!res && (type & GST_ELEMENT_FACTORY_TYPE_PARSER))
679     res = ((strstr (klass, "Parser") != NULL)
680         && (strstr (klass, "Codec") != NULL));
681
682   if (!res && (type & GST_ELEMENT_FACTORY_TYPE_DEPAYLOADER))
683     res = (strstr (klass, "Depayloader") != NULL);
684
685   if (!res && (type & GST_ELEMENT_FACTORY_TYPE_PAYLOADER))
686     res = (strstr (klass, "Payloader") != NULL);
687
688   if (!res && (type & GST_ELEMENT_FACTORY_TYPE_FORMATTER))
689     res = (strstr (klass, "Formatter") != NULL);
690
691   /* Filter by media type now, we only test if it
692    * matched any of the types above. */
693   if (res
694       && (type & (GST_ELEMENT_FACTORY_TYPE_MEDIA_AUDIO |
695               GST_ELEMENT_FACTORY_TYPE_MEDIA_VIDEO |
696               GST_ELEMENT_FACTORY_TYPE_MEDIA_IMAGE)))
697     res = ((type & GST_ELEMENT_FACTORY_TYPE_MEDIA_AUDIO)
698         && (strstr (klass, "Audio") != NULL))
699         || ((type & GST_ELEMENT_FACTORY_TYPE_MEDIA_VIDEO)
700         && (strstr (klass, "Video") != NULL))
701         || ((type & GST_ELEMENT_FACTORY_TYPE_MEDIA_IMAGE)
702         && (strstr (klass, "Image") != NULL));
703
704   return res;
705 }
706
707 static gboolean
708 element_filter (GstPluginFeature * feature, FilterData * data)
709 {
710   gboolean res;
711
712   /* we only care about element factories */
713   if (G_UNLIKELY (!GST_IS_ELEMENT_FACTORY (feature)))
714     return FALSE;
715
716   res = (gst_plugin_feature_get_rank (feature) >= data->minrank) &&
717       gst_element_factory_list_is_type (GST_ELEMENT_FACTORY_CAST (feature),
718       data->type);
719
720   return res;
721 }
722
723 /**
724  * gst_element_factory_list_get_elements:
725  * @type: a #GstElementFactoryListType
726  * @minrank: Minimum rank
727  *
728  * Get a list of factories that match the given @type. Only elements
729  * with a rank greater or equal to @minrank will be returned.
730  * The list of factories is returned by decreasing rank.
731  *
732  * Returns: (transfer full) (element-type Gst.ElementFactory): a #GList of
733  *     #GstElementFactory elements. Use gst_plugin_feature_list_free() after
734  *     usage.
735  *
736  * Since: 0.10.31
737  */
738 GList *
739 gst_element_factory_list_get_elements (GstElementFactoryListType type,
740     GstRank minrank)
741 {
742   GList *result;
743   FilterData data;
744
745   /* prepare type */
746   data.type = type;
747   data.minrank = minrank;
748
749   /* get the feature list using the filter */
750   result = gst_default_registry_feature_filter ((GstPluginFeatureFilter)
751       element_filter, FALSE, &data);
752
753   /* sort on rank and name */
754   result = g_list_sort (result, gst_plugin_feature_rank_compare_func);
755
756   return result;
757 }
758
759 /**
760  * gst_element_factory_list_filter:
761  * @list: (transfer none) (element-type Gst.ElementFactory): a #GList of
762  *     #GstElementFactory to filter
763  * @caps: a #GstCaps
764  * @direction: a #GstPadDirection to filter on
765  * @subsetonly: whether to filter on caps subsets or not.
766  *
767  * Filter out all the elementfactories in @list that can handle @caps in
768  * the given direction.
769  *
770  * If @subsetonly is %TRUE, then only the elements whose pads templates
771  * are a complete superset of @caps will be returned. Else any element
772  * whose pad templates caps can intersect with @caps will be returned.
773  *
774  * Returns: (transfer full) (element-type Gst.ElementFactory): a #GList of
775  *     #GstElementFactory elements that match the given requisits.
776  *     Use #gst_plugin_feature_list_free after usage.
777  *
778  * Since: 0.10.31
779  */
780 GList *
781 gst_element_factory_list_filter (GList * list,
782     const GstCaps * caps, GstPadDirection direction, gboolean subsetonly)
783 {
784   GList *result = NULL;
785
786   GST_DEBUG ("finding factories");
787
788   /* loop over all the factories */
789   for (; list; list = list->next) {
790     GstElementFactory *factory;
791     const GList *templates;
792     GList *walk;
793
794     factory = (GstElementFactory *) list->data;
795
796     GST_DEBUG ("Trying %s",
797         gst_plugin_feature_get_name ((GstPluginFeature *) factory));
798
799     /* get the templates from the element factory */
800     templates = gst_element_factory_get_static_pad_templates (factory);
801     for (walk = (GList *) templates; walk; walk = g_list_next (walk)) {
802       GstStaticPadTemplate *templ = walk->data;
803
804       /* we only care about the sink templates */
805       if (templ->direction == direction) {
806         GstCaps *tmpl_caps;
807
808         /* try to intersect the caps with the caps of the template */
809         tmpl_caps = gst_static_caps_get (&templ->static_caps);
810
811         /* FIXME, intersect is not the right method, we ideally want to check
812          * for a subset here */
813
814         /* check if the intersection is empty */
815         if ((subsetonly && gst_caps_is_subset (caps, tmpl_caps)) ||
816             (!subsetonly && gst_caps_can_intersect (caps, tmpl_caps))) {
817           /* non empty intersection, we can use this element */
818           result = g_list_prepend (result, gst_object_ref (factory));
819           gst_caps_unref (tmpl_caps);
820           break;
821         }
822         gst_caps_unref (tmpl_caps);
823       }
824     }
825   }
826   return g_list_reverse (result);
827 }