2008-12-17 Mark Doffman <mark.doffman@codethink.co.uk>
[platform/core/uifw/at-spi2-atk.git] / registryd / registry.c
index 51a3cb4..51aaa4d 100644 (file)
@@ -2,7 +2,9 @@
  * AT-SPI - Assistive Technology Service Provider Interface
  * (Gnome Accessibility Project; http://developer.gnome.org/projects/gap)
  *
- * Copyright 2001 Sun Microsystems Inc.
+ * Copyright 2008, Codethink Ltd.
+ * Copyright 2001, 2002 Sun Microsystems Inc.,
+ * Copyright 2001, 2002 Ximian, Inc.
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Library General Public
  * Boston, MA 02111-1307, USA.
  */
 
-/* registry.c: the main accessibility service registry implementation */
-
 #include <config.h>
-#ifdef SPI_DEBUG
-#  include <stdio.h>
-#endif
+#include <spi-common/spi-dbus.h>
+#include <dbus/dbus-glib-lowlevel.h>
 
-/*
- * We'd like to replace the dependance on X-isms with a wrapper layer,
- * to the extent that it can't be done with pure GDK.
- * Anyone want to help?
- */
-#include <X11/Xlib.h>
-#include <gdk/gdk.h>
-#include <gdk/gdkx.h>
-
-#include <libspi/registry.h>
-
-/* Our parent GObject type  */
-#define PARENT_TYPE SPI_LISTENER_TYPE
-
-/* A pointer to our parent object class */
-static SpiListenerClass *spi_registry_parent_class;
-
-typedef enum {
-  ETYPE_FOCUS,
-  ETYPE_OBJECT,
-  ETYPE_PROPERTY,
-  ETYPE_WINDOW,
-  ETYPE_TOOLKIT,
-  ETYPE_KEYBOARD,
-  
-  ETYPE_LAST_DEFINED
-} EventTypeCategory;
-
-typedef struct {
-  char *event_name;
-  EventTypeCategory type_cat;
-  char * major;
-  char * minor;
-  char * detail;
-  guint hash;
-} EventTypeStruct;
-
-typedef struct {
-  Accessibility_EventListener listener;
-  guint event_type_hash;
-  EventTypeCategory event_type_cat;
-} SpiListenerStruct;
-
-/* static function prototypes */
-static void _registry_notify_listeners (GList *listeners,
-                                        const Accessibility_Event *e,
-                                        CORBA_Environment *ev);
-
-static long _get_unique_id();
-
-static gboolean _device_event_controller_hook (gpointer source);
+#include "registry.h"
 
-/*
- * Implemented GObject::finalize
- */
-static void
-spi_registry_object_finalize (GObject *object)
+enum
 {
-/*        SpiRegistry *registry = SPI_REGISTRY (object); */
-        GObjectClass *object_class = G_OBJECT_GET_CLASS( object);
+  REGISTRY_APPLICATION_REMOVE = 0,
+  REGISTRY_APPLICATION_ADD = 1
+};
 
-        printf("spi_registry_object_finalize called\n");
+/*---------------------------------------------------------------------------*/
 
-        object_class->finalize (object);
-}
+G_DEFINE_TYPE(SpiRegistry, spi_registry, G_TYPE_OBJECT)
 
-/**
- * registerApplication:
- * @application: a reference to the requesting @Application
- * return values: void
- *
- * Register a new application with the accessibility broker.
- *
- **/
 static void
-impl_accessibility_registry_register_application (PortableServer_Servant servant,
-                                                  const Accessibility_Application application,
-                                                  CORBA_Environment * ev)
+spi_registry_class_init (SpiRegistryClass *klass)
 {
-  SpiRegistry *registry = SPI_REGISTRY (bonobo_object_from_servant (servant));
-
-#ifdef SPI_DEBUG
-  fprintf (stderr, "registering app %p\n", application);
-#endif
-  registry->desktop->applications = g_list_append (registry->desktop->applications,
-                                                   bonobo_object_dup_ref (application, ev));
+  GObjectClass * object_class = (GObjectClass *) klass;
 
-  /* TODO: create unique string here (with libuuid call ?) and hash ? */
-  Accessibility_Application__set_id (application, _get_unique_id(), ev);
-
-  /*
-   * TODO: change the implementation below to a WM-aware one;
-   * e.g. don't add all apps to the SpiDesktop
-   */
-}
-
-static gint
-compare_corba_objects (gconstpointer p1, gconstpointer p2)
-{
-  CORBA_Environment ev;
-  gint retval;
-
-#ifdef SPI_DEBUG
-  fprintf (stderr, "comparing %p to %p\n",
-          p1, p2);
-#endif
-  
-  retval = !CORBA_Object_is_equivalent ((CORBA_Object) p1, (CORBA_Object) p2, &ev);
-  return retval;  
+  spi_registry_parent_class = g_type_class_ref (G_TYPE_OBJECT);
 }
 
 static void
