1 /* GStreamer
2 * Copyright (C) 2008 Jan Schmidt <jan.schmidt@sun.com>
3 *
4 * gst-plugin-scanner.c: tool to load plugins out of process for scanning
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Library General Public License for more details.
15 *
16 * You should have received a copy of the GNU Library General Public
17 * License along with this library; if not, write to the
18 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
19 * Boston, MA 02110-1301, USA.
20 *
21 * Helper binary that does plugin-loading out of process and feeds results
22 * back to the parent over fds.
23 */
24
25 #ifdef HAVE_CONFIG_H
26 # include "config.h"
27 #endif
28
29 #include <gst/gst_private.h>
30 #include <gst/gst.h>
31
32 #include <string.h>
33
34 int
main(int argc,char * argv[])35 main (int argc, char *argv[])
36 {
37 gboolean res;
38 char **my_argv;
39 int my_argc;
40
41 /* We may or may not have an executable path */
42 if (argc != 2 && argc != 3)
43 return 1;
44
45 if (strcmp (argv[1], "-l"))
46 return 1;
47
48 my_argc = 2;
49 my_argv = g_malloc (my_argc * sizeof (char *));
50 my_argv[0] = argv[0];
51 my_argv[1] = (char *) "--gst-disable-registry-update";
52
53 #ifndef GST_DISABLE_REGISTRY
54 _gst_disable_registry_cache = TRUE;
55 #endif
56
57 if (argc == 3)
58 _gst_executable_path = g_strdup (argv[2]);
59
60 res = gst_init_check (&my_argc, &my_argv, NULL);
61
62 g_free (my_argv);
63 if (!res)
64 return 1;
65
66 /* Create registry scanner listener and run */
67 if (!_gst_plugin_loader_client_run ())
68 return 1;
69
70 return 0;
71 }
72