ba3dd602864e04eb0ddff3a514bf966f747ed6f8
[platform/upstream/gstreamer.git] / gst / gstplugin.c
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *                    2000 Wim Taymans <wtay@chello.be>
4  *
5  * gstplugin.c: Plugin subsystem for loading elements, types, and libs
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
20  * Boston, MA 02110-1301, USA.
21  */
22
23 /**
24  * SECTION:gstplugin
25  * @short_description: Container for features loaded from a shared object module
26  * @see_also: #GstPluginFeature, #GstElementFactory
27  *
28  * GStreamer is extensible, so #GstElement instances can be loaded at runtime.
29  * A plugin system can provide one or more of the basic
30  * <application>GStreamer</application> #GstPluginFeature subclasses.
31  *
32  * A plugin should export a symbol <symbol>gst_plugin_desc</symbol> that is a
33  * struct of type #GstPluginDesc.
34  * the plugin loader will check the version of the core library the plugin was
35  * linked against and will create a new #GstPlugin. It will then call the
36  * #GstPluginInitFunc function that was provided in the
37  * <symbol>gst_plugin_desc</symbol>.
38  *
39  * Once you have a handle to a #GstPlugin (e.g. from the #GstRegistry), you
40  * can add any object that subclasses #GstPluginFeature.
41  *
42  * Usually plugins are always automatically loaded so you don't need to call
43  * gst_plugin_load() explicitly to bring it into memory. There are options to
44  * statically link plugins to an app or even use GStreamer without a plugin
45  * repository in which case gst_plugin_load() can be needed to bring the plugin
46  * into memory.
47  */
48
49 #ifdef HAVE_CONFIG_H
50 #include "config.h"
51 #endif
52
53 #include "gst_private.h"
54
55 #include <glib/gstdio.h>
56 #include <sys/types.h>
57 #ifdef HAVE_DIRENT_H
58 #include <dirent.h>
59 #endif
60 #ifdef HAVE_UNISTD_H
61 #include <unistd.h>
62 #endif
63 #include <signal.h>
64 #include <errno.h>
65 #include <string.h>
66
67 #include "glib-compat-private.h"
68
69 #include <gst/gst.h>
70
71 #define GST_CAT_DEFAULT GST_CAT_PLUGIN_LOADING
72
73 static guint _num_static_plugins;       /* 0    */
74 static GstPluginDesc *_static_plugins;  /* NULL */
75 static gboolean _gst_plugin_inited;
76 static gchar **_plugin_loading_whitelist;       /* NULL */
77
78 /* static variables for segfault handling of plugin loading */
79 static char *_gst_plugin_fault_handler_filename = NULL;
80
81 /* list of valid licenses.
82  * One of these must be specified or the plugin won't be loaded
83  * Please file a bug to request any additional license be added.
84  *
85  * GPL: http://www.gnu.org/copyleft/gpl.html
86  * LGPL: http://www.gnu.org/copyleft/lesser.html
87  * QPL: http://www.trolltech.com/licenses/qpl.html
88  * MPL: http://www.opensource.org/licenses/mozilla1.1.php
89  * MIT/X11: http://www.opensource.org/licenses/mit-license.php
90  * 3-clause BSD: http://www.opensource.org/licenses/bsd-license.php
91  */
92 static const gchar valid_licenses[] = "LGPL\000"        /* GNU Lesser General Public License */
93     "GPL\000"                   /* GNU General Public License */
94     "QPL\000"                   /* Trolltech Qt Public License */
95     "GPL/QPL\000"               /* Combi-license of GPL + QPL */
96     "MPL\000"                   /* MPL 1.1 license */
97     "BSD\000"                   /* 3-clause BSD license */
98     "MIT/X11\000"               /* MIT/X11 license */
99     "Proprietary\000"           /* Proprietary license */
100     GST_LICENSE_UNKNOWN;        /* some other license */
101
102 static const guint8 valid_licenses_idx[] = { 0, 5, 9, 13, 21, 25, 29, 37, 49 };
103
104 static GstPlugin *gst_plugin_register_func (GstPlugin * plugin,
105     const GstPluginDesc * desc, gpointer user_data);
106 static void gst_plugin_desc_copy (GstPluginDesc * dest,
107     const GstPluginDesc * src);
108
109 static void gst_plugin_ext_dep_free (GstPluginDep * dep);
110
111 G_DEFINE_TYPE (GstPlugin, gst_plugin, GST_TYPE_OBJECT);
112
113 static void
114 gst_plugin_init (GstPlugin * plugin)
115 {
116   plugin->priv =
117       G_TYPE_INSTANCE_GET_PRIVATE (plugin, GST_TYPE_PLUGIN, GstPluginPrivate);
118 }
119
120 static void
121 gst_plugin_finalize (GObject * object)
122 {
123   GstPlugin *plugin = GST_PLUGIN_CAST (object);
124
125   GST_DEBUG ("finalizing plugin %" GST_PTR_FORMAT, plugin);
126
127   /* FIXME: make registry add a weak ref instead */
128 #if 0
129   GstRegistry *registry = gst_registry_get ();
130   GList *g;
131   for (g = registry->plugins; g; g = g->next) {
132     if (g->data == (gpointer) plugin) {
133       g_warning ("removing plugin that is still in registry");
134     }
135   }
136 #endif
137
138   g_free (plugin->filename);
139   g_free (plugin->basename);
140
141   g_list_foreach (plugin->priv->deps, (GFunc) gst_plugin_ext_dep_free, NULL);
142   g_list_free (plugin->priv->deps);
143   plugin->priv->deps = NULL;
144
145   if (plugin->priv->cache_data) {
146     gst_structure_free (plugin->priv->cache_data);
147   }
148
149   G_OBJECT_CLASS (gst_plugin_parent_class)->finalize (object);
150 }
151
152 static void
153 gst_plugin_class_init (GstPluginClass * klass)
154 {
155   G_OBJECT_CLASS (klass)->finalize = gst_plugin_finalize;
156
157   g_type_class_add_private (klass, sizeof (GstPluginPrivate));
158 }
159
160 GQuark
161 gst_plugin_error_quark (void)
162 {
163   static GQuark quark = 0;
164
165   if (!quark)
166     quark = g_quark_from_static_string ("gst_plugin_error");
167   return quark;
168 }
169
170 /**
171  * gst_plugin_register_static:
172  * @major_version: the major version number of the GStreamer core that the
173  *     plugin was compiled for, you can just use GST_VERSION_MAJOR here
174  * @minor_version: the minor version number of the GStreamer core that the
175  *     plugin was compiled for, you can just use GST_VERSION_MINOR here
176  * @name: a unique name of the plugin (ideally prefixed with an application- or
177  *     library-specific namespace prefix in order to avoid name conflicts in
178  *     case a similar plugin with the same name ever gets added to GStreamer)
179  * @description: description of the plugin
180  * @init_func: (scope call): pointer to the init function of this plugin.
181  * @version: version string of the plugin
182  * @license: effective license of plugin. Must be one of the approved licenses
183  *     (see #GstPluginDesc above) or the plugin will not be registered.
184  * @source: source module plugin belongs to
185  * @package: shipped package plugin belongs to
186  * @origin: URL to provider of plugin
187  *
188  * Registers a static plugin, ie. a plugin which is private to an application
189  * or library and contained within the application or library (as opposed to
190  * being shipped as a separate module file).
191  *
192  * You must make sure that GStreamer has been initialised (with gst_init() or
193  * via gst_init_get_option_group()) before calling this function.
194  *
195  * Returns: %TRUE if the plugin was registered correctly, otherwise %FALSE.
196  */
197 gboolean
198 gst_plugin_register_static (gint major_version, gint minor_version,
199     const gchar * name, const gchar * description, GstPluginInitFunc init_func,
200     const gchar * version, const gchar * license, const gchar * source,
201     const gchar * package, const gchar * origin)
202 {
203   GstPluginDesc desc = { major_version, minor_version, name, description,
204     init_func, version, license, source, package, origin, NULL,
205   };
206   GstPlugin *plugin;
207   gboolean res = FALSE;
208
209   g_return_val_if_fail (name != NULL, FALSE);
210   g_return_val_if_fail (description != NULL, FALSE);
211   g_return_val_if_fail (init_func != NULL, FALSE);
212   g_return_val_if_fail (version != NULL, FALSE);
213   g_return_val_if_fail (license != NULL, FALSE);
214   g_return_val_if_fail (source != NULL, FALSE);
215   g_return_val_if_fail (package != NULL, FALSE);
216   g_return_val_if_fail (origin != NULL, FALSE);
217
218   /* make sure gst_init() has been called */
219   g_return_val_if_fail (_gst_plugin_inited != FALSE, FALSE);
220
221   GST_LOG ("attempting to load static plugin \"%s\" now...", name);
222   plugin = g_object_newv (GST_TYPE_PLUGIN, 0, NULL);
223   if (gst_plugin_register_func (plugin, &desc, NULL) != NULL) {
224     GST_INFO ("registered static plugin \"%s\"", name);
225     res = gst_registry_add_plugin (gst_registry_get (), plugin);
226     GST_INFO ("added static plugin \"%s\", result: %d", name, res);
227   }
228   return res;
229 }
230
231 /**
232  * gst_plugin_register_static_full:
233  * @major_version: the major version number of the GStreamer core that the
234  *     plugin was compiled for, you can just use GST_VERSION_MAJOR here
235  * @minor_version: the minor version number of the GStreamer core that the
236  *     plugin was compiled for, you can just use GST_VERSION_MINOR here
237  * @name: a unique name of the plugin (ideally prefixed with an application- or
238  *     library-specific namespace prefix in order to avoid name conflicts in
239  *     case a similar plugin with the same name ever gets added to GStreamer)
240  * @description: description of the plugin
241  * @init_full_func: (scope call): pointer to the init function with user data
242  *     of this plugin.
243  * @version: version string of the plugin
244  * @license: effective license of plugin. Must be one of the approved licenses
245  *     (see #GstPluginDesc above) or the plugin will not be registered.
246  * @source: source module plugin belongs to
247  * @package: shipped package plugin belongs to
248  * @origin: URL to provider of plugin
249  * @user_data: gpointer to user data
250  *
251  * Registers a static plugin, ie. a plugin which is private to an application
252  * or library and contained within the application or library (as opposed to
253  * being shipped as a separate module file) with a #GstPluginInitFullFunc
254  * which allows user data to be passed to the callback function (useful
255  * for bindings).
256  *
257  * You must make sure that GStreamer has been initialised (with gst_init() or
258  * via gst_init_get_option_group()) before calling this function.
259  *
260  * Returns: %TRUE if the plugin was registered correctly, otherwise %FALSE.
261  */
262 gboolean
263 gst_plugin_register_static_full (gint major_version, gint minor_version,
264     const gchar * name, const gchar * description,
265     GstPluginInitFullFunc init_full_func, const gchar * version,
266     const gchar * license, const gchar * source, const gchar * package,
267     const gchar * origin, gpointer user_data)
268 {
269   GstPluginDesc desc = { major_version, minor_version, name, description,
270     (GstPluginInitFunc) init_full_func, version, license, source, package,
271     origin, NULL,
272   };
273   GstPlugin *plugin;
274   gboolean res = FALSE;
275
276   g_return_val_if_fail (name != NULL, FALSE);
277   g_return_val_if_fail (description != NULL, FALSE);
278   g_return_val_if_fail (init_full_func != NULL, FALSE);
279   g_return_val_if_fail (version != NULL, FALSE);
280   g_return_val_if_fail (license != NULL, FALSE);
281   g_return_val_if_fail (source != NULL, FALSE);
282   g_return_val_if_fail (package != NULL, FALSE);
283   g_return_val_if_fail (origin != NULL, FALSE);
284
285   /* make sure gst_init() has been called */
286   g_return_val_if_fail (_gst_plugin_inited != FALSE, FALSE);
287
288   GST_LOG ("attempting to load static plugin \"%s\" now...", name);
289   plugin = g_object_newv (GST_TYPE_PLUGIN, 0, NULL);
290   if (gst_plugin_register_func (plugin, &desc, user_data) != NULL) {
291     GST_INFO ("registered static plugin \"%s\"", name);
292     res = gst_registry_add_plugin (gst_registry_get (), plugin);
293     GST_INFO ("added static plugin \"%s\", result: %d", name, res);
294   }
295   return res;
296 }
297
298 void
299 _priv_gst_plugin_initialize (void)
300 {
301   const gchar *whitelist;
302   guint i;
303
304   _gst_plugin_inited = TRUE;
305
306   whitelist = g_getenv ("GST_PLUGIN_LOADING_WHITELIST");
307   if (whitelist != NULL && *whitelist != '\0') {
308     _plugin_loading_whitelist = g_strsplit (whitelist,
309         G_SEARCHPATH_SEPARATOR_S, -1);
310     for (i = 0; _plugin_loading_whitelist[i] != NULL; ++i) {
311       GST_INFO ("plugins whitelist entry: %s", _plugin_loading_whitelist[i]);
312     }
313   }
314
315   /* now register all static plugins */
316   GST_INFO ("registering %u static plugins", _num_static_plugins);
317   for (i = 0; i < _num_static_plugins; ++i) {
318     gst_plugin_register_static (_static_plugins[i].major_version,
319         _static_plugins[i].minor_version, _static_plugins[i].name,
320         _static_plugins[i].description, _static_plugins[i].plugin_init,
321         _static_plugins[i].version, _static_plugins[i].license,
322         _static_plugins[i].source, _static_plugins[i].package,
323         _static_plugins[i].origin);
324   }
325
326   if (_static_plugins) {
327     free (_static_plugins);
328     _static_plugins = NULL;
329     _num_static_plugins = 0;
330   }
331 }
332
333 /* Whitelist entry format:
334  *
335  *   plugin1,plugin2@pathprefix or
336  *   plugin1,plugin2@* or just
337  *   plugin1,plugin2 or
338  *   source-package@pathprefix or
339  *   source-package@* or just
340  *   source-package
341  *
342  * ie. the bit before the path will be checked against both the plugin
343  * name and the plugin's source package name, to keep the format simple.
344  */
345 static gboolean
346 gst_plugin_desc_matches_whitelist_entry (GstPluginDesc * desc,
347     const gchar * filename, const gchar * pattern)
348 {
349   const gchar *sep;
350   gboolean ret = FALSE;
351   gchar *name;
352
353   GST_LOG ("Whitelist pattern '%s', plugin: %s of %s@%s", pattern, desc->name,
354       desc->source, GST_STR_NULL (filename));
355
356   /* do we have a path prefix? */
357   sep = strchr (pattern, '@');
358   if (sep != NULL && strcmp (sep, "@*") != 0 && strcmp (sep, "@") != 0) {
359     /* paths are not canonicalised or treated with realpath() here. This
360      * should be good enough for our use case, since we just use the paths
361      * autotools uses, and those will be constructed from the same prefix. */
362     if (filename != NULL && !g_str_has_prefix (filename, sep + 1))
363       return FALSE;
364
365     GST_LOG ("%s matches path prefix %s", GST_STR_NULL (filename), sep + 1);
366   }
367
368   if (sep != NULL) {
369     name = g_strndup (pattern, (gsize) (sep - pattern));
370   } else {
371     name = g_strdup (pattern);
372   }
373
374   g_strstrip (name);
375   if (!g_ascii_isalnum (*name)) {
376     GST_WARNING ("Invalid whitelist pattern: %s", pattern);
377     goto done;
378   }
379
380   /* now check plugin names / source package name */
381   if (strchr (name, ',') == NULL) {
382     /* only a single name: either a plugin name or the source package name */
383     ret = (strcmp (desc->source, name) == 0 || strcmp (desc->name, name) == 0);
384   } else {
385     gchar **n, **names;
386
387     /* multiple names: assume these are plugin names */
388     names = g_strsplit (name, ",", -1);
389     for (n = names; n != NULL && *n != NULL; ++n) {
390       g_strstrip (*n);
391       if (strcmp (desc->name, *n) == 0) {
392         ret = TRUE;
393         break;
394       }
395     }
396     g_strfreev (names);
397   }
398
399   GST_LOG ("plugin / source package name match: %d", ret);
400
401 done:
402
403   g_free (name);
404   return ret;
405 }
406
407 gboolean
408 priv_gst_plugin_desc_is_whitelisted (GstPluginDesc * desc,
409     const gchar * filename)
410 {
411   gchar **entry;
412
413   if (_plugin_loading_whitelist == NULL)
414     return TRUE;
415
416   for (entry = _plugin_loading_whitelist; *entry != NULL; ++entry) {
417     if (gst_plugin_desc_matches_whitelist_entry (desc, filename, *entry)) {
418       GST_LOG ("Plugin %s is in whitelist", filename);
419       return TRUE;
420     }
421   }
422
423   GST_LOG ("Plugin %s (package %s, file %s) not in whitelist", desc->name,
424       desc->source, filename);
425   return FALSE;
426 }
427
428 gboolean
429 priv_gst_plugin_loading_have_whitelist (void)
430 {
431   return (_plugin_loading_whitelist != NULL);
432 }
433
434 guint32
435 priv_gst_plugin_loading_get_whitelist_hash (void)
436 {
437   guint32 hash = 0;
438
439   if (_plugin_loading_whitelist != NULL) {
440     gchar **w;
441
442     for (w = _plugin_loading_whitelist; *w != NULL; ++w)
443       hash = (hash << 1) ^ g_str_hash (*w);
444   }
445
446   return hash;
447 }
448
449 /* this function could be extended to check if the plugin license matches the
450  * applications license (would require the app to register its license somehow).
451  * We'll wait for someone who's interested in it to code it :)
452  */
453 static gboolean
454 gst_plugin_check_license (const gchar * license)
455 {
456   gint i;
457
458   for (i = 0; i < G_N_ELEMENTS (valid_licenses_idx); ++i) {
459     if (strcmp (license, valid_licenses + valid_licenses_idx[i]) == 0)
460       return TRUE;
461   }
462   return FALSE;
463 }
464
465 static gboolean
466 gst_plugin_check_version (gint major, gint minor)
467 {
468   /* return NULL if the major and minor version numbers are not compatible */
469   /* with ours. */
470   if (major != GST_VERSION_MAJOR || minor > GST_VERSION_MINOR)
471     return FALSE;
472
473   return TRUE;
474 }
475
476 static GstPlugin *
477 gst_plugin_register_func (GstPlugin * plugin, const GstPluginDesc * desc,
478     gpointer user_data)
479 {
480   if (!gst_plugin_check_version (desc->major_version, desc->minor_version)) {
481     if (GST_CAT_DEFAULT)
482       GST_WARNING ("plugin \"%s\" has incompatible version "
483           "(plugin: %d.%d, gst: %d,%d), not loading",
484           GST_STR_NULL (plugin->filename), desc->major_version,
485           desc->minor_version, GST_VERSION_MAJOR, GST_VERSION_MINOR);
486     return NULL;
487   }
488
489   if (!desc->license || !desc->description || !desc->source ||
490       !desc->package || !desc->origin) {
491     if (GST_CAT_DEFAULT)
492       GST_WARNING ("plugin \"%s\" has missing detail in GstPluginDesc, not "
493           "loading", GST_STR_NULL (plugin->filename));
494     return NULL;
495   }
496
497   if (!gst_plugin_check_license (desc->license)) {
498     if (GST_CAT_DEFAULT)
499       GST_WARNING ("plugin \"%s\" has invalid license \"%s\", not loading",
500           GST_STR_NULL (plugin->filename), desc->license);
501     return NULL;
502   }
503
504   if (GST_CAT_DEFAULT)
505     GST_LOG ("plugin \"%s\" looks good", GST_STR_NULL (plugin->filename));
506
507   gst_plugin_desc_copy (&plugin->desc, desc);
508
509   /* make resident so we're really sure it never gets unloaded again.
510    * Theoretically this is not needed, but practically it doesn't hurt.
511    * And we're rather safe than sorry. */
512   if (plugin->module)
513     g_module_make_resident (plugin->module);
514
515   if (user_data) {
516     if (!(((GstPluginInitFullFunc) (desc->plugin_init)) (plugin, user_data))) {
517       if (GST_CAT_DEFAULT)
518         GST_WARNING ("plugin \"%s\" failed to initialise",
519             GST_STR_NULL (plugin->filename));
520       return NULL;
521     }
522   } else {
523     if (!((desc->plugin_init) (plugin))) {
524       if (GST_CAT_DEFAULT)
525         GST_WARNING ("plugin \"%s\" failed to initialise",
526             GST_STR_NULL (plugin->filename));
527       return NULL;
528     }
529   }
530
531   if (GST_CAT_DEFAULT)
532     GST_LOG ("plugin \"%s\" initialised", GST_STR_NULL (plugin->filename));
533
534   return plugin;
535 }
536
537 #ifdef HAVE_SIGACTION
538 static struct sigaction oldaction;
539 static gboolean _gst_plugin_fault_handler_is_setup = FALSE;
540
541 /*
542  * _gst_plugin_fault_handler_restore:
543  * segfault handler restorer
544  */
545 static void
546 _gst_plugin_fault_handler_restore (void)
547 {
548   if (!_gst_plugin_fault_handler_is_setup)
549     return;
550
551   _gst_plugin_fault_handler_is_setup = FALSE;
552
553   sigaction (SIGSEGV, &oldaction, NULL);
554 }
555
556 /*
557  * _gst_plugin_fault_handler_sighandler:
558  * segfault handler implementation
559  */
560 static void
561 _gst_plugin_fault_handler_sighandler (int signum)
562 {
563   /* We need to restore the fault handler or we'll keep getting it */
564   _gst_plugin_fault_handler_restore ();
565
566   switch (signum) {
567     case SIGSEGV:
568       g_print ("\nERROR: ");
569       g_print ("Caught a segmentation fault while loading plugin file:\n");
570       g_print ("%s\n\n", _gst_plugin_fault_handler_filename);
571       g_print ("Please either:\n");
572       g_print ("- remove it and restart.\n");
573       g_print
574           ("- run with --gst-disable-segtrap --gst-disable-registry-fork and debug.\n");
575       exit (-1);
576       break;
577     default:
578       g_print ("Caught unhandled signal on plugin loading\n");
579       break;
580   }
581 }
582
583 /*
584  * _gst_plugin_fault_handler_setup:
585  * sets up the segfault handler
586  */
587 static void
588 _gst_plugin_fault_handler_setup (void)
589 {
590   struct sigaction action;
591
592   /* if asked to leave segfaults alone, just return */
593   if (!gst_segtrap_is_enabled ())
594     return;
595
596   if (_gst_plugin_fault_handler_is_setup)
597     return;
598
599   _gst_plugin_fault_handler_is_setup = TRUE;
600
601   memset (&action, 0, sizeof (action));
602   action.sa_handler = _gst_plugin_fault_handler_sighandler;
603
604   sigaction (SIGSEGV, &action, &oldaction);
605 }
606 #else /* !HAVE_SIGACTION */
607 static void
608 _gst_plugin_fault_handler_restore (void)
609 {
610 }
611
612 static void
613 _gst_plugin_fault_handler_setup (void)
614 {
615 }
616 #endif /* HAVE_SIGACTION */
617
618 /* g_time_val_from_iso8601() doesn't do quite what we want */
619 static gboolean
620 check_release_datetime (const gchar * date_time)
621 {
622   guint64 val;
623
624   /* we require YYYY-MM-DD or YYYY-MM-DDTHH:MMZ format */
625   if (!g_ascii_isdigit (*date_time))
626     return FALSE;
627
628   val = g_ascii_strtoull (date_time, (gchar **) & date_time, 10);
629   if (val < 2000 || val > 2100 || *date_time != '-')
630     return FALSE;
631
632   val = g_ascii_strtoull (date_time + 1, (gchar **) & date_time, 10);
633   if (val == 0 || val > 12 || *date_time != '-')
634     return FALSE;
635
636   val = g_ascii_strtoull (date_time + 1, (gchar **) & date_time, 10);
637   if (val == 0 || val > 32)
638     return FALSE;
639
640   /* end of string or date/time separator + HH:MMZ */
641   if (*date_time == 'T' || *date_time == ' ') {
642     val = g_ascii_strtoull (date_time + 1, (gchar **) & date_time, 10);
643     if (val > 24 || *date_time != ':')
644       return FALSE;
645
646     val = g_ascii_strtoull (date_time + 1, (gchar **) & date_time, 10);
647     if (val > 59 || *date_time != 'Z')
648       return FALSE;
649
650     ++date_time;
651   }
652
653   return (*date_time == '\0');
654 }
655
656 static GMutex gst_plugin_loading_mutex;
657
658 #define CHECK_PLUGIN_DESC_FIELD(desc,field,fn)                               \
659   if (G_UNLIKELY ((desc)->field == NULL || *(desc)->field == '\0')) {        \
660     g_warning ("Plugin description for '%s' has no valid %s field", fn, G_STRINGIFY (field)); \
661     g_set_error (error, GST_PLUGIN_ERROR, GST_PLUGIN_ERROR_MODULE, \
662         "Plugin %s has invalid plugin description field '%s'", \
663         filename, G_STRINGIFY (field)); \
664     goto return_error;                                                       \
665   }
666
667 /**
668  * gst_plugin_load_file:
669  * @filename: the plugin filename to load
670  * @error: pointer to a %NULL-valued GError
671  *
672  * Loads the given plugin and refs it.  Caller needs to unref after use.
673  *
674  * Returns: (transfer full): a reference to the existing loaded GstPlugin, a 
675  * reference to the newly-loaded GstPlugin, or %NULL if an error occurred.
676  */
677 GstPlugin *
678 gst_plugin_load_file (const gchar * filename, GError ** error)
679 {
680   GstPluginDesc *desc;
681   GstPlugin *plugin;
682   GModule *module;
683   gboolean ret;
684   gpointer ptr;
685   GStatBuf file_status;
686   GstRegistry *registry;
687   gboolean new_plugin = TRUE;
688   GModuleFlags flags;
689
690   g_return_val_if_fail (filename != NULL, NULL);
691
692   registry = gst_registry_get ();
693   g_mutex_lock (&gst_plugin_loading_mutex);
694
695   plugin = gst_registry_lookup (registry, filename);
696   if (plugin) {
697     if (plugin->module) {
698       /* already loaded */
699       g_mutex_unlock (&gst_plugin_loading_mutex);
700       return plugin;
701     } else {
702       /* load plugin and update fields */
703       new_plugin = FALSE;
704     }
705   }
706
707   GST_CAT_DEBUG (GST_CAT_PLUGIN_LOADING, "attempt to load plugin \"%s\"",
708       filename);
709
710   if (!g_module_supported ()) {
711     GST_CAT_DEBUG (GST_CAT_PLUGIN_LOADING, "module loading not supported");
712     g_set_error (error,
713         GST_PLUGIN_ERROR,
714         GST_PLUGIN_ERROR_MODULE, "Dynamic loading not supported");
715     goto return_error;
716   }
717
718   if (g_stat (filename, &file_status)) {
719     GST_CAT_DEBUG (GST_CAT_PLUGIN_LOADING, "problem accessing file");
720     g_set_error (error,
721         GST_PLUGIN_ERROR,
722         GST_PLUGIN_ERROR_MODULE, "Problem accessing file %s: %s", filename,
723         g_strerror (errno));
724     goto return_error;
725   }
726
727   flags = G_MODULE_BIND_LOCAL;
728   /* libgstpython.so is the gst-python plugin loader. It needs to be loaded with
729    * G_MODULE_BIND_LAZY.
730    *
731    * Ideally there should be a generic way for plugins to specify that they
732    * need to be loaded with _LAZY.
733    * */
734   if (strstr (filename, "libgstpython"))
735     flags |= G_MODULE_BIND_LAZY;
736
737   module = g_module_open (filename, flags);
738   if (module == NULL) {
739     GST_CAT_WARNING (GST_CAT_PLUGIN_LOADING, "module_open failed: %s",
740         g_module_error ());
741     g_set_error (error,
742         GST_PLUGIN_ERROR, GST_PLUGIN_ERROR_MODULE, "Opening module failed: %s",
743         g_module_error ());
744     /* If we failed to open the shared object, then it's probably because a
745      * plugin is linked against the wrong libraries. Print out an easy-to-see
746      * message in this case. */
747     g_warning ("Failed to load plugin '%s': %s", filename, g_module_error ());
748     goto return_error;
749   }
750
751   ret = g_module_symbol (module, "gst_plugin_desc", &ptr);
752   if (!ret) {
753     GST_DEBUG ("Could not find plugin entry point in \"%s\"", filename);
754     g_set_error (error,
755         GST_PLUGIN_ERROR,
756         GST_PLUGIN_ERROR_MODULE,
757         "File \"%s\" is not a GStreamer plugin", filename);
758     g_module_close (module);
759     goto return_error;
760   }
761
762   desc = (GstPluginDesc *) ptr;
763
764   if (priv_gst_plugin_loading_have_whitelist () &&
765       !priv_gst_plugin_desc_is_whitelisted (desc, filename)) {
766     GST_INFO ("Whitelist specified and plugin not in whitelist, not loading: "
767         "name=%s, package=%s, file=%s", desc->name, desc->source, filename);
768     g_set_error (error, GST_PLUGIN_ERROR, GST_PLUGIN_ERROR_MODULE,
769         "Not loading plugin file \"%s\", not in whitelist", filename);
770     g_module_close (module);
771     goto return_error;
772   }
773
774   if (new_plugin) {
775     plugin = g_object_newv (GST_TYPE_PLUGIN, 0, NULL);
776     plugin->file_mtime = file_status.st_mtime;
777     plugin->file_size = file_status.st_size;
778     plugin->filename = g_strdup (filename);
779     plugin->basename = g_path_get_basename (filename);
780   }
781
782   plugin->module = module;
783   plugin->orig_desc = desc;
784
785   if (new_plugin) {
786     /* check plugin description: complain about bad values and fail */
787     CHECK_PLUGIN_DESC_FIELD (plugin->orig_desc, name, filename);
788     CHECK_PLUGIN_DESC_FIELD (plugin->orig_desc, description, filename);
789     CHECK_PLUGIN_DESC_FIELD (plugin->orig_desc, version, filename);
790     CHECK_PLUGIN_DESC_FIELD (plugin->orig_desc, license, filename);
791     CHECK_PLUGIN_DESC_FIELD (plugin->orig_desc, source, filename);
792     CHECK_PLUGIN_DESC_FIELD (plugin->orig_desc, package, filename);
793     CHECK_PLUGIN_DESC_FIELD (plugin->orig_desc, origin, filename);
794
795     if (plugin->orig_desc->name != NULL && plugin->orig_desc->name[0] == '"') {
796       g_warning ("Invalid plugin name '%s' - fix your GST_PLUGIN_DEFINE "
797           "(remove quotes around plugin name)", plugin->orig_desc->name);
798     }
799
800     if (plugin->orig_desc->release_datetime != NULL &&
801         !check_release_datetime (plugin->orig_desc->release_datetime)) {
802       GST_ERROR ("GstPluginDesc for '%s' has invalid datetime '%s'",
803           filename, plugin->orig_desc->release_datetime);
804       plugin->orig_desc->release_datetime = NULL;
805     }
806   }
807
808   GST_LOG ("Plugin %p for file \"%s\" prepared, calling entry function...",
809       plugin, filename);
810
811   /* this is where we load the actual .so, so let's trap SIGSEGV */
812   _gst_plugin_fault_handler_setup ();
813   _gst_plugin_fault_handler_filename = plugin->filename;
814
815   GST_LOG ("Plugin %p for file \"%s\" prepared, registering...",
816       plugin, filename);
817
818   if (!gst_plugin_register_func (plugin, plugin->orig_desc, NULL)) {
819     /* remove signal handler */
820     _gst_plugin_fault_handler_restore ();
821     GST_DEBUG ("gst_plugin_register_func failed for plugin \"%s\"", filename);
822     /* plugin == NULL */
823     g_set_error (error,
824         GST_PLUGIN_ERROR,
825         GST_PLUGIN_ERROR_MODULE,
826         "File \"%s\" appears to be a GStreamer plugin, but it failed to initialize",
827         filename);
828     goto return_error;
829   }
830
831   /* remove signal handler */
832   _gst_plugin_fault_handler_restore ();
833   _gst_plugin_fault_handler_filename = NULL;
834   GST_INFO ("plugin \"%s\" loaded", plugin->filename);
835
836   if (new_plugin) {
837     gst_object_ref (plugin);
838     gst_registry_add_plugin (gst_registry_get (), plugin);
839   }
840
841   g_mutex_unlock (&gst_plugin_loading_mutex);
842   return plugin;
843
844 return_error:
845   {
846     if (plugin)
847       gst_object_unref (plugin);
848     g_mutex_unlock (&gst_plugin_loading_mutex);
849     return NULL;
850   }
851 }
852
853 static void
854 gst_plugin_desc_copy (GstPluginDesc * dest, const GstPluginDesc * src)
855 {
856   dest->major_version = src->major_version;
857   dest->minor_version = src->minor_version;
858   dest->name = g_intern_string (src->name);
859   dest->description = g_intern_string (src->description);
860   dest->plugin_init = src->plugin_init;
861   dest->version = g_intern_string (src->version);
862   dest->license = g_intern_string (src->license);
863   dest->source = g_intern_string (src->source);
864   dest->package = g_intern_string (src->package);
865   dest->origin = g_intern_string (src->origin);
866   dest->release_datetime = g_intern_string (src->release_datetime);
867 }
868
869 /**
870  * gst_plugin_get_name:
871  * @plugin: plugin to get the name of
872  *
873  * Get the short name of the plugin
874  *
875  * Returns: the name of the plugin
876  */
877 const gchar *
878 gst_plugin_get_name (GstPlugin * plugin)
879 {
880   g_return_val_if_fail (plugin != NULL, NULL);
881
882   return plugin->desc.name;
883 }
884
885 /**
886  * gst_plugin_get_description:
887  * @plugin: plugin to get long name of
888  *
889  * Get the long descriptive name of the plugin
890  *
891  * Returns: the long name of the plugin
892  */
893 const gchar *
894 gst_plugin_get_description (GstPlugin * plugin)
895 {
896   g_return_val_if_fail (plugin != NULL, NULL);
897
898   return plugin->desc.description;
899 }
900
901 /**
902  * gst_plugin_get_filename:
903  * @plugin: plugin to get the filename of
904  *
905  * get the filename of the plugin
906  *
907  * Returns: the filename of the plugin
908  */
909 const gchar *
910 gst_plugin_get_filename (GstPlugin * plugin)
911 {
912   g_return_val_if_fail (plugin != NULL, NULL);
913
914   return plugin->filename;
915 }
916
917 /**
918  * gst_plugin_get_version:
919  * @plugin: plugin to get the version of
920  *
921  * get the version of the plugin
922  *
923  * Returns: the version of the plugin
924  */
925 const gchar *
926 gst_plugin_get_version (GstPlugin * plugin)
927 {
928   g_return_val_if_fail (plugin != NULL, NULL);
929
930   return plugin->desc.version;
931 }
932
933 /**
934  * gst_plugin_get_license:
935  * @plugin: plugin to get the license of
936  *
937  * get the license of the plugin
938  *
939  * Returns: the license of the plugin
940  */
941 const gchar *
942 gst_plugin_get_license (GstPlugin * plugin)
943 {
944   g_return_val_if_fail (plugin != NULL, NULL);
945
946   return plugin->desc.license;
947 }
948
949 /**
950  * gst_plugin_get_source:
951  * @plugin: plugin to get the source of
952  *
953  * get the source module the plugin belongs to.
954  *
955  * Returns: the source of the plugin
956  */
957 const gchar *
958 gst_plugin_get_source (GstPlugin * plugin)
959 {
960   g_return_val_if_fail (plugin != NULL, NULL);
961
962   return plugin->desc.source;
963 }
964
965 /**
966  * gst_plugin_get_package:
967  * @plugin: plugin to get the package of
968  *
969  * get the package the plugin belongs to.
970  *
971  * Returns: the package of the plugin
972  */
973 const gchar *
974 gst_plugin_get_package (GstPlugin * plugin)
975 {
976   g_return_val_if_fail (plugin != NULL, NULL);
977
978   return plugin->desc.package;
979 }
980
981 /**
982  * gst_plugin_get_origin:
983  * @plugin: plugin to get the origin of
984  *
985  * get the URL where the plugin comes from
986  *
987  * Returns: the origin of the plugin
988  */
989 const gchar *
990 gst_plugin_get_origin (GstPlugin * plugin)
991 {
992   g_return_val_if_fail (plugin != NULL, NULL);
993
994   return plugin->desc.origin;
995 }
996
997 /**
998  * gst_plugin_get_release_date_string:
999  * @plugin: plugin to get the release date of
1000  *
1001  * Get the release date (and possibly time) in form of a string, if available.
1002  *
1003  * For normal GStreamer plugin releases this will usually just be a date in
1004  * the form of "YYYY-MM-DD", while pre-releases and builds from git may contain
1005  * a time component after the date as well, in which case the string will be
1006  * formatted like "YYYY-MM-DDTHH:MMZ" (e.g. "2012-04-30T09:30Z").
1007  *
1008  * There may be plugins that do not have a valid release date set on them.
1009  *
1010  * Returns: (nullable): the date string of the plugin, or %NULL if not
1011  * available.
1012  */
1013 const gchar *
1014 gst_plugin_get_release_date_string (GstPlugin * plugin)
1015 {
1016   g_return_val_if_fail (plugin != NULL, NULL);
1017
1018   return plugin->desc.release_datetime;
1019 }
1020
1021 /**
1022  * gst_plugin_is_loaded:
1023  * @plugin: plugin to query
1024  *
1025  * queries if the plugin is loaded into memory
1026  *
1027  * Returns: %TRUE is loaded, %FALSE otherwise
1028  */
1029 gboolean
1030 gst_plugin_is_loaded (GstPlugin * plugin)
1031 {
1032   g_return_val_if_fail (plugin != NULL, FALSE);
1033
1034   return (plugin->module != NULL || plugin->filename == NULL);
1035 }
1036
1037 /**
1038  * gst_plugin_get_cache_data:
1039  * @plugin: a plugin
1040  *
1041  * Gets the plugin specific data cache. If it is %NULL there is no cached data
1042  * stored. This is the case when the registry is getting rebuilt.
1043  *
1044  * Returns: (transfer none) (nullable): The cached data as a
1045  * #GstStructure or %NULL.
1046  */
1047 const GstStructure *
1048 gst_plugin_get_cache_data (GstPlugin * plugin)
1049 {
1050   g_return_val_if_fail (GST_IS_PLUGIN (plugin), NULL);
1051
1052   return plugin->priv->cache_data;
1053 }
1054
1055 /**
1056  * gst_plugin_set_cache_data:
1057  * @plugin: a plugin
1058  * @cache_data: (transfer full): a structure containing the data to cache
1059  *
1060  * Adds plugin specific data to cache. Passes the ownership of the structure to
1061  * the @plugin.
1062  *
1063  * The cache is flushed every time the registry is rebuilt.
1064  */
1065 void
1066 gst_plugin_set_cache_data (GstPlugin * plugin, GstStructure * cache_data)
1067 {
1068   g_return_if_fail (GST_IS_PLUGIN (plugin));
1069   g_return_if_fail (GST_IS_STRUCTURE (cache_data));
1070
1071   if (plugin->priv->cache_data) {
1072     gst_structure_free (plugin->priv->cache_data);
1073   }
1074   plugin->priv->cache_data = cache_data;
1075 }
1076
1077 #if 0
1078 /**
1079  * gst_plugin_feature_list:
1080  * @plugin: plugin to query
1081  * @filter: the filter to use
1082  * @first: only return first match
1083  * @user_data: user data passed to the filter function
1084  *
1085  * Runs a filter against all plugin features and returns a GList with
1086  * the results. If the first flag is set, only the first match is
1087  * returned (as a list with a single object).
1088  *
1089  * Returns: a GList of features, g_list_free after use.
1090  */
1091 GList *
1092 gst_plugin_feature_filter (GstPlugin * plugin,
1093     GstPluginFeatureFilter filter, gboolean first, gpointer user_data)
1094 {
1095   GList *list;
1096   GList *g;
1097
1098   list = gst_filter_run (plugin->features, (GstFilterFunc) filter, first,
1099       user_data);
1100   for (g = list; g; g = g->next) {
1101     gst_object_ref (plugin);
1102   }
1103
1104   return list;
1105 }
1106
1107 typedef struct
1108 {
1109   GstPluginFeatureFilter filter;
1110   gboolean first;
1111   gpointer user_data;
1112   GList *result;
1113 }
1114 FeatureFilterData;
1115
1116 static gboolean
1117 _feature_filter (GstPlugin * plugin, gpointer user_data)
1118 {
1119   GList *result;
1120   FeatureFilterData *data = (FeatureFilterData *) user_data;
1121
1122   result = gst_plugin_feature_filter (plugin, data->filter, data->first,
1123       data->user_data);
1124   if (result) {
1125     data->result = g_list_concat (data->result, result);
1126     return TRUE;
1127   }
1128   return FALSE;
1129 }
1130
1131 /**
1132  * gst_plugin_list_feature_filter:
1133  * @list: a #GList of plugins to query
1134  * @filter: the filter function to use
1135  * @first: only return first match
1136  * @user_data: user data passed to the filter function
1137  *
1138  * Runs a filter against all plugin features of the plugins in the given
1139  * list and returns a GList with the results.
1140  * If the first flag is set, only the first match is
1141  * returned (as a list with a single object).
1142  *
1143  * Returns: a GList of features, g_list_free after use.
1144  */
1145 GList *
1146 gst_plugin_list_feature_filter (GList * list,
1147     GstPluginFeatureFilter filter, gboolean first, gpointer user_data)
1148 {
1149   FeatureFilterData data;
1150   GList *result;
1151
1152   data.filter = filter;
1153   data.first = first;
1154   data.user_data = user_data;
1155   data.result = NULL;
1156
1157   result = gst_filter_run (list, (GstFilterFunc) _feature_filter, first, &data);
1158   g_list_free (result);
1159
1160   return data.result;
1161 }
1162
1163 /**
1164  * gst_plugin_find_feature:
1165  * @plugin: plugin to get the feature from
1166  * @name: The name of the feature to find
1167  * @type: The type of the feature to find
1168  *
1169  * Find a feature of the given name and type in the given plugin.
1170  *
1171  * Returns: a GstPluginFeature or %NULL if the feature was not found.
1172  */
1173 GstPluginFeature *
1174 gst_plugin_find_feature (GstPlugin * plugin, const gchar * name, GType type)
1175 {
1176   GList *walk;
1177   GstPluginFeature *result = NULL;
1178   GstTypeNameData data;
1179
1180   g_return_val_if_fail (name != NULL, NULL);
1181
1182   data.type = type;
1183   data.name = name;
1184
1185   walk = gst_filter_run (plugin->features,
1186       (GstFilterFunc) gst_plugin_feature_type_name_filter, TRUE, &data);
1187
1188   if (walk) {
1189     result = GST_PLUGIN_FEATURE (walk->data);
1190
1191     gst_object_ref (result);
1192     gst_plugin_feature_list_free (walk);
1193   }
1194
1195   return result;
1196 }
1197 #endif
1198
1199 #if 0
1200 static gboolean
1201 gst_plugin_feature_name_filter (GstPluginFeature * feature, const gchar * name)
1202 {
1203   return !strcmp (name, GST_PLUGIN_FEATURE_NAME (feature));
1204 }
1205 #endif
1206
1207 #if 0
1208 /**
1209  * gst_plugin_find_feature_by_name:
1210  * @plugin: plugin to get the feature from
1211  * @name: The name of the feature to find
1212  *
1213  * Find a feature of the given name in the given plugin.
1214  *
1215  * Returns: a GstPluginFeature or %NULL if the feature was not found.
1216  */
1217 GstPluginFeature *
1218 gst_plugin_find_feature_by_name (GstPlugin * plugin, const gchar * name)
1219 {
1220   GList *walk;
1221   GstPluginFeature *result = NULL;
1222
1223   g_return_val_if_fail (name != NULL, NULL);
1224
1225   walk = gst_filter_run (plugin->features,
1226       (GstFilterFunc) gst_plugin_feature_name_filter, TRUE, (void *) name);
1227
1228   if (walk) {
1229     result = GST_PLUGIN_FEATURE (walk->data);
1230
1231     gst_object_ref (result);
1232     gst_plugin_feature_list_free (walk);
1233   }
1234
1235   return result;
1236 }
1237 #endif
1238
1239 /**
1240  * gst_plugin_load_by_name:
1241  * @name: name of plugin to load
1242  *
1243  * Load the named plugin. Refs the plugin.
1244  *
1245  * Returns: (transfer full): a reference to a loaded plugin, or %NULL on error.
1246  */
1247 GstPlugin *
1248 gst_plugin_load_by_name (const gchar * name)
1249 {
1250   GstPlugin *plugin, *newplugin;
1251   GError *error = NULL;
1252
1253   GST_DEBUG ("looking up plugin %s in default registry", name);
1254   plugin = gst_registry_find_plugin (gst_registry_get (), name);
1255   if (plugin) {
1256     GST_DEBUG ("loading plugin %s from file %s", name, plugin->filename);
1257     newplugin = gst_plugin_load_file (plugin->filename, &error);
1258     gst_object_unref (plugin);
1259
1260     if (!newplugin) {
1261       GST_WARNING ("load_plugin error: %s", error->message);
1262       g_error_free (error);
1263       return NULL;
1264     }
1265     /* newplugin was reffed by load_file */
1266     return newplugin;
1267   }
1268
1269   GST_DEBUG ("Could not find plugin %s in registry", name);
1270   return NULL;
1271 }
1272
1273 /**
1274  * gst_plugin_load:
1275  * @plugin: (transfer none): plugin to load
1276  *
1277  * Loads @plugin. Note that the *return value* is the loaded plugin; @plugin is
1278  * untouched. The normal use pattern of this function goes like this:
1279  *
1280  * <programlisting>
1281  * GstPlugin *loaded_plugin;
1282  * loaded_plugin = gst_plugin_load (plugin);
1283  * // presumably, we're no longer interested in the potentially-unloaded plugin
1284  * gst_object_unref (plugin);
1285  * plugin = loaded_plugin;
1286  * </programlisting>
1287  *
1288  * Returns: (transfer full): a reference to a loaded plugin, or %NULL on error.
1289  */
1290 GstPlugin *
1291 gst_plugin_load (GstPlugin * plugin)
1292 {
1293   GError *error = NULL;
1294   GstPlugin *newplugin;
1295
1296   if (gst_plugin_is_loaded (plugin)) {
1297     return plugin;
1298   }
1299
1300   if (!(newplugin = gst_plugin_load_file (plugin->filename, &error)))
1301     goto load_error;
1302
1303   return newplugin;
1304
1305 load_error:
1306   {
1307     GST_WARNING ("load_plugin error: %s", error->message);
1308     g_error_free (error);
1309     return NULL;
1310   }
1311 }
1312
1313 /**
1314  * gst_plugin_list_free:
1315  * @list: (transfer full) (element-type Gst.Plugin): list of #GstPlugin
1316  *
1317  * Unrefs each member of @list, then frees the list.
1318  */
1319 void
1320 gst_plugin_list_free (GList * list)
1321 {
1322   GList *g;
1323
1324   for (g = list; g; g = g->next) {
1325     gst_object_unref (GST_PLUGIN_CAST (g->data));
1326   }
1327   g_list_free (list);
1328 }
1329
1330 /* ===== plugin dependencies ===== */
1331
1332 /* Scenarios:
1333  * ENV + xyz     where ENV can contain multiple values separated by SEPARATOR
1334  *               xyz may be "" (if ENV contains path to file rather than dir)
1335  * ENV + *xyz   same as above, but xyz acts as suffix filter
1336  * ENV + xyz*   same as above, but xyz acts as prefix filter (is this needed?)
1337  * ENV + *xyz*  same as above, but xyz acts as strstr filter (is this needed?)
1338  * 
1339  * same as above, with additional paths hard-coded at compile-time:
1340  *   - only check paths + ... if ENV is not set or yields not paths
1341  *   - always check paths + ... in addition to ENV
1342  *
1343  * When user specifies set of environment variables, he/she may also use e.g.
1344  * "HOME/.mystuff/plugins", and we'll expand the content of $HOME with the
1345  * remainder 
1346  */
1347
1348 /* we store in registry:
1349  *  sets of:
1350  *   { 
1351  *     - environment variables (array of strings)
1352  *     - last hash of env variable contents (uint) (so we can avoid doing stats
1353  *       if one of the env vars has changed; premature optimisation galore)
1354  *     - hard-coded paths (array of strings)
1355  *     - xyz filename/suffix/prefix strings (array of strings)
1356  *     - flags (int)
1357  *     - last hash of file/dir stats (int)
1358  *   }
1359  *   (= struct GstPluginDep)
1360  */
1361
1362 static guint
1363 gst_plugin_ext_dep_get_env_vars_hash (GstPlugin * plugin, GstPluginDep * dep)
1364 {
1365   gchar **e;
1366   guint hash;
1367
1368   /* there's no deeper logic to what we do here; all we want to know (when
1369    * checking if the plugin needs to be rescanned) is whether the content of
1370    * one of the environment variables in the list is different from when it
1371    * was last scanned */
1372   hash = 0;
1373   for (e = dep->env_vars; e != NULL && *e != NULL; ++e) {
1374     const gchar *val;
1375     gchar env_var[256];
1376
1377     /* order matters: "val",NULL needs to yield a different hash than
1378      * NULL,"val", so do a shift here whether the var is set or not */
1379     hash = hash << 5;
1380
1381     /* want environment variable at beginning of string */
1382     if (!g_ascii_isalnum (**e)) {
1383       GST_WARNING_OBJECT (plugin, "string prefix is not a valid environment "
1384           "variable string: %s", *e);
1385       continue;
1386     }
1387
1388     /* user is allowed to specify e.g. "HOME/.pitivi/plugins" */
1389     g_strlcpy (env_var, *e, sizeof (env_var));
1390     g_strdelimit (env_var, "/\\", '\0');
1391
1392     if ((val = g_getenv (env_var)))
1393       hash += g_str_hash (val);
1394   }
1395
1396   return hash;
1397 }
1398
1399 gboolean
1400 _priv_plugin_deps_env_vars_changed (GstPlugin * plugin)
1401 {
1402   GList *l;
1403
1404   for (l = plugin->priv->deps; l != NULL; l = l->next) {
1405     GstPluginDep *dep = l->data;
1406
1407     if (dep->env_hash != gst_plugin_ext_dep_get_env_vars_hash (plugin, dep))
1408       return TRUE;
1409   }
1410
1411   return FALSE;
1412 }
1413
1414 static void
1415 gst_plugin_ext_dep_extract_env_vars_paths (GstPlugin * plugin,
1416     GstPluginDep * dep, GQueue * paths)
1417 {
1418   gchar **evars;
1419
1420   for (evars = dep->env_vars; evars != NULL && *evars != NULL; ++evars) {
1421     const gchar *e;
1422     gchar **components;
1423
1424     /* want environment variable at beginning of string */
1425     if (!g_ascii_isalnum (**evars)) {
1426       GST_WARNING_OBJECT (plugin, "string prefix is not a valid environment "
1427           "variable string: %s", *evars);
1428       continue;
1429     }
1430
1431     /* user is allowed to specify e.g. "HOME/.pitivi/plugins", which we want to
1432      * split into the env_var name component and the path component */
1433     components = g_strsplit_set (*evars, "/\\", 2);
1434     g_assert (components != NULL);
1435
1436     e = g_getenv (components[0]);
1437     GST_LOG_OBJECT (plugin, "expanding %s = '%s' (path suffix: %s)",
1438         components[0], GST_STR_NULL (e), GST_STR_NULL (components[1]));
1439
1440     if (components[1] != NULL) {
1441       g_strdelimit (components[1], "/\\", G_DIR_SEPARATOR);
1442     }
1443
1444     if (e != NULL && *e != '\0') {
1445       gchar **arr;
1446       guint i;
1447
1448       arr = g_strsplit (e, G_SEARCHPATH_SEPARATOR_S, -1);
1449
1450       for (i = 0; arr != NULL && arr[i] != NULL; ++i) {
1451         gchar *full_path;
1452
1453         if (!g_path_is_absolute (arr[i])) {
1454           GST_INFO_OBJECT (plugin, "ignoring environment variable content '%s'"
1455               ": either not an absolute path or not a path at all", arr[i]);
1456           continue;
1457         }
1458
1459         if (components[1] != NULL) {
1460           full_path = g_build_filename (arr[i], components[1], NULL);
1461         } else {
1462           full_path = g_strdup (arr[i]);
1463         }
1464
1465         if (!g_queue_find_custom (paths, full_path, (GCompareFunc) strcmp)) {
1466           GST_LOG_OBJECT (plugin, "path: '%s'", full_path);
1467           g_queue_push_tail (paths, full_path);
1468           full_path = NULL;
1469         } else {
1470           GST_LOG_OBJECT (plugin, "path: '%s' (duplicate,ignoring)", full_path);
1471           g_free (full_path);
1472         }
1473       }
1474
1475       g_strfreev (arr);
1476     }
1477
1478     g_strfreev (components);
1479   }
1480
1481   GST_LOG_OBJECT (plugin, "Extracted %d paths from environment", paths->length);
1482 }
1483
1484 static guint
1485 gst_plugin_ext_dep_get_hash_from_stat_entry (GStatBuf * s)
1486 {
1487   if (!(s->st_mode & (S_IFDIR | S_IFREG)))
1488     return (guint) - 1;
1489
1490   /* completely random formula */
1491   return ((s->st_size << 3) + (s->st_mtime << 5)) ^ s->st_ctime;
1492 }
1493
1494 static gboolean
1495 gst_plugin_ext_dep_direntry_matches (GstPlugin * plugin, const gchar * entry,
1496     const gchar ** filenames, GstPluginDependencyFlags flags)
1497 {
1498   /* no filenames specified, match all entries for now (could probably
1499    * optimise by just taking the dir stat hash or so) */
1500   if (filenames == NULL || *filenames == NULL || **filenames == '\0')
1501     return TRUE;
1502
1503   while (*filenames != NULL) {
1504     /* suffix match? */
1505     if (((flags & GST_PLUGIN_DEPENDENCY_FLAG_FILE_NAME_IS_SUFFIX)) &&
1506         g_str_has_suffix (entry, *filenames)) {
1507       return TRUE;
1508       /* else it's an exact match that's needed */
1509     } else if (strcmp (entry, *filenames) == 0) {
1510       return TRUE;
1511     }
1512     GST_LOG ("%s does not match %s, flags=0x%04x", entry, *filenames, flags);
1513     ++filenames;
1514   }
1515   return FALSE;
1516 }
1517
1518 static guint
1519 gst_plugin_ext_dep_scan_dir_and_match_names (GstPlugin * plugin,
1520     const gchar * path, const gchar ** filenames,
1521     GstPluginDependencyFlags flags, int depth)
1522 {
1523   const gchar *entry;
1524   gboolean recurse_dirs;
1525   GError *err = NULL;
1526   GDir *dir;
1527   guint hash = 0;
1528
1529   recurse_dirs = ! !(flags & GST_PLUGIN_DEPENDENCY_FLAG_RECURSE);
1530
1531   dir = g_dir_open (path, 0, &err);
1532   if (dir == NULL) {
1533     GST_DEBUG_OBJECT (plugin, "g_dir_open(%s) failed: %s", path, err->message);
1534     g_error_free (err);
1535     return (guint) - 1;
1536   }
1537
1538   /* FIXME: we're assuming here that we always get the directory entries in
1539    * the same order, and not in a random order */
1540   while ((entry = g_dir_read_name (dir))) {
1541     gboolean have_match;
1542     GStatBuf s;
1543     gchar *full_path;
1544     guint fhash;
1545
1546     have_match =
1547         gst_plugin_ext_dep_direntry_matches (plugin, entry, filenames, flags);
1548
1549     /* avoid the stat if possible */
1550     if (!have_match && !recurse_dirs)
1551       continue;
1552
1553     full_path = g_build_filename (path, entry, NULL);
1554     if (g_stat (full_path, &s) < 0) {
1555       fhash = (guint) - 1;
1556       GST_LOG_OBJECT (plugin, "stat: %s (error: %s)", full_path,
1557           g_strerror (errno));
1558     } else if (have_match) {
1559       fhash = gst_plugin_ext_dep_get_hash_from_stat_entry (&s);
1560       GST_LOG_OBJECT (plugin, "stat: %s (result: %u)", full_path, fhash);
1561     } else if ((s.st_mode & (S_IFDIR))) {
1562       fhash = gst_plugin_ext_dep_scan_dir_and_match_names (plugin, full_path,
1563           filenames, flags, depth + 1);
1564     } else {
1565       /* it's not a name match, we want to recurse, but it's not a directory */
1566       g_free (full_path);
1567       continue;
1568     }
1569
1570     hash = (hash + fhash) << 1;
1571     g_free (full_path);
1572   }
1573
1574   g_dir_close (dir);
1575   return hash;
1576 }
1577
1578 static guint
1579 gst_plugin_ext_dep_scan_path_with_filenames (GstPlugin * plugin,
1580     const gchar * path, const gchar ** filenames,
1581     GstPluginDependencyFlags flags)
1582 {
1583   const gchar *empty_filenames[] = { "", NULL };
1584   gboolean recurse_into_dirs, partial_names;
1585   guint i, hash = 0;
1586
1587   /* to avoid special-casing below (FIXME?) */
1588   if (filenames == NULL || *filenames == NULL)
1589     filenames = empty_filenames;
1590
1591   recurse_into_dirs = ! !(flags & GST_PLUGIN_DEPENDENCY_FLAG_RECURSE);
1592   partial_names = ! !(flags & GST_PLUGIN_DEPENDENCY_FLAG_FILE_NAME_IS_SUFFIX);
1593
1594   /* if we can construct the exact paths to check with the data we have, just
1595    * stat them one by one; this is more efficient than opening the directory
1596    * and going through each entry to see if it matches one of our filenames. */
1597   if (!recurse_into_dirs && !partial_names) {
1598     for (i = 0; filenames[i] != NULL; ++i) {
1599       GStatBuf s;
1600       gchar *full_path;
1601       guint fhash;
1602
1603       full_path = g_build_filename (path, filenames[i], NULL);
1604       if (g_stat (full_path, &s) < 0) {
1605         fhash = (guint) - 1;
1606         GST_LOG_OBJECT (plugin, "stat: %s (error: %s)", full_path,
1607             g_strerror (errno));
1608       } else {
1609         fhash = gst_plugin_ext_dep_get_hash_from_stat_entry (&s);
1610         GST_LOG_OBJECT (plugin, "stat: %s (result: %08x)", full_path, fhash);
1611       }
1612       hash = (hash + fhash) << 1;
1613       g_free (full_path);
1614     }
1615   } else {
1616     hash = gst_plugin_ext_dep_scan_dir_and_match_names (plugin, path,
1617         filenames, flags, 0);
1618   }
1619
1620   return hash;
1621 }
1622
1623 static guint
1624 gst_plugin_ext_dep_get_stat_hash (GstPlugin * plugin, GstPluginDep * dep)
1625 {
1626   gboolean paths_are_default_only;
1627   GQueue scan_paths = G_QUEUE_INIT;
1628   guint scan_hash = 0;
1629   gchar *path;
1630
1631   GST_LOG_OBJECT (plugin, "start");
1632
1633   paths_are_default_only =
1634       dep->flags & GST_PLUGIN_DEPENDENCY_FLAG_PATHS_ARE_DEFAULT_ONLY;
1635
1636   gst_plugin_ext_dep_extract_env_vars_paths (plugin, dep, &scan_paths);
1637
1638   if (g_queue_is_empty (&scan_paths) || !paths_are_default_only) {
1639     gchar **paths;
1640
1641     for (paths = dep->paths; paths != NULL && *paths != NULL; ++paths) {
1642       const gchar *path = *paths;
1643
1644       if (!g_queue_find_custom (&scan_paths, path, (GCompareFunc) strcmp)) {
1645         GST_LOG_OBJECT (plugin, "path: '%s'", path);
1646         g_queue_push_tail (&scan_paths, g_strdup (path));
1647       } else {
1648         GST_LOG_OBJECT (plugin, "path: '%s' (duplicate, ignoring)", path);
1649       }
1650     }
1651   }
1652
1653   while ((path = g_queue_pop_head (&scan_paths))) {
1654     scan_hash += gst_plugin_ext_dep_scan_path_with_filenames (plugin, path,
1655         (const gchar **) dep->names, dep->flags);
1656     scan_hash = scan_hash << 1;
1657     g_free (path);
1658   }
1659
1660   GST_LOG_OBJECT (plugin, "done, scan_hash: %08x", scan_hash);
1661   return scan_hash;
1662 }
1663
1664 gboolean
1665 _priv_plugin_deps_files_changed (GstPlugin * plugin)
1666 {
1667   GList *l;
1668
1669   for (l = plugin->priv->deps; l != NULL; l = l->next) {
1670     GstPluginDep *dep = l->data;
1671
1672     if (dep->stat_hash != gst_plugin_ext_dep_get_stat_hash (plugin, dep))
1673       return TRUE;
1674   }
1675
1676   return FALSE;
1677 }
1678
1679 static void
1680 gst_plugin_ext_dep_free (GstPluginDep * dep)
1681 {
1682   g_strfreev (dep->env_vars);
1683   g_strfreev (dep->paths);
1684   g_strfreev (dep->names);
1685   g_slice_free (GstPluginDep, dep);
1686 }
1687
1688 static gboolean
1689 gst_plugin_ext_dep_strv_equal (gchar ** arr1, gchar ** arr2)
1690 {
1691   if (arr1 == arr2)
1692     return TRUE;
1693   if (arr1 == NULL || arr2 == NULL)
1694     return FALSE;
1695   for (; *arr1 != NULL && *arr2 != NULL; ++arr1, ++arr2) {
1696     if (strcmp (*arr1, *arr2) != 0)
1697       return FALSE;
1698   }
1699   return (*arr1 == *arr2);
1700 }
1701
1702 static gboolean
1703 gst_plugin_ext_dep_equals (GstPluginDep * dep, const gchar ** env_vars,
1704     const gchar ** paths, const gchar ** names, GstPluginDependencyFlags flags)
1705 {
1706   if (dep->flags != flags)
1707     return FALSE;
1708
1709   return gst_plugin_ext_dep_strv_equal (dep->env_vars, (gchar **) env_vars) &&
1710       gst_plugin_ext_dep_strv_equal (dep->paths, (gchar **) paths) &&
1711       gst_plugin_ext_dep_strv_equal (dep->names, (gchar **) names);
1712 }
1713
1714 /**
1715  * gst_plugin_add_dependency:
1716  * @plugin: a #GstPlugin
1717  * @env_vars: (allow-none): %NULL-terminated array of environment variables affecting the
1718  *     feature set of the plugin (e.g. an environment variable containing
1719  *     paths where to look for additional modules/plugins of a library),
1720  *     or %NULL. Environment variable names may be followed by a path component
1721  *      which will be added to the content of the environment variable, e.g.
1722  *      "HOME/.mystuff/plugins".
1723  * @paths: (allow-none): %NULL-terminated array of directories/paths where dependent files
1724  *     may be, or %NULL.
1725  * @names: (allow-none): %NULL-terminated array of file names (or file name suffixes,
1726  *     depending on @flags) to be used in combination with the paths from
1727  *     @paths and/or the paths extracted from the environment variables in
1728  *     @env_vars, or %NULL.
1729  * @flags: optional flags, or #GST_PLUGIN_DEPENDENCY_FLAG_NONE
1730  *
1731  * Make GStreamer aware of external dependencies which affect the feature
1732  * set of this plugin (ie. the elements or typefinders associated with it).
1733  *
1734  * GStreamer will re-inspect plugins with external dependencies whenever any
1735  * of the external dependencies change. This is useful for plugins which wrap
1736  * other plugin systems, e.g. a plugin which wraps a plugin-based visualisation
1737  * library and makes visualisations available as GStreamer elements, or a
1738  * codec loader which exposes elements and/or caps dependent on what external
1739  * codec libraries are currently installed.
1740  */
1741 void
1742 gst_plugin_add_dependency (GstPlugin * plugin, const gchar ** env_vars,
1743     const gchar ** paths, const gchar ** names, GstPluginDependencyFlags flags)
1744 {
1745   GstPluginDep *dep;
1746   GList *l;
1747
1748   g_return_if_fail (GST_IS_PLUGIN (plugin));
1749
1750   if ((env_vars == NULL || env_vars[0] == NULL) &&
1751       (paths == NULL || paths[0] == NULL)) {
1752     GST_DEBUG_OBJECT (plugin,
1753         "plugin registered empty dependency set. Ignoring");
1754     return;
1755   }
1756
1757   for (l = plugin->priv->deps; l != NULL; l = l->next) {
1758     if (gst_plugin_ext_dep_equals (l->data, env_vars, paths, names, flags)) {
1759       GST_LOG_OBJECT (plugin, "dependency already registered");
1760       return;
1761     }
1762   }
1763
1764   dep = g_slice_new (GstPluginDep);
1765
1766   dep->env_vars = g_strdupv ((gchar **) env_vars);
1767   dep->paths = g_strdupv ((gchar **) paths);
1768   dep->names = g_strdupv ((gchar **) names);
1769   dep->flags = flags;
1770
1771   dep->env_hash = gst_plugin_ext_dep_get_env_vars_hash (plugin, dep);
1772   dep->stat_hash = gst_plugin_ext_dep_get_stat_hash (plugin, dep);
1773
1774   plugin->priv->deps = g_list_append (plugin->priv->deps, dep);
1775
1776   GST_DEBUG_OBJECT (plugin, "added dependency:");
1777   for (; env_vars != NULL && *env_vars != NULL; ++env_vars)
1778     GST_DEBUG_OBJECT (plugin, " evar: %s", *env_vars);
1779   for (; paths != NULL && *paths != NULL; ++paths)
1780     GST_DEBUG_OBJECT (plugin, " path: %s", *paths);
1781   for (; names != NULL && *names != NULL; ++names)
1782     GST_DEBUG_OBJECT (plugin, " name: %s", *names);
1783 }
1784
1785 /**
1786  * gst_plugin_add_dependency_simple:
1787  * @plugin: the #GstPlugin
1788  * @env_vars: (allow-none): one or more environment variables (separated by ':', ';' or ','),
1789  *      or %NULL. Environment variable names may be followed by a path component
1790  *      which will be added to the content of the environment variable, e.g.
1791  *      "HOME/.mystuff/plugins:MYSTUFF_PLUGINS_PATH"
1792  * @paths: (allow-none): one ore more directory paths (separated by ':' or ';' or ','),
1793  *      or %NULL. Example: "/usr/lib/mystuff/plugins"
1794  * @names: (allow-none): one or more file names or file name suffixes (separated by commas),
1795  *      or %NULL
1796  * @flags: optional flags, or #GST_PLUGIN_DEPENDENCY_FLAG_NONE
1797  *
1798  * Make GStreamer aware of external dependencies which affect the feature
1799  * set of this plugin (ie. the elements or typefinders associated with it).
1800  *
1801  * GStreamer will re-inspect plugins with external dependencies whenever any
1802  * of the external dependencies change. This is useful for plugins which wrap
1803  * other plugin systems, e.g. a plugin which wraps a plugin-based visualisation
1804  * library and makes visualisations available as GStreamer elements, or a
1805  * codec loader which exposes elements and/or caps dependent on what external
1806  * codec libraries are currently installed.
1807  *
1808  * Convenience wrapper function for gst_plugin_add_dependency() which
1809  * takes simple strings as arguments instead of string arrays, with multiple
1810  * arguments separated by predefined delimiters (see above).
1811  */
1812 void
1813 gst_plugin_add_dependency_simple (GstPlugin * plugin,
1814     const gchar * env_vars, const gchar * paths, const gchar * names,
1815     GstPluginDependencyFlags flags)
1816 {
1817   gchar **a_evars = NULL;
1818   gchar **a_paths = NULL;
1819   gchar **a_names = NULL;
1820
1821   if (env_vars)
1822     a_evars = g_strsplit_set (env_vars, ":;,", -1);
1823   if (paths)
1824     a_paths = g_strsplit_set (paths, ":;,", -1);
1825   if (names)
1826     a_names = g_strsplit_set (names, ",", -1);
1827
1828   gst_plugin_add_dependency (plugin, (const gchar **) a_evars,
1829       (const gchar **) a_paths, (const gchar **) a_names, flags);
1830
1831   if (a_evars)
1832     g_strfreev (a_evars);
1833   if (a_paths)
1834     g_strfreev (a_paths);
1835   if (a_names)
1836     g_strfreev (a_names);
1837 }