-register_with_toolkits (SpiRegistry *spi_registry_bonobo_object, EventTypeStruct *etype, CORBA_Environment *ev)
+spi_registry_init (SpiRegistry *registry)
 {
-  gint n_desktops;
-  gint n_apps;
-  gint i, j;
-  Accessibility_Desktop desktop;
-  Accessibility_Application app;
-  Accessibility_Registry registry;
-  registry  = BONOBO_OBJREF (spi_registry_bonobo_object);
+  registry->apps = g_sequence_new (g_free);
+}
 
-  /* for each app in each desktop, call ...Application_registerToolkitEventListener */
+/*---------------------------------------------------------------------------*/
 
-  n_desktops = Accessibility_Registry_getDesktopCount (registry, ev);
+static void emit(SpiRegistry *reg, const char *itf, const char *name, int ftype, ...)
+{
+  va_list arg;
 
-  for (i=0; i<n_desktops; ++i)
-    {
-      desktop = Accessibility_Registry_getDesktop (registry, i, ev);
-      n_apps = Accessibility_Desktop__get_childCount (desktop, ev);
-      for (j=0; j<n_apps; ++j)
-        {
-          app = (Accessibility_Application) Accessibility_Desktop_getChildAtIndex (desktop,
-                                                                                   j,
-                                                                                   ev);
-         Accessibility_Application_registerToolkitEventListener (app,
-                                                                 registry,
-                                                                 CORBA_string_dup (etype->event_name),
-                                                                 
-                                                                 ev);
-        }
-    }
+  va_start(arg, ftype);
+  spi_dbus_emit_valist(reg->bus, SPI_DBUS_PATH_DEC, itf, name, ftype, arg);
+  va_end(arg);
 }
 
-static gint
-compare_listener_hash (gconstpointer p1, gconstpointer p2)
-{
-  return (((SpiListenerStruct *)p2)->event_type_hash - ((SpiListenerStruct *)p1)->event_type_hash);
-}
+/*---------------------------------------------------------------------------*/
 
 static gint
-compare_listener_corbaref (gconstpointer p1, gconstpointer p2)
+data_str_cmp (gpointer a, gpointer b, gpointer data)
 {
-  return compare_corba_objects (((SpiListenerStruct *)p2)->listener,
-                                ((SpiListenerStruct *)p1)->listener);
+  return g_strcmp0(a, b);
 }
 
