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