2002-04-12 09:53:00 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
* 2000 Wim Taymans <wtay@chello.be>
|
2005-09-15 00:13:26 +00:00
|
|
|
* 2005 David A. Schleef <ds@schleef.org>
|
2002-04-12 09:53:00 +00:00
|
|
|
*
|
|
|
|
* gstregistry.c: handle registry
|
2004-03-15 15:16:04 +00:00
|
|
|
*
|
2002-04-12 09:53:00 +00:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
2005-10-15 16:01:57 +00:00
|
|
|
|
2005-09-02 16:17:23 +00:00
|
|
|
/**
|
|
|
|
* SECTION:gstregistry
|
|
|
|
* @short_description: Abstract base class for management of #GstPlugin objects
|
|
|
|
* @see_also: #GstPlugin, #GstPluginFeature
|
|
|
|
*
|
|
|
|
* One registry holds the metadata of a set of plugins.
|
2007-05-11 08:29:10 +00:00
|
|
|
*
|
2006-07-26 20:30:55 +00:00
|
|
|
* <emphasis role="bold">Design:</emphasis>
|
2005-09-15 00:13:26 +00:00
|
|
|
*
|
2006-07-26 20:30:55 +00:00
|
|
|
* The #GstRegistry object is a list of plugins and some functions for dealing
|
2009-11-25 14:44:05 +00:00
|
|
|
* with them. Each #GstPlugin is matched 1-1 with a file on disk, and may or may
|
2006-07-26 20:30:55 +00:00
|
|
|
* not be loaded at a given time. There may be multiple #GstRegistry objects,
|
|
|
|
* but the "default registry" is the only object that has any meaning to the
|
|
|
|
* core.
|
2006-01-17 12:08:43 +00:00
|
|
|
*
|
2010-06-09 09:06:52 +00:00
|
|
|
* The registry file is actually a cache of plugin information. This is
|
2006-01-17 12:08:43 +00:00
|
|
|
* unlike versions prior to 0.10, where the registry file was the primary source
|
|
|
|
* of plugin information, and was created by the gst-register command.
|
|
|
|
*
|
|
|
|
* The primary source, at all times, of plugin information is each plugin file
|
|
|
|
* itself. Thus, if an application wants information about a particular plugin,
|
|
|
|
* or wants to search for a feature that satisfies given criteria, the primary
|
|
|
|
* means of doing so is to load every plugin and look at the resulting
|
|
|
|
* information that is gathered in the default registry. Clearly, this is a time
|
2010-06-09 09:06:52 +00:00
|
|
|
* consuming process, so we cache information in the registry file. The format
|
|
|
|
* and location of the cache file is internal to gstreamer.
|
2006-01-17 12:08:43 +00:00
|
|
|
*
|
2010-06-09 09:06:52 +00:00
|
|
|
* On startup, plugins are searched for in the plugin search path. The following
|
|
|
|
* locations are checked in this order:
|
|
|
|
* <itemizedlist>
|
|
|
|
* <listitem>
|
|
|
|
* <para>location from --gst-plugin-path commandline option.</para>
|
|
|
|
* </listitem>
|
|
|
|
* <listitem>
|
|
|
|
* <para>the GST_PLUGIN_PATH environment variable.</para>
|
|
|
|
* </listitem>
|
|
|
|
* <listitem>
|
|
|
|
* <para>the GST_PLUGIN_SYSTEM_PATH environment variable.</para>
|
|
|
|
* </listitem>
|
|
|
|
* <listitem>
|
|
|
|
* <para>default locations (if GST_PLUGIN_SYSTEM_PATH is not set). Those
|
|
|
|
* default locations are:
|
|
|
|
* <filename>~/.gstreamer-$GST_MAJORMINOR/plugins/</filename>
|
|
|
|
* and <filename>$prefix/libs/gstreamer-$GST_MAJORMINOR/</filename>.
|
|
|
|
* </para>
|
|
|
|
* </listitem>
|
|
|
|
* </itemizedlist>
|
|
|
|
* The registry cache file is loaded from
|
|
|
|
* <filename>~/.gstreamer-$GST_MAJORMINOR/registry-$ARCH.bin</filename> or the
|
|
|
|
* file listed in the GST_REGISTRY env var. One reason to change the registry
|
|
|
|
* location is for testing.
|
2006-01-17 12:08:43 +00:00
|
|
|
*
|
|
|
|
* For each plugin that is found in the plugin search path, there could be 3
|
|
|
|
* possibilities for cached information:
|
2006-07-26 20:30:55 +00:00
|
|
|
* <itemizedlist>
|
|
|
|
* <listitem>
|
|
|
|
* <para>the cache may not contain information about a given file.</para>
|
|
|
|
* </listitem>
|
|
|
|
* <listitem>
|
|
|
|
* <para>the cache may have stale information.</para>
|
|
|
|
* </listitem>
|
|
|
|
* <listitem>
|
|
|
|
* <para>the cache may have current information.</para>
|
|
|
|
* </listitem>
|
|
|
|
* </itemizedlist>
|
2005-09-15 00:13:26 +00:00
|
|
|
*
|
2006-01-17 12:08:43 +00:00
|
|
|
* In the first two cases, the plugin is loaded and the cache updated. In
|
|
|
|
* addition to these cases, the cache may have entries for plugins that are not
|
|
|
|
* relevant to the current process. These are marked as not available to the
|
|
|
|
* current process. If the cache is updated for whatever reason, it is marked
|
|
|
|
* dirty.
|
|
|
|
*
|
|
|
|
* A dirty cache is written out at the end of initialization. Each entry is
|
|
|
|
* checked to make sure the information is minimally valid. If not, the entry is
|
|
|
|
* simply dropped.
|
2005-09-15 00:13:26 +00:00
|
|
|
*
|
2006-07-26 20:30:55 +00:00
|
|
|
* <emphasis role="bold">Implementation notes:</emphasis>
|
2005-09-15 00:13:26 +00:00
|
|
|
*
|
2006-01-17 12:08:43 +00:00
|
|
|
* The "cache" and "default registry" are different concepts and can represent
|
|
|
|
* different sets of plugins. For various reasons, at init time, the cache is
|
|
|
|
* stored in the default registry, and plugins not relevant to the current
|
2006-07-26 20:30:55 +00:00
|
|
|
* process are marked with the %GST_PLUGIN_FLAG_CACHED bit. These plugins are
|
2006-01-17 12:08:43 +00:00
|
|
|
* removed at the end of intitialization.
|
2005-09-15 00:13:26 +00:00
|
|
|
*/
|
2005-06-29 12:25:05 +00:00
|
|
|
|
2006-07-26 20:30:55 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
2009-09-14 22:31:10 +00:00
|
|
|
#include "gstconfig.h"
|
2006-07-26 20:30:55 +00:00
|
|
|
#include "gst_private.h"
|
|
|
|
#include <glib.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2008-11-24 09:59:07 +00:00
|
|
|
/* For g_stat () */
|
|
|
|
#include <glib/gstdio.h>
|
2006-07-26 20:30:55 +00:00
|
|
|
|
|
|
|
#include "gstinfo.h"
|
2009-09-14 22:31:10 +00:00
|
|
|
#include "gsterror.h"
|
2006-07-26 20:30:55 +00:00
|
|
|
#include "gstregistry.h"
|
|
|
|
#include "gstmarshal.h"
|
|
|
|
#include "gstfilter.h"
|
|
|
|
|
2009-03-14 23:07:40 +00:00
|
|
|
#include "gstpluginloader.h"
|
|
|
|
|
2009-09-14 22:31:10 +00:00
|
|
|
#include "gst-i18n-lib.h"
|
|
|
|
|
2010-03-02 22:51:18 +00:00
|
|
|
#include "gst.h"
|
2010-07-16 16:53:38 +00:00
|
|
|
#include "glib-compat-private.h"
|
2009-10-21 07:45:47 +00:00
|
|
|
|
2009-11-06 12:42:57 +00:00
|
|
|
#ifdef G_OS_WIN32
|
|
|
|
#include <windows.h>
|
|
|
|
extern HMODULE _priv_gst_dll_handle;
|
|
|
|
#endif
|
2009-10-21 07:45:47 +00:00
|
|
|
|
2006-07-26 20:30:55 +00:00
|
|
|
#define GST_CAT_DEFAULT GST_CAT_REGISTRY
|
|
|
|
|
2009-10-24 08:05:59 +00:00
|
|
|
struct _GstRegistryPrivate
|
|
|
|
{
|
|
|
|
/* updated whenever the feature list changes */
|
|
|
|
guint32 cookie;
|
2009-10-21 07:45:47 +00:00
|
|
|
/* speedup for searching features */
|
|
|
|
GList *element_factory_list;
|
|
|
|
guint32 efl_cookie;
|
|
|
|
GList *typefind_factory_list;
|
|
|
|
guint32 tfl_cookie;
|
2009-10-24 08:05:59 +00:00
|
|
|
};
|
|
|
|
|
2007-05-11 08:29:10 +00:00
|
|
|
/* the one instance of the default registry and the mutex protecting the
|
2006-07-26 20:30:55 +00:00
|
|
|
* variable. */
|
|
|
|
static GStaticMutex _gst_registry_mutex = G_STATIC_MUTEX_INIT;
|
|
|
|
static GstRegistry *_gst_registry_default = NULL;
|
|
|
|
|
2009-09-14 22:31:10 +00:00
|
|
|
/* defaults */
|
|
|
|
#define DEFAULT_FORK TRUE
|
|
|
|
|
|
|
|
/* control the behaviour of registry rebuild */
|
|
|
|
static gboolean _gst_enable_registry_fork = DEFAULT_FORK;
|
|
|
|
/* List of plugins that need preloading/reloading after scanning registry */
|
|
|
|
extern GSList *_priv_gst_preload_plugins;
|
|
|
|
|
|
|
|
#ifndef GST_DISABLE_REGISTRY
|
|
|
|
/*set to TRUE when registry needn't to be updated */
|
|
|
|
gboolean _priv_gst_disable_registry_update = FALSE;
|
|
|
|
extern GList *_priv_gst_plugin_paths;
|
2009-03-14 23:07:40 +00:00
|
|
|
|
|
|
|
/* Set to TRUE when the registry cache should be disabled */
|
|
|
|
gboolean _gst_disable_registry_cache = FALSE;
|
2009-09-14 22:31:10 +00:00
|
|
|
#endif
|
|
|
|
|
2002-05-08 20:40:48 +00:00
|
|
|
/* Element signals and args */
|
2004-03-13 15:27:01 +00:00
|
|
|
enum
|
|
|
|
{
|
2002-05-08 20:40:48 +00:00
|
|
|
PLUGIN_ADDED,
|
2005-09-18 06:59:25 +00:00
|
|
|
FEATURE_ADDED,
|
2002-05-08 20:40:48 +00:00
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
2005-09-18 21:24:55 +00:00
|
|
|
static void gst_registry_finalize (GObject * object);
|
2002-05-08 20:40:48 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
static guint gst_registry_signals[LAST_SIGNAL] = { 0 };
|
2002-05-08 20:40:48 +00:00
|
|
|
|
2005-09-18 06:59:25 +00:00
|
|
|
static GstPluginFeature *gst_registry_lookup_feature_locked (GstRegistry *
|
|
|
|
registry, const char *name);
|
2009-10-21 01:39:11 +00:00
|
|
|
static GstPlugin *gst_registry_lookup_bn_locked (GstRegistry * registry,
|
|
|
|
const char *basename);
|
2005-09-15 23:51:24 +00:00
|
|
|
|
|
|
|
G_DEFINE_TYPE (GstRegistry, gst_registry, GST_TYPE_OBJECT);
|
2005-09-18 21:24:55 +00:00
|
|
|
static GstObjectClass *parent_class = NULL;
|
2002-05-08 20:40:48 +00:00
|
|
|
|
|
|
|
static void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_registry_class_init (GstRegistryClass * klass)
|
2002-05-08 20:40:48 +00:00
|
|
|
{
|
|
|
|
GObjectClass *gobject_class;
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
gobject_class = (GObjectClass *) klass;
|
2002-05-08 20:40:48 +00:00
|
|
|
|
2006-04-08 20:57:31 +00:00
|
|
|
parent_class = g_type_class_peek_parent (klass);
|
2009-10-24 08:05:59 +00:00
|
|
|
g_type_class_add_private (klass, sizeof (GstRegistryPrivate));
|
2005-09-18 21:24:55 +00:00
|
|
|
|
2007-01-27 18:44:11 +00:00
|
|
|
/**
|
|
|
|
* GstRegistry::plugin-added:
|
|
|
|
* @registry: the registry that emitted the signal
|
|
|
|
* @plugin: the plugin that has been added
|
|
|
|
*
|
|
|
|
* Signals that a plugin has been added to the registry (possibly
|
|
|
|
* replacing a previously-added one by the same name)
|
|
|
|
*/
|
2002-05-08 20:40:48 +00:00
|
|
|
gst_registry_signals[PLUGIN_ADDED] =
|
2004-03-13 15:27:01 +00:00
|
|
|
g_signal_new ("plugin-added", G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRegistryClass, plugin_added), NULL,
|
|
|
|
NULL, gst_marshal_VOID__POINTER, G_TYPE_NONE, 1, G_TYPE_POINTER);
|
2007-01-27 18:44:11 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GstRegistry::feature-added:
|
|
|
|
* @registry: the registry that emitted the signal
|
|
|
|
* @feature: the feature that has been added
|
|
|
|
*
|
|
|
|
* Signals that a feature has been added to the registry (possibly
|
|
|
|
* replacing a previously-added one by the same name)
|
|
|
|
*/
|
2005-09-18 06:59:25 +00:00
|
|
|
gst_registry_signals[FEATURE_ADDED] =
|
|
|
|
g_signal_new ("feature-added", G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRegistryClass, feature_added),
|
|
|
|
NULL, NULL, gst_marshal_VOID__POINTER, G_TYPE_NONE, 1, G_TYPE_POINTER);
|
2002-05-08 20:40:48 +00:00
|
|
|
|
2009-10-28 00:29:30 +00:00
|
|
|
gobject_class->finalize = gst_registry_finalize;
|
2002-05-08 20:40:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_registry_init (GstRegistry * registry)
|
2002-05-08 20:40:48 +00:00
|
|
|
{
|
2007-07-23 11:42:12 +00:00
|
|
|
registry->feature_hash = g_hash_table_new (g_str_hash, g_str_equal);
|
2009-10-21 03:28:54 +00:00
|
|
|
registry->basename_hash = g_hash_table_new (g_str_hash, g_str_equal);
|
2009-10-24 09:58:25 +00:00
|
|
|
registry->priv =
|
2009-10-24 08:05:59 +00:00
|
|
|
G_TYPE_INSTANCE_GET_PRIVATE (registry, GST_TYPE_REGISTRY,
|
|
|
|
GstRegistryPrivate);
|
2005-09-18 21:24:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_registry_finalize (GObject * object)
|
|
|
|
{
|
|
|
|
GstRegistry *registry = GST_REGISTRY (object);
|
|
|
|
GList *plugins, *p;
|
|
|
|
GList *features, *f;
|
|
|
|
|
|
|
|
plugins = registry->plugins;
|
|
|
|
registry->plugins = NULL;
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (registry, "registry finalize");
|
|
|
|
p = plugins;
|
|
|
|
while (p) {
|
|
|
|
GstPlugin *plugin = p->data;
|
|
|
|
|
|
|
|
if (plugin) {
|
2007-02-09 13:41:24 +00:00
|
|
|
GST_LOG_OBJECT (registry, "removing plugin %s",
|
2005-09-18 21:24:55 +00:00
|
|
|
gst_plugin_get_name (plugin));
|
gst/: Re-commit the registry changes, along with an extra fix:
Original commit message from CVS:
* gst/gst.c: (init_pre), (scan_and_update_registry),
(ensure_current_registry_nonforking),
(ensure_current_registry_forking), (ensure_current_registry),
(init_post), (gst_debug_help), (gst_deinit):
* gst/gst_private.h:
* gst/gstregistry.c: (gst_registry_finalize),
(gst_registry_remove_features_for_plugin_unlocked),
(gst_registry_remove_plugin), (gst_registry_scan_path_level),
(gst_registry_scan_path),
(_priv_gst_registry_remove_cache_plugins),
(_priv_gst_registry_cleanup):
* gst/gstregistry.h:
Re-commit the registry changes, along with an extra fix:
When a cached plugin is encountered at a different file path,
update the stored path in the registry cache so that the parent
process knows where it actually is now when it re-reads the registry
cache. Fixes the thing that broke distcheck with the previous commit.
* tests/check/Makefile.am:
Clean up files named 'core' too when running make clean.
* tests/examples/manual/Makefile.am:
Set up a registry path for running these tests, and clean it properly
for distcheck.
2006-09-28 14:00:43 +00:00
|
|
|
gst_object_unref (plugin);
|
2005-09-18 21:24:55 +00:00
|
|
|
}
|
|
|
|
p = g_list_next (p);
|
|
|
|
}
|
|
|
|
g_list_free (plugins);
|
|
|
|
|
|
|
|
features = registry->features;
|
|
|
|
registry->features = NULL;
|
2002-12-19 21:31:03 +00:00
|
|
|
|
2005-09-18 21:24:55 +00:00
|
|
|
f = features;
|
|
|
|
while (f) {
|
|
|
|
GstPluginFeature *feature = f->data;
|
|
|
|
|
|
|
|
if (feature) {
|
2007-02-09 13:41:24 +00:00
|
|
|
GST_LOG_OBJECT (registry, "removing feature %p (%s)",
|
gst/: Re-commit the registry changes, along with an extra fix:
Original commit message from CVS:
* gst/gst.c: (init_pre), (scan_and_update_registry),
(ensure_current_registry_nonforking),
(ensure_current_registry_forking), (ensure_current_registry),
(init_post), (gst_debug_help), (gst_deinit):
* gst/gst_private.h:
* gst/gstregistry.c: (gst_registry_finalize),
(gst_registry_remove_features_for_plugin_unlocked),
(gst_registry_remove_plugin), (gst_registry_scan_path_level),
(gst_registry_scan_path),
(_priv_gst_registry_remove_cache_plugins),
(_priv_gst_registry_cleanup):
* gst/gstregistry.h:
Re-commit the registry changes, along with an extra fix:
When a cached plugin is encountered at a different file path,
update the stored path in the registry cache so that the parent
process knows where it actually is now when it re-reads the registry
cache. Fixes the thing that broke distcheck with the previous commit.
* tests/check/Makefile.am:
Clean up files named 'core' too when running make clean.
* tests/examples/manual/Makefile.am:
Set up a registry path for running these tests, and clean it properly
for distcheck.
2006-09-28 14:00:43 +00:00
|
|
|
feature, gst_plugin_feature_get_name (feature));
|
|
|
|
gst_object_unref (feature);
|
2005-09-18 21:24:55 +00:00
|
|
|
}
|
|
|
|
f = g_list_next (f);
|
|
|
|
}
|
|
|
|
g_list_free (features);
|
|
|
|
|
2007-07-23 11:42:12 +00:00
|
|
|
g_hash_table_destroy (registry->feature_hash);
|
|
|
|
registry->feature_hash = NULL;
|
2009-10-21 03:28:54 +00:00
|
|
|
g_hash_table_destroy (registry->basename_hash);
|
|
|
|
registry->basename_hash = NULL;
|
2005-09-18 21:24:55 +00:00
|
|
|
|
2009-10-24 09:58:25 +00:00
|
|
|
if (registry->priv->element_factory_list) {
|
2009-10-21 07:45:47 +00:00
|
|
|
GST_DEBUG_OBJECT (registry, "Cleaning up cached element factory list");
|
2009-10-24 09:58:25 +00:00
|
|
|
gst_plugin_feature_list_free (registry->priv->element_factory_list);
|
2009-10-21 07:45:47 +00:00
|
|
|
}
|
|
|
|
|
2009-10-24 09:58:25 +00:00
|
|
|
if (registry->priv->typefind_factory_list) {
|
2009-10-21 07:45:47 +00:00
|
|
|
GST_DEBUG_OBJECT (registry, "Cleaning up cached typefind factory list");
|
2009-10-24 09:58:25 +00:00
|
|
|
gst_plugin_feature_list_free (registry->priv->typefind_factory_list);
|
2009-10-21 07:45:47 +00:00
|
|
|
}
|
|
|
|
|
2005-09-18 21:24:55 +00:00
|
|
|
G_OBJECT_CLASS (parent_class)->finalize (object);
|
2002-05-08 20:40:48 +00:00
|
|
|
}
|
|
|
|
|
2005-09-22 12:05:05 +00:00
|
|
|
/**
|
|
|
|
* gst_registry_get_default:
|
|
|
|
*
|
|
|
|
* Retrieves the default registry. The caller does not own a reference on the
|
|
|
|
* registry, as it is alive as long as GStreamer is initialized.
|
2005-12-02 12:34:47 +00:00
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer none): The default #GstRegistry.
|
2005-09-22 12:05:05 +00:00
|
|
|
*/
|
2005-09-15 00:13:26 +00:00
|
|
|
GstRegistry *
|
|
|
|
gst_registry_get_default (void)
|
2002-05-08 20:40:48 +00:00
|
|
|
{
|
2006-02-14 16:15:05 +00:00
|
|
|
GstRegistry *registry;
|
|
|
|
|
|
|
|
g_static_mutex_lock (&_gst_registry_mutex);
|
|
|
|
if (G_UNLIKELY (!_gst_registry_default)) {
|
2009-10-28 08:26:32 +00:00
|
|
|
_gst_registry_default = g_object_newv (GST_TYPE_REGISTRY, 0, NULL);
|
2009-05-02 12:36:50 +00:00
|
|
|
gst_object_ref_sink (GST_OBJECT_CAST (_gst_registry_default));
|
2005-09-15 00:13:26 +00:00
|
|
|
}
|
2006-02-14 16:15:05 +00:00
|
|
|
registry = _gst_registry_default;
|
|
|
|
g_static_mutex_unlock (&_gst_registry_mutex);
|
|
|
|
|
|
|
|
return registry;
|
2002-05-08 20:40:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_registry_add_path:
|
|
|
|
* @registry: the registry to add the path to
|
2004-03-15 15:16:04 +00:00
|
|
|
* @path: the path to add to the registry
|
2002-05-08 20:40:48 +00:00
|
|
|
*
|
2002-05-11 20:30:05 +00:00
|
|
|
* Add the given path to the registry. The syntax of the
|
|
|
|
* path is specific to the registry. If the path has already been
|
|
|
|
* added, do nothing.
|
2002-05-08 20:40:48 +00:00
|
|
|
*/
|
|
|
|
void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_registry_add_path (GstRegistry * registry, const gchar * path)
|
2002-05-08 20:40:48 +00:00
|
|
|
{
|
|
|
|
g_return_if_fail (GST_IS_REGISTRY (registry));
|
|
|
|
g_return_if_fail (path != NULL);
|
|
|
|
|
2005-12-02 12:34:47 +00:00
|
|
|
if (strlen (path) == 0)
|
|
|
|
goto empty_path;
|
|
|
|
|
|
|
|
GST_OBJECT_LOCK (registry);
|
|
|
|
if (g_list_find_custom (registry->paths, path, (GCompareFunc) strcmp))
|
|
|
|
goto was_added;
|
|
|
|
|
|
|
|
GST_INFO ("Adding plugin path: \"%s\"", path);
|
|
|
|
registry->paths = g_list_append (registry->paths, g_strdup (path));
|
|
|
|
GST_OBJECT_UNLOCK (registry);
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
empty_path:
|
|
|
|
{
|
2005-06-29 12:25:05 +00:00
|
|
|
GST_INFO ("Ignoring empty plugin path");
|
|
|
|
return;
|
|
|
|
}
|
2005-12-02 12:34:47 +00:00
|
|
|
was_added:
|
|
|
|
{
|
2004-03-13 15:27:01 +00:00
|
|
|
g_warning ("path %s already added to registry", path);
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (registry);
|
2003-04-14 18:53:03 +00:00
|
|
|
return;
|
2002-05-11 20:30:05 +00:00
|
|
|
}
|
2002-05-08 20:40:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_registry_get_path_list:
|
|
|
|
* @registry: the registry to get the pathlist of
|
|
|
|
*
|
|
|
|
* Get the list of paths for the given registry.
|
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer container) (element-type char*): A #GList of paths as
|
|
|
|
* strings. g_list_free after use.
|
2005-12-02 12:34:47 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
2002-05-08 20:40:48 +00:00
|
|
|
*/
|
2004-03-13 15:27:01 +00:00
|
|
|
GList *
|
|
|
|
gst_registry_get_path_list (GstRegistry * registry)
|
2002-05-08 20:40:48 +00:00
|
|
|
{
|
2005-09-15 23:51:24 +00:00
|
|
|
GList *list;
|
2002-05-08 20:40:48 +00:00
|
|
|
|
2005-09-15 23:51:24 +00:00
|
|
|
g_return_val_if_fail (GST_IS_REGISTRY (registry), NULL);
|
2002-05-08 20:40:48 +00:00
|
|
|
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_LOCK (registry);
|
2005-09-15 23:51:24 +00:00
|
|
|
/* We don't need to copy the strings, because they won't be deleted
|
|
|
|
* as long as the GstRegistry is around */
|
|
|
|
list = g_list_copy (registry->paths);
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (registry);
|
2002-05-08 20:40:48 +00:00
|
|
|
|
2005-09-15 23:51:24 +00:00
|
|
|
return list;
|
2002-05-08 20:40:48 +00:00
|
|
|
}
|
|
|
|
|
2005-09-15 23:51:24 +00:00
|
|
|
|
2002-05-08 20:40:48 +00:00
|
|
|
/**
|
|
|
|
* gst_registry_add_plugin:
|
|
|
|
* @registry: the registry to add the plugin to
|
2010-12-07 18:35:04 +00:00
|
|
|
* @plugin: (transfer full): the plugin to add
|
2002-05-08 20:40:48 +00:00
|
|
|
*
|
2004-03-15 15:16:04 +00:00
|
|
|
* Add the plugin to the registry. The plugin-added signal will be emitted.
|
2005-12-02 12:34:47 +00:00
|
|
|
* This function will sink @plugin.
|
2002-05-08 20:40:48 +00:00
|
|
|
*
|
|
|
|
* Returns: TRUE on success.
|
2005-12-02 12:34:47 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
2002-05-08 20:40:48 +00:00
|
|
|
*/
|
2004-03-13 15:27:01 +00:00
|
|
|
gboolean
|
|
|
|
gst_registry_add_plugin (GstRegistry * registry, GstPlugin * plugin)
|
2002-05-08 20:40:48 +00:00
|
|
|
{
|
2005-09-15 00:13:26 +00:00
|
|
|
GstPlugin *existing_plugin;
|
|
|
|
|
2002-05-08 20:40:48 +00:00
|
|
|
g_return_val_if_fail (GST_IS_REGISTRY (registry), FALSE);
|
2006-01-17 12:08:43 +00:00
|
|
|
g_return_val_if_fail (GST_IS_PLUGIN (plugin), FALSE);
|
2005-09-15 00:13:26 +00:00
|
|
|
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_LOCK (registry);
|
2009-10-21 03:28:54 +00:00
|
|
|
if (G_LIKELY (plugin->basename)) {
|
|
|
|
/* we have a basename, see if we find the plugin */
|
|
|
|
existing_plugin =
|
|
|
|
gst_registry_lookup_bn_locked (registry, plugin->basename);
|
|
|
|
if (existing_plugin) {
|
|
|
|
GST_DEBUG_OBJECT (registry,
|
2011-01-08 13:52:27 +00:00
|
|
|
"Replacing existing plugin \"%s\" %p with new plugin %p for filename \"%s\"",
|
|
|
|
GST_STR_NULL (existing_plugin->filename), existing_plugin, plugin,
|
|
|
|
GST_STR_NULL (plugin->filename));
|
|
|
|
/* If the new plugin is blacklisted and the existing one isn't cached, do not
|
|
|
|
* accept if it's from a different location than the existing one */
|
|
|
|
if ((plugin->flags & GST_PLUGIN_FLAG_BLACKLISTED) &&
|
|
|
|
strcmp (plugin->filename, existing_plugin->filename)) {
|
|
|
|
GST_WARNING_OBJECT (registry,
|
|
|
|
"Not replacing plugin because new one (%s) is blacklisted but for a different location than existing one (%s)",
|
|
|
|
plugin->filename, existing_plugin->filename);
|
|
|
|
gst_object_unref (plugin);
|
|
|
|
GST_OBJECT_UNLOCK (registry);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2009-10-21 03:28:54 +00:00
|
|
|
registry->plugins = g_list_remove (registry->plugins, existing_plugin);
|
|
|
|
if (G_LIKELY (existing_plugin->basename))
|
|
|
|
g_hash_table_remove (registry->basename_hash,
|
|
|
|
existing_plugin->basename);
|
|
|
|
gst_object_unref (existing_plugin);
|
|
|
|
}
|
2004-05-10 00:35:59 +00:00
|
|
|
}
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2005-10-08 06:49:09 +00:00
|
|
|
GST_DEBUG_OBJECT (registry, "adding plugin %p for filename \"%s\"",
|
2005-10-11 16:05:16 +00:00
|
|
|
plugin, GST_STR_NULL (plugin->filename));
|
2005-09-15 23:51:24 +00:00
|
|
|
|
2002-05-08 20:40:48 +00:00
|
|
|
registry->plugins = g_list_prepend (registry->plugins, plugin);
|
2009-10-21 03:28:54 +00:00
|
|
|
if (G_LIKELY (plugin->basename))
|
|
|
|
g_hash_table_replace (registry->basename_hash, plugin->basename, plugin);
|
2002-05-08 20:40:48 +00:00
|
|
|
|
2009-05-02 12:36:50 +00:00
|
|
|
gst_object_ref_sink (plugin);
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (registry);
|
2005-09-15 20:56:30 +00:00
|
|
|
|
2007-02-09 13:41:24 +00:00
|
|
|
GST_LOG_OBJECT (registry, "emitting plugin-added for filename \"%s\"",
|
2005-10-11 16:05:16 +00:00
|
|
|
GST_STR_NULL (plugin->filename));
|
2009-05-02 12:43:11 +00:00
|
|
|
g_signal_emit (registry, gst_registry_signals[PLUGIN_ADDED], 0, plugin);
|
2002-05-08 20:40:48 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
gst/: Re-commit the registry changes, along with an extra fix:
Original commit message from CVS:
* gst/gst.c: (init_pre), (scan_and_update_registry),
(ensure_current_registry_nonforking),
(ensure_current_registry_forking), (ensure_current_registry),
(init_post), (gst_debug_help), (gst_deinit):
* gst/gst_private.h:
* gst/gstregistry.c: (gst_registry_finalize),
(gst_registry_remove_features_for_plugin_unlocked),
(gst_registry_remove_plugin), (gst_registry_scan_path_level),
(gst_registry_scan_path),
(_priv_gst_registry_remove_cache_plugins),
(_priv_gst_registry_cleanup):
* gst/gstregistry.h:
Re-commit the registry changes, along with an extra fix:
When a cached plugin is encountered at a different file path,
update the stored path in the registry cache so that the parent
process knows where it actually is now when it re-reads the registry
cache. Fixes the thing that broke distcheck with the previous commit.
* tests/check/Makefile.am:
Clean up files named 'core' too when running make clean.
* tests/examples/manual/Makefile.am:
Set up a registry path for running these tests, and clean it properly
for distcheck.
2006-09-28 14:00:43 +00:00
|
|
|
static void
|
|
|
|
gst_registry_remove_features_for_plugin_unlocked (GstRegistry * registry,
|
|
|
|
GstPlugin * plugin)
|
|
|
|
{
|
|
|
|
GList *f;
|
2009-05-02 12:39:48 +00:00
|
|
|
const gchar *name;
|
gst/: Re-commit the registry changes, along with an extra fix:
Original commit message from CVS:
* gst/gst.c: (init_pre), (scan_and_update_registry),
(ensure_current_registry_nonforking),
(ensure_current_registry_forking), (ensure_current_registry),
(init_post), (gst_debug_help), (gst_deinit):
* gst/gst_private.h:
* gst/gstregistry.c: (gst_registry_finalize),
(gst_registry_remove_features_for_plugin_unlocked),
(gst_registry_remove_plugin), (gst_registry_scan_path_level),
(gst_registry_scan_path),
(_priv_gst_registry_remove_cache_plugins),
(_priv_gst_registry_cleanup):
* gst/gstregistry.h:
Re-commit the registry changes, along with an extra fix:
When a cached plugin is encountered at a different file path,
update the stored path in the registry cache so that the parent
process knows where it actually is now when it re-reads the registry
cache. Fixes the thing that broke distcheck with the previous commit.
* tests/check/Makefile.am:
Clean up files named 'core' too when running make clean.
* tests/examples/manual/Makefile.am:
Set up a registry path for running these tests, and clean it properly
for distcheck.
2006-09-28 14:00:43 +00:00
|
|
|
|
|
|
|
g_return_if_fail (GST_IS_REGISTRY (registry));
|
|
|
|
g_return_if_fail (GST_IS_PLUGIN (plugin));
|
|
|
|
|
2009-05-02 12:39:48 +00:00
|
|
|
name = gst_plugin_get_name (plugin);
|
|
|
|
|
gst/: Re-commit the registry changes, along with an extra fix:
Original commit message from CVS:
* gst/gst.c: (init_pre), (scan_and_update_registry),
(ensure_current_registry_nonforking),
(ensure_current_registry_forking), (ensure_current_registry),
(init_post), (gst_debug_help), (gst_deinit):
* gst/gst_private.h:
* gst/gstregistry.c: (gst_registry_finalize),
(gst_registry_remove_features_for_plugin_unlocked),
(gst_registry_remove_plugin), (gst_registry_scan_path_level),
(gst_registry_scan_path),
(_priv_gst_registry_remove_cache_plugins),
(_priv_gst_registry_cleanup):
* gst/gstregistry.h:
Re-commit the registry changes, along with an extra fix:
When a cached plugin is encountered at a different file path,
update the stored path in the registry cache so that the parent
process knows where it actually is now when it re-reads the registry
cache. Fixes the thing that broke distcheck with the previous commit.
* tests/check/Makefile.am:
Clean up files named 'core' too when running make clean.
* tests/examples/manual/Makefile.am:
Set up a registry path for running these tests, and clean it properly
for distcheck.
2006-09-28 14:00:43 +00:00
|
|
|
/* Remove all features for this plugin */
|
|
|
|
f = registry->features;
|
|
|
|
while (f != NULL) {
|
|
|
|
GList *next = g_list_next (f);
|
|
|
|
GstPluginFeature *feature = f->data;
|
|
|
|
|
2009-06-29 09:23:31 +00:00
|
|
|
if (G_UNLIKELY (feature && !strcmp (feature->plugin_name, name))) {
|
gst/: Re-commit the registry changes, along with an extra fix:
Original commit message from CVS:
* gst/gst.c: (init_pre), (scan_and_update_registry),
(ensure_current_registry_nonforking),
(ensure_current_registry_forking), (ensure_current_registry),
(init_post), (gst_debug_help), (gst_deinit):
* gst/gst_private.h:
* gst/gstregistry.c: (gst_registry_finalize),
(gst_registry_remove_features_for_plugin_unlocked),
(gst_registry_remove_plugin), (gst_registry_scan_path_level),
(gst_registry_scan_path),
(_priv_gst_registry_remove_cache_plugins),
(_priv_gst_registry_cleanup):
* gst/gstregistry.h:
Re-commit the registry changes, along with an extra fix:
When a cached plugin is encountered at a different file path,
update the stored path in the registry cache so that the parent
process knows where it actually is now when it re-reads the registry
cache. Fixes the thing that broke distcheck with the previous commit.
* tests/check/Makefile.am:
Clean up files named 'core' too when running make clean.
* tests/examples/manual/Makefile.am:
Set up a registry path for running these tests, and clean it properly
for distcheck.
2006-09-28 14:00:43 +00:00
|
|
|
GST_DEBUG_OBJECT (registry, "removing feature %p (%s) for plugin %s",
|
2009-05-02 12:39:48 +00:00
|
|
|
feature, gst_plugin_feature_get_name (feature), name);
|
gst/: Re-commit the registry changes, along with an extra fix:
Original commit message from CVS:
* gst/gst.c: (init_pre), (scan_and_update_registry),
(ensure_current_registry_nonforking),
(ensure_current_registry_forking), (ensure_current_registry),
(init_post), (gst_debug_help), (gst_deinit):
* gst/gst_private.h:
* gst/gstregistry.c: (gst_registry_finalize),
(gst_registry_remove_features_for_plugin_unlocked),
(gst_registry_remove_plugin), (gst_registry_scan_path_level),
(gst_registry_scan_path),
(_priv_gst_registry_remove_cache_plugins),
(_priv_gst_registry_cleanup):
* gst/gstregistry.h:
Re-commit the registry changes, along with an extra fix:
When a cached plugin is encountered at a different file path,
update the stored path in the registry cache so that the parent
process knows where it actually is now when it re-reads the registry
cache. Fixes the thing that broke distcheck with the previous commit.
* tests/check/Makefile.am:
Clean up files named 'core' too when running make clean.
* tests/examples/manual/Makefile.am:
Set up a registry path for running these tests, and clean it properly
for distcheck.
2006-09-28 14:00:43 +00:00
|
|
|
|
|
|
|
registry->features = g_list_delete_link (registry->features, f);
|
2007-07-23 11:42:12 +00:00
|
|
|
g_hash_table_remove (registry->feature_hash, feature->name);
|
gst/: Re-commit the registry changes, along with an extra fix:
Original commit message from CVS:
* gst/gst.c: (init_pre), (scan_and_update_registry),
(ensure_current_registry_nonforking),
(ensure_current_registry_forking), (ensure_current_registry),
(init_post), (gst_debug_help), (gst_deinit):
* gst/gst_private.h:
* gst/gstregistry.c: (gst_registry_finalize),
(gst_registry_remove_features_for_plugin_unlocked),
(gst_registry_remove_plugin), (gst_registry_scan_path_level),
(gst_registry_scan_path),
(_priv_gst_registry_remove_cache_plugins),
(_priv_gst_registry_cleanup):
* gst/gstregistry.h:
Re-commit the registry changes, along with an extra fix:
When a cached plugin is encountered at a different file path,
update the stored path in the registry cache so that the parent
process knows where it actually is now when it re-reads the registry
cache. Fixes the thing that broke distcheck with the previous commit.
* tests/check/Makefile.am:
Clean up files named 'core' too when running make clean.
* tests/examples/manual/Makefile.am:
Set up a registry path for running these tests, and clean it properly
for distcheck.
2006-09-28 14:00:43 +00:00
|
|
|
gst_object_unref (feature);
|
|
|
|
}
|
|
|
|
f = next;
|
|
|
|
}
|
2009-10-24 09:58:25 +00:00
|
|
|
registry->priv->cookie++;
|
gst/: Re-commit the registry changes, along with an extra fix:
Original commit message from CVS:
* gst/gst.c: (init_pre), (scan_and_update_registry),
(ensure_current_registry_nonforking),
(ensure_current_registry_forking), (ensure_current_registry),
(init_post), (gst_debug_help), (gst_deinit):
* gst/gst_private.h:
* gst/gstregistry.c: (gst_registry_finalize),
(gst_registry_remove_features_for_plugin_unlocked),
(gst_registry_remove_plugin), (gst_registry_scan_path_level),
(gst_registry_scan_path),
(_priv_gst_registry_remove_cache_plugins),
(_priv_gst_registry_cleanup):
* gst/gstregistry.h:
Re-commit the registry changes, along with an extra fix:
When a cached plugin is encountered at a different file path,
update the stored path in the registry cache so that the parent
process knows where it actually is now when it re-reads the registry
cache. Fixes the thing that broke distcheck with the previous commit.
* tests/check/Makefile.am:
Clean up files named 'core' too when running make clean.
* tests/examples/manual/Makefile.am:
Set up a registry path for running these tests, and clean it properly
for distcheck.
2006-09-28 14:00:43 +00:00
|
|
|
}
|
|
|
|
|
2002-05-08 20:40:48 +00:00
|
|
|
/**
|
|
|
|
* gst_registry_remove_plugin:
|
|
|
|
* @registry: the registry to remove the plugin from
|
2010-12-07 18:35:04 +00:00
|
|
|
* @plugin: (transfer none): the plugin to remove
|
2002-05-08 20:40:48 +00:00
|
|
|
*
|
|
|
|
* Remove the plugin from the registry.
|
2005-12-02 12:34:47 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
2002-05-08 20:40:48 +00:00
|
|
|
*/
|
|
|
|
void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_registry_remove_plugin (GstRegistry * registry, GstPlugin * plugin)
|
2002-05-08 20:40:48 +00:00
|
|
|
{
|
|
|
|
g_return_if_fail (GST_IS_REGISTRY (registry));
|
2006-01-17 12:08:43 +00:00
|
|
|
g_return_if_fail (GST_IS_PLUGIN (plugin));
|
2002-05-08 20:40:48 +00:00
|
|
|
|
gst/: Re-commit the registry changes, along with an extra fix:
Original commit message from CVS:
* gst/gst.c: (init_pre), (scan_and_update_registry),
(ensure_current_registry_nonforking),
(ensure_current_registry_forking), (ensure_current_registry),
(init_post), (gst_debug_help), (gst_deinit):
* gst/gst_private.h:
* gst/gstregistry.c: (gst_registry_finalize),
(gst_registry_remove_features_for_plugin_unlocked),
(gst_registry_remove_plugin), (gst_registry_scan_path_level),
(gst_registry_scan_path),
(_priv_gst_registry_remove_cache_plugins),
(_priv_gst_registry_cleanup):
* gst/gstregistry.h:
Re-commit the registry changes, along with an extra fix:
When a cached plugin is encountered at a different file path,
update the stored path in the registry cache so that the parent
process knows where it actually is now when it re-reads the registry
cache. Fixes the thing that broke distcheck with the previous commit.
* tests/check/Makefile.am:
Clean up files named 'core' too when running make clean.
* tests/examples/manual/Makefile.am:
Set up a registry path for running these tests, and clean it properly
for distcheck.
2006-09-28 14:00:43 +00:00
|
|
|
GST_DEBUG_OBJECT (registry, "removing plugin %p (%s)",
|
|
|
|
plugin, gst_plugin_get_name (plugin));
|
|
|
|
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_LOCK (registry);
|
2002-05-08 20:40:48 +00:00
|
|
|
registry->plugins = g_list_remove (registry->plugins, plugin);
|
2009-10-21 03:28:54 +00:00
|
|
|
if (G_LIKELY (plugin->basename))
|
|
|
|
g_hash_table_remove (registry->basename_hash, plugin->basename);
|
gst/: Re-commit the registry changes, along with an extra fix:
Original commit message from CVS:
* gst/gst.c: (init_pre), (scan_and_update_registry),
(ensure_current_registry_nonforking),
(ensure_current_registry_forking), (ensure_current_registry),
(init_post), (gst_debug_help), (gst_deinit):
* gst/gst_private.h:
* gst/gstregistry.c: (gst_registry_finalize),
(gst_registry_remove_features_for_plugin_unlocked),
(gst_registry_remove_plugin), (gst_registry_scan_path_level),
(gst_registry_scan_path),
(_priv_gst_registry_remove_cache_plugins),
(_priv_gst_registry_cleanup):
* gst/gstregistry.h:
Re-commit the registry changes, along with an extra fix:
When a cached plugin is encountered at a different file path,
update the stored path in the registry cache so that the parent
process knows where it actually is now when it re-reads the registry
cache. Fixes the thing that broke distcheck with the previous commit.
* tests/check/Makefile.am:
Clean up files named 'core' too when running make clean.
* tests/examples/manual/Makefile.am:
Set up a registry path for running these tests, and clean it properly
for distcheck.
2006-09-28 14:00:43 +00:00
|
|
|
gst_registry_remove_features_for_plugin_unlocked (registry, plugin);
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (registry);
|
2005-09-18 06:59:25 +00:00
|
|
|
gst_object_unref (plugin);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_registry_add_feature:
|
|
|
|
* @registry: the registry to add the plugin to
|
2010-12-07 18:35:04 +00:00
|
|
|
* @feature: (transfer full): the feature to add
|
2005-09-18 06:59:25 +00:00
|
|
|
*
|
|
|
|
* Add the feature to the registry. The feature-added signal will be emitted.
|
2005-12-02 12:34:47 +00:00
|
|
|
* This function sinks @feature.
|
2005-09-18 06:59:25 +00:00
|
|
|
*
|
|
|
|
* Returns: TRUE on success.
|
2005-12-02 12:34:47 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
2005-09-18 06:59:25 +00:00
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gst_registry_add_feature (GstRegistry * registry, GstPluginFeature * feature)
|
|
|
|
{
|
|
|
|
GstPluginFeature *existing_feature;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GST_IS_REGISTRY (registry), FALSE);
|
|
|
|
g_return_val_if_fail (GST_IS_PLUGIN_FEATURE (feature), FALSE);
|
|
|
|
g_return_val_if_fail (feature->name != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (feature->plugin_name != NULL, FALSE);
|
|
|
|
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_LOCK (registry);
|
2005-09-18 06:59:25 +00:00
|
|
|
existing_feature = gst_registry_lookup_feature_locked (registry,
|
|
|
|
feature->name);
|
gst/: Use _CAST macros to avoid unneeded type checking.
Original commit message from CVS:
* gst/gst.c: (gst_debug_help):
* gst/gstplugin.c: (gst_plugin_finalize), (gst_plugin_list_free):
* gst/gstpluginfeature.c: (gst_plugin_feature_finalize),
(gst_plugin_feature_list_free):
* gst/gstregistry.c: (gst_registry_add_plugin),
(gst_registry_add_feature), (gst_registry_plugin_filter),
(gst_registry_feature_filter), (gst_registry_find_plugin),
(gst_registry_find_feature), (gst_registry_get_plugin_list),
(gst_registry_lookup_feature_locked), (gst_registry_lookup_locked):
* gst/gstregistryxml.c: (load_feature),
(gst_registry_xml_read_cache), (gst_registry_xml_write_cache):
* gst/gstminiobject.c: (gst_mini_object_unref),
(gst_mini_object_replace), (gst_value_mini_object_free),
(gst_value_mini_object_copy):
Use _CAST macros to avoid unneeded type checking.
Added some more G_UNLIKELY.
2006-06-12 09:17:44 +00:00
|
|
|
if (G_UNLIKELY (existing_feature)) {
|
2007-07-23 11:42:12 +00:00
|
|
|
GST_DEBUG_OBJECT (registry, "replacing existing feature %p (%s)",
|
2005-09-18 06:59:25 +00:00
|
|
|
existing_feature, feature->name);
|
2007-07-31 11:51:38 +00:00
|
|
|
/* Remove the existing feature from the list now, before we insert the new
|
2009-05-31 19:37:03 +00:00
|
|
|
* one, but don't unref yet because the hash is still storing a reference to
|
|
|
|
* it. */
|
2005-09-18 06:59:25 +00:00
|
|
|
registry->features = g_list_remove (registry->features, existing_feature);
|
|
|
|
}
|
|
|
|
|
2005-09-19 14:09:54 +00:00
|
|
|
GST_DEBUG_OBJECT (registry, "adding feature %p (%s)", feature, feature->name);
|
2005-09-18 06:59:25 +00:00
|
|
|
|
|
|
|
registry->features = g_list_prepend (registry->features, feature);
|
2007-07-31 11:51:38 +00:00
|
|
|
g_hash_table_replace (registry->feature_hash, feature->name, feature);
|
|
|
|
|
|
|
|
if (G_UNLIKELY (existing_feature)) {
|
2009-05-31 19:37:03 +00:00
|
|
|
/* We unref now. No need to remove the feature name from the hash table, it
|
|
|
|
* got replaced by the new feature */
|
2007-07-31 11:51:38 +00:00
|
|
|
gst_object_unref (existing_feature);
|
|
|
|
}
|
2005-09-18 06:59:25 +00:00
|
|
|
|
2009-05-02 12:36:50 +00:00
|
|
|
gst_object_ref_sink (feature);
|
2009-10-24 08:05:59 +00:00
|
|
|
|
2009-10-24 09:58:25 +00:00
|
|
|
registry->priv->cookie++;
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (registry);
|
2005-09-18 06:59:25 +00:00
|
|
|
|
2007-02-09 13:41:24 +00:00
|
|
|
GST_LOG_OBJECT (registry, "emitting feature-added for %s", feature->name);
|
2009-05-02 12:43:11 +00:00
|
|
|
g_signal_emit (registry, gst_registry_signals[FEATURE_ADDED], 0, feature);
|
2005-09-18 06:59:25 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_registry_remove_feature:
|
|
|
|
* @registry: the registry to remove the feature from
|
2010-12-07 18:35:04 +00:00
|
|
|
* @feature: (transfer none): the feature to remove
|
2005-09-18 06:59:25 +00:00
|
|
|
*
|
|
|
|
* Remove the feature from the registry.
|
2005-12-02 12:34:47 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
2005-09-18 06:59:25 +00:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_registry_remove_feature (GstRegistry * registry, GstPluginFeature * feature)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GST_IS_REGISTRY (registry));
|
2006-01-17 12:08:43 +00:00
|
|
|
g_return_if_fail (GST_IS_PLUGIN_FEATURE (feature));
|
|
|
|
|
2005-09-19 14:09:54 +00:00
|
|
|
GST_DEBUG_OBJECT (registry, "removing feature %p (%s)",
|
|
|
|
feature, gst_plugin_feature_get_name (feature));
|
2005-09-18 06:59:25 +00:00
|
|
|
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_LOCK (registry);
|
2005-09-18 06:59:25 +00:00
|
|
|
registry->features = g_list_remove (registry->features, feature);
|
2007-07-23 11:42:12 +00:00
|
|
|
g_hash_table_remove (registry->feature_hash, feature->name);
|
2009-10-24 09:58:25 +00:00
|
|
|
registry->priv->cookie++;
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (registry);
|
2005-09-18 06:59:25 +00:00
|
|
|
gst_object_unref (feature);
|
2002-05-08 20:40:48 +00:00
|
|
|
}
|
|
|
|
|
2003-05-06 22:10:29 +00:00
|
|
|
/**
|
|
|
|
* gst_registry_plugin_filter:
|
|
|
|
* @registry: registry to query
|
|
|
|
* @filter: the filter to use
|
|
|
|
* @first: only return first match
|
2010-12-07 18:35:04 +00:00
|
|
|
* @user_data: (closure): user data passed to the filter function
|
2003-05-06 22:10:29 +00:00
|
|
|
*
|
2005-12-02 12:34:47 +00:00
|
|
|
* Runs a filter against all plugins in the registry and returns a #GList with
|
2004-03-15 15:16:04 +00:00
|
|
|
* the results. If the first flag is set, only the first match is
|
2003-05-06 22:10:29 +00:00
|
|
|
* returned (as a list with a single object).
|
2005-09-19 14:09:54 +00:00
|
|
|
* Every plugin is reffed; use gst_plugin_list_free() after use, which
|
|
|
|
* will unref again.
|
2003-05-06 22:10:29 +00:00
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full) (element-type Gst.Plugin): a #GList of #GstPlugin.
|
|
|
|
* Use gst_plugin_list_free() after usage.
|
2005-12-02 12:34:47 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
2003-05-06 22:10:29 +00:00
|
|
|
*/
|
2004-03-13 15:27:01 +00:00
|
|
|
GList *
|
|
|
|
gst_registry_plugin_filter (GstRegistry * registry,
|
|
|
|
GstPluginFilter filter, gboolean first, gpointer user_data)
|
2003-04-14 18:53:03 +00:00
|
|
|
{
|
2005-09-15 23:51:24 +00:00
|
|
|
GList *list;
|
|
|
|
GList *g;
|
|
|
|
|
2003-04-14 18:53:03 +00:00
|
|
|
g_return_val_if_fail (GST_IS_REGISTRY (registry), NULL);
|
|
|
|
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_LOCK (registry);
|
2005-09-15 23:51:24 +00:00
|
|
|
list = gst_filter_run (registry->plugins, (GstFilterFunc) filter, first,
|
2004-03-13 15:27:01 +00:00
|
|
|
user_data);
|
2005-09-15 23:51:24 +00:00
|
|
|
for (g = list; g; g = g->next) {
|
gst/: Use _CAST macros to avoid unneeded type checking.
Original commit message from CVS:
* gst/gst.c: (gst_debug_help):
* gst/gstplugin.c: (gst_plugin_finalize), (gst_plugin_list_free):
* gst/gstpluginfeature.c: (gst_plugin_feature_finalize),
(gst_plugin_feature_list_free):
* gst/gstregistry.c: (gst_registry_add_plugin),
(gst_registry_add_feature), (gst_registry_plugin_filter),
(gst_registry_feature_filter), (gst_registry_find_plugin),
(gst_registry_find_feature), (gst_registry_get_plugin_list),
(gst_registry_lookup_feature_locked), (gst_registry_lookup_locked):
* gst/gstregistryxml.c: (load_feature),
(gst_registry_xml_read_cache), (gst_registry_xml_write_cache):
* gst/gstminiobject.c: (gst_mini_object_unref),
(gst_mini_object_replace), (gst_value_mini_object_free),
(gst_value_mini_object_copy):
Use _CAST macros to avoid unneeded type checking.
Added some more G_UNLIKELY.
2006-06-12 09:17:44 +00:00
|
|
|
gst_object_ref (GST_PLUGIN_CAST (g->data));
|
2005-09-15 23:51:24 +00:00
|
|
|
}
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (registry);
|
2005-09-15 23:51:24 +00:00
|
|
|
|
|
|
|
return list;
|
2003-04-14 18:53:03 +00:00
|
|
|
}
|
|
|
|
|
2009-10-21 07:45:47 +00:00
|
|
|
/* returns TRUE if the list was changed
|
|
|
|
*
|
|
|
|
* Must be called with the object lock taken */
|
|
|
|
static gboolean
|
|
|
|
gst_registry_get_feature_list_or_create (GstRegistry * registry,
|
|
|
|
GList ** previous, guint32 * cookie, GType type)
|
|
|
|
{
|
|
|
|
gboolean res = FALSE;
|
2009-10-24 09:58:25 +00:00
|
|
|
GstRegistryPrivate *priv = registry->priv;
|
2009-10-21 07:45:47 +00:00
|
|
|
|
2009-10-24 09:58:25 +00:00
|
|
|
if (G_UNLIKELY (!*previous || priv->cookie != *cookie)) {
|
2009-10-21 07:45:47 +00:00
|
|
|
GstTypeNameData data;
|
|
|
|
|
|
|
|
if (*previous)
|
|
|
|
gst_plugin_feature_list_free (*previous);
|
|
|
|
|
|
|
|
data.type = type;
|
|
|
|
data.name = NULL;
|
|
|
|
*previous =
|
|
|
|
gst_filter_run (registry->features,
|
|
|
|
(GstFilterFunc) gst_plugin_feature_type_name_filter, FALSE, &data);
|
|
|
|
g_list_foreach (*previous, (GFunc) gst_object_ref, NULL);
|
2009-10-24 09:58:25 +00:00
|
|
|
*cookie = priv->cookie;
|
2009-10-21 07:45:47 +00:00
|
|
|
res = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2009-10-21 07:48:41 +00:00
|
|
|
static gint
|
|
|
|
type_find_factory_rank_cmp (const GstPluginFeature * fac1,
|
|
|
|
const GstPluginFeature * fac2)
|
|
|
|
{
|
|
|
|
if (G_LIKELY (fac1->rank != fac2->rank))
|
|
|
|
return fac2->rank - fac1->rank;
|
|
|
|
|
|
|
|
/* to make the order in which things happen more deterministic,
|
|
|
|
* sort by name when the ranks are the same. */
|
|
|
|
return strcmp (fac1->name, fac2->name);
|
|
|
|
}
|
|
|
|
|
2009-10-21 07:45:47 +00:00
|
|
|
static GList *
|
|
|
|
gst_registry_get_element_factory_list (GstRegistry * registry)
|
|
|
|
{
|
|
|
|
GList *list;
|
|
|
|
|
|
|
|
GST_OBJECT_LOCK (registry);
|
|
|
|
|
|
|
|
gst_registry_get_feature_list_or_create (registry,
|
2009-10-24 09:58:25 +00:00
|
|
|
®istry->priv->element_factory_list, ®istry->priv->efl_cookie,
|
2009-10-21 07:45:47 +00:00
|
|
|
GST_TYPE_ELEMENT_FACTORY);
|
|
|
|
|
|
|
|
/* Return reffed copy */
|
2009-10-24 09:58:25 +00:00
|
|
|
list = gst_plugin_feature_list_copy (registry->priv->element_factory_list);
|
2009-10-21 07:45:47 +00:00
|
|
|
|
|
|
|
GST_OBJECT_UNLOCK (registry);
|
|
|
|
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GList *
|
|
|
|
gst_registry_get_typefind_factory_list (GstRegistry * registry)
|
|
|
|
{
|
|
|
|
GList *list;
|
|
|
|
|
|
|
|
GST_OBJECT_LOCK (registry);
|
|
|
|
|
2009-10-21 07:48:41 +00:00
|
|
|
if (G_UNLIKELY (gst_registry_get_feature_list_or_create (registry,
|
2009-10-24 09:58:25 +00:00
|
|
|
®istry->priv->typefind_factory_list,
|
|
|
|
®istry->priv->tfl_cookie, GST_TYPE_TYPE_FIND_FACTORY)))
|
|
|
|
registry->priv->typefind_factory_list =
|
|
|
|
g_list_sort (registry->priv->typefind_factory_list,
|
2009-10-21 07:48:41 +00:00
|
|
|
(GCompareFunc) type_find_factory_rank_cmp);
|
2009-10-21 07:45:47 +00:00
|
|
|
|
|
|
|
/* Return reffed copy */
|
2009-10-24 09:58:25 +00:00
|
|
|
list = gst_plugin_feature_list_copy (registry->priv->typefind_factory_list);
|
2009-10-21 07:45:47 +00:00
|
|
|
|
|
|
|
GST_OBJECT_UNLOCK (registry);
|
|
|
|
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
2003-05-06 22:10:29 +00:00
|
|
|
/**
|
|
|
|
* gst_registry_feature_filter:
|
|
|
|
* @registry: registry to query
|
|
|
|
* @filter: the filter to use
|
|
|
|
* @first: only return first match
|
2010-12-07 18:35:04 +00:00
|
|
|
* @user_data: (closure): user data passed to the filter function
|
2003-05-06 22:10:29 +00:00
|
|
|
*
|
2004-03-15 15:16:04 +00:00
|
|
|
* Runs a filter against all features of the plugins in the registry
|
|
|
|
* and returns a GList with the results.
|
|
|
|
* If the first flag is set, only the first match is
|
2003-05-06 22:10:29 +00:00
|
|
|
* returned (as a list with a single object).
|
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full) (element-type Gst.PluginFeature): a #GList of
|
|
|
|
* #GstPluginFeature. Use gst_plugin_feature_list_free() after usage.
|
2005-12-02 12:34:47 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
2003-05-06 22:10:29 +00:00
|
|
|
*/
|
2004-03-13 15:27:01 +00:00
|
|
|
GList *
|
|
|
|
gst_registry_feature_filter (GstRegistry * registry,
|
|
|
|
GstPluginFeatureFilter filter, gboolean first, gpointer user_data)
|
2003-04-14 18:53:03 +00:00
|
|
|
{
|
2005-09-15 23:51:24 +00:00
|
|
|
GList *list;
|
2005-09-18 06:59:25 +00:00
|
|
|
GList *g;
|
2005-09-15 23:51:24 +00:00
|
|
|
|
2003-04-14 18:53:03 +00:00
|
|
|
g_return_val_if_fail (GST_IS_REGISTRY (registry), NULL);
|
|
|
|
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_LOCK (registry);
|
2005-09-18 06:59:25 +00:00
|
|
|
list = gst_filter_run (registry->features, (GstFilterFunc) filter, first,
|
2004-03-13 15:27:01 +00:00
|
|
|
user_data);
|
2005-09-18 06:59:25 +00:00
|
|
|
for (g = list; g; g = g->next) {
|
gst/: Use _CAST macros to avoid unneeded type checking.
Original commit message from CVS:
* gst/gst.c: (gst_debug_help):
* gst/gstplugin.c: (gst_plugin_finalize), (gst_plugin_list_free):
* gst/gstpluginfeature.c: (gst_plugin_feature_finalize),
(gst_plugin_feature_list_free):
* gst/gstregistry.c: (gst_registry_add_plugin),
(gst_registry_add_feature), (gst_registry_plugin_filter),
(gst_registry_feature_filter), (gst_registry_find_plugin),
(gst_registry_find_feature), (gst_registry_get_plugin_list),
(gst_registry_lookup_feature_locked), (gst_registry_lookup_locked):
* gst/gstregistryxml.c: (load_feature),
(gst_registry_xml_read_cache), (gst_registry_xml_write_cache):
* gst/gstminiobject.c: (gst_mini_object_unref),
(gst_mini_object_replace), (gst_value_mini_object_free),
(gst_value_mini_object_copy):
Use _CAST macros to avoid unneeded type checking.
Added some more G_UNLIKELY.
2006-06-12 09:17:44 +00:00
|
|
|
gst_object_ref (GST_PLUGIN_FEATURE_CAST (g->data));
|
2005-09-18 06:59:25 +00:00
|
|
|
}
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (registry);
|
2005-09-15 23:51:24 +00:00
|
|
|
|
|
|
|
return list;
|
2003-04-14 18:53:03 +00:00
|
|
|
}
|
|
|
|
|
2002-05-10 19:23:18 +00:00
|
|
|
/**
|
|
|
|
* gst_registry_find_plugin:
|
|
|
|
* @registry: the registry to search
|
|
|
|
* @name: the plugin name to find
|
|
|
|
*
|
|
|
|
* Find the plugin with the given name in the registry.
|
2005-09-19 14:09:54 +00:00
|
|
|
* The plugin will be reffed; caller is responsible for unreffing.
|
2002-05-10 19:23:18 +00:00
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full): the plugin with the given name or NULL if the
|
|
|
|
* plugin was not found. gst_object_unref() after usage.
|
2005-12-02 12:34:47 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
2002-05-10 19:23:18 +00:00
|
|
|
*/
|
2004-03-13 15:27:01 +00:00
|
|
|
GstPlugin *
|
|
|
|
gst_registry_find_plugin (GstRegistry * registry, const gchar * name)
|
2002-05-10 19:23:18 +00:00
|
|
|
{
|
2003-04-14 18:53:03 +00:00
|
|
|
GList *walk;
|
|
|
|
GstPlugin *result = NULL;
|
2003-02-10 20:32:32 +00:00
|
|
|
|
2002-05-10 19:23:18 +00:00
|
|
|
g_return_val_if_fail (GST_IS_REGISTRY (registry), NULL);
|
|
|
|
g_return_val_if_fail (name != NULL, NULL);
|
2003-02-10 20:32:32 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
walk = gst_registry_plugin_filter (registry,
|
|
|
|
(GstPluginFilter) gst_plugin_name_filter, TRUE, (gpointer) name);
|
2005-09-16 00:02:27 +00:00
|
|
|
if (walk) {
|
gst/: Use _CAST macros to avoid unneeded type checking.
Original commit message from CVS:
* gst/gst.c: (gst_debug_help):
* gst/gstplugin.c: (gst_plugin_finalize), (gst_plugin_list_free):
* gst/gstpluginfeature.c: (gst_plugin_feature_finalize),
(gst_plugin_feature_list_free):
* gst/gstregistry.c: (gst_registry_add_plugin),
(gst_registry_add_feature), (gst_registry_plugin_filter),
(gst_registry_feature_filter), (gst_registry_find_plugin),
(gst_registry_find_feature), (gst_registry_get_plugin_list),
(gst_registry_lookup_feature_locked), (gst_registry_lookup_locked):
* gst/gstregistryxml.c: (load_feature),
(gst_registry_xml_read_cache), (gst_registry_xml_write_cache):
* gst/gstminiobject.c: (gst_mini_object_unref),
(gst_mini_object_replace), (gst_value_mini_object_free),
(gst_value_mini_object_copy):
Use _CAST macros to avoid unneeded type checking.
Added some more G_UNLIKELY.
2006-06-12 09:17:44 +00:00
|
|
|
result = GST_PLUGIN_CAST (walk->data);
|
2003-02-10 20:32:32 +00:00
|
|
|
|
2005-09-16 00:02:27 +00:00
|
|
|
gst_object_ref (result);
|
|
|
|
gst_plugin_list_free (walk);
|
|
|
|
}
|
2003-04-14 18:53:03 +00:00
|
|
|
|
|
|
|
return result;
|
2002-05-10 19:23:18 +00:00
|
|
|
}
|
|
|
|
|
2002-05-08 20:40:48 +00:00
|
|
|
/**
|
|
|
|
* gst_registry_find_feature:
|
|
|
|
* @registry: the registry to search
|
|
|
|
* @name: the pluginfeature name to find
|
|
|
|
* @type: the pluginfeature type to find
|
|
|
|
*
|
|
|
|
* Find the pluginfeature with the given name and type in the registry.
|
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full): the pluginfeature with the given name and type
|
|
|
|
* or NULL if the plugin was not found. gst_object_unref() after usage.
|
2005-12-02 12:34:47 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
2002-05-08 20:40:48 +00:00
|
|
|
*/
|
2004-03-13 15:27:01 +00:00
|
|
|
GstPluginFeature *
|
|
|
|
gst_registry_find_feature (GstRegistry * registry, const gchar * name,
|
|
|
|
GType type)
|
2002-05-08 20:40:48 +00:00
|
|
|
{
|
2003-02-10 20:32:32 +00:00
|
|
|
GstPluginFeature *feature = NULL;
|
|
|
|
|
2002-05-08 20:40:48 +00:00
|
|
|
g_return_val_if_fail (GST_IS_REGISTRY (registry), NULL);
|
|
|
|
g_return_val_if_fail (name != NULL, NULL);
|
2006-01-17 12:08:43 +00:00
|
|
|
g_return_val_if_fail (g_type_is_a (type, GST_TYPE_PLUGIN_FEATURE), NULL);
|
2003-02-10 20:32:32 +00:00
|
|
|
|
2009-10-19 07:06:16 +00:00
|
|
|
feature = gst_registry_lookup_feature (registry, name);
|
|
|
|
if (feature && !g_type_is_a (G_TYPE_FROM_INSTANCE (feature), type)) {
|
|
|
|
gst_object_unref (feature);
|
|
|
|
feature = NULL;
|
2005-09-16 00:02:27 +00:00
|
|
|
}
|
2003-02-10 20:32:32 +00:00
|
|
|
|
|
|
|
return feature;
|
2002-05-08 20:40:48 +00:00
|
|
|
}
|
|
|
|
|
2005-12-02 12:34:47 +00:00
|
|
|
/**
|
|
|
|
* gst_registry_get_feature_list:
|
|
|
|
* @registry: a #GstRegistry
|
|
|
|
* @type: a #GType.
|
|
|
|
*
|
|
|
|
* Retrieves a #GList of #GstPluginFeature of @type.
|
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full) (element-type Gst.PluginFeature): a #GList of
|
|
|
|
* #GstPluginFeature of @type. Use gst_plugin_feature_list_free() after use
|
2005-12-02 12:34:47 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*/
|
2005-09-15 00:13:26 +00:00
|
|
|
GList *
|
|
|
|
gst_registry_get_feature_list (GstRegistry * registry, GType type)
|
2002-05-08 20:40:48 +00:00
|
|
|
{
|
2005-09-15 14:21:08 +00:00
|
|
|
GstTypeNameData data;
|
2002-12-19 21:31:03 +00:00
|
|
|
|
2006-01-17 12:08:43 +00:00
|
|
|
g_return_val_if_fail (GST_IS_REGISTRY (registry), NULL);
|
|
|
|
g_return_val_if_fail (g_type_is_a (type, GST_TYPE_PLUGIN_FEATURE), NULL);
|
|
|
|
|
2009-10-21 07:45:47 +00:00
|
|
|
/* Speed up */
|
|
|
|
if (type == GST_TYPE_ELEMENT_FACTORY)
|
|
|
|
return gst_registry_get_element_factory_list (registry);
|
|
|
|
else if (type == GST_TYPE_TYPE_FIND_FACTORY)
|
|
|
|
return gst_registry_get_typefind_factory_list (registry);
|
|
|
|
|
2005-09-15 14:21:08 +00:00
|
|
|
data.type = type;
|
|
|
|
data.name = NULL;
|
|
|
|
|
|
|
|
return gst_registry_feature_filter (registry,
|
|
|
|
(GstPluginFeatureFilter) gst_plugin_feature_type_name_filter,
|
|
|
|
FALSE, &data);
|
2005-09-15 00:13:26 +00:00
|
|
|
}
|
2002-05-08 20:40:48 +00:00
|
|
|
|
2005-11-04 15:02:48 +00:00
|
|
|
/**
|
|
|
|
* gst_registry_get_plugin_list:
|
|
|
|
* @registry: the registry to search
|
|
|
|
*
|
2005-12-02 12:34:47 +00:00
|
|
|
* Get a copy of all plugins registered in the given registry. The refcount
|
|
|
|
* of each element in the list in incremented.
|
2005-11-04 15:02:48 +00:00
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full) (element-type Gst.Plugin): a #GList of #GstPlugin.
|
|
|
|
* Use gst_plugin_list_free() after usage.
|
2005-12-02 12:34:47 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
2005-11-04 15:02:48 +00:00
|
|
|
*/
|
2005-09-15 00:13:26 +00:00
|
|
|
GList *
|
|
|
|
gst_registry_get_plugin_list (GstRegistry * registry)
|
|
|
|
{
|
2005-09-15 23:51:24 +00:00
|
|
|
GList *list;
|
|
|
|
GList *g;
|
|
|
|
|
2006-01-17 12:08:43 +00:00
|
|
|
g_return_val_if_fail (GST_IS_REGISTRY (registry), NULL);
|
|
|
|
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_LOCK (registry);
|
2005-09-15 23:51:24 +00:00
|
|
|
list = g_list_copy (registry->plugins);
|
|
|
|
for (g = list; g; g = g->next) {
|
gst/: Use _CAST macros to avoid unneeded type checking.
Original commit message from CVS:
* gst/gst.c: (gst_debug_help):
* gst/gstplugin.c: (gst_plugin_finalize), (gst_plugin_list_free):
* gst/gstpluginfeature.c: (gst_plugin_feature_finalize),
(gst_plugin_feature_list_free):
* gst/gstregistry.c: (gst_registry_add_plugin),
(gst_registry_add_feature), (gst_registry_plugin_filter),
(gst_registry_feature_filter), (gst_registry_find_plugin),
(gst_registry_find_feature), (gst_registry_get_plugin_list),
(gst_registry_lookup_feature_locked), (gst_registry_lookup_locked):
* gst/gstregistryxml.c: (load_feature),
(gst_registry_xml_read_cache), (gst_registry_xml_write_cache):
* gst/gstminiobject.c: (gst_mini_object_unref),
(gst_mini_object_replace), (gst_value_mini_object_free),
(gst_value_mini_object_copy):
Use _CAST macros to avoid unneeded type checking.
Added some more G_UNLIKELY.
2006-06-12 09:17:44 +00:00
|
|
|
gst_object_ref (GST_PLUGIN_CAST (g->data));
|
2005-09-15 23:51:24 +00:00
|
|
|
}
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (registry);
|
2005-09-15 23:51:24 +00:00
|
|
|
|
|
|
|
return list;
|
2005-09-15 00:13:26 +00:00
|
|
|
}
|
2002-12-19 21:31:03 +00:00
|
|
|
|
2005-09-18 06:59:25 +00:00
|
|
|
static GstPluginFeature *
|
|
|
|
gst_registry_lookup_feature_locked (GstRegistry * registry, const char *name)
|
|
|
|
{
|
2007-07-23 11:42:12 +00:00
|
|
|
return g_hash_table_lookup (registry->feature_hash, name);
|
2005-09-18 06:59:25 +00:00
|
|
|
}
|
|
|
|
|
2005-12-02 12:34:47 +00:00
|
|
|
/**
|
|
|
|
* gst_registry_lookup_feature:
|
|
|
|
* @registry: a #GstRegistry
|
|
|
|
* @name: a #GstPluginFeature name
|
|
|
|
*
|
|
|
|
* Find a #GstPluginFeature with @name in @registry.
|
2007-05-11 08:29:10 +00:00
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full): a #GstPluginFeature with its refcount incremented,
|
|
|
|
* use gst_object_unref() after usage.
|
2005-12-02 12:34:47 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*/
|
2005-09-18 06:59:25 +00:00
|
|
|
GstPluginFeature *
|
|
|
|
gst_registry_lookup_feature (GstRegistry * registry, const char *name)
|
|
|
|
{
|
|
|
|
GstPluginFeature *feature;
|
|
|
|
|
2006-01-17 12:08:43 +00:00
|
|
|
g_return_val_if_fail (GST_IS_REGISTRY (registry), NULL);
|
|
|
|
g_return_val_if_fail (name != NULL, NULL);
|
|
|
|
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_LOCK (registry);
|
2005-09-18 06:59:25 +00:00
|
|
|
feature = gst_registry_lookup_feature_locked (registry, name);
|
|
|
|
if (feature)
|
|
|
|
gst_object_ref (feature);
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (registry);
|
2005-09-18 06:59:25 +00:00
|
|
|
|
|
|
|
return feature;
|
|
|
|
}
|
|
|
|
|
2005-09-15 23:51:24 +00:00
|
|
|
static GstPlugin *
|
2009-10-21 01:39:11 +00:00
|
|
|
gst_registry_lookup_bn_locked (GstRegistry * registry, const char *basename)
|
2005-09-15 00:13:26 +00:00
|
|
|
{
|
2009-10-21 03:28:54 +00:00
|
|
|
return g_hash_table_lookup (registry->basename_hash, basename);
|
2002-05-08 20:40:48 +00:00
|
|
|
}
|
|
|
|
|
2009-10-21 01:39:11 +00:00
|
|
|
static GstPlugin *
|
|
|
|
gst_registry_lookup_bn (GstRegistry * registry, const char *basename)
|
|
|
|
{
|
|
|
|
GstPlugin *plugin;
|
|
|
|
|
|
|
|
GST_OBJECT_LOCK (registry);
|
|
|
|
plugin = gst_registry_lookup_bn_locked (registry, basename);
|
|
|
|
if (plugin)
|
|
|
|
gst_object_ref (plugin);
|
|
|
|
GST_OBJECT_UNLOCK (registry);
|
|
|
|
|
|
|
|
return plugin;
|
|
|
|
}
|
|
|
|
|
2005-09-19 14:09:54 +00:00
|
|
|
/**
|
|
|
|
* gst_registry_lookup:
|
|
|
|
* @registry: the registry to look up in
|
|
|
|
* @filename: the name of the file to look up
|
|
|
|
*
|
|
|
|
* Look up a plugin in the given registry with the given filename.
|
2005-12-02 12:34:47 +00:00
|
|
|
* If found, plugin is reffed.
|
2005-09-19 14:09:54 +00:00
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full): the #GstPlugin if found, or NULL if not.
|
|
|
|
* gst_object_unref() after usage.
|
2005-09-19 14:09:54 +00:00
|
|
|
*/
|
2005-09-15 23:51:24 +00:00
|
|
|
GstPlugin *
|
|
|
|
gst_registry_lookup (GstRegistry * registry, const char *filename)
|
|
|
|
{
|
|
|
|
GstPlugin *plugin;
|
2009-10-21 01:39:11 +00:00
|
|
|
gchar *basename;
|
2005-09-15 23:51:24 +00:00
|
|
|
|
2006-01-17 12:08:43 +00:00
|
|
|
g_return_val_if_fail (GST_IS_REGISTRY (registry), NULL);
|
|
|
|
g_return_val_if_fail (filename != NULL, NULL);
|
|
|
|
|
2009-10-21 01:39:11 +00:00
|
|
|
basename = g_path_get_basename (filename);
|
|
|
|
if (G_UNLIKELY (basename == NULL))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
plugin = gst_registry_lookup_bn (registry, basename);
|
|
|
|
|
|
|
|
g_free (basename);
|
2005-09-15 23:51:24 +00:00
|
|
|
|
|
|
|
return plugin;
|
|
|
|
}
|
|
|
|
|
2009-03-14 23:07:40 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
REGISTRY_SCAN_HELPER_NOT_STARTED = 0,
|
|
|
|
REGISTRY_SCAN_HELPER_DISABLED,
|
|
|
|
REGISTRY_SCAN_HELPER_RUNNING
|
|
|
|
} GstRegistryScanHelperState;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
GstRegistry *registry;
|
|
|
|
GstRegistryScanHelperState helper_state;
|
|
|
|
GstPluginLoader *helper;
|
|
|
|
gboolean changed;
|
|
|
|
} GstRegistryScanContext;
|
|
|
|
|
|
|
|
static void
|
|
|
|
init_scan_context (GstRegistryScanContext * context, GstRegistry * registry)
|
|
|
|
{
|
|
|
|
gboolean do_fork;
|
|
|
|
|
|
|
|
context->registry = registry;
|
|
|
|
|
|
|
|
/* see if forking is enabled and set up the scan helper state accordingly */
|
|
|
|
do_fork = _gst_enable_registry_fork;
|
|
|
|
if (do_fork) {
|
|
|
|
const gchar *fork_env;
|
|
|
|
|
|
|
|
/* forking enabled, see if it is disabled with an env var */
|
|
|
|
if ((fork_env = g_getenv ("GST_REGISTRY_FORK"))) {
|
|
|
|
/* fork enabled for any value different from "no" */
|
|
|
|
do_fork = strcmp (fork_env, "no") != 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (do_fork)
|
|
|
|
context->helper_state = REGISTRY_SCAN_HELPER_NOT_STARTED;
|
|
|
|
else
|
|
|
|
context->helper_state = REGISTRY_SCAN_HELPER_DISABLED;
|
|
|
|
|
|
|
|
context->helper = NULL;
|
|
|
|
context->changed = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clear_scan_context (GstRegistryScanContext * context)
|
|
|
|
{
|
|
|
|
if (context->helper) {
|
|
|
|
context->changed |= _priv_gst_plugin_loader_funcs.destroy (context->helper);
|
|
|
|
context->helper = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_registry_scan_plugin_file (GstRegistryScanContext * context,
|
2009-01-23 15:47:08 +00:00
|
|
|
const gchar * filename, off_t file_size, time_t file_mtime)
|
2009-03-14 23:07:40 +00:00
|
|
|
{
|
|
|
|
gboolean changed = FALSE;
|
|
|
|
GstPlugin *newplugin = NULL;
|
|
|
|
|
2010-03-02 21:58:06 +00:00
|
|
|
#ifdef G_OS_WIN32
|
|
|
|
/* Disable external plugin loader on Windows until it is ported properly. */
|
|
|
|
context->helper_state = REGISTRY_SCAN_HELPER_DISABLED;
|
|
|
|
#endif
|
2010-01-08 19:56:18 +00:00
|
|
|
|
|
|
|
|
2009-03-14 23:07:40 +00:00
|
|
|
/* Have a plugin to load - see if the scan-helper needs starting */
|
|
|
|
if (context->helper_state == REGISTRY_SCAN_HELPER_NOT_STARTED) {
|
|
|
|
GST_DEBUG ("Starting plugin scanner for file %s", filename);
|
|
|
|
context->helper = _priv_gst_plugin_loader_funcs.create (context->registry);
|
|
|
|
if (context->helper != NULL)
|
|
|
|
context->helper_state = REGISTRY_SCAN_HELPER_RUNNING;
|
2009-10-08 09:36:56 +00:00
|
|
|
else {
|
|
|
|
GST_WARNING ("Failed starting plugin scanner. Scanning in-process");
|
2009-03-14 23:07:40 +00:00
|
|
|
context->helper_state = REGISTRY_SCAN_HELPER_DISABLED;
|
2009-10-08 09:36:56 +00:00
|
|
|
}
|
2009-03-14 23:07:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (context->helper_state == REGISTRY_SCAN_HELPER_RUNNING) {
|
|
|
|
GST_DEBUG ("Using scan-helper to load plugin %s", filename);
|
2009-01-23 15:47:08 +00:00
|
|
|
if (!_priv_gst_plugin_loader_funcs.load (context->helper,
|
|
|
|
filename, file_size, file_mtime)) {
|
2009-10-07 13:34:17 +00:00
|
|
|
g_warning ("External plugin loader failed. This most likely means that "
|
|
|
|
"the plugin loader helper binary was not found or could not be run. "
|
|
|
|
"%s", (g_getenv ("GST_PLUGIN_PATH") != NULL) ?
|
|
|
|
"If you are running an uninstalled GStreamer setup, you might need "
|
|
|
|
"to update your gst-uninstalled script so that the "
|
|
|
|
"GST_PLUGIN_SCANNER environment variable gets set." : "");
|
2009-03-14 23:07:40 +00:00
|
|
|
context->helper_state = REGISTRY_SCAN_HELPER_DISABLED;
|
|
|
|
}
|
2009-10-08 09:36:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Check if the helper is disabled (or just got disabled above) */
|
|
|
|
if (context->helper_state == REGISTRY_SCAN_HELPER_DISABLED) {
|
2009-03-14 23:07:40 +00:00
|
|
|
/* Load plugin the old fashioned way... */
|
|
|
|
|
|
|
|
/* We don't use a GError here because a failure to load some shared
|
|
|
|
* objects as plugins is normal (particularly in the uninstalled case)
|
|
|
|
*/
|
|
|
|
newplugin = gst_plugin_load_file (filename, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (newplugin) {
|
|
|
|
GST_DEBUG_OBJECT (context->registry, "marking new plugin %p as registered",
|
|
|
|
newplugin);
|
|
|
|
newplugin->registered = TRUE;
|
|
|
|
gst_object_unref (newplugin);
|
|
|
|
changed = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return changed;
|
|
|
|
}
|
|
|
|
|
2010-06-19 10:19:37 +00:00
|
|
|
static gboolean
|
|
|
|
is_blacklisted_hidden_directory (const gchar * dirent)
|
|
|
|
{
|
|
|
|
if (G_LIKELY (dirent[0] != '.'))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* skip the .debug directory, these contain elf files that are not
|
|
|
|
* useful or worse, can crash dlopen () */
|
|
|
|
if (strcmp (dirent, ".debug") == 0)
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
/* can also skip .git and .deps dirs, those won't contain useful files.
|
|
|
|
* This speeds up scanning a bit in uninstalled setups. */
|
|
|
|
if (strcmp (dirent, ".git") == 0 || strcmp (dirent, ".deps") == 0)
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2006-04-28 20:47:23 +00:00
|
|
|
static gboolean
|
2009-03-14 23:07:40 +00:00
|
|
|
gst_registry_scan_path_level (GstRegistryScanContext * context,
|
|
|
|
const gchar * path, int level)
|
2002-05-08 20:40:48 +00:00
|
|
|
{
|
2005-09-15 00:13:26 +00:00
|
|
|
GDir *dir;
|
|
|
|
const gchar *dirent;
|
|
|
|
gchar *filename;
|
|
|
|
GstPlugin *plugin;
|
2006-04-28 20:47:23 +00:00
|
|
|
gboolean changed = FALSE;
|
2002-05-08 20:40:48 +00:00
|
|
|
|
2005-09-15 00:13:26 +00:00
|
|
|
dir = g_dir_open (path, 0, NULL);
|
|
|
|
if (!dir)
|
2006-04-28 20:47:23 +00:00
|
|
|
return FALSE;
|
2002-12-19 21:31:03 +00:00
|
|
|
|
2005-09-15 00:13:26 +00:00
|
|
|
while ((dirent = g_dir_read_name (dir))) {
|
2010-07-08 19:04:54 +00:00
|
|
|
GStatBuf file_status;
|
2008-11-24 09:59:07 +00:00
|
|
|
|
2009-07-08 13:10:26 +00:00
|
|
|
filename = g_build_filename (path, dirent, NULL);
|
2008-11-24 09:59:07 +00:00
|
|
|
if (g_stat (filename, &file_status) < 0) {
|
|
|
|
/* Plugin will be removed from cache after the scan completes if it
|
|
|
|
* is still marked 'cached' */
|
|
|
|
g_free (filename);
|
|
|
|
continue;
|
|
|
|
}
|
2005-09-15 00:13:26 +00:00
|
|
|
|
2008-11-24 09:59:07 +00:00
|
|
|
if (file_status.st_mode & S_IFDIR) {
|
2010-06-19 10:19:37 +00:00
|
|
|
if (G_UNLIKELY (is_blacklisted_hidden_directory (dirent))) {
|
|
|
|
GST_LOG_OBJECT (context->registry, "ignoring %s directory", dirent);
|
2008-05-30 07:36:17 +00:00
|
|
|
g_free (filename);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
/* FIXME 0.11: Don't recurse into directories, this behaviour
|
|
|
|
* is inconsistent with other PATH environment variables
|
|
|
|
*/
|
2010-12-26 21:20:31 +00:00
|
|
|
if (level > 0) {
|
2009-03-14 23:07:40 +00:00
|
|
|
GST_LOG_OBJECT (context->registry, "recursing into directory %s",
|
|
|
|
filename);
|
|
|
|
changed |= gst_registry_scan_path_level (context, filename, level - 1);
|
2005-09-15 00:13:26 +00:00
|
|
|
} else {
|
2009-03-14 23:07:40 +00:00
|
|
|
GST_LOG_OBJECT (context->registry, "not recursing into directory %s, "
|
2008-05-03 19:13:47 +00:00
|
|
|
"recursion level too deep", filename);
|
2005-09-15 00:13:26 +00:00
|
|
|
}
|
|
|
|
g_free (filename);
|
|
|
|
continue;
|
|
|
|
}
|
2008-11-24 09:59:07 +00:00
|
|
|
if (!(file_status.st_mode & S_IFREG)) {
|
2009-03-14 23:07:40 +00:00
|
|
|
GST_LOG_OBJECT (context->registry, "%s is not a regular file, ignoring",
|
|
|
|
filename);
|
2005-09-15 00:13:26 +00:00
|
|
|
g_free (filename);
|
|
|
|
continue;
|
|
|
|
}
|
2008-05-01 13:03:51 +00:00
|
|
|
if (!g_str_has_suffix (dirent, G_MODULE_SUFFIX)
|
2008-03-31 13:47:22 +00:00
|
|
|
#ifdef GST_EXTRA_MODULE_SUFFIX
|
2008-05-01 13:03:51 +00:00
|
|
|
&& !g_str_has_suffix (dirent, GST_EXTRA_MODULE_SUFFIX)
|
2008-03-31 13:47:22 +00:00
|
|
|
#endif
|
|
|
|
) {
|
2009-03-14 23:07:40 +00:00
|
|
|
GST_LOG_OBJECT (context->registry,
|
|
|
|
"extension is not recognized as module file, ignoring file %s",
|
|
|
|
filename);
|
2005-09-15 00:13:26 +00:00
|
|
|
g_free (filename);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2009-03-14 23:07:40 +00:00
|
|
|
GST_LOG_OBJECT (context->registry, "file %s looks like a possible module",
|
|
|
|
filename);
|
2008-05-03 19:13:47 +00:00
|
|
|
|
2011-01-06 19:40:27 +00:00
|
|
|
/* try to avoid unnecessary plugin-move pain */
|
|
|
|
if (g_str_has_prefix (dirent, "libgstvalve") ||
|
|
|
|
g_str_has_prefix (dirent, "libgstselector")) {
|
|
|
|
GST_WARNING_OBJECT (context->registry, "ignoring old plugin %s which "
|
|
|
|
"has been merged into the corelements plugin", filename);
|
|
|
|
/* Plugin will be removed from cache after the scan completes if it
|
|
|
|
* is still marked 'cached' */
|
|
|
|
g_free (filename);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2005-10-08 13:57:17 +00:00
|
|
|
/* plug-ins are considered unique by basename; if the given name
|
|
|
|
* was already seen by the registry, we ignore it */
|
2009-10-21 01:39:11 +00:00
|
|
|
plugin = gst_registry_lookup_bn (context->registry, dirent);
|
2005-09-15 00:13:26 +00:00
|
|
|
if (plugin) {
|
Add API for making a GStreamer plugin 'dependent' on external files, directories or environment variables, so that GS...
Original commit message from CVS:
* docs/gst/gstreamer-sections.txt::
* gst/gst_private.h: (GstPluginDep), (_GstPluginPrivate):
* gst/gstplugin.c: (gst_plugin_init), (gst_plugin_finalize),
(gst_plugin_class_init), (gst_plugin_list_free),
(gst_plugin_ext_dep_get_env_vars_hash),
(_priv_plugin_deps_env_vars_changed),
(gst_plugin_ext_dep_extract_env_vars_paths),
(gst_plugin_ext_dep_get_hash_from_stat_entry),
(gst_plugin_ext_dep_direntry_matches),
(gst_plugin_ext_dep_scan_dir_and_match_names),
(gst_plugin_ext_dep_scan_path_with_filenames),
(gst_plugin_ext_dep_get_stat_hash),
(_priv_plugin_deps_files_changed), (gst_plugin_ext_dep_free),
(gst_plugin_ext_dep_strv_equal), (gst_plugin_ext_dep_equals),
(gst_plugin_add_dependency), (gst_plugin_add_dependency_simple):
* gst/gstplugin.h: (GstPluginPrivate), (GstPluginFlags),
(GST_PLUGIN_DEPENDENCY_FLAG_NONE),
(GST_PLUGIN_DEPENDENCY_FLAG_RECURSE),
(GST_PLUGIN_DEPENDENCY_FLAG_PATHS_ARE_DEFAULT_ONLY),
(GST_PLUGIN_DEPENDENCY_FLAG_FILE_NAME_IS_SUFFIX),
(GstPluginDependencyFlags), (GstPluginFilter):
* gst/gstregistry.c: (gst_registry_scan_path_level):
* gst/gstregistrybinary.c: (gst_registry_binary_save_feature),
(gst_registry_binary_save_plugin_dep),
(gst_registry_binary_save_plugin),
(gst_registry_binary_load_feature),
(gst_registry_binary_load_plugin_dep_strv),
(gst_registry_binary_load_plugin_dep),
(gst_registry_binary_load_plugin):
* gst/gstregistrybinary.h: (GST_MAGIC_BINARY_VERSION_STR),
(GstBinaryPluginElement), (_GstBinaryDep), (GstBinaryDep):
* gst/gstregistryxml.c: (gst_registry_xml_save_plugin):
Add API for making a GStreamer plugin 'dependent' on external files,
directories or environment variables, so that GStreamer knows when
it needs to re-load GStreamer plugins that wrap other plugin systems.
Fixes bug #350477.
API: add gst_plugin_add_dependency()
API: add gst_plugin_add_dependency_simple()
2009-01-06 17:58:59 +00:00
|
|
|
gboolean env_vars_changed, deps_changed = FALSE;
|
|
|
|
|
2005-10-08 13:57:17 +00:00
|
|
|
if (plugin->registered) {
|
2009-03-14 23:07:40 +00:00
|
|
|
GST_DEBUG_OBJECT (context->registry,
|
2005-10-11 16:05:16 +00:00
|
|
|
"plugin already registered from path \"%s\"",
|
|
|
|
GST_STR_NULL (plugin->filename));
|
2005-10-08 14:41:56 +00:00
|
|
|
g_free (filename);
|
2005-10-18 07:13:25 +00:00
|
|
|
gst_object_unref (plugin);
|
2005-10-08 13:57:17 +00:00
|
|
|
continue;
|
|
|
|
}
|
Add API for making a GStreamer plugin 'dependent' on external files, directories or environment variables, so that GS...
Original commit message from CVS:
* docs/gst/gstreamer-sections.txt::
* gst/gst_private.h: (GstPluginDep), (_GstPluginPrivate):
* gst/gstplugin.c: (gst_plugin_init), (gst_plugin_finalize),
(gst_plugin_class_init), (gst_plugin_list_free),
(gst_plugin_ext_dep_get_env_vars_hash),
(_priv_plugin_deps_env_vars_changed),
(gst_plugin_ext_dep_extract_env_vars_paths),
(gst_plugin_ext_dep_get_hash_from_stat_entry),
(gst_plugin_ext_dep_direntry_matches),
(gst_plugin_ext_dep_scan_dir_and_match_names),
(gst_plugin_ext_dep_scan_path_with_filenames),
(gst_plugin_ext_dep_get_stat_hash),
(_priv_plugin_deps_files_changed), (gst_plugin_ext_dep_free),
(gst_plugin_ext_dep_strv_equal), (gst_plugin_ext_dep_equals),
(gst_plugin_add_dependency), (gst_plugin_add_dependency_simple):
* gst/gstplugin.h: (GstPluginPrivate), (GstPluginFlags),
(GST_PLUGIN_DEPENDENCY_FLAG_NONE),
(GST_PLUGIN_DEPENDENCY_FLAG_RECURSE),
(GST_PLUGIN_DEPENDENCY_FLAG_PATHS_ARE_DEFAULT_ONLY),
(GST_PLUGIN_DEPENDENCY_FLAG_FILE_NAME_IS_SUFFIX),
(GstPluginDependencyFlags), (GstPluginFilter):
* gst/gstregistry.c: (gst_registry_scan_path_level):
* gst/gstregistrybinary.c: (gst_registry_binary_save_feature),
(gst_registry_binary_save_plugin_dep),
(gst_registry_binary_save_plugin),
(gst_registry_binary_load_feature),
(gst_registry_binary_load_plugin_dep_strv),
(gst_registry_binary_load_plugin_dep),
(gst_registry_binary_load_plugin):
* gst/gstregistrybinary.h: (GST_MAGIC_BINARY_VERSION_STR),
(GstBinaryPluginElement), (_GstBinaryDep), (GstBinaryDep):
* gst/gstregistryxml.c: (gst_registry_xml_save_plugin):
Add API for making a GStreamer plugin 'dependent' on external files,
directories or environment variables, so that GStreamer knows when
it needs to re-load GStreamer plugins that wrap other plugin systems.
Fixes bug #350477.
API: add gst_plugin_add_dependency()
API: add gst_plugin_add_dependency_simple()
2009-01-06 17:58:59 +00:00
|
|
|
|
|
|
|
env_vars_changed = _priv_plugin_deps_env_vars_changed (plugin);
|
|
|
|
|
2009-03-14 23:07:40 +00:00
|
|
|
/* If a file with a certain basename is seen on a different path,
|
|
|
|
* update the plugin to ensure the registry cache will reflect up
|
|
|
|
* to date information */
|
|
|
|
|
2005-09-15 00:13:26 +00:00
|
|
|
if (plugin->file_mtime == file_status.st_mtime &&
|
Add API for making a GStreamer plugin 'dependent' on external files, directories or environment variables, so that GS...
Original commit message from CVS:
* docs/gst/gstreamer-sections.txt::
* gst/gst_private.h: (GstPluginDep), (_GstPluginPrivate):
* gst/gstplugin.c: (gst_plugin_init), (gst_plugin_finalize),
(gst_plugin_class_init), (gst_plugin_list_free),
(gst_plugin_ext_dep_get_env_vars_hash),
(_priv_plugin_deps_env_vars_changed),
(gst_plugin_ext_dep_extract_env_vars_paths),
(gst_plugin_ext_dep_get_hash_from_stat_entry),
(gst_plugin_ext_dep_direntry_matches),
(gst_plugin_ext_dep_scan_dir_and_match_names),
(gst_plugin_ext_dep_scan_path_with_filenames),
(gst_plugin_ext_dep_get_stat_hash),
(_priv_plugin_deps_files_changed), (gst_plugin_ext_dep_free),
(gst_plugin_ext_dep_strv_equal), (gst_plugin_ext_dep_equals),
(gst_plugin_add_dependency), (gst_plugin_add_dependency_simple):
* gst/gstplugin.h: (GstPluginPrivate), (GstPluginFlags),
(GST_PLUGIN_DEPENDENCY_FLAG_NONE),
(GST_PLUGIN_DEPENDENCY_FLAG_RECURSE),
(GST_PLUGIN_DEPENDENCY_FLAG_PATHS_ARE_DEFAULT_ONLY),
(GST_PLUGIN_DEPENDENCY_FLAG_FILE_NAME_IS_SUFFIX),
(GstPluginDependencyFlags), (GstPluginFilter):
* gst/gstregistry.c: (gst_registry_scan_path_level):
* gst/gstregistrybinary.c: (gst_registry_binary_save_feature),
(gst_registry_binary_save_plugin_dep),
(gst_registry_binary_save_plugin),
(gst_registry_binary_load_feature),
(gst_registry_binary_load_plugin_dep_strv),
(gst_registry_binary_load_plugin_dep),
(gst_registry_binary_load_plugin):
* gst/gstregistrybinary.h: (GST_MAGIC_BINARY_VERSION_STR),
(GstBinaryPluginElement), (_GstBinaryDep), (GstBinaryDep):
* gst/gstregistryxml.c: (gst_registry_xml_save_plugin):
Add API for making a GStreamer plugin 'dependent' on external files,
directories or environment variables, so that GStreamer knows when
it needs to re-load GStreamer plugins that wrap other plugin systems.
Fixes bug #350477.
API: add gst_plugin_add_dependency()
API: add gst_plugin_add_dependency_simple()
2009-01-06 17:58:59 +00:00
|
|
|
plugin->file_size == file_status.st_size && !env_vars_changed &&
|
2009-03-14 23:07:40 +00:00
|
|
|
!(deps_changed = _priv_plugin_deps_files_changed (plugin)) &&
|
2009-01-29 13:22:14 +00:00
|
|
|
!strcmp (plugin->filename, filename)) {
|
2009-03-14 23:07:40 +00:00
|
|
|
GST_LOG_OBJECT (context->registry, "file %s cached", filename);
|
2005-09-15 00:13:26 +00:00
|
|
|
plugin->flags &= ~GST_PLUGIN_FLAG_CACHED;
|
2009-03-14 23:07:40 +00:00
|
|
|
GST_LOG_OBJECT (context->registry,
|
|
|
|
"marking plugin %p as registered as %s", plugin, filename);
|
2005-11-02 15:34:23 +00:00
|
|
|
plugin->registered = TRUE;
|
2005-09-15 00:13:26 +00:00
|
|
|
} else {
|
2009-03-14 23:07:40 +00:00
|
|
|
GST_INFO_OBJECT (context->registry, "cached info for %s is stale",
|
|
|
|
filename);
|
|
|
|
GST_DEBUG_OBJECT (context->registry, "mtime %ld != %ld or size %"
|
Add API for making a GStreamer plugin 'dependent' on external files, directories or environment variables, so that GS...
Original commit message from CVS:
* docs/gst/gstreamer-sections.txt::
* gst/gst_private.h: (GstPluginDep), (_GstPluginPrivate):
* gst/gstplugin.c: (gst_plugin_init), (gst_plugin_finalize),
(gst_plugin_class_init), (gst_plugin_list_free),
(gst_plugin_ext_dep_get_env_vars_hash),
(_priv_plugin_deps_env_vars_changed),
(gst_plugin_ext_dep_extract_env_vars_paths),
(gst_plugin_ext_dep_get_hash_from_stat_entry),
(gst_plugin_ext_dep_direntry_matches),
(gst_plugin_ext_dep_scan_dir_and_match_names),
(gst_plugin_ext_dep_scan_path_with_filenames),
(gst_plugin_ext_dep_get_stat_hash),
(_priv_plugin_deps_files_changed), (gst_plugin_ext_dep_free),
(gst_plugin_ext_dep_strv_equal), (gst_plugin_ext_dep_equals),
(gst_plugin_add_dependency), (gst_plugin_add_dependency_simple):
* gst/gstplugin.h: (GstPluginPrivate), (GstPluginFlags),
(GST_PLUGIN_DEPENDENCY_FLAG_NONE),
(GST_PLUGIN_DEPENDENCY_FLAG_RECURSE),
(GST_PLUGIN_DEPENDENCY_FLAG_PATHS_ARE_DEFAULT_ONLY),
(GST_PLUGIN_DEPENDENCY_FLAG_FILE_NAME_IS_SUFFIX),
(GstPluginDependencyFlags), (GstPluginFilter):
* gst/gstregistry.c: (gst_registry_scan_path_level):
* gst/gstregistrybinary.c: (gst_registry_binary_save_feature),
(gst_registry_binary_save_plugin_dep),
(gst_registry_binary_save_plugin),
(gst_registry_binary_load_feature),
(gst_registry_binary_load_plugin_dep_strv),
(gst_registry_binary_load_plugin_dep),
(gst_registry_binary_load_plugin):
* gst/gstregistrybinary.h: (GST_MAGIC_BINARY_VERSION_STR),
(GstBinaryPluginElement), (_GstBinaryDep), (GstBinaryDep):
* gst/gstregistryxml.c: (gst_registry_xml_save_plugin):
Add API for making a GStreamer plugin 'dependent' on external files,
directories or environment variables, so that GStreamer knows when
it needs to re-load GStreamer plugins that wrap other plugin systems.
Fixes bug #350477.
API: add gst_plugin_add_dependency()
API: add gst_plugin_add_dependency_simple()
2009-01-06 17:58:59 +00:00
|
|
|
G_GINT64_FORMAT " != %" G_GINT64_FORMAT " or external dependency "
|
2009-01-29 13:22:14 +00:00
|
|
|
"env_vars changed: %d or external dependencies changed: %d"
|
|
|
|
" or old path %s != new path %s",
|
Add API for making a GStreamer plugin 'dependent' on external files, directories or environment variables, so that GS...
Original commit message from CVS:
* docs/gst/gstreamer-sections.txt::
* gst/gst_private.h: (GstPluginDep), (_GstPluginPrivate):
* gst/gstplugin.c: (gst_plugin_init), (gst_plugin_finalize),
(gst_plugin_class_init), (gst_plugin_list_free),
(gst_plugin_ext_dep_get_env_vars_hash),
(_priv_plugin_deps_env_vars_changed),
(gst_plugin_ext_dep_extract_env_vars_paths),
(gst_plugin_ext_dep_get_hash_from_stat_entry),
(gst_plugin_ext_dep_direntry_matches),
(gst_plugin_ext_dep_scan_dir_and_match_names),
(gst_plugin_ext_dep_scan_path_with_filenames),
(gst_plugin_ext_dep_get_stat_hash),
(_priv_plugin_deps_files_changed), (gst_plugin_ext_dep_free),
(gst_plugin_ext_dep_strv_equal), (gst_plugin_ext_dep_equals),
(gst_plugin_add_dependency), (gst_plugin_add_dependency_simple):
* gst/gstplugin.h: (GstPluginPrivate), (GstPluginFlags),
(GST_PLUGIN_DEPENDENCY_FLAG_NONE),
(GST_PLUGIN_DEPENDENCY_FLAG_RECURSE),
(GST_PLUGIN_DEPENDENCY_FLAG_PATHS_ARE_DEFAULT_ONLY),
(GST_PLUGIN_DEPENDENCY_FLAG_FILE_NAME_IS_SUFFIX),
(GstPluginDependencyFlags), (GstPluginFilter):
* gst/gstregistry.c: (gst_registry_scan_path_level):
* gst/gstregistrybinary.c: (gst_registry_binary_save_feature),
(gst_registry_binary_save_plugin_dep),
(gst_registry_binary_save_plugin),
(gst_registry_binary_load_feature),
(gst_registry_binary_load_plugin_dep_strv),
(gst_registry_binary_load_plugin_dep),
(gst_registry_binary_load_plugin):
* gst/gstregistrybinary.h: (GST_MAGIC_BINARY_VERSION_STR),
(GstBinaryPluginElement), (_GstBinaryDep), (GstBinaryDep):
* gst/gstregistryxml.c: (gst_registry_xml_save_plugin):
Add API for making a GStreamer plugin 'dependent' on external files,
directories or environment variables, so that GStreamer knows when
it needs to re-load GStreamer plugins that wrap other plugin systems.
Fixes bug #350477.
API: add gst_plugin_add_dependency()
API: add gst_plugin_add_dependency_simple()
2009-01-06 17:58:59 +00:00
|
|
|
plugin->file_mtime, file_status.st_mtime,
|
|
|
|
(gint64) plugin->file_size, (gint64) file_status.st_size,
|
2009-01-29 13:22:14 +00:00
|
|
|
env_vars_changed, deps_changed, plugin->filename, filename);
|
2009-03-14 23:07:40 +00:00
|
|
|
gst_registry_remove_plugin (context->registry, plugin);
|
2009-01-23 15:47:08 +00:00
|
|
|
changed |= gst_registry_scan_plugin_file (context, filename,
|
|
|
|
file_status.st_size, file_status.st_mtime);
|
2005-09-15 00:13:26 +00:00
|
|
|
}
|
2005-09-18 06:59:25 +00:00
|
|
|
gst_object_unref (plugin);
|
2005-09-15 00:13:26 +00:00
|
|
|
|
|
|
|
} else {
|
2009-03-14 23:07:40 +00:00
|
|
|
GST_DEBUG_OBJECT (context->registry, "file %s not yet in registry",
|
|
|
|
filename);
|
2009-01-23 15:47:08 +00:00
|
|
|
changed |= gst_registry_scan_plugin_file (context, filename,
|
|
|
|
file_status.st_size, file_status.st_mtime);
|
2005-09-15 00:13:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
g_free (filename);
|
|
|
|
}
|
2002-05-08 20:40:48 +00:00
|
|
|
|
2005-09-15 00:13:26 +00:00
|
|
|
g_dir_close (dir);
|
2006-04-28 20:47:23 +00:00
|
|
|
|
|
|
|
return changed;
|
2002-05-08 20:40:48 +00:00
|
|
|
}
|
|
|
|
|
2009-03-14 23:07:40 +00:00
|
|
|
static gboolean
|
|
|
|
gst_registry_scan_path_internal (GstRegistryScanContext * context,
|
|
|
|
const gchar * path)
|
|
|
|
{
|
|
|
|
gboolean changed;
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (context->registry, "scanning path %s", path);
|
|
|
|
changed = gst_registry_scan_path_level (context, path, 10);
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (context->registry, "registry changed in path %s: %d", path,
|
|
|
|
changed);
|
|
|
|
return changed;
|
|
|
|
}
|
|
|
|
|
2002-05-08 20:40:48 +00:00
|
|
|
/**
|
2005-09-15 00:13:26 +00:00
|
|
|
* gst_registry_scan_path:
|
2009-06-08 23:16:05 +00:00
|
|
|
* @registry: the registry to add found plugins to
|
|
|
|
* @path: the path to scan
|
2002-05-08 20:40:48 +00:00
|
|
|
*
|
2009-06-08 23:16:05 +00:00
|
|
|
* Scan the given path for plugins to add to the registry. The syntax of the
|
|
|
|
* path is specific to the registry.
|
2006-04-28 20:47:23 +00:00
|
|
|
*
|
|
|
|
* Returns: %TRUE if registry changed
|
2002-05-08 20:40:48 +00:00
|
|
|
*/
|
2006-04-28 20:47:23 +00:00
|
|
|
gboolean
|
2005-09-15 00:13:26 +00:00
|
|
|
gst_registry_scan_path (GstRegistry * registry, const gchar * path)
|
2002-05-08 20:40:48 +00:00
|
|
|
{
|
2009-03-14 23:07:40 +00:00
|
|
|
GstRegistryScanContext context;
|
|
|
|
gboolean result;
|
2006-04-28 20:47:23 +00:00
|
|
|
|
|
|
|
g_return_val_if_fail (GST_IS_REGISTRY (registry), FALSE);
|
|
|
|
g_return_val_if_fail (path != NULL, FALSE);
|
2006-01-17 12:08:43 +00:00
|
|
|
|
2009-03-14 23:07:40 +00:00
|
|
|
init_scan_context (&context, registry);
|
2006-04-28 20:47:23 +00:00
|
|
|
|
2009-03-14 23:07:40 +00:00
|
|
|
result = gst_registry_scan_path_internal (&context, path);
|
2006-04-28 20:47:23 +00:00
|
|
|
|
2009-03-14 23:07:40 +00:00
|
|
|
clear_scan_context (&context);
|
|
|
|
result |= context.changed;
|
|
|
|
|
|
|
|
return result;
|
2005-09-15 00:13:26 +00:00
|
|
|
}
|
2002-05-08 20:40:48 +00:00
|
|
|
|
2005-09-18 06:59:25 +00:00
|
|
|
static gboolean
|
|
|
|
_gst_plugin_feature_filter_plugin_name (GstPluginFeature * feature,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
return (strcmp (feature->plugin_name, (gchar *) user_data) == 0);
|
|
|
|
}
|
|
|
|
|
2005-12-02 12:34:47 +00:00
|
|
|
/**
|
|
|
|
* gst_registry_get_feature_list_by_plugin:
|
|
|
|
* @registry: a #GstRegistry.
|
|
|
|
* @name: a plugin name.
|
|
|
|
*
|
|
|
|
* Retrieves a #GList of features of the plugin with name @name.
|
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full) (element-type Gst.PluginFeature): a #GList of
|
|
|
|
* #GstPluginFeature. Use gst_plugin_feature_list_free() after usage.
|
2005-12-02 12:34:47 +00:00
|
|
|
*/
|
2005-09-18 06:59:25 +00:00
|
|
|
GList *
|
|
|
|
gst_registry_get_feature_list_by_plugin (GstRegistry * registry,
|
|
|
|
const gchar * name)
|
|
|
|
{
|
2006-01-17 12:08:43 +00:00
|
|
|
g_return_val_if_fail (GST_IS_REGISTRY (registry), NULL);
|
|
|
|
g_return_val_if_fail (name != NULL, NULL);
|
|
|
|
|
2005-09-18 06:59:25 +00:00
|
|
|
return gst_registry_feature_filter (registry,
|
|
|
|
_gst_plugin_feature_filter_plugin_name, FALSE, (gpointer) name);
|
|
|
|
}
|
2005-09-18 21:24:55 +00:00
|
|
|
|
gst/: Re-commit the registry changes, along with an extra fix:
Original commit message from CVS:
* gst/gst.c: (init_pre), (scan_and_update_registry),
(ensure_current_registry_nonforking),
(ensure_current_registry_forking), (ensure_current_registry),
(init_post), (gst_debug_help), (gst_deinit):
* gst/gst_private.h:
* gst/gstregistry.c: (gst_registry_finalize),
(gst_registry_remove_features_for_plugin_unlocked),
(gst_registry_remove_plugin), (gst_registry_scan_path_level),
(gst_registry_scan_path),
(_priv_gst_registry_remove_cache_plugins),
(_priv_gst_registry_cleanup):
* gst/gstregistry.h:
Re-commit the registry changes, along with an extra fix:
When a cached plugin is encountered at a different file path,
update the stored path in the registry cache so that the parent
process knows where it actually is now when it re-reads the registry
cache. Fixes the thing that broke distcheck with the previous commit.
* tests/check/Makefile.am:
Clean up files named 'core' too when running make clean.
* tests/examples/manual/Makefile.am:
Set up a registry path for running these tests, and clean it properly
for distcheck.
2006-09-28 14:00:43 +00:00
|
|
|
/* Unref and delete the default registry */
|
2005-09-18 21:24:55 +00:00
|
|
|
void
|
2010-03-03 09:26:14 +00:00
|
|
|
_priv_gst_registry_cleanup (void)
|
2005-09-18 21:24:55 +00:00
|
|
|
{
|
2006-02-14 16:15:05 +00:00
|
|
|
GstRegistry *registry;
|
|
|
|
|
|
|
|
g_static_mutex_lock (&_gst_registry_mutex);
|
|
|
|
if ((registry = _gst_registry_default) != NULL) {
|
|
|
|
_gst_registry_default = NULL;
|
|
|
|
}
|
|
|
|
g_static_mutex_unlock (&_gst_registry_mutex);
|
2005-09-18 21:24:55 +00:00
|
|
|
|
2006-02-14 16:15:05 +00:00
|
|
|
/* unref outside of the lock because we can. */
|
|
|
|
if (registry)
|
|
|
|
gst_object_unref (registry);
|
2005-09-18 21:24:55 +00:00
|
|
|
}
|
2005-10-14 11:09:29 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_default_registry_check_feature_version:
|
|
|
|
* @feature_name: the name of the feature (e.g. "oggdemux")
|
|
|
|
* @min_major: the minimum major version number
|
|
|
|
* @min_minor: the minimum minor version number
|
|
|
|
* @min_micro: the minimum micro version number
|
|
|
|
*
|
|
|
|
* Checks whether a plugin feature by the given name exists in the
|
|
|
|
* default registry and whether its version is at least the
|
|
|
|
* version required.
|
|
|
|
*
|
|
|
|
* Returns: #TRUE if the feature could be found and the version is
|
|
|
|
* the same as the required version or newer, and #FALSE otherwise.
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gst_default_registry_check_feature_version (const gchar * feature_name,
|
|
|
|
guint min_major, guint min_minor, guint min_micro)
|
|
|
|
{
|
|
|
|
GstPluginFeature *feature;
|
|
|
|
GstRegistry *registry;
|
|
|
|
gboolean ret = FALSE;
|
|
|
|
|
|
|
|
g_return_val_if_fail (feature_name != NULL, FALSE);
|
|
|
|
|
|
|
|
GST_DEBUG ("Looking up plugin feature '%s'", feature_name);
|
|
|
|
|
|
|
|
registry = gst_registry_get_default ();
|
|
|
|
feature = gst_registry_lookup_feature (registry, feature_name);
|
|
|
|
if (feature) {
|
|
|
|
ret = gst_plugin_feature_check_version (feature, min_major, min_minor,
|
|
|
|
min_micro);
|
|
|
|
gst_object_unref (feature);
|
|
|
|
} else {
|
|
|
|
GST_DEBUG ("Could not find plugin feature '%s'", feature_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
2009-09-14 22:31:10 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
load_plugin_func (gpointer data, gpointer user_data)
|
|
|
|
{
|
|
|
|
GstPlugin *plugin;
|
|
|
|
const gchar *filename;
|
|
|
|
GError *err = NULL;
|
|
|
|
|
|
|
|
filename = (const gchar *) data;
|
|
|
|
GST_DEBUG ("Pre-loading plugin %s", filename);
|
|
|
|
|
|
|
|
plugin = gst_plugin_load_file (filename, &err);
|
|
|
|
|
|
|
|
if (plugin) {
|
|
|
|
GST_INFO ("Loaded plugin: \"%s\"", filename);
|
|
|
|
|
|
|
|
gst_default_registry_add_plugin (plugin);
|
|
|
|
} else {
|
|
|
|
if (err) {
|
|
|
|
/* Report error to user, and free error */
|
|
|
|
GST_ERROR ("Failed to load plugin: %s", err->message);
|
|
|
|
g_error_free (err);
|
|
|
|
} else {
|
|
|
|
GST_WARNING ("Failed to load plugin: \"%s\"", filename);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef GST_DISABLE_REGISTRY
|
|
|
|
/* Unref all plugins marked 'cached', to clear old plugins that no
|
|
|
|
* longer exist. Returns TRUE if any plugins were removed */
|
|
|
|
static gboolean
|
|
|
|
gst_registry_remove_cache_plugins (GstRegistry * registry)
|
|
|
|
{
|
|
|
|
GList *g;
|
|
|
|
GList *g_next;
|
|
|
|
GstPlugin *plugin;
|
|
|
|
gboolean changed = FALSE;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GST_IS_REGISTRY (registry), FALSE);
|
|
|
|
|
|
|
|
GST_OBJECT_LOCK (registry);
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (registry, "removing cached plugins");
|
|
|
|
g = registry->plugins;
|
|
|
|
while (g) {
|
|
|
|
g_next = g->next;
|
|
|
|
plugin = g->data;
|
|
|
|
if (plugin->flags & GST_PLUGIN_FLAG_CACHED) {
|
|
|
|
GST_DEBUG_OBJECT (registry, "removing cached plugin \"%s\"",
|
|
|
|
GST_STR_NULL (plugin->filename));
|
|
|
|
registry->plugins = g_list_delete_link (registry->plugins, g);
|
2009-10-21 03:28:54 +00:00
|
|
|
if (G_LIKELY (plugin->basename))
|
|
|
|
g_hash_table_remove (registry->basename_hash, plugin->basename);
|
2009-09-14 22:31:10 +00:00
|
|
|
gst_registry_remove_features_for_plugin_unlocked (registry, plugin);
|
|
|
|
gst_object_unref (plugin);
|
|
|
|
changed = TRUE;
|
|
|
|
}
|
|
|
|
g = g_next;
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_OBJECT_UNLOCK (registry);
|
|
|
|
|
|
|
|
return changed;
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
REGISTRY_SCAN_AND_UPDATE_FAILURE = 0,
|
|
|
|
REGISTRY_SCAN_AND_UPDATE_SUCCESS_NOT_CHANGED,
|
|
|
|
REGISTRY_SCAN_AND_UPDATE_SUCCESS_UPDATED
|
|
|
|
} GstRegistryScanAndUpdateResult;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* scan_and_update_registry:
|
|
|
|
* @default_registry: the #GstRegistry
|
|
|
|
* @registry_file: registry filename
|
|
|
|
* @write_changes: write registry if it has changed?
|
|
|
|
*
|
|
|
|
* Scans for registry changes and eventually updates the registry cache.
|
|
|
|
*
|
|
|
|
* Return: %REGISTRY_SCAN_AND_UPDATE_FAILURE if the registry could not scanned
|
|
|
|
* or updated, %REGISTRY_SCAN_AND_UPDATE_SUCCESS_NOT_CHANGED if the
|
|
|
|
* registry is clean and %REGISTRY_SCAN_AND_UPDATE_SUCCESS_UPDATED if
|
|
|
|
* it has been updated and the cache needs to be re-read.
|
|
|
|
*/
|
|
|
|
static GstRegistryScanAndUpdateResult
|
|
|
|
scan_and_update_registry (GstRegistry * default_registry,
|
|
|
|
const gchar * registry_file, gboolean write_changes, GError ** error)
|
|
|
|
{
|
|
|
|
const gchar *plugin_path;
|
|
|
|
gboolean changed = FALSE;
|
|
|
|
GList *l;
|
2009-03-14 23:07:40 +00:00
|
|
|
GstRegistryScanContext context;
|
|
|
|
|
|
|
|
GST_INFO ("Validating plugins from registry cache: %s", registry_file);
|
|
|
|
|
|
|
|
init_scan_context (&context, default_registry);
|
2009-09-14 22:31:10 +00:00
|
|
|
|
|
|
|
/* It sounds tempting to just compare the mtime of directories with the mtime
|
|
|
|
* of the registry cache, but it does not work. It would not catch updated
|
|
|
|
* plugins, which might bring more or less features.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* scan paths specified via --gst-plugin-path */
|
|
|
|
GST_DEBUG ("scanning paths added via --gst-plugin-path");
|
|
|
|
for (l = _priv_gst_plugin_paths; l != NULL; l = l->next) {
|
|
|
|
GST_INFO ("Scanning plugin path: \"%s\"", (gchar *) l->data);
|
2009-03-14 23:07:40 +00:00
|
|
|
changed |= gst_registry_scan_path_internal (&context, (gchar *) l->data);
|
2009-09-14 22:31:10 +00:00
|
|
|
}
|
|
|
|
/* keep plugin_paths around in case a re-scan is forced later on */
|
|
|
|
|
|
|
|
/* GST_PLUGIN_PATH specifies a list of directories to scan for
|
|
|
|
* additional plugins. These take precedence over the system plugins */
|
|
|
|
plugin_path = g_getenv ("GST_PLUGIN_PATH");
|
|
|
|
if (plugin_path) {
|
|
|
|
char **list;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
GST_DEBUG ("GST_PLUGIN_PATH set to %s", plugin_path);
|
|
|
|
list = g_strsplit (plugin_path, G_SEARCHPATH_SEPARATOR_S, 0);
|
|
|
|
for (i = 0; list[i]; i++) {
|
2009-03-14 23:07:40 +00:00
|
|
|
changed |= gst_registry_scan_path_internal (&context, list[i]);
|
2009-09-14 22:31:10 +00:00
|
|
|
}
|
|
|
|
g_strfreev (list);
|
|
|
|
} else {
|
|
|
|
GST_DEBUG ("GST_PLUGIN_PATH not set");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* GST_PLUGIN_SYSTEM_PATH specifies a list of plugins that are always
|
|
|
|
* loaded by default. If not set, this defaults to the system-installed
|
|
|
|
* path, and the plugins installed in the user's home directory */
|
|
|
|
plugin_path = g_getenv ("GST_PLUGIN_SYSTEM_PATH");
|
|
|
|
if (plugin_path == NULL) {
|
|
|
|
char *home_plugins;
|
|
|
|
|
|
|
|
GST_DEBUG ("GST_PLUGIN_SYSTEM_PATH not set");
|
|
|
|
|
|
|
|
/* plugins in the user's home directory take precedence over
|
|
|
|
* system-installed ones */
|
|
|
|
home_plugins = g_build_filename (g_get_home_dir (),
|
|
|
|
".gstreamer-" GST_MAJORMINOR, "plugins", NULL);
|
|
|
|
GST_DEBUG ("scanning home plugins %s", home_plugins);
|
2009-03-14 23:07:40 +00:00
|
|
|
changed |= gst_registry_scan_path_internal (&context, home_plugins);
|
2009-09-14 22:31:10 +00:00
|
|
|
g_free (home_plugins);
|
|
|
|
|
|
|
|
/* add the main (installed) library path */
|
|
|
|
GST_DEBUG ("scanning main plugins %s", PLUGINDIR);
|
2009-03-14 23:07:40 +00:00
|
|
|
changed |= gst_registry_scan_path_internal (&context, PLUGINDIR);
|
2009-09-14 22:31:10 +00:00
|
|
|
|
|
|
|
#ifdef G_OS_WIN32
|
|
|
|
{
|
|
|
|
char *base_dir;
|
|
|
|
char *dir;
|
|
|
|
|
|
|
|
base_dir =
|
|
|
|
g_win32_get_package_installation_directory_of_module
|
|
|
|
(_priv_gst_dll_handle);
|
|
|
|
|
|
|
|
dir = g_build_filename (base_dir, "lib", "gstreamer-0.10", NULL);
|
|
|
|
GST_DEBUG ("scanning DLL dir %s", dir);
|
|
|
|
|
2009-03-14 23:07:40 +00:00
|
|
|
changed |= gst_registry_scan_path_internal (&context, dir);
|
2009-09-14 22:31:10 +00:00
|
|
|
|
|
|
|
g_free (dir);
|
|
|
|
g_free (base_dir);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
} else {
|
|
|
|
gchar **list;
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
GST_DEBUG ("GST_PLUGIN_SYSTEM_PATH set to %s", plugin_path);
|
|
|
|
list = g_strsplit (plugin_path, G_SEARCHPATH_SEPARATOR_S, 0);
|
|
|
|
for (i = 0; list[i]; i++) {
|
2009-03-14 23:07:40 +00:00
|
|
|
changed |= gst_registry_scan_path_internal (&context, list[i]);
|
2009-09-14 22:31:10 +00:00
|
|
|
}
|
|
|
|
g_strfreev (list);
|
|
|
|
}
|
|
|
|
|
2009-03-14 23:07:40 +00:00
|
|
|
clear_scan_context (&context);
|
|
|
|
changed |= context.changed;
|
|
|
|
|
2009-09-14 22:31:10 +00:00
|
|
|
/* Remove cached plugins so stale info is cleared. */
|
|
|
|
changed |= gst_registry_remove_cache_plugins (default_registry);
|
|
|
|
|
|
|
|
if (!changed) {
|
|
|
|
GST_INFO ("Registry cache has not changed");
|
|
|
|
return REGISTRY_SCAN_AND_UPDATE_SUCCESS_NOT_CHANGED;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!write_changes) {
|
|
|
|
GST_INFO ("Registry cache changed, but writing is disabled. Not writing.");
|
|
|
|
return REGISTRY_SCAN_AND_UPDATE_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_INFO ("Registry cache changed. Writing new registry cache");
|
|
|
|
if (!gst_registry_binary_write_cache (default_registry, registry_file)) {
|
|
|
|
g_set_error (error, GST_CORE_ERROR, GST_CORE_ERROR_FAILED,
|
|
|
|
_("Error writing registry cache to %s: %s"),
|
|
|
|
registry_file, g_strerror (errno));
|
|
|
|
return REGISTRY_SCAN_AND_UPDATE_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_INFO ("Registry cache written successfully");
|
|
|
|
return REGISTRY_SCAN_AND_UPDATE_SUCCESS_UPDATED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
ensure_current_registry (GError ** error)
|
|
|
|
{
|
|
|
|
gchar *registry_file;
|
|
|
|
GstRegistry *default_registry;
|
|
|
|
gboolean ret = TRUE;
|
2009-03-14 23:07:40 +00:00
|
|
|
gboolean do_update = TRUE;
|
|
|
|
gboolean have_cache = TRUE;
|
2009-09-14 22:31:10 +00:00
|
|
|
|
|
|
|
default_registry = gst_registry_get_default ();
|
|
|
|
registry_file = g_strdup (g_getenv ("GST_REGISTRY"));
|
|
|
|
if (registry_file == NULL) {
|
|
|
|
registry_file = g_build_filename (g_get_home_dir (),
|
|
|
|
".gstreamer-" GST_MAJORMINOR, "registry." HOST_CPU ".bin", NULL);
|
|
|
|
}
|
|
|
|
|
2009-03-14 23:07:40 +00:00
|
|
|
if (!_gst_disable_registry_cache) {
|
|
|
|
GST_INFO ("reading registry cache: %s", registry_file);
|
|
|
|
have_cache = gst_registry_binary_read_cache (default_registry,
|
|
|
|
registry_file);
|
2009-01-30 13:04:52 +00:00
|
|
|
/* Only ever read the registry cache once, then disable it for
|
|
|
|
* subsequent updates during the program lifetime */
|
|
|
|
_gst_disable_registry_cache = TRUE;
|
2009-03-14 23:07:40 +00:00
|
|
|
}
|
2009-09-14 22:31:10 +00:00
|
|
|
|
|
|
|
if (have_cache) {
|
|
|
|
do_update = !_priv_gst_disable_registry_update;
|
|
|
|
if (do_update) {
|
|
|
|
const gchar *update_env;
|
|
|
|
|
|
|
|
if ((update_env = g_getenv ("GST_REGISTRY_UPDATE"))) {
|
|
|
|
/* do update for any value different from "no" */
|
|
|
|
do_update = (strcmp (update_env, "no") != 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (do_update) {
|
|
|
|
/* now check registry */
|
|
|
|
GST_DEBUG ("Updating registry cache");
|
|
|
|
scan_and_update_registry (default_registry, registry_file, TRUE, error);
|
|
|
|
} else {
|
|
|
|
GST_DEBUG ("Not updating registry cache (disabled)");
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free (registry_file);
|
|
|
|
GST_INFO ("registry reading and updating done, result = %d", ret);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
#endif /* GST_DISABLE_REGISTRY */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_registry_fork_is_enabled:
|
|
|
|
*
|
2009-01-30 14:18:13 +00:00
|
|
|
* By default GStreamer will perform scanning and rebuilding of the
|
|
|
|
* registry file using a helper child process.
|
2009-09-14 22:31:10 +00:00
|
|
|
*
|
|
|
|
* Applications might want to disable this behaviour with the
|
2009-01-30 14:18:13 +00:00
|
|
|
* gst_registry_fork_set_enabled() function, in which case new plugins
|
|
|
|
* are scanned (and loaded) into the application process.
|
2009-09-14 22:31:10 +00:00
|
|
|
*
|
2009-01-30 14:18:13 +00:00
|
|
|
* Returns: %TRUE if GStreamer will use the child helper process when
|
|
|
|
* rebuilding the registry.
|
2009-09-14 22:31:10 +00:00
|
|
|
*
|
|
|
|
* Since: 0.10.10
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gst_registry_fork_is_enabled (void)
|
|
|
|
{
|
|
|
|
return _gst_enable_registry_fork;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_registry_fork_set_enabled:
|
2009-01-30 14:18:13 +00:00
|
|
|
* @enabled: whether rebuilding the registry can use a temporary child helper process.
|
2009-09-14 22:31:10 +00:00
|
|
|
*
|
2009-01-30 14:18:13 +00:00
|
|
|
* Applications might want to disable/enable spawning of a child helper process
|
|
|
|
* when rebuilding the registry. See gst_registry_fork_is_enabled() for more
|
|
|
|
* information.
|
2009-09-14 22:31:10 +00:00
|
|
|
*
|
|
|
|
* Since: 0.10.10
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_registry_fork_set_enabled (gboolean enabled)
|
|
|
|
{
|
|
|
|
_gst_enable_registry_fork = enabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_update_registry:
|
|
|
|
*
|
|
|
|
* Forces GStreamer to re-scan its plugin paths and update the default
|
|
|
|
* plugin registry.
|
|
|
|
*
|
|
|
|
* Applications will almost never need to call this function, it is only
|
|
|
|
* useful if the application knows new plugins have been installed (or old
|
|
|
|
* ones removed) since the start of the application (or, to be precise, the
|
|
|
|
* first call to gst_init()) and the application wants to make use of any
|
|
|
|
* newly-installed plugins without restarting the application.
|
|
|
|
*
|
|
|
|
* Applications should assume that the registry update is neither atomic nor
|
|
|
|
* thread-safe and should therefore not have any dynamic pipelines running
|
|
|
|
* (including the playbin and decodebin elements) and should also not create
|
|
|
|
* any elements or access the GStreamer registry while the update is in
|
|
|
|
* progress.
|
|
|
|
*
|
|
|
|
* Note that this function may block for a significant amount of time.
|
|
|
|
*
|
|
|
|
* Returns: %TRUE if the registry has been updated successfully (does not
|
|
|
|
* imply that there were changes), otherwise %FALSE.
|
|
|
|
*
|
|
|
|
* Since: 0.10.12
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gst_update_registry (void)
|
|
|
|
{
|
|
|
|
gboolean res;
|
|
|
|
|
|
|
|
#ifndef GST_DISABLE_REGISTRY
|
|
|
|
GError *err = NULL;
|
|
|
|
|
|
|
|
res = ensure_current_registry (&err);
|
|
|
|
if (err) {
|
|
|
|
GST_WARNING ("registry update failed: %s", err->message);
|
|
|
|
g_error_free (err);
|
|
|
|
} else {
|
|
|
|
GST_LOG ("registry update succeeded");
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
GST_WARNING ("registry update failed: %s", "registry disabled");
|
|
|
|
res = TRUE;
|
|
|
|
#endif /* GST_DISABLE_REGISTRY */
|
|
|
|
|
|
|
|
if (_priv_gst_preload_plugins) {
|
|
|
|
GST_DEBUG ("Preloading indicated plugins...");
|
|
|
|
g_slist_foreach (_priv_gst_preload_plugins, load_plugin_func, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
2009-11-10 17:03:43 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_registry_get_feature_list_cookie:
|
2009-11-25 12:23:53 +00:00
|
|
|
* @registry: the registry
|
2009-11-10 17:03:43 +00:00
|
|
|
*
|
|
|
|
* Returns the registrys feature list cookie. This changes
|
|
|
|
* every time a feature is added or removed from the registry.
|
|
|
|
*
|
|
|
|
* Returns: the feature list cookie.
|
|
|
|
*
|
|
|
|
* Since: 0.10.26
|
|
|
|
*/
|
|
|
|
guint32
|
|
|
|
gst_registry_get_feature_list_cookie (GstRegistry * registry)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GST_IS_REGISTRY (registry), 0);
|
|
|
|
|
|
|
|
return registry->priv->cookie;
|
|
|
|
}
|