-static void
-parse_event_type (EventTypeStruct *etype, char *event_name)
+static gboolean
+seq_add_string (GSequence *seq, gchar *str)
 {
-  gchar **split_string;
+  GSequenceIter *iter;
+  gchar *item;
+  gboolean res = FALSE;
 
-  split_string = g_strsplit(event_name, ":", 4);
-  etype->event_name = g_strndup(event_name, 255);
+  iter = g_sequence_search (seq, str, (GCompareDataFunc) data_str_cmp, NULL);
+  iter = g_sequence_iter_prev (iter);
 
-  if (!g_ascii_strncasecmp (event_name, "focus:", 6))
-    {
-      etype->type_cat = ETYPE_FOCUS;
-    }
-  else if (!g_ascii_strncasecmp (event_name, "object:", 7))
+  if (!g_sequence_iter_is_end (iter))
     {
-      etype->type_cat = ETYPE_OBJECT;
-    }
-  else if (!g_ascii_strncasecmp (event_name, "window:", 7))
-    {
-      etype->type_cat = ETYPE_WINDOW;
-    }
-  else
-    {
-      etype->type_cat = ETYPE_TOOLKIT;
-    }
-
-  if (split_string[1])
-    {
-      etype->major = split_string[1];
-      if (split_string[2])
-        {
-          etype->minor = split_string[2];
-          if (split_string[3])
-            {
-              etype->detail = split_string[3];
-              etype->hash = g_str_hash ( g_strconcat (split_string[1], split_string[2], split_string[3], NULL));
-            }
-          else
-            {
-              etype->detail = g_strdup ("");
-              etype->hash = g_str_hash ( g_strconcat (split_string[1], split_string[2], NULL));
-            }
-        }
-      else
+      item = g_sequence_get (iter);
+      if (g_strcmp0 (item, str))
         {
-          etype->minor = g_strdup ("");
-          etype->hash = g_str_hash ( split_string[1]);
+          g_sequence_insert_sorted (seq, g_strdup(str), (GCompareDataFunc) data_str_cmp, NULL);
+          res = TRUE;
         }
     }
   else
     {
-      etype->major = g_strdup ("");
-      etype->minor = g_strdup ("");
-      etype->detail = g_strdup ("");
-      etype->hash = g_str_hash ("");
+      g_sequence_insert_sorted (seq, g_strdup(str), (GCompareDataFunc) data_str_cmp, NULL);
+      res = TRUE;
     }
 
-  /* TODO: don't forget to free the strings from caller when done ! */
+  return res;
 }
 
-/**
- * deregisterApplication:
- * @application: a reference to the @Application
- * to be deregistered.
- * return values: void
- *
- * De-register an application previously registered with the broker.
- *
- **/
-static void
-impl_accessibility_registry_deregister_application (PortableServer_Servant servant,
-                                                    const Accessibility_Application application,
-                                                    CORBA_Environment * ev)
+static gboolean
+seq_remove_string (GSequence *seq, gchar *str)
 {
-  SpiRegistry *registry = SPI_REGISTRY (bonobo_object_from_servant (servant));
-  GList *list = g_list_find_custom (registry->desktop->applications, application, compare_corba_objects);
+  GSequenceIter *iter;
+  gchar *item;
+  gboolean res = FALSE;
 
-#ifdef SPI_DEBUG
-  gint i;
-#endif
+  iter = g_sequence_search (seq, str, (GCompareDataFunc) data_str_cmp, NULL);
+  iter = g_sequence_iter_prev (iter);
 
-  if (list)
+  if (!g_sequence_iter_is_end (iter))
     {
-#ifdef SPI_DEBUG
-      fprintf (stderr, "deregistering application %p\n", application);
-#endif
-      registry->desktop->applications = g_list_delete_link (registry->desktop->applications, list);
-#ifdef SPI_DEBUG
-      fprintf (stderr, "there are now %d apps registered.\n", g_list_length (registry->desktop->applications));
-      for (i = 0; i < g_list_length (registry->desktop->applications); ++i)
+      item = g_sequence_get (iter);
+      if (!g_strcmp0 (item, str))
         {
-          fprintf (stderr, "getting application %d\n", i);
-          fprintf (stderr, "object address %p\n",
-                      g_list_nth_data (registry->desktop->applications, i));
+          g_sequence_remove (iter);
+          res = TRUE;
         }
-#endif      
-    }
-  else
-    {
-      fprintf (stderr, "could not deregister application %p\n", application);
     }
+  return res;
 }
 
-/*
- * CORBA Accessibility::Registry::registerGlobalEventListener method implementation
- */
 static void
