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