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 GStreamer
31 * #GstPluginFeature subclasses.
33 * A plugin should export a symbol `gst_plugin_desc` 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
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"
74 #if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP) && !WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
75 #define GST_WINAPI_ONLY_APP
79 #define GST_CAT_DEFAULT GST_CAT_PLUGIN_LOADING
81 static guint _num_static_plugins; /* 0 */
82 static GstPluginDesc *_static_plugins; /* NULL */
83 static gboolean _gst_plugin_inited;
84 static gchar **_plugin_loading_whitelist; /* NULL */
86 /* static variables for segfault handling of plugin loading */
87 static char *_gst_plugin_fault_handler_filename = NULL;
89 /* List of known licenses:
90 * GPL: https://opensource.org/licenses/gpl-license
91 * LGPL: https://opensource.org/licenses/lgpl-license
92 * QPL: https://opensource.org/licenses/QPL-1.0
93 * MPL: https://opensource.org/licenses/MPL-1.1
94 * MPL-2.0: https://opensource.org/licenses/MPL-2.0
95 * MIT/X11: https://opensource.org/licenses/MIT
96 * 3-clause BSD: https://opensource.org/licenses/BSD-3-Clause
97 * Zero-Clause BSD: https://opensource.org/licenses/0BSD
98 * Apache License 2.0: http://www.apache.org/licenses/LICENSE-2.0 (Since: 1.22)
100 * FIXME: update to use SPDX identifiers, or just remove entirely
102 static const gchar known_licenses[] = "LGPL\000" /* GNU Lesser General Public License */
103 "GPL\000" /* GNU General Public License */
104 "QPL\000" /* Trolltech Qt Public License */
105 "GPL/QPL\000" /* Combi-license of GPL + QPL */
106 "MPL\000" /* MPL 1.1 license */
107 "MPL-2.0\000" /* MPL 2.0 license */
108 "BSD\000" /* 3-clause BSD license */
109 "MIT/X11\000" /* MIT/X11 license */
110 "0BSD\000" /* Zero-Clause BSD */
111 "Apache 2.0\000" /* Apache License 2.0 */
112 "Proprietary\000" /* Proprietary license */
113 GST_LICENSE_UNKNOWN; /* some other license */
115 static GstPlugin *gst_plugin_register_func (GstPlugin * plugin,
116 const GstPluginDesc * desc, gpointer user_data);
117 static void gst_plugin_desc_copy (GstPluginDesc * dest,
118 const GstPluginDesc * src);
120 static void gst_plugin_ext_dep_free (GstPluginDep * dep);
122 G_DEFINE_TYPE_WITH_PRIVATE (GstPlugin, gst_plugin, GST_TYPE_OBJECT);
125 gst_plugin_init (GstPlugin * plugin)
127 plugin->priv = gst_plugin_get_instance_private (plugin);
131 gst_plugin_finalize (GObject * object)
133 GstPlugin *plugin = GST_PLUGIN_CAST (object);
135 GST_DEBUG ("finalizing plugin %" GST_PTR_FORMAT, plugin);
137 /* FIXME: make registry add a weak ref instead */
139 GstRegistry *registry = gst_registry_get ();
141 for (g = registry->plugins; g; g = g->next) {
142 if (g->data == (gpointer) plugin) {
143 g_warning ("removing plugin that is still in registry");
148 g_free (plugin->filename);
149 g_free (plugin->basename);
151 g_list_foreach (plugin->priv->deps, (GFunc) gst_plugin_ext_dep_free, NULL);
152 g_list_free (plugin->priv->deps);
153 plugin->priv->deps = NULL;
155 if (plugin->priv->cache_data) {
156 gst_structure_free (plugin->priv->cache_data);
159 G_OBJECT_CLASS (gst_plugin_parent_class)->finalize (object);
163 gst_plugin_class_init (GstPluginClass * klass)
165 G_OBJECT_CLASS (klass)->finalize = gst_plugin_finalize;
169 gst_plugin_error_quark (void)
171 static GQuark quark = 0;
174 quark = g_quark_from_static_string ("gst_plugin_error");
179 * gst_plugin_register_static:
180 * @major_version: the major version number of the GStreamer core that the
181 * plugin was compiled for, you can just use GST_VERSION_MAJOR here
182 * @minor_version: the minor version number of the GStreamer core that the
183 * plugin was compiled for, you can just use GST_VERSION_MINOR here
184 * @name: a unique name of the plugin (ideally prefixed with an application- or
185 * library-specific namespace prefix in order to avoid name conflicts in
186 * case a similar plugin with the same name ever gets added to GStreamer)
187 * @description: description of the plugin
188 * @init_func: (scope call): pointer to the init function of this plugin.
189 * @version: version string of the plugin
190 * @license: effective license of plugin. Must be one of the approved licenses
191 * (see #GstPluginDesc above) or the plugin will not be registered.
192 * @source: source module plugin belongs to
193 * @package: shipped package plugin belongs to
194 * @origin: URL to provider of plugin
196 * Registers a static plugin, ie. a plugin which is private to an application
197 * or library and contained within the application or library (as opposed to
198 * being shipped as a separate module file).
200 * You must make sure that GStreamer has been initialised (with gst_init() or
201 * via gst_init_get_option_group()) before calling this function.
203 * Returns: %TRUE if the plugin was registered correctly, otherwise %FALSE.
206 gst_plugin_register_static (gint major_version, gint minor_version,
207 const gchar * name, const gchar * description, GstPluginInitFunc init_func,
208 const gchar * version, const gchar * license, const gchar * source,
209 const gchar * package, const gchar * origin)
211 GstPluginDesc desc = { major_version, minor_version, name, description,
212 init_func, version, license, source, package, origin, NULL,
215 gboolean res = FALSE;
217 g_return_val_if_fail (name != NULL, FALSE);
218 g_return_val_if_fail (description != NULL, FALSE);
219 g_return_val_if_fail (init_func != NULL, FALSE);
220 g_return_val_if_fail (version != NULL, FALSE);
221 g_return_val_if_fail (license != NULL, FALSE);
222 g_return_val_if_fail (source != NULL, FALSE);
223 g_return_val_if_fail (package != NULL, FALSE);
224 g_return_val_if_fail (origin != NULL, FALSE);
226 /* make sure gst_init() has been called */
227 g_return_val_if_fail (_gst_plugin_inited != FALSE, FALSE);
229 GST_LOG ("attempting to load static plugin \"%s\" now...", name);
230 plugin = g_object_new (GST_TYPE_PLUGIN, NULL);
231 if (gst_plugin_register_func (plugin, &desc, NULL) != NULL) {
232 GST_INFO ("registered static plugin \"%s\"", name);
233 res = gst_registry_add_plugin (gst_registry_get (), plugin);
234 GST_INFO ("added static plugin \"%s\", result: %d", name, res);
240 * gst_plugin_register_static_full:
241 * @major_version: the major version number of the GStreamer core that the
242 * plugin was compiled for, you can just use GST_VERSION_MAJOR here
243 * @minor_version: the minor version number of the GStreamer core that the
244 * plugin was compiled for, you can just use GST_VERSION_MINOR here
245 * @name: a unique name of the plugin (ideally prefixed with an application- or
246 * library-specific namespace prefix in order to avoid name conflicts in
247 * case a similar plugin with the same name ever gets added to GStreamer)
248 * @description: description of the plugin
249 * @init_full_func: (scope call): pointer to the init function with user data
251 * @version: version string of the plugin
252 * @license: effective license of plugin. Must be one of the approved licenses
253 * (see #GstPluginDesc above) or the plugin will not be registered.
254 * @source: source module plugin belongs to
255 * @package: shipped package plugin belongs to
256 * @origin: URL to provider of plugin
257 * @user_data: gpointer to user data
259 * Registers a static plugin, ie. a plugin which is private to an application
260 * or library and contained within the application or library (as opposed to
261 * being shipped as a separate module file) with a #GstPluginInitFullFunc
262 * which allows user data to be passed to the callback function (useful
265 * You must make sure that GStreamer has been initialised (with gst_init() or
266 * via gst_init_get_option_group()) before calling this function.
268 * Returns: %TRUE if the plugin was registered correctly, otherwise %FALSE.
271 gst_plugin_register_static_full (gint major_version, gint minor_version,
272 const gchar * name, const gchar * description,
273 GstPluginInitFullFunc init_full_func, const gchar * version,
274 const gchar * license, const gchar * source, const gchar * package,
275 const gchar * origin, gpointer user_data)
277 GstPluginDesc desc = { major_version, minor_version, name, description,
278 (GstPluginInitFunc) init_full_func, version, license, source, package,
282 gboolean res = FALSE;
284 g_return_val_if_fail (name != NULL, FALSE);
285 g_return_val_if_fail (description != NULL, FALSE);
286 g_return_val_if_fail (init_full_func != NULL, FALSE);
287 g_return_val_if_fail (version != NULL, FALSE);
288 g_return_val_if_fail (license != NULL, FALSE);
289 g_return_val_if_fail (source != NULL, FALSE);
290 g_return_val_if_fail (package != NULL, FALSE);
291 g_return_val_if_fail (origin != NULL, FALSE);
293 /* make sure gst_init() has been called */
294 g_return_val_if_fail (_gst_plugin_inited != FALSE, FALSE);
296 GST_LOG ("attempting to load static plugin \"%s\" now...", name);
297 plugin = g_object_new (GST_TYPE_PLUGIN, NULL);
298 if (gst_plugin_register_func (plugin, &desc, user_data) != NULL) {
299 GST_INFO ("registered static plugin \"%s\"", name);
300 res = gst_registry_add_plugin (gst_registry_get (), plugin);
301 GST_INFO ("added static plugin \"%s\", result: %d", name, res);
307 _priv_gst_plugin_initialize (void)
309 const gchar *whitelist;
312 _gst_plugin_inited = TRUE;
314 whitelist = g_getenv ("GST_PLUGIN_LOADING_WHITELIST");
315 if (whitelist != NULL && *whitelist != '\0') {
316 _plugin_loading_whitelist = g_strsplit (whitelist,
317 G_SEARCHPATH_SEPARATOR_S, -1);
318 for (i = 0; _plugin_loading_whitelist[i] != NULL; ++i) {
319 GST_INFO ("plugins whitelist entry: %s", _plugin_loading_whitelist[i]);
323 /* now register all static plugins */
324 GST_INFO ("registering %u static plugins", _num_static_plugins);
325 for (i = 0; i < _num_static_plugins; ++i) {
326 gst_plugin_register_static (_static_plugins[i].major_version,
327 _static_plugins[i].minor_version, _static_plugins[i].name,
328 _static_plugins[i].description, _static_plugins[i].plugin_init,
329 _static_plugins[i].version, _static_plugins[i].license,
330 _static_plugins[i].source, _static_plugins[i].package,
331 _static_plugins[i].origin);
334 if (_static_plugins) {
335 free (_static_plugins);
336 _static_plugins = NULL;
337 _num_static_plugins = 0;
341 /* Whitelist entry format:
343 * plugin1,plugin2@pathprefix or
344 * plugin1,plugin2@* or just
346 * source-package@pathprefix or
347 * source-package@* or just
350 * ie. the bit before the path will be checked against both the plugin
351 * name and the plugin's source package name, to keep the format simple.
354 gst_plugin_desc_matches_whitelist_entry (const GstPluginDesc * desc,
355 const gchar * filename, const gchar * pattern)
358 gboolean ret = FALSE;
361 GST_LOG ("Whitelist pattern '%s', plugin: %s of %s@%s", pattern, desc->name,
362 desc->source, GST_STR_NULL (filename));
364 /* do we have a path prefix? */
365 sep = strchr (pattern, '@');
366 if (sep != NULL && strcmp (sep, "@*") != 0 && strcmp (sep, "@") != 0) {
367 /* paths are not canonicalised or treated with realpath() here. This
368 * should be good enough for our use case, since we just use the paths
369 * autotools uses, and those will be constructed from the same prefix. */
370 if (filename != NULL && !g_str_has_prefix (filename, sep + 1))
373 GST_LOG ("%s matches path prefix %s", GST_STR_NULL (filename), sep + 1);
377 name = g_strndup (pattern, (gsize) (sep - pattern));
379 name = g_strdup (pattern);
383 if (!g_ascii_isalnum (*name)) {
384 GST_WARNING ("Invalid whitelist pattern: %s", pattern);
388 /* now check plugin names / source package name */
389 if (strchr (name, ',') == NULL) {
390 /* only a single name: either a plugin name or the source package name */
391 ret = (strcmp (desc->source, name) == 0 || strcmp (desc->name, name) == 0);
395 /* multiple names: assume these are plugin names */
396 names = g_strsplit (name, ",", -1);
397 for (n = names; n != NULL && *n != NULL; ++n) {
399 if (strcmp (desc->name, *n) == 0) {
407 GST_LOG ("plugin / source package name match: %d", ret);
416 priv_gst_plugin_desc_is_whitelisted (const GstPluginDesc * desc,
417 const gchar * filename)
421 if (_plugin_loading_whitelist == NULL)
424 for (entry = _plugin_loading_whitelist; *entry != NULL; ++entry) {
425 if (gst_plugin_desc_matches_whitelist_entry (desc, filename, *entry)) {
426 GST_LOG ("Plugin %s is in whitelist", filename);
431 GST_LOG ("Plugin %s (package %s, file %s) not in whitelist", desc->name,
432 desc->source, filename);
437 priv_gst_plugin_loading_have_whitelist (void)
439 return (_plugin_loading_whitelist != NULL);
443 priv_gst_plugin_loading_get_whitelist_hash (void)
447 if (_plugin_loading_whitelist != NULL) {
450 for (w = _plugin_loading_whitelist; *w != NULL; ++w)
451 hash ^= g_str_hash (*w);
457 /* this function could be extended to check if the plugin license matches the
458 * applications license (would require the app to register its license somehow).
459 * We'll wait for someone who's interested in it to code it :)
462 gst_plugin_check_license (const gchar * license)
464 const gchar *l, *end = known_licenses + sizeof (known_licenses);
466 for (l = known_licenses; l < end; l += strlen (l) + 1) {
467 if (strcmp (license, l) == 0)
475 gst_plugin_check_version (gint major, gint minor)
477 /* return NULL if the major and minor version numbers are not compatible */
479 if (major != GST_VERSION_MAJOR || minor > GST_VERSION_MINOR)
486 gst_plugin_register_func (GstPlugin * plugin, const GstPluginDesc * desc,
489 if (!gst_plugin_check_version (desc->major_version, desc->minor_version)) {
491 GST_WARNING ("plugin \"%s\" has incompatible version "
492 "(plugin: %d.%d, gst: %d.%d), not loading",
493 GST_STR_NULL (plugin->filename), desc->major_version,
494 desc->minor_version, GST_VERSION_MAJOR, GST_VERSION_MINOR);
498 if (!desc->license || !desc->description || !desc->source ||
499 !desc->package || !desc->origin) {
501 GST_WARNING ("plugin \"%s\" has missing detail in GstPluginDesc, not "
502 "loading", GST_STR_NULL (plugin->filename));
506 if (!gst_plugin_check_license (desc->license)) {
508 GST_WARNING ("plugin \"%s\" has unknown license \"%s\"",
509 GST_STR_NULL (plugin->filename), desc->license);
510 /* We still want to load the plugin, it's not our job to validate licenses */
514 GST_LOG ("plugin \"%s\" looks good", GST_STR_NULL (plugin->filename));
516 gst_plugin_desc_copy (&plugin->desc, desc);
518 /* make resident so we're really sure it never gets unloaded again.
519 * Theoretically this is not needed, but practically it doesn't hurt.
520 * And we're rather safe than sorry. */
522 g_module_make_resident (plugin->module);
525 if (!(((GstPluginInitFullFunc) (desc->plugin_init)) (plugin, user_data))) {
527 GST_WARNING ("plugin \"%s\" failed to initialise",
528 GST_STR_NULL (plugin->filename));
532 if (!((desc->plugin_init) (plugin))) {
534 GST_WARNING ("plugin \"%s\" failed to initialise",
535 GST_STR_NULL (plugin->filename));
541 GST_LOG ("plugin \"%s\" initialised", GST_STR_NULL (plugin->filename));
546 #ifdef HAVE_SIGACTION
547 static struct sigaction oldaction;
548 static gboolean _gst_plugin_fault_handler_is_setup = FALSE;
551 * _gst_plugin_fault_handler_restore:
552 * segfault handler restorer
555 _gst_plugin_fault_handler_restore (void)
557 if (!_gst_plugin_fault_handler_is_setup)
560 _gst_plugin_fault_handler_is_setup = FALSE;
562 sigaction (SIGSEGV, &oldaction, NULL);
566 * _gst_plugin_fault_handler_sighandler:
567 * segfault handler implementation
570 _gst_plugin_fault_handler_sighandler (int signum)
572 /* We need to restore the fault handler or we'll keep getting it */
573 _gst_plugin_fault_handler_restore ();
577 g_print ("\nERROR: ");
578 g_print ("Caught a segmentation fault while loading plugin file:\n");
579 g_print ("%s\n\n", _gst_plugin_fault_handler_filename);
580 g_print ("Please either:\n");
581 g_print ("- remove it and restart.\n");
583 ("- run with --gst-disable-segtrap --gst-disable-registry-fork and debug.\n");
587 g_print ("Caught unhandled signal on plugin loading\n");
593 * _gst_plugin_fault_handler_setup:
594 * sets up the segfault handler
597 _gst_plugin_fault_handler_setup (void)
599 struct sigaction action;
601 /* if asked to leave segfaults alone, just return */
602 if (!gst_segtrap_is_enabled ())
605 if (_gst_plugin_fault_handler_is_setup)
608 _gst_plugin_fault_handler_is_setup = TRUE;
610 memset (&action, 0, sizeof (action));
611 action.sa_handler = _gst_plugin_fault_handler_sighandler;
613 sigaction (SIGSEGV, &action, &oldaction);
615 #else /* !HAVE_SIGACTION */
617 _gst_plugin_fault_handler_restore (void)
622 _gst_plugin_fault_handler_setup (void)
625 #endif /* HAVE_SIGACTION */
627 /* g_time_val_from_iso8601() doesn't do quite what we want */
629 check_release_datetime (const gchar * date_time)
633 /* we require YYYY-MM-DD or YYYY-MM-DDTHH:MMZ format */
634 if (!g_ascii_isdigit (*date_time))
637 val = g_ascii_strtoull (date_time, (gchar **) & date_time, 10);
638 if (val < 2000 || val > 2100 || *date_time != '-')
641 val = g_ascii_strtoull (date_time + 1, (gchar **) & date_time, 10);
642 if (val == 0 || val > 12 || *date_time != '-')
645 val = g_ascii_strtoull (date_time + 1, (gchar **) & date_time, 10);
646 if (val == 0 || val > 32)
649 /* end of string or date/time separator + HH:MMZ */
650 if (*date_time == 'T' || *date_time == ' ') {
651 val = g_ascii_strtoull (date_time + 1, (gchar **) & date_time, 10);
652 if (val > 24 || *date_time != ':')
655 val = g_ascii_strtoull (date_time + 1, (gchar **) & date_time, 10);
656 if (val > 59 || *date_time != 'Z')
662 return (*date_time == '\0');
665 static GMutex gst_plugin_loading_mutex;
667 #define CHECK_PLUGIN_DESC_FIELD(desc,field,fn) \
668 if (G_UNLIKELY ((desc)->field == NULL || *(desc)->field == '\0')) { \
669 g_warning ("Plugin description for '%s' has no valid %s field", fn, G_STRINGIFY (field)); \
670 g_set_error (error, GST_PLUGIN_ERROR, GST_PLUGIN_ERROR_MODULE, \
671 "Plugin %s has invalid plugin description field '%s'", \
672 filename, G_STRINGIFY (field)); \
677 * gst_plugin_load_file:
678 * @filename: (type filename): the plugin filename to load
679 * @error: pointer to a %NULL-valued GError
681 * Loads the given plugin and refs it. Caller needs to unref after use.
683 * Returns: (transfer full): a reference to the existing loaded GstPlugin, a
684 * reference to the newly-loaded GstPlugin, or %NULL if an error occurred.
687 gst_plugin_load_file (const gchar * filename, GError ** error)
689 return _priv_gst_plugin_load_file_for_registry (filename, NULL, error);
693 extract_symname (const char *filename)
695 gchar *bname, *name, *symname;
697 gsize prefix_len, len;
700 bname = g_path_get_basename (filename);
701 for (i = 0; bname[i]; ++i) {
706 if (g_str_has_prefix (bname, "libgst"))
708 else if (g_str_has_prefix (bname, "lib"))
710 else if (g_str_has_prefix (bname, "gst"))
713 prefix_len = 0; /* use whole name (minus suffix) as plugin name */
715 dot = g_utf8_strchr (bname, -1, '.');
717 len = dot - bname - prefix_len;
719 len = strlen (bname + prefix_len);
721 name = g_strndup (bname + prefix_len, len);
724 symname = g_strconcat ("gst_plugin_", name, "_get_desc", NULL);
732 * It is an extremely common mistake on Windows to have incorrect PATH values
733 * when loading a plugin, and the error message is very confusing in this case:
734 * 'The specified module could not be found.' which implies the plugin itself
735 * could not be found. The actual issue is that a DLL dependency could not be
736 * found. We need to detect this case and print a more useful error message.
738 * Unfortunately, g_module_open() doesn't actually give us the GetLastError()
739 * code from LoadLibraryW() and only gives us a literal message from
740 * FormatMessageW(). We can't do a string comparison on that because it is
743 * The only way out is for us to try loading the module ourselves on failure and
744 * get the error DWORD again from GetLastError().
747 get_better_module_load_error (const char *filename, const char *orig_err_msg)
753 char *err_msg = NULL;
755 wfilename = g_utf8_to_utf16 (filename, -1, NULL, NULL, NULL);
756 #ifdef GST_WINAPI_ONLY_APP
757 handle = LoadPackagedLibrary (wfilename, 0);
759 ret = SetThreadErrorMode (SEM_NOOPENFILEERRORBOX | SEM_FAILCRITICALERRORS,
762 handle = LoadLibraryW (wfilename);
766 if (handle == NULL) {
767 DWORD err = GetLastError ();
768 char *win32_err_msg = g_win32_error_message (err);
769 if (err == ERROR_MOD_NOT_FOUND) {
770 err_msg = g_strdup_printf ("%s\nThis usually means Windows was unable "
771 "to find a DLL dependency of the plugin. Please check that PATH is "
772 "correct.\nYou can run 'dumpbin -dependents' (provided by the "
773 "Visual Studio developer prompt) to list the DLL deps of any DLL.\n"
774 "There are also some third-party GUIs to list and debug DLL "
775 "dependencies recursively.", win32_err_msg);
776 g_free (win32_err_msg);
778 err_msg = win32_err_msg;
781 err_msg = g_strdup_printf ("g_module_open() failed on %s with \"%s\" but "
782 "manual loading succeeded; this should be impossible! Please "
783 "report this as a GStreamer bug.", filename, orig_err_msg);
784 FreeLibrary (handle);
788 SetThreadErrorMode (mode, NULL);
792 #endif /* G_OS_WIN32 */
794 /* Note: The return value is (transfer full) although we work with floating
795 * references here. If a new plugin instance is created, it is always sinked
796 * in the registry first and a new reference is returned
799 _priv_gst_plugin_load_file_for_registry (const gchar * filename,
800 GstRegistry * registry, GError ** error)
802 const GstPluginDesc *desc;
808 GStatBuf file_status;
809 gboolean new_plugin = TRUE;
812 g_return_val_if_fail (filename != NULL, NULL);
814 if (registry == NULL)
815 registry = gst_registry_get ();
817 g_mutex_lock (&gst_plugin_loading_mutex);
819 plugin = gst_registry_lookup (registry, filename);
821 if (plugin->module) {
823 g_mutex_unlock (&gst_plugin_loading_mutex);
825 } else if (g_strcmp0 (plugin->filename, filename) == 0) {
826 /* load plugin and update fields */
831 GST_CAT_DEBUG (GST_CAT_PLUGIN_LOADING, "attempt to load plugin \"%s\"",
834 if (!g_module_supported ()) {
835 GST_CAT_DEBUG (GST_CAT_PLUGIN_LOADING, "module loading not supported");
838 GST_PLUGIN_ERROR_MODULE, "Dynamic loading not supported");
841 #if defined(GST_WINAPI_ONLY_APP)
842 /* plugins loaded by filename by Universal Windows Platform apps do not use
843 * an actual file with a path, they use a packaged (asset) library */
844 file_status.st_mtime = 0;
845 file_status.st_size = 0;
847 if (g_stat (filename, &file_status)) {
848 GST_CAT_DEBUG (GST_CAT_PLUGIN_LOADING, "problem accessing file");
851 GST_PLUGIN_ERROR_MODULE, "Problem accessing file %s: %s", filename,
857 flags = G_MODULE_BIND_LOCAL;
858 /* libgstpython.so is the gst-python plugin loader. It needs to be loaded with
859 * G_MODULE_BIND_LAZY.
861 * Ideally there should be a generic way for plugins to specify that they
862 * need to be loaded with _LAZY.
864 if (strstr (filename, "libgstpython"))
865 flags |= G_MODULE_BIND_LAZY;
867 module = g_module_open (filename, flags);
868 if (module == NULL) {
870 /* flags are meaningless / ignored on Windows */
871 char *err_msg = get_better_module_load_error (filename, g_module_error ());
873 const char *err_msg = g_module_error ();
875 GST_CAT_WARNING (GST_CAT_PLUGIN_LOADING, "module_open failed: %s", err_msg);
877 GST_PLUGIN_ERROR, GST_PLUGIN_ERROR_MODULE, "Opening module failed: %s",
879 /* If we failed to open the shared object, then it's probably because a
880 * plugin is linked against the wrong libraries. Print out an easy-to-see
881 * message in this case. */
882 g_warning ("Failed to load plugin '%s': %s", filename, err_msg);
889 symname = extract_symname (filename);
890 ret = g_module_symbol (module, symname, &ptr);
893 GstPluginDesc *(*get_desc) (void) = ptr;
896 GST_DEBUG ("Could not find symbol '%s', falling back to gst_plugin_desc",
898 ret = g_module_symbol (module, "gst_plugin_desc", &ptr);
904 GST_DEBUG ("Could not find plugin entry point in \"%s\"", filename);
907 GST_PLUGIN_ERROR_MODULE,
908 "File \"%s\" is not a GStreamer plugin", filename);
909 g_module_close (module);
913 desc = (const GstPluginDesc *) ptr;
915 if (priv_gst_plugin_loading_have_whitelist () &&
916 !priv_gst_plugin_desc_is_whitelisted (desc, filename)) {
917 GST_INFO ("Whitelist specified and plugin not in whitelist, not loading: "
918 "name=%s, package=%s, file=%s", desc->name, desc->source, filename);
919 g_set_error (error, GST_PLUGIN_ERROR, GST_PLUGIN_ERROR_MODULE,
920 "Not loading plugin file \"%s\", not in whitelist", filename);
921 g_module_close (module);
926 plugin = g_object_new (GST_TYPE_PLUGIN, NULL);
927 plugin->file_mtime = file_status.st_mtime;
928 plugin->file_size = file_status.st_size;
929 plugin->filename = g_strdup (filename);
930 plugin->basename = g_path_get_basename (filename);
933 plugin->module = module;
936 /* check plugin description: complain about bad values and fail */
937 CHECK_PLUGIN_DESC_FIELD (desc, name, filename);
938 CHECK_PLUGIN_DESC_FIELD (desc, description, filename);
939 CHECK_PLUGIN_DESC_FIELD (desc, version, filename);
940 CHECK_PLUGIN_DESC_FIELD (desc, license, filename);
941 CHECK_PLUGIN_DESC_FIELD (desc, source, filename);
942 CHECK_PLUGIN_DESC_FIELD (desc, package, filename);
943 CHECK_PLUGIN_DESC_FIELD (desc, origin, filename);
945 if (desc->name != NULL && desc->name[0] == '"') {
946 g_warning ("Invalid plugin name '%s' - fix your GST_PLUGIN_DEFINE "
947 "(remove quotes around plugin name)", desc->name);
950 if (desc->release_datetime != NULL &&
951 !check_release_datetime (desc->release_datetime)) {
952 g_warning ("GstPluginDesc for '%s' has invalid datetime '%s'",
953 filename, desc->release_datetime);
954 g_set_error (error, GST_PLUGIN_ERROR, GST_PLUGIN_ERROR_MODULE,
955 "Plugin %s has invalid plugin description field 'release_datetime'",
961 GST_LOG ("Plugin %p for file \"%s\" prepared, calling entry function...",
964 /* this is where we load the actual .so, so let's trap SIGSEGV */
965 _gst_plugin_fault_handler_setup ();
966 _gst_plugin_fault_handler_filename = plugin->filename;
968 GST_LOG ("Plugin %p for file \"%s\" prepared, registering...",
971 if (!gst_plugin_register_func (plugin, desc, NULL)) {
972 /* remove signal handler */
973 _gst_plugin_fault_handler_restore ();
974 GST_DEBUG ("gst_plugin_register_func failed for plugin \"%s\"", filename);
978 GST_PLUGIN_ERROR_MODULE,
979 "File \"%s\" appears to be a GStreamer plugin, but it failed to initialize",
984 /* remove signal handler */
985 _gst_plugin_fault_handler_restore ();
986 _gst_plugin_fault_handler_filename = NULL;
987 GST_INFO ("plugin \"%s\" loaded", plugin->filename);
990 gst_object_ref (plugin);
991 gst_registry_add_plugin (registry, plugin);
994 g_mutex_unlock (&gst_plugin_loading_mutex);
1000 gst_object_unref (plugin);
1001 g_mutex_unlock (&gst_plugin_loading_mutex);
1007 gst_plugin_desc_copy (GstPluginDesc * dest, const GstPluginDesc * src)
1009 dest->major_version = src->major_version;
1010 dest->minor_version = src->minor_version;
1011 dest->name = g_intern_string (src->name);
1012 dest->description = g_intern_string (src->description);
1013 dest->plugin_init = src->plugin_init;
1014 dest->version = g_intern_string (src->version);
1015 dest->license = g_intern_string (src->license);
1016 dest->source = g_intern_string (src->source);
1017 dest->package = g_intern_string (src->package);
1018 dest->origin = g_intern_string (src->origin);
1019 dest->release_datetime = g_intern_string (src->release_datetime);
1023 * gst_plugin_get_name:
1024 * @plugin: plugin to get the name of
1026 * Get the short name of the plugin
1028 * Returns: the name of the plugin
1031 gst_plugin_get_name (GstPlugin * plugin)
1033 g_return_val_if_fail (plugin != NULL, NULL);
1035 return plugin->desc.name;
1039 * gst_plugin_get_description:
1040 * @plugin: plugin to get long name of
1042 * Get the long descriptive name of the plugin
1044 * Returns: the long name of the plugin
1047 gst_plugin_get_description (GstPlugin * plugin)
1049 g_return_val_if_fail (plugin != NULL, NULL);
1051 return plugin->desc.description;
1055 * gst_plugin_get_filename:
1056 * @plugin: plugin to get the filename of
1058 * get the filename of the plugin
1060 * Returns: (type filename) (nullable): the filename of the plugin
1063 gst_plugin_get_filename (GstPlugin * plugin)
1065 g_return_val_if_fail (plugin != NULL, NULL);
1067 return plugin->filename;
1071 * gst_plugin_get_version:
1072 * @plugin: plugin to get the version of
1074 * get the version of the plugin
1076 * Returns: the version of the plugin
1079 gst_plugin_get_version (GstPlugin * plugin)
1081 g_return_val_if_fail (plugin != NULL, NULL);
1083 return plugin->desc.version;
1087 * gst_plugin_get_license:
1088 * @plugin: plugin to get the license of
1090 * get the license of the plugin
1092 * Returns: the license of the plugin
1095 gst_plugin_get_license (GstPlugin * plugin)
1097 g_return_val_if_fail (plugin != NULL, NULL);
1099 return plugin->desc.license;
1103 * gst_plugin_get_source:
1104 * @plugin: plugin to get the source of
1106 * get the source module the plugin belongs to.
1108 * Returns: the source of the plugin
1111 gst_plugin_get_source (GstPlugin * plugin)
1113 g_return_val_if_fail (plugin != NULL, NULL);
1115 return plugin->desc.source;
1119 * gst_plugin_get_package:
1120 * @plugin: plugin to get the package of
1122 * get the package the plugin belongs to.
1124 * Returns: the package of the plugin
1127 gst_plugin_get_package (GstPlugin * plugin)
1129 g_return_val_if_fail (plugin != NULL, NULL);
1131 return plugin->desc.package;
1135 * gst_plugin_get_origin:
1136 * @plugin: plugin to get the origin of
1138 * get the URL where the plugin comes from
1140 * Returns: the origin of the plugin
1143 gst_plugin_get_origin (GstPlugin * plugin)
1145 g_return_val_if_fail (plugin != NULL, NULL);
1147 return plugin->desc.origin;
1151 * gst_plugin_get_release_date_string:
1152 * @plugin: plugin to get the release date of
1154 * Get the release date (and possibly time) in form of a string, if available.
1156 * For normal GStreamer plugin releases this will usually just be a date in
1157 * the form of "YYYY-MM-DD", while pre-releases and builds from git may contain
1158 * a time component after the date as well, in which case the string will be
1159 * formatted like "YYYY-MM-DDTHH:MMZ" (e.g. "2012-04-30T09:30Z").
1161 * There may be plugins that do not have a valid release date set on them.
1163 * Returns: (nullable): the date string of the plugin, or %NULL if not
1167 gst_plugin_get_release_date_string (GstPlugin * plugin)
1169 g_return_val_if_fail (plugin != NULL, NULL);
1171 return plugin->desc.release_datetime;
1175 * gst_plugin_is_loaded:
1176 * @plugin: plugin to query
1178 * queries if the plugin is loaded into memory
1180 * Returns: %TRUE is loaded, %FALSE otherwise
1183 gst_plugin_is_loaded (GstPlugin * plugin)
1185 g_return_val_if_fail (plugin != NULL, FALSE);
1187 return (plugin->module != NULL || plugin->filename == NULL);
1191 * gst_plugin_get_cache_data:
1194 * Gets the plugin specific data cache. If it is %NULL there is no cached data
1195 * stored. This is the case when the registry is getting rebuilt.
1197 * Returns: (transfer none) (nullable): The cached data as a
1198 * #GstStructure or %NULL.
1200 const GstStructure *
1201 gst_plugin_get_cache_data (GstPlugin * plugin)
1203 g_return_val_if_fail (GST_IS_PLUGIN (plugin), NULL);
1205 return plugin->priv->cache_data;
1209 * gst_plugin_set_cache_data:
1211 * @cache_data: (transfer full): a structure containing the data to cache
1213 * Adds plugin specific data to cache. Passes the ownership of the structure to
1216 * The cache is flushed every time the registry is rebuilt.
1219 gst_plugin_set_cache_data (GstPlugin * plugin, GstStructure * cache_data)
1221 g_return_if_fail (GST_IS_PLUGIN (plugin));
1222 g_return_if_fail (GST_IS_STRUCTURE (cache_data));
1224 if (plugin->priv->cache_data) {
1225 gst_structure_free (plugin->priv->cache_data);
1227 plugin->priv->cache_data = cache_data;
1232 * gst_plugin_feature_list:
1233 * @plugin: plugin to query
1234 * @filter: the filter to use
1235 * @first: only return first match
1236 * @user_data: user data passed to the filter function
1238 * Runs a filter against all plugin features and returns a GList with
1239 * the results. If the first flag is set, only the first match is
1240 * returned (as a list with a single object).
1242 * Returns: a GList of features, g_list_free after use.
1245 gst_plugin_feature_filter (GstPlugin * plugin,
1246 GstPluginFeatureFilter filter, gboolean first, gpointer user_data)
1251 list = gst_filter_run (plugin->features, (GstFilterFunc) filter, first,
1253 for (g = list; g; g = g->next) {
1254 gst_object_ref (plugin);
1262 GstPluginFeatureFilter filter;
1270 _feature_filter (GstPlugin * plugin, gpointer user_data)
1273 FeatureFilterData *data = (FeatureFilterData *) user_data;
1275 result = gst_plugin_feature_filter (plugin, data->filter, data->first,
1278 data->result = g_list_concat (data->result, result);
1285 * gst_plugin_list_feature_filter:
1286 * @list: a #GList of plugins to query
1287 * @filter: the filter function to use
1288 * @first: only return first match
1289 * @user_data: user data passed to the filter function
1291 * Runs a filter against all plugin features of the plugins in the given
1292 * list and returns a GList with the results.
1293 * If the first flag is set, only the first match is
1294 * returned (as a list with a single object).
1296 * Returns: a GList of features, g_list_free after use.
1299 gst_plugin_list_feature_filter (GList * list,
1300 GstPluginFeatureFilter filter, gboolean first, gpointer user_data)
1302 FeatureFilterData data;
1305 data.filter = filter;
1307 data.user_data = user_data;
1310 result = gst_filter_run (list, (GstFilterFunc) _feature_filter, first, &data);
1311 g_list_free (result);
1317 * gst_plugin_find_feature:
1318 * @plugin: plugin to get the feature from
1319 * @name: The name of the feature to find
1320 * @type: The type of the feature to find
1322 * Find a feature of the given name and type in the given plugin.
1324 * Returns: a GstPluginFeature or %NULL if the feature was not found.
1327 gst_plugin_find_feature (GstPlugin * plugin, const gchar * name, GType type)
1330 GstPluginFeature *result = NULL;
1331 GstTypeNameData data;
1333 g_return_val_if_fail (name != NULL, NULL);
1338 walk = gst_filter_run (plugin->features,
1339 (GstFilterFunc) gst_plugin_feature_type_name_filter, TRUE, &data);
1342 result = GST_PLUGIN_FEATURE (walk->data);
1344 gst_object_ref (result);
1345 gst_plugin_feature_list_free (walk);
1354 gst_plugin_feature_name_filter (GstPluginFeature * feature, const gchar * name)
1356 return !strcmp (name, GST_PLUGIN_FEATURE_NAME (feature));
1362 * gst_plugin_find_feature_by_name:
1363 * @plugin: plugin to get the feature from
1364 * @name: The name of the feature to find
1366 * Find a feature of the given name in the given plugin.
1368 * Returns: a GstPluginFeature or %NULL if the feature was not found.
1371 gst_plugin_find_feature_by_name (GstPlugin * plugin, const gchar * name)
1374 GstPluginFeature *result = NULL;
1376 g_return_val_if_fail (name != NULL, NULL);
1378 walk = gst_filter_run (plugin->features,
1379 (GstFilterFunc) gst_plugin_feature_name_filter, TRUE, (void *) name);
1382 result = GST_PLUGIN_FEATURE (walk->data);
1384 gst_object_ref (result);
1385 gst_plugin_feature_list_free (walk);
1393 * gst_plugin_load_by_name:
1394 * @name: name of plugin to load
1396 * Load the named plugin. Refs the plugin.
1398 * Returns: (transfer full) (nullable): a reference to a loaded plugin, or
1402 gst_plugin_load_by_name (const gchar * name)
1404 GstPlugin *plugin, *newplugin;
1405 GError *error = NULL;
1407 GST_DEBUG ("looking up plugin %s in default registry", name);
1408 plugin = gst_registry_find_plugin (gst_registry_get (), name);
1410 GST_DEBUG ("loading plugin %s from file %s", name, plugin->filename);
1411 newplugin = gst_plugin_load_file (plugin->filename, &error);
1412 gst_object_unref (plugin);
1415 GST_WARNING ("load_plugin error: %s", error->message);
1416 g_error_free (error);
1419 /* newplugin was reffed by load_file */
1423 GST_DEBUG ("Could not find plugin %s in registry", name);
1429 * @plugin: (transfer none): plugin to load
1431 * Loads @plugin. Note that the *return value* is the loaded plugin; @plugin is
1432 * untouched. The normal use pattern of this function goes like this:
1435 * GstPlugin *loaded_plugin;
1436 * loaded_plugin = gst_plugin_load (plugin);
1437 * // presumably, we're no longer interested in the potentially-unloaded plugin
1438 * gst_object_unref (plugin);
1439 * plugin = loaded_plugin;
1442 * Returns: (transfer full) (nullable): a reference to a loaded plugin, or
1446 gst_plugin_load (GstPlugin * plugin)
1448 GError *error = NULL;
1449 GstPlugin *newplugin;
1451 if (gst_plugin_is_loaded (plugin)) {
1452 return gst_object_ref (plugin);
1455 if (!(newplugin = gst_plugin_load_file (plugin->filename, &error)))
1462 GST_WARNING ("load_plugin error: %s", error->message);
1463 g_error_free (error);
1469 * gst_plugin_list_free:
1470 * @list: (transfer full) (element-type Gst.Plugin): list of #GstPlugin
1472 * Unrefs each member of @list, then frees the list.
1475 gst_plugin_list_free (GList * list)
1479 for (g = list; g; g = g->next) {
1480 gst_object_unref (GST_PLUGIN_CAST (g->data));
1485 /* ===== plugin dependencies ===== */
1488 * ENV + xyz where ENV can contain multiple values separated by SEPARATOR
1489 * xyz may be "" (if ENV contains path to file rather than dir)
1490 * ENV + *xyz same as above, but xyz acts as suffix filter
1491 * ENV + xyz* same as above, but xyz acts as prefix filter (is this needed?)
1492 * ENV + *xyz* same as above, but xyz acts as strstr filter (is this needed?)
1494 * same as above, with additional paths hard-coded at compile-time:
1495 * - only check paths + ... if ENV is not set or yields not paths
1496 * - always check paths + ... in addition to ENV
1498 * When user specifies set of environment variables, he/she may also use e.g.
1499 * "HOME/.mystuff/plugins", and we'll expand the content of $HOME with the
1503 /* we store in registry:
1506 * - environment variables (array of strings)
1507 * - last hash of env variable contents (uint) (so we can avoid doing stats
1508 * if one of the env vars has changed; premature optimisation galore)
1509 * - hard-coded paths (array of strings)
1510 * - xyz filename/suffix/prefix strings (array of strings)
1512 * - last hash of file/dir stats (int)
1514 * (= struct GstPluginDep)
1518 gst_plugin_ext_dep_get_env_vars_hash (GstPlugin * plugin, GstPluginDep * dep)
1523 /* there's no deeper logic to what we do here; all we want to know (when
1524 * checking if the plugin needs to be rescanned) is whether the content of
1525 * one of the environment variables in the list is different from when it
1526 * was last scanned */
1528 for (e = dep->env_vars; e != NULL && *e != NULL; ++e) {
1532 /* order matters: "val",NULL needs to yield a different hash than
1533 * NULL,"val", so do a shift here whether the var is set or not */
1536 /* want environment variable at beginning of string */
1537 if (!g_ascii_isalnum (**e)) {
1538 GST_WARNING_OBJECT (plugin, "string prefix is not a valid environment "
1539 "variable string: %s", *e);
1543 /* user is allowed to specify e.g. "HOME/.pitivi/plugins" */
1544 g_strlcpy (env_var, *e, sizeof (env_var));
1545 g_strdelimit (env_var, "/\\", '\0');
1547 if ((val = g_getenv (env_var)))
1548 hash += g_str_hash (val);
1555 _priv_plugin_deps_env_vars_changed (GstPlugin * plugin)
1559 for (l = plugin->priv->deps; l != NULL; l = l->next) {
1560 GstPluginDep *dep = l->data;
1562 if (dep->env_hash != gst_plugin_ext_dep_get_env_vars_hash (plugin, dep))
1570 gst_plugin_ext_dep_extract_env_vars_paths (GstPlugin * plugin,
1571 GstPluginDep * dep, GQueue * paths)
1575 for (evars = dep->env_vars; evars != NULL && *evars != NULL; ++evars) {
1579 /* want environment variable at beginning of string */
1580 if (!g_ascii_isalnum (**evars)) {
1581 GST_WARNING_OBJECT (plugin, "string prefix is not a valid environment "
1582 "variable string: %s", *evars);
1586 /* user is allowed to specify e.g. "HOME/.pitivi/plugins", which we want to
1587 * split into the env_var name component and the path component */
1588 components = g_strsplit_set (*evars, "/\\", 2);
1589 g_assert (components != NULL);
1591 e = g_getenv (components[0]);
1592 GST_LOG_OBJECT (plugin, "expanding %s = '%s' (path suffix: %s)",
1593 components[0], GST_STR_NULL (e), GST_STR_NULL (components[1]));
1595 if (components[1] != NULL) {
1596 g_strdelimit (components[1], "/\\", G_DIR_SEPARATOR);
1599 if (e != NULL && *e != '\0') {
1603 arr = g_strsplit (e, G_SEARCHPATH_SEPARATOR_S, -1);
1605 for (i = 0; arr != NULL && arr[i] != NULL; ++i) {
1608 if (!g_path_is_absolute (arr[i])) {
1609 GST_INFO_OBJECT (plugin, "ignoring environment variable content '%s'"
1610 ": either not an absolute path or not a path at all", arr[i]);
1614 if (components[1] != NULL) {
1615 full_path = g_build_filename (arr[i], components[1], NULL);
1617 full_path = g_strdup (arr[i]);
1620 if (!g_queue_find_custom (paths, full_path, (GCompareFunc) strcmp)) {
1621 GST_LOG_OBJECT (plugin, "path: '%s'", full_path);
1622 g_queue_push_tail (paths, full_path);
1625 GST_LOG_OBJECT (plugin, "path: '%s' (duplicate,ignoring)", full_path);
1633 g_strfreev (components);
1636 GST_LOG_OBJECT (plugin, "Extracted %d paths from environment", paths->length);
1640 gst_plugin_ext_dep_get_hash_from_stat_entry (GStatBuf * s)
1643 if (!(s->st_mode & (S_IFDIR | S_IFREG | S_IFBLK | S_IFCHR)))
1645 /* MSVC does not have S_IFBLK */
1646 if (!(s->st_mode & (S_IFDIR | S_IFREG | S_IFCHR)))
1650 /* completely random formula */
1651 return ((s->st_size << 3) + (s->st_mtime << 5)) ^ s->st_ctime;
1655 gst_plugin_ext_dep_direntry_matches (GstPlugin * plugin, const gchar * entry,
1656 const gchar ** filenames, GstPluginDependencyFlags flags)
1658 /* no filenames specified, match all entries for now (could probably
1659 * optimise by just taking the dir stat hash or so) */
1660 if (filenames == NULL || *filenames == NULL || **filenames == '\0')
1663 while (*filenames != NULL) {
1665 if (((flags & GST_PLUGIN_DEPENDENCY_FLAG_FILE_NAME_IS_SUFFIX)) &&
1666 g_str_has_suffix (entry, *filenames)) {
1668 } else if (((flags & GST_PLUGIN_DEPENDENCY_FLAG_FILE_NAME_IS_PREFIX)) &&
1669 g_str_has_prefix (entry, *filenames)) {
1671 /* else it's an exact match that's needed */
1672 } else if (strcmp (entry, *filenames) == 0) {
1675 GST_LOG ("%s does not match %s, flags=0x%04x", entry, *filenames, flags);
1682 gst_plugin_ext_dep_scan_dir_and_match_names (GstPlugin * plugin,
1683 const gchar * path, const gchar ** filenames,
1684 GstPluginDependencyFlags flags, int depth)
1687 gboolean recurse_dirs;
1692 recurse_dirs = ! !(flags & GST_PLUGIN_DEPENDENCY_FLAG_RECURSE);
1694 dir = g_dir_open (path, 0, &err);
1696 GST_DEBUG_OBJECT (plugin, "g_dir_open(%s) failed: %s", path, err->message);
1701 /* FIXME: we're assuming here that we always get the directory entries in
1702 * the same order, and not in a random order */
1703 while ((entry = g_dir_read_name (dir))) {
1704 gboolean have_match;
1710 gst_plugin_ext_dep_direntry_matches (plugin, entry, filenames, flags);
1712 /* avoid the stat if possible */
1713 if (!have_match && !recurse_dirs)
1716 full_path = g_build_filename (path, entry, NULL);
1717 if (g_stat (full_path, &s) < 0) {
1718 fhash = (guint) - 1;
1719 GST_LOG_OBJECT (plugin, "stat: %s (error: %s)", full_path,
1720 g_strerror (errno));
1721 } else if (have_match) {
1722 fhash = gst_plugin_ext_dep_get_hash_from_stat_entry (&s);
1723 GST_LOG_OBJECT (plugin, "stat: %s (result: %u)", full_path, fhash);
1724 } else if ((s.st_mode & (S_IFDIR))) {
1725 fhash = gst_plugin_ext_dep_scan_dir_and_match_names (plugin, full_path,
1726 filenames, flags, depth + 1);
1728 /* it's not a name match, we want to recurse, but it's not a directory */
1733 hash = hash + fhash;
1742 gst_plugin_ext_dep_scan_path_with_filenames (GstPlugin * plugin,
1743 const gchar * path, const gchar ** filenames,
1744 GstPluginDependencyFlags flags)
1746 const gchar *empty_filenames[] = { "", NULL };
1747 gboolean recurse_into_dirs, partial_names = FALSE;
1750 /* to avoid special-casing below (FIXME?) */
1751 if (filenames == NULL || *filenames == NULL)
1752 filenames = empty_filenames;
1754 recurse_into_dirs = ! !(flags & GST_PLUGIN_DEPENDENCY_FLAG_RECURSE);
1756 if ((flags & GST_PLUGIN_DEPENDENCY_FLAG_FILE_NAME_IS_SUFFIX) ||
1757 (flags & GST_PLUGIN_DEPENDENCY_FLAG_FILE_NAME_IS_PREFIX))
1758 partial_names = TRUE;
1760 /* if we can construct the exact paths to check with the data we have, just
1761 * stat them one by one; this is more efficient than opening the directory
1762 * and going through each entry to see if it matches one of our filenames. */
1763 if (!recurse_into_dirs && !partial_names) {
1764 for (i = 0; filenames[i] != NULL; ++i) {
1769 full_path = g_build_filename (path, filenames[i], NULL);
1770 if (g_stat (full_path, &s) < 0) {
1771 fhash = (guint) - 1;
1772 GST_LOG_OBJECT (plugin, "stat: %s (error: %s)", full_path,
1773 g_strerror (errno));
1775 fhash = gst_plugin_ext_dep_get_hash_from_stat_entry (&s);
1776 GST_LOG_OBJECT (plugin, "stat: %s (result: %08x)", full_path, fhash);
1782 hash = gst_plugin_ext_dep_scan_dir_and_match_names (plugin, path,
1783 filenames, flags, 0);
1790 gst_plugin_ext_dep_get_stat_hash (GstPlugin * plugin, GstPluginDep * dep)
1792 gboolean paths_are_default_only;
1793 gboolean paths_are_relative_to_exe;
1794 GQueue scan_paths = G_QUEUE_INIT;
1795 guint scan_hash = 0;
1798 GST_LOG_OBJECT (plugin, "start");
1800 paths_are_default_only =
1801 dep->flags & GST_PLUGIN_DEPENDENCY_FLAG_PATHS_ARE_DEFAULT_ONLY;
1802 paths_are_relative_to_exe =
1803 dep->flags & GST_PLUGIN_DEPENDENCY_FLAG_PATHS_ARE_RELATIVE_TO_EXE;
1805 gst_plugin_ext_dep_extract_env_vars_paths (plugin, dep, &scan_paths);
1807 if (g_queue_is_empty (&scan_paths) || !paths_are_default_only) {
1810 for (paths = dep->paths; paths != NULL && *paths != NULL; ++paths) {
1811 const gchar *path = *paths;
1814 if (paths_are_relative_to_exe && !g_path_is_absolute (path)) {
1817 if (!_gst_executable_path) {
1818 GST_FIXME_OBJECT (plugin,
1819 "Path dependency %s relative to executable path but could not retrieve executable path",
1823 appdir = g_path_get_dirname (_gst_executable_path);
1824 full_path = g_build_filename (appdir, path, NULL);
1827 full_path = g_strdup (path);
1830 if (!g_queue_find_custom (&scan_paths, full_path, (GCompareFunc) strcmp)) {
1831 GST_LOG_OBJECT (plugin, "path: '%s'", full_path);
1832 g_queue_push_tail (&scan_paths, full_path);
1834 GST_LOG_OBJECT (plugin, "path: '%s' (duplicate, ignoring)", full_path);
1840 while ((path = g_queue_pop_head (&scan_paths))) {
1841 scan_hash += gst_plugin_ext_dep_scan_path_with_filenames (plugin, path,
1842 (const gchar **) dep->names, dep->flags);
1846 GST_LOG_OBJECT (plugin, "done, scan_hash: %08x", scan_hash);
1851 _priv_plugin_deps_files_changed (GstPlugin * plugin)
1855 for (l = plugin->priv->deps; l != NULL; l = l->next) {
1856 GstPluginDep *dep = l->data;
1858 if (dep->stat_hash != gst_plugin_ext_dep_get_stat_hash (plugin, dep))
1866 gst_plugin_ext_dep_free (GstPluginDep * dep)
1868 g_strfreev (dep->env_vars);
1869 g_strfreev (dep->paths);
1870 g_strfreev (dep->names);
1871 g_slice_free (GstPluginDep, dep);
1875 gst_plugin_ext_dep_strv_equal (gchar ** arr1, gchar ** arr2)
1879 if (arr1 == NULL || arr2 == NULL)
1881 for (; *arr1 != NULL && *arr2 != NULL; ++arr1, ++arr2) {
1882 if (strcmp (*arr1, *arr2) != 0)
1885 return (*arr1 == *arr2);
1889 gst_plugin_ext_dep_equals (GstPluginDep * dep, const gchar ** env_vars,
1890 const gchar ** paths, const gchar ** names, GstPluginDependencyFlags flags)
1892 if (dep->flags != flags)
1895 return gst_plugin_ext_dep_strv_equal (dep->env_vars, (gchar **) env_vars) &&
1896 gst_plugin_ext_dep_strv_equal (dep->paths, (gchar **) paths) &&
1897 gst_plugin_ext_dep_strv_equal (dep->names, (gchar **) names);
1901 * gst_plugin_add_dependency:
1902 * @plugin: a #GstPlugin
1903 * @env_vars: (allow-none) (array zero-terminated=1): %NULL-terminated array of environment variables affecting the
1904 * feature set of the plugin (e.g. an environment variable containing
1905 * paths where to look for additional modules/plugins of a library),
1906 * or %NULL. Environment variable names may be followed by a path component
1907 * which will be added to the content of the environment variable, e.g.
1908 * "HOME/.mystuff/plugins".
1909 * @paths: (allow-none) (array zero-terminated=1): %NULL-terminated array of directories/paths where dependent files
1911 * @names: (allow-none) (array zero-terminated=1): %NULL-terminated array of file names (or file name suffixes,
1912 * depending on @flags) to be used in combination with the paths from
1913 * @paths and/or the paths extracted from the environment variables in
1914 * @env_vars, or %NULL.
1915 * @flags: optional flags, or #GST_PLUGIN_DEPENDENCY_FLAG_NONE
1917 * Make GStreamer aware of external dependencies which affect the feature
1918 * set of this plugin (ie. the elements or typefinders associated with it).
1920 * GStreamer will re-inspect plugins with external dependencies whenever any
1921 * of the external dependencies change. This is useful for plugins which wrap
1922 * other plugin systems, e.g. a plugin which wraps a plugin-based visualisation
1923 * library and makes visualisations available as GStreamer elements, or a
1924 * codec loader which exposes elements and/or caps dependent on what external
1925 * codec libraries are currently installed.
1928 gst_plugin_add_dependency (GstPlugin * plugin, const gchar ** env_vars,
1929 const gchar ** paths, const gchar ** names, GstPluginDependencyFlags flags)
1934 g_return_if_fail (GST_IS_PLUGIN (plugin));
1936 if ((env_vars == NULL || env_vars[0] == NULL) &&
1937 (paths == NULL || paths[0] == NULL)) {
1938 GST_DEBUG_OBJECT (plugin,
1939 "plugin registered empty dependency set. Ignoring");
1943 for (l = plugin->priv->deps; l != NULL; l = l->next) {
1944 if (gst_plugin_ext_dep_equals (l->data, env_vars, paths, names, flags)) {
1945 GST_LOG_OBJECT (plugin, "dependency already registered");
1950 dep = g_slice_new (GstPluginDep);
1952 dep->env_vars = g_strdupv ((gchar **) env_vars);
1953 dep->paths = g_strdupv ((gchar **) paths);
1954 dep->names = g_strdupv ((gchar **) names);
1957 dep->env_hash = gst_plugin_ext_dep_get_env_vars_hash (plugin, dep);
1958 dep->stat_hash = gst_plugin_ext_dep_get_stat_hash (plugin, dep);
1960 plugin->priv->deps = g_list_append (plugin->priv->deps, dep);
1962 GST_DEBUG_OBJECT (plugin, "added dependency:");
1963 for (; env_vars != NULL && *env_vars != NULL; ++env_vars)
1964 GST_DEBUG_OBJECT (plugin, " evar: %s", *env_vars);
1965 for (; paths != NULL && *paths != NULL; ++paths)
1966 GST_DEBUG_OBJECT (plugin, " path: %s", *paths);
1967 for (; names != NULL && *names != NULL; ++names)
1968 GST_DEBUG_OBJECT (plugin, " name: %s", *names);
1972 * gst_plugin_add_dependency_simple:
1973 * @plugin: the #GstPlugin
1974 * @env_vars: (allow-none): one or more environment variables (separated by ':', ';' or ','),
1975 * or %NULL. Environment variable names may be followed by a path component
1976 * which will be added to the content of the environment variable, e.g.
1977 * "HOME/.mystuff/plugins:MYSTUFF_PLUGINS_PATH"
1978 * @paths: (allow-none): one ore more directory paths (separated by ':' or ';' or ','),
1979 * or %NULL. Example: "/usr/lib/mystuff/plugins"
1980 * @names: (allow-none): one or more file names or file name suffixes (separated by commas),
1982 * @flags: optional flags, or #GST_PLUGIN_DEPENDENCY_FLAG_NONE
1984 * Make GStreamer aware of external dependencies which affect the feature
1985 * set of this plugin (ie. the elements or typefinders associated with it).
1987 * GStreamer will re-inspect plugins with external dependencies whenever any
1988 * of the external dependencies change. This is useful for plugins which wrap
1989 * other plugin systems, e.g. a plugin which wraps a plugin-based visualisation
1990 * library and makes visualisations available as GStreamer elements, or a
1991 * codec loader which exposes elements and/or caps dependent on what external
1992 * codec libraries are currently installed.
1994 * Convenience wrapper function for gst_plugin_add_dependency() which
1995 * takes simple strings as arguments instead of string arrays, with multiple
1996 * arguments separated by predefined delimiters (see above).
1999 gst_plugin_add_dependency_simple (GstPlugin * plugin,
2000 const gchar * env_vars, const gchar * paths, const gchar * names,
2001 GstPluginDependencyFlags flags)
2003 gchar **a_evars = NULL;
2004 gchar **a_paths = NULL;
2005 gchar **a_names = NULL;
2008 a_evars = g_strsplit_set (env_vars, ":;,", -1);
2010 a_paths = g_strsplit_set (paths, ":;,", -1);
2012 a_names = g_strsplit_set (names, ",", -1);
2014 gst_plugin_add_dependency (plugin, (const gchar **) a_evars,
2015 (const gchar **) a_paths, (const gchar **) a_names, flags);
2018 g_strfreev (a_evars);
2020 g_strfreev (a_paths);
2022 g_strfreev (a_names);