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