Make the module resident.
[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 #include <gmodule.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   return TRUE;
335 }
336
337 /*---------------------------------------------------------------------------*/
338
339 static void
340 deregister_application (SpiBridge * app)
341 {
342   DBusMessage *message;
343   DBusMessageIter iter;
344   DBusError error;
345   const char *uname;
346
347   dbus_error_init (&error);
348
349   message = dbus_message_new_method_call (SPI_DBUS_NAME_REGISTRY,
350                                           SPI_DBUS_PATH_REGISTRY,
351                                           SPI_DBUS_INTERFACE_REGISTRY,
352                                           "DeregisterApplication");
353   dbus_message_set_no_reply (message, TRUE);
354
355   uname = dbus_bus_get_unique_name (app->bus);
356
357   dbus_message_iter_init_append (message, &iter);
358   dbus_message_iter_append_basic (&iter, DBUS_TYPE_STRING, &uname);
359   dbus_connection_send (app->bus, message, NULL);
360   if (message)
361     dbus_message_unref (message);
362 }
363
364 /*---------------------------------------------------------------------------*/
365
366 static void
367 exit_func (void)
368 {
369   if (!spi_global_app_data)
370     {
371       return;
372     }
373
374   spi_atk_tidy_windows ();
375   spi_atk_deregister_event_listeners ();
376   deregister_application (spi_global_app_data);
377
378   g_free (spi_global_app_data);
379   spi_global_app_data = NULL;
380
381   /* Not currently creating an XDisplay */
382 #if 0
383   if (bridge_display)
384     XCloseDisplay (bridge_display);
385 #endif
386 }
387
388 /*---------------------------------------------------------------------------*/
389
390 static AtkPlugClass *plug_class;
391 static AtkSocketClass *socket_class;
392
393 static gchar *
394 get_plug_id (AtkPlug * plug)
395 {
396   const char *uname = dbus_bus_get_unique_name (spi_global_app_data->bus);
397   gchar *path;
398   GString *str = g_string_new (NULL);
399
400   path = spi_register_object_to_path (spi_global_register, G_OBJECT (plug));
401   g_string_printf (str, "%s:%s", uname, path);
402   g_free (path);
403   return g_string_free (str, FALSE);
404 }
405
406 AtkStateSet *
407 socket_ref_state_set (AtkObject *accessible)
408 {
409   char *child_name, *child_path;
410   AtkSocket *socket = ATK_SOCKET (accessible);
411   int count = 0;
412   int j;
413   int v;
414   DBusMessage *message, *reply;
415   DBusMessageIter iter, iter_array;
416   AtkStateSet *set;
417
418   if (!socket->embedded_plug_id)
419     return NULL;
420
421   child_name = g_strdup (socket->embedded_plug_id);
422   if (!child_name)
423     return NULL;
424   child_path = g_utf8_strchr (child_name + 1, -1, ':');
425   if (!child_path)
426     {
427       g_free (child_name);
428       return NULL;
429     }
430   *(child_path++) = '\0';
431   message = dbus_message_new_method_call (child_name, child_path, SPI_DBUS_INTERFACE_ACCESSIBLE, "GetState");
432   g_free (child_name);
433   reply = dbus_connection_send_with_reply_and_block (spi_global_app_data->bus, message, 1, NULL);
434   dbus_message_unref (message);
435   if (reply == NULL)
436     return NULL;
437   if (strcmp (dbus_message_get_signature (reply), "au") != 0)
438     {
439       dbus_message_unref (reply);
440       return NULL;
441     }
442   set = atk_state_set_new ();
443   if (!set)
444     return  NULL;
445   dbus_message_iter_init (reply, &iter);
446   dbus_message_iter_recurse (&iter, &iter_array);
447   do
448     {
449       dbus_message_iter_get_basic (&iter_array, &v);
450       for (j = 0; j < 32; j++)
451         {
452           if (v & (1 << j))
453             {
454               AtkState state = spi_atk_state_from_spi_state ((count << 5) + j);
455               atk_state_set_add_state (set, state);
456             }
457         }
458       count++;
459     }
460   while (dbus_message_iter_next (&iter_array));
461   dbus_message_unref (reply);
462   return set;
463 }
464
465 static void
466 socket_embed_hook (AtkSocket * socket, gchar * plug_id)
467 {
468   AtkObject *accessible = ATK_OBJECT(socket);
469   gchar *plug_name, *plug_path;
470   AtkObjectClass *klass;
471
472   /* Force registration */
473   gchar *path = spi_register_object_to_path (spi_global_register, G_OBJECT (accessible));
474   /* Let the plug know that it has been embedded */
475   plug_name = g_strdup (plug_id);
476   if (!plug_name)
477     {
478       g_free (path);
479       return;
480     }
481   plug_path = g_utf8_strchr (plug_name + 1, -1, ':');
482   if (plug_path)
483     {
484       DBusMessage *message;
485       *(plug_path++) = '\0';
486       message = dbus_message_new_method_call (plug_name, plug_path, SPI_DBUS_INTERFACE_SOCKET, "Embedded");
487       dbus_message_append_args (message, DBUS_TYPE_STRING, &path, DBUS_TYPE_INVALID);
488       dbus_connection_send (spi_global_app_data->bus, message, NULL);
489     }
490   g_free (plug_name);
491   g_free (path);
492
493   klass = ATK_OBJECT_GET_CLASS (accessible);
494   klass->ref_state_set = socket_ref_state_set;
495 }
496
497 static void
498 install_plug_hooks ()
499 {
500   gpointer data;
501
502   data = g_type_class_ref (ATK_TYPE_PLUG);
503   plug_class = ATK_PLUG_CLASS (data);
504   data = g_type_class_ref (ATK_TYPE_SOCKET);
505   socket_class = ATK_SOCKET_CLASS (data);
506   plug_class->get_object_id = get_plug_id;
507   socket_class->embed = socket_embed_hook;
508 }
509
510 gchar *atspi_dbus_name = NULL;
511 static gboolean atspi_no_register = FALSE;
512
513 static GOptionEntry atspi_option_entries[] = {
514   {"atspi-dbus-name", 0, 0, G_OPTION_ARG_STRING, &atspi_dbus_name,
515    "D-Bus bus name to register as", NULL},
516   {"atspi-no-register", 0, 0, G_OPTION_ARG_NONE, &atspi_no_register,
517    "Do not register with Registry Daemon", NULL},
518   {NULL}
519 };
520
521 static gchar *
522 introspect_children_cb (const char *path, void *data)
523 {
524   if (!strcmp (path, "/org/a11y/atspi/accessible"))
525     {
526       return g_strdup ("<node name=\"root\"/>\n");
527       /* TODO: Should we place the whole hierarchy here? */
528     }
529   return NULL;
530 }
531
532 static void
533 handle_event_listener_registered (DBusConnection *bus, DBusMessage *message,
534                                   void *user_data)
535 {
536   const char *name;
537   char *sender;
538
539   if (!dbus_message_get_args (message, NULL, DBUS_TYPE_STRING, &sender,
540     DBUS_TYPE_STRING, &name, DBUS_TYPE_INVALID))
541     return;
542
543   add_event (sender, name);
544 }
545
546 static void
547 remove_events (const char *bus_name, const char *event)
548 {
549   event_data *evdata;
550   gchar **remove_data;
551   GList *list;
552
553   remove_data = g_strsplit (event, ":", 3);
554   if (!remove_data)
555     {
556       return;
557     }
558
559   for (list = spi_global_app_data->events; list;)
560     {
561       event_data *evdata = list->data;
562       if (!g_strcmp0 (evdata->bus_name, bus_name) &&
563           spi_event_is_subtype (evdata->data, remove_data))
564         {
565           GList *events = spi_global_app_data->events;
566           list = list->next;
567           g_strfreev (evdata->data);
568           g_free (evdata->bus_name);
569           g_free (evdata);
570           spi_global_app_data->events = g_list_remove (events, evdata);
571         }
572       else
573         {
574           list = list->next;
575         }
576     }
577 }
578
579 static void
580 handle_event_listener_deregistered (DBusConnection *bus, DBusMessage *message,
581                                     void *user_data)
582 {
583   const char *orig_name;
584   gchar *name;
585   char *sender;
586
587   if (!dbus_message_get_args (message, NULL, DBUS_TYPE_STRING, &sender,
588                               DBUS_TYPE_STRING, &name, DBUS_TYPE_INVALID))
589     return;
590
591   remove_events (sender, name);
592 }
593
594 static DBusHandlerResult
595 signal_filter (DBusConnection *bus, DBusMessage *message, void *user_data)
596 {
597   const char *interface = dbus_message_get_interface (message);
598   const char *member = dbus_message_get_member (message);
599   DBusHandlerResult result = DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
600
601   if (dbus_message_get_type (message) != DBUS_MESSAGE_TYPE_SIGNAL)
602     return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
603
604   if (!strcmp (interface, SPI_DBUS_INTERFACE_REGISTRY))
605     {
606       result = DBUS_HANDLER_RESULT_HANDLED;
607       if (!strcmp (member, "EventListenerRegistered"))
608         handle_event_listener_registered (bus, message, user_data);
609       else if (!strcmp (member, "EventListenerDeregistered"))
610         handle_event_listener_deregistered (bus, message, user_data);
611       else
612         result = DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
613     }
614   return result;
615 }
616
617 /*
618  * spi_app_init
619  *
620  * The following needs to be initialized.
621  *
622  * - DRoute for routing message to their accessible objects.
623  * - Event handlers for emmitting signals on specific ATK events.
624  * - Application registration with the AT-SPI registry.
625  *
626  */
627 static int
628 adaptor_init (gint * argc, gchar ** argv[])
629 {
630   GOptionContext *opt;
631   GError *err = NULL;
632   DBusError error;
633   AtkObject *root;
634   gchar *introspection_directory;
635   static gboolean inited = FALSE;
636
637   if (inited)
638     return 0;
639
640   inited = TRUE;
641
642   DRoutePath *treepath, *accpath;
643
644   root = atk_get_root ();
645   g_warn_if_fail (root);
646   if (!root)
647     {
648       inited = FALSE;
649       return -1;
650     }
651
652   /* Parse command line options */
653   opt = g_option_context_new (NULL);
654   g_option_context_add_main_entries (opt, atspi_option_entries, NULL);
655   g_option_context_set_ignore_unknown_options (opt, TRUE);
656   if (!g_option_context_parse (opt, argc, argv, &err))
657     g_warning ("AT-SPI Option parsing failed: %s\n", err->message);
658
659   /* Allocate global data and do ATK initializations */
660   spi_global_app_data = g_new0 (SpiBridge, 1);
661   atk_misc = atk_misc_get_instance ();
662   spi_global_app_data->root = g_object_ref (root);
663
664   /* Set up D-Bus connection and register bus name */
665   dbus_error_init (&error);
666   spi_global_app_data->bus = spi_atk_bridge_get_bus ();
667   if (!spi_global_app_data->bus)
668     {
669       g_free (spi_global_app_data);
670       spi_global_app_data = NULL;
671       inited = FALSE;
672       return -1;
673     }
674
675   if (atspi_dbus_name != NULL)
676     {
677       if (dbus_bus_request_name
678           (spi_global_app_data->bus, atspi_dbus_name, 0, &error))
679         {
680           g_print ("AT-SPI Recieved D-Bus name - %s\n", atspi_dbus_name);
681         }
682       else
683         {
684           g_print
685             ("AT-SPI D-Bus name requested but could not be allocated - %s\n",
686              atspi_dbus_name);
687         }
688     }
689
690   dbus_connection_setup_with_g_main (spi_global_app_data->bus,
691                                      g_main_context_default ());
692
693   /* Hook our plug-and socket functions */
694   install_plug_hooks ();
695
696   /* 
697    * Create the leasing, register and cache objects.
698    * The order is important here, the cache depends on the
699    * register object.
700    */
701   spi_global_register = g_object_new (SPI_REGISTER_TYPE, NULL);
702   spi_global_leasing  = g_object_new (SPI_LEASING_TYPE, NULL);
703   spi_global_cache    = g_object_new (SPI_CACHE_TYPE, NULL);
704
705   /* Register droute for routing AT-SPI messages */
706   spi_global_app_data->droute =
707     droute_new (spi_global_app_data->bus);
708
709   treepath = droute_add_one (spi_global_app_data->droute,
710                              "/org/a11y/atspi/cache", spi_global_cache);
711
712   if (!treepath)
713     {
714       g_warning ("atk-bridge: Error in droute_add_one().  Already running?");
715       return -1;
716     }
717
718   accpath = droute_add_many (spi_global_app_data->droute,
719                              "/org/a11y/atspi/accessible",
720                              NULL,
721                              introspect_children_cb,
722                              NULL,
723                              (DRouteGetDatumFunction)
724                              spi_global_register_path_to_object);
725
726
727   /* Register all interfaces with droute and set up application accessible db */
728   spi_initialize_cache (treepath);
729   spi_initialize_accessible (accpath);
730   spi_initialize_application (accpath);
731   spi_initialize_action (accpath);
732   spi_initialize_collection (accpath);
733   spi_initialize_component (accpath);
734   spi_initialize_document (accpath);
735   spi_initialize_editabletext (accpath);
736   spi_initialize_hyperlink (accpath);
737   spi_initialize_hypertext (accpath);
738   spi_initialize_image (accpath);
739   spi_initialize_selection (accpath);
740   spi_initialize_socket (accpath);
741   spi_initialize_table (accpath);
742   spi_initialize_text (accpath);
743   spi_initialize_value (accpath);
744
745   /* Register methods to send D-Bus signals on certain ATK events */
746   spi_atk_register_event_listeners ();
747
748   /* Set up filter and match rules to catch signals */
749   dbus_bus_add_match (spi_global_app_data->bus, "type='signal', interface='org.a11y.atspi.Registry', sender='org.a11y.atspi.Registry'", NULL);
750   dbus_connection_add_filter (spi_global_app_data->bus, signal_filter, NULL,
751                               NULL);
752
753   /* Register this app by sending a signal out to AT-SPI registry daemon */
754   if (!atspi_no_register && (!root || !ATK_IS_PLUG (root)))
755     register_application (spi_global_app_data);
756   else
757     get_registered_event_listeners (spi_global_app_data);
758
759   g_atexit (exit_func);
760
761   return 0;
762 }
763
764 /*---------------------------------------------------------------------------*/
765
766 int
767 gtk_module_init (gint * argc, gchar ** argv[])
768 {
769   const gchar *load_bridge = g_getenv ("NO_AT_BRIDGE");
770
771   if (!load_bridge || g_ascii_strtod (load_bridge, NULL) == 0)
772     {
773       return adaptor_init (argc, argv);
774     }
775   return 0;
776 }
777
778 gchar*
779 g_module_check_init (GModule *module)
780 {
781   g_module_make_resident (module);
782
783   return NULL;
784 }
785
786 void
787 gnome_accessibility_module_init (void)
788 {
789   const gchar *load_bridge = g_getenv ("NO_AT_BRIDGE");
790
791   if (!load_bridge || g_ascii_strtod (load_bridge, NULL) == 0)
792     {
793       adaptor_init (NULL, NULL);
794
795       if (g_getenv ("AT_SPI_DEBUG"))
796         {
797           g_print ("Atk Accessibility bridge initialized\n");
798         }
799     }
800 }
801
802 void
803 gnome_accessibility_module_shutdown (void)
804 {
805   spi_atk_deregister_event_listeners ();
806   exit_func ();
807 }
808
809 /*END------------------------------------------------------------------------*/