gst/: Re-commit the registry changes, along with an extra fix:
[platform/upstream/gstreamer.git] / gst / gst.c
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *                    2000 Wim Taymans <wtay@chello.be>
4  *
5  * gst.c: Initialization and non-pipeline operations
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., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 /**
24  * SECTION:gst
25  * @short_description: Media library supporting arbitrary formats and filter
26  *                     graphs.
27  * @see_also: Check out both <ulink url="http://www.cse.ogi.edu/sysl/">OGI's
28  *            pipeline</ulink> and Microsoft's DirectShow for some background.
29  *
30  * GStreamer is a framework for constructing graphs of various filters
31  * (termed elements here) that will handle streaming media.  Any discreet
32  * (packetizable) media type is supported, with provisions for automatically
33  * determining source type.  Formatting/framing information is provided with
34  * a powerful negotiation framework.  Plugins are heavily used to provide for
35  * all elements, allowing one to construct plugins outside of the GST
36  * library, even released binary-only if license require (please don't).
37  *
38  * GStreamer borrows heavily from both the <ulink
39  * url="http://www.cse.ogi.edu/sysl/">OGI media pipeline</ulink> and
40  * Microsoft's DirectShow, hopefully taking the best of both and leaving the
41  * cruft behind. Its interface is slowly getting stable.
42  *
43  * The <application>GStreamer</application> library should be initialized with
44  * gst_init() before it can be used. You should pass pointers to the main argc
45  * and argv variables so that GStreamer can process its own command line
46  * options, as shown in the following example.
47  *
48  * <example>
49  * <title>Initializing the gstreamer library</title>
50  * <programlisting language="c">
51  * int
52  * main (int argc, char *argv[])
53  * {
54  *   // initialize the GStreamer library
55  *   gst_init (&amp;argc, &amp;argv);
56  *   ...
57  * }
58  * </programlisting>
59  * </example>
60  *
61  * It's allowed to pass two NULL pointers to gst_init() in case you don't want
62  * to pass the command line args to GStreamer.
63  *
64  * You can also use GOption to initialize your own parameters as shown in
65  * the next code fragment:
66  * <example>
67  * <title>Initializing own parameters when initializing gstreamer</title>
68  * <programlisting>
69  * static gboolean stats = FALSE;
70  * ...
71  * int
72  * main (int argc, char *argv[])
73  * {
74  *  GOptionEntry options[] = {
75  *   {"tags", 't', 0, G_OPTION_ARG_NONE, &amp;tags,
76  *       N_("Output tags (also known as metadata)"), NULL},
77  *   {NULL}
78  *  };
79  *  ctx = g_option_context_new ("gst-launch");
80  *  g_option_context_add_main_entries (ctx, options, GETTEXT_PACKAGE);
81  *  g_option_context_add_group (ctx, gst_init_get_option_group ());
82  *  if (!g_option_context_parse (ctx, &amp;argc, &amp;argv, &amp;err)) {
83  *    g_print ("Error initializing: &percnt;s\n", GST_STR_NULL (err->message));
84  *    exit (1);
85  *  }
86  *  g_option_context_free (ctx);
87  * ...
88  * }
89  * </programlisting>
90  * </example>
91  *
92  * Use gst_version() to query the library version at runtime or use the
93  * GST_VERSION_* macros to find the version at compile time. Optionally
94  * gst_version_string() returns a printable string.
95  *
96  * The gst_deinit() call is used to clean up all internal resources used
97  * by <application>GStreamer</application>. It is mostly used in unit tests 
98  * to check for leaks.
99  *
100  * Last reviewed on 2006-08-11 (0.10.10)
101  */
102
103 #include "gst_private.h"
104 #include <stdlib.h>
105 #include <stdio.h>
106 #include <sys/types.h>
107 #ifdef HAVE_FORK
108 #include <sys/wait.h>
109 #endif /* HAVE_FORK */
110 #include <unistd.h>
111
112 #include "gst-i18n-lib.h"
113 #include <locale.h>             /* for LC_ALL */
114
115 #include "gst.h"
116
117 #define GST_CAT_DEFAULT GST_CAT_GST_INIT
118
119 #define MAX_PATH_SPLIT  16
120 #define GST_PLUGIN_SEPARATOR ","
121
122 static gboolean gst_initialized = FALSE;
123
124 #ifndef GST_DISABLE_REGISTRY
125 static GList *plugin_paths = NULL;      /* for delayed processing in post_init */
126 #endif
127
128 extern gint _gst_trace_on;
129
130 /* defaults */
131 #ifdef HAVE_FORK
132 #define DEFAULT_FORK TRUE;
133 #else
134 #define DEFAULT_FORK FALSE;
135 #endif /* HAVE_FORK */
136
137 /* set to TRUE when segfaults need to be left as is, FIXME, this variable is
138  * global. */
139 gboolean _gst_disable_segtrap = FALSE;
140
141 /* control the behaviour of registry rebuild */
142 static gboolean _gst_enable_registry_fork = DEFAULT_FORK;
143
144 static void load_plugin_func (gpointer data, gpointer user_data);
145 static gboolean init_pre (GOptionContext * context, GOptionGroup * group,
146     gpointer data, GError ** error);
147 static gboolean init_post (GOptionContext * context, GOptionGroup * group,
148     gpointer data, GError ** error);
149 static gboolean parse_goption_arg (const gchar * s_opt,
150     const gchar * arg, gpointer data, GError ** err);
151
152 static GSList *preload_plugins = NULL;
153
154 const gchar g_log_domain_gstreamer[] = "GStreamer";
155
156 static void
157 debug_log_handler (const gchar * log_domain,
158     GLogLevelFlags log_level, const gchar * message, gpointer user_data)
159 {
160   g_log_default_handler (log_domain, log_level, message, user_data);
161   /* FIXME: do we still need this ? fatal errors these days are all
162    * other than core errors */
163   /* g_on_error_query (NULL); */
164 }
165
166 enum
167 {
168   ARG_VERSION = 1,
169   ARG_FATAL_WARNINGS,
170 #ifndef GST_DISABLE_GST_DEBUG
171   ARG_DEBUG_LEVEL,
172   ARG_DEBUG,
173   ARG_DEBUG_DISABLE,
174   ARG_DEBUG_NO_COLOR,
175   ARG_DEBUG_HELP,
176 #endif
177   ARG_PLUGIN_SPEW,
178   ARG_PLUGIN_PATH,
179   ARG_PLUGIN_LOAD,
180   ARG_SEGTRAP_DISABLE,
181   ARG_REGISTRY_FORK_DISABLE
182 };
183
184 /* debug-spec ::= category-spec [, category-spec]*
185  * category-spec ::= category:val | val
186  * category ::= [^:]+
187  * val ::= [0-5]
188  */
189
190 #ifndef NUL
191 #define NUL '\0'
192 #endif
193
194 #ifndef GST_DISABLE_GST_DEBUG
195 static gboolean
196 parse_debug_category (gchar * str, const gchar ** category)
197 {
198   if (!str)
199     return FALSE;
200
201   /* works in place */
202   g_strstrip (str);
203
204   if (str[0] != NUL) {
205     *category = str;
206     return TRUE;
207   }
208
209   return FALSE;
210 }
211
212 static gboolean
213 parse_debug_level (gchar * str, gint * level)
214 {
215   if (!str)
216     return FALSE;
217
218   /* works in place */
219   g_strstrip (str);
220
221   if (str[0] != NUL && str[1] == NUL
222       && str[0] >= '0' && str[0] < '0' + GST_LEVEL_COUNT) {
223     *level = str[0] - '0';
224     return TRUE;
225   }
226
227   return FALSE;
228 }
229
230 static void
231 parse_debug_list (const gchar * list)
232 {
233   gchar **split;
234   gchar **walk;
235
236   g_return_if_fail (list != NULL);
237
238   split = g_strsplit (list, ",", 0);
239
240   for (walk = split; *walk; walk++) {
241     if (strchr (*walk, ':')) {
242       gchar **values = g_strsplit (*walk, ":", 2);
243
244       if (values[0] && values[1]) {
245         gint level;
246         const gchar *category;
247
248         if (parse_debug_category (values[0], &category)
249             && parse_debug_level (values[1], &level))
250           gst_debug_set_threshold_for_name (category, level);
251       }
252
253       g_strfreev (values);
254     } else {
255       gint level;
256
257       if (parse_debug_level (*walk, &level))
258         gst_debug_set_default_threshold (level);
259     }
260   }
261
262   g_strfreev (split);
263 }
264 #endif
265
266 /**
267  * gst_init_get_option_group:
268  *
269  * Returns a #GOptionGroup with GStreamer's argument specifications. The
270  * group is set up to use standard GOption callbacks, so when using this
271  * group in combination with GOption parsing methods, all argument parsing
272  * and initialization is automated.
273  *
274  * This function is useful if you want to integrate GStreamer with other
275  * libraries that use GOption (see g_option_context_add_group() ).
276  *
277  * Returns: a pointer to GStreamer's option group. Should be dereferenced
278  * after use.
279  */
280
281 GOptionGroup *
282 gst_init_get_option_group (void)
283 {
284   GOptionGroup *group;
285   const static GOptionEntry gst_args[] = {
286     {"gst-version", 0, G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK,
287         parse_goption_arg, N_("Print the GStreamer version"), NULL},
288     {"gst-fatal-warnings", 0, G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK,
289         parse_goption_arg, N_("Make all warnings fatal"), NULL},
290 #ifndef GST_DISABLE_GST_DEBUG
291     {"gst-debug-help", 0, G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK,
292           parse_goption_arg, N_("Print available debug categories and exit"),
293         NULL},
294     {"gst-debug-level", 0, 0, G_OPTION_ARG_CALLBACK, parse_goption_arg,
295           N_("Default debug level from 1 (only error) to 5 (anything) or "
296               "0 for no output"),
297         N_("LEVEL")},
298     {"gst-debug", 0, 0, G_OPTION_ARG_CALLBACK, parse_goption_arg,
299           N_("Comma-separated list of category_name:level pairs to set "
300               "specific levels for the individual categories. Example: "
301               "GST_AUTOPLUG:5,GST_ELEMENT_*:3"),
302         N_("LIST")},
303     {"gst-debug-no-color", 0, G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK,
304         parse_goption_arg, N_("Disable colored debugging output"), NULL},
305     {"gst-debug-disable", 0, G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK,
306         parse_goption_arg, N_("Disable debugging"), NULL},
307 #endif
308     {"gst-plugin-spew", 0, G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK,
309           parse_goption_arg, N_("Enable verbose plugin loading diagnostics"),
310         NULL},
311     {"gst-plugin-path", 0, 0, G_OPTION_ARG_CALLBACK, parse_goption_arg,
312         N_("Colon-separated paths containing plugins"), N_("PATHS")},
313     {"gst-plugin-load", 0, 0, G_OPTION_ARG_CALLBACK, parse_goption_arg,
314           N_("Comma-separated list of plugins to preload in addition to the "
315               "list stored in environment variable GST_PLUGIN_PATH"),
316         N_("PLUGINS")},
317     {"gst-disable-segtrap", 0, G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK,
318           parse_goption_arg,
319           N_("Disable trapping of segmentation faults during plugin loading"),
320         NULL},
321     {"gst-disable-registry-fork", 0, G_OPTION_FLAG_NO_ARG,
322           G_OPTION_ARG_CALLBACK,
323           parse_goption_arg,
324           N_("Disable the use of fork() while scanning the registry"),
325         NULL},
326     {NULL}
327   };
328
329   group = g_option_group_new ("gst", _("GStreamer Options"),
330       _("Show GStreamer Options"), NULL, NULL);
331   g_option_group_set_parse_hooks (group, (GOptionParseFunc) init_pre,
332       (GOptionParseFunc) init_post);
333
334   g_option_group_add_entries (group, gst_args);
335   g_option_group_set_translation_domain (group, GETTEXT_PACKAGE);
336
337   return group;
338 }
339
340 /**
341  * gst_init_check:
342  * @argc: pointer to application's argc
343  * @argv: pointer to application's argv
344  * @err: pointer to a #GError to which a message will be posted on error
345  *
346  * Initializes the GStreamer library, setting up internal path lists,
347  * registering built-in elements, and loading standard plugins.
348  *
349  * This function will return %FALSE if GStreamer could not be initialized
350  * for some reason.  If you want your program to fail fatally,
351  * use gst_init() instead.
352  *
353  * Returns: %TRUE if GStreamer could be initialized.
354  */
355 gboolean
356 gst_init_check (int *argc, char **argv[], GError ** err)
357 {
358   GOptionGroup *group;
359   GOptionContext *ctx;
360   gboolean res;
361
362   GST_INFO ("initializing GStreamer");
363
364   if (gst_initialized) {
365     GST_DEBUG ("already initialized gst");
366     return TRUE;
367   }
368
369   ctx = g_option_context_new ("- GStreamer initialization");
370   g_option_context_set_ignore_unknown_options (ctx, TRUE);
371   group = gst_init_get_option_group ();
372   g_option_context_add_group (ctx, group);
373   res = g_option_context_parse (ctx, argc, argv, err);
374   g_option_context_free (ctx);
375
376   gst_initialized = res;
377
378   if (res) {
379     GST_INFO ("initialized GStreamer successfully");
380   } else {
381     GST_INFO ("failed to initialize GStreamer");
382   }
383
384   return res;
385 }
386
387 /**
388  * gst_init:
389  * @argc: pointer to application's argc
390  * @argv: pointer to application's argv
391  *
392  * Initializes the GStreamer library, setting up internal path lists,
393  * registering built-in elements, and loading standard plugins.
394  *
395  * <note><para>
396  * This function will terminate your program if it was unable to initialize
397  * GStreamer for some reason.  If you want your program to fall back,
398  * use gst_init_check() instead.
399  * </para></note>
400  *
401  * WARNING: This function does not work in the same way as corresponding
402  * functions in other glib-style libraries, such as gtk_init().  In
403  * particular, unknown command line options cause this function to
404  * abort program execution.
405  */
406 void
407 gst_init (int *argc, char **argv[])
408 {
409   GError *err = NULL;
410
411   if (!gst_init_check (argc, argv, &err)) {
412     g_print ("Could not initialize GStreamer: %s\n",
413         err ? err->message : "unknown error occurred");
414     if (err) {
415       g_error_free (err);
416     }
417     exit (1);
418   }
419 }
420
421 #ifndef GST_DISABLE_REGISTRY
422 static void
423 add_path_func (gpointer data, gpointer user_data)
424 {
425   GST_INFO ("Adding plugin path: \"%s\", will scan later", (gchar *) data);
426   plugin_paths = g_list_append (plugin_paths, g_strdup (data));
427 }
428 #endif
429
430 static void
431 prepare_for_load_plugin_func (gpointer data, gpointer user_data)
432 {
433   preload_plugins = g_slist_prepend (preload_plugins, g_strdup (data));
434 }
435
436 static void
437 load_plugin_func (gpointer data, gpointer user_data)
438 {
439   GstPlugin *plugin;
440   const gchar *filename;
441   GError *err = NULL;
442
443   filename = (const gchar *) data;
444
445   plugin = gst_plugin_load_file (filename, &err);
446
447   if (plugin) {
448     GST_INFO ("Loaded plugin: \"%s\"", filename);
449
450     gst_default_registry_add_plugin (plugin);
451   } else {
452     if (err) {
453       /* Report error to user, and free error */
454       GST_ERROR ("Failed to load plugin: %s\n", err->message);
455       g_error_free (err);
456     } else {
457       GST_WARNING ("Failed to load plugin: \"%s\"", filename);
458     }
459   }
460
461   g_free (data);
462 }
463
464 static void
465 split_and_iterate (const gchar * stringlist, gchar * separator, GFunc iterator,
466     gpointer user_data)
467 {
468   gchar **strings;
469   gint j = 0;
470   gchar *lastlist = g_strdup (stringlist);
471
472   while (lastlist) {
473     strings = g_strsplit (lastlist, separator, MAX_PATH_SPLIT);
474     g_free (lastlist);
475     lastlist = NULL;
476
477     while (strings[j]) {
478       iterator (strings[j], user_data);
479       if (++j == MAX_PATH_SPLIT) {
480         lastlist = g_strdup (strings[j]);
481         j = 0;
482         break;
483       }
484     }
485     g_strfreev (strings);
486   }
487 }
488
489 /* we have no fail cases yet, but maybe in the future */
490 static gboolean
491 init_pre (GOptionContext * context, GOptionGroup * group, gpointer data,
492     GError ** error)
493 {
494   /* GStreamer was built against a GLib >= 2.8 and is therefore not doing
495    * the refcount hack. Check that it isn't being run against an older GLib */
496   if (glib_major_version < 2 ||
497       (glib_major_version == 2 && glib_minor_version < 8)) {
498     g_warning ("GStreamer was compiled against GLib %d.%d.%d but is running"
499         " against %d.%d.%d. This will cause reference counting issues",
500         GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION, GLIB_MICRO_VERSION,
501         glib_major_version, glib_minor_version, glib_micro_version);
502   }
503
504   g_type_init ();
505
506   if (g_thread_supported ()) {
507     /* somebody already initialized threading */
508   } else {
509     g_thread_init (NULL);
510   }
511   /* we need threading to be enabled right here */
512   _gst_debug_init ();
513
514 #ifdef ENABLE_NLS
515   setlocale (LC_ALL, "");
516   bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
517 #endif /* ENABLE_NLS */
518
519 #ifndef GST_DISABLE_GST_DEBUG
520   {
521     const gchar *debug_list;
522
523     if (g_getenv ("GST_DEBUG_NO_COLOR") != NULL)
524       gst_debug_set_colored (FALSE);
525
526     debug_list = g_getenv ("GST_DEBUG");
527     if (debug_list) {
528       parse_debug_list (debug_list);
529     }
530   }
531 #endif
532   /* This is the earliest we can make stuff show up in the logs.
533    * So give some useful info about GStreamer here */
534   GST_INFO ("Initializing GStreamer Core Library version %s", VERSION);
535   GST_INFO ("Using library installed in %s", LIBDIR);
536
537   return TRUE;
538 }
539
540 static gboolean
541 gst_register_core_elements (GstPlugin * plugin)
542 {
543   /* register some standard builtin types */
544   if (!gst_element_register (plugin, "bin", GST_RANK_PRIMARY,
545           GST_TYPE_BIN) ||
546       !gst_element_register (plugin, "pipeline", GST_RANK_PRIMARY,
547           GST_TYPE_PIPELINE)
548       )
549     g_assert_not_reached ();
550
551   return TRUE;
552 }
553
554 static GstPluginDesc plugin_desc = {
555   GST_VERSION_MAJOR,
556   GST_VERSION_MINOR,
557   "staticelements",
558   "core elements linked into the GStreamer library",
559   gst_register_core_elements,
560   VERSION,
561   GST_LICENSE,
562   PACKAGE,
563   GST_PACKAGE_NAME,
564   GST_PACKAGE_ORIGIN,
565
566   GST_PADDING_INIT
567 };
568
569 #ifndef GST_DISABLE_REGISTRY
570
571 /*
572  * scan_and_update_registry:
573  * @default_registry: the #GstRegistry
574  * @registry_file: registry filename
575  * @write_changes: write registry if it has changed?
576  *
577  * Scans for registry changes and evntualy updates the registry cache. 
578  *
579  * Return: %TRUE if the registry could be updated
580  */
581 static gboolean
582 scan_and_update_registry (GstRegistry * default_registry,
583     const gchar * registry_file, gboolean write_changes, GError ** error)
584 {
585   const gchar *plugin_path;
586   gboolean changed = FALSE;
587   GList *l;
588
589   GST_DEBUG ("reading registry cache: %s", registry_file);
590   gst_registry_xml_read_cache (default_registry, registry_file);
591
592   /* scan paths specified via --gst-plugin-path */
593   GST_DEBUG ("scanning paths added via --gst-plugin-path");
594   for (l = plugin_paths; l != NULL; l = l->next) {
595     GST_INFO ("Scanning plugin path: \"%s\"", (gchar *) l->data);
596     /* CHECKME: add changed |= here as well? */
597     gst_registry_scan_path (default_registry, (gchar *) l->data);
598     g_free (l->data);
599   }
600   g_list_free (plugin_paths);
601   plugin_paths = NULL;
602
603   /* GST_PLUGIN_PATH specifies a list of directories to scan for
604    * additional plugins.  These take precedence over the system plugins */
605   plugin_path = g_getenv ("GST_PLUGIN_PATH");
606   if (plugin_path) {
607     char **list;
608     int i;
609
610     GST_DEBUG ("GST_PLUGIN_PATH set to %s", plugin_path);
611     list = g_strsplit (plugin_path, G_SEARCHPATH_SEPARATOR_S, 0);
612     for (i = 0; list[i]; i++) {
613       changed |= gst_registry_scan_path (default_registry, list[i]);
614     }
615     g_strfreev (list);
616   } else {
617     GST_DEBUG ("GST_PLUGIN_PATH not set");
618   }
619
620   /* GST_PLUGIN_SYSTEM_PATH specifies a list of plugins that are always
621    * loaded by default.  If not set, this defaults to the system-installed
622    * path, and the plugins installed in the user's home directory */
623   plugin_path = g_getenv ("GST_PLUGIN_SYSTEM_PATH");
624   if (plugin_path == NULL) {
625     char *home_plugins;
626
627     GST_DEBUG ("GST_PLUGIN_SYSTEM_PATH not set");
628
629     /* plugins in the user's home directory take precedence over
630      * system-installed ones */
631     home_plugins = g_build_filename (g_get_home_dir (),
632         ".gstreamer-" GST_MAJORMINOR, "plugins", NULL);
633     changed |= gst_registry_scan_path (default_registry, home_plugins);
634     g_free (home_plugins);
635
636     /* add the main (installed) library path */
637     changed |= gst_registry_scan_path (default_registry, PLUGINDIR);
638   } else {
639     gchar **list;
640     gint i;
641
642     GST_DEBUG ("GST_PLUGIN_SYSTEM_PATH set to %s", plugin_path);
643     list = g_strsplit (plugin_path, G_SEARCHPATH_SEPARATOR_S, 0);
644     for (i = 0; list[i]; i++) {
645       changed |= gst_registry_scan_path (default_registry, list[i]);
646     }
647     g_strfreev (list);
648   }
649
650   /* Remove cached plugins so stale info is cleared. */
651   changed |= _priv_gst_registry_remove_cache_plugins (default_registry);
652
653   if (!changed) {
654     GST_INFO ("Registry cache has not changed");
655     return TRUE;
656   }
657
658   if (!write_changes) {
659     GST_INFO ("Registry cached changed, but writing is disabled. Not writing.");
660     return TRUE;
661   }
662
663   GST_INFO ("Registry cache changed. Writing new registry cache");
664   if (!gst_registry_xml_write_cache (default_registry, registry_file)) {
665     g_set_error (error, GST_CORE_ERROR, GST_CORE_ERROR_FAILED,
666         _("Error writing registry cache to %s: %s"),
667         registry_file, g_strerror (errno));
668     return FALSE;
669   }
670
671   GST_INFO ("Registry cache written successfully");
672   return TRUE;
673 }
674
675 static gboolean
676 ensure_current_registry_nonforking (GstRegistry * default_registry,
677     const gchar * registry_file, GError ** error)
678 {
679   /* fork() not available */
680   GST_DEBUG ("Updating registry cache in-process");
681   scan_and_update_registry (default_registry, registry_file, TRUE, error);
682   return TRUE;
683 }
684
685 /* when forking is not available this function always does nothing but return
686  * TRUE immediatly */
687 static gboolean
688 ensure_current_registry_forking (GstRegistry * default_registry,
689     const gchar * registry_file, GError ** error)
690 {
691 #ifdef HAVE_FORK
692   pid_t pid;
693
694   /* We fork here, and let the child read and possibly rebuild the registry.
695    * After that, the parent will re-read the freshly generated registry. */
696   GST_DEBUG ("forking to update registry");
697   pid = fork ();
698   if (pid == -1) {
699     GST_ERROR ("Failed to fork()");
700     return FALSE;
701   }
702
703   if (pid == 0) {
704     gboolean res;
705
706     /* this is the child */
707     GST_DEBUG ("child reading registry cache");
708     res =
709         scan_and_update_registry (default_registry, registry_file, TRUE, NULL);
710
711     /* need to use _exit, so that any exit handlers registered don't
712      * bring down the main program */
713     GST_DEBUG ("child exiting: %s", (res) ? "SUCCESS" : "FAILURE");
714
715     /* make valgrind happy (yes, you can call it insane) */
716     g_free ((char *) registry_file);
717
718     _exit ((res) ? EXIT_SUCCESS : EXIT_FAILURE);
719   } else {
720     /* parent */
721     int status;
722     pid_t ret;
723
724     GST_DEBUG ("parent waiting on child");
725     ret = waitpid (pid, &status, 0);
726     GST_DEBUG ("parent done waiting on child");
727     if (ret == -1) {
728       GST_ERROR ("error during waitpid: %s", g_strerror (errno));
729       g_set_error (error, GST_CORE_ERROR, GST_CORE_ERROR_FAILED,
730           _("Error re-scanning registry %s: %s"),
731           ", waitpid returned error", g_strerror (errno));
732       return FALSE;
733     }
734
735     if (!WIFEXITED (status)) {
736       if (WIFSIGNALED (status)) {
737         GST_ERROR ("child did not exit normally, terminated by signal %d",
738             WTERMSIG (status));
739         g_set_error (error, GST_CORE_ERROR, GST_CORE_ERROR_FAILED,
740             _("Error re-scanning registry %s: %d"),
741             ", child terminated by signal", WTERMSIG (status));
742       } else {
743         GST_ERROR ("child did not exit normally, status: %d", status);
744         g_set_error (error, GST_CORE_ERROR, GST_CORE_ERROR_FAILED,
745             _("Error re-scanning registry %s: %d"),
746             ", child did not exit normally, status", status);
747       }
748       return FALSE;
749     }
750
751     GST_DEBUG ("child exited normally with return value %d",
752         WEXITSTATUS (status));
753
754     if (WEXITSTATUS (status) == EXIT_SUCCESS) {
755       GST_DEBUG ("parent reading registry cache");
756       gst_registry_xml_read_cache (default_registry, registry_file);
757     } else {
758       GST_DEBUG ("parent re-scanning registry. Ignoring errors.");
759       scan_and_update_registry (default_registry, registry_file, FALSE, NULL);
760     }
761   }
762 #endif /* HAVE_FORK */
763   return TRUE;
764 }
765
766 static gboolean
767 ensure_current_registry (GError ** error)
768 {
769   char *registry_file;
770   GstRegistry *default_registry;
771   gboolean ret;
772   gboolean do_fork;
773
774   default_registry = gst_registry_get_default ();
775   registry_file = g_strdup (g_getenv ("GST_REGISTRY"));
776   if (registry_file == NULL) {
777     registry_file = g_build_filename (g_get_home_dir (),
778         ".gstreamer-" GST_MAJORMINOR, "registry." HOST_CPU ".xml", NULL);
779   }
780
781   /* first see if forking is enabled */
782   do_fork = _gst_enable_registry_fork;
783   if (do_fork) {
784     const gchar *fork_env;
785
786     /* forking enabled, see if it is disabled with an env var */
787     if ((fork_env = g_getenv ("GST_REGISTRY_FORK"))) {
788       /* fork enabled for any value different from "no" */
789       do_fork = strcmp (fork_env, "no") != 0;
790     }
791   }
792
793   /* now check registry with or without forking */
794   if (do_fork) {
795     GST_DEBUG ("forking for registry rebuild");
796     ret = ensure_current_registry_forking (default_registry, registry_file,
797         error);
798   } else {
799     GST_DEBUG ("requested not to fork for registry rebuild");
800     ret = ensure_current_registry_nonforking (default_registry, registry_file,
801         error);
802   }
803
804   g_free (registry_file);
805
806   return ret;
807 }
808 #endif /* GST_DISABLE_REGISTRY */
809
810 /*
811  * this bit handles:
812  * - initalization of threads if we use them
813  * - log handler
814  * - initial output
815  * - initializes gst_format
816  * - registers a bunch of types for gst_objects
817  *
818  * - we don't have cases yet where this fails, but in the future
819  *   we might and then it's nice to be able to return that
820  */
821 static gboolean
822 init_post (GOptionContext * context, GOptionGroup * group, gpointer data,
823     GError ** error)
824 {
825   GLogLevelFlags llf;
826
827 #ifndef GST_DISABLE_TRACE
828   GstTrace *gst_trace;
829 #endif /* GST_DISABLE_TRACE */
830
831   llf = G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_ERROR | G_LOG_FLAG_FATAL;
832   g_log_set_handler (g_log_domain_gstreamer, llf, debug_log_handler, NULL);
833
834   _priv_gst_quarks_initialize ();
835   _gst_format_initialize ();
836   _gst_query_initialize ();
837   gst_object_get_type ();
838   gst_pad_get_type ();
839   gst_element_factory_get_type ();
840   gst_element_get_type ();
841   gst_type_find_factory_get_type ();
842   gst_bin_get_type ();
843
844 #ifndef GST_DISABLE_INDEX
845   gst_index_factory_get_type ();
846 #endif /* GST_DISABLE_INDEX */
847 #ifndef GST_DISABLE_URI
848   gst_uri_handler_get_type ();
849 #endif /* GST_DISABLE_URI */
850
851   gst_structure_get_type ();
852   _gst_value_initialize ();
853   gst_caps_get_type ();
854   _gst_event_initialize ();
855   _gst_buffer_initialize ();
856   _gst_message_initialize ();
857   _gst_tag_initialize ();
858
859   /* register core plugins */
860   _gst_plugin_register_static (&plugin_desc);
861
862   _gst_plugin_initialize ();
863
864   /*
865    * Any errors happening below this point are non-fatal, we therefore mark
866    * gstreamer as being initialized, since it is the case from a plugin point of
867    * view.
868    *
869    * If anything fails, it will be put back to FALSE in gst_init_check().
870    * This allows some special plugins that would call gst_init() to not cause a
871    * looping effect (i.e. initializing GStreamer twice).
872    */
873   gst_initialized = TRUE;
874
875 #ifndef GST_DISABLE_REGISTRY
876   if (!ensure_current_registry (error))
877     return FALSE;
878 #endif /* GST_DISABLE_REGISTRY */
879
880   /* if we need to preload plugins */
881   if (preload_plugins) {
882     g_slist_foreach (preload_plugins, load_plugin_func, NULL);
883     g_slist_free (preload_plugins);
884     preload_plugins = NULL;
885   }
886 #ifndef GST_DISABLE_TRACE
887   _gst_trace_on = 0;
888   if (_gst_trace_on) {
889     gst_trace = gst_trace_new ("gst.trace", 1024);
890     gst_trace_set_default (gst_trace);
891   }
892 #endif /* GST_DISABLE_TRACE */
893
894   return TRUE;
895 }
896
897 #ifndef GST_DISABLE_GST_DEBUG
898 static gboolean
899 select_all (GstPlugin * plugin, gpointer user_data)
900 {
901   return TRUE;
902 }
903
904 static gint
905 sort_by_category_name (gconstpointer a, gconstpointer b)
906 {
907   return strcmp (gst_debug_category_get_name ((GstDebugCategory *) a),
908       gst_debug_category_get_name ((GstDebugCategory *) b));
909 }
910 static void
911 gst_debug_help (void)
912 {
913   GSList *list, *walk;
914   GList *list2, *g;
915
916   /* Need to ensure the registry is loaded to get debug categories */
917   if (!init_post (NULL, NULL, NULL, NULL))
918     exit (1);
919
920   list2 = gst_registry_plugin_filter (gst_registry_get_default (),
921       select_all, FALSE, NULL);
922
923   /* FIXME this is gross.  why don't debug have categories PluginFeatures? */
924   for (g = list2; g; g = g_list_next (g)) {
925     GstPlugin *plugin = GST_PLUGIN_CAST (g->data);
926
927     gst_plugin_load (plugin);
928   }
929   g_list_free (list2);
930
931   list = gst_debug_get_all_categories ();
932   walk = list = g_slist_sort (list, sort_by_category_name);
933
934   g_print ("\n");
935   g_print ("name                  level    description\n");
936   g_print ("---------------------+--------+--------------------------------\n");
937
938   while (walk) {
939     GstDebugCategory *cat = (GstDebugCategory *) walk->data;
940
941     if (gst_debug_is_colored ()) {
942       gchar *color = gst_debug_construct_term_color (cat->color);
943
944       g_print ("%s%-20s\033[00m  %1d %s  %s%s\033[00m\n",
945           color,
946           gst_debug_category_get_name (cat),
947           gst_debug_category_get_threshold (cat),
948           gst_debug_level_get_name (gst_debug_category_get_threshold (cat)),
949           color, gst_debug_category_get_description (cat));
950       g_free (color);
951     } else {
952       g_print ("%-20s  %1d %s  %s\n", gst_debug_category_get_name (cat),
953           gst_debug_category_get_threshold (cat),
954           gst_debug_level_get_name (gst_debug_category_get_threshold (cat)),
955           gst_debug_category_get_description (cat));
956     }
957     walk = g_slist_next (walk);
958   }
959   g_slist_free (list);
960   g_print ("\n");
961 }
962 #endif
963
964 static gboolean
965 parse_one_option (gint opt, const gchar * arg, GError ** err)
966 {
967   switch (opt) {
968     case ARG_VERSION:
969       g_print ("GStreamer Core Library version %s\n", PACKAGE_VERSION);
970       exit (0);
971     case ARG_FATAL_WARNINGS:{
972       GLogLevelFlags fatal_mask;
973
974       fatal_mask = g_log_set_always_fatal (G_LOG_FATAL_MASK);
975       fatal_mask |= G_LOG_LEVEL_WARNING | G_LOG_LEVEL_CRITICAL;
976       g_log_set_always_fatal (fatal_mask);
977       break;
978     }
979 #ifndef GST_DISABLE_GST_DEBUG
980     case ARG_DEBUG_LEVEL:{
981       gint tmp = 0;
982
983       tmp = strtol (arg, NULL, 0);
984       if (tmp >= 0 && tmp < GST_LEVEL_COUNT) {
985         gst_debug_set_default_threshold (tmp);
986       }
987       break;
988     }
989     case ARG_DEBUG:
990       parse_debug_list (arg);
991       break;
992     case ARG_DEBUG_NO_COLOR:
993       gst_debug_set_colored (FALSE);
994       break;
995     case ARG_DEBUG_DISABLE:
996       gst_debug_set_active (FALSE);
997       break;
998     case ARG_DEBUG_HELP:
999       gst_debug_help ();
1000       exit (0);
1001 #endif
1002     case ARG_PLUGIN_SPEW:
1003       break;
1004     case ARG_PLUGIN_PATH:
1005 #ifndef GST_DISABLE_REGISTRY
1006       split_and_iterate (arg, G_SEARCHPATH_SEPARATOR_S, add_path_func, NULL);
1007 #endif /* GST_DISABLE_REGISTRY */
1008       break;
1009     case ARG_PLUGIN_LOAD:
1010       split_and_iterate (arg, ",", prepare_for_load_plugin_func, NULL);
1011       break;
1012     case ARG_SEGTRAP_DISABLE:
1013       _gst_disable_segtrap = TRUE;
1014       break;
1015     case ARG_REGISTRY_FORK_DISABLE:
1016       _gst_enable_registry_fork = FALSE;
1017       break;
1018     default:
1019       g_set_error (err, G_OPTION_ERROR, G_OPTION_ERROR_UNKNOWN_OPTION,
1020           _("Unknown option"));
1021       return FALSE;
1022   }
1023
1024   return TRUE;
1025 }
1026
1027 static gboolean
1028 parse_goption_arg (const gchar * opt,
1029     const gchar * arg, gpointer data, GError ** err)
1030 {
1031   static const struct
1032   {
1033     gchar *opt;
1034     int val;
1035   } options[] = {
1036     {
1037     "--gst-version", ARG_VERSION}, {
1038     "--gst-fatal-warnings", ARG_FATAL_WARNINGS},
1039 #ifndef GST_DISABLE_GST_DEBUG
1040     {
1041     "--gst-debug-level", ARG_DEBUG_LEVEL}, {
1042     "--gst-debug", ARG_DEBUG}, {
1043     "--gst-debug-disable", ARG_DEBUG_DISABLE}, {
1044     "--gst-debug-no-color", ARG_DEBUG_NO_COLOR}, {
1045     "--gst-debug-help", ARG_DEBUG_HELP},
1046 #endif
1047     {
1048     "--gst-plugin-spew", ARG_PLUGIN_SPEW}, {
1049     "--gst-plugin-path", ARG_PLUGIN_PATH}, {
1050     "--gst-plugin-load", ARG_PLUGIN_LOAD}, {
1051     "--gst-disable-segtrap", ARG_SEGTRAP_DISABLE}, {
1052     "--gst-disable-registry-fork", ARG_REGISTRY_FORK_DISABLE}, {
1053     NULL}
1054   };
1055   gint val = 0, n;
1056
1057   for (n = 0; options[n].opt; n++) {
1058     if (!strcmp (opt, options[n].opt)) {
1059       val = options[n].val;
1060       break;
1061     }
1062   }
1063
1064   return parse_one_option (val, arg, err);
1065 }
1066
1067 extern GstRegistry *_gst_registry_default;
1068
1069 /**
1070  * gst_deinit:
1071  *
1072  * Clean up any resources created by GStreamer in gst_init().
1073  *
1074  * It is normally not needed to call this function in a normal application
1075  * as the resources will automatically be freed when the program terminates.
1076  * This function is therefore mostly used by testsuites and other memory
1077  * profiling tools.
1078  *
1079  * After this call GStreamer (including this method) should not be used anymore. 
1080  */
1081 void
1082 gst_deinit (void)
1083 {
1084   GstClock *clock;
1085
1086   GST_INFO ("deinitializing GStreamer");
1087
1088   if (!gst_initialized) {
1089     GST_DEBUG ("already deinitialized");
1090     return;
1091   }
1092
1093   clock = gst_system_clock_obtain ();
1094   gst_object_unref (clock);
1095   gst_object_unref (clock);
1096
1097   _priv_gst_registry_cleanup ();
1098
1099   gst_initialized = FALSE;
1100   GST_INFO ("deinitialized GStreamer");
1101 }
1102
1103 /**
1104  * gst_version:
1105  * @major: pointer to a guint to store the major version number
1106  * @minor: pointer to a guint to store the minor version number
1107  * @micro: pointer to a guint to store the micro version number
1108  * @nano:  pointer to a guint to store the nano version number
1109  *
1110  * Gets the version number of the GStreamer library.
1111  */
1112 void
1113 gst_version (guint * major, guint * minor, guint * micro, guint * nano)
1114 {
1115   g_return_if_fail (major);
1116   g_return_if_fail (minor);
1117   g_return_if_fail (micro);
1118   g_return_if_fail (nano);
1119
1120   *major = GST_VERSION_MAJOR;
1121   *minor = GST_VERSION_MINOR;
1122   *micro = GST_VERSION_MICRO;
1123   *nano = GST_VERSION_NANO;
1124 }
1125
1126 /**
1127  * gst_version_string:
1128  *
1129  * This function returns a string that is useful for describing this version
1130  * of GStreamer to the outside world: user agent strings, logging, ...
1131  *
1132  * Returns: a newly allocated string describing this version of GStreamer.
1133  */
1134
1135 gchar *
1136 gst_version_string ()
1137 {
1138   guint major, minor, micro, nano;
1139
1140   gst_version (&major, &minor, &micro, &nano);
1141   if (nano == 0)
1142     return g_strdup_printf ("GStreamer %d.%d.%d", major, minor, micro);
1143   else if (nano == 1)
1144     return g_strdup_printf ("GStreamer %d.%d.%d (CVS)", major, minor, micro);
1145   else
1146     return g_strdup_printf ("GStreamer %d.%d.%d (prerelease)", major, minor,
1147         micro);
1148 }
1149
1150 /**
1151  * gst_segtrap_is_enabled:
1152  *
1153  * Some functions in the GStreamer core might install a custom SIGSEGV handler
1154  * to better catch and report errors to the application. Currently this feature
1155  * is enabled by default when loading plugins.
1156  *
1157  * Applications might want to disable this behaviour with the
1158  * gst_segtrap_set_enabled() function. This is typically done if the application
1159  * wants to install its own handler without GStreamer interfering.
1160  *
1161  * Returns: %TRUE if GStreamer is allowed to install a custom SIGSEGV handler.
1162  *
1163  * Since: 0.10.10
1164  */
1165 gboolean
1166 gst_segtrap_is_enabled (void)
1167 {
1168   /* yeps, it's enabled when it's not disabled */
1169   return !_gst_disable_segtrap;
1170 }
1171
1172 /**
1173  * gst_segtrap_set_enabled:
1174  * @enabled: whether a custom SIGSEGV handler should be installed.
1175  *
1176  * Applications might want to disable/enable the SIGSEGV handling of
1177  * the GStreamer core. See gst_segtrap_is_enabled() for more information.
1178  *
1179  * Since: 0.10.10
1180  */
1181 void
1182 gst_segtrap_set_enabled (gboolean enabled)
1183 {
1184   _gst_disable_segtrap = !enabled;
1185 }
1186
1187 /**
1188  * gst_registry_fork_is_enabled:
1189  *
1190  * By default GStreamer will perform a fork() when scanning and rebuilding the
1191  * registry file. 
1192  *
1193  * Applications might want to disable this behaviour with the
1194  * gst_registry_fork_set_enabled() function. 
1195  *
1196  * Returns: %TRUE if GStreamer will use fork() when rebuilding the registry. On
1197  * platforms without fork(), this function will always return %FALSE.
1198  *
1199  * Since: 0.10.10
1200  */
1201 gboolean
1202 gst_registry_fork_is_enabled (void)
1203 {
1204   return _gst_enable_registry_fork;
1205 }
1206
1207 /**
1208  * gst_registry_fork_set_enabled:
1209  * @enabled: whether rebuilding the registry may fork
1210  *
1211  * Applications might want to disable/enable the usage of fork() when rebuilding
1212  * the registry. See gst_registry_fork_is_enabled() for more information.
1213  *
1214  * On platforms without fork(), this function will have no effect on the return
1215  * value of gst_registry_fork_is_enabled().
1216  *
1217  * Since: 0.10.10
1218  */
1219 void
1220 gst_registry_fork_set_enabled (gboolean enabled)
1221 {
1222 #ifdef HAVE_FORK
1223   _gst_enable_registry_fork = enabled;
1224 #endif /* HAVE_FORK */
1225 }