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