Fix some missing prototypes
[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 #include <glib/gi18n.h>
41
42 #include "bridge.h"
43 #include "event.h"
44 #include "adaptors.h"
45 #include "object.h"
46 #include "common/spi-stateset.h"
47
48 #include "accessible-register.h"
49 #include "accessible-leasing.h"
50 #include "accessible-cache.h"
51
52 #include "common/spi-dbus.h"
53
54 /*---------------------------------------------------------------------------*/
55
56 SpiBridge *spi_global_app_data = NULL;
57
58 static const AtkMisc *atk_misc = NULL;
59
60 /*static Display *bridge_display = NULL;*/
61
62 /*---------------------------------------------------------------------------*/
63
64 /*
65  * Returns a 'canonicalized' value for DISPLAY,
66  * with the screen number stripped off if present.
67  *
68  */
69 static const gchar *
70 spi_display_name (void)
71 {
72   static const char *canonical_display_name = NULL;
73   if (!canonical_display_name)
74     {
75       const gchar *display_env = g_getenv ("AT_SPI_DISPLAY");
76       if (!display_env)
77         {
78           display_env = g_getenv ("DISPLAY");
79           if (!display_env || !display_env[0])
80             canonical_display_name = ":0";
81           else
82             {
83               gchar *display_p, *screen_p;
84               canonical_display_name = g_strdup (display_env);
85               display_p = strrchr (canonical_display_name, ':');
86               screen_p = strrchr (canonical_display_name, '.');
87               if (screen_p && display_p && (screen_p > display_p))
88                 {
89                   *screen_p = '\0';
90                 }
91             }
92         }
93       else
94         {
95           canonical_display_name = display_env;
96         }
97     }
98   return canonical_display_name;
99 }
100
101 /*---------------------------------------------------------------------------*/
102
103 /*
104  * Gets the IOR from the XDisplay.
105  * Not currently used in D-Bus version, but something similar
106  * may be employed in the future for accessing the registry daemon
107  * bus name.
108  */
109
110 static DBusConnection *
111 spi_atk_bridge_get_bus (void)
112 {
113   Atom AT_SPI_BUS;
114   Atom actual_type;
115   Display *bridge_display;
116   int actual_format;
117   unsigned char *data = NULL;
118   unsigned long nitems;
119   unsigned long leftover;
120
121   DBusConnection *bus = NULL;
122   DBusError error;
123
124   bridge_display = XOpenDisplay (spi_display_name ());
125   if (!bridge_display)
126     {
127       g_warning ("AT_SPI: Could not get the display\n");
128       return NULL;
129     }
130
131   AT_SPI_BUS = XInternAtom (bridge_display, "AT_SPI_BUS", False);
132   XGetWindowProperty (bridge_display,
133                       XDefaultRootWindow (bridge_display),
134                       AT_SPI_BUS, 0L,
135                       (long) BUFSIZ, False,
136                       (Atom) 31, &actual_type, &actual_format,
137                       &nitems, &leftover, &data);
138
139   dbus_error_init (&error);
140
141   if (data == NULL)
142     {
143       g_warning
144         ("AT-SPI: Accessibility bus not found - Using session bus.\n");
145       bus = dbus_bus_get (DBUS_BUS_SESSION, &error);
146       if (!bus)
147         {
148           g_warning ("AT-SPI: Couldn't connect to bus: %s\n", error.message);
149           return NULL;
150         }
151     }
152   else
153     {
154       bus = dbus_connection_open (data, &error);
155       XFree (data);
156       if (!bus)
157         {
158           g_warning ("AT-SPI: Couldn't connect to bus: %s\n", error.message);
159           return NULL;
160         }
161       else
162         {
163           if (!dbus_bus_register (bus, &error))
164             {
165               g_warning ("AT-SPI: Couldn't register with bus: %s\n", error.message);
166               return NULL;
167             }
168         }
169     }
170
171   return bus;
172 }
173
174 static void
175 set_reply (DBusPendingCall *pending, void *user_data)
176 {
177     void **replyptr = (void **)user_data;
178
179     *replyptr = dbus_pending_call_steal_reply (pending);
180   dbus_pending_call_unref (pending);
181 }
182
183 /*---------------------------------------------------------------------------*/
184
185 static void
186 add_event (const char *bus_name, const char *event)
187 {
188   event_data *evdata;
189   gchar **data;
190   GList *new_list;
191
192   evdata = (event_data *) g_malloc (sizeof (*evdata));
193   if (!evdata)
194     return;
195   data = g_strsplit (event, ":", 3);
196   if (!data)
197     {
198       g_free (evdata);
199       return;
200     }
201   evdata->bus_name = g_strdup (bus_name);
202   evdata->data = data;
203   new_list = g_list_append (spi_global_app_data->events, evdata);
204   if (new_list)
205     spi_global_app_data->events = new_list;
206 }
207
208 static void
209 get_registered_event_listeners (SpiBridge *app)
210 {
211   DBusMessage *message, *reply;
212   DBusMessageIter iter, iter_array, iter_struct;
213
214   message = dbus_message_new_method_call (SPI_DBUS_NAME_REGISTRY,
215                                          SPI_DBUS_PATH_REGISTRY,
216                                          SPI_DBUS_INTERFACE_REGISTRY,
217                                          "GetRegisteredEvents");
218   spi_global_app_data->events_initialized = TRUE;
219   if (!message)
220     return;
221
222   reply = dbus_connection_send_with_reply_and_block (app->bus, message, 5000, NULL);
223   dbus_message_unref (message);
224   if (!reply)
225     return;
226   if (strcmp (dbus_message_get_signature (reply), "a(ss)") != 0)
227     {
228       /* TODO: Add a warning when it's okay to add strings */
229       dbus_message_unref (reply);
230       return;
231     }
232   dbus_message_iter_init (reply, &iter);
233   dbus_message_iter_recurse (&iter, &iter_array);
234   while (dbus_message_iter_get_arg_type (&iter_array) != DBUS_TYPE_INVALID)
235     {
236       char *bus_name, *event;
237       dbus_message_iter_recurse (&iter_array, &iter_struct);
238       dbus_message_iter_get_basic (&iter_struct, &bus_name);
239       dbus_message_iter_next (&iter_struct);
240       dbus_message_iter_get_basic (&iter_struct, &event);
241       add_event (bus_name, event);
242       dbus_message_iter_next (&iter_array);
243     }
244   dbus_message_unref (reply);
245 }
246
247 static void
248 register_reply (DBusPendingCall *pending, void *user_data)
249 {
250   DBusMessage *reply;
251   SpiBridge *app = user_data;
252   DBusMessage *message;
253
254   reply = dbus_pending_call_steal_reply (pending);
255   dbus_pending_call_unref (pending);
256   if (reply)
257     {
258       gchar *app_name, *obj_path;
259
260       if (strcmp (dbus_message_get_signature (reply), "(so)") != 0)
261         {
262           g_warning ("AT-SPI: Could not obtain desktop path or name\n");
263         }
264       else
265         {
266           DBusMessageIter iter, iter_struct;
267           dbus_message_iter_init (reply, &iter);
268           dbus_message_iter_recurse (&iter, &iter_struct);
269           dbus_message_iter_get_basic (&iter_struct, &app_name);
270           dbus_message_iter_next (&iter_struct);
271           dbus_message_iter_get_basic (&iter_struct, &obj_path);
272
273           app->desktop_name = g_strdup (app_name);
274           app->desktop_path = g_strdup (obj_path);
275         }
276     }
277   else
278     {
279       g_warning ("AT-SPI: Could not embed inside desktop");
280       return;
281     }
282   dbus_message_unref (reply);
283
284   get_registered_event_listeners (spi_global_app_data);
285 }
286
287 static gboolean
288 register_application (SpiBridge * app)
289 {
290   DBusMessage *message, *reply;
291   DBusMessageIter iter;
292   DBusError error;
293   DBusPendingCall *pending;
294   const int max_addr_length = 128; /* should be long enough */
295
296   dbus_error_init (&error);
297
298   /* These will be overridden when we get a reply, but in practice these
299      defaults should always be correct */
300   app->desktop_name = SPI_DBUS_NAME_REGISTRY;
301   app->desktop_path = SPI_DBUS_PATH_ROOT;
302
303   message = dbus_message_new_method_call (SPI_DBUS_NAME_REGISTRY,
304                                           SPI_DBUS_PATH_ROOT,
305                                           SPI_DBUS_INTERFACE_SOCKET,
306                                           "Embed");
307
308   dbus_message_iter_init_append (message, &iter);
309   spi_object_append_reference (&iter, app->root);
310   
311     if (!dbus_connection_send_with_reply (app->bus, message, &pending, -1)
312         || !pending)
313     {
314         return FALSE;
315     }
316
317     dbus_pending_call_set_notify (pending, register_reply, app, NULL);
318
319   if (message)
320     dbus_message_unref (message);
321
322   /* could this be better, we accept some amount of race in getting the temp name*/
323   /* make sure the directory exists */
324   mkdir ("/tmp/at-spi2/", S_IRWXU|S_IRWXG|S_IRWXO|S_ISVTX);
325   chmod ("/tmp/at-spi2/", S_IRWXU|S_IRWXG|S_IRWXO|S_ISVTX);
326   app->app_bus_addr = g_malloc(max_addr_length * sizeof(char));
327 #ifndef DISABLE_P2P
328   sprintf (app->app_bus_addr, "unix:path=/tmp/at-spi2/socket-%d-%d", getpid(),
329            rand());
330 #else
331   app->app_bus_addr [0] = '\0';
332 #endif
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 static void
511 new_connection_cb (DBusServer *server, DBusConnection *con, void *data)
512 {
513   GList *new_list;
514
515   dbus_connection_ref(con);
516   dbus_connection_setup_with_g_main(con, NULL);
517   droute_intercept_dbus (con);
518   droute_context_register (spi_global_app_data->droute, con);
519
520   new_list = g_list_append (spi_global_app_data->direct_connections, con);
521   if (new_list)
522     spi_global_app_data->direct_connections = new_list;
523 }
524
525 static int
526 setup_bus (void)
527 {
528 #ifndef DISABLE_P2P
529   DBusServer *server;
530   DBusError err;
531
532   dbus_error_init(&err);
533   server = dbus_server_listen(spi_global_app_data->app_bus_addr, &err);
534   if (server == NULL)
535   {
536     g_warning (_("atk-bridge: Couldn't listen on dbus server: %s"), err.message);
537     dbus_error_init (&err);
538     spi_global_app_data->app_bus_addr [0] = '\0';
539     g_main_context_unref (spi_global_app_data->main_context);
540     spi_global_app_data->main_context = NULL;
541     return -1;
542   }
543
544   dbus_server_setup_with_g_main(server, NULL);
545   dbus_server_set_new_connection_function(server, new_connection_cb, NULL, NULL);
546
547   spi_global_app_data->server = server;
548 #endif
549
550   return 0;
551 }
552
553
554 gchar *atspi_dbus_name = NULL;
555 static gboolean atspi_no_register = FALSE;
556
557 static GOptionEntry atspi_option_entries[] = {
558   {"atspi-dbus-name", 0, 0, G_OPTION_ARG_STRING, &atspi_dbus_name,
559    "D-Bus bus name to register as", NULL},
560   {"atspi-no-register", 0, 0, G_OPTION_ARG_NONE, &atspi_no_register,
561    "Do not register with Registry Daemon", NULL},
562   {NULL}
563 };
564
565 static gchar *
566 introspect_children_cb (const char *path, void *data)
567 {
568   if (!strcmp (path, "/org/a11y/atspi/accessible"))
569     {
570       return g_strdup ("<node name=\"root\"/>\n");
571       /* TODO: Should we place the whole hierarchy here? */
572     }
573   return NULL;
574 }
575
576 static void
577 handle_event_listener_registered (DBusConnection *bus, DBusMessage *message,
578                                   void *user_data)
579 {
580   const char *name;
581   char *sender;
582
583   if (!dbus_message_get_args (message, NULL, DBUS_TYPE_STRING, &sender,
584     DBUS_TYPE_STRING, &name, DBUS_TYPE_INVALID))
585     return;
586
587   add_event (sender, name);
588 }
589
590 static void
591 remove_events (const char *bus_name, const char *event)
592 {
593   event_data *evdata;
594   gchar **remove_data;
595   GList *list;
596
597   remove_data = g_strsplit (event, ":", 3);
598   if (!remove_data)
599     {
600       return;
601     }
602
603   for (list = spi_global_app_data->events; list;)
604     {
605       event_data *evdata = list->data;
606       if (!g_strcmp0 (evdata->bus_name, bus_name) &&
607           spi_event_is_subtype (evdata->data, remove_data))
608         {
609           GList *events = spi_global_app_data->events;
610           list = list->next;
611           g_strfreev (evdata->data);
612           g_free (evdata->bus_name);
613           g_free (evdata);
614           spi_global_app_data->events = g_list_remove (events, evdata);
615         }
616       else
617         {
618           list = list->next;
619         }
620     }
621
622   g_strfreev (remove_data);
623 }
624
625 static void
626 handle_event_listener_deregistered (DBusConnection *bus, DBusMessage *message,
627                                     void *user_data)
628 {
629   const char *orig_name;
630   gchar *name;
631   char *sender;
632
633   if (!dbus_message_get_args (message, NULL, DBUS_TYPE_STRING, &sender,
634                               DBUS_TYPE_STRING, &name, DBUS_TYPE_INVALID))
635     return;
636
637   remove_events (sender, name);
638 }
639
640 static DBusHandlerResult
641 signal_filter (DBusConnection *bus, DBusMessage *message, void *user_data)
642 {
643   const char *interface = dbus_message_get_interface (message);
644   const char *member = dbus_message_get_member (message);
645   DBusHandlerResult result = DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
646
647   if (dbus_message_get_type (message) != DBUS_MESSAGE_TYPE_SIGNAL)
648     return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
649
650   if (!strcmp (interface, SPI_DBUS_INTERFACE_REGISTRY))
651     {
652       result = DBUS_HANDLER_RESULT_HANDLED;
653       if (!strcmp (member, "EventListenerRegistered"))
654         handle_event_listener_registered (bus, message, user_data);
655       else if (!strcmp (member, "EventListenerDeregistered"))
656         handle_event_listener_deregistered (bus, message, user_data);
657       else
658         result = DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
659     }
660   return result;
661 }
662
663 /*
664  * spi_app_init
665  *
666  * The following needs to be initialized.
667  *
668  * - DRoute for routing message to their accessible objects.
669  * - Event handlers for emmitting signals on specific ATK events.
670  * - setup the bus for p2p communication
671  * - Application registration with the AT-SPI registry.
672  *
673  */
674 static int
675 adaptor_init (gint * argc, gchar ** argv[])
676 {
677   GOptionContext *opt;
678   GError *err = NULL;
679   DBusError error;
680   AtkObject *root;
681   gchar *introspection_directory;
682   static gboolean inited = FALSE;
683
684   if (inited)
685     return 0;
686
687   inited = TRUE;
688
689   DRoutePath *treepath, *accpath;
690
691   root = atk_get_root ();
692   g_warn_if_fail (root);
693   if (!root)
694     {
695       inited = FALSE;
696       return -1;
697     }
698
699   /* Parse command line options */
700   opt = g_option_context_new (NULL);
701   g_option_context_add_main_entries (opt, atspi_option_entries, NULL);
702   g_option_context_set_ignore_unknown_options (opt, TRUE);
703   if (!g_option_context_parse (opt, argc, argv, &err))
704     g_warning ("AT-SPI Option parsing failed: %s\n", err->message);
705   g_option_context_free (opt);
706
707   /* Allocate global data and do ATK initializations */
708   spi_global_app_data = g_new0 (SpiBridge, 1);
709   atk_misc = atk_misc_get_instance ();
710   spi_global_app_data->root = g_object_ref (root);
711
712   /* Set up D-Bus connection and register bus name */
713   dbus_error_init (&error);
714   spi_global_app_data->bus = spi_atk_bridge_get_bus ();
715   if (!spi_global_app_data->bus)
716     {
717       g_free (spi_global_app_data);
718       spi_global_app_data = NULL;
719       inited = FALSE;
720       return -1;
721     }
722
723   if (atspi_dbus_name != NULL)
724     {
725       if (dbus_bus_request_name
726           (spi_global_app_data->bus, atspi_dbus_name, 0, &error))
727         {
728           g_print ("AT-SPI Recieved D-Bus name - %s\n", atspi_dbus_name);
729         }
730       else
731         {
732           g_print
733             ("AT-SPI D-Bus name requested but could not be allocated - %s\n",
734              atspi_dbus_name);
735         }
736     }
737
738 #ifndef DISABLE_P2P
739   spi_global_app_data->main_context = g_main_context_new ();
740 #else
741   spi_global_app_data->main_context = NULL;
742 #endif
743
744   dbus_connection_setup_with_g_main (spi_global_app_data->bus, NULL);
745
746   /* Hook our plug-and socket functions */
747   install_plug_hooks ();
748
749   /* 
750    * Create the leasing, register and cache objects.
751    * The order is important here, the cache depends on the
752    * register object.
753    */
754   spi_global_register = g_object_new (SPI_REGISTER_TYPE, NULL);
755   spi_global_leasing  = g_object_new (SPI_LEASING_TYPE, NULL);
756   spi_global_cache    = g_object_new (SPI_CACHE_TYPE, NULL);
757
758   /* Register droute for routing AT-SPI messages */
759   spi_global_app_data->droute =
760     droute_new ();
761
762   treepath = droute_add_one (spi_global_app_data->droute,
763                              "/org/a11y/atspi/cache", spi_global_cache);
764
765   if (!treepath)
766     {
767       g_warning ("atk-bridge: Error in droute_add_one().  Already running?");
768       return -1;
769     }
770
771   accpath = droute_add_many (spi_global_app_data->droute,
772                              "/org/a11y/atspi/accessible",
773                              NULL,
774                              introspect_children_cb,
775                              NULL,
776                              (DRouteGetDatumFunction)
777                              spi_global_register_path_to_object);
778
779
780   /* Register all interfaces with droute and set up application accessible db */
781   spi_initialize_cache (treepath);
782   spi_initialize_accessible (accpath);
783   spi_initialize_application (accpath);
784   spi_initialize_action (accpath);
785   spi_initialize_collection (accpath);
786   spi_initialize_component (accpath);
787   spi_initialize_document (accpath);
788   spi_initialize_editabletext (accpath);
789   spi_initialize_hyperlink (accpath);
790   spi_initialize_hypertext (accpath);
791   spi_initialize_image (accpath);
792   spi_initialize_selection (accpath);
793   spi_initialize_socket (accpath);
794   spi_initialize_table (accpath);
795   spi_initialize_text (accpath);
796   spi_initialize_value (accpath);
797
798   droute_context_register (spi_global_app_data->droute,
799                            spi_global_app_data->bus);
800
801   /* Register methods to send D-Bus signals on certain ATK events */
802   spi_atk_register_event_listeners ();
803
804   /* Set up filter and match rules to catch signals */
805   dbus_bus_add_match (spi_global_app_data->bus, "type='signal', interface='org.a11y.atspi.Registry', sender='org.a11y.atspi.Registry'", NULL);
806   dbus_connection_add_filter (spi_global_app_data->bus, signal_filter, NULL,
807                               NULL);
808
809   /* Register this app by sending a signal out to AT-SPI registry daemon */
810   if (!atspi_no_register && (!root || !ATK_IS_PLUG (root)))
811     register_application (spi_global_app_data);
812   else
813     get_registered_event_listeners (spi_global_app_data);
814
815   setup_bus();
816
817   return 0;
818 }
819
820 /*---------------------------------------------------------------------------*/
821
822 int
823 gtk_module_init (gint * argc, gchar ** argv[])
824 {
825   const gchar *load_bridge = g_getenv ("NO_AT_BRIDGE");
826
827   if (!load_bridge || g_ascii_strtod (load_bridge, NULL) == 0)
828     {
829       return adaptor_init (argc, argv);
830     }
831   return 0;
832 }
833
834 gchar*
835 g_module_check_init (GModule *module)
836 {
837   g_module_make_resident (module);
838
839   return NULL;
840 }
841
842 void
843 gnome_accessibility_module_init (void)
844 {
845   const gchar *load_bridge = g_getenv ("NO_AT_BRIDGE");
846
847   if (!load_bridge || g_ascii_strtod (load_bridge, NULL) == 0)
848     {
849       adaptor_init (NULL, NULL);
850
851       if (g_getenv ("AT_SPI_DEBUG"))
852         {
853           g_print ("Atk Accessibility bridge initialized\n");
854         }
855     }
856 }
857
858 void
859 gnome_accessibility_module_shutdown (void)
860 {
861   spi_atk_deregister_event_listeners ();
862   exit_func ();
863 }
864
865 /*END------------------------------------------------------------------------*/