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