-impl_accessibility_registry_register_global_event_listener (
-                                            PortableServer_Servant  servant,
-                                             Accessibility_EventListener listener,
-                                             const CORBA_char *event_name,
-                                             CORBA_Environment      *ev)
+add_application (DBusConnection *bus, SpiRegistry *reg, gchar *app)
 {
-  SpiRegistry *registry = SPI_REGISTRY (bonobo_object_from_servant (servant));
-  SpiListenerStruct *ls = g_malloc (sizeof (SpiListenerStruct));
-  EventTypeStruct etype;
-
-  fprintf(stderr, "registering for events of type %s\n", event_name);
+  guint add = REGISTRY_APPLICATION_ADD;
 
-  /* parse, check major event type and add listener accordingly */
-  parse_event_type (&etype, (char*) event_name);
-  ls->event_type_hash = etype.hash;
-  ls->event_type_cat = etype.type_cat;
-
-  switch (etype.type_cat)
+  if (seq_add_string (reg->apps, app))
     {
-    case (ETYPE_FOCUS) :
-    case (ETYPE_OBJECT) :
-    case (ETYPE_PROPERTY) :
-      ls->listener = CORBA_Object_duplicate (listener, ev);
-      registry->object_listeners =
-        g_list_append (registry->object_listeners, ls);
-      break;
-    case (ETYPE_WINDOW) :
-      /* Support for Window Manager Events is not yet implemented */
-      break;
-    case (ETYPE_TOOLKIT) :
-      ls->listener = CORBA_Object_duplicate (listener, ev);
-      registry->toolkit_listeners =
-        g_list_append (registry->toolkit_listeners, ls);
-      register_with_toolkits (registry, &etype, ev);
-      break;
-    default:
-      break;
+      emit (reg,
+            SPI_DBUS_INTERFACE_REGISTRY,
+            "updateApplications",
+            DBUS_TYPE_INT32,
+            &add,
+            DBUS_TYPE_STRING,
+            &app,
+            DBUS_TYPE_INVALID);
     }
 }
 
-/*
- * CORBA Accessibility::Registry::deregisterGlobalEventListenerAll method implementation
- */
 static void
-impl_accessibility_registry_deregister_global_event_listener_all (
-                                                    PortableServer_Servant  servant,
-                                                    Accessibility_EventListener listener,
-                                                    CORBA_Environment      *ev)
+remove_application (DBusConnection *bus, SpiRegistry *reg, gchar *app)
 {
-  SpiRegistry *registry = SPI_REGISTRY (bonobo_object_from_servant (servant));
-  SpiListenerStruct *ls = g_malloc (sizeof (SpiListenerStruct));
-  GList *list;
-  ls->listener = listener;  
-  list = g_list_find_custom (registry->object_listeners, ls,
-                            compare_listener_corbaref);
-
-  /*
-   * TODO : de-register with toolkit if the last instance of a listener
-   *        to a particular toolkit event type has been deregistered.
-   */
-
-  while (list)
-    {
-      fprintf (stderr, "deregistering listener\n");
-      registry->object_listeners = g_list_delete_link (registry->object_listeners, list);
-      list = g_list_find_custom (registry->object_listeners, ls, compare_listener_corbaref);
-    }
-  list = g_list_find_custom (registry->toolkit_listeners, ls, compare_listener_corbaref);
-  while (list)
+  guint remove = REGISTRY_APPLICATION_REMOVE;
+
+  if (seq_remove_string (reg->apps, app))
     {
-      fprintf (stderr, "deregistering listener\n");
-      registry->toolkit_listeners = g_list_delete_link (registry->toolkit_listeners, list);
-      list = g_list_find_custom (registry->toolkit_listeners, ls, compare_listener_corbaref);
+      /*TODO spi_remove_device_listeners (registry->de_controller, old);*/
+      emit (reg,
+            SPI_DBUS_INTERFACE_REGISTRY,
+            "updateApplications",
+            DBUS_TYPE_INT32,
+            &remove,
+            DBUS_TYPE_STRING,
+            &app,
+            DBUS_TYPE_INVALID);
     }
 }
 
-/*
- * CORBA Accessibility::Registry::deregisterGlobalEventListener method implementation
- */
+/*---------------------------------------------------------------------------*/
+
 static void
