2008-06-13 Mark Doffman <mark.doffman@codethink.co.uk>
[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 2001, 2002, 2003 Sun Microsystems Inc.,
6  * Copyright 2001, 2002, 2003 Ximian, Inc.
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public
19  * License along with this library; if not, write to the
20  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21  * Boston, MA 02111-1307, USA.
22  */
23
24 #include "config.h"
25 #include "dbus/dbus-glib-lowlevel.h"
26
27 #include <X11/Xlib.h>
28 #include <X11/Xatom.h>
29 #include <string.h>
30 #include <stdio.h>
31 #include <unistd.h>
32 #include <stdlib.h>
33 #include <stdarg.h>
34 #include <atk/atk.h>
35 #include <atk/atkobject.h>
36 #include <atk/atknoopobject.h>
37 #include "accessible.h"
38
39 #undef SPI_BRIDGE_DEBUG
40
41 #define DBG(a,b) if(_dbg>=(a))b
42
43 #define bridge_threads_leave() \
44   if (!during_init_shutdown && !g_main_context_is_owner (NULL)) atk_misc_threads_leave(misc);
45 #define bridge_threads_enter() \
46   if (!during_init_shutdown && !g_main_context_is_owner (NULL)) atk_misc_threads_enter(misc);
47
48 typedef struct _SpiAppData SpiAppData;
49 struct _SpiAppData
50 {
51   AtkObject *root;
52   DRouteData droute;
53 };
54
55 int _dbg = 0;
56 static const char *registry = NULL;
57 static char *device_event_controller = NULL;
58 static SpiAppData *this_app = NULL;
59 static gboolean registry_died = FALSE;
60 static gboolean atk_listeners_registered = FALSE;
61 static gint toplevels = 0;
62 static gboolean exiting = FALSE;
63 static AtkMisc *misc = NULL;
64 static gboolean during_init_shutdown = TRUE;
65
66 static guint atk_signal_text_changed;
67 static guint atk_signal_children_changed;
68 static guint atk_signal_active_descendant_changed;
69 static guint atk_signal_text_selection_changed;
70
71 /* NOT YET USED
72    static guint atk_signal_row_reordered;
73    static guint atk_signal_row_inserted;
74    static guint atk_signal_row_deleted;
75    static guint atk_signal_column_reordered;
76    static guint atk_signal_column_inserted;
77    static guint atk_signal_column_deleted;
78 */
79
80 static guint atk_signal_link_selected;
81 static guint atk_signal_bounds_changed;
82
83 static const char *spi_atk_bridge_get_registry (void);
84 static gboolean spi_atk_bridge_do_registration         (void);
85 static void     spi_atk_bridge_toplevel_added          (AtkObject             *object,
86                                                         guint                 index,
87                                                         AtkObject             *child);
88 static void     spi_atk_bridge_toplevel_removed        (AtkObject             *object,
89                                                         guint                 index,
90                                                         AtkObject             *child);
91
92 static void     spi_atk_bridge_exit_func               (void);
93 static void     spi_atk_register_event_listeners       (void);
94 static void     spi_atk_bridge_focus_tracker           (AtkObject             *object);
95 static gchar   *spi_atk_bridge_get_registry_ior        (void);
96 static void     spi_atk_bridge_register_application    (const char *registry);
97 static gboolean spi_atk_bridge_property_event_listener (GSignalInvocationHint *signal_hint,
98                                                         guint                  n_param_values,
99                                                         const GValue          *param_values,
100                                                         gpointer               data);
101
102 static gboolean
103 spi_atk_bridge_window_event_listener (GSignalInvocationHint *signal_hint,
104                                 guint n_param_values,
105                                 const GValue *param_values,
106                                 gpointer data);
107 static gboolean
108 spi_atk_bridge_document_event_listener (GSignalInvocationHint *signal_hint,
109                                 guint n_param_values,
110                                 const GValue *param_values,
111                                 gpointer data);
112 static gboolean
113 spi_atk_bridge_state_event_listener (GSignalInvocationHint *signal_hint,
114                                      guint n_param_values,
115                                      const GValue *param_values,
116                                      gpointer data);
117 static gboolean spi_atk_bridge_signal_listener         (GSignalInvocationHint *signal_hint,
118                                                         guint                  n_param_values,
119                                                         const GValue          *param_values,
120                                                         gpointer               data);
121 static gint     spi_atk_bridge_key_listener            (AtkKeyEventStruct     *event,
122                                                         gpointer               data);
123 static void     spi_atk_tidy_windows                   (void);
124 static void     deregister_application                 (SpiAppData *app);
125 static void reinit_register_vars (void);
126
127 /* For automatic libgnome init */
128 extern void gnome_accessibility_module_init     (void);
129 extern void gnome_accessibility_module_shutdown (void);
130
131 static int     atk_bridge_initialized = FALSE;
132 static pid_t   atk_bridge_pid = 0;
133 static guint   atk_bridge_focus_tracker_id = 0;
134 static guint   atk_bridge_key_event_listener_id = 0;
135 static GArray *listener_ids = NULL;
136
137 /*
138  *   These exported symbols are hooked by gnome-program
139  * to provide automatic module initialization and shutdown.
140  */
141 extern void gnome_accessibility_module_init     (void);
142 extern void gnome_accessibility_module_shutdown (void);
143
144 static void
145 spi_atk_bridge_init_event_type_consts ()
146 {
147   static gboolean done = FALSE;
148
149   if (done)
150     return;
151
152   atk_signal_children_changed = g_signal_lookup ("children_changed", 
153                                               ATK_TYPE_OBJECT);
154   atk_signal_text_changed = g_signal_lookup ("text_changed", 
155                                              ATK_TYPE_TEXT);
156   atk_signal_bounds_changed = g_signal_lookup ("bounds_changed", 
157                                               ATK_TYPE_COMPONENT);
158   atk_signal_active_descendant_changed = 
159          g_signal_lookup ("active_descendant_changed", 
160                           ATK_TYPE_OBJECT); 
161   atk_signal_link_selected = g_signal_lookup ("link_selected", 
162                                               ATK_TYPE_HYPERTEXT);
163   atk_signal_text_selection_changed = g_signal_lookup ("text_selection_changed", 
164                                               ATK_TYPE_TEXT);
165   done = TRUE;
166 }
167
168 static gboolean
169 post_init (gpointer data)
170 {
171   during_init_shutdown = FALSE;
172   return FALSE;
173 }
174
175 static DBusObjectPathVTable droute_vtable =
176 {
177   NULL,
178   &droute_message,
179   NULL, NULL, NULL, NULL
180 };
181
182 static gchar* atspi_dbus_name;
183 static gboolean atspi_no_register; 
184
185 static GOptionEntry atspi_option_entries[] = 
186 {
187   {"atspi-dbus-name", 0, 0, G_OPTION_ARG_STRING, &atspi_dbus_name, "D-Bus bus name to register as", NULL},
188   {"atspi-no-register", 0, 0, G_OPTION_ARG_NONE, &atspi_no_register, "Do not register with Registry Daemon", NULL},
189   {NULL}
190 };
191
192 static SpiAppData *
193 spi_app_init (AtkObject *root, gint *argc, gchar **argv[])
194 {
195   GOptionContext *opt;
196   SpiAppData *ad = g_new0(SpiAppData, 1);
197   GError *err = NULL;
198   DBusError error;
199   int i;
200
201   opt = g_option_context_new(NULL);
202   g_option_context_add_main_entries(opt, atspi_option_entries, NULL);
203   g_option_context_set_ignore_unknown_options(opt, TRUE);
204   if (!g_option_context_parse(opt, argc, argv, &err))
205       g_warning("Option parsing failed: %s\n", err->message);
206
207   dbus_error_init(&error);
208   ad->root = root;
209   ad->droute.bus = dbus_bus_get(DBUS_BUS_SESSION, &error);
210
211   if (!ad->droute.bus)
212   {
213     g_warning("Couldn't connect to dbus: %s\n", error.message);
214     free(ad);
215     return NULL;
216   }
217   if (atspi_dbus_name != NULL && dbus_bus_request_name(ad->droute.bus, 
218                                                        atspi_dbus_name,
219                                                        0,
220                                                        &error))
221   {
222     g_print("\nRecieved D-Bus name - %s\n", atspi_dbus_name);
223   }
224   spi_register_tree_object(ad->droute.bus, &ad->droute, "/org/freedesktop/atspi/tree");
225   if (!dbus_connection_try_register_fallback (ad->droute.bus, 
226                                               "/org/freedesktop/atspi/accessible", 
227                                               &droute_vtable, 
228                                               &ad->droute, 
229                                               &error))
230   {
231     g_warning("Couldn't register droute.\n");
232     free(ad);
233     return NULL;
234   }
235
236   dbus_connection_setup_with_g_main(ad->droute.bus, g_main_context_default());
237
238   spi_dbus_initialize (&ad->droute);
239   return ad;
240 }
241
242 static int
243 atk_bridge_init (gint *argc, gchar **argv[])
244 {
245   const char *debug_env_string = g_getenv ("AT_SPI_DEBUG");
246   gchar *fname;
247   gboolean success = FALSE;
248
249   if (atk_bridge_initialized)
250     {
251       return 0;
252     }
253   atk_bridge_initialized = TRUE;
254   atk_bridge_pid = getpid ();
255
256   misc = atk_misc_get_instance();
257
258   if (g_getenv ("ATK_BRIDGE_REDIRECT_LOG"))
259     {
260       fname = g_strconcat ("/tmp/", g_get_prgname (), ".at-spi-log", NULL);
261       /* make sure we're not being redirected - security issue */
262       if (!g_file_test (fname, G_FILE_TEST_IS_SYMLINK))
263           freopen (fname, "w", stderr);
264       g_free (fname);
265     }
266
267   if (debug_env_string) 
268       _dbg = (int) g_ascii_strtod (debug_env_string, NULL);
269
270   /* Connect to dbus */
271   this_app = spi_app_init (atk_get_root (), argc, argv);
272
273   /*
274    * We only want to enable the bridge for top level
275    * applications, we detect bonobo components by seeing
276    * if they were activated with the intention of extracting
277    * an impl. by IID - very solid.
278    */
279 #ifdef WITH_BONOBO
280   // TODO: Figure out if this is still needed
281   if (bonobo_activation_iid_get ())
282 #else
283   if (0)
284 #endif
285     {
286       DBG (1, g_message ("Found Bonobo component\n"));
287       g_signal_connect (atk_get_root (), 
288                         "children-changed::add",
289                         (GCallback) spi_atk_bridge_toplevel_added, 
290                         NULL);
291       g_signal_connect (atk_get_root (), 
292                         "children-changed::remove",
293                         (GCallback) spi_atk_bridge_toplevel_removed, 
294                         NULL);
295       /* in this case we redefine 'success' to mean 'registry is present' */
296       success = (spi_atk_bridge_get_registry () != NULL);
297     }
298   else
299     {
300       success = spi_atk_bridge_do_registration ();
301     }
302   /*
303    * we must emit events even if we are not registered as a
304    * full-fledged app; See bugzilla #400709.
305    */
306   if (success) 
307     {
308       spi_atk_register_event_listeners ();
309       spi_atk_bridge_init_event_type_consts ();
310     }
311   else
312     {
313       atk_bridge_initialized = FALSE;
314     }
315   g_idle_add (post_init, NULL);
316
317   return 0;
318 }
319
320 static gboolean
321 spi_atk_bridge_do_registration (void)
322 {
323   if (spi_atk_bridge_get_registry () == NULL)
324     {
325       g_warning ("Could not locate registry");
326       return FALSE;
327     }
328
329   /* Create the accessible application server object */
330   if (this_app == NULL)
331     this_app = spi_app_init (atk_get_root (), 0, NULL);
332
333   DBG (1, g_message ("About to register application\n"));
334
335   spi_atk_bridge_register_application (spi_atk_bridge_get_registry ());
336   
337   g_atexit (spi_atk_bridge_exit_func);
338
339   DBG (1, g_message ("Application registered & listening\n"));
340   return TRUE;
341 }
342
343 static void
344 spi_atk_bridge_toplevel_added (AtkObject *object,
345                                guint     index,
346                                AtkObject *child)
347 {
348   if (toplevels == 0)
349     {
350       spi_atk_bridge_do_registration ();
351     }
352   toplevels++;
353 }
354
355 static void
356 spi_atk_bridge_toplevel_removed (AtkObject *object,
357                                  guint     index,
358                                  AtkObject *child)
359 {
360   toplevels--;
361   if (toplevels == 0)
362     {
363       deregister_application (this_app);
364       reinit_register_vars ();
365     }
366   if (toplevels < 0)
367     {
368       g_warning ("More toplevels removed than added\n");
369       toplevels = 0;
370     }
371 }
372
373 static void
374 spi_atk_bridge_register_application (const char *registry)
375 {
376   bridge_threads_leave ();
377   // TODO: register
378   bridge_threads_enter ();
379 }
380
381 /* 
382  * Returns a 'canonicalized' value for DISPLAY,
383  * with the screen number stripped off if present.
384  */
385 static const gchar*
386 spi_display_name (void)
387 {
388     static const char *canonical_display_name = NULL;
389     if (!canonical_display_name)
390       {
391         const gchar *display_env = g_getenv ("AT_SPI_DISPLAY");
392         if (!display_env)
393           {
394             display_env = g_getenv ("DISPLAY");
395             if (!display_env || !display_env[0]) 
396                 canonical_display_name = ":0";
397             else
398               {
399                 gchar *display_p, *screen_p;
400                 canonical_display_name = g_strdup (display_env);
401                 display_p = strrchr (canonical_display_name, ':');
402                 screen_p = strrchr (canonical_display_name, '.');
403                 if (screen_p && display_p && (screen_p > display_p))
404                   {
405                     *screen_p = '\0';
406                   }
407               }
408           }
409         else
410           {
411             canonical_display_name = display_env;
412           }
413       }
414     return canonical_display_name;
415 }
416
417 static     Display *bridge_display = NULL;
418
419 static gchar *
420 spi_atk_bridge_get_registry_ior (void)
421 {
422      
423      Atom AT_SPI_IOR;
424      Atom actual_type;
425      int actual_format;
426      unsigned char *data = NULL;  
427      unsigned long nitems;
428      unsigned long leftover;
429      if (!bridge_display) 
430        bridge_display = XOpenDisplay (spi_display_name ());
431
432      AT_SPI_IOR = XInternAtom (bridge_display, "AT_SPI_IOR", False); 
433      XGetWindowProperty(bridge_display, 
434                         XDefaultRootWindow (bridge_display),
435                         AT_SPI_IOR, 0L, 
436                         (long)BUFSIZ, False, 
437                         (Atom) 31, &actual_type, &actual_format,
438                         &nitems, &leftover, &data);
439      if (data == NULL)
440           g_warning (_("AT_SPI_REGISTRY was not started at session startup."));
441      
442      return (gchar *) data;
443      
444 }
445
446
447 static const char *
448 spi_atk_bridge_get_registry (void)
449 {
450   // TODO: check for registry dying, as the old code attempted to do
451   return "org.freedesktop.atspi.registry";
452 }
453
454 static const char *
455 spi_atk_bridge_get_dec (void)
456 {
457   return "/dec";
458 }
459
460 int
461 gtk_module_init (gint *argc, gchar **argv[])
462 {
463         //printf("Pointer to argc %x %x\n", (short) ((argc && 0xffff0000) >> 16), (short) (argc && 0xffff));
464         return atk_bridge_init (argc, argv);
465 }
466
467 static void
468 add_signal_listener (const char *signal_name)
469 {
470   guint id;
471
472   id = atk_add_global_event_listener (
473     spi_atk_bridge_signal_listener, signal_name);
474
475   g_array_append_val (listener_ids, id);
476 }
477
478 static void
479 spi_atk_register_event_listeners (void)
480 {
481   /*
482    * kludge to make sure the Atk interface types are registered, otherwise
483    * the AtkText signal handlers below won't get registered
484    */
485   guint      id;
486   GObject   *ao = g_object_new (ATK_TYPE_OBJECT, NULL);
487   AtkObject *bo = atk_no_op_object_new (ao);
488
489
490   if (atk_listeners_registered) 
491     {
492       g_object_unref (G_OBJECT (bo));
493       g_object_unref (ao);
494       return;
495     }
496
497   atk_listeners_registered = TRUE;
498
499   /* Register for focus event notifications, and register app with central registry  */
500
501   listener_ids = g_array_sized_new (FALSE, TRUE, sizeof (guint), 16);
502
503   atk_bridge_focus_tracker_id = atk_add_focus_tracker (spi_atk_bridge_focus_tracker);
504
505   id = atk_add_global_event_listener (spi_atk_bridge_property_event_listener,
506                                       "Gtk:AtkObject:property-change");
507   g_array_append_val (listener_ids, id);
508   id = atk_add_global_event_listener (spi_atk_bridge_window_event_listener,
509                                       "window:create");
510   g_array_append_val (listener_ids, id);
511   id = atk_add_global_event_listener (spi_atk_bridge_window_event_listener,
512                                       "window:destroy");
513   g_array_append_val (listener_ids, id);
514   id = atk_add_global_event_listener (spi_atk_bridge_window_event_listener,
515                                       "window:minimize");
516   g_array_append_val (listener_ids, id);
517   id = atk_add_global_event_listener (spi_atk_bridge_window_event_listener,
518                                       "window:maximize");
519   g_array_append_val (listener_ids, id);
520   id = atk_add_global_event_listener (spi_atk_bridge_window_event_listener,
521                                       "window:restore");
522   g_array_append_val (listener_ids, id);
523   id = atk_add_global_event_listener (spi_atk_bridge_window_event_listener,
524                                       "window:activate");
525   g_array_append_val (listener_ids, id);
526   id = atk_add_global_event_listener (spi_atk_bridge_window_event_listener,
527                                       "window:deactivate");
528   g_array_append_val (listener_ids, id);
529   id = atk_add_global_event_listener (spi_atk_bridge_document_event_listener,
530                                       "Gtk:AtkDocument:load-complete");
531   g_array_append_val (listener_ids, id);
532   id = atk_add_global_event_listener (spi_atk_bridge_document_event_listener,
533                                       "Gtk:AtkDocument:reload");
534   g_array_append_val (listener_ids, id);
535   id = atk_add_global_event_listener (spi_atk_bridge_document_event_listener,
536                                       "Gtk:AtkDocument:load-stopped");
537   g_array_append_val (listener_ids, id);
538   id = atk_add_global_event_listener (spi_atk_bridge_state_event_listener,
539                                       "Gtk:AtkObject:state-change");
540   g_array_append_val (listener_ids, id);
541
542   add_signal_listener ("Gtk:AtkObject:children-changed");
543   add_signal_listener ("Gtk:AtkObject:visible-data-changed");
544   add_signal_listener ("Gtk:AtkObject:active-descendant-changed");
545   add_signal_listener ("Gtk:AtkComponent:bounds-changed");
546   add_signal_listener ("Gtk:AtkSelection:selection-changed");
547   add_signal_listener ("Gtk:AtkText:text-selection-changed");
548   add_signal_listener ("Gtk:AtkText:text-changed");
549   add_signal_listener ("Gtk:AtkText:text-caret-moved");
550   add_signal_listener ("Gtk:AtkTable:row-inserted");
551   add_signal_listener ("Gtk:AtkTable:row-reordered");
552   add_signal_listener ("Gtk:AtkTable:row-deleted");
553   add_signal_listener ("Gtk:AtkTable:column-inserted");
554   add_signal_listener ("Gtk:AtkTable:column-reordered");
555   add_signal_listener ("Gtk:AtkTable:column-deleted");
556   add_signal_listener ("Gtk:AtkTable:model-changed");
557   add_signal_listener ("Gtk:AtkHypertext:link-selected");
558 /*
559  * May add the following listeners to implement preemptive key listening for GTK+
560  *
561  * atk_add_global_event_listener (spi_atk_bridge_widgetkey_listener, "Gtk:GtkWidget:key-press-event");
562  * atk_add_global_event_listener (spi_atk_bridge_widgetkey_listener, "Gtk:GtkWidget:key-release-event");
563  */
564   atk_bridge_key_event_listener_id = atk_add_key_event_listener (
565     spi_atk_bridge_key_listener, NULL);
566   
567   g_object_unref (G_OBJECT (bo));
568   g_object_unref (ao);
569 }
570
571 static void
572 deregister_application (SpiAppData *app)
573 {
574   const char *registry = spi_atk_bridge_get_registry ();
575   bridge_threads_leave ();
576   // todo: deregister
577   bridge_threads_enter ();
578 }
579
580 static void
581 spi_atk_bridge_exit_func (void)
582 {
583   SpiAppData *app = (SpiAppData *) this_app;
584
585   DBG (1, g_message ("exiting bridge\n"));
586
587   if (!app)
588     {
589       return;
590     }
591   if (atk_bridge_pid != getpid ())
592     {
593       _exit (0);
594     }
595
596   during_init_shutdown = TRUE;
597   exiting = TRUE;
598   /*
599    * Check whether we still have windows which have not been deleted.
600    */
601   spi_atk_tidy_windows ();
602   /*
603    *  FIXME: this may be incorrect for apps that do their own bonobo
604    *  shutdown, until we can explicitly shutdown to get the ordering
605    *  right.
606    */
607   if (!registry_died)
608     deregister_application (this_app);
609   this_app = NULL;
610   DBG (1, g_message ("bridge exit func complete.\n"));
611
612   if (g_getenv ("AT_BRIDGE_SHUTDOWN"))
613     {
614     }
615   if (bridge_display)
616     XCloseDisplay (bridge_display);
617 }
618
619 void
620 gnome_accessibility_module_init (void)
621 {
622   atk_bridge_init (0, NULL);
623
624   if (g_getenv ("AT_BRIDGE_SHUTDOWN"))
625     {
626         g_print("Atk Accessibility bridge initialized\n");
627     }
628 }
629
630 void
631 gnome_accessibility_module_shutdown (void)
632 {
633   int     i;
634   GArray *ids = listener_ids;
635   
636   if (!atk_bridge_initialized)
637     {
638       return;
639     }
640   during_init_shutdown = TRUE;
641   atk_bridge_initialized = FALSE;
642
643   if (g_getenv ("AT_BRIDGE_SHUTDOWN"))
644     {
645         g_print("Atk Accessibility bridge shutdown\n");
646     }
647
648   listener_ids = NULL;
649   if (atk_bridge_focus_tracker_id)
650         atk_remove_focus_tracker (atk_bridge_focus_tracker_id);
651   
652   for (i = 0; ids && i < ids->len; i++)
653     {
654           atk_remove_global_event_listener (g_array_index (ids, guint, i));
655     }
656   
657   if (atk_bridge_key_event_listener_id)
658           atk_remove_key_event_listener (atk_bridge_key_event_listener_id);
659
660   deregister_application (this_app);
661   this_app = NULL;
662
663   misc = NULL;
664 }
665
666 static void emit(AtkObject *object, const char *name, const char *detail, dbus_int32_t detail1, dbus_int32_t detail2, int type, const void *val)
667 {
668   DBusMessage *sig;
669   char *path = spi_dbus_get_path(object);
670   DBusMessageIter iter, sub;
671   const char *type_as_string = NULL;
672   dbus_int32_t dummy = 0;
673
674   spi_dbus_update_cache(&this_app->droute);
675   if (type == DBUS_TYPE_OBJECT_PATH)
676   {
677     type_as_string = "o";
678     if (!val) val = "";
679   }
680   else if (type == DBUS_TYPE_STRING) type_as_string = "s";
681   else if (type == DBUS_TYPE_INT32) type_as_string = "i";
682   else if (type == DBUS_TYPE_UINT32) type_as_string = "u";
683   else if (type == DBUS_TYPE_INVALID)
684   {
685     type = DBUS_TYPE_UINT32;
686     type_as_string = "u";
687     if (!val) val = &dummy;
688   }
689   else
690   {
691     g_warning("Unknown type %d in property change signal", type);
692   }
693   sig = dbus_message_new_signal(path, "org.freedesktop.atspi.Accessible", name);
694   dbus_message_iter_init_append(sig, &iter);
695   if (!detail) detail = "";
696   dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &detail);
697   dbus_message_iter_append_basic(&iter, DBUS_TYPE_INT32, &detail1);
698   dbus_message_iter_append_basic(&iter, DBUS_TYPE_INT32, &detail2);
699   dbus_message_iter_open_container(&iter, DBUS_TYPE_VARIANT, type_as_string, &sub);
700   dbus_message_iter_append_basic(&sub, type, &val);
701   dbus_message_iter_close_container(&iter, &sub);
702 printf("emit: %s %s\n", name, detail);
703   dbus_connection_send(this_app->droute.bus, sig, NULL);
704   g_free(path);
705   dbus_message_unref(sig);
706 }
707
708 static void
709 spi_atk_bridge_focus_tracker (AtkObject *object)
710 {
711   emit(object, "focus", NULL, 0, 0, DBUS_TYPE_INVALID, NULL);
712 }
713
714 static void emit_rect(AtkObject *object, const char *name, const char *detail, AtkRectangle *rect)
715 {
716   DBusMessage *sig;
717   char *path = spi_dbus_get_path(object);
718   DBusMessageIter iter, iter_variant, sub;
719   dbus_uint32_t x, y, width, height;
720   dbus_int32_t dummy = 0;
721
722   spi_dbus_update_cache(&this_app->droute);
723   x = rect->x;
724   y = rect->y;
725   width = rect->width;
726   height = rect->height;
727   sig = dbus_message_new_signal(path, "org.freedesktop.atspi.Accessible", name);
728   if (!detail) detail = "";
729   if (sig)
730     {
731       dbus_message_iter_init_append (sig, &iter);
732       dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &detail);
733       dbus_message_iter_append_basic (&iter, DBUS_TYPE_INT32, &dummy);
734       dbus_message_iter_append_basic (&iter, DBUS_TYPE_INT32, &dummy);
735       if (!dbus_message_iter_open_container (&iter, DBUS_TYPE_VARIANT, "(iiii)", &iter_variant))
736         goto oom;
737       if (!dbus_message_iter_open_container (&iter_variant, DBUS_TYPE_STRUCT, NULL, &sub))
738         goto oom;
739       dbus_message_iter_append_basic (&sub, DBUS_TYPE_INT32, &x);
740       dbus_message_iter_append_basic (&sub, DBUS_TYPE_INT32, &y);
741       dbus_message_iter_append_basic (&sub, DBUS_TYPE_INT32, &width);
742       dbus_message_iter_append_basic (&sub, DBUS_TYPE_INT32, &height);
743       if (!dbus_message_iter_close_container (&iter_variant, &sub))
744         goto oom;
745       if (!dbus_message_iter_close_container (&iter, &iter_variant))
746         goto oom;
747     }
748   dbus_connection_send(this_app->droute.bus, sig, NULL);
749 oom:
750   g_free(path);
751   dbus_message_unref(sig);
752 }
753
754 static const char *PropertyChange = "object_property_change";
755
756 static gboolean
757 spi_atk_bridge_property_event_listener (GSignalInvocationHint *signal_hint,
758                                         guint n_param_values,
759                                         const GValue *param_values,
760                                         gpointer data)
761 {
762   AtkPropertyValues *values;
763   AtkObject *obj;
764   const gchar *prop_name;
765   const gchar *sp = NULL;
766   AtkObject *ao;
767   char *s_ao = NULL;
768   gint i;
769   const gchar *name = NULL;
770
771 #ifdef SPI_BRIDGE_DEBUG
772   GSignalQuery signal_query;
773   const gchar *signame;
774   const gchar *s, *s2;
775   
776   g_signal_query (signal_hint->signal_id, &signal_query);
777   signame = signal_query.signal_name;
778
779   s2 = g_type_name (G_OBJECT_TYPE (g_value_get_object (param_values + 0)));
780   s = atk_object_get_name (ATK_OBJECT (g_value_get_object (param_values + 0)));
781   values = (AtkPropertyValues*) g_value_get_pointer (param_values + 1);
782   DBG (2, g_message ("Received (property) signal %s:%s:%s from object %s (gail %s)\n",
783            g_type_name (signal_query.itype), signame, values->property_name, s, s2));
784   
785 #endif
786
787   obj = g_value_get_object (param_values + 0);
788   name = atk_object_get_name (obj);
789   values = (AtkPropertyValues*) g_value_get_pointer (param_values + 1);
790
791   prop_name = values->property_name;
792   if (strcmp (prop_name, "accessible-name") == 0)
793     {
794       spi_dbus_notify_change(obj, FALSE, &this_app->droute);
795     }
796   else if (strcmp (prop_name, "accessible-description") == 0)
797     {
798       spi_dbus_notify_change(obj, FALSE, &this_app->droute);
799     }
800   else if (strcmp (prop_name, "accessible-parent") == 0)
801     {
802       spi_dbus_notify_change(obj, FALSE, &this_app->droute);
803     }
804   else if (strcmp (prop_name, "accessible-table-summary") == 0)
805     {
806       ao = atk_table_get_summary (ATK_TABLE (obj));
807       s_ao = spi_dbus_get_path(ao);
808       emit(obj, PropertyChange, prop_name, 0, 0, DBUS_TYPE_OBJECT_PATH, s_ao);
809     }
810   else if (strcmp (prop_name, "accessible-table-column-header") == 0)
811     {
812       i = g_value_get_int (&(values->new_value));
813       ao = atk_table_get_column_header (ATK_TABLE (obj), i);
814       s_ao = spi_dbus_get_path(ao);
815       emit(obj, PropertyChange, prop_name, 0, 0, DBUS_TYPE_OBJECT_PATH, s_ao);
816     }
817   else if (strcmp (prop_name, "accessible-table-row-header") == 0)
818     {
819       i = g_value_get_int (&(values->new_value));
820       ao = atk_table_get_row_header (ATK_TABLE (obj), i);
821       s_ao = spi_dbus_get_path(ao);
822       emit(obj, PropertyChange, prop_name, 0, 0, DBUS_TYPE_OBJECT_PATH, s_ao);
823     }
824   else if (strcmp (prop_name, "accessible-table-row-description") == 0)
825     {
826       i = g_value_get_int (&(values->new_value));
827       sp = atk_table_get_row_description (ATK_TABLE (obj), i);
828       emit(obj, PropertyChange, prop_name, 0, 0, DBUS_TYPE_STRING, sp);
829     }
830   else if (strcmp (prop_name, "accessible-table-column-description") == 0)
831     {
832       i = g_value_get_int (&(values->new_value));
833       sp = atk_table_get_column_description (ATK_TABLE(obj), i);
834       emit(obj, PropertyChange, prop_name, 0, 0, DBUS_TYPE_STRING, sp);
835     }
836   else if (strcmp (prop_name, "accessible-table-caption-object") == 0)
837     {
838       ao = atk_table_get_caption (ATK_TABLE(obj));
839       sp = atk_object_get_name (ao);
840       emit(obj, PropertyChange, prop_name, 0, 0, DBUS_TYPE_STRING, sp);
841     }
842   else
843     {
844       emit(obj, PropertyChange, prop_name, 0, 0, DBUS_TYPE_INVALID, NULL);
845     }
846   if (s_ao) g_free(s_ao);
847   return TRUE;
848 }
849
850 static gboolean
851 spi_atk_bridge_state_event_listener (GSignalInvocationHint *signal_hint,
852                                      guint n_param_values,
853                                      const GValue *param_values,
854                                      gpointer data)
855 {
856   AtkObject *obj;
857   gchar *property_name;
858   unsigned long detail1;
859 #ifdef SPI_BRIDGE_DEBUG
860   GSignalQuery signal_query;
861   const gchar *name;
862   
863   g_signal_query (signal_hint->signal_id, &signal_query);
864   name = signal_query.signal_name;
865   fprintf (stderr, "Received (state) signal %s:%s\n",
866            g_type_name (signal_query.itype), name);
867 #endif
868
869   obj = ATK_OBJECT(g_value_get_object (param_values + 0));
870   property_name = g_strdup (g_value_get_string (param_values + 1));
871   /* Ignore defunct for now; we'll send a tree update to remove it when
872      the object goes away */
873   /* Also ignore state changes for objects not yet broadcast */
874   if ((property_name && !strcmp(property_name, "defunct")) ||
875       !spi_dbus_object_is_known(obj))
876   {
877     g_free(property_name);
878     return TRUE;
879   }
880   detail1 = (g_value_get_boolean (param_values + 2))
881     ? 1 : 0;
882   emit(obj, "object_state_changed", property_name, detail1, 0, DBUS_TYPE_INVALID, NULL);
883   g_free (property_name);
884   return TRUE;
885 }
886
887 static void
888 spi_init_keystroke_from_atk_key_event (Accessibility_DeviceEvent  *keystroke,
889                                        AtkKeyEventStruct          *event)
890 {
891 #ifdef SPI_DEBUG
892   if (event)
893     {
894       g_print ("event %c (%d)\n", (int) event->keyval, (int) event->keycode);
895     }
896   else
897 #endif
898   if (!event)
899     { /* this doesn't really need translating */
900       g_print (_("WARNING: NULL key event reported."));
901     }
902   
903   keystroke->id        = (dbus_int32_t) event->keyval;
904   keystroke->hw_code   = (dbus_int16_t) event->keycode;
905   keystroke->timestamp = (dbus_uint32_t) event->timestamp;
906   keystroke->modifiers = (dbus_uint16_t) (event->state & 0xFFFF);
907   if (event->string)
908     {
909       gunichar c;
910
911       keystroke->event_string = g_strdup (event->string);
912       c = g_utf8_get_char_validated (event->string, -1);
913       if (c > 0 && g_unichar_isprint (c))
914         keystroke->is_text = TRUE;
915       else
916         keystroke->is_text = FALSE;
917     }
918   else
919     {
920       keystroke->event_string = g_strdup ("");
921       keystroke->is_text = FALSE;
922     }
923   switch (event->type)
924     {
925     case (ATK_KEY_EVENT_PRESS):
926       keystroke->type = Accessibility_KEY_PRESSED_EVENT;
927       break;
928     case (ATK_KEY_EVENT_RELEASE):
929       keystroke->type = Accessibility_KEY_RELEASED_EVENT;
930       break;
931     default:
932       keystroke->type = 0;
933       break;
934     }
935 #if 0  
936   g_print ("key_event type %d; val=%d code=%d modifiers=%x name=%s is_text=%d, time=%lx\n",
937            (int) keystroke->type, (int) keystroke->id, (int) keystroke->hw_code,
938            (int) keystroke->modifiers,
939            keystroke->event_string, (int) keystroke->is_text, (unsigned long) keystroke->timestamp);
940 #endif
941 }
942
943 static gboolean Accessibility_DeviceEventController_notifyListenersSync(const Accessibility_DeviceEvent *key_event)
944 {
945   DBusMessage *message = dbus_message_new_method_call(SPI_DBUS_NAME_REGISTRY, SPI_DBUS_PATH_REGISTRY, "org.freedesktop.atspi.DeviceEventController", "notifyListenersSync");
946   DBusError error;
947   dbus_bool_t consumed = FALSE;
948
949   dbus_error_init(&error);
950   if (spi_dbus_marshal_deviceEvent(message, key_event))
951   {
952     DBusMessage *reply = dbus_connection_send_with_reply_and_block(this_app->droute.bus, message, 1000, &error);
953     if (reply)
954     {
955       DBusError error;
956       dbus_error_init(&error);
957       dbus_message_get_args(reply, &error, DBUS_TYPE_BOOLEAN, &consumed, DBUS_TYPE_INVALID);
958       dbus_message_unref(reply);
959     }
960   }
961   dbus_message_unref(message);
962   return consumed;
963 }
964
965 static gint
966 spi_atk_bridge_key_listener (AtkKeyEventStruct *event, gpointer data)
967 {
968   gboolean             result;
969   Accessibility_DeviceEvent key_event;
970
971   spi_init_keystroke_from_atk_key_event (&key_event, event);
972
973   bridge_threads_leave ();
974   result = Accessibility_DeviceEventController_notifyListenersSync (&key_event);
975   bridge_threads_enter ();
976
977   if (key_event.event_string) g_free (key_event.event_string);
978
979   return result;
980 }
981
982 static gboolean
983 spi_atk_bridge_signal_listener (GSignalInvocationHint *signal_hint,
984                                 guint n_param_values,
985                                 const GValue *param_values,
986                                 gpointer data)
987 {
988   AtkObject *obj;
989   GSignalQuery signal_query;
990   const gchar *name;
991   const gchar *detail = NULL;
992   char *sp = NULL;
993   AtkObject *ao;
994   gint detail1 = 0, detail2 = 0;
995   char *s_ao = NULL;
996   gchar *sig_name;
997   char *p;
998 #ifdef SPI_BRIDGE_DEBUG
999   const gchar *s, *s2;
1000 #endif 
1001   
1002   g_signal_query (signal_hint->signal_id, &signal_query);
1003
1004   name = signal_query.signal_name;
1005   if (signal_hint->detail)
1006   {
1007     detail = g_quark_to_string (signal_hint->detail);
1008   }
1009   sig_name = g_strdup_printf("object_%s", name);
1010   while ((p = strchr(sig_name, '-')) != NULL) *p = '_';
1011
1012 #ifdef SPI_BRIDGE_DEBUG
1013   s2 = g_type_name (G_OBJECT_TYPE (g_value_get_object (param_values + 0)));
1014   s = atk_object_get_name (ATK_OBJECT (g_value_get_object (param_values + 0)));
1015   fprintf (stderr, "Received signal %s:%s detail: %s from object %s (gail %s)\n",
1016            g_type_name (signal_query.itype), name, 
1017            detail ? detail : "<NULL>", s ? s : "<NULL>" , s2);
1018 #endif
1019   
1020   obj = ATK_OBJECT(g_value_get_object (param_values + 0));
1021
1022   if (signal_query.signal_id == atk_signal_active_descendant_changed)
1023     {
1024       gpointer child = g_value_get_pointer (param_values + 1);
1025
1026       g_return_val_if_fail (ATK_IS_OBJECT (child), TRUE);
1027
1028       ao = ATK_OBJECT (child);
1029
1030       detail1 = atk_object_get_index_in_parent (ao);
1031       s_ao = spi_dbus_get_path(child);
1032       emit(obj, sig_name, detail, detail1, 0, DBUS_TYPE_OBJECT_PATH, s_ao);
1033       g_free(s_ao);
1034     }
1035   else if (signal_query.signal_id == atk_signal_link_selected)
1036     {
1037       if (G_VALUE_TYPE (param_values + 1) == G_TYPE_INT)
1038         detail1 = g_value_get_int (param_values + 1);
1039       emit(obj, sig_name, detail, detail1, 0, DBUS_TYPE_INVALID, NULL);
1040     }
1041   else if (signal_query.signal_id == atk_signal_bounds_changed)
1042     {
1043       AtkRectangle *atk_rect = NULL;
1044
1045       if (G_VALUE_HOLDS_BOXED (param_values + 1))
1046           atk_rect = g_value_get_boxed (param_values + 1);
1047       emit_rect(obj, sig_name, detail, atk_rect);
1048     }
1049   else if ((signal_query.signal_id == atk_signal_children_changed) && obj)
1050     {
1051       spi_dbus_notify_change(obj, FALSE, &this_app->droute);
1052     }
1053   else
1054     {
1055       if (n_param_values >= 2)
1056         {
1057           if (G_VALUE_TYPE (param_values + 1) == G_TYPE_INT)
1058             detail1 = g_value_get_int (param_values + 1);
1059           if (n_param_values >= 3)
1060             {
1061               if (G_VALUE_TYPE (param_values + 2) == G_TYPE_INT)
1062                 detail2 = g_value_get_int (param_values + 2);
1063             }
1064         }
1065
1066       if (signal_query.signal_id == atk_signal_text_changed)
1067         {
1068           sp = atk_text_get_text (ATK_TEXT (obj),
1069                                   detail1,
1070                                   detail1+detail2);
1071           emit(obj, sig_name, detail, detail1, detail2, DBUS_TYPE_STRING, sp);
1072         }
1073       else if (signal_query.signal_id == atk_signal_text_selection_changed)
1074         {
1075           /* Return NULL as the selected string */
1076           emit(obj, sig_name, detail, detail1, detail2, DBUS_TYPE_STRING, "");
1077         }
1078       else
1079         {
1080           emit(obj, sig_name, detail, 0, 0, DBUS_TYPE_INVALID, NULL);
1081         }
1082     }
1083
1084   if (sp) 
1085     g_free (sp);
1086
1087   if (s_ao)
1088      g_free (s_ao);
1089   g_free(sig_name);
1090
1091   return TRUE;
1092 }
1093
1094 static gboolean
1095 spi_atk_bridge_window_event_listener (GSignalInvocationHint *signal_hint,
1096                                       guint n_param_values,
1097                                       const GValue *param_values,
1098                                       gpointer data)
1099 {
1100   AtkObject *obj;
1101   GSignalQuery signal_query;
1102   const gchar *name, *s;
1103 #ifdef SPI_BRIDGE_DEBUG
1104   const gchar *s2;
1105 #endif
1106   
1107   g_signal_query (signal_hint->signal_id, &signal_query);
1108
1109   name = signal_query.signal_name;
1110   gchar *sig_name;
1111
1112 #ifdef SPI_BRIDGE_DEBUG
1113   s2 = g_type_name (G_OBJECT_TYPE (g_value_get_object (param_values + 0)));
1114   s = atk_object_get_name (ATK_OBJECT (g_value_get_object (param_values + 0)));
1115   fprintf (stderr, "Received signal %s:%s from object %s (gail %s)\n",
1116            g_type_name (signal_query.itype), name, s ? s : "<NULL>" , s2);
1117 #endif
1118   
1119   obj = ATK_OBJECT(g_value_get_object (param_values + 0));
1120
1121   s = atk_object_get_name (obj);
1122   sig_name = g_strdup_printf("window_%s", name);
1123   emit(obj, sig_name, NULL, 0, 0, DBUS_TYPE_STRING, s);
1124   g_free(sig_name);
1125
1126   return TRUE;
1127 }
1128
1129 static gboolean
1130 spi_atk_bridge_document_event_listener (GSignalInvocationHint *signal_hint,
1131                                       guint n_param_values,
1132                                       const GValue *param_values,
1133                                       gpointer data)
1134 {
1135   AtkObject *obj;
1136   GSignalQuery signal_query;
1137   const gchar *name, *s;
1138   gchar *sig_name;
1139 #ifdef SPI_BRIDGE_DEBUG
1140   const gchar *s2;
1141 #endif
1142
1143   g_signal_query (signal_hint->signal_id, &signal_query);
1144
1145   name = signal_query.signal_name;
1146
1147 #ifdef SPI_BRIDGE_DEBUG
1148   s2 = g_type_name (G_OBJECT_TYPE (g_value_get_object (param_values + 0)));
1149   s = atk_object_get_name (ATK_OBJECT (g_value_get_object (param_values + 0)));
1150   fprintf (stderr, "Received signal %s:%s from object %s (gail %s)\n",
1151            g_type_name (signal_query.itype), name, s ? s : "<NULL>" , s2);
1152 #endif
1153
1154   obj = ATK_OBJECT(g_value_get_object (param_values + 0));
1155
1156   s = atk_object_get_name (obj);
1157   sig_name = g_strdup_printf("document_%s", name);
1158   emit(obj, sig_name, NULL, 0, 0, DBUS_TYPE_STRING, s);
1159   g_free(sig_name);
1160   return TRUE;
1161 }
1162
1163 static void
1164 spi_atk_tidy_windows (void)
1165 {
1166   AtkObject *root;
1167   gint n_children;
1168   gint i;
1169
1170   root = atk_get_root ();
1171   n_children = atk_object_get_n_accessible_children (root);
1172   for (i = 0; i < n_children; i++)
1173     {
1174       AtkObject *child;
1175       AtkStateSet *stateset;
1176       const gchar *name;
1177      
1178       child = atk_object_ref_accessible_child (root, i);
1179       stateset = atk_object_ref_state_set (child);
1180       
1181       name = atk_object_get_name (child);
1182       if (atk_state_set_contains_state (stateset, ATK_STATE_ACTIVE))
1183         {
1184           emit(child, "window:deactivate", NULL, 0, 0, DBUS_TYPE_STRING, name);
1185         }
1186       g_object_unref (stateset);
1187
1188       emit(child, "window:destroy", NULL, 0, 0, DBUS_TYPE_STRING, name);
1189       g_object_unref (child);
1190     }
1191 }
1192
1193 static void
1194 reinit_register_vars (void)
1195 {
1196   registry = NULL;
1197   device_event_controller = NULL;
1198   this_app = NULL;
1199 }