2 * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3 * 2000 Wim Taymans <wtay@chello.be>
5 * gstplugin.c: Plugin subsystem for loading elements, types, and libs
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.
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.
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.
25 * @short_description: Container for features loaded from a shared object module
26 * @see_also: #GstPluginFeature, #GstElementFactory
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.
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.
38 * Once you have a handle to a #GstPlugin (e.g. from the #GstRegistryPool), you
39 * can add any object that subclasses #GstPluginFeature.
41 * Use gst_plugin_find_feature() and gst_plugin_get_feature_list() to find
42 * features in a plugin.
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
54 #include <sys/types.h>
65 #include "gst_private.h"
67 #include "gstplugin.h"
68 #include "gstversion.h"
70 #include "gstfilter.h"
71 #include "gstregistry.h"
72 #include "gstmacros.h"
75 #define GST_CAT_DEFAULT GST_CAT_PLUGIN_LOADING
77 static GModule *main_module = NULL;
78 static GList *_gst_plugin_static = NULL;
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 */
85 static gboolean _gst_plugin_fault_handler_is_setup = FALSE;
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
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 * MPL: http://www.opensource.org/licenses/mozilla1.1.php
98 static const gchar *valid_licenses[] = {
99 "LGPL", /* GNU Lesser General Public License */
100 "GPL", /* GNU General Public License */
101 "QPL", /* Trolltech Qt Public License */
102 "GPL/QPL", /* Combi-license of GPL + QPL */
103 "MPL", /* MPL 1.1 license */
104 "Proprietary", /* Proprietary license */
105 GST_LICENSE_UNKNOWN, /* some other license */
109 static GstPlugin *gst_plugin_register_func (GstPlugin * plugin,
110 GModule * module, GstPluginDesc * desc);
112 gst_plugin_desc_copy (GstPluginDesc * dest, const GstPluginDesc * src);
113 static void gst_plugin_desc_free (GstPluginDesc * desc);
116 G_DEFINE_TYPE (GstPlugin, gst_plugin, GST_TYPE_OBJECT);
119 gst_plugin_init (GstPlugin * plugin)
125 gst_plugin_finalize (GObject * object)
127 GstPlugin *plugin = GST_PLUGIN_CAST (object);
128 GstRegistry *registry = gst_registry_get_default ();
131 GST_DEBUG ("finalizing plugin %p", plugin);
132 for (g = registry->plugins; g; g = g->next) {
133 if (g->data == (gpointer) plugin) {
134 g_warning ("removing plugin that is still in registry");
137 g_free (plugin->filename);
138 g_free (plugin->basename);
139 gst_plugin_desc_free (&plugin->desc);
141 G_OBJECT_CLASS (gst_plugin_parent_class)->finalize (object);
145 gst_plugin_class_init (GstPluginClass * klass)
147 G_OBJECT_CLASS (klass)->finalize = GST_DEBUG_FUNCPTR (gst_plugin_finalize);
151 gst_plugin_error_quark (void)
153 static GQuark quark = 0;
156 quark = g_quark_from_static_string ("gst_plugin_error");
160 /* this function can be called in the GCC constructor extension, before
161 * the _gst_plugin_initialize() was called. In that case, we store the
162 * plugin description in a list to initialize it when we open the main
164 * When the main module is known, we can register the plugin right away.
167 _gst_plugin_register_static (GstPluginDesc * desc)
169 if (main_module == NULL) {
171 GST_LOG ("queueing static plugin \"%s\" for loading later on",
173 _gst_plugin_static = g_list_prepend (_gst_plugin_static, desc);
178 GST_LOG ("attempting to load static plugin \"%s\" now...", desc->name);
179 plugin = g_object_new (GST_TYPE_PLUGIN, NULL);
180 if (gst_plugin_register_func (plugin, main_module, desc)) {
182 GST_INFO ("loaded static plugin \"%s\"", desc->name);
183 gst_default_registry_add_plugin (plugin);
189 _gst_plugin_initialize (void)
191 main_module = g_module_open (NULL, G_MODULE_BIND_LAZY);
193 /* now register all static plugins */
194 g_list_foreach (_gst_plugin_static, (GFunc) _gst_plugin_register_static,
198 /* this function could be extended to check if the plugin license matches the
199 * applications license (would require the app to register its license somehow).
200 * We'll wait for someone who's interested in it to code it :)
203 gst_plugin_check_license (const gchar * license)
205 const gchar **check_license = valid_licenses;
207 g_assert (check_license);
209 while (*check_license) {
210 if (strcmp (license, *check_license) == 0)
218 gst_plugin_check_version (gint major, gint minor)
220 /* return NULL if the major and minor version numbers are not compatible */
222 if (major != GST_VERSION_MAJOR || minor != GST_VERSION_MINOR)
229 gst_plugin_register_func (GstPlugin * plugin, GModule * module,
230 GstPluginDesc * desc)
232 if (!gst_plugin_check_version (desc->major_version, desc->minor_version)) {
234 GST_WARNING ("plugin \"%s\" has incompatible version, not loading",
239 if (!desc->license || !desc->description || !desc->source ||
240 !desc->package || !desc->origin) {
242 GST_WARNING ("plugin \"%s\" has incorrect GstPluginDesc, not loading",
247 if (!gst_plugin_check_license (desc->license)) {
249 GST_WARNING ("plugin \"%s\" has invalid license \"%s\", not loading",
250 plugin->filename, desc->license);
255 GST_LOG ("plugin \"%s\" looks good", GST_STR_NULL (plugin->filename));
257 gst_plugin_desc_copy (&plugin->desc, desc);
259 if (!((desc->plugin_init) (plugin))) {
261 GST_WARNING ("plugin \"%s\" failed to initialise", plugin->filename);
262 plugin->module = NULL;
267 GST_LOG ("plugin \"%s\" initialised", GST_STR_NULL (plugin->filename));
274 * _gst_plugin_fault_handler_restore:
275 * segfault handler restorer
278 _gst_plugin_fault_handler_restore (void)
280 struct sigaction action;
282 memset (&action, 0, sizeof (action));
283 action.sa_handler = SIG_DFL;
285 sigaction (SIGSEGV, &action, NULL);
289 * _gst_plugin_fault_handler_sighandler:
290 * segfault handler implementation
293 _gst_plugin_fault_handler_sighandler (int signum)
295 /* We need to restore the fault handler or we'll keep getting it */
296 _gst_plugin_fault_handler_restore ();
300 g_print ("\nERROR: ");
301 g_print ("Caught a segmentation fault while loading plugin file:\n");
302 g_print ("%s\n\n", _gst_plugin_fault_handler_filename);
303 g_print ("Please either:\n");
304 g_print ("- remove it and restart.\n");
305 g_print ("- run with --gst-disable-segtrap and debug.\n");
309 g_print ("Caught unhandled signal on plugin loading\n");
315 * _gst_plugin_fault_handler_setup:
316 * sets up the segfault handler
319 _gst_plugin_fault_handler_setup (void)
321 struct sigaction action;
323 /* if asked to leave segfaults alone, just return */
324 if (_gst_disable_segtrap)
327 if (_gst_plugin_fault_handler_is_setup)
330 memset (&action, 0, sizeof (action));
331 action.sa_handler = _gst_plugin_fault_handler_sighandler;
333 sigaction (SIGSEGV, &action, NULL);
337 _gst_plugin_fault_handler_restore (void)
342 _gst_plugin_fault_handler_setup (void)
347 static void _gst_plugin_fault_handler_setup ();
349 GStaticMutex gst_plugin_loading_mutex = G_STATIC_MUTEX_INIT;
352 * gst_plugin_load_file:
353 * @filename: the plugin filename to load
354 * @error: pointer to a NULL-valued GError
356 * Loads the given plugin and refs it. Caller needs to unref after use.
358 * Returns: a reference to the existing loaded GstPlugin, a reference to the
359 * newly-loaded GstPlugin, or NULL if an error occurred.
362 gst_plugin_load_file (const gchar * filename, GError ** error)
368 struct stat file_status;
369 GstRegistry *registry;
371 g_return_val_if_fail (filename != NULL, NULL);
373 registry = gst_registry_get_default ();
374 g_static_mutex_lock (&gst_plugin_loading_mutex);
376 plugin = gst_registry_lookup (registry, filename);
378 if (plugin->module) {
379 g_static_mutex_unlock (&gst_plugin_loading_mutex);
382 gst_object_unref (plugin);
387 GST_CAT_DEBUG (GST_CAT_PLUGIN_LOADING, "attempt to load plugin \"%s\"",
390 if (g_module_supported () == FALSE) {
391 GST_CAT_DEBUG (GST_CAT_PLUGIN_LOADING, "module loading not supported");
394 GST_PLUGIN_ERROR_MODULE, "Dynamic loading not supported");
398 if (stat (filename, &file_status)) {
399 GST_CAT_DEBUG (GST_CAT_PLUGIN_LOADING, "problem accessing file");
402 GST_PLUGIN_ERROR_MODULE, "Problem accessing file %s: %s\n", filename,
407 module = g_module_open (filename, G_MODULE_BIND_LOCAL);
408 if (module == NULL) {
409 GST_CAT_WARNING (GST_CAT_PLUGIN_LOADING, "module_open failed: %s",
412 GST_PLUGIN_ERROR, GST_PLUGIN_ERROR_MODULE, "Opening module failed");
416 plugin = g_object_new (GST_TYPE_PLUGIN, NULL);
418 plugin->module = module;
419 plugin->filename = g_strdup (filename);
420 plugin->basename = g_path_get_basename (filename);
421 plugin->file_mtime = file_status.st_mtime;
422 plugin->file_size = file_status.st_size;
424 ret = g_module_symbol (module, "gst_plugin_desc", &ptr);
426 GST_DEBUG ("Could not find plugin entry point in \"%s\"", filename);
429 GST_PLUGIN_ERROR_MODULE,
430 "File \"%s\" is not a GStreamer plugin", filename);
431 g_module_close (module);
434 plugin->orig_desc = (GstPluginDesc *) ptr;
436 GST_LOG ("Plugin %p for file \"%s\" prepared, calling entry function...",
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;
443 GST_LOG ("Plugin %p for file \"%s\" prepared, registering...",
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);
453 GST_PLUGIN_ERROR_MODULE,
454 "File \"%s\" appears to be a GStreamer plugin, but it failed to initialize",
456 g_module_close (module);
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);
465 gst_object_ref (plugin);
466 gst_default_registry_add_plugin (plugin);
468 g_static_mutex_unlock (&gst_plugin_loading_mutex);
474 gst_object_unref (plugin);
475 g_static_mutex_unlock (&gst_plugin_loading_mutex);
481 gst_plugin_desc_copy (GstPluginDesc * dest, const GstPluginDesc * src)
483 dest->major_version = src->major_version;
484 dest->minor_version = src->minor_version;
485 dest->name = g_strdup (src->name);
486 dest->description = g_strdup (src->description);
487 dest->plugin_init = src->plugin_init;
488 dest->version = g_strdup (src->version);
489 dest->license = g_strdup (src->license);
490 dest->source = g_strdup (src->source);
491 dest->package = g_strdup (src->package);
492 dest->origin = g_strdup (src->origin);
497 gst_plugin_desc_free (GstPluginDesc * desc)
500 g_free (desc->description);
501 g_free (desc->version);
502 g_free (desc->license);
503 g_free (desc->source);
504 g_free (desc->package);
505 g_free (desc->origin);
507 memset (desc, 0, sizeof (GstPluginDesc));
511 * gst_plugin_get_name:
512 * @plugin: plugin to get the name of
514 * Get the short name of the plugin
516 * Returns: the name of the plugin
519 gst_plugin_get_name (GstPlugin * plugin)
521 g_return_val_if_fail (plugin != NULL, NULL);
523 return plugin->desc.name;
527 * gst_plugin_get_description:
528 * @plugin: plugin to get long name of
530 * Get the long descriptive name of the plugin
532 * Returns: the long name of the plugin
534 G_CONST_RETURN gchar *
535 gst_plugin_get_description (GstPlugin * plugin)
537 g_return_val_if_fail (plugin != NULL, NULL);
539 return plugin->desc.description;
543 * gst_plugin_get_filename:
544 * @plugin: plugin to get the filename of
546 * get the filename of the plugin
548 * Returns: the filename of the plugin
550 G_CONST_RETURN gchar *
551 gst_plugin_get_filename (GstPlugin * plugin)
553 g_return_val_if_fail (plugin != NULL, NULL);
555 return plugin->filename;
559 * gst_plugin_get_version:
560 * @plugin: plugin to get the version of
562 * get the version of the plugin
564 * Returns: the version of the plugin
566 G_CONST_RETURN gchar *
567 gst_plugin_get_version (GstPlugin * plugin)
569 g_return_val_if_fail (plugin != NULL, NULL);
571 return plugin->desc.version;
575 * gst_plugin_get_license:
576 * @plugin: plugin to get the license of
578 * get the license of the plugin
580 * Returns: the license of the plugin
582 G_CONST_RETURN gchar *
583 gst_plugin_get_license (GstPlugin * plugin)
585 g_return_val_if_fail (plugin != NULL, NULL);
587 return plugin->desc.license;
591 * gst_plugin_get_source:
592 * @plugin: plugin to get the source of
594 * get the source module the plugin belongs to.
596 * Returns: the source of the plugin
598 G_CONST_RETURN gchar *
599 gst_plugin_get_source (GstPlugin * plugin)
601 g_return_val_if_fail (plugin != NULL, NULL);
603 return plugin->desc.source;
607 * gst_plugin_get_package:
608 * @plugin: plugin to get the package of
610 * get the package the plugin belongs to.
612 * Returns: the package of the plugin
614 G_CONST_RETURN gchar *
615 gst_plugin_get_package (GstPlugin * plugin)
617 g_return_val_if_fail (plugin != NULL, NULL);
619 return plugin->desc.package;
623 * gst_plugin_get_origin:
624 * @plugin: plugin to get the origin of
626 * get the URL where the plugin comes from
628 * Returns: the origin of the plugin
630 G_CONST_RETURN gchar *
631 gst_plugin_get_origin (GstPlugin * plugin)
633 g_return_val_if_fail (plugin != NULL, NULL);
635 return plugin->desc.origin;
639 * gst_plugin_get_module:
640 * @plugin: plugin to query
642 * Gets the #GModule of the plugin. If the plugin isn't loaded yet, NULL is
645 * Returns: module belonging to the plugin or NULL if the plugin isn't
649 gst_plugin_get_module (GstPlugin * plugin)
651 g_return_val_if_fail (plugin != NULL, NULL);
653 return plugin->module;
657 * gst_plugin_is_loaded:
658 * @plugin: plugin to query
660 * queries if the plugin is loaded into memory
662 * Returns: TRUE is loaded, FALSE otherwise
665 gst_plugin_is_loaded (GstPlugin * plugin)
667 g_return_val_if_fail (plugin != NULL, FALSE);
669 return (plugin->module != NULL || plugin->filename == NULL);
674 * gst_plugin_feature_list:
675 * @plugin: plugin to query
676 * @filter: the filter to use
677 * @first: only return first match
678 * @user_data: user data passed to the filter function
680 * Runs a filter against all plugin features and returns a GList with
681 * the results. If the first flag is set, only the first match is
682 * returned (as a list with a single object).
684 * Returns: a GList of features, g_list_free after use.
687 gst_plugin_feature_filter (GstPlugin * plugin,
688 GstPluginFeatureFilter filter, gboolean first, gpointer user_data)
693 list = gst_filter_run (plugin->features, (GstFilterFunc) filter, first,
695 for (g = list; g; g = g->next) {
696 gst_object_ref (plugin);
704 GstPluginFeatureFilter filter;
712 _feature_filter (GstPlugin * plugin, gpointer user_data)
715 FeatureFilterData *data = (FeatureFilterData *) user_data;
717 result = gst_plugin_feature_filter (plugin, data->filter, data->first,
720 data->result = g_list_concat (data->result, result);
727 * gst_plugin_list_feature_filter:
728 * @list: a #GList of plugins to query
729 * @filter: the filter function to use
730 * @first: only return first match
731 * @user_data: user data passed to the filter function
733 * Runs a filter against all plugin features of the plugins in the given
734 * list and returns a GList with the results.
735 * If the first flag is set, only the first match is
736 * returned (as a list with a single object).
738 * Returns: a GList of features, g_list_free after use.
741 gst_plugin_list_feature_filter (GList * list,
742 GstPluginFeatureFilter filter, gboolean first, gpointer user_data)
744 FeatureFilterData data;
747 data.filter = filter;
749 data.user_data = user_data;
752 result = gst_filter_run (list, (GstFilterFunc) _feature_filter, first, &data);
753 g_list_free (result);
760 * gst_plugin_name_filter:
761 * @plugin: the plugin to check
762 * @name: the name of the plugin
764 * A standard filter that returns TRUE when the plugin is of the
767 * Returns: TRUE if the plugin is of the given name.
770 gst_plugin_name_filter (GstPlugin * plugin, const gchar * name)
772 return (plugin->desc.name && !strcmp (plugin->desc.name, name));
777 * gst_plugin_find_feature:
778 * @plugin: plugin to get the feature from
779 * @name: The name of the feature to find
780 * @type: The type of the feature to find
782 * Find a feature of the given name and type in the given plugin.
784 * Returns: a GstPluginFeature or NULL if the feature was not found.
787 gst_plugin_find_feature (GstPlugin * plugin, const gchar * name, GType type)
790 GstPluginFeature *result = NULL;
791 GstTypeNameData data;
793 g_return_val_if_fail (name != NULL, NULL);
798 walk = gst_filter_run (plugin->features,
799 (GstFilterFunc) gst_plugin_feature_type_name_filter, TRUE, &data);
802 result = GST_PLUGIN_FEATURE (walk->data);
804 gst_object_ref (result);
805 gst_plugin_feature_list_free (walk);
814 gst_plugin_feature_name_filter (GstPluginFeature * feature, const gchar * name)
816 return !strcmp (name, GST_PLUGIN_FEATURE_NAME (feature));
822 * gst_plugin_find_feature_by_name:
823 * @plugin: plugin to get the feature from
824 * @name: The name of the feature to find
826 * Find a feature of the given name in the given plugin.
828 * Returns: a GstPluginFeature or NULL if the feature was not found.
831 gst_plugin_find_feature_by_name (GstPlugin * plugin, const gchar * name)
834 GstPluginFeature *result = NULL;
836 g_return_val_if_fail (name != NULL, NULL);
838 walk = gst_filter_run (plugin->features,
839 (GstFilterFunc) gst_plugin_feature_name_filter, TRUE, (void *) name);
842 result = GST_PLUGIN_FEATURE (walk->data);
844 gst_object_ref (result);
845 gst_plugin_feature_list_free (walk);
853 * gst_plugin_load_by_name:
854 * @name: name of plugin to load
856 * Load the named plugin. Refs the plugin.
858 * Returns: A reference to a loaded plugin, or NULL on error.
861 gst_plugin_load_by_name (const gchar * name)
863 GstPlugin *plugin, *newplugin;
864 GError *error = NULL;
866 GST_DEBUG ("looking up plugin %s in default registry", name);
867 plugin = gst_registry_find_plugin (gst_registry_get_default (), name);
869 GST_DEBUG ("loading plugin %s from file %s", name, plugin->filename);
870 newplugin = gst_plugin_load_file (plugin->filename, &error);
871 gst_object_unref (plugin);
874 GST_WARNING ("load_plugin error: %s\n", error->message);
875 g_error_free (error);
878 /* newplugin was reffed by load_file */
882 GST_DEBUG ("Could not find plugin %s in registry", name);
888 * @plugin: plugin to load
890 * Loads @plugin. Note that the *return value* is the loaded plugin; @plugin is
891 * untouched. The normal use pattern of this function goes like this:
894 * GstPlugin *loaded_plugin;
895 * loaded_plugin = gst_plugin_load (plugin);
896 * // presumably, we're no longer interested in the potentially-unloaded plugin
897 * gst_object_unref (plugin);
898 * plugin = loaded_plugin;
901 * Returns: A reference to a loaded plugin, or NULL on error.
904 gst_plugin_load (GstPlugin * plugin)
906 GError *error = NULL;
907 GstPlugin *newplugin;
909 if (gst_plugin_is_loaded (plugin)) {
913 if (!(newplugin = gst_plugin_load_file (plugin->filename, &error)))
920 GST_WARNING ("load_plugin error: %s\n", error->message);
921 g_error_free (error);
927 * gst_plugin_list_free:
928 * @list: list of #GstPlugin
930 * Unrefs each member of @list, then frees the list.
933 gst_plugin_list_free (GList * list)
937 for (g = list; g; g = g->next) {
938 gst_object_unref (GST_PLUGIN_CAST (g->data));