-impl_accessibility_registry_deregister_global_event_listener (
-                                                    PortableServer_Servant  servant,
-                                                    Accessibility_EventListener listener,
-                                                    const CORBA_char * event_name,
-                                                    CORBA_Environment      *ev)
+add_bus_name_cb (gpointer item, gpointer data)
 {
-  SpiRegistry *registry = SPI_REGISTRY (bonobo_object_from_servant (servant));
-  SpiListenerStruct ls;
-  EventTypeStruct etype;
-  GList *list;
-  GList **listeners;
-
-  parse_event_type (&etype, (char *) event_name);
-  switch (etype.type_cat)
-    {
-    case (ETYPE_OBJECT) :
-    case (ETYPE_PROPERTY) :
-    case (ETYPE_FOCUS) :
-      listeners = &registry->object_listeners;
-      break;
-    case (ETYPE_WINDOW) :
-      /* Support for Window Manager Events is not yet implemented */
-      break;
-    case (ETYPE_TOOLKIT) :
-      listeners = &registry->toolkit_listeners;
-      break;
-    default:
-      listeners = NULL;
-      break;
-    }
-
-  if (!listeners)
-         return;
-
-  ls.event_type_hash = etype.hash;
-  list = g_list_find_custom (*listeners, &ls, compare_listener_hash);
+  DBusMessageIter *iter_array = (DBusMessageIter *) data;
 
-  while (list)
-    {
-      fprintf (stderr, "deregistering listener\n");
-      *listeners = g_list_delete_link (*listeners, list);
-      list = g_list_find_custom (*listeners, &ls, compare_listener_hash);
-    }
+  dbus_message_iter_append_basic (iter_array, DBUS_TYPE_STRING, (gchar **) &item);
 }
 
-
-/**
- * getDesktopCount:
- * return values: a short integer indicating the current number of
- * @Desktops.
- *
- * Get the current number of desktops.
- *
- **/
-static short
-impl_accessibility_registry_get_desktop_count (PortableServer_Servant servant,
-                                               CORBA_Environment * ev)
+static DBusMessage *
+impl_getApplications (DBusConnection *bus, DBusMessage *message, void *user_data)
 {
-  /* TODO: implement support for multiple virtual desktops */
-  CORBA_short n_desktops;
-  n_desktops = (CORBA_short) 1;
-  return n_desktops;
-}
+  DBusMessage *reply;
+  DBusMessageIter iter, iter_array;
+  SpiRegistry *reg = SPI_REGISTRY (user_data);
 
-/**
- * getDesktop:
- * @n: the index of the requested @Desktop.
- * return values: a reference to the requested @Desktop.
- *
- * Get the nth accessible desktop.
- *
- **/
-static Accessibility_Desktop
-impl_accessibility_registry_get_desktop (PortableServer_Servant servant,
-                                         const CORBA_short n,
-                                         CORBA_Environment * ev)
-{
-  SpiRegistry *registry = SPI_REGISTRY (bonobo_object_from_servant (servant));
+  reply = dbus_message_new_method_return (message);
 
-  /* TODO: implement support for multiple virtual desktops */
-  if (n == 0)
-    {
-      return (Accessibility_Desktop)
-        CORBA_Object_duplicate (BONOBO_OBJREF (registry->desktop), ev);
-    }
-  else
-    {
-      return (Accessibility_Desktop) CORBA_OBJECT_NIL;
-    }
+  dbus_message_iter_init_append (reply, &iter);
+  dbus_message_iter_open_container(&iter, DBUS_TYPE_ARRAY, "s", &iter_array);
+  g_sequence_foreach (reg->apps, add_bus_name_cb, &iter_array);
+  dbus_message_iter_close_container(&iter, &iter_array);
+  return reply;
 }
 
-/**
- * getDesktopList:
- * return values: a sequence containing references to
- * the @Desktops.
- *
- * Get a list of accessible desktops.
- *
- **/
-static Accessibility_DesktopSeq *
-impl_accessibility_registry_get_desktop_list (PortableServer_Servant servant,
-                                              CORBA_Environment * ev)
-{
-  /* TODO: implement support for multiple virtual desktops */
-  return (Accessibility_DesktopSeq *) NULL;
-}
+/*---------------------------------------------------------------------------*/
 
-static Accessibility_DeviceEventController
-impl_accessibility_registry_get_device_event_controller (PortableServer_Servant servant,
-                                                         CORBA_Environment * ev)
+static void
+impl_registerApplication (DBusConnection *bus, DBusMessage *message, void *user_data)
 {
-  SpiRegistry *registry = SPI_REGISTRY (bonobo_object_from_servant (servant));
-  if (!registry->device_event_controller)
-    registry->device_event_controller = spi_device_event_controller_new (registry);
+  gchar *app_name;
+  SpiRegistry *reg = SPI_REGISTRY (user_data);
 
-  return CORBA_Object_duplicate (BONOBO_OBJREF (registry->device_event_controller), ev);
+  if (dbus_message_get_args (message, NULL, DBUS_TYPE_STRING, &app_name, DBUS_TYPE_INVALID))
+      add_application(bus, reg, app_name);
 }
 
 static void
