gst/: Use _CAST macros to avoid unneeded type checking.
[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 still very fluid and thus can be changed
42  * to increase the sanity/noise ratio.
43  *
44  * The <application>GStreamer</application> library should be initialized with
45  * gst_init() before it can be used. You should pass pointers to the main argc
46  * and argv variables so that GStreamer can process its own command line
47  * options, as shown in the following example.
48  *
49  * <example>
50  * <title>Initializing the gstreamer library</title>
51  * <programlisting language="c">
52  * int
53  * main (int argc, char *argv[])
54  * {
55  *   // initialize the GStreamer library
56  *   gst_init (&amp;argc, &amp;argv);
57  *   ...
58  * }
59  * </programlisting>
60  * </example>
61  *
62  * It's allowed to pass two NULL pointers to gst_init() in case you don't want
63  * to pass the command line args to GStreamer.
64  *
65  * You can also use GOption to initialize your own parameters as shown in
66  * the next code fragment:
67  * <example>
68  * <title>Initializing own parameters when initializing gstreamer</title>
69  * <programlisting>
70  * static gboolean stats = FALSE;
71  * ...
72  * int
73  * main (int argc, char *argv[])
74  * {
75  *  GOptionEntry options[] = {
76  *   {"tags", 't', 0, G_OPTION_ARG_NONE, &amp;tags,
77  *       N_("Output tags (also known as metadata)"), NULL},
78  *   {NULL}
79  *  };
80  *  ctx = g_option_context_new ("gst-launch");
81  *  g_option_context_add_main_entries (ctx, options, GETTEXT_PACKAGE);
82  *  g_option_context_add_group (ctx, gst_init_get_option_group ());
83  *  if (!g_option_context_parse (ctx, &amp;argc, &amp;argv, &amp;err)) {
84  *    g_print ("Error initializing: &percnt;s\n", GST_STR_NULL (err->message));
85  *    exit (1);
86  *  }
87  *  g_option_context_free (ctx);
88  * ...
89  * }
90  * </programlisting>
91  * </example>
92  *
93  * Use gst_version() to query the library version at runtime or use the
94  * GST_VERSION_* macros to find the version at compile time. Optionally
95  * gst_version_string() returns a printable string.
96  *
97  * The gst_deinit() call is used to clean up all internal resources used
98  * by <application>GStreamer</application>. It is mostly used in unit tests 
99  * to check for leaks.
100  *
101  * Last reviewed on 2005-11-23 (0.9.5)
102  */
103
104 #include "gst_private.h"
105 #include <stdlib.h>
106 #include <stdio.h>
107 #include <sys/types.h>
108 #ifdef HAVE_FORK
109 #include <sys/wait.h>
110 #endif //HAVE_FORK
111 #include <unistd.h>
112
113 #include "gst-i18n-lib.h"
114 #include <locale.h>             /* for LC_ALL */
115
116 #include "gst.h"
117
118 #define GST_CAT_DEFAULT GST_CAT_GST_INIT
119
120 #define MAX_PATH_SPLIT  16
121 #define GST_PLUGIN_SEPARATOR ","
122
123 static gboolean gst_initialized = FALSE;
124
125 #ifndef GST_DISABLE_REGISTRY
126 static GList *plugin_paths = NULL;      /* for delayed processing in post_init */
127 #endif
128
129 extern gint _gst_trace_on;
130
131 /* set to TRUE when segfaults need to be left as is */
132 gboolean _gst_disable_segtrap = FALSE;
133
134
135 static void load_plugin_func (gpointer data, gpointer user_data);
136 static gboolean init_pre (void);
137 static gboolean init_post (void);
138 static gboolean parse_goption_arg (const gchar * s_opt,
139     const gchar * arg, gpointer data, GError ** err);
140
141 static GSList *preload_plugins = NULL;
142
143 const gchar g_log_domain_gstreamer[] = "GStreamer";
144
145 static void
146 debug_log_handler (const gchar * log_domain,
147     GLogLevelFlags log_level, const gchar * message, gpointer user_data)
148 {
149   g_log_default_handler (log_domain, log_level, message, user_data);
150   /* FIXME: do we still need this ? fatal errors these days are all
151    * other than core errors */
152   /* g_on_error_query (NULL); */
153 }
154
155 enum
156 {
157   ARG_VERSION = 1,
158   ARG_FATAL_WARNINGS,
159 #ifndef GST_DISABLE_GST_DEBUG
160   ARG_DEBUG_LEVEL,
161   ARG_DEBUG,
162   ARG_DEBUG_DISABLE,
163   ARG_DEBUG_NO_COLOR,
164   ARG_DEBUG_HELP,
165 #endif
166   ARG_PLUGIN_SPEW,
167   ARG_PLUGIN_PATH,
168   ARG_PLUGIN_LOAD,
169   ARG_SEGTRAP_DISABLE
170 };
171
172 /* debug-spec ::= category-spec [, category-spec]*
173  * category-spec ::= category:val | val
174  * category ::= [^:]+
175  * val ::= [0-5]
176  */
177
178 #ifndef NUL
179 #define NUL '\0'
180 #endif
181
182 #ifndef GST_DISABLE_GST_DEBUG
183 static gboolean
184 parse_debug_category (gchar * str, const gchar ** category)
185 {
186   if (!str)
187     return FALSE;
188
189   /* works in place */
190   g_strstrip (str);
191
192   if (str[0] != NUL) {
193     *category = str;
194     return TRUE;
195   }
196
197   return FALSE;
198 }
199
200 static gboolean
201 parse_debug_level (gchar * str, gint * level)
202 {
203   if (!str)
204     return FALSE;
205
206   /* works in place */
207   g_strstrip (str);
208
209   if (str[0] != NUL && str[1] == NUL
210       && str[0] >= '0' && str[0] < '0' + GST_LEVEL_COUNT) {
211     *level = str[0] - '0';
212     return TRUE;
213   }
214
215   return FALSE;
216 }
217
218 static void
219 parse_debug_list (const gchar * list)
220 {
221   gchar **split;
222   gchar **walk;
223
224   g_return_if_fail (list != NULL);
225
226   split = g_strsplit (list, ",", 0);
227
228   for (walk = split; *walk; walk++) {
229     if (strchr (*walk, ':')) {
230       gchar **values = g_strsplit (*walk, ":", 2);
231
232       if (values[0] && values[1]) {
233         gint level;
234         const gchar *category;
235
236         if (parse_debug_category (values[0], &category)
237             && parse_debug_level (values[1], &level))
238           gst_debug_set_threshold_for_name (category, level);
239       }
240
241       g_strfreev (values);
242     } else {
243       gint level;
244
245       if (parse_debug_level (*walk, &level))
246         gst_debug_set_default_threshold (level);
247     }
248   }
249
250   g_strfreev (split);
251 }
252 #endif
253
254 /**
255  * gst_init_get_option_group:
256  *
257  * Returns a #GOptionGroup with GStreamer's argument specifications. The
258  * group is set up to use standard GOption callbacks, so when using this
259  * group in combination with GOption parsing methods, all argument parsing
260  * and initialization is automated.
261  *
262  * This function is useful if you want to integrate GStreamer with other
263  * libraries that use GOption (see g_option_context_add_group() ).
264  *
265  * Returns: a pointer to GStreamer's option group. Should be dereferenced
266  * after use.
267  */
268
269 GOptionGroup *
270 gst_init_get_option_group (void)
271 {
272   GOptionGroup *group;
273   static GOptionEntry gst_args[] = {
274     {"gst-version", 0, G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK,
275         parse_goption_arg, N_("Print the GStreamer version"), NULL},
276     {"gst-fatal-warnings", 0, G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK,
277         parse_goption_arg, N_("Make all warnings fatal"), NULL},
278 #ifndef GST_DISABLE_GST_DEBUG
279     {"gst-debug-help", 0, G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK,
280           parse_goption_arg, N_("Print available debug categories and exit"),
281         NULL},
282     {"gst-debug-level", 0, 0, G_OPTION_ARG_CALLBACK, parse_goption_arg,
283           N_("Default debug level from 1 (only error) to 5 (anything) or "
284               "0 for no output"),
285         N_("LEVEL")},
286     {"gst-debug", 0, 0, G_OPTION_ARG_CALLBACK, parse_goption_arg,
287           N_("Comma-separated list of category_name:level pairs to set "
288               "specific levels for the individual categories. Example: "
289               "GST_AUTOPLUG:5,GST_ELEMENT_*:3"),
290         N_("LIST")},
291     {"gst-debug-no-color", 0, G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK,
292         parse_goption_arg, N_("Disable colored debugging output"), NULL},
293     {"gst-debug-disable", 0, G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK,
294         parse_goption_arg, N_("Disable debugging"), NULL},
295 #endif
296     {"gst-plugin-spew", 0, G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK,
297           parse_goption_arg, N_("Enable verbose plugin loading diagnostics"),
298         NULL},
299     {"gst-plugin-path", 0, 0, G_OPTION_ARG_CALLBACK, parse_goption_arg,
300         N_("Colon-separated paths containing plugins"), N_("PATHS")},
301     {"gst-plugin-load", 0, 0, G_OPTION_ARG_CALLBACK, parse_goption_arg,
302           N_("Comma-separated list of plugins to preload in addition to the "
303               "list stored in environment variable GST_PLUGIN_PATH"),
304         N_("PLUGINS")},
305     {"gst-disable-segtrap", 0, G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK,
306           parse_goption_arg,
307           N_("Disable trapping of segmentation faults during plugin loading"),
308         NULL},
309     {NULL}
310   };
311
312   group = g_option_group_new ("gst", _("GStreamer Options"),
313       _("Show GStreamer Options"), NULL, NULL);
314   g_option_group_set_parse_hooks (group, (GOptionParseFunc) init_pre,
315       (GOptionParseFunc) init_post);
316
317   g_option_group_add_entries (group, gst_args);
318   g_option_group_set_translation_domain (group, GETTEXT_PACKAGE);
319
320   return group;
321 }
322
323 /**
324  * gst_init_check:
325  * @argc: pointer to application's argc
326  * @argv: pointer to application's argv
327  * @err: pointer to a #GError to which a message will be posted on error
328  *
329  * Initializes the GStreamer library, setting up internal path lists,
330  * registering built-in elements, and loading standard plugins.
331  *
332  * This function will return %FALSE if GStreamer could not be initialized
333  * for some reason.  If you want your program to fail fatally,
334  * use gst_init() instead.
335  *
336  * Returns: %TRUE if GStreamer could be initialized.
337  */
338 gboolean
339 gst_init_check (int *argc, char **argv[], GError ** err)
340 {
341   GOptionGroup *group;
342   GOptionContext *ctx;
343   gboolean res;
344
345   if (gst_initialized) {
346     GST_DEBUG ("already initialized gst");
347     return TRUE;
348   }
349
350   ctx = g_option_context_new ("- GStreamer initialization");
351   g_option_context_set_ignore_unknown_options (ctx, TRUE);
352   group = gst_init_get_option_group ();
353   g_option_context_add_group (ctx, group);
354   res = g_option_context_parse (ctx, argc, argv, err);
355   g_option_context_free (ctx);
356
357   if (res) {
358     gst_initialized = TRUE;
359   }
360
361   return res;
362 }
363
364 /**
365  * gst_init:
366  * @argc: pointer to application's argc
367  * @argv: pointer to application's argv
368  *
369  * Initializes the GStreamer library, setting up internal path lists,
370  * registering built-in elements, and loading standard plugins.
371  *
372  * <note><para>
373  * This function will terminate your program if it was unable to initialize
374  * GStreamer for some reason.  If you want your program to fall back,
375  * use gst_init_check() instead.
376  * </para></note>
377  *
378  * WARNING: This function does not work in the same way as corresponding
379  * functions in other glib-style libraries, such as gtk_init().  In
380  * particular, unknown command line options cause this function to
381  * abort program execution.
382  */
383 void
384 gst_init (int *argc, char **argv[])
385 {
386   GError *err = NULL;
387
388   if (!gst_init_check (argc, argv, &err)) {
389     g_print ("Could not initialized GStreamer: %s\n",
390         err ? err->message : "unknown error occurred");
391     if (err) {
392       g_error_free (err);
393     }
394     exit (1);
395   }
396 }
397
398 #ifndef GST_DISABLE_REGISTRY
399 static void
400 add_path_func (gpointer data, gpointer user_data)
401 {
402   GST_INFO ("Adding plugin path: \"%s\", will scan later", (gchar *) data);
403   plugin_paths = g_list_append (plugin_paths, g_strdup (data));
404 }
405 #endif
406
407 static void
408 prepare_for_load_plugin_func (gpointer data, gpointer user_data)
409 {
410   preload_plugins = g_slist_prepend (preload_plugins, data);
411 }
412
413 static void
414 load_plugin_func (gpointer data, gpointer user_data)
415 {
416   GstPlugin *plugin;
417   const gchar *filename;
418   GError *err = NULL;
419
420   filename = (const gchar *) data;
421
422   plugin = gst_plugin_load_file (filename, &err);
423
424   if (plugin) {
425     GST_INFO ("Loaded plugin: \"%s\"", filename);
426
427     gst_default_registry_add_plugin (plugin);
428   } else {
429     if (err) {
430       /* Report error to user, and free error */
431       GST_ERROR ("Failed to load plugin: %s\n", err->message);
432       g_error_free (err);
433     } else {
434       GST_WARNING ("Failed to load plugin: \"%s\"", filename);
435     }
436   }
437
438   g_free (data);
439 }
440
441 static void
442 split_and_iterate (const gchar * stringlist, gchar * separator, GFunc iterator,
443     gpointer user_data)
444 {
445   gchar **strings;
446   gint j = 0;
447   gchar *lastlist = g_strdup (stringlist);
448
449   while (lastlist) {
450     strings = g_strsplit (lastlist, separator, MAX_PATH_SPLIT);
451     g_free (lastlist);
452     lastlist = NULL;
453
454     while (strings[j]) {
455       iterator (strings[j], user_data);
456       if (++j == MAX_PATH_SPLIT) {
457         lastlist = g_strdup (strings[j]);
458         g_strfreev (strings);
459         j = 0;
460         break;
461       }
462     }
463     g_strfreev (strings);
464   }
465 }
466
467 /* we have no fail cases yet, but maybe in the future */
468 static gboolean
469 init_pre (void)
470 {
471   /* GStreamer was built against a GLib >= 2.8 and is therefore not doing
472    * the refcount hack. Check that it isn't being run against an older GLib */
473   if (glib_major_version < 2 ||
474       (glib_major_version == 2 && glib_minor_version < 8)) {
475     g_warning ("GStreamer was compiled against GLib %d.%d.%d but is running"
476         " against %d.%d.%d. This will cause reference counting issues",
477         GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION, GLIB_MICRO_VERSION,
478         glib_major_version, glib_minor_version, glib_micro_version);
479   }
480
481   g_type_init ();
482
483   if (g_thread_supported ()) {
484     /* somebody already initialized threading */
485   } else {
486     g_thread_init (NULL);
487   }
488   /* we need threading to be enabled right here */
489   _gst_debug_init ();
490
491 #ifdef ENABLE_NLS
492   setlocale (LC_ALL, "");
493   bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
494 #endif /* ENABLE_NLS */
495
496 #ifndef GST_DISABLE_GST_DEBUG
497   {
498     const gchar *debug_list;
499
500     if (g_getenv ("GST_DEBUG_NO_COLOR") != NULL)
501       gst_debug_set_colored (FALSE);
502
503     debug_list = g_getenv ("GST_DEBUG");
504     if (debug_list) {
505       parse_debug_list (debug_list);
506     }
507   }
508 #endif
509   /* This is the earliest we can make stuff show up in the logs.
510    * So give some useful info about GStreamer here */
511   GST_INFO ("Initializing GStreamer Core Library version %s", VERSION);
512   GST_INFO ("Using library installed in %s", LIBDIR);
513
514   return TRUE;
515 }
516
517 static gboolean
518 gst_register_core_elements (GstPlugin * plugin)
519 {
520   /* register some standard builtin types */
521   if (!gst_element_register (plugin, "bin", GST_RANK_PRIMARY,
522           GST_TYPE_BIN) ||
523       !gst_element_register (plugin, "pipeline", GST_RANK_PRIMARY,
524           GST_TYPE_PIPELINE)
525       )
526     g_assert_not_reached ();
527
528   return TRUE;
529 }
530
531 static GstPluginDesc plugin_desc = {
532   GST_VERSION_MAJOR,
533   GST_VERSION_MINOR,
534   "staticelements",
535   "core elements linked into the GStreamer library",
536   gst_register_core_elements,
537   VERSION,
538   GST_LICENSE,
539   PACKAGE,
540   GST_PACKAGE_NAME,
541   GST_PACKAGE_ORIGIN,
542
543   GST_PADDING_INIT
544 };
545
546 /*
547  * this bit handles:
548  * - initalization of threads if we use them
549  * - log handler
550  * - initial output
551  * - initializes gst_format
552  * - registers a bunch of types for gst_objects
553  *
554  * - we don't have cases yet where this fails, but in the future
555  *   we might and then it's nice to be able to return that
556  */
557 static gboolean
558 init_post (void)
559 {
560   GLogLevelFlags llf;
561
562 #ifndef GST_DISABLE_TRACE
563   GstTrace *gst_trace;
564 #endif /* GST_DISABLE_TRACE */
565
566   llf = G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_ERROR | G_LOG_FLAG_FATAL;
567   g_log_set_handler (g_log_domain_gstreamer, llf, debug_log_handler, NULL);
568
569   _gst_format_initialize ();
570   _gst_query_initialize ();
571   gst_object_get_type ();
572   gst_pad_get_type ();
573   gst_element_factory_get_type ();
574   gst_element_get_type ();
575   gst_type_find_factory_get_type ();
576   gst_bin_get_type ();
577
578 #ifndef GST_DISABLE_INDEX
579   gst_index_factory_get_type ();
580 #endif /* GST_DISABLE_INDEX */
581 #ifndef GST_DISABLE_URI
582   gst_uri_handler_get_type ();
583 #endif /* GST_DISABLE_URI */
584
585   gst_structure_get_type ();
586   _gst_value_initialize ();
587   gst_caps_get_type ();
588   _gst_event_initialize ();
589   _gst_buffer_initialize ();
590   _gst_message_initialize ();
591   _gst_tag_initialize ();
592
593   /* register core plugins */
594   _gst_plugin_register_static (&plugin_desc);
595
596   _gst_plugin_initialize ();
597
598 #ifndef GST_DISABLE_REGISTRY
599   {
600     char *registry_file;
601     const char *plugin_path;
602     GstRegistry *default_registry;
603     gboolean changed = FALSE;
604     GList *l;
605
606 #ifdef HAVE_FORK
607     pid_t pid;
608 #endif
609
610     for (l = plugin_paths; l != NULL; l = l->next) {
611       GST_INFO ("Scanning plugin path: \"%s\"", (gchar *) l->data);
612       /* CHECKME: add changed |= here as well? */
613       gst_registry_scan_path (gst_registry_get_default (), (gchar *) l->data);
614       g_free (l->data);
615     }
616     g_list_free (plugin_paths);
617     plugin_paths = NULL;
618
619     default_registry = gst_registry_get_default ();
620     registry_file = g_strdup (g_getenv ("GST_REGISTRY"));
621     if (registry_file == NULL) {
622       registry_file = g_build_filename (g_get_home_dir (),
623           ".gstreamer-" GST_MAJORMINOR, "registry." HOST_CPU ".xml", NULL);
624     }
625 #ifdef HAVE_FORK
626     /* We fork here, and let the child read and possibly rebuild the registry.
627      * After that, the parent will re-read the freshly generated registry. */
628
629     GST_DEBUG ("forking");
630     pid = fork ();
631     if (pid == -1) {
632       GST_ERROR ("Failed to fork()");
633       return FALSE;
634     }
635
636     if (pid == 0) {
637       /* this is the child */
638 #endif /* HAVE_FORK */
639
640       GST_DEBUG ("child reading registry cache");
641       gst_registry_xml_read_cache (default_registry, registry_file);
642
643       /* GST_PLUGIN_PATH specifies a list of directories to scan for
644        * additional plugins.  These take precedence over the system plugins */
645       plugin_path = g_getenv ("GST_PLUGIN_PATH");
646       if (plugin_path) {
647         char **list;
648         int i;
649
650         GST_DEBUG ("GST_PLUGIN_PATH set to %s", plugin_path);
651         list = g_strsplit (plugin_path, G_SEARCHPATH_SEPARATOR_S, 0);
652         for (i = 0; list[i]; i++) {
653           changed |= gst_registry_scan_path (default_registry, list[i]);
654         }
655         g_strfreev (list);
656       } else {
657         GST_DEBUG ("GST_PLUGIN_PATH not set");
658       }
659
660       /* GST_PLUGIN_SYSTEM_PATH specifies a list of plugins that are always
661        * loaded by default.  If not set, this defaults to the system-installed
662        * path, and the plugins installed in the user's home directory */
663       plugin_path = g_getenv ("GST_PLUGIN_SYSTEM_PATH");
664       if (plugin_path == NULL) {
665         char *home_plugins;
666
667         GST_DEBUG ("GST_PLUGIN_SYSTEM_PATH not set");
668
669         /* plugins in the user's home directory take precedence over
670          * system-installed ones */
671         home_plugins = g_build_filename (g_get_home_dir (),
672             ".gstreamer-" GST_MAJORMINOR, "plugins", NULL);
673         changed |= gst_registry_scan_path (default_registry, home_plugins);
674         g_free (home_plugins);
675
676         /* add the main (installed) library path */
677         changed |= gst_registry_scan_path (default_registry, PLUGINDIR);
678       } else {
679         char **list;
680         int i;
681
682         GST_DEBUG ("GST_PLUGIN_SYSTEM_PATH set to %s", plugin_path);
683         list = g_strsplit (plugin_path, G_SEARCHPATH_SEPARATOR_S, 0);
684         for (i = 0; list[i]; i++) {
685           changed |= gst_registry_scan_path (default_registry, list[i]);
686         }
687         g_strfreev (list);
688       }
689
690       if (changed) {
691         GST_DEBUG ("writing registry cache");
692         gst_registry_xml_write_cache (default_registry, registry_file);
693       }
694
695       _gst_registry_remove_cache_plugins (default_registry);
696
697 #ifdef HAVE_FORK
698       /* need to use _exit, so that any exit handlers registered don't
699        * bring down the main program */
700       _exit (0);
701     } else {
702       /* parent */
703       int status;
704       pid_t ret;
705
706       GST_DEBUG ("parent waiting on child");
707       ret = waitpid (pid, &status, 0);
708       GST_DEBUG ("parent done waiting on child");
709       if (ret == -1) {
710         GST_ERROR ("error during waitpid: %s", g_strerror (errno));
711         return FALSE;
712       }
713
714       if (!WIFEXITED (status)) {
715         GST_ERROR ("child did not exit normally, status: %d", status);
716         return FALSE;
717       }
718
719       GST_DEBUG ("child exited normally with return value %d",
720           WEXITSTATUS (status));
721       GST_DEBUG ("parent reading registry cache");
722       gst_registry_xml_read_cache (default_registry, registry_file);
723     }
724 #endif /* HAVE_FORK */
725
726     g_free (registry_file);
727   }
728
729 #endif /* GST_DISABLE_REGISTRY */
730
731   /* if we need to preload plugins */
732   if (preload_plugins) {
733     g_slist_foreach (preload_plugins, load_plugin_func, NULL);
734     g_slist_free (preload_plugins);
735     preload_plugins = NULL;
736   }
737 #ifndef GST_DISABLE_TRACE
738   _gst_trace_on = 0;
739   if (_gst_trace_on) {
740     gst_trace = gst_trace_new ("gst.trace", 1024);
741     gst_trace_set_default (gst_trace);
742   }
743 #endif /* GST_DISABLE_TRACE */
744
745   return TRUE;
746 }
747
748 #ifndef GST_DISABLE_GST_DEBUG
749 static gboolean
750 select_all (GstPlugin * plugin, gpointer user_data)
751 {
752   return TRUE;
753 }
754
755 static gint
756 sort_by_category_name (gconstpointer a, gconstpointer b)
757 {
758   return strcmp (gst_debug_category_get_name ((GstDebugCategory *) a),
759       gst_debug_category_get_name ((GstDebugCategory *) b));
760 }
761 static void
762 gst_debug_help (void)
763 {
764   GSList *list, *walk;
765   GList *list2, *g;
766
767   if (!init_post ())
768     exit (1);
769
770   list2 = gst_registry_plugin_filter (gst_registry_get_default (),
771       select_all, FALSE, NULL);
772
773   /* FIXME this is gross.  why don't debug have categories PluginFeatures? */
774   for (g = list2; g; g = g_list_next (g)) {
775     GstPlugin *plugin = GST_PLUGIN_CAST (g->data);
776
777     gst_plugin_load (plugin);
778   }
779   g_list_free (list2);
780
781   list = gst_debug_get_all_categories ();
782   walk = list = g_slist_sort (list, sort_by_category_name);
783
784   g_print ("\n");
785   g_print ("name                  level    description\n");
786   g_print ("---------------------+--------+--------------------------------\n");
787
788   while (walk) {
789     GstDebugCategory *cat = (GstDebugCategory *) walk->data;
790
791     if (gst_debug_is_colored ()) {
792       gchar *color = gst_debug_construct_term_color (cat->color);
793
794       g_print ("%s%-20s\033[00m  %1d %s  %s%s\033[00m\n",
795           color,
796           gst_debug_category_get_name (cat),
797           gst_debug_category_get_threshold (cat),
798           gst_debug_level_get_name (gst_debug_category_get_threshold (cat)),
799           color, gst_debug_category_get_description (cat));
800       g_free (color);
801     } else {
802       g_print ("%-20s  %1d %s  %s\n", gst_debug_category_get_name (cat),
803           gst_debug_category_get_threshold (cat),
804           gst_debug_level_get_name (gst_debug_category_get_threshold (cat)),
805           gst_debug_category_get_description (cat));
806     }
807     walk = g_slist_next (walk);
808   }
809   g_slist_free (list);
810   g_print ("\n");
811 }
812 #endif
813
814 static gboolean
815 parse_one_option (gint opt, const gchar * arg, GError ** err)
816 {
817   switch (opt) {
818     case ARG_VERSION:
819       g_print ("GStreamer Core Library version %s\n", PACKAGE_VERSION);
820       exit (0);
821     case ARG_FATAL_WARNINGS:{
822       GLogLevelFlags fatal_mask;
823
824       fatal_mask = g_log_set_always_fatal (G_LOG_FATAL_MASK);
825       fatal_mask |= G_LOG_LEVEL_WARNING | G_LOG_LEVEL_CRITICAL;
826       g_log_set_always_fatal (fatal_mask);
827       break;
828     }
829 #ifndef GST_DISABLE_GST_DEBUG
830     case ARG_DEBUG_LEVEL:{
831       gint tmp = 0;
832
833       tmp = strtol (arg, NULL, 0);
834       if (tmp >= 0 && tmp < GST_LEVEL_COUNT) {
835         gst_debug_set_default_threshold (tmp);
836       }
837       break;
838     }
839     case ARG_DEBUG:
840       parse_debug_list (arg);
841       break;
842     case ARG_DEBUG_NO_COLOR:
843       gst_debug_set_colored (FALSE);
844       break;
845     case ARG_DEBUG_DISABLE:
846       gst_debug_set_active (FALSE);
847       break;
848     case ARG_DEBUG_HELP:
849       gst_debug_help ();
850       exit (0);
851 #endif
852     case ARG_PLUGIN_SPEW:
853       break;
854     case ARG_PLUGIN_PATH:
855 #ifndef GST_DISABLE_REGISTRY
856       split_and_iterate (arg, G_SEARCHPATH_SEPARATOR_S, add_path_func, NULL);
857 #endif /* GST_DISABLE_REGISTRY */
858       break;
859     case ARG_PLUGIN_LOAD:
860       split_and_iterate (arg, ",", prepare_for_load_plugin_func, NULL);
861       break;
862     case ARG_SEGTRAP_DISABLE:
863       _gst_disable_segtrap = TRUE;
864       break;
865     default:
866       g_set_error (err, G_OPTION_ERROR, G_OPTION_ERROR_UNKNOWN_OPTION,
867           _("Unknown option"));
868       return FALSE;
869   }
870
871   return TRUE;
872 }
873
874 static gboolean
875 parse_goption_arg (const gchar * opt,
876     const gchar * arg, gpointer data, GError ** err)
877 {
878   const struct
879   {
880     gchar *opt;
881     int val;
882   } options[] = {
883     {
884     "--gst-version", ARG_VERSION}, {
885     "--gst-fatal-warnings", ARG_FATAL_WARNINGS},
886 #ifndef GST_DISABLE_GST_DEBUG
887     {
888     "--gst-debug-level", ARG_DEBUG_LEVEL}, {
889     "--gst-debug", ARG_DEBUG}, {
890     "--gst-debug-disable", ARG_DEBUG_DISABLE}, {
891     "--gst-debug-no-color", ARG_DEBUG_NO_COLOR}, {
892     "--gst-debug-help", ARG_DEBUG_HELP},
893 #endif
894     {
895     "--gst-plugin-spew", ARG_PLUGIN_SPEW}, {
896     "--gst-plugin-path", ARG_PLUGIN_PATH}, {
897     "--gst-plugin-load", ARG_PLUGIN_LOAD}, {
898     "--gst-disable-segtrap", ARG_SEGTRAP_DISABLE}, {
899     NULL}
900   };
901   gint val = 0, n;
902
903   for (n = 0; options[n].opt; n++) {
904     if (!strcmp (opt, options[n].opt)) {
905       val = options[n].val;
906       break;
907     }
908   }
909
910   return parse_one_option (val, arg, err);
911 }
912
913 /**
914  * gst_deinit:
915  *
916  * Clean up.
917  * Call only once, before exiting.
918  * After this call GStreamer should not be used anymore.
919  */
920
921 extern GstRegistry *_gst_registry_default;
922 void
923 gst_deinit (void)
924 {
925   GstClock *clock;
926
927   GST_INFO ("deinitializing GStreamer");
928   clock = gst_system_clock_obtain ();
929   gst_object_unref (clock);
930   gst_object_unref (clock);
931
932   _gst_registry_cleanup ();
933
934   gst_initialized = FALSE;
935   GST_INFO ("deinitialized GStreamer");
936 }
937
938 /**
939  * gst_version:
940  * @major: pointer to a guint to store the major version number
941  * @minor: pointer to a guint to store the minor version number
942  * @micro: pointer to a guint to store the micro version number
943  * @nano:  pointer to a guint to store the nano version number
944  *
945  * Gets the version number of the GStreamer library.
946  */
947 void
948 gst_version (guint * major, guint * minor, guint * micro, guint * nano)
949 {
950   g_return_if_fail (major);
951   g_return_if_fail (minor);
952   g_return_if_fail (micro);
953   g_return_if_fail (nano);
954
955   *major = GST_VERSION_MAJOR;
956   *minor = GST_VERSION_MINOR;
957   *micro = GST_VERSION_MICRO;
958   *nano = GST_VERSION_NANO;
959 }
960
961 /**
962  * gst_version_string:
963  *
964  * This function returns a string that is useful for describing this version
965  * of GStreamer to the outside world: user agent strings, logging, ...
966  *
967  * Returns: a newly allocated string describing this version of GStreamer.
968  */
969
970 gchar *
971 gst_version_string ()
972 {
973   guint major, minor, micro, nano;
974
975   gst_version (&major, &minor, &micro, &nano);
976   if (nano == 0)
977     return g_strdup_printf ("GStreamer %d.%d.%d", major, minor, micro);
978   else if (nano == 1)
979     return g_strdup_printf ("GStreamer %d.%d.%d (CVS)", major, minor, micro);
980   else
981     return g_strdup_printf ("GStreamer %d.%d.%d (prerelease)", major, minor,
982         micro);
983 }