2001-01-07 04:51:31 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
* 2000 Wim Taymans <wtay@chello.be>
|
|
|
|
*
|
2002-02-04 20:33:14 +00:00
|
|
|
* gst-register.c: Plugin subsystem for loading elements, types, and libs
|
2001-01-07 04:51:31 +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.
|
|
|
|
*/
|
|
|
|
|
2000-08-28 20:20:55 +00:00
|
|
|
#include <gst/gst.h>
|
|
|
|
|
2001-01-07 16:14:35 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2001-01-07 04:51:31 +00:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
2001-01-07 05:30:07 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
2002-05-08 20:40:48 +00:00
|
|
|
extern gboolean _gst_registry_auto_load;
|
|
|
|
static gint num_features = 0;
|
|
|
|
static gint num_plugins = 0;
|
2001-01-17 01:59:57 +00:00
|
|
|
|
2002-05-08 20:40:48 +00:00
|
|
|
static void
|
|
|
|
plugin_added_func (GstRegistry *registry, GstPlugin *plugin, gpointer user_data)
|
|
|
|
{
|
2002-12-08 14:39:38 +00:00
|
|
|
g_print ("added plugin %s with %d feature(s)\n", plugin->name,
|
2002-09-12 19:26:12 +00:00
|
|
|
plugin->numfeatures);
|
2001-01-17 01:59:57 +00:00
|
|
|
|
2002-05-08 20:40:48 +00:00
|
|
|
num_features += plugin->numfeatures;
|
|
|
|
num_plugins++;
|
2001-01-07 04:51:31 +00:00
|
|
|
}
|
|
|
|
|
2002-12-08 14:39:38 +00:00
|
|
|
int main (int argc,char *argv[])
|
2002-05-08 20:40:48 +00:00
|
|
|
{
|
|
|
|
GList *registries;
|
2002-08-11 21:51:56 +00:00
|
|
|
GList *path_spill = NULL; /* used for path spill from failing registries */
|
2001-01-07 04:51:31 +00:00
|
|
|
|
2002-05-08 20:40:48 +00:00
|
|
|
/* Init gst */
|
|
|
|
_gst_registry_auto_load = FALSE;
|
|
|
|
gst_init (&argc, &argv);
|
2001-01-07 16:14:35 +00:00
|
|
|
|
2002-05-08 20:40:48 +00:00
|
|
|
registries = gst_registry_pool_list ();
|
|
|
|
registries = g_list_reverse (registries);
|
2001-12-14 20:56:51 +00:00
|
|
|
|
2002-05-08 20:40:48 +00:00
|
|
|
while (registries) {
|
|
|
|
GstRegistry *registry = GST_REGISTRY (registries->data);
|
2002-08-11 21:51:56 +00:00
|
|
|
if (path_spill)
|
|
|
|
{
|
|
|
|
GList *iter;
|
|
|
|
|
|
|
|
/* add spilled paths to this registry;
|
|
|
|
* since they're spilled they probably weren't loaded correctly
|
|
|
|
* so we should give a lower priority registry the chance to do them */
|
|
|
|
for (iter = path_spill; iter; iter = iter->next)
|
|
|
|
{
|
|
|
|
g_print ("added path %s to %s \n",
|
|
|
|
(const char *) iter->data, registry->name);
|
|
|
|
gst_registry_add_path (registry, (const gchar *) iter->data);
|
|
|
|
}
|
|
|
|
g_list_free (path_spill);
|
|
|
|
path_spill = NULL;
|
|
|
|
}
|
2001-01-07 16:14:35 +00:00
|
|
|
|
2002-12-08 14:39:38 +00:00
|
|
|
g_signal_connect (G_OBJECT (registry), "plugin_added",
|
|
|
|
G_CALLBACK (plugin_added_func), NULL);
|
2001-01-17 01:59:57 +00:00
|
|
|
|
2002-05-08 20:40:48 +00:00
|
|
|
if (registry->flags & GST_REGISTRY_WRITABLE) {
|
2003-04-23 19:59:38 +00:00
|
|
|
char *location;
|
|
|
|
g_object_get (registry, "location", &location, NULL);
|
|
|
|
g_print ("rebuilding %s (%s)\n", registry->name, location);
|
|
|
|
g_free (location);
|
2002-05-08 20:40:48 +00:00
|
|
|
gst_registry_rebuild (registry);
|
|
|
|
gst_registry_save (registry);
|
2001-01-07 16:14:35 +00:00
|
|
|
}
|
2002-05-08 20:40:48 +00:00
|
|
|
else {
|
2002-08-11 21:51:56 +00:00
|
|
|
g_print ("trying to load %s\n", registry->name);
|
|
|
|
if (!gst_registry_load (registry))
|
|
|
|
{
|
|
|
|
g_print ("error loading %s\n", registry->name);
|
|
|
|
/* move over paths from this registry to the next one */
|
2002-12-08 14:39:38 +00:00
|
|
|
path_spill = g_list_concat (path_spill,
|
2002-08-11 21:51:56 +00:00
|
|
|
gst_registry_get_path_list (registry));
|
|
|
|
g_assert (path_spill != NULL);
|
|
|
|
}
|
2001-01-17 01:59:57 +00:00
|
|
|
}
|
2002-05-08 20:40:48 +00:00
|
|
|
registries = g_list_next (registries);
|
|
|
|
}
|
2000-08-28 20:20:55 +00:00
|
|
|
|
2002-05-08 20:40:48 +00:00
|
|
|
g_print ("loaded %d plugins with %d features\n", num_plugins, num_features);
|
|
|
|
|
2002-09-12 19:26:12 +00:00
|
|
|
return (0);
|
2000-08-28 20:20:55 +00:00
|
|
|
}
|
|
|
|
|