-impl_registry_notify_event (PortableServer_Servant servant,
-                            const Accessibility_Event *e,
-                            CORBA_Environment *ev)
+impl_deregisterApplication (DBusConnection *bus, DBusMessage *message, void *user_data)
 {
-  SpiRegistry *registry = SPI_REGISTRY (bonobo_object_from_servant (servant));
-  EventTypeStruct etype;
-
-  parse_event_type (&etype, e->type);
+  gchar *app_name;
+  SpiRegistry *reg = SPI_REGISTRY (user_data);
 
-  switch (etype.type_cat)
-    {
-    case (ETYPE_OBJECT) :
-    case (ETYPE_PROPERTY) :
-    case (ETYPE_FOCUS) :
-      _registry_notify_listeners (registry->object_listeners, e, ev); 
-      break;
-    case (ETYPE_WINDOW) :
-      _registry_notify_listeners (registry->window_listeners, e, ev);
-      break;
-    case (ETYPE_TOOLKIT) :
-      _registry_notify_listeners (registry->toolkit_listeners, e, ev); 
-      break;
-    case (ETYPE_KEYBOARD) :
-    default:
-      break;
-    }
-  /* Accessibility_Accessible_unref (e->source, ev);*/ /* This should be here! */
+  if (dbus_message_get_args (message, NULL, DBUS_TYPE_STRING, &app_name, DBUS_TYPE_INVALID))
+      remove_application(bus, reg, app_name);
 }
 
-static long
-_get_unique_id ()
-{
-  static long id = 0;
-  return ++id;
-}
+/*---------------------------------------------------------------------------*/
 
 static void
-_registry_notify_listeners (GList *listeners,
-                            const Accessibility_Event *e_in,
-                            CORBA_Environment *ev)
+handle_disconnection (DBusConnection *bus, DBusMessage *message, void *user_data)
 {
-  int n;
-  int len;
-  SpiListenerStruct *ls;
-  EventTypeStruct etype;
-  Accessibility_Event *e_out;
-  guint minor_hash;
-  parse_event_type (&etype, e_in->type);
-  minor_hash = g_str_hash (g_strconcat (etype.major, etype.minor, NULL));
-  len = g_list_length (listeners);
-
-  for (n=0; n<len; ++n)
+  char *name, *old, *new;
+  SpiRegistry *reg = SPI_REGISTRY (user_data);
+
+  if (dbus_message_get_args (message, NULL,
+                             DBUS_TYPE_STRING, &name,
+                             DBUS_TYPE_STRING, &old,
+                             DBUS_TYPE_STRING, &new,
+                             DBUS_TYPE_INVALID))
     {
-      ls =  (SpiListenerStruct *) g_list_nth_data (listeners, n);
-#ifdef SPI_SPI_LISTENER_DEBUG
-      fprintf(stderr, "event hashes: %lx %lx %lx\n", ls->event_type_hash, etype.hash, minor_hash);
-      fprintf(stderr, "event name: %s\n", etype.event_name);
-#endif
-      if ((ls->event_type_hash == etype.hash) || (ls->event_type_hash == minor_hash))
+      if (*old != '\0' && *new == '\0')
         {
-#ifdef SPI_DEBUG
-          fprintf(stderr, "notifying listener #%d\n", n);
-          fprintf(stderr, "event source name %s\n", Accessibility_Accessible__get_name(e_in->source, ev));
-#endif
-         e_out = ORBit_copy_value (e_in, TC_Accessibility_Event);
-         e_out->source = CORBA_Object_duplicate (e_in->source, ev);
-          Accessibility_Accessible_ref ( e_out->source, ev);
-          Accessibility_EventListener_notifyEvent ((Accessibility_EventListener) ls->listener,
-                                                   e_out,
-                                                   ev);
-         /* is it safe to free e_out now ? notifyEvent is a oneway... */
-         CORBA_free (e_out);
-          if (ev->_major != CORBA_NO_EXCEPTION) {
-                fprintf(stderr,
-                ("Accessibility app error: exception during event notification: %s\n"),
-                        CORBA_exception_id(ev));
-                exit(-1);
-          }
+          remove_application(bus, reg, old);
         }
     }
 }
 
-static gboolean
-_device_event_controller_hook (gpointer p)
-{
-    SpiRegistry *registry = (SpiRegistry *)p;
-    SpiDeviceEventController *controller = registry->device_event_controller;
-    if (controller)
-       spi_device_event_controller_check_key_event (controller);
-    return TRUE;
-}
+/*---------------------------------------------------------------------------*/
 
-static void
-spi_registry_class_init (SpiRegistryClass *klass)
+static DBusHandlerResult
+signal_filter (DBusConnection *bus, DBusMessage *message, void *user_data)
 {
-        GObjectClass * object_class = (GObjectClass *) klass;
-        POA_Accessibility_Registry__epv *epv = &klass->epv;
+  SpiRegistry *registry = SPI_REGISTRY (user_data);
+  guint res = DBUS_HANDLER_RESULT_HANDLED;
+  const char *iface = dbus_message_get_interface (message);
+  const char *member = dbus_message_get_member (message);
 
-        spi_registry_parent_class = g_type_class_ref (SPI_LISTENER_TYPE);
+  if (!g_strcmp0(iface, DBUS_INTERFACE_DBUS) && !g_strcmp0(member, "NameOwnerChanged"))
+      handle_disconnection (bus, message, user_data);
+  else
+      res = DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
 
-        object_class->finalize = spi_registry_object_finalize;
+  return res;
+}
 
-        epv->registerApplication = impl_accessibility_registry_register_application;
-        epv->deregisterApplication = impl_accessibility_registry_deregister_application;
-        epv->registerGlobalEventListener = impl_accessibility_registry_register_global_event_listener;
-        epv->deregisterGlobalEventListener = impl_accessibility_registry_deregister_global_event_listener;
-        epv->deregisterGlobalEventListenerAll = impl_accessibility_registry_deregister_global_event_listener_all;
-        epv->getDeviceEventController = impl_accessibility_registry_get_device_event_controller;
-        epv->getDesktopCount = impl_accessibility_registry_get_desktop_count;
-        epv->getDesktop = impl_accessibility_registry_get_desktop;
-        epv->getDesktopList = impl_accessibility_registry_get_desktop_list;
+/*---------------------------------------------------------------------------*/
 
-        ((SpiListenerClass *) klass)->epv.notifyEvent = impl_registry_notify_event;
-}
+static gchar *app_sig_match_name_owner =
+       "type='signal', interface='org.freedesktop.DBus', member='NameOwnerChanged'";
 
-static void
-spi_registry_init (SpiRegistry *registry)
+static DRouteMethod dev_methods[] =
 {
-  registry->object_listeners = NULL;
-  registry->window_listeners = NULL;
-  registry->toolkit_listeners = NULL;
-  registry->applications = NULL;
-  registry->desktop = spi_desktop_new();
-  registry->device_event_controller = NULL;
-  registry->kbd_event_hook = _device_event_controller_hook;
-}
-
-BONOBO_TYPE_FUNC_FULL (SpiRegistry,
-                      Accessibility_Registry,
-                      PARENT_TYPE,
-                      spi_registry);
+  { impl_getApplications, "getApplications" },
+  { impl_registerApplication, "registerApplication" },
+  { impl_deregisterApplication, "deregisterApplication" },
+  { NULL, NULL }
+};
 
 SpiRegistry *
-spi_registry_new (void)
+spi_registry_new (DBusConnection *bus, DRouteContext *droute)
 {
-    SpiRegistry *retval = g_object_new (SPI_REGISTRY_TYPE, NULL);
-    return retval;
+  SpiRegistry *reg = g_object_new (SPI_REGISTRY_TYPE, NULL);
+  DRoutePath *path;
+
+  reg->bus = bus;
+
+  dbus_bus_add_match (bus, app_sig_match_name_owner, NULL);
+  dbus_connection_add_filter (bus, signal_filter, reg, NULL);
+
+  path = droute_add_one (droute,
+                         SPI_DBUS_PATH_REGISTRY,
+                         reg);
+
+  droute_path_add_interface (path,
+                             SPI_DBUS_INTERFACE_DEC,
+                             dev_methods,
+                             NULL);
+
+  return reg;
 }
+
+/*END------------------------------------------------------------------------*/