/tmp/at-spi2 should be created with permissions of 0x1777
[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|S_IRWXG|S_IRWXO|S_ISVTX);
323   chmod ("/tmp/at-spi2/", S_IRWXU|S_IRWXG|S_IRWXO|S_ISVTX);
324   app->app_bus_addr = g_malloc(max_addr_length * sizeof(char));
325 #ifndef DISABLE_P2P
326   sprintf (app->app_bus_addr, "unix:path=/tmp/at-spi2/socket-%d-%d", getpid(),
327            rand());
328 #else
329   app->app_bus_addr [0] = '\0';
330 #endif
331
332   return TRUE;
333 }
334
335 /*---------------------------------------------------------------------------*/
336
337 static void
338 deregister_application (SpiBridge * app)
339 {
340   DBusMessage *message;
341   DBusMessageIter iter;
342   DBusError error;
343   const char *uname;
344
345   dbus_error_init (&error);
346
347   message = dbus_message_new_method_call (SPI_DBUS_NAME_REGISTRY,
348                                           SPI_DBUS_PATH_REGISTRY,
349                                           SPI_DBUS_INTERFACE_REGISTRY,
350                                           "DeregisterApplication");
351   dbus_message_set_no_reply (message, TRUE);
352
353   uname = dbus_bus_get_unique_name (app->bus);
354
355   dbus_message_iter_init_append (message, &iter);
356   dbus_message_iter_append_basic (&iter, DBUS_TYPE_STRING, &uname);
357   dbus_connection_send (app->bus, message, NULL);
358   if (message)
359     dbus_message_unref (message);
360 }
361
362 /*---------------------------------------------------------------------------*/
363
364 static void
365 exit_func (void)
366 {
367   if (!spi_global_app_data)
368     {
369       return;
370     }
371
372   spi_atk_tidy_windows ();
373   spi_atk_deregister_event_listeners ();
374   deregister_application (spi_global_app_data);
375
376   g_free (spi_global_app_data);
377   spi_global_app_data = NULL;
378
379   /* Not currently creating an XDisplay */
380 #if 0
381   if (bridge_display)
382     XCloseDisplay (bridge_display);
383 #endif
384 }
385
386 /*---------------------------------------------------------------------------*/
387
388 static AtkPlugClass *plug_class;
389 static AtkSocketClass *socket_class;
390
391 static gchar *
392 get_plug_id (AtkPlug * plug)
393 {
394   const char *uname = dbus_bus_get_unique_name (spi_global_app_data->bus);
395   gchar *path;
396   GString *str = g_string_new (NULL);
397
398   path = spi_register_object_to_path (spi_global_register, G_OBJECT (plug));
399   g_string_printf (str, "%s:%s", uname, path);
400   g_free (path);
401   return g_string_free (str, FALSE);
402 }
403
404 AtkStateSet *
405 socket_ref_state_set (AtkObject *accessible)
406 {
407   char *child_name, *child_path;
408   AtkSocket *socket = ATK_SOCKET (accessible);
409   int count = 0;
410   int j;
411   int v;
412   DBusMessage *message, *reply;
413   DBusMessageIter iter, iter_array;
414   AtkStateSet *set;
415
416   if (!socket->embedded_plug_id)
417     return NULL;
418
419   child_name = g_strdup (socket->embedded_plug_id);
420   if (!child_name)
421     return NULL;
422   child_path = g_utf8_strchr (child_name + 1, -1, ':');
423   if (!child_path)
424     {
425       g_free (child_name);
426       return NULL;
427     }
428   *(child_path++) = '\0';
429   message = dbus_message_new_method_call (child_name, child_path, SPI_DBUS_INTERFACE_ACCESSIBLE, "GetState");
430   g_free (child_name);
431   reply = dbus_connection_send_with_reply_and_block (spi_global_app_data->bus, message, 1, NULL);
432   dbus_message_unref (message);
433   if (reply == NULL)
434     return NULL;
435   if (strcmp (dbus_message_get_signature (reply), "au") != 0)
436     {
437       dbus_message_unref (reply);
438       return NULL;
439     }
440   set = atk_state_set_new ();
441   if (!set)
442     return  NULL;
443   dbus_message_iter_init (reply, &iter);
444   dbus_message_iter_recurse (&iter, &iter_array);
445   do
446     {
447       dbus_message_iter_get_basic (&iter_array, &v);
448       for (j = 0; j < 32; j++)
449         {
450           if (v & (1 << j))
451             {
452               AtkState state = spi_atk_state_from_spi_state ((count << 5) + j);
453               atk_state_set_add_state (set, state);
454             }
455         }
456       count++;
457     }
458   while (dbus_message_iter_next (&iter_array));
459   dbus_message_unref (reply);
460   return set;
461 }
462
463 static void
464 socket_embed_hook (AtkSocket * socket, gchar * plug_id)
465 {
466   AtkObject *accessible = ATK_OBJECT(socket);
467   gchar *plug_name, *plug_path;
468   AtkObjectClass *klass;
469
470   /* Force registration */
471   gchar *path = spi_register_object_to_path (spi_global_register, G_OBJECT (accessible));
472   /* Let the plug know that it has been embedded */
473   plug_name = g_strdup (plug_id);
474   if (!plug_name)
475     {
476       g_free (path);
477       return;
478     }
479   plug_path = g_utf8_strchr (plug_name + 1, -1, ':');
480   if (plug_path)
481     {
482       DBusMessage *message;
483       *(plug_path++) = '\0';
484       message = dbus_message_new_method_call (plug_name, plug_path, SPI_DBUS_INTERFACE_SOCKET, "Embedded");
485       dbus_message_append_args (message, DBUS_TYPE_STRING, &path, DBUS_TYPE_INVALID);
486       dbus_connection_send (spi_global_app_data->bus, message, NULL);
487     }
488   g_free (plug_name);
489   g_free (path);
490
491   klass = ATK_OBJECT_GET_CLASS (accessible);
492   klass->ref_state_set = socket_ref_state_set;
493 }
494
495 static void
496 install_plug_hooks ()
497 {
498   gpointer data;
499
500   data = g_type_class_ref (ATK_TYPE_PLUG);
501   plug_class = ATK_PLUG_CLASS (data);
502   data = g_type_class_ref (ATK_TYPE_SOCKET);
503   socket_class = ATK_SOCKET_CLASS (data);
504   plug_class->get_object_id = get_plug_id;
505   socket_class->embed = socket_embed_hook;
506 }
507
508 static void
509 new_connection_cb (DBusServer *server, DBusConnection *con, void *data)
510 {
511   GList *new_list;
512
513   dbus_connection_ref(con);
514   dbus_connection_setup_with_g_main(con, NULL);
515   droute_intercept_dbus (con);
516   droute_context_register (spi_global_app_data->droute, con);
517
518   new_list = g_list_append (spi_global_app_data->direct_connections, con);
519   if (new_list)
520     spi_global_app_data->direct_connections = new_list;
521 }
522
523 static int
524 setup_bus (void)
525 {
526 #ifndef DISABLE_P2P
527   DBusServer *server;
528   DBusError err;
529
530   dbus_error_init(&err);
531   server = dbus_server_listen(spi_global_app_data->app_bus_addr, &err);
532   if (server == NULL)
533   {
534     g_warning (_("atk-bridge: Couldn't listen on dbus server: %s"), err.message);
535     dbus_error_init (&err);
536     spi_global_app_data->app_bus_addr [0] = '\0';
537     g_main_context_unref (spi_global_app_data->main_context);
538     spi_global_app_data->main_context = NULL;
539     return -1;
540   }
541
542   dbus_server_setup_with_g_main(server, NULL);
543   dbus_server_set_new_connection_function(server, new_connection_cb, NULL, NULL);
544
545   spi_global_app_data->server = server;
546 #endif
547
548   return 0;
549 }
550
551
552 gchar *atspi_dbus_name = NULL;
553 static gboolean atspi_no_register = FALSE;
554
555 static GOptionEntry atspi_option_entries[] = {
556   {"atspi-dbus-name", 0, 0, G_OPTION_ARG_STRING, &atspi_dbus_name,
557    "D-Bus bus name to register as", NULL},
558   {"atspi-no-register", 0, 0, G_OPTION_ARG_NONE, &atspi_no_register,
559    "Do not register with Registry Daemon", NULL},
560   {NULL}
561 };
562
563 static gchar *
564 introspect_children_cb (const char *path, void *data)
565 {
566   if (!strcmp (path, "/org/a11y/atspi/accessible"))
567     {
568       return g_strdup ("<node name=\"root\"/>\n");
569       /* TODO: Should we place the whole hierarchy here? */
570     }
571   return NULL;
572 }
573
574 static void
575 handle_event_listener_registered (DBusConnection *bus, DBusMessage *message,
576                                   void *user_data)
577 {
578   const char *name;
579   char *sender;
580
581   if (!dbus_message_get_args (message, NULL, DBUS_TYPE_STRING, &sender,
582     DBUS_TYPE_STRING, &name, DBUS_TYPE_INVALID))
583     return;
584
585   add_event (sender, name);
586 }
587
588 static void
589 remove_events (const char *bus_name, const char *event)
590 {
591   event_data *evdata;
592   gchar **remove_data;
593   GList *list;
594
595   remove_data = g_strsplit (event, ":", 3);
596   if (!remove_data)
597     {
598       return;
599     }
600
601   for (list = spi_global_app_data->events; list;)
602     {
603       event_data *evdata = list->data;
604       if (!g_strcmp0 (evdata->bus_name, bus_name) &&
605           spi_event_is_subtype (evdata->data, remove_data))
606         {
607           GList *events = spi_global_app_data->events;
608           list = list->next;
609           g_strfreev (evdata->data);
610           g_free (evdata->bus_name);
611           g_free (evdata);
612           spi_global_app_data->events = g_list_remove (events, evdata);
613         }
614       else
615         {
616           list = list->next;
617         }
618     }
619 }
620
621 static void
622 handle_event_listener_deregistered (DBusConnection *bus, DBusMessage *message,
623                                     void *user_data)
624 {
625   const char *orig_name;
626   gchar *name;
627   char *sender;
628
629   if (!dbus_message_get_args (message, NULL, DBUS_TYPE_STRING, &sender,
630                               DBUS_TYPE_STRING, &name, DBUS_TYPE_INVALID))
631     return;
632
633   remove_events (sender, name);
634 }
635
636 static DBusHandlerResult
637 signal_filter (DBusConnection *bus, DBusMessage *message, void *user_data)
638 {
639   const char *interface = dbus_message_get_interface (message);
640   const char *member = dbus_message_get_member (message);
641   DBusHandlerResult result = DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
642
643   if (dbus_message_get_type (message) != DBUS_MESSAGE_TYPE_SIGNAL)
644     return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
645
646   if (!strcmp (interface, SPI_DBUS_INTERFACE_REGISTRY))
647     {
648       result = DBUS_HANDLER_RESULT_HANDLED;
649       if (!strcmp (member, "EventListenerRegistered"))
650         handle_event_listener_registered (bus, message, user_data);
651       else if (!strcmp (member, "EventListenerDeregistered"))
652         handle_event_listener_deregistered (bus, message, user_data);
653       else
654         result = DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
655     }
656   return result;
657 }
658
659 /*
660  * spi_app_init
661  *
662  * The following needs to be initialized.
663  *
664  * - DRoute for routing message to their accessible objects.
665  * - Event handlers for emmitting signals on specific ATK events.
666  * - setup the bus for p2p communication
667  * - Application registration with the AT-SPI registry.
668  *
669  */
670 static int
671 adaptor_init (gint * argc, gchar ** argv[])
672 {
673   GOptionContext *opt;
674   GError *err = NULL;
675   DBusError error;
676   AtkObject *root;
677   gchar *introspection_directory;
678   static gboolean inited = FALSE;
679
680   if (inited)
681     return 0;
682
683   inited = TRUE;
684
685   DRoutePath *treepath, *accpath;
686
687   root = atk_get_root ();
688   g_warn_if_fail (root);
689   if (!root)
690     {
691       inited = FALSE;
692       return -1;
693     }
694
695   /* Parse command line options */
696   opt = g_option_context_new (NULL);
697   g_option_context_add_main_entries (opt, atspi_option_entries, NULL);
698   g_option_context_set_ignore_unknown_options (opt, TRUE);
699   if (!g_option_context_parse (opt, argc, argv, &err))
700     g_warning ("AT-SPI Option parsing failed: %s\n", err->message);
701
702   /* Allocate global data and do ATK initializations */
703   spi_global_app_data = g_new0 (SpiBridge, 1);
704   atk_misc = atk_misc_get_instance ();
705   spi_global_app_data->root = g_object_ref (root);
706
707   /* Set up D-Bus connection and register bus name */
708   dbus_error_init (&error);
709   spi_global_app_data->bus = spi_atk_bridge_get_bus ();
710   if (!spi_global_app_data->bus)
711     {
712       g_free (spi_global_app_data);
713       spi_global_app_data = NULL;
714       inited = FALSE;
715       return -1;
716     }
717
718   if (atspi_dbus_name != NULL)
719     {
720       if (dbus_bus_request_name
721           (spi_global_app_data->bus, atspi_dbus_name, 0, &error))
722         {
723           g_print ("AT-SPI Recieved D-Bus name - %s\n", atspi_dbus_name);
724         }
725       else
726         {
727           g_print
728             ("AT-SPI D-Bus name requested but could not be allocated - %s\n",
729              atspi_dbus_name);
730         }
731     }
732
733 #ifndef DISABLE_P2P
734   spi_global_app_data->main_context = g_main_context_new ();
735 #else
736   spi_global_app_data->main_context = NULL;
737 #endif
738
739   dbus_connection_setup_with_g_main (spi_global_app_data->bus, NULL);
740
741   /* Hook our plug-and socket functions */
742   install_plug_hooks ();
743
744   /* 
745    * Create the leasing, register and cache objects.
746    * The order is important here, the cache depends on the
747    * register object.
748    */
749   spi_global_register = g_object_new (SPI_REGISTER_TYPE, NULL);
750   spi_global_leasing  = g_object_new (SPI_LEASING_TYPE, NULL);
751   spi_global_cache    = g_object_new (SPI_CACHE_TYPE, NULL);
752
753   /* Register droute for routing AT-SPI messages */
754   spi_global_app_data->droute =
755     droute_new ();
756
757   treepath = droute_add_one (spi_global_app_data->droute,
758                              "/org/a11y/atspi/cache", spi_global_cache);
759
760   if (!treepath)
761     {
762       g_warning ("atk-bridge: Error in droute_add_one().  Already running?");
763       return -1;
764     }
765
766   accpath = droute_add_many (spi_global_app_data->droute,
767                              "/org/a11y/atspi/accessible",
768                              NULL,
769                              introspect_children_cb,
770                              NULL,
771                              (DRouteGetDatumFunction)
772                              spi_global_register_path_to_object);
773
774
775   /* Register all interfaces with droute and set up application accessible db */
776   spi_initialize_cache (treepath);
777   spi_initialize_accessible (accpath);
778   spi_initialize_application (accpath);
779   spi_initialize_action (accpath);
780   spi_initialize_collection (accpath);
781   spi_initialize_component (accpath);
782   spi_initialize_document (accpath);
783   spi_initialize_editabletext (accpath);
784   spi_initialize_hyperlink (accpath);
785   spi_initialize_hypertext (accpath);
786   spi_initialize_image (accpath);
787   spi_initialize_selection (accpath);
788   spi_initialize_socket (accpath);
789   spi_initialize_table (accpath);
790   spi_initialize_text (accpath);
791   spi_initialize_value (accpath);
792
793   droute_context_register (spi_global_app_data->droute,
794                            spi_global_app_data->bus);
795
796   /* Register methods to send D-Bus signals on certain ATK events */
797   spi_atk_register_event_listeners ();
798
799   /* Set up filter and match rules to catch signals */
800   dbus_bus_add_match (spi_global_app_data->bus, "type='signal', interface='org.a11y.atspi.Registry', sender='org.a11y.atspi.Registry'", NULL);
801   dbus_connection_add_filter (spi_global_app_data->bus, signal_filter, NULL,
802                               NULL);
803
804   /* Register this app by sending a signal out to AT-SPI registry daemon */
805   if (!atspi_no_register && (!root || !ATK_IS_PLUG (root)))
806     register_application (spi_global_app_data);
807   else
808     get_registered_event_listeners (spi_global_app_data);
809
810   setup_bus();
811
812   return 0;
813 }
814
815 /*---------------------------------------------------------------------------*/
816
817 int
818 gtk_module_init (gint * argc, gchar ** argv[])
819 {
820   const gchar *load_bridge = g_getenv ("NO_AT_BRIDGE");
821
822   if (!load_bridge || g_ascii_strtod (load_bridge, NULL) == 0)
823     {
824       return adaptor_init (argc, argv);
825     }
826   return 0;
827 }
828
829 gchar*
830 g_module_check_init (GModule *module)
831 {
832   g_module_make_resident (module);
833
834   return NULL;
835 }
836
837 void
838 gnome_accessibility_module_init (void)
839 {
840   const gchar *load_bridge = g_getenv ("NO_AT_BRIDGE");
841
842   if (!load_bridge || g_ascii_strtod (load_bridge, NULL) == 0)
843     {
844       adaptor_init (NULL, NULL);
845
846       if (g_getenv ("AT_SPI_DEBUG"))
847         {
848           g_print ("Atk Accessibility bridge initialized\n");
849         }
850     }
851 }
852
853 void
854 gnome_accessibility_module_shutdown (void)
855 {
856   spi_atk_deregister_event_listeners ();
857   exit_func ();
858 }
859
860 /*END------------------------------------------------------------------------*/