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