add a source plugin description field, to represent the source module this plugin...
[platform/upstream/gstreamer.git] / gst / gstplugin.c
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *                    2000 Wim Taymans <wtay@chello.be>
4  *
5  * gstplugin.c: Plugin subsystem for loading elements, types, and libs
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 #ifdef HAVE_CONFIG_H
24 #include "config.h"
25 #endif
26 #include <sys/types.h>
27 #include <sys/stat.h>
28 #ifdef HAVE_DIRENT_H
29 #include <dirent.h>
30 #endif
31 #ifdef HAVE_UNISTD_H
32 #include <unistd.h>
33 #endif
34 #include <signal.h>
35 #include <errno.h>
36
37 #include "gst_private.h"
38
39 #include "gstplugin.h"
40 #include "gstversion.h"
41 #include "gstregistrypool.h"
42 #include "gstinfo.h"
43 #include "gstfilter.h"
44
45
46 #define GST_CAT_DEFAULT GST_CAT_PLUGIN_LOADING
47
48 static GModule *main_module = NULL;
49 static GList *_gst_plugin_static = NULL;
50
51 /* static variables for segfault handling of plugin loading */
52 static char *_gst_plugin_fault_handler_filename = NULL;
53 extern gboolean _gst_disable_segtrap;   /* see gst.c */
54
55 #ifndef HAVE_WIN32
56 static gboolean _gst_plugin_fault_handler_is_setup = FALSE;
57 #endif
58
59 /* list of valid licenses.
60  * One of these must be specified or the plugin won't be loaded 
61  * Contact gstreamer-devel@lists.sourceforge.net if your license should be 
62  * added.
63  *
64  * GPL: http://www.gnu.org/copyleft/gpl.html
65  * LGPL: http://www.gnu.org/copyleft/lesser.html
66  * QPL: http://www.trolltech.com/licenses/qpl.html
67  */
68 static gchar *valid_licenses[] = {
69   "LGPL",                       /* GNU Lesser General Public License */
70   "GPL",                        /* GNU General Public License */
71   "QPL",                        /* Trolltech Qt Public License */
72   "GPL/QPL",                    /* Combi-license of GPL + QPL */
73   GST_LICENSE_UNKNOWN,          /* some other license */
74   NULL
75 };
76
77 static void gst_plugin_desc_copy (GstPluginDesc * dest,
78     const GstPluginDesc * src);
79
80 static GstPlugin *gst_plugin_register_func (GstPlugin * plugin,
81     GModule * module, GstPluginDesc * desc);
82
83 static GstPlugin *
84 gst_plugin_copy (GstPlugin * plugin)
85 {
86   return g_memdup (plugin, sizeof (*plugin));
87 }
88
89 GType
90 gst_plugin_get_type (void)
91 {
92   static GType plugin_type;
93
94   if (plugin_type == 0) {
95     plugin_type = g_boxed_type_register_static ("GstPlugin",
96         (GBoxedCopyFunc) gst_plugin_copy, g_free);
97   }
98
99   return plugin_type;
100 }
101
102 GQuark
103 gst_plugin_error_quark (void)
104 {
105   static GQuark quark = 0;
106
107   if (!quark)
108     quark = g_quark_from_static_string ("gst_plugin_error");
109   return quark;
110 }
111
112 /* this function can be called in the GCC constructor extension, before
113  * the _gst_plugin_initialize() was called. In that case, we store the 
114  * plugin description in a list to initialize it when we open the main
115  * module later on.
116  * When the main module is known, we can register the plugin right away.
117  */
118 void
119 _gst_plugin_register_static (GstPluginDesc * desc)
120 {
121   if (main_module == NULL) {
122     if (GST_CAT_DEFAULT)
123       GST_LOG ("queueing static plugin \"%s\" for loading later on",
124           desc->name);
125     _gst_plugin_static = g_list_prepend (_gst_plugin_static, desc);
126   } else {
127     GstPlugin *plugin;
128
129     if (GST_CAT_DEFAULT)
130       GST_LOG ("attempting to load static plugin \"%s\" now...", desc->name);
131     plugin = g_new0 (GstPlugin, 1);
132     if (gst_plugin_register_func (plugin, main_module, desc)) {
133       if (GST_CAT_DEFAULT)
134         GST_INFO ("loaded static plugin \"%s\"", desc->name);
135       gst_registry_pool_add_plugin (plugin);
136     }
137   }
138 }
139
140 void
141 _gst_plugin_initialize (void)
142 {
143   main_module = g_module_open (NULL, G_MODULE_BIND_LAZY);
144
145   /* now register all static plugins */
146   g_list_foreach (_gst_plugin_static, (GFunc) _gst_plugin_register_static,
147       NULL);
148 }
149
150 /* this function could be extended to check if the plugin license matches the 
151  * applications license (would require the app to register its license somehow).
152  * We'll wait for someone who's interested in it to code it :)
153  */
154 static gboolean
155 gst_plugin_check_license (const gchar * license)
156 {
157   gchar **check_license = valid_licenses;
158
159   g_assert (check_license);
160
161   while (*check_license) {
162     if (strcmp (license, *check_license) == 0)
163       return TRUE;
164     check_license++;
165   }
166   return FALSE;
167 }
168
169 static gboolean
170 gst_plugin_check_version (gint major, gint minor)
171 {
172   /* return NULL if the major and minor version numbers are not compatible */
173   /* with ours. */
174   if (major != GST_VERSION_MAJOR || minor != GST_VERSION_MINOR)
175     return FALSE;
176
177   return TRUE;
178 }
179
180 static GstPlugin *
181 gst_plugin_register_func (GstPlugin * plugin, GModule * module,
182     GstPluginDesc * desc)
183 {
184   g_assert (plugin->module == NULL);
185
186   if (!gst_plugin_check_version (desc->major_version, desc->minor_version)) {
187     if (GST_CAT_DEFAULT)
188       GST_INFO ("plugin \"%s\" has incompatible version, not loading",
189           plugin->filename);
190     return NULL;
191   }
192
193   if (!desc->license || !desc->description || !desc->source ||
194       !desc->package || !desc->origin) {
195     if (GST_CAT_DEFAULT)
196       GST_INFO ("plugin \"%s\" has incorrect GstPluginDesc, not loading",
197           plugin->filename);
198     return NULL;
199   }
200
201   if (!gst_plugin_check_license (desc->license)) {
202     if (GST_CAT_DEFAULT)
203       GST_INFO ("plugin \"%s\" has invalid license \"%s\", not loading",
204           plugin->filename, desc->license);
205     return NULL;
206   }
207
208   if (GST_CAT_DEFAULT)
209     GST_LOG ("plugin \"%s\" looks good", GST_STR_NULL (plugin->filename));
210
211   gst_plugin_desc_copy (&plugin->desc, desc);
212   plugin->module = module;
213
214   if (!((desc->plugin_init) (plugin))) {
215     if (GST_CAT_DEFAULT)
216       GST_INFO ("plugin \"%s\" failed to initialise", plugin->filename);
217     plugin->module = NULL;
218     return NULL;
219   }
220
221   if (GST_CAT_DEFAULT)
222     GST_LOG ("plugin \"%s\" initialised", GST_STR_NULL (plugin->filename));
223
224   return plugin;
225 }
226
227 #ifndef HAVE_WIN32
228 /*
229  * _gst_plugin_fault_handler_restore:
230  * segfault handler restorer
231  */
232 static void
233 _gst_plugin_fault_handler_restore (void)
234 {
235   struct sigaction action;
236
237   memset (&action, 0, sizeof (action));
238   action.sa_handler = SIG_DFL;
239
240   sigaction (SIGSEGV, &action, NULL);
241 }
242
243 /*
244  * _gst_plugin_fault_handler_sighandler:
245  * segfault handler implementation
246  */
247 static void
248 _gst_plugin_fault_handler_sighandler (int signum)
249 {
250   /* We need to restore the fault handler or we'll keep getting it */
251   _gst_plugin_fault_handler_restore ();
252
253   switch (signum) {
254     case SIGSEGV:
255       g_print ("\nERROR: ");
256       g_print ("Caught a segmentation fault while loading plugin file:\n");
257       g_print ("%s\n\n", _gst_plugin_fault_handler_filename);
258       g_print ("Please either:\n");
259       g_print ("- remove it and restart.\n");
260       g_print ("- run with --gst-disable-segtrap and debug.\n");
261       exit (-1);
262       break;
263     default:
264       g_print ("Caught unhandled signal on plugin loading\n");
265       break;
266   }
267 }
268
269 /*
270  * _gst_plugin_fault_handler_setup:
271  * sets up the segfault handler
272  */
273 static void
274 _gst_plugin_fault_handler_setup (void)
275 {
276   struct sigaction action;
277
278   /* if asked to leave segfaults alone, just return */
279   if (_gst_disable_segtrap)
280     return;
281
282   if (_gst_plugin_fault_handler_is_setup)
283     return;
284
285   memset (&action, 0, sizeof (action));
286   action.sa_handler = _gst_plugin_fault_handler_sighandler;
287
288   sigaction (SIGSEGV, &action, NULL);
289 }
290 #else
291 static void
292 _gst_plugin_fault_handler_restore (void)
293 {
294 }
295
296 static void
297 _gst_plugin_fault_handler_setup (void)
298 {
299 }
300 #endif
301
302 static void _gst_plugin_fault_handler_setup ();
303
304 /**
305  * gst_plugin_check_module:
306  * @module: GModule handle to check for pluginness
307  * @error: pointer to a NULL-valued GError
308  * @pptr: pointer to a gpointer used to return the gst_plugin_desc symbol
309  *        (can be NULL)
310  *
311  * Checks if the given module is a GStreamer plugin
312  *
313  * Returns: TRUE if the given module is a GStreamer plugin
314  */
315 static gboolean
316 gst_plugin_check_module (GModule * module, const char *filename,
317     GError ** error, gpointer * pptr)
318 {
319   gpointer ptr;
320
321   if (pptr == NULL)
322     pptr = &ptr;
323
324   if (module == NULL) {
325     GST_DEBUG ("Error loading plugin %s, reason: %s", filename,
326         g_module_error ());
327     g_set_error (error, GST_PLUGIN_ERROR, GST_PLUGIN_ERROR_MODULE,
328         "Error loading plugin %s, reason: %s", filename, g_module_error ());
329     return FALSE;
330   }
331
332   if (!g_module_symbol (module, "gst_plugin_desc", pptr)) {
333     GST_DEBUG ("Could not find plugin entry point in \"%s\"", filename);
334     g_set_error (error,
335         GST_PLUGIN_ERROR,
336         GST_PLUGIN_ERROR_MODULE,
337         "Could not find plugin entry point in \"%s\"", filename);
338     return FALSE;
339   }
340
341   return TRUE;
342 }
343
344 /**
345  * gst_plugin_check_file:
346  * @filename: the plugin filename to check for pluginness
347  * @error: pointer to a NULL-valued GError
348  *
349  * Checks if the given path represents a GStreamer plugin.
350  *
351  * Returns: TRUE if the given path is a GStreamer plugin.
352  */
353 gboolean
354 gst_plugin_check_file (const gchar * filename, GError ** error)
355 {
356   GModule *module;
357   struct stat file_status;
358   gboolean check;
359
360   g_return_val_if_fail (filename != NULL, FALSE);
361
362   if (g_module_supported () == FALSE) {
363     g_set_error (error,
364         GST_PLUGIN_ERROR,
365         GST_PLUGIN_ERROR_MODULE, "Dynamic loading not supported");
366     return FALSE;
367   }
368
369   if (stat (filename, &file_status)) {
370     g_set_error (error,
371         GST_PLUGIN_ERROR,
372         GST_PLUGIN_ERROR_MODULE, "Problem accessing file %s: %s\n", filename,
373         strerror (errno));
374     return FALSE;
375   }
376
377   module = g_module_open (filename, G_MODULE_BIND_LAZY | G_MODULE_BIND_LOCAL);
378   check = gst_plugin_check_module (module, filename, error, NULL);
379   g_module_close (module);
380
381   GST_INFO ("file \"%s\" %s look like a gst plugin", filename,
382       check ? "does" : "doesn't");
383   return check;
384
385 }
386
387 /**
388  * gst_plugin_load_file:
389  * @filename: the plugin filename to load
390  * @error: pointer to a NULL-valued GError
391  *
392  * Loads the given plugin.
393  *
394  * Returns: a new GstPlugin or NULL, if an error occurred.
395  */
396 GstPlugin *
397 gst_plugin_load_file (const gchar * filename, GError ** error)
398 {
399   GstPlugin *plugin;
400   GModule *module;
401   GstPluginDesc *desc;
402   gboolean free_plugin;
403   gpointer ptr;
404
405   g_return_val_if_fail (filename != NULL, NULL);
406
407   GST_CAT_DEBUG (GST_CAT_PLUGIN_LOADING, "attempt to load plugin \"%s\"",
408       filename);
409
410   module = g_module_open (filename, G_MODULE_BIND_LAZY | G_MODULE_BIND_LOCAL);
411
412   /* handle module == NULL case */
413   if (!gst_plugin_check_module (module, filename, error, &ptr))
414     return NULL;
415
416   desc = (GstPluginDesc *) ptr;
417
418   plugin = gst_registry_pool_find_plugin (desc->name);
419   if (!plugin) {
420     free_plugin = TRUE;
421     plugin = g_new0 (GstPlugin, 1);
422     plugin->filename = g_strdup (filename);
423     GST_DEBUG ("created new GstPlugin %p for file \"%s\"", plugin, filename);
424   } else {
425     free_plugin = FALSE;
426     if (gst_plugin_is_loaded (plugin)) {
427       g_module_close (module);
428       if (plugin->filename && strcmp (plugin->filename, filename) != 0) {
429         GST_WARNING
430             ("plugin %p from file \"%s\" with same name %s is already "
431             "loaded, aborting loading of \"%s\"", plugin, plugin->filename,
432             plugin->desc.name, filename);
433         g_set_error (error, GST_PLUGIN_ERROR,
434             GST_PLUGIN_ERROR_NAME_MISMATCH,
435             "plugin %p from file \"%s\" with same name %s is already "
436             "loaded, aborting loading of \"%s\"", plugin, plugin->filename,
437             plugin->desc.name, filename);
438         if (free_plugin)
439           g_free (plugin);
440         return NULL;
441       }
442       GST_LOG ("Plugin %p for file \"%s\" already loaded, returning it now",
443           plugin, filename);
444       return plugin;
445     }
446   }
447   GST_LOG ("Plugin %p for file \"%s\" prepared, calling entry function...",
448       plugin, filename);
449
450   if (g_module_symbol (module, "plugin_init", &ptr)) {
451     GST_WARNING
452         ("plugin %p from file \"%s\" exports a symbol named plugin_init\n",
453         plugin, plugin->filename);
454     g_set_error (error, GST_PLUGIN_ERROR, GST_PLUGIN_ERROR_NAME_MISMATCH,
455         "plugin \"%s\" exports a symbol named plugin_init", desc->name);
456   }
457
458   /* this is where we load the actual .so, so let's trap SIGSEGV */
459   _gst_plugin_fault_handler_setup ();
460   _gst_plugin_fault_handler_filename = plugin->filename;
461
462   GST_LOG ("Plugin %p for file \"%s\" prepared, registering...",
463       plugin, filename);
464
465   if (gst_plugin_register_func (plugin, module, desc)) {
466     /* remove signal handler */
467     _gst_plugin_fault_handler_restore ();
468     _gst_plugin_fault_handler_filename = NULL;
469     GST_INFO ("plugin \"%s\" loaded", plugin->filename);
470     return plugin;
471   } else {
472     /* remove signal handler */
473     _gst_plugin_fault_handler_restore ();
474     GST_DEBUG ("gst_plugin_register_func failed for plugin \"%s\"", filename);
475     /* plugin == NULL */
476     g_set_error (error,
477         GST_PLUGIN_ERROR,
478         GST_PLUGIN_ERROR_MODULE,
479         "gst_plugin_register_func failed for plugin \"%s\"", filename);
480     g_module_close (module);
481     if (free_plugin)
482       g_free (plugin);
483     return NULL;
484   }
485 }
486
487 static void
488 gst_plugin_desc_copy (GstPluginDesc * dest, const GstPluginDesc * src)
489 {
490   dest->major_version = src->major_version;
491   dest->minor_version = src->minor_version;
492   g_free (dest->name);
493   dest->name = g_strdup (src->name);
494   g_free (dest->description);
495   dest->description = g_strdup (src->description);
496   dest->plugin_init = src->plugin_init;
497   dest->plugin_exit = src->plugin_exit;
498   g_free (dest->version);
499   dest->version = g_strdup (src->version);
500   g_free (dest->license);
501   dest->license = g_strdup (src->license);
502   g_free (dest->source);
503   dest->source = g_strdup (src->source);
504   g_free (dest->package);
505   dest->package = g_strdup (src->package);
506   g_free (dest->origin);
507   dest->origin = g_strdup (src->origin);
508 }
509
510 #if 0
511 /* unused */
512 static void
513 gst_plugin_desc_free (GstPluginDesc * desc)
514 {
515   g_free (desc->name);
516   g_free (desc->description);
517   g_free (desc->version);
518   g_free (desc->license);
519   g_free (desc->source);
520   g_free (desc->package);
521   g_free (desc->origin);
522
523   memset (desc, 0, sizeof (GstPluginDesc));
524 }
525 #endif
526 /**
527  * gst_plugin_unload_plugin:
528  * @plugin: The plugin to unload
529  *
530  * Unload the given plugin.
531  *
532  * Returns: whether or not the plugin unloaded
533  */
534 gboolean
535 gst_plugin_unload_plugin (GstPlugin * plugin)
536 {
537   g_return_val_if_fail (plugin != NULL, FALSE);
538
539   if (!plugin->module)
540     return TRUE;
541
542   if (g_module_close (plugin->module)) {
543     plugin->module = NULL;
544     GST_CAT_INFO (GST_CAT_PLUGIN_LOADING, "plugin \"%s\" unloaded",
545         plugin->filename);
546     return TRUE;
547   } else {
548     GST_CAT_INFO (GST_CAT_PLUGIN_LOADING, "failed to unload plugin \"%s\"",
549         plugin->filename);
550     return FALSE;
551   }
552 }
553
554 /**
555  * gst_plugin_get_name:
556  * @plugin: plugin to get the name of
557  *
558  * Get the short name of the plugin
559  *
560  * Returns: the name of the plugin
561  */
562 const gchar *
563 gst_plugin_get_name (GstPlugin * plugin)
564 {
565   g_return_val_if_fail (plugin != NULL, NULL);
566
567   return plugin->desc.name;
568 }
569
570 /**
571  * gst_plugin_get_description:
572  * @plugin: plugin to get long name of
573  *
574  * Get the long descriptive name of the plugin
575  *
576  * Returns: the long name of the plugin
577  */
578 G_CONST_RETURN gchar *
579 gst_plugin_get_description (GstPlugin * plugin)
580 {
581   g_return_val_if_fail (plugin != NULL, NULL);
582
583   return plugin->desc.description;
584 }
585
586 /**
587  * gst_plugin_get_filename:
588  * @plugin: plugin to get the filename of
589  *
590  * get the filename of the plugin
591  *
592  * Returns: the filename of the plugin
593  */
594 G_CONST_RETURN gchar *
595 gst_plugin_get_filename (GstPlugin * plugin)
596 {
597   g_return_val_if_fail (plugin != NULL, NULL);
598
599   return plugin->filename;
600 }
601
602 /**
603  * gst_plugin_get_version:
604  * @plugin: plugin to get the version of
605  *
606  * get the version of the plugin
607  *
608  * Returns: the version of the plugin
609  */
610 G_CONST_RETURN gchar *
611 gst_plugin_get_version (GstPlugin * plugin)
612 {
613   g_return_val_if_fail (plugin != NULL, NULL);
614
615   return plugin->desc.version;
616 }
617
618 /**
619  * gst_plugin_get_license:
620  * @plugin: plugin to get the license of
621  *
622  * get the license of the plugin
623  *
624  * Returns: the license of the plugin
625  */
626 G_CONST_RETURN gchar *
627 gst_plugin_get_license (GstPlugin * plugin)
628 {
629   g_return_val_if_fail (plugin != NULL, NULL);
630
631   return plugin->desc.license;
632 }
633
634 /**
635  * gst_plugin_get_source:
636  * @plugin: plugin to get the source of
637  *
638  * get the source module the plugin belongs to.
639  *
640  * Returns: the source of the plugin
641  */
642 G_CONST_RETURN gchar *
643 gst_plugin_get_source (GstPlugin * plugin)
644 {
645   g_return_val_if_fail (plugin != NULL, NULL);
646
647   return plugin->desc.source;
648 }
649
650 /**
651  * gst_plugin_get_package:
652  * @plugin: plugin to get the package of
653  *
654  * get the package the plugin belongs to.
655  *
656  * Returns: the package of the plugin
657  */
658 G_CONST_RETURN gchar *
659 gst_plugin_get_package (GstPlugin * plugin)
660 {
661   g_return_val_if_fail (plugin != NULL, NULL);
662
663   return plugin->desc.package;
664 }
665
666 /**
667  * gst_plugin_get_origin:
668  * @plugin: plugin to get the origin of
669  *
670  * get the URL where the plugin comes from
671  *
672  * Returns: the origin of the plugin
673  */
674 G_CONST_RETURN gchar *
675 gst_plugin_get_origin (GstPlugin * plugin)
676 {
677   g_return_val_if_fail (plugin != NULL, NULL);
678
679   return plugin->desc.origin;
680 }
681
682 /**
683  * gst_plugin_get_module:
684  * @plugin: plugin to query
685  *
686  * Gets the #GModule of the plugin. If the plugin isn't loaded yet, NULL is 
687  * returned.
688  *
689  * Returns: module belonging to the plugin or NULL if the plugin isn't 
690  *          loaded yet.
691  */
692 GModule *
693 gst_plugin_get_module (GstPlugin * plugin)
694 {
695   g_return_val_if_fail (plugin != NULL, NULL);
696
697   return plugin->module;
698 }
699
700 /**
701  * gst_plugin_is_loaded:
702  * @plugin: plugin to query
703  *
704  * queries if the plugin is loaded into memory
705  *
706  * Returns: TRUE is loaded, FALSE otherwise
707  */
708 gboolean
709 gst_plugin_is_loaded (GstPlugin * plugin)
710 {
711   g_return_val_if_fail (plugin != NULL, FALSE);
712
713   return (plugin->module != NULL);
714 }
715
716 /**
717  * gst_plugin_feature_list:
718  * @plugin: plugin to query
719  * @filter: the filter to use
720  * @first: only return first match
721  * @user_data: user data passed to the filter function
722  *
723  * Runs a filter against all plugin features and returns a GList with
724  * the results. If the first flag is set, only the first match is
725  * returned (as a list with a single object).
726  *
727  * Returns: a GList of features, g_list_free after use.
728  */
729 GList *
730 gst_plugin_feature_filter (GstPlugin * plugin,
731     GstPluginFeatureFilter filter, gboolean first, gpointer user_data)
732 {
733   return gst_filter_run (plugin->features, (GstFilterFunc) filter, first,
734       user_data);
735 }
736
737 typedef struct
738 {
739   GstPluginFeatureFilter filter;
740   gboolean first;
741   gpointer user_data;
742   GList *result;
743 }
744 FeatureFilterData;
745
746 static gboolean
747 _feature_filter (GstPlugin * plugin, gpointer user_data)
748 {
749   GList *result;
750   FeatureFilterData *data = (FeatureFilterData *) user_data;
751
752   result =
753       gst_plugin_feature_filter (plugin, data->filter, data->first,
754       data->user_data);
755   if (result) {
756     data->result = g_list_concat (data->result, result);
757     return TRUE;
758   }
759   return FALSE;
760 }
761
762 /**
763  * gst_plugin_list_feature_filter:
764  * @list: a #GList of plugins to query
765  * @filter: the filter function to use
766  * @first: only return first match
767  * @user_data: user data passed to the filter function
768  *
769  * Runs a filter against all plugin features of the plugins in the given
770  * list and returns a GList with the results.
771  * If the first flag is set, only the first match is
772  * returned (as a list with a single object).
773  *
774  * Returns: a GList of features, g_list_free after use.
775  */
776 GList *
777 gst_plugin_list_feature_filter (GList * list,
778     GstPluginFeatureFilter filter, gboolean first, gpointer user_data)
779 {
780   FeatureFilterData data;
781   GList *result;
782
783   data.filter = filter;
784   data.first = first;
785   data.user_data = user_data;
786   data.result = NULL;
787
788   result = gst_filter_run (list, (GstFilterFunc) _feature_filter, first, &data);
789   g_list_free (result);
790
791   return data.result;
792 }
793
794 /**
795  * gst_plugin_name_filter:
796  * @plugin: the plugin to check
797  * @name: the name of the plugin
798  *
799  * A standard filter that returns TRUE when the plugin is of the
800  * given name.
801  *
802  * Returns: TRUE if the plugin is of the given name.
803  */
804 gboolean
805 gst_plugin_name_filter (GstPlugin * plugin, const gchar * name)
806 {
807   return (plugin->desc.name && !strcmp (plugin->desc.name, name));
808 }
809
810 /**
811  * gst_plugin_find_feature:
812  * @plugin: plugin to get the feature from
813  * @name: The name of the feature to find
814  * @type: The type of the feature to find
815  *
816  * Find a feature of the given name and type in the given plugin.
817  *
818  * Returns: a GstPluginFeature or NULL if the feature was not found.
819  */
820 GstPluginFeature *
821 gst_plugin_find_feature (GstPlugin * plugin, const gchar * name, GType type)
822 {
823   GList *walk;
824   GstPluginFeature *result = NULL;
825   GstTypeNameData data;
826
827   g_return_val_if_fail (name != NULL, NULL);
828
829   data.type = type;
830   data.name = name;
831
832   walk = gst_filter_run (plugin->features,
833       (GstFilterFunc) gst_plugin_feature_type_name_filter, TRUE, &data);
834
835   if (walk)
836     result = GST_PLUGIN_FEATURE (walk->data);
837
838   return result;
839 }
840
841 /**
842  * gst_plugin_add_feature:
843  * @plugin: plugin to add feature to
844  * @feature: feature to add
845  *
846  * Add feature to the list of those provided by the plugin.
847  * There is a separate namespace for each plugin feature type.
848  * See #gst_plugin_get_feature_list
849  */
850 void
851 gst_plugin_add_feature (GstPlugin * plugin, GstPluginFeature * feature)
852 {
853   GstPluginFeature *oldfeature;
854
855   /* FIXME 0.9: get reference counting somewhat right in here,
856    * GstPluginFeatures should probably be GstObjects that are sinked when
857    * adding them to a plugin */
858   g_return_if_fail (plugin != NULL);
859   g_return_if_fail (GST_IS_PLUGIN_FEATURE (feature));
860   g_return_if_fail (feature != NULL);
861
862   oldfeature = gst_plugin_find_feature (plugin,
863       GST_PLUGIN_FEATURE_NAME (feature), G_OBJECT_TYPE (feature));
864
865   if (oldfeature == feature) {
866     GST_WARNING ("feature %s has already been added",
867         GST_PLUGIN_FEATURE_NAME (feature));
868     /* g_object_unref (feature); */
869   } else if (oldfeature) {
870     GST_WARNING ("feature %s already present in plugin",
871         GST_PLUGIN_FEATURE_NAME (feature));
872     /* g_object_unref (feature); */
873   } else {
874     feature->manager = plugin;
875     plugin->features = g_list_prepend (plugin->features, feature);
876     plugin->numfeatures++;
877   }
878 }
879
880 /**
881  * gst_plugin_get_feature_list:
882  * @plugin: the plugin to get the features from
883  *
884  * get a list of all the features that this plugin provides
885  *
886  * Returns: a GList of features, use g_list_free to free the list.
887  */
888 GList *
889 gst_plugin_get_feature_list (GstPlugin * plugin)
890 {
891   g_return_val_if_fail (plugin != NULL, NULL);
892
893   return g_list_copy (plugin->features);
894 }
895
896 /**
897  * gst_plugin_load:
898  * @name: name of plugin to load
899  *
900  * Load the named plugin.  
901  *
902  * Returns: whether the plugin was loaded or not
903  */
904 gboolean
905 gst_plugin_load (const gchar * name)
906 {
907   GstPlugin *plugin;
908   GError *error = NULL;
909
910   plugin = gst_registry_pool_find_plugin (name);
911   if (plugin) {
912     plugin = gst_plugin_load_file (plugin->filename, &error);
913     if (!plugin) {
914       GST_WARNING ("load_plugin error: %s\n", error->message);
915       g_error_free (error);
916       return FALSE;
917     }
918     return TRUE;;
919   }
920
921   GST_DEBUG ("Could not find %s in registry pool", name);
922   return FALSE;
923 }