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., 51 Franklin St, Fifth Floor,
20 * Boston, MA 02110-1301, USA.
26 * @short_description: Container for features loaded from a shared object module
27 * @see_also: #GstPluginFeature, #GstElementFactory
29 * GStreamer is extensible, so #GstElement instances can be loaded at runtime.
30 * A plugin system can provide one or more of the basic
31 * <application>GStreamer</application> #GstPluginFeature subclasses.
33 * A plugin should export a symbol <symbol>gst_plugin_desc</symbol> that is a
34 * struct of type #GstPluginDesc.
35 * the plugin loader will check the version of the core library the plugin was
36 * linked against and will create a new #GstPlugin. It will then call the
37 * #GstPluginInitFunc function that was provided in the
38 * <symbol>gst_plugin_desc</symbol>.
40 * Once you have a handle to a #GstPlugin (e.g. from the #GstRegistry), you
41 * can add any object that subclasses #GstPluginFeature.
43 * Usually plugins are always automatically loaded so you don't need to call
44 * gst_plugin_load() explicitly to bring it into memory. There are options to
45 * statically link plugins to an app or even use GStreamer without a plugin
46 * repository in which case gst_plugin_load() can be needed to bring the plugin
54 #include "gst_private.h"
56 #include <glib/gstdio.h>
57 #include <sys/types.h>
68 #include "glib-compat-private.h"
72 #define GST_CAT_DEFAULT GST_CAT_PLUGIN_LOADING
74 static guint _num_static_plugins; /* 0 */
75 static GstPluginDesc *_static_plugins; /* NULL */
76 static gboolean _gst_plugin_inited;
77 static gchar **_plugin_loading_whitelist; /* NULL */
79 /* static variables for segfault handling of plugin loading */
80 static char *_gst_plugin_fault_handler_filename = NULL;
82 /* list of valid licenses.
83 * One of these must be specified or the plugin won't be loaded
84 * Please file a bug to request any additional license be added.
86 * GPL: http://www.gnu.org/copyleft/gpl.html
87 * LGPL: http://www.gnu.org/copyleft/lesser.html
88 * QPL: http://www.trolltech.com/licenses/qpl.html
89 * MPL: http://www.opensource.org/licenses/mozilla1.1.php
90 * MIT/X11: http://www.opensource.org/licenses/mit-license.php
91 * 3-clause BSD: http://www.opensource.org/licenses/bsd-license.php
93 static const gchar valid_licenses[] = "LGPL\000" /* GNU Lesser General Public License */
94 "GPL\000" /* GNU General Public License */
95 "QPL\000" /* Trolltech Qt Public License */
96 "GPL/QPL\000" /* Combi-license of GPL + QPL */
97 "MPL\000" /* MPL 1.1 license */
98 "BSD\000" /* 3-clause BSD license */
99 "MIT/X11\000" /* MIT/X11 license */
100 "Proprietary\000" /* Proprietary license */
101 GST_LICENSE_UNKNOWN; /* some other license */
103 static const guint8 valid_licenses_idx[] = { 0, 5, 9, 13, 21, 25, 29, 37, 49 };
105 static GstPlugin *gst_plugin_register_func (GstPlugin * plugin,
106 const GstPluginDesc * desc, gpointer user_data);
107 static void gst_plugin_desc_copy (GstPluginDesc * dest,
108 const GstPluginDesc * src);
110 static void gst_plugin_ext_dep_free (GstPluginDep * dep);
112 G_DEFINE_TYPE (GstPlugin, gst_plugin, GST_TYPE_OBJECT);
115 gst_plugin_init (GstPlugin * plugin)
118 G_TYPE_INSTANCE_GET_PRIVATE (plugin, GST_TYPE_PLUGIN, GstPluginPrivate);
122 gst_plugin_finalize (GObject * object)
124 GstPlugin *plugin = GST_PLUGIN_CAST (object);
126 GST_DEBUG ("finalizing plugin %" GST_PTR_FORMAT, plugin);
128 /* FIXME: make registry add a weak ref instead */
130 GstRegistry *registry = gst_registry_get ();
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");
139 g_free (plugin->filename);
140 g_free (plugin->basename);
142 g_list_foreach (plugin->priv->deps, (GFunc) gst_plugin_ext_dep_free, NULL);
143 g_list_free (plugin->priv->deps);
144 plugin->priv->deps = NULL;
146 if (plugin->priv->cache_data) {
147 gst_structure_free (plugin->priv->cache_data);
150 G_OBJECT_CLASS (gst_plugin_parent_class)->finalize (object);
154 gst_plugin_class_init (GstPluginClass * klass)
156 G_OBJECT_CLASS (klass)->finalize = gst_plugin_finalize;
158 g_type_class_add_private (klass, sizeof (GstPluginPrivate));
162 gst_plugin_error_quark (void)
164 static GQuark quark = 0;
167 quark = g_quark_from_static_string ("gst_plugin_error");
172 * gst_plugin_register_static:
173 * @major_version: the major version number of the GStreamer core that the
174 * plugin was compiled for, you can just use GST_VERSION_MAJOR here
175 * @minor_version: the minor version number of the GStreamer core that the
176 * plugin was compiled for, you can just use GST_VERSION_MINOR here
177 * @name: a unique name of the plugin (ideally prefixed with an application- or
178 * library-specific namespace prefix in order to avoid name conflicts in
179 * case a similar plugin with the same name ever gets added to GStreamer)
180 * @description: description of the plugin
181 * @init_func: (scope call): pointer to the init function of this plugin.
182 * @version: version string of the plugin
183 * @license: effective license of plugin. Must be one of the approved licenses
184 * (see #GstPluginDesc above) or the plugin will not be registered.
185 * @source: source module plugin belongs to
186 * @package: shipped package plugin belongs to
187 * @origin: URL to provider of plugin
189 * Registers a static plugin, ie. a plugin which is private to an application
190 * or library and contained within the application or library (as opposed to
191 * being shipped as a separate module file).
193 * You must make sure that GStreamer has been initialised (with gst_init() or
194 * via gst_init_get_option_group()) before calling this function.
196 * Returns: %TRUE if the plugin was registered correctly, otherwise %FALSE.
199 gst_plugin_register_static (gint major_version, gint minor_version,
200 const gchar * name, const gchar * description, GstPluginInitFunc init_func,
201 const gchar * version, const gchar * license, const gchar * source,
202 const gchar * package, const gchar * origin)
204 GstPluginDesc desc = { major_version, minor_version, name, description,
205 init_func, version, license, source, package, origin, NULL,
208 gboolean res = FALSE;
210 g_return_val_if_fail (name != NULL, FALSE);
211 g_return_val_if_fail (description != NULL, FALSE);
212 g_return_val_if_fail (init_func != NULL, FALSE);
213 g_return_val_if_fail (version != NULL, FALSE);
214 g_return_val_if_fail (license != NULL, FALSE);
215 g_return_val_if_fail (source != NULL, FALSE);
216 g_return_val_if_fail (package != NULL, FALSE);
217 g_return_val_if_fail (origin != NULL, FALSE);
219 /* make sure gst_init() has been called */
220 g_return_val_if_fail (_gst_plugin_inited != FALSE, FALSE);
222 GST_LOG ("attempting to load static plugin \"%s\" now...", name);
223 plugin = g_object_new (GST_TYPE_PLUGIN, NULL);
224 if (gst_plugin_register_func (plugin, &desc, NULL) != NULL) {
225 GST_INFO ("registered static plugin \"%s\"", name);
226 res = gst_registry_add_plugin (gst_registry_get (), plugin);
227 GST_INFO ("added static plugin \"%s\", result: %d", name, res);
233 * gst_plugin_register_static_full:
234 * @major_version: the major version number of the GStreamer core that the
235 * plugin was compiled for, you can just use GST_VERSION_MAJOR here
236 * @minor_version: the minor version number of the GStreamer core that the
237 * plugin was compiled for, you can just use GST_VERSION_MINOR here
238 * @name: a unique name of the plugin (ideally prefixed with an application- or
239 * library-specific namespace prefix in order to avoid name conflicts in
240 * case a similar plugin with the same name ever gets added to GStreamer)
241 * @description: description of the plugin
242 * @init_full_func: (scope call): pointer to the init function with user data
244 * @version: version string of the plugin
245 * @license: effective license of plugin. Must be one of the approved licenses
246 * (see #GstPluginDesc above) or the plugin will not be registered.
247 * @source: source module plugin belongs to
248 * @package: shipped package plugin belongs to
249 * @origin: URL to provider of plugin
250 * @user_data: gpointer to user data
252 * Registers a static plugin, ie. a plugin which is private to an application
253 * or library and contained within the application or library (as opposed to
254 * being shipped as a separate module file) with a #GstPluginInitFullFunc
255 * which allows user data to be passed to the callback function (useful
258 * You must make sure that GStreamer has been initialised (with gst_init() or
259 * via gst_init_get_option_group()) before calling this function.
261 * Returns: %TRUE if the plugin was registered correctly, otherwise %FALSE.
264 gst_plugin_register_static_full (gint major_version, gint minor_version,
265 const gchar * name, const gchar * description,
266 GstPluginInitFullFunc init_full_func, const gchar * version,
267 const gchar * license, const gchar * source, const gchar * package,
268 const gchar * origin, gpointer user_data)
270 GstPluginDesc desc = { major_version, minor_version, name, description,
271 (GstPluginInitFunc) init_full_func, version, license, source, package,
275 gboolean res = FALSE;
277 g_return_val_if_fail (name != NULL, FALSE);
278 g_return_val_if_fail (description != NULL, FALSE);
279 g_return_val_if_fail (init_full_func != NULL, FALSE);
280 g_return_val_if_fail (version != NULL, FALSE);
281 g_return_val_if_fail (license != NULL, FALSE);
282 g_return_val_if_fail (source != NULL, FALSE);
283 g_return_val_if_fail (package != NULL, FALSE);
284 g_return_val_if_fail (origin != NULL, FALSE);
286 /* make sure gst_init() has been called */
287 g_return_val_if_fail (_gst_plugin_inited != FALSE, FALSE);
289 GST_LOG ("attempting to load static plugin \"%s\" now...", name);
290 plugin = g_object_new (GST_TYPE_PLUGIN, NULL);
291 if (gst_plugin_register_func (plugin, &desc, user_data) != NULL) {
292 GST_INFO ("registered static plugin \"%s\"", name);
293 res = gst_registry_add_plugin (gst_registry_get (), plugin);
294 GST_INFO ("added static plugin \"%s\", result: %d", name, res);
300 _priv_gst_plugin_initialize (void)
302 const gchar *whitelist;
305 _gst_plugin_inited = TRUE;
307 whitelist = g_getenv ("GST_PLUGIN_LOADING_WHITELIST");
308 if (whitelist != NULL && *whitelist != '\0') {
309 _plugin_loading_whitelist = g_strsplit (whitelist,
310 G_SEARCHPATH_SEPARATOR_S, -1);
311 for (i = 0; _plugin_loading_whitelist[i] != NULL; ++i) {
312 GST_INFO ("plugins whitelist entry: %s", _plugin_loading_whitelist[i]);
316 /* now register all static plugins */
317 GST_INFO ("registering %u static plugins", _num_static_plugins);
318 for (i = 0; i < _num_static_plugins; ++i) {
319 gst_plugin_register_static (_static_plugins[i].major_version,
320 _static_plugins[i].minor_version, _static_plugins[i].name,
321 _static_plugins[i].description, _static_plugins[i].plugin_init,
322 _static_plugins[i].version, _static_plugins[i].license,
323 _static_plugins[i].source, _static_plugins[i].package,
324 _static_plugins[i].origin);
327 if (_static_plugins) {
328 free (_static_plugins);
329 _static_plugins = NULL;
330 _num_static_plugins = 0;
334 /* Whitelist entry format:
336 * plugin1,plugin2@pathprefix or
337 * plugin1,plugin2@* or just
339 * source-package@pathprefix or
340 * source-package@* or just
343 * ie. the bit before the path will be checked against both the plugin
344 * name and the plugin's source package name, to keep the format simple.
347 gst_plugin_desc_matches_whitelist_entry (const GstPluginDesc * desc,
348 const gchar * filename, const gchar * pattern)
351 gboolean ret = FALSE;
354 GST_LOG ("Whitelist pattern '%s', plugin: %s of %s@%s", pattern, desc->name,
355 desc->source, GST_STR_NULL (filename));
357 /* do we have a path prefix? */
358 sep = strchr (pattern, '@');
359 if (sep != NULL && strcmp (sep, "@*") != 0 && strcmp (sep, "@") != 0) {
360 /* paths are not canonicalised or treated with realpath() here. This
361 * should be good enough for our use case, since we just use the paths
362 * autotools uses, and those will be constructed from the same prefix. */
363 if (filename != NULL && !g_str_has_prefix (filename, sep + 1))
366 GST_LOG ("%s matches path prefix %s", GST_STR_NULL (filename), sep + 1);
370 name = g_strndup (pattern, (gsize) (sep - pattern));
372 name = g_strdup (pattern);
376 if (!g_ascii_isalnum (*name)) {
377 GST_WARNING ("Invalid whitelist pattern: %s", pattern);
381 /* now check plugin names / source package name */
382 if (strchr (name, ',') == NULL) {
383 /* only a single name: either a plugin name or the source package name */
384 ret = (strcmp (desc->source, name) == 0 || strcmp (desc->name, name) == 0);
388 /* multiple names: assume these are plugin names */
389 names = g_strsplit (name, ",", -1);
390 for (n = names; n != NULL && *n != NULL; ++n) {
392 if (strcmp (desc->name, *n) == 0) {
400 GST_LOG ("plugin / source package name match: %d", ret);
409 priv_gst_plugin_desc_is_whitelisted (const GstPluginDesc * desc,
410 const gchar * filename)
414 if (_plugin_loading_whitelist == NULL)
417 for (entry = _plugin_loading_whitelist; *entry != NULL; ++entry) {
418 if (gst_plugin_desc_matches_whitelist_entry (desc, filename, *entry)) {
419 GST_LOG ("Plugin %s is in whitelist", filename);
424 GST_LOG ("Plugin %s (package %s, file %s) not in whitelist", desc->name,
425 desc->source, filename);
430 priv_gst_plugin_loading_have_whitelist (void)
432 return (_plugin_loading_whitelist != NULL);
436 priv_gst_plugin_loading_get_whitelist_hash (void)
440 if (_plugin_loading_whitelist != NULL) {
443 for (w = _plugin_loading_whitelist; *w != NULL; ++w)
444 hash ^= g_str_hash (*w);
450 /* this function could be extended to check if the plugin license matches the
451 * applications license (would require the app to register its license somehow).
452 * We'll wait for someone who's interested in it to code it :)
455 gst_plugin_check_license (const gchar * license)
459 for (i = 0; i < G_N_ELEMENTS (valid_licenses_idx); ++i) {
460 if (strcmp (license, valid_licenses + valid_licenses_idx[i]) == 0)
467 gst_plugin_check_version (gint major, gint minor)
469 /* return NULL if the major and minor version numbers are not compatible */
471 if (major != GST_VERSION_MAJOR || minor > GST_VERSION_MINOR)
478 gst_plugin_register_func (GstPlugin * plugin, const GstPluginDesc * desc,
481 if (!gst_plugin_check_version (desc->major_version, desc->minor_version)) {
483 GST_WARNING ("plugin \"%s\" has incompatible version "
484 "(plugin: %d.%d, gst: %d,%d), not loading",
485 GST_STR_NULL (plugin->filename), desc->major_version,
486 desc->minor_version, GST_VERSION_MAJOR, GST_VERSION_MINOR);
490 if (!desc->license || !desc->description || !desc->source ||
491 !desc->package || !desc->origin) {
493 GST_WARNING ("plugin \"%s\" has missing detail in GstPluginDesc, not "
494 "loading", GST_STR_NULL (plugin->filename));
498 if (!gst_plugin_check_license (desc->license)) {
500 GST_WARNING ("plugin \"%s\" has invalid license \"%s\", not loading",
501 GST_STR_NULL (plugin->filename), desc->license);
506 GST_LOG ("plugin \"%s\" looks good", GST_STR_NULL (plugin->filename));
508 gst_plugin_desc_copy (&plugin->desc, desc);
510 /* make resident so we're really sure it never gets unloaded again.
511 * Theoretically this is not needed, but practically it doesn't hurt.
512 * And we're rather safe than sorry. */
514 g_module_make_resident (plugin->module);
517 if (!(((GstPluginInitFullFunc) (desc->plugin_init)) (plugin, user_data))) {
519 GST_WARNING ("plugin \"%s\" failed to initialise",
520 GST_STR_NULL (plugin->filename));
524 if (!((desc->plugin_init) (plugin))) {
526 GST_WARNING ("plugin \"%s\" failed to initialise",
527 GST_STR_NULL (plugin->filename));
533 GST_LOG ("plugin \"%s\" initialised", GST_STR_NULL (plugin->filename));
538 #ifdef HAVE_SIGACTION
539 static struct sigaction oldaction;
540 static gboolean _gst_plugin_fault_handler_is_setup = FALSE;
543 * _gst_plugin_fault_handler_restore:
544 * segfault handler restorer
547 _gst_plugin_fault_handler_restore (void)
549 if (!_gst_plugin_fault_handler_is_setup)
552 _gst_plugin_fault_handler_is_setup = FALSE;
554 sigaction (SIGSEGV, &oldaction, NULL);
558 * _gst_plugin_fault_handler_sighandler:
559 * segfault handler implementation
562 _gst_plugin_fault_handler_sighandler (int signum)
564 /* We need to restore the fault handler or we'll keep getting it */
565 _gst_plugin_fault_handler_restore ();
569 g_print ("\nERROR: ");
570 g_print ("Caught a segmentation fault while loading plugin file:\n");
571 g_print ("%s\n\n", _gst_plugin_fault_handler_filename);
572 g_print ("Please either:\n");
573 g_print ("- remove it and restart.\n");
575 ("- run with --gst-disable-segtrap --gst-disable-registry-fork and debug.\n");
579 g_print ("Caught unhandled signal on plugin loading\n");
585 * _gst_plugin_fault_handler_setup:
586 * sets up the segfault handler
589 _gst_plugin_fault_handler_setup (void)
591 struct sigaction action;
593 /* if asked to leave segfaults alone, just return */
594 if (!gst_segtrap_is_enabled ())
597 if (_gst_plugin_fault_handler_is_setup)
600 _gst_plugin_fault_handler_is_setup = TRUE;
602 memset (&action, 0, sizeof (action));
603 action.sa_handler = _gst_plugin_fault_handler_sighandler;
605 sigaction (SIGSEGV, &action, &oldaction);
607 #else /* !HAVE_SIGACTION */
609 _gst_plugin_fault_handler_restore (void)
614 _gst_plugin_fault_handler_setup (void)
617 #endif /* HAVE_SIGACTION */
619 /* g_time_val_from_iso8601() doesn't do quite what we want */
621 check_release_datetime (const gchar * date_time)
625 /* we require YYYY-MM-DD or YYYY-MM-DDTHH:MMZ format */
626 if (!g_ascii_isdigit (*date_time))
629 val = g_ascii_strtoull (date_time, (gchar **) & date_time, 10);
630 if (val < 2000 || val > 2100 || *date_time != '-')
633 val = g_ascii_strtoull (date_time + 1, (gchar **) & date_time, 10);
634 if (val == 0 || val > 12 || *date_time != '-')
637 val = g_ascii_strtoull (date_time + 1, (gchar **) & date_time, 10);
638 if (val == 0 || val > 32)
641 /* end of string or date/time separator + HH:MMZ */
642 if (*date_time == 'T' || *date_time == ' ') {
643 val = g_ascii_strtoull (date_time + 1, (gchar **) & date_time, 10);
644 if (val > 24 || *date_time != ':')
647 val = g_ascii_strtoull (date_time + 1, (gchar **) & date_time, 10);
648 if (val > 59 || *date_time != 'Z')
654 return (*date_time == '\0');
657 static GMutex gst_plugin_loading_mutex;
659 #define CHECK_PLUGIN_DESC_FIELD(desc,field,fn) \
660 if (G_UNLIKELY ((desc)->field == NULL || *(desc)->field == '\0')) { \
661 g_warning ("Plugin description for '%s' has no valid %s field", fn, G_STRINGIFY (field)); \
662 g_set_error (error, GST_PLUGIN_ERROR, GST_PLUGIN_ERROR_MODULE, \
663 "Plugin %s has invalid plugin description field '%s'", \
664 filename, G_STRINGIFY (field)); \
669 * gst_plugin_load_file:
670 * @filename: (type filename): the plugin filename to load
671 * @error: pointer to a %NULL-valued GError
673 * Loads the given plugin and refs it. Caller needs to unref after use.
675 * Returns: (transfer full): a reference to the existing loaded GstPlugin, a
676 * reference to the newly-loaded GstPlugin, or %NULL if an error occurred.
679 gst_plugin_load_file (const gchar * filename, GError ** error)
681 return _priv_gst_plugin_load_file_for_registry (filename, NULL, error);
685 extract_symname (const char *filename)
687 gchar *bname, *name, *symname;
689 gsize prefix_len, len;
692 bname = g_path_get_basename (filename);
693 for (i = 0; bname[i]; ++i) {
698 if (g_str_has_prefix (bname, "libgst"))
700 else if (g_str_has_prefix (bname, "lib"))
702 else if (g_str_has_prefix (bname, "gst"))
705 prefix_len = 0; /* use whole name (minus suffix) as plugin name */
707 dot = g_utf8_strchr (bname, -1, '.');
709 len = dot - bname - prefix_len;
711 len = strlen (bname + prefix_len);
713 name = g_strndup (bname + prefix_len, len);
716 symname = g_strconcat ("gst_plugin_", name, "_get_desc", NULL);
722 /* Note: The return value is (transfer full) although we work with floating
723 * references here. If a new plugin instance is created, it is always sinked
724 * in the registry first and a new reference is returned
727 _priv_gst_plugin_load_file_for_registry (const gchar * filename,
728 GstRegistry * registry, GError ** error)
730 const GstPluginDesc *desc;
736 GStatBuf file_status;
737 gboolean new_plugin = TRUE;
740 g_return_val_if_fail (filename != NULL, NULL);
742 if (registry == NULL)
743 registry = gst_registry_get ();
745 g_mutex_lock (&gst_plugin_loading_mutex);
747 plugin = gst_registry_lookup (registry, filename);
749 if (plugin->module) {
751 g_mutex_unlock (&gst_plugin_loading_mutex);
754 /* load plugin and update fields */
759 GST_CAT_DEBUG (GST_CAT_PLUGIN_LOADING, "attempt to load plugin \"%s\"",
762 if (!g_module_supported ()) {
763 GST_CAT_DEBUG (GST_CAT_PLUGIN_LOADING, "module loading not supported");
766 GST_PLUGIN_ERROR_MODULE, "Dynamic loading not supported");
770 if (g_stat (filename, &file_status)) {
771 GST_CAT_DEBUG (GST_CAT_PLUGIN_LOADING, "problem accessing file");
774 GST_PLUGIN_ERROR_MODULE, "Problem accessing file %s: %s", filename,
779 flags = G_MODULE_BIND_LOCAL;
780 /* libgstpython.so is the gst-python plugin loader. It needs to be loaded with
781 * G_MODULE_BIND_LAZY.
783 * Ideally there should be a generic way for plugins to specify that they
784 * need to be loaded with _LAZY.
786 if (strstr (filename, "libgstpython"))
787 flags |= G_MODULE_BIND_LAZY;
789 module = g_module_open (filename, flags);
790 if (module == NULL) {
791 GST_CAT_WARNING (GST_CAT_PLUGIN_LOADING, "module_open failed: %s",
794 GST_PLUGIN_ERROR, GST_PLUGIN_ERROR_MODULE, "Opening module failed: %s",
796 /* If we failed to open the shared object, then it's probably because a
797 * plugin is linked against the wrong libraries. Print out an easy-to-see
798 * message in this case. */
799 g_warning ("Failed to load plugin '%s': %s", filename, g_module_error ());
803 symname = extract_symname (filename);
804 ret = g_module_symbol (module, symname, &ptr);
807 GstPluginDesc *(*get_desc) (void) = ptr;
810 GST_DEBUG ("Could not find symbol '%s', falling back to gst_plugin_desc",
812 ret = g_module_symbol (module, "gst_plugin_desc", &ptr);
818 GST_DEBUG ("Could not find plugin entry point in \"%s\"", filename);
821 GST_PLUGIN_ERROR_MODULE,
822 "File \"%s\" is not a GStreamer plugin", filename);
823 g_module_close (module);
827 desc = (const GstPluginDesc *) ptr;
829 if (priv_gst_plugin_loading_have_whitelist () &&
830 !priv_gst_plugin_desc_is_whitelisted (desc, filename)) {
831 GST_INFO ("Whitelist specified and plugin not in whitelist, not loading: "
832 "name=%s, package=%s, file=%s", desc->name, desc->source, filename);
833 g_set_error (error, GST_PLUGIN_ERROR, GST_PLUGIN_ERROR_MODULE,
834 "Not loading plugin file \"%s\", not in whitelist", filename);
835 g_module_close (module);
840 plugin = g_object_new (GST_TYPE_PLUGIN, NULL);
841 plugin->file_mtime = file_status.st_mtime;
842 plugin->file_size = file_status.st_size;
843 plugin->filename = g_strdup (filename);
844 plugin->basename = g_path_get_basename (filename);
847 plugin->module = module;
850 /* check plugin description: complain about bad values and fail */
851 CHECK_PLUGIN_DESC_FIELD (desc, name, filename);
852 CHECK_PLUGIN_DESC_FIELD (desc, description, filename);
853 CHECK_PLUGIN_DESC_FIELD (desc, version, filename);
854 CHECK_PLUGIN_DESC_FIELD (desc, license, filename);
855 CHECK_PLUGIN_DESC_FIELD (desc, source, filename);
856 CHECK_PLUGIN_DESC_FIELD (desc, package, filename);
857 CHECK_PLUGIN_DESC_FIELD (desc, origin, filename);
859 if (desc->name != NULL && desc->name[0] == '"') {
860 g_warning ("Invalid plugin name '%s' - fix your GST_PLUGIN_DEFINE "
861 "(remove quotes around plugin name)", desc->name);
864 if (desc->release_datetime != NULL &&
865 !check_release_datetime (desc->release_datetime)) {
866 g_warning ("GstPluginDesc for '%s' has invalid datetime '%s'",
867 filename, desc->release_datetime);
868 g_set_error (error, GST_PLUGIN_ERROR, GST_PLUGIN_ERROR_MODULE,
869 "Plugin %s has invalid plugin description field 'release_datetime'",
875 GST_LOG ("Plugin %p for file \"%s\" prepared, calling entry function...",
878 /* this is where we load the actual .so, so let's trap SIGSEGV */
879 _gst_plugin_fault_handler_setup ();
880 _gst_plugin_fault_handler_filename = plugin->filename;
882 GST_LOG ("Plugin %p for file \"%s\" prepared, registering...",
885 if (!gst_plugin_register_func (plugin, desc, NULL)) {
886 /* remove signal handler */
887 _gst_plugin_fault_handler_restore ();
888 GST_DEBUG ("gst_plugin_register_func failed for plugin \"%s\"", filename);
892 GST_PLUGIN_ERROR_MODULE,
893 "File \"%s\" appears to be a GStreamer plugin, but it failed to initialize",
898 /* remove signal handler */
899 _gst_plugin_fault_handler_restore ();
900 _gst_plugin_fault_handler_filename = NULL;
901 GST_INFO ("plugin \"%s\" loaded", plugin->filename);
904 gst_object_ref (plugin);
905 gst_registry_add_plugin (registry, plugin);
908 g_mutex_unlock (&gst_plugin_loading_mutex);
914 gst_object_unref (plugin);
915 g_mutex_unlock (&gst_plugin_loading_mutex);
921 gst_plugin_desc_copy (GstPluginDesc * dest, const GstPluginDesc * src)
923 dest->major_version = src->major_version;
924 dest->minor_version = src->minor_version;
925 dest->name = g_intern_string (src->name);
926 dest->description = g_intern_string (src->description);
927 dest->plugin_init = src->plugin_init;
928 dest->version = g_intern_string (src->version);
929 dest->license = g_intern_string (src->license);
930 dest->source = g_intern_string (src->source);
931 dest->package = g_intern_string (src->package);
932 dest->origin = g_intern_string (src->origin);
933 dest->release_datetime = g_intern_string (src->release_datetime);
937 * gst_plugin_get_name:
938 * @plugin: plugin to get the name of
940 * Get the short name of the plugin
942 * Returns: the name of the plugin
945 gst_plugin_get_name (GstPlugin * plugin)
947 g_return_val_if_fail (plugin != NULL, NULL);
949 return plugin->desc.name;
953 * gst_plugin_get_description:
954 * @plugin: plugin to get long name of
956 * Get the long descriptive name of the plugin
958 * Returns: the long name of the plugin
961 gst_plugin_get_description (GstPlugin * plugin)
963 g_return_val_if_fail (plugin != NULL, NULL);
965 return plugin->desc.description;
969 * gst_plugin_get_filename:
970 * @plugin: plugin to get the filename of
972 * get the filename of the plugin
974 * Returns: (type filename): the filename of the plugin
977 gst_plugin_get_filename (GstPlugin * plugin)
979 g_return_val_if_fail (plugin != NULL, NULL);
981 return plugin->filename;
985 * gst_plugin_get_version:
986 * @plugin: plugin to get the version of
988 * get the version of the plugin
990 * Returns: the version of the plugin
993 gst_plugin_get_version (GstPlugin * plugin)
995 g_return_val_if_fail (plugin != NULL, NULL);
997 return plugin->desc.version;
1001 * gst_plugin_get_license:
1002 * @plugin: plugin to get the license of
1004 * get the license of the plugin
1006 * Returns: the license of the plugin
1009 gst_plugin_get_license (GstPlugin * plugin)
1011 g_return_val_if_fail (plugin != NULL, NULL);
1013 return plugin->desc.license;
1017 * gst_plugin_get_source:
1018 * @plugin: plugin to get the source of
1020 * get the source module the plugin belongs to.
1022 * Returns: the source of the plugin
1025 gst_plugin_get_source (GstPlugin * plugin)
1027 g_return_val_if_fail (plugin != NULL, NULL);
1029 return plugin->desc.source;
1033 * gst_plugin_get_package:
1034 * @plugin: plugin to get the package of
1036 * get the package the plugin belongs to.
1038 * Returns: the package of the plugin
1041 gst_plugin_get_package (GstPlugin * plugin)
1043 g_return_val_if_fail (plugin != NULL, NULL);
1045 return plugin->desc.package;
1049 * gst_plugin_get_origin:
1050 * @plugin: plugin to get the origin of
1052 * get the URL where the plugin comes from
1054 * Returns: the origin of the plugin
1057 gst_plugin_get_origin (GstPlugin * plugin)
1059 g_return_val_if_fail (plugin != NULL, NULL);
1061 return plugin->desc.origin;
1065 * gst_plugin_get_release_date_string:
1066 * @plugin: plugin to get the release date of
1068 * Get the release date (and possibly time) in form of a string, if available.
1070 * For normal GStreamer plugin releases this will usually just be a date in
1071 * the form of "YYYY-MM-DD", while pre-releases and builds from git may contain
1072 * a time component after the date as well, in which case the string will be
1073 * formatted like "YYYY-MM-DDTHH:MMZ" (e.g. "2012-04-30T09:30Z").
1075 * There may be plugins that do not have a valid release date set on them.
1077 * Returns: (nullable): the date string of the plugin, or %NULL if not
1081 gst_plugin_get_release_date_string (GstPlugin * plugin)
1083 g_return_val_if_fail (plugin != NULL, NULL);
1085 return plugin->desc.release_datetime;
1089 * gst_plugin_is_loaded:
1090 * @plugin: plugin to query
1092 * queries if the plugin is loaded into memory
1094 * Returns: %TRUE is loaded, %FALSE otherwise
1097 gst_plugin_is_loaded (GstPlugin * plugin)
1099 g_return_val_if_fail (plugin != NULL, FALSE);
1101 return (plugin->module != NULL || plugin->filename == NULL);
1105 * gst_plugin_get_cache_data:
1108 * Gets the plugin specific data cache. If it is %NULL there is no cached data
1109 * stored. This is the case when the registry is getting rebuilt.
1111 * Returns: (transfer none) (nullable): The cached data as a
1112 * #GstStructure or %NULL.
1114 const GstStructure *
1115 gst_plugin_get_cache_data (GstPlugin * plugin)
1117 g_return_val_if_fail (GST_IS_PLUGIN (plugin), NULL);
1119 return plugin->priv->cache_data;
1123 * gst_plugin_set_cache_data:
1125 * @cache_data: (transfer full): a structure containing the data to cache
1127 * Adds plugin specific data to cache. Passes the ownership of the structure to
1130 * The cache is flushed every time the registry is rebuilt.
1133 gst_plugin_set_cache_data (GstPlugin * plugin, GstStructure * cache_data)
1135 g_return_if_fail (GST_IS_PLUGIN (plugin));
1136 g_return_if_fail (GST_IS_STRUCTURE (cache_data));
1138 if (plugin->priv->cache_data) {
1139 gst_structure_free (plugin->priv->cache_data);
1141 plugin->priv->cache_data = cache_data;
1146 * gst_plugin_feature_list:
1147 * @plugin: plugin to query
1148 * @filter: the filter to use
1149 * @first: only return first match
1150 * @user_data: user data passed to the filter function
1152 * Runs a filter against all plugin features and returns a GList with
1153 * the results. If the first flag is set, only the first match is
1154 * returned (as a list with a single object).
1156 * Returns: a GList of features, g_list_free after use.
1159 gst_plugin_feature_filter (GstPlugin * plugin,
1160 GstPluginFeatureFilter filter, gboolean first, gpointer user_data)
1165 list = gst_filter_run (plugin->features, (GstFilterFunc) filter, first,
1167 for (g = list; g; g = g->next) {
1168 gst_object_ref (plugin);
1176 GstPluginFeatureFilter filter;
1184 _feature_filter (GstPlugin * plugin, gpointer user_data)
1187 FeatureFilterData *data = (FeatureFilterData *) user_data;
1189 result = gst_plugin_feature_filter (plugin, data->filter, data->first,
1192 data->result = g_list_concat (data->result, result);
1199 * gst_plugin_list_feature_filter:
1200 * @list: a #GList of plugins to query
1201 * @filter: the filter function to use
1202 * @first: only return first match
1203 * @user_data: user data passed to the filter function
1205 * Runs a filter against all plugin features of the plugins in the given
1206 * list and returns a GList with the results.
1207 * If the first flag is set, only the first match is
1208 * returned (as a list with a single object).
1210 * Returns: a GList of features, g_list_free after use.
1213 gst_plugin_list_feature_filter (GList * list,
1214 GstPluginFeatureFilter filter, gboolean first, gpointer user_data)
1216 FeatureFilterData data;
1219 data.filter = filter;
1221 data.user_data = user_data;
1224 result = gst_filter_run (list, (GstFilterFunc) _feature_filter, first, &data);
1225 g_list_free (result);
1231 * gst_plugin_find_feature:
1232 * @plugin: plugin to get the feature from
1233 * @name: The name of the feature to find
1234 * @type: The type of the feature to find
1236 * Find a feature of the given name and type in the given plugin.
1238 * Returns: a GstPluginFeature or %NULL if the feature was not found.
1241 gst_plugin_find_feature (GstPlugin * plugin, const gchar * name, GType type)
1244 GstPluginFeature *result = NULL;
1245 GstTypeNameData data;
1247 g_return_val_if_fail (name != NULL, NULL);
1252 walk = gst_filter_run (plugin->features,
1253 (GstFilterFunc) gst_plugin_feature_type_name_filter, TRUE, &data);
1256 result = GST_PLUGIN_FEATURE (walk->data);
1258 gst_object_ref (result);
1259 gst_plugin_feature_list_free (walk);
1268 gst_plugin_feature_name_filter (GstPluginFeature * feature, const gchar * name)
1270 return !strcmp (name, GST_PLUGIN_FEATURE_NAME (feature));
1276 * gst_plugin_find_feature_by_name:
1277 * @plugin: plugin to get the feature from
1278 * @name: The name of the feature to find
1280 * Find a feature of the given name in the given plugin.
1282 * Returns: a GstPluginFeature or %NULL if the feature was not found.
1285 gst_plugin_find_feature_by_name (GstPlugin * plugin, const gchar * name)
1288 GstPluginFeature *result = NULL;
1290 g_return_val_if_fail (name != NULL, NULL);
1292 walk = gst_filter_run (plugin->features,
1293 (GstFilterFunc) gst_plugin_feature_name_filter, TRUE, (void *) name);
1296 result = GST_PLUGIN_FEATURE (walk->data);
1298 gst_object_ref (result);
1299 gst_plugin_feature_list_free (walk);
1307 * gst_plugin_load_by_name:
1308 * @name: name of plugin to load
1310 * Load the named plugin. Refs the plugin.
1312 * Returns: (transfer full) (nullable): a reference to a loaded plugin, or
1316 gst_plugin_load_by_name (const gchar * name)
1318 GstPlugin *plugin, *newplugin;
1319 GError *error = NULL;
1321 GST_DEBUG ("looking up plugin %s in default registry", name);
1322 plugin = gst_registry_find_plugin (gst_registry_get (), name);
1324 GST_DEBUG ("loading plugin %s from file %s", name, plugin->filename);
1325 newplugin = gst_plugin_load_file (plugin->filename, &error);
1326 gst_object_unref (plugin);
1329 GST_WARNING ("load_plugin error: %s", error->message);
1330 g_error_free (error);
1333 /* newplugin was reffed by load_file */
1337 GST_DEBUG ("Could not find plugin %s in registry", name);
1343 * @plugin: (transfer none): plugin to load
1345 * Loads @plugin. Note that the *return value* is the loaded plugin; @plugin is
1346 * untouched. The normal use pattern of this function goes like this:
1349 * GstPlugin *loaded_plugin;
1350 * loaded_plugin = gst_plugin_load (plugin);
1351 * // presumably, we're no longer interested in the potentially-unloaded plugin
1352 * gst_object_unref (plugin);
1353 * plugin = loaded_plugin;
1356 * Returns: (transfer full) (nullable): a reference to a loaded plugin, or
1360 gst_plugin_load (GstPlugin * plugin)
1362 GError *error = NULL;
1363 GstPlugin *newplugin;
1365 if (gst_plugin_is_loaded (plugin)) {
1366 return gst_object_ref (plugin);
1369 if (!(newplugin = gst_plugin_load_file (plugin->filename, &error)))
1376 GST_WARNING ("load_plugin error: %s", error->message);
1377 g_error_free (error);
1383 * gst_plugin_list_free:
1384 * @list: (transfer full) (element-type Gst.Plugin): list of #GstPlugin
1386 * Unrefs each member of @list, then frees the list.
1389 gst_plugin_list_free (GList * list)
1393 for (g = list; g; g = g->next) {
1394 gst_object_unref (GST_PLUGIN_CAST (g->data));
1399 /* ===== plugin dependencies ===== */
1402 * ENV + xyz where ENV can contain multiple values separated by SEPARATOR
1403 * xyz may be "" (if ENV contains path to file rather than dir)
1404 * ENV + *xyz same as above, but xyz acts as suffix filter
1405 * ENV + xyz* same as above, but xyz acts as prefix filter (is this needed?)
1406 * ENV + *xyz* same as above, but xyz acts as strstr filter (is this needed?)
1408 * same as above, with additional paths hard-coded at compile-time:
1409 * - only check paths + ... if ENV is not set or yields not paths
1410 * - always check paths + ... in addition to ENV
1412 * When user specifies set of environment variables, he/she may also use e.g.
1413 * "HOME/.mystuff/plugins", and we'll expand the content of $HOME with the
1417 /* we store in registry:
1420 * - environment variables (array of strings)
1421 * - last hash of env variable contents (uint) (so we can avoid doing stats
1422 * if one of the env vars has changed; premature optimisation galore)
1423 * - hard-coded paths (array of strings)
1424 * - xyz filename/suffix/prefix strings (array of strings)
1426 * - last hash of file/dir stats (int)
1428 * (= struct GstPluginDep)
1432 gst_plugin_ext_dep_get_env_vars_hash (GstPlugin * plugin, GstPluginDep * dep)
1437 /* there's no deeper logic to what we do here; all we want to know (when
1438 * checking if the plugin needs to be rescanned) is whether the content of
1439 * one of the environment variables in the list is different from when it
1440 * was last scanned */
1442 for (e = dep->env_vars; e != NULL && *e != NULL; ++e) {
1446 /* order matters: "val",NULL needs to yield a different hash than
1447 * NULL,"val", so do a shift here whether the var is set or not */
1450 /* want environment variable at beginning of string */
1451 if (!g_ascii_isalnum (**e)) {
1452 GST_WARNING_OBJECT (plugin, "string prefix is not a valid environment "
1453 "variable string: %s", *e);
1457 /* user is allowed to specify e.g. "HOME/.pitivi/plugins" */
1458 g_strlcpy (env_var, *e, sizeof (env_var));
1459 g_strdelimit (env_var, "/\\", '\0');
1461 if ((val = g_getenv (env_var)))
1462 hash += g_str_hash (val);
1469 _priv_plugin_deps_env_vars_changed (GstPlugin * plugin)
1473 for (l = plugin->priv->deps; l != NULL; l = l->next) {
1474 GstPluginDep *dep = l->data;
1476 if (dep->env_hash != gst_plugin_ext_dep_get_env_vars_hash (plugin, dep))
1484 gst_plugin_ext_dep_extract_env_vars_paths (GstPlugin * plugin,
1485 GstPluginDep * dep, GQueue * paths)
1489 for (evars = dep->env_vars; evars != NULL && *evars != NULL; ++evars) {
1493 /* want environment variable at beginning of string */
1494 if (!g_ascii_isalnum (**evars)) {
1495 GST_WARNING_OBJECT (plugin, "string prefix is not a valid environment "
1496 "variable string: %s", *evars);
1500 /* user is allowed to specify e.g. "HOME/.pitivi/plugins", which we want to
1501 * split into the env_var name component and the path component */
1502 components = g_strsplit_set (*evars, "/\\", 2);
1503 g_assert (components != NULL);
1505 e = g_getenv (components[0]);
1506 GST_LOG_OBJECT (plugin, "expanding %s = '%s' (path suffix: %s)",
1507 components[0], GST_STR_NULL (e), GST_STR_NULL (components[1]));
1509 if (components[1] != NULL) {
1510 g_strdelimit (components[1], "/\\", G_DIR_SEPARATOR);
1513 if (e != NULL && *e != '\0') {
1517 arr = g_strsplit (e, G_SEARCHPATH_SEPARATOR_S, -1);
1519 for (i = 0; arr != NULL && arr[i] != NULL; ++i) {
1522 if (!g_path_is_absolute (arr[i])) {
1523 GST_INFO_OBJECT (plugin, "ignoring environment variable content '%s'"
1524 ": either not an absolute path or not a path at all", arr[i]);
1528 if (components[1] != NULL) {
1529 full_path = g_build_filename (arr[i], components[1], NULL);
1531 full_path = g_strdup (arr[i]);
1534 if (!g_queue_find_custom (paths, full_path, (GCompareFunc) strcmp)) {
1535 GST_LOG_OBJECT (plugin, "path: '%s'", full_path);
1536 g_queue_push_tail (paths, full_path);
1539 GST_LOG_OBJECT (plugin, "path: '%s' (duplicate,ignoring)", full_path);
1547 g_strfreev (components);
1550 GST_LOG_OBJECT (plugin, "Extracted %d paths from environment", paths->length);
1554 gst_plugin_ext_dep_get_hash_from_stat_entry (GStatBuf * s)
1557 if (!(s->st_mode & (S_IFDIR | S_IFREG | S_IFBLK | S_IFCHR)))
1559 /* MSVC does not have S_IFBLK */
1560 if (!(s->st_mode & (S_IFDIR | S_IFREG | S_IFCHR)))
1564 /* completely random formula */
1565 return ((s->st_size << 3) + (s->st_mtime << 5)) ^ s->st_ctime;
1569 gst_plugin_ext_dep_direntry_matches (GstPlugin * plugin, const gchar * entry,
1570 const gchar ** filenames, GstPluginDependencyFlags flags)
1572 /* no filenames specified, match all entries for now (could probably
1573 * optimise by just taking the dir stat hash or so) */
1574 if (filenames == NULL || *filenames == NULL || **filenames == '\0')
1577 while (*filenames != NULL) {
1579 if (((flags & GST_PLUGIN_DEPENDENCY_FLAG_FILE_NAME_IS_SUFFIX)) &&
1580 g_str_has_suffix (entry, *filenames)) {
1582 } else if (((flags & GST_PLUGIN_DEPENDENCY_FLAG_FILE_NAME_IS_PREFIX)) &&
1583 g_str_has_prefix (entry, *filenames)) {
1585 /* else it's an exact match that's needed */
1586 } else if (strcmp (entry, *filenames) == 0) {
1589 GST_LOG ("%s does not match %s, flags=0x%04x", entry, *filenames, flags);
1596 gst_plugin_ext_dep_scan_dir_and_match_names (GstPlugin * plugin,
1597 const gchar * path, const gchar ** filenames,
1598 GstPluginDependencyFlags flags, int depth)
1601 gboolean recurse_dirs;
1606 recurse_dirs = ! !(flags & GST_PLUGIN_DEPENDENCY_FLAG_RECURSE);
1608 dir = g_dir_open (path, 0, &err);
1610 GST_DEBUG_OBJECT (plugin, "g_dir_open(%s) failed: %s", path, err->message);
1615 /* FIXME: we're assuming here that we always get the directory entries in
1616 * the same order, and not in a random order */
1617 while ((entry = g_dir_read_name (dir))) {
1618 gboolean have_match;
1624 gst_plugin_ext_dep_direntry_matches (plugin, entry, filenames, flags);
1626 /* avoid the stat if possible */
1627 if (!have_match && !recurse_dirs)
1630 full_path = g_build_filename (path, entry, NULL);
1631 if (g_stat (full_path, &s) < 0) {
1632 fhash = (guint) - 1;
1633 GST_LOG_OBJECT (plugin, "stat: %s (error: %s)", full_path,
1634 g_strerror (errno));
1635 } else if (have_match) {
1636 fhash = gst_plugin_ext_dep_get_hash_from_stat_entry (&s);
1637 GST_LOG_OBJECT (plugin, "stat: %s (result: %u)", full_path, fhash);
1638 } else if ((s.st_mode & (S_IFDIR))) {
1639 fhash = gst_plugin_ext_dep_scan_dir_and_match_names (plugin, full_path,
1640 filenames, flags, depth + 1);
1642 /* it's not a name match, we want to recurse, but it's not a directory */
1647 hash = hash + fhash;
1656 gst_plugin_ext_dep_scan_path_with_filenames (GstPlugin * plugin,
1657 const gchar * path, const gchar ** filenames,
1658 GstPluginDependencyFlags flags)
1660 const gchar *empty_filenames[] = { "", NULL };
1661 gboolean recurse_into_dirs, partial_names = FALSE;
1664 /* to avoid special-casing below (FIXME?) */
1665 if (filenames == NULL || *filenames == NULL)
1666 filenames = empty_filenames;
1668 recurse_into_dirs = ! !(flags & GST_PLUGIN_DEPENDENCY_FLAG_RECURSE);
1670 if ((flags & GST_PLUGIN_DEPENDENCY_FLAG_FILE_NAME_IS_SUFFIX) ||
1671 (flags & GST_PLUGIN_DEPENDENCY_FLAG_FILE_NAME_IS_PREFIX))
1672 partial_names = TRUE;
1674 /* if we can construct the exact paths to check with the data we have, just
1675 * stat them one by one; this is more efficient than opening the directory
1676 * and going through each entry to see if it matches one of our filenames. */
1677 if (!recurse_into_dirs && !partial_names) {
1678 for (i = 0; filenames[i] != NULL; ++i) {
1683 full_path = g_build_filename (path, filenames[i], NULL);
1684 if (g_stat (full_path, &s) < 0) {
1685 fhash = (guint) - 1;
1686 GST_LOG_OBJECT (plugin, "stat: %s (error: %s)", full_path,
1687 g_strerror (errno));
1689 fhash = gst_plugin_ext_dep_get_hash_from_stat_entry (&s);
1690 GST_LOG_OBJECT (plugin, "stat: %s (result: %08x)", full_path, fhash);
1696 hash = gst_plugin_ext_dep_scan_dir_and_match_names (plugin, path,
1697 filenames, flags, 0);
1704 gst_plugin_ext_dep_get_stat_hash (GstPlugin * plugin, GstPluginDep * dep)
1706 gboolean paths_are_default_only;
1707 gboolean paths_are_relative_to_exe;
1708 GQueue scan_paths = G_QUEUE_INIT;
1709 guint scan_hash = 0;
1712 GST_LOG_OBJECT (plugin, "start");
1714 paths_are_default_only =
1715 dep->flags & GST_PLUGIN_DEPENDENCY_FLAG_PATHS_ARE_DEFAULT_ONLY;
1716 paths_are_relative_to_exe =
1717 dep->flags & GST_PLUGIN_DEPENDENCY_FLAG_PATHS_ARE_RELATIVE_TO_EXE;
1719 gst_plugin_ext_dep_extract_env_vars_paths (plugin, dep, &scan_paths);
1721 if (g_queue_is_empty (&scan_paths) || !paths_are_default_only) {
1724 for (paths = dep->paths; paths != NULL && *paths != NULL; ++paths) {
1725 const gchar *path = *paths;
1728 if (paths_are_relative_to_exe && !g_path_is_absolute (path)) {
1731 if (!_gst_executable_path) {
1732 GST_FIXME_OBJECT (plugin,
1733 "Path dependency %s relative to executable path but could not retrieve executable path",
1737 appdir = g_path_get_dirname (_gst_executable_path);
1738 full_path = g_build_filename (appdir, path, NULL);
1741 full_path = g_strdup (path);
1744 if (!g_queue_find_custom (&scan_paths, full_path, (GCompareFunc) strcmp)) {
1745 GST_LOG_OBJECT (plugin, "path: '%s'", full_path);
1746 g_queue_push_tail (&scan_paths, full_path);
1748 GST_LOG_OBJECT (plugin, "path: '%s' (duplicate, ignoring)", full_path);
1754 while ((path = g_queue_pop_head (&scan_paths))) {
1755 scan_hash += gst_plugin_ext_dep_scan_path_with_filenames (plugin, path,
1756 (const gchar **) dep->names, dep->flags);
1760 GST_LOG_OBJECT (plugin, "done, scan_hash: %08x", scan_hash);
1765 _priv_plugin_deps_files_changed (GstPlugin * plugin)
1769 for (l = plugin->priv->deps; l != NULL; l = l->next) {
1770 GstPluginDep *dep = l->data;
1772 if (dep->stat_hash != gst_plugin_ext_dep_get_stat_hash (plugin, dep))
1780 gst_plugin_ext_dep_free (GstPluginDep * dep)
1782 g_strfreev (dep->env_vars);
1783 g_strfreev (dep->paths);
1784 g_strfreev (dep->names);
1785 g_slice_free (GstPluginDep, dep);
1789 gst_plugin_ext_dep_strv_equal (gchar ** arr1, gchar ** arr2)
1793 if (arr1 == NULL || arr2 == NULL)
1795 for (; *arr1 != NULL && *arr2 != NULL; ++arr1, ++arr2) {
1796 if (strcmp (*arr1, *arr2) != 0)
1799 return (*arr1 == *arr2);
1803 gst_plugin_ext_dep_equals (GstPluginDep * dep, const gchar ** env_vars,
1804 const gchar ** paths, const gchar ** names, GstPluginDependencyFlags flags)
1806 if (dep->flags != flags)
1809 return gst_plugin_ext_dep_strv_equal (dep->env_vars, (gchar **) env_vars) &&
1810 gst_plugin_ext_dep_strv_equal (dep->paths, (gchar **) paths) &&
1811 gst_plugin_ext_dep_strv_equal (dep->names, (gchar **) names);
1815 * gst_plugin_add_dependency:
1816 * @plugin: a #GstPlugin
1817 * @env_vars: (allow-none) (array zero-terminated=1): %NULL-terminated array of environment variables affecting the
1818 * feature set of the plugin (e.g. an environment variable containing
1819 * paths where to look for additional modules/plugins of a library),
1820 * or %NULL. Environment variable names may be followed by a path component
1821 * which will be added to the content of the environment variable, e.g.
1822 * "HOME/.mystuff/plugins".
1823 * @paths: (allow-none) (array zero-terminated=1): %NULL-terminated array of directories/paths where dependent files
1825 * @names: (allow-none) (array zero-terminated=1): %NULL-terminated array of file names (or file name suffixes,
1826 * depending on @flags) to be used in combination with the paths from
1827 * @paths and/or the paths extracted from the environment variables in
1828 * @env_vars, or %NULL.
1829 * @flags: optional flags, or #GST_PLUGIN_DEPENDENCY_FLAG_NONE
1831 * Make GStreamer aware of external dependencies which affect the feature
1832 * set of this plugin (ie. the elements or typefinders associated with it).
1834 * GStreamer will re-inspect plugins with external dependencies whenever any
1835 * of the external dependencies change. This is useful for plugins which wrap
1836 * other plugin systems, e.g. a plugin which wraps a plugin-based visualisation
1837 * library and makes visualisations available as GStreamer elements, or a
1838 * codec loader which exposes elements and/or caps dependent on what external
1839 * codec libraries are currently installed.
1842 gst_plugin_add_dependency (GstPlugin * plugin, const gchar ** env_vars,
1843 const gchar ** paths, const gchar ** names, GstPluginDependencyFlags flags)
1848 g_return_if_fail (GST_IS_PLUGIN (plugin));
1850 if ((env_vars == NULL || env_vars[0] == NULL) &&
1851 (paths == NULL || paths[0] == NULL)) {
1852 GST_DEBUG_OBJECT (plugin,
1853 "plugin registered empty dependency set. Ignoring");
1857 for (l = plugin->priv->deps; l != NULL; l = l->next) {
1858 if (gst_plugin_ext_dep_equals (l->data, env_vars, paths, names, flags)) {
1859 GST_LOG_OBJECT (plugin, "dependency already registered");
1864 dep = g_slice_new (GstPluginDep);
1866 dep->env_vars = g_strdupv ((gchar **) env_vars);
1867 dep->paths = g_strdupv ((gchar **) paths);
1868 dep->names = g_strdupv ((gchar **) names);
1871 dep->env_hash = gst_plugin_ext_dep_get_env_vars_hash (plugin, dep);
1872 dep->stat_hash = gst_plugin_ext_dep_get_stat_hash (plugin, dep);
1874 plugin->priv->deps = g_list_append (plugin->priv->deps, dep);
1876 GST_DEBUG_OBJECT (plugin, "added dependency:");
1877 for (; env_vars != NULL && *env_vars != NULL; ++env_vars)
1878 GST_DEBUG_OBJECT (plugin, " evar: %s", *env_vars);
1879 for (; paths != NULL && *paths != NULL; ++paths)
1880 GST_DEBUG_OBJECT (plugin, " path: %s", *paths);
1881 for (; names != NULL && *names != NULL; ++names)
1882 GST_DEBUG_OBJECT (plugin, " name: %s", *names);
1886 * gst_plugin_add_dependency_simple:
1887 * @plugin: the #GstPlugin
1888 * @env_vars: (allow-none): one or more environment variables (separated by ':', ';' or ','),
1889 * or %NULL. Environment variable names may be followed by a path component
1890 * which will be added to the content of the environment variable, e.g.
1891 * "HOME/.mystuff/plugins:MYSTUFF_PLUGINS_PATH"
1892 * @paths: (allow-none): one ore more directory paths (separated by ':' or ';' or ','),
1893 * or %NULL. Example: "/usr/lib/mystuff/plugins"
1894 * @names: (allow-none): one or more file names or file name suffixes (separated by commas),
1896 * @flags: optional flags, or #GST_PLUGIN_DEPENDENCY_FLAG_NONE
1898 * Make GStreamer aware of external dependencies which affect the feature
1899 * set of this plugin (ie. the elements or typefinders associated with it).
1901 * GStreamer will re-inspect plugins with external dependencies whenever any
1902 * of the external dependencies change. This is useful for plugins which wrap
1903 * other plugin systems, e.g. a plugin which wraps a plugin-based visualisation
1904 * library and makes visualisations available as GStreamer elements, or a
1905 * codec loader which exposes elements and/or caps dependent on what external
1906 * codec libraries are currently installed.
1908 * Convenience wrapper function for gst_plugin_add_dependency() which
1909 * takes simple strings as arguments instead of string arrays, with multiple
1910 * arguments separated by predefined delimiters (see above).
1913 gst_plugin_add_dependency_simple (GstPlugin * plugin,
1914 const gchar * env_vars, const gchar * paths, const gchar * names,
1915 GstPluginDependencyFlags flags)
1917 gchar **a_evars = NULL;
1918 gchar **a_paths = NULL;
1919 gchar **a_names = NULL;
1922 a_evars = g_strsplit_set (env_vars, ":;,", -1);
1924 a_paths = g_strsplit_set (paths, ":;,", -1);
1926 a_names = g_strsplit_set (names, ",", -1);
1928 gst_plugin_add_dependency (plugin, (const gchar **) a_evars,
1929 (const gchar **) a_paths, (const gchar **) a_names, flags);
1932 g_strfreev (a_evars);
1934 g_strfreev (a_paths);
1936 g_strfreev (a_names);