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