ba613c9e25a87be40286ae6db83128a79d52cd94
[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 static gchar *dbus_name = NULL;
36
37 static GOptionEntry optentries[] =
38 {
39   {"dbus-name", 0, 0, G_OPTION_ARG_STRING, &dbus_name, "Well-known name to register with D-Bus", NULL},
40   {NULL}
41 };
42
43 static DBusObjectPathVTable droute_vtable =
44 {
45   NULL,
46   &droute_message,
47   NULL, NULL, NULL, NULL
48 };
49
50 int
51 main (int argc, char **argv)
52 {
53   SpiRegistry *registry;
54   SpiDEController *dec;
55   DRouteData droute;
56
57   GMainLoop *mainloop;
58   DBusConnection *bus;
59
60   GOptionContext *opt;
61
62   GError *err = NULL;
63   DBusError error;
64   int ret;
65
66   g_type_init();
67
68   /* We depend on GDK as well as XLib for device event processing */
69   gdk_init(&argc, &argv);
70
71   /*Parse command options*/
72   opt = g_option_context_new(NULL);
73   g_option_context_add_main_entries(opt, optentries, NULL);
74
75   if (!g_option_context_parse(opt, &argc, &argv, &err))
76       g_error("Option parsing failed: %s\n", err->message);
77
78   if (dbus_name == NULL)
79       dbus_name = SPI_DBUS_NAME_REGISTRY;
80
81   dbus_error_init (&error);
82   bus = dbus_bus_get(DBUS_BUS_SESSION, &error);
83   droute.bus = bus;
84   if (!bus)
85   {
86     g_warning("Couldn't connect to dbus: %s\n", error.message);
87   }
88
89   mainloop = g_main_loop_new (NULL, FALSE);
90   dbus_connection_setup_with_g_main(bus, g_main_context_default());
91
92   ret = dbus_bus_request_name(bus, dbus_name, DBUS_NAME_FLAG_DO_NOT_QUEUE, &error);
93   if (ret == DBUS_REQUEST_NAME_REPLY_EXISTS)
94     {
95       g_error("Could not obtain D-Bus name - %s\n", dbus_name);
96     }
97   else
98     {
99       g_print ("SpiRegistry daemon is running with well-known name - %s\n", dbus_name);
100     }
101
102   /* Set up D-Route for use by the dec */
103   if (!dbus_connection_register_object_path (droute.bus,
104                                              "/org/freedesktop/atspi/registry/deviceeventcontroller",
105                                              &droute_vtable,
106                                              &droute))
107   {
108     g_error("AT-SPI Registry daemon: Couldn't register droute.\n");
109     return 0;
110   }
111
112   registry = spi_registry_new (bus);
113   dec = spi_registry_dec_new (registry, &droute);
114   droute.user_data = dec;
115
116   g_main_loop_run (mainloop);
117   return 0;
118 }