Fix for BGO#641338: Gracefully handle errors listening to dbus server for p2p
[platform/core/uifw/at-spi2-atk.git] / atk-adaptor / bridge.c
1 /*
2  * AT-SPI - Assistive Technology Service Provider Interface
3  * (Gnome Accessibility Project; http://developer.gnome.org/projects/gap)
4  *
5  * Copyright 2008, 2009 Codethink Ltd.
6  * Copyright 2001, 2002, 2003 Sun Microsystems Inc.,
7  * Copyright 2001, 2002, 2003 Ximian, Inc.
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Library General Public
11  * License as published by the Free Software Foundation; either
12  * version 2 of the License, or (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Library General Public License for more details.
18  *
19  * You should have received a copy of the GNU Library General Public
20  * License along with this library; if not, write to the
21  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22  * Boston, MA 02111-1307, USA.
23  */
24
25 #include "config.h"
26 #include "dbus/dbus-glib-lowlevel.h"
27
28 #include <X11/Xlib.h>
29 #include <X11/Xatom.h>
30 #include <unistd.h>
31 #include <stdlib.h>
32 #include <stdio.h>
33 #include <stdarg.h>
34 #include <string.h>
35 #include<sys/stat.h>
36 #include <atk/atk.h>
37
38 #include <droute/droute.h>
39 #include <gmodule.h>
40 #include <glib/gi18n.h>
41
42 #include "bridge.h"
43 #include "event.h"
44 #include "adaptors.h"
45 #include "object.h"
46
47 #include "accessible-register.h"
48 #include "accessible-leasing.h"
49 #include "accessible-cache.h"
50
51 #include "common/spi-dbus.h"
52
53 /*---------------------------------------------------------------------------*/
54
55 SpiBridge *spi_global_app_data = NULL;
56
57 static const AtkMisc *atk_misc = NULL;
58
59 /*static Display *bridge_display = NULL;*/
60
61 /*---------------------------------------------------------------------------*/
62
63 /*
64  * Returns a 'canonicalized' value for DISPLAY,
65  * with the screen number stripped off if present.
66  *
67  */
68 static const gchar *
69 spi_display_name (void)
70 {
71   static const char *canonical_display_name = NULL;
72   if (!canonical_display_name)
73     {
74       const gchar *display_env = g_getenv ("AT_SPI_DISPLAY");
75       if (!display_env)
76         {
77           display_env = g_getenv ("DISPLAY");
78           if (!display_env || !display_env[0])
79             canonical_display_name = ":0";
80           else
81             {
82               gchar *display_p, *screen_p;
83               canonical_display_name = g_strdup (display_env);
84               display_p = strrchr (canonical_display_name, ':');
85               screen_p = strrchr (canonical_display_name, '.');
86               if (screen_p && display_p && (screen_p > display_p))
87                 {
88                   *screen_p = '\0';
89                 }
90             }
91         }
92       else
93         {
94           canonical_display_name = display_env;
95         }
96     }
97   return canonical_display_name;
98 }
99
100 /*---------------------------------------------------------------------------*/
101
102 /*
103  * Gets the IOR from the XDisplay.
104  * Not currently used in D-Bus version, but something similar
105  * may be employed in the future for accessing the registry daemon
106  * bus name.
107  */
108
109 static DBusConnection *
110 spi_atk_bridge_get_bus (void)
111 {
112   Atom AT_SPI_BUS;
113   Atom actual_type;
114   Display *bridge_display;
115   int actual_format;
116   unsigned char *data = NULL;
117   unsigned long nitems;
118   unsigned long leftover;
119
120   DBusConnection *bus = NULL;
121   DBusError error;
122
123   bridge_display = XOpenDisplay (spi_display_name ());
124   if (!bridge_display)
125     {
126       g_warning ("AT_SPI: Could not get the display\n");
127       return NULL;
128     }
129
130   AT_SPI_BUS = XInternAtom (bridge_display, "AT_SPI_BUS", False);
131   XGetWindowProperty (bridge_display,
132                       XDefaultRootWindow (bridge_display),
133                       AT_SPI_BUS, 0L,
134                       (long) BUFSIZ, False,
135                       (Atom) 31, &actual_type, &actual_format,
136                       &nitems, &leftover, &data);
137
138   dbus_error_init (&error);
139
140   if (data == NULL)
141     {
142       g_warning
143         ("AT-SPI: Accessibility bus not found - Using session bus.\n");
144       bus = dbus_bus_get (DBUS_BUS_SESSION, &error);
145       if (!bus)
146         {
147           g_warning ("AT-SPI: Couldn't connect to bus: %s\n", error.message);
148           return NULL;
149         }
150     }
151   else
152     {
153       bus = dbus_connection_open (data, &error);
154       if (!bus)
155         {
156           g_warning ("AT-SPI: Couldn't connect to bus: %s\n", error.message);
157           return NULL;
158         }
159       else
160         {
161           if (!dbus_bus_register (bus, &error))
162             {
163               g_warning ("AT-SPI: Couldn't register with bus: %s\n", error.message);
164               return NULL;
165             }
166         }
167     }
168
169   return bus;
170 }
171
172 static void
173 set_reply (DBusPendingCall *pending, void *user_data)
174 {
175     void **replyptr = (void **)user_data;
176
177     *replyptr = dbus_pending_call_steal_reply (pending);
178   dbus_pending_call_unref (pending);
179 }
180
181 /*---------------------------------------------------------------------------*/
182
183 static void
184 add_event (const char *bus_name, const char *event)
185 {
186   event_data *evdata;
187   gchar **data;
188   GList *new_list;
189
190   evdata = (event_data *) g_malloc (sizeof (*evdata));
191   if (!evdata)
192     return;
193   data = g_strsplit (event, ":", 3);
194   if (!data)
195     {
196       g_free (evdata);
197       return;
198     }
199   evdata->bus_name = g_strdup (bus_name);
200   evdata->data = data;
201   new_list = g_list_append (spi_global_app_data->events, evdata);
202   if (new_list)
203     spi_global_app_data->events = new_list;
204 }
205
206 static void
207 get_registered_event_listeners (SpiBridge *app)
208 {
209   DBusMessage *message, *reply;
210   DBusMessageIter iter, iter_array, iter_struct;
211
212   message = dbus_message_new_method_call (SPI_DBUS_NAME_REGISTRY,
213                                          SPI_DBUS_PATH_REGISTRY,
214                                          SPI_DBUS_INTERFACE_REGISTRY,
215                                          "GetRegisteredEvents");
216   spi_global_app_data->events_initialized = TRUE;
217   if (!message)
218     return;
219
220   reply = dbus_connection_send_with_reply_and_block (app->bus, message, 5000, NULL);
221   dbus_message_unref (message);
222   if (!reply)
223     return;
224   if (strcmp (dbus_message_get_signature (reply), "a(ss)") != 0)
225     {
226       /* TODO: Add a warning when it's okay to add strings */
227       dbus_message_unref (reply);
228       return;
229     }
230   dbus_message_iter_init (reply, &iter);
231   dbus_message_iter_recurse (&iter, &iter_array);
232   while (dbus_message_iter_get_arg_type (&iter_array) != DBUS_TYPE_INVALID)
233     {
234       char *bus_name, *event;
235       dbus_message_iter_recurse (&iter_array, &iter_struct);
236       dbus_message_iter_get_basic (&iter_struct, &bus_name);
237       dbus_message_iter_next (&iter_struct);
238       dbus_message_iter_get_basic (&iter_struct, &event);
239       add_event (bus_name, event);
240       dbus_message_iter_next (&iter_array);
241     }
242   dbus_message_unref (reply);
243 }
244
245 static void
246 register_reply (DBusPendingCall *pending, void *user_data)
247 {
248   DBusMessage *reply;
249   SpiBridge *app = user_data;
250   DBusMessage *message;
251
252   reply = dbus_pending_call_steal_reply (pending);
253   dbus_pending_call_unref (pending);
254   if (reply)
255     {
256       gchar *app_name, *obj_path;
257
258       if (strcmp (dbus_message_get_signature (reply), "(so)") != 0)
259         {
260           g_warning ("AT-SPI: Could not obtain desktop path or name\n");
261         }
262       else
263         {
264           DBusMessageIter iter, iter_struct;
265           dbus_message_iter_init (reply, &iter);
266           dbus_message_iter_recurse (&iter, &iter_struct);
267           dbus_message_iter_get_basic (&iter_struct, &app_name);
268           dbus_message_iter_next (&iter_struct);
269           dbus_message_iter_get_basic (&iter_struct, &obj_path);
270
271           app->desktop_name = g_strdup (app_name);
272           app->desktop_path = g_strdup (obj_path);
273         }
274     }
275   else
276     {
277       g_warning ("AT-SPI: Could not embed inside desktop");
278       return;
279     }
280   dbus_message_unref (reply);
281
282   get_registered_event_listeners (spi_global_app_data);
283 }
284
285 static gboolean
286 register_application (SpiBridge * app)
287 {
288   DBusMessage *message, *reply;
289   DBusMessageIter iter;
290   DBusError error;
291   DBusPendingCall *pending;
292   const int max_addr_length = 128; /* should be long enough */
293
294   dbus_error_init (&error);
295
296   /* These will be overridden when we get a reply, but in practice these
297      defaults should always be correct */
298   app->desktop_name = SPI_DBUS_NAME_REGISTRY;
299   app->desktop_path = SPI_DBUS_PATH_ROOT;
300
301   message = dbus_message_new_method_call (SPI_DBUS_NAME_REGISTRY,
302                                           SPI_DBUS_PATH_ROOT,
303                                           SPI_DBUS_INTERFACE_SOCKET,
304                                           "Embed");
305
306   dbus_message_iter_init_append (message, &iter);
307   spi_object_append_reference (&iter, app->root);
308   
309     if (!dbus_connection_send_with_reply (app->bus, message, &pending, -1)
310         || !pending)
311     {
312         return FALSE;
313     }
314
315     dbus_pending_call_set_notify (pending, register_reply, app, NULL);
316
317   if (message)
318     dbus_message_unref (message);
319
320 /* could this be better, we accept some amount of race in getting the temp name*/
321 /* make sure the directory exists */
322 mkdir("/tmp/at-spi2/", S_IRWXU);
323 app->app_bus_addr = g_malloc(max_addr_length * sizeof(char));
324 #ifndef DISABLE_P2P
325 sprintf(app->app_bus_addr, "unix:path=/tmp/at-spi2/socket-%d-%d", getpid(),
326 rand());
327 #else
328   app->app_bus_addr [0] = '\0';
329 #endif
330
331   return TRUE;
332 }
333
334 /*---------------------------------------------------------------------------*/
335
336 static void
337 deregister_application (SpiBridge * app)
338 {
339   DBusMessage *message;
340   DBusMessageIter iter;
341   DBusError error;
342   const char *uname;
343
344   dbus_error_init (&error);
345
346   message = dbus_message_new_method_call (SPI_DBUS_NAME_REGISTRY,
347                                           SPI_DBUS_PATH_REGISTRY,
348                                           SPI_DBUS_INTERFACE_REGISTRY,
349                                           "DeregisterApplication");
350   dbus_message_set_no_reply (message, TRUE);
351
352   uname = dbus_bus_get_unique_name (app->bus);
353
354   dbus_message_iter_init_append (message, &iter);
355   dbus_message_iter_append_basic (&iter, DBUS_TYPE_STRING, &uname);
356   dbus_connection_send (app->bus, message, NULL);
357   if (message)
358     dbus_message_unref (message);
359 }
360
361 /*---------------------------------------------------------------------------*/
362
363 static void
364 exit_func (void)
365 {
366   if (!spi_global_app_data)
367     {
368       return;
369     }
370
371   spi_atk_tidy_windows ();
372   spi_atk_deregister_event_listeners ();
373   deregister_application (spi_global_app_data);
374
375   g_free (spi_global_app_data);
376   spi_global_app_data = NULL;
377
378   /* Not currently creating an XDisplay */
379 #if 0
380   if (bridge_display)
381     XCloseDisplay (bridge_display);
382 #endif
383 }
384
385 /*---------------------------------------------------------------------------*/
386
387 static AtkPlugClass *plug_class;
388 static AtkSocketClass *socket_class;
389
390 static gchar *
391 get_plug_id (AtkPlug * plug)
392 {
393   const char *uname = dbus_bus_get_unique_name (spi_global_app_data->bus);
394   gchar *path;
395   GString *str = g_string_new (NULL);
396
397   path = spi_register_object_to_path (spi_global_register, G_OBJECT (plug));
398   g_string_printf (str, "%s:%s", uname, path);
399   g_free (path);
400   return g_string_free (str, FALSE);
401 }
402
403 AtkStateSet *
404 socket_ref_state_set (AtkObject *accessible)
405 {
406   char *child_name, *child_path;
407   AtkSocket *socket = ATK_SOCKET (accessible);
408   int count = 0;
409   int j;
410   int v;
411   DBusMessage *message, *reply;
412   DBusMessageIter iter, iter_array;
413   AtkStateSet *set;
414
415   if (!socket->embedded_plug_id)
416     return NULL;
417
418   child_name = g_strdup (socket->embedded_plug_id);
419   if (!child_name)
420     return NULL;
421   child_path = g_utf8_strchr (child_name + 1, -1, ':');
422   if (!child_path)
423     {
424       g_free (child_name);
425       return NULL;
426     }
427   *(child_path++) = '\0';
428   message = dbus_message_new_method_call (child_name, child_path, SPI_DBUS_INTERFACE_ACCESSIBLE, "GetState");
429   g_free (child_name);
430   reply = dbus_connection_send_with_reply_and_block (spi_global_app_data->bus, message, 1, NULL);
431   dbus_message_unref (message);
432   if (reply == NULL)
433     return NULL;
434   if (strcmp (dbus_message_get_signature (reply), "au") != 0)
435     {
436       dbus_message_unref (reply);
437       return NULL;
438     }
439   set = atk_state_set_new ();
440   if (!set)
441     return  NULL;
442   dbus_message_iter_init (reply, &iter);
443   dbus_message_iter_recurse (&iter, &iter_array);
444   do
445     {
446       dbus_message_iter_get_basic (&iter_array, &v);
447       for (j = 0; j < 32; j++)
448         {
449           if (v & (1 << j))
450             {
451               AtkState state = spi_atk_state_from_spi_state ((count << 5) + j);
452               atk_state_set_add_state (set, state);
453             }
454         }
455       count++;
456     }
457   while (dbus_message_iter_next (&iter_array));
458   dbus_message_unref (reply);
459   return set;
460 }
461
462 static void
463 socket_embed_hook (AtkSocket * socket, gchar * plug_id)
464 {
465   AtkObject *accessible = ATK_OBJECT(socket);
466   gchar *plug_name, *plug_path;
467   AtkObjectClass *klass;
468
469   /* Force registration */
470   gchar *path = spi_register_object_to_path (spi_global_register, G_OBJECT (accessible));
471   /* Let the plug know that it has been embedded */
472   plug_name = g_strdup (plug_id);
473   if (!plug_name)
474     {
475       g_free (path);
476       return;
477     }
478   plug_path = g_utf8_strchr (plug_name + 1, -1, ':');
479   if (plug_path)
480     {
481       DBusMessage *message;
482       *(plug_path++) = '\0';
483       message = dbus_message_new_method_call (plug_name, plug_path, SPI_DBUS_INTERFACE_SOCKET, "Embedded");
484       dbus_message_append_args (message, DBUS_TYPE_STRING, &path, DBUS_TYPE_INVALID);
485       dbus_connection_send (spi_global_app_data->bus, message, NULL);
486     }
487   g_free (plug_name);
488   g_free (path);
489
490   klass = ATK_OBJECT_GET_CLASS (accessible);
491   klass->ref_state_set = socket_ref_state_set;
492 }
493
494 static void
495 install_plug_hooks ()
496 {
497   gpointer data;
498
499   data = g_type_class_ref (ATK_TYPE_PLUG);
500   plug_class = ATK_PLUG_CLASS (data);
501   data = g_type_class_ref (ATK_TYPE_SOCKET);
502   socket_class = ATK_SOCKET_CLASS (data);
503   plug_class->get_object_id = get_plug_id;
504   socket_class->embed = socket_embed_hook;
505 }
506
507 static void
508 new_connection_cb (DBusServer *server, DBusConnection *con, void *data)
509 {
510   GList *new_list;
511
512   dbus_connection_ref(con);
513   dbus_connection_setup_with_g_main(con, NULL);
514   droute_intercept_dbus (con);
515   droute_context_register (spi_global_app_data->droute, con);
516
517   new_list = g_list_append (spi_global_app_data->direct_connections, con);
518   if (new_list)
519     spi_global_app_data->direct_connections = new_list;
520 }
521
522 static int
523 setup_bus (void)
524 {
525 #ifndef DISABLE_P2P
526   DBusServer *server;
527   DBusError err;
528
529   dbus_error_init(&err);
530   server = dbus_server_listen(spi_global_app_data->app_bus_addr, &err);
531   if (server == NULL)
532   {
533     g_warning (_("atk-bridge: Couldn't listen on dbus server: %s"), err.message);
534     dbus_error_init (&err);
535     spi_global_app_data->app_bus_addr [0] = '\0';
536     g_main_context_unref (spi_global_app_data->main_context);
537     spi_global_app_data->main_context = NULL;
538     return -1;
539   }
540
541   dbus_server_setup_with_g_main(server, NULL);
542   dbus_server_set_new_connection_function(server, new_connection_cb, NULL, NULL);
543
544   spi_global_app_data->server = server;
545 #endif
546
547   return 0;
548 }
549
550
551 gchar *atspi_dbus_name = NULL;
552 static gboolean atspi_no_register = FALSE;
553
554 static GOptionEntry atspi_option_entries[] = {
555   {"atspi-dbus-name", 0, 0, G_OPTION_ARG_STRING, &atspi_dbus_name,
556    "D-Bus bus name to register as", NULL},
557   {"atspi-no-register", 0, 0, G_OPTION_ARG_NONE, &atspi_no_register,
558    "Do not register with Registry Daemon", NULL},
559   {NULL}
560 };
561
562 static gchar *
563 introspect_children_cb (const char *path, void *data)
564 {
565   if (!strcmp (path, "/org/a11y/atspi/accessible"))
566     {
567       return g_strdup ("<node name=\"root\"/>\n");
568       /* TODO: Should we place the whole hierarchy here? */
569     }
570   return NULL;
571 }
572
573 static void
574 handle_event_listener_registered (DBusConnection *bus, DBusMessage *message,
575                                   void *user_data)
576 {
577   const char *name;
578   char *sender;
579
580   if (!dbus_message_get_args (message, NULL, DBUS_TYPE_STRING, &sender,
581     DBUS_TYPE_STRING, &name, DBUS_TYPE_INVALID))
582     return;
583
584   add_event (sender, name);
585 }
586
587 static void
588 remove_events (const char *bus_name, const char *event)
589 {
590   event_data *evdata;
591   gchar **remove_data;
592   GList *list;
593
594   remove_data = g_strsplit (event, ":", 3);
595   if (!remove_data)
596     {
597       return;
598     }
599
600   for (list = spi_global_app_data->events; list;)
601     {
602       event_data *evdata = list->data;
603       if (!g_strcmp0 (evdata->bus_name, bus_name) &&
604           spi_event_is_subtype (evdata->data, remove_data))
605         {
606           GList *events = spi_global_app_data->events;
607           list = list->next;
608           g_strfreev (evdata->data);
609           g_free (evdata->bus_name);
610           g_free (evdata);
611           spi_global_app_data->events = g_list_remove (events, evdata);
612         }
613       else
614         {
615           list = list->next;
616         }
617     }
618 }
619
620 static void
621 handle_event_listener_deregistered (DBusConnection *bus, DBusMessage *message,
622                                     void *user_data)
623 {
624   const char *orig_name;
625   gchar *name;
626   char *sender;
627
628   if (!dbus_message_get_args (message, NULL, DBUS_TYPE_STRING, &sender,
629                               DBUS_TYPE_STRING, &name, DBUS_TYPE_INVALID))
630     return;
631
632   remove_events (sender, name);
633 }
634
635 static DBusHandlerResult
636 signal_filter (DBusConnection *bus, DBusMessage *message, void *user_data)
637 {
638   const char *interface = dbus_message_get_interface (message);
639   const char *member = dbus_message_get_member (message);
640   DBusHandlerResult result = DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
641
642   if (dbus_message_get_type (message) != DBUS_MESSAGE_TYPE_SIGNAL)
643     return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
644
645   if (!strcmp (interface, SPI_DBUS_INTERFACE_REGISTRY))
646     {
647       result = DBUS_HANDLER_RESULT_HANDLED;
648       if (!strcmp (member, "EventListenerRegistered"))
649         handle_event_listener_registered (bus, message, user_data);
650       else if (!strcmp (member, "EventListenerDeregistered"))
651         handle_event_listener_deregistered (bus, message, user_data);
652       else
653         result = DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
654     }
655   return result;
656 }
657
658 /*
659  * spi_app_init
660  *
661  * The following needs to be initialized.
662  *
663  * - DRoute for routing message to their accessible objects.
664  * - Event handlers for emmitting signals on specific ATK events.
665  * - setup the bus for p2p communication
666  * - Application registration with the AT-SPI registry.
667  *
668  */
669 static int
670 adaptor_init (gint * argc, gchar ** argv[])
671 {
672   GOptionContext *opt;
673   GError *err = NULL;
674   DBusError error;
675   AtkObject *root;
676   gchar *introspection_directory;
677   static gboolean inited = FALSE;
678
679   if (inited)
680     return 0;
681
682   inited = TRUE;
683
684   DRoutePath *treepath, *accpath;
685
686   root = atk_get_root ();
687   g_warn_if_fail (root);
688   if (!root)
689     {
690       inited = FALSE;
691       return -1;
692     }
693
694   /* Parse command line options */
695   opt = g_option_context_new (NULL);
696   g_option_context_add_main_entries (opt, atspi_option_entries, NULL);
697   g_option_context_set_ignore_unknown_options (opt, TRUE);
698   if (!g_option_context_parse (opt, argc, argv, &err))
699     g_warning ("AT-SPI Option parsing failed: %s\n", err->message);
700
701   /* Allocate global data and do ATK initializations */
702   spi_global_app_data = g_new0 (SpiBridge, 1);
703   atk_misc = atk_misc_get_instance ();
704   spi_global_app_data->root = g_object_ref (root);
705
706   /* Set up D-Bus connection and register bus name */
707   dbus_error_init (&error);
708   spi_global_app_data->bus = spi_atk_bridge_get_bus ();
709   if (!spi_global_app_data->bus)
710     {
711       g_free (spi_global_app_data);
712       spi_global_app_data = NULL;
713       inited = FALSE;
714       return -1;
715     }
716
717   if (atspi_dbus_name != NULL)
718     {
719       if (dbus_bus_request_name
720           (spi_global_app_data->bus, atspi_dbus_name, 0, &error))
721         {
722           g_print ("AT-SPI Recieved D-Bus name - %s\n", atspi_dbus_name);
723         }
724       else
725         {
726           g_print
727             ("AT-SPI D-Bus name requested but could not be allocated - %s\n",
728              atspi_dbus_name);
729         }
730     }
731
732 #ifndef DISABLE_P2P
733   spi_global_app_data->main_context = g_main_context_new ();
734 #else
735   spi_global_app_data->main_context = NULL;
736 #endif
737
738   dbus_connection_setup_with_g_main (spi_global_app_data->bus, NULL);
739
740   /* Hook our plug-and socket functions */
741   install_plug_hooks ();
742
743   /* 
744    * Create the leasing, register and cache objects.
745    * The order is important here, the cache depends on the
746    * register object.
747    */
748   spi_global_register = g_object_new (SPI_REGISTER_TYPE, NULL);
749   spi_global_leasing  = g_object_new (SPI_LEASING_TYPE, NULL);
750   spi_global_cache    = g_object_new (SPI_CACHE_TYPE, NULL);
751
752   /* Register droute for routing AT-SPI messages */
753   spi_global_app_data->droute =
754     droute_new ();
755
756   treepath = droute_add_one (spi_global_app_data->droute,
757                              "/org/a11y/atspi/cache", spi_global_cache);
758
759   if (!treepath)
760     {
761       g_warning ("atk-bridge: Error in droute_add_one().  Already running?");
762       return -1;
763     }
764
765   accpath = droute_add_many (spi_global_app_data->droute,
766                              "/org/a11y/atspi/accessible",
767                              NULL,
768                              introspect_children_cb,
769                              NULL,
770                              (DRouteGetDatumFunction)
771                              spi_global_register_path_to_object);
772
773
774   /* Register all interfaces with droute and set up application accessible db */
775   spi_initialize_cache (treepath);
776   spi_initialize_accessible (accpath);
777   spi_initialize_application (accpath);
778   spi_initialize_action (accpath);
779   spi_initialize_collection (accpath);
780   spi_initialize_component (accpath);
781   spi_initialize_document (accpath);
782   spi_initialize_editabletext (accpath);
783   spi_initialize_hyperlink (accpath);
784   spi_initialize_hypertext (accpath);
785   spi_initialize_image (accpath);
786   spi_initialize_selection (accpath);
787   spi_initialize_socket (accpath);
788   spi_initialize_table (accpath);
789   spi_initialize_text (accpath);
790   spi_initialize_value (accpath);
791
792   droute_context_register (spi_global_app_data->droute,
793                            spi_global_app_data->bus);
794
795   /* Register methods to send D-Bus signals on certain ATK events */
796   spi_atk_register_event_listeners ();
797
798   /* Set up filter and match rules to catch signals */
799   dbus_bus_add_match (spi_global_app_data->bus, "type='signal', interface='org.a11y.atspi.Registry', sender='org.a11y.atspi.Registry'", NULL);
800   dbus_connection_add_filter (spi_global_app_data->bus, signal_filter, NULL,
801                               NULL);
802
803   /* Register this app by sending a signal out to AT-SPI registry daemon */
804   if (!atspi_no_register && (!root || !ATK_IS_PLUG (root)))
805     register_application (spi_global_app_data);
806   else
807     get_registered_event_listeners (spi_global_app_data);
808
809   setup_bus();
810
811   return 0;
812 }
813
814 /*---------------------------------------------------------------------------*/
815
816 int
817 gtk_module_init (gint * argc, gchar ** argv[])
818 {
819   const gchar *load_bridge = g_getenv ("NO_AT_BRIDGE");
820
821   if (!load_bridge || g_ascii_strtod (load_bridge, NULL) == 0)
822     {
823       return adaptor_init (argc, argv);
824     }
825   return 0;
826 }
827
828 gchar*
829 g_module_check_init (GModule *module)
830 {
831   g_module_make_resident (module);
832
833   return NULL;
834 }
835
836 void
837 gnome_accessibility_module_init (void)
838 {
839   const gchar *load_bridge = g_getenv ("NO_AT_BRIDGE");
840
841   if (!load_bridge || g_ascii_strtod (load_bridge, NULL) == 0)
842     {
843       adaptor_init (NULL, NULL);
844
845       if (g_getenv ("AT_SPI_DEBUG"))
846         {
847           g_print ("Atk Accessibility bridge initialized\n");
848         }
849     }
850 }
851
852 void
853 gnome_accessibility_module_shutdown (void)
854 {
855   spi_atk_deregister_event_listeners ();
856   exit_func ();
857 }
858
859 /*END------------------------------------------------------------------------*/