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