2008-11-13 Mark Doffman <mark.doffman@codethink.co.uk>
[platform/core/uifw/at-spi2-atk.git] / registryd / registry-main.c
index 84e97be..ba613c9 100644 (file)
 #include <glib/gmain.h>
 
 #include <spi-common/spi-dbus.h>
+#include <droute/droute.h>
 
 #include "registry.h"
+#include "deviceeventcontroller.h"
 
 static gchar *dbus_name = NULL;
 
-static GOptionEntry optentries[] = 
+static GOptionEntry optentries[] =
 {
   {"dbus-name", 0, 0, G_OPTION_ARG_STRING, &dbus_name, "Well-known name to register with D-Bus", NULL},
   {NULL}
 };
 
+static DBusObjectPathVTable droute_vtable =
+{
+  NULL,
+  &droute_message,
+  NULL, NULL, NULL, NULL
+};
+
 int
 main (int argc, char **argv)
 {
   SpiRegistry *registry;
+  SpiDEController *dec;
+  DRouteData droute;
+
   GMainLoop *mainloop;
+  DBusConnection *bus;
+
   GOptionContext *opt;
 
   GError *err = NULL;
@@ -51,6 +65,9 @@ main (int argc, char **argv)
 
   g_type_init();
 
+  /* We depend on GDK as well as XLib for device event processing */
+  gdk_init(&argc, &argv);
+
   /*Parse command options*/
   opt = g_option_context_new(NULL);
   g_option_context_add_main_entries(opt, optentries, NULL);
@@ -61,13 +78,18 @@ main (int argc, char **argv)
   if (dbus_name == NULL)
       dbus_name = SPI_DBUS_NAME_REGISTRY;
 
-  registry = spi_registry_new ();
+  dbus_error_init (&error);
+  bus = dbus_bus_get(DBUS_BUS_SESSION, &error);
+  droute.bus = bus;
+  if (!bus)
+  {
+    g_warning("Couldn't connect to dbus: %s\n", error.message);
+  }
 
   mainloop = g_main_loop_new (NULL, FALSE);
+  dbus_connection_setup_with_g_main(bus, g_main_context_default());
 
-  dbus_error_init (&error);
-  ret = dbus_bus_request_name(registry->droute.bus, dbus_name, DBUS_NAME_FLAG_DO_NOT_QUEUE, &error);
-
+  ret = dbus_bus_request_name(bus, dbus_name, DBUS_NAME_FLAG_DO_NOT_QUEUE, &error);
   if (ret == DBUS_REQUEST_NAME_REPLY_EXISTS)
     {
       g_error("Could not obtain D-Bus name - %s\n", dbus_name);
@@ -75,8 +97,22 @@ main (int argc, char **argv)
   else
     {
       g_print ("SpiRegistry daemon is running with well-known name - %s\n", dbus_name);
-      g_main_loop_run (mainloop);
     }
 
+  /* Set up D-Route for use by the dec */
+  if (!dbus_connection_register_object_path (droute.bus,
+                                             "/org/freedesktop/atspi/registry/deviceeventcontroller",
+                                             &droute_vtable,
+                                             &droute))
+  {
+    g_error("AT-SPI Registry daemon: Couldn't register droute.\n");
+    return 0;
+  }
+
+  registry = spi_registry_new (bus);
+  dec = spi_registry_dec_new (registry, &droute);
+  droute.user_data = dec;
+
+  g_main_loop_run (mainloop);
   return 0;
 }