2008-12-17 Mark Doffman <mark.doffman@codethink.co.uk>
[platform/core/uifw/at-spi2-atk.git] / registryd / registry-main.c
1 /*
2  * AT-SPI - Assistive Technology Service Provider Interface
3  * (Gnome Accessibility Project; http://developer.gnome.org/projects/gap)
4  *
5  * Copyright 2001, 2002 Sun Microsystems Inc.,
6  * Copyright 2001, 2002 Ximian, Inc.
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public
19  * License along with this library; if not, write to the
20  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21  * Boston, MA 02111-1307, USA.
22  */
23
24 #include <stdlib.h>
25 #include <config.h>
26 #include <string.h>
27 #include <glib/gmain.h>
28
29 #include <spi-common/spi-dbus.h>
30 #include <droute/droute.h>
31
32 #include "registry.h"
33 #include "deviceeventcontroller.h"
34
35 #if !defined ATSPI_INTROSPECTION_PATH
36     #error "No introspection XML directory defined"
37 #endif
38
39 static gchar *dbus_name = NULL;
40
41 static GOptionEntry optentries[] =
42 {
43   {"dbus-name", 0, 0, G_OPTION_ARG_STRING, &dbus_name, "Well-known name to register with D-Bus", NULL},
44   {NULL}
45 };
46
47 int
48 main (int argc, char **argv)
49 {
50   SpiRegistry *registry;
51   SpiDEController *dec;
52   DRouteContext *droute;
53   gchar *introspection_directory;
54
55   GMainLoop *mainloop;
56   DBusConnection *bus;
57
58   GOptionContext *opt;
59
60   GError *err = NULL;
61   DBusError error;
62   int ret;
63
64   g_type_init();
65
66   /* We depend on GDK as well as XLib for device event processing */
67   gdk_init(&argc, &argv);
68
69   /*Parse command options*/
70   opt = g_option_context_new(NULL);
71   g_option_context_add_main_entries(opt, optentries, NULL);
72
73   if (!g_option_context_parse(opt, &argc, &argv, &err))
74       g_error("Option parsing failed: %s\n", err->message);
75
76   if (dbus_name == NULL)
77       dbus_name = SPI_DBUS_NAME_REGISTRY;
78
79   dbus_error_init (&error);
80   bus = dbus_bus_get(DBUS_BUS_SESSION, &error);
81   if (!bus)
82   {
83     g_warning("Couldn't connect to dbus: %s\n", error.message);
84   }
85
86   mainloop = g_main_loop_new (NULL, FALSE);
87   dbus_connection_setup_with_g_main(bus, g_main_context_default());
88
89   ret = dbus_bus_request_name(bus, dbus_name, DBUS_NAME_FLAG_DO_NOT_QUEUE, &error);
90   if (ret == DBUS_REQUEST_NAME_REPLY_EXISTS)
91     {
92       g_error("Could not obtain D-Bus name - %s\n", dbus_name);
93     }
94   else
95     {
96       g_print ("SpiRegistry daemon is running with well-known name - %s\n", dbus_name);
97     }
98
99   /* Get D-Bus introspection directory */
100   introspection_directory = (char *) g_getenv("ATSPI_INTROSPECTION_PATH");
101   if (introspection_directory == NULL)
102       introspection_directory = ATSPI_INTROSPECTION_PATH;
103
104   /* Set up D-Route for use by the dec */
105   droute = droute_new (bus, introspection_directory);
106
107   registry = spi_registry_new (bus, droute);
108   dec = spi_registry_dec_new (registry, bus, droute);
109
110   g_main_loop_run (mainloop);
111   return 0;
112 }