Remove debug printf
[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   DBusMessage *message, *reply;
377   DBusError error;
378
379   bridge_threads_leave ();
380   message = dbus_message_new_method_call (SPI_DBUS_NAME_REGISTRY, SPI_DBUS_PATH_REGISTRY, SPI_DBUS_INTERFACE_REGISTRY, "registerApplication");
381   dbus_error_init (&error);
382   reply = dbus_connection_send_with_reply_and_block(this_app->droute.bus, message, 1000, &error);
383   if (error.message) g_warning (error.message);
384   if (reply) dbus_message_unref (reply);
385   if (message) dbus_message_unref (message);
386   bridge_threads_enter ();
387 }
388
389 /* 
390  * Returns a 'canonicalized' value for DISPLAY,
391  * with the screen number stripped off if present.
392  */
393 static const gchar*
394 spi_display_name (void)
395 {
396     static const char *canonical_display_name = NULL;
397     if (!canonical_display_name)
398       {
399         const gchar *display_env = g_getenv ("AT_SPI_DISPLAY");
400         if (!display_env)
401           {
402             display_env = g_getenv ("DISPLAY");
403             if (!display_env || !display_env[0]) 
404                 canonical_display_name = ":0";
405             else
406               {
407                 gchar *display_p, *screen_p;
408                 canonical_display_name = g_strdup (display_env);
409                 display_p = strrchr (canonical_display_name, ':');
410                 screen_p = strrchr (canonical_display_name, '.');
411                 if (screen_p && display_p && (screen_p > display_p))
412                   {
413                     *screen_p = '\0';
414                   }
415               }
416           }
417         else
418           {
419             canonical_display_name = display_env;
420           }
421       }
422     return canonical_display_name;
423 }
424
425 static     Display *bridge_display = NULL;
426
427 static gchar *
428 spi_atk_bridge_get_registry_ior (void)
429 {
430      
431      Atom AT_SPI_IOR;
432      Atom actual_type;
433      int actual_format;
434      unsigned char *data = NULL;  
435      unsigned long nitems;
436      unsigned long leftover;
437      if (!bridge_display) 
438        bridge_display = XOpenDisplay (spi_display_name ());
439
440      AT_SPI_IOR = XInternAtom (bridge_display, "AT_SPI_IOR", False); 
441      XGetWindowProperty(bridge_display, 
442                         XDefaultRootWindow (bridge_display),
443                         AT_SPI_IOR, 0L, 
444                         (long)BUFSIZ, False, 
445                         (Atom) 31, &actual_type, &actual_format,
446                         &nitems, &leftover, &data);
447      if (data == NULL)
448           g_warning (_("AT_SPI_REGISTRY was not started at session startup."));
449      
450      return (gchar *) data;
451      
452 }
453
454
455 static const char *
456 spi_atk_bridge_get_registry (void)
457 {
458   // TODO: check for registry dying, as the old code attempted to do
459   return "org.freedesktop.atspi.registry";
460 }
461
462 static const char *
463 spi_atk_bridge_get_dec (void)
464 {
465   return "/dec";
466 }
467
468 int
469 gtk_module_init (gint *argc, gchar **argv[])
470 {
471         //printf("Pointer to argc %x %x\n", (short) ((argc && 0xffff0000) >> 16), (short) (argc && 0xffff));
472         return atk_bridge_init (argc, argv);
473 }
474
475 static void
476 add_signal_listener (const char *signal_name)
477 {
478   guint id;
479
480   id = atk_add_global_event_listener (
481     spi_atk_bridge_signal_listener, signal_name);
482
483   g_array_append_val (listener_ids, id);
484 }
485
486 static void
487 spi_atk_register_event_listeners (void)
488 {
489   /*
490    * kludge to make sure the Atk interface types are registered, otherwise
491    * the AtkText signal handlers below won't get registered
492    */
493   guint      id;
494   GObject   *ao = g_object_new (ATK_TYPE_OBJECT, NULL);
495   AtkObject *bo = atk_no_op_object_new (ao);
496
497
498   if (atk_listeners_registered) 
499     {
500       g_object_unref (G_OBJECT (bo));
501       g_object_unref (ao);
502       return;
503     }
504
505   atk_listeners_registered = TRUE;
506
507   /* Register for focus event notifications, and register app with central registry  */
508
509   listener_ids = g_array_sized_new (FALSE, TRUE, sizeof (guint), 16);
510
511   atk_bridge_focus_tracker_id = atk_add_focus_tracker (spi_atk_bridge_focus_tracker);
512
513   id = atk_add_global_event_listener (spi_atk_bridge_property_event_listener,
514                                       "Gtk:AtkObject:property-change");
515   g_array_append_val (listener_ids, id);
516   id = atk_add_global_event_listener (spi_atk_bridge_window_event_listener,
517                                       "window:create");
518   g_array_append_val (listener_ids, id);
519   id = atk_add_global_event_listener (spi_atk_bridge_window_event_listener,
520                                       "window:destroy");
521   g_array_append_val (listener_ids, id);
522   id = atk_add_global_event_listener (spi_atk_bridge_window_event_listener,
523                                       "window:minimize");
524   g_array_append_val (listener_ids, id);
525   id = atk_add_global_event_listener (spi_atk_bridge_window_event_listener,
526                                       "window:maximize");
527   g_array_append_val (listener_ids, id);
528   id = atk_add_global_event_listener (spi_atk_bridge_window_event_listener,
529                                       "window:restore");
530   g_array_append_val (listener_ids, id);
531   id = atk_add_global_event_listener (spi_atk_bridge_window_event_listener,
532                                       "window:activate");
533   g_array_append_val (listener_ids, id);
534   id = atk_add_global_event_listener (spi_atk_bridge_window_event_listener,
535                                       "window:deactivate");
536   g_array_append_val (listener_ids, id);
537   id = atk_add_global_event_listener (spi_atk_bridge_document_event_listener,
538                                       "Gtk:AtkDocument:load-complete");
539   g_array_append_val (listener_ids, id);
540   id = atk_add_global_event_listener (spi_atk_bridge_document_event_listener,
541                                       "Gtk:AtkDocument:reload");
542   g_array_append_val (listener_ids, id);
543   id = atk_add_global_event_listener (spi_atk_bridge_document_event_listener,
544                                       "Gtk:AtkDocument:load-stopped");
545   g_array_append_val (listener_ids, id);
546   id = atk_add_global_event_listener (spi_atk_bridge_state_event_listener,
547                                       "Gtk:AtkObject:state-change");
548   g_array_append_val (listener_ids, id);
549
550   add_signal_listener ("Gtk:AtkObject:children-changed");
551   add_signal_listener ("Gtk:AtkObject:visible-data-changed");
552   add_signal_listener ("Gtk:AtkObject:active-descendant-changed");
553   add_signal_listener ("Gtk:AtkComponent:bounds-changed");
554   add_signal_listener ("Gtk:AtkSelection:selection-changed");
555   add_signal_listener ("Gtk:AtkText:text-selection-changed");
556   add_signal_listener ("Gtk:AtkText:text-changed");
557   add_signal_listener ("Gtk:AtkText:text-caret-moved");
558   add_signal_listener ("Gtk:AtkTable:row-inserted");
559   add_signal_listener ("Gtk:AtkTable:row-reordered");
560   add_signal_listener ("Gtk:AtkTable:row-deleted");
561   add_signal_listener ("Gtk:AtkTable:column-inserted");
562   add_signal_listener ("Gtk:AtkTable:column-reordered");
563   add_signal_listener ("Gtk:AtkTable:column-deleted");
564   add_signal_listener ("Gtk:AtkTable:model-changed");
565   add_signal_listener ("Gtk:AtkHypertext:link-selected");
566 /*
567  * May add the following listeners to implement preemptive key listening for GTK+
568  *
569  * atk_add_global_event_listener (spi_atk_bridge_widgetkey_listener, "Gtk:GtkWidget:key-press-event");
570  * atk_add_global_event_listener (spi_atk_bridge_widgetkey_listener, "Gtk:GtkWidget:key-release-event");
571  */
572   atk_bridge_key_event_listener_id = atk_add_key_event_listener (
573     spi_atk_bridge_key_listener, NULL);
574   
575   g_object_unref (G_OBJECT (bo));
576   g_object_unref (ao);
577 }
578
579 static void
580 deregister_application (SpiAppData *app)
581 {
582   const char *registry = spi_atk_bridge_get_registry ();
583   bridge_threads_leave ();
584   // todo: deregister
585   bridge_threads_enter ();
586 }
587
588 static void
589 spi_atk_bridge_exit_func (void)
590 {
591   SpiAppData *app = (SpiAppData *) this_app;
592
593   DBG (1, g_message ("exiting bridge\n"));
594
595   if (!app)
596     {
597       return;
598     }
599   if (atk_bridge_pid != getpid ())
600     {
601       _exit (0);
602     }
603
604   during_init_shutdown = TRUE;
605   exiting = TRUE;
606   /*
607    * Check whether we still have windows which have not been deleted.
608    */
609   spi_atk_tidy_windows ();
610   /*
611    *  FIXME: this may be incorrect for apps that do their own bonobo
612    *  shutdown, until we can explicitly shutdown to get the ordering
613    *  right.
614    */
615   if (!registry_died)
616     deregister_application (this_app);
617   this_app = NULL;
618   DBG (1, g_message ("bridge exit func complete.\n"));
619
620   if (g_getenv ("AT_BRIDGE_SHUTDOWN"))
621     {
622     }
623   if (bridge_display)
624     XCloseDisplay (bridge_display);
625 }
626
627 void
628 gnome_accessibility_module_init (void)
629 {
630   atk_bridge_init (0, NULL);
631
632   if (g_getenv ("AT_BRIDGE_SHUTDOWN"))
633     {
634         g_print("Atk Accessibility bridge initialized\n");
635     }
636 }
637
638 void
639 gnome_accessibility_module_shutdown (void)
640 {
641   int     i;
642   GArray *ids = listener_ids;
643   
644   if (!atk_bridge_initialized)
645     {
646       return;
647     }
648   during_init_shutdown = TRUE;
649   atk_bridge_initialized = FALSE;
650
651   if (g_getenv ("AT_BRIDGE_SHUTDOWN"))
652     {
653         g_print("Atk Accessibility bridge shutdown\n");
654     }
655
656   listener_ids = NULL;
657   if (atk_bridge_focus_tracker_id)
658         atk_remove_focus_tracker (atk_bridge_focus_tracker_id);
659   
660   for (i = 0; ids && i < ids->len; i++)
661     {
662           atk_remove_global_event_listener (g_array_index (ids, guint, i));
663     }
664   
665   if (atk_bridge_key_event_listener_id)
666           atk_remove_key_event_listener (atk_bridge_key_event_listener_id);
667
668   deregister_application (this_app);
669   this_app = NULL;
670
671   misc = NULL;
672 }
673
674 static void emit(AtkObject *object, const char *name, const char *detail, dbus_int32_t detail1, dbus_int32_t detail2, int type, const void *val)
675 {
676   DBusMessage *sig;
677   char *path = spi_dbus_get_path(object);
678   DBusMessageIter iter, sub;
679   const char *type_as_string = NULL;
680   dbus_int32_t dummy = 0;
681
682   spi_dbus_update_cache(&this_app->droute);
683   if (type == DBUS_TYPE_OBJECT_PATH)
684   {
685     type_as_string = "o";
686     if (!val) val = "";
687   }
688   else if (type == DBUS_TYPE_STRING) type_as_string = "s";
689   else if (type == DBUS_TYPE_INT32) type_as_string = "i";
690   else if (type == DBUS_TYPE_UINT32) type_as_string = "u";
691   else if (type == DBUS_TYPE_INVALID)
692   {
693     type = DBUS_TYPE_UINT32;
694     type_as_string = "u";
695     if (!val) val = &dummy;
696   }
697   else
698   {
699     g_warning("Unknown type %d in property change signal", type);
700   }
701   sig = dbus_message_new_signal(path, SPI_DBUS_INTERFACE_ACCESSIBLE, name);
702   dbus_message_iter_init_append(sig, &iter);
703   if (!detail) detail = "";
704   dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &detail);
705   dbus_message_iter_append_basic(&iter, DBUS_TYPE_INT32, &detail1);
706   dbus_message_iter_append_basic(&iter, DBUS_TYPE_INT32, &detail2);
707   dbus_message_iter_open_container(&iter, DBUS_TYPE_VARIANT, type_as_string, &sub);
708   dbus_message_iter_append_basic(&sub, type, &val);
709   dbus_message_iter_close_container(&iter, &sub);
710   dbus_connection_send(this_app->droute.bus, sig, NULL);
711   g_free(path);
712   dbus_message_unref(sig);
713 }
714
715 static void
716 spi_atk_bridge_focus_tracker (AtkObject *object)
717 {
718   emit(object, "focus", NULL, 0, 0, DBUS_TYPE_INVALID, NULL);
719 }
720
721 static void emit_rect(AtkObject *object, const char *name, const char *detail, AtkRectangle *rect)
722 {
723   DBusMessage *sig;
724   char *path = spi_dbus_get_path(object);
725   DBusMessageIter iter, iter_variant, sub;
726   dbus_uint32_t x, y, width, height;
727   dbus_int32_t dummy = 0;
728
729   spi_dbus_update_cache(&this_app->droute);
730   x = rect->x;
731   y = rect->y;
732   width = rect->width;
733   height = rect->height;
734   sig = dbus_message_new_signal(path, SPI_DBUS_INTERFACE_ACCESSIBLE, name);
735   if (!detail) detail = "";
736   if (sig)
737     {
738       dbus_message_iter_init_append (sig, &iter);
739       dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &detail);
740       dbus_message_iter_append_basic (&iter, DBUS_TYPE_INT32, &dummy);
741       dbus_message_iter_append_basic (&iter, DBUS_TYPE_INT32, &dummy);
742       if (!dbus_message_iter_open_container (&iter, DBUS_TYPE_VARIANT, "(iiii)", &iter_variant))
743         goto oom;
744       if (!dbus_message_iter_open_container (&iter_variant, DBUS_TYPE_STRUCT, NULL, &sub))
745         goto oom;
746       dbus_message_iter_append_basic (&sub, DBUS_TYPE_INT32, &x);
747       dbus_message_iter_append_basic (&sub, DBUS_TYPE_INT32, &y);
748       dbus_message_iter_append_basic (&sub, DBUS_TYPE_INT32, &width);
749       dbus_message_iter_append_basic (&sub, DBUS_TYPE_INT32, &height);
750       if (!dbus_message_iter_close_container (&iter_variant, &sub))
751         goto oom;
752       if (!dbus_message_iter_close_container (&iter, &iter_variant))
753         goto oom;
754     }
755   dbus_connection_send(this_app->droute.bus, sig, NULL);
756 oom:
757   g_free(path);
758   dbus_message_unref(sig);
759 }
760
761 static const char *PropertyChange = "object_property_change";
762
763 static gboolean
764 spi_atk_bridge_property_event_listener (GSignalInvocationHint *signal_hint,
765                                         guint n_param_values,
766                                         const GValue *param_values,
767                                         gpointer data)
768 {
769   AtkPropertyValues *values;
770   AtkObject *obj;
771   const gchar *prop_name;
772   const gchar *sp = NULL;
773   AtkObject *ao;
774   char *s_ao = NULL;
775   gint i;
776   const gchar *name = NULL;
777
778 #ifdef SPI_BRIDGE_DEBUG
779   GSignalQuery signal_query;
780   const gchar *signame;
781   const gchar *s, *s2;
782   
783   g_signal_query (signal_hint->signal_id, &signal_query);
784   signame = signal_query.signal_name;
785
786   s2 = g_type_name (G_OBJECT_TYPE (g_value_get_object (param_values + 0)));
787   s = atk_object_get_name (ATK_OBJECT (g_value_get_object (param_values + 0)));
788   values = (AtkPropertyValues*) g_value_get_pointer (param_values + 1);
789   DBG (2, g_message ("Received (property) signal %s:%s:%s from object %s (gail %s)\n",
790            g_type_name (signal_query.itype), signame, values->property_name, s, s2));
791   
792 #endif
793
794   obj = g_value_get_object (param_values + 0);
795   name = atk_object_get_name (obj);
796   values = (AtkPropertyValues*) g_value_get_pointer (param_values + 1);
797
798   prop_name = values->property_name;
799   if (strcmp (prop_name, "accessible-name") == 0)
800     {
801       spi_dbus_notify_change(obj, FALSE, &this_app->droute);
802     }
803   else if (strcmp (prop_name, "accessible-description") == 0)
804     {
805       spi_dbus_notify_change(obj, FALSE, &this_app->droute);
806     }
807   else if (strcmp (prop_name, "accessible-parent") == 0)
808     {
809       spi_dbus_notify_change(obj, FALSE, &this_app->droute);
810     }
811   else if (strcmp (prop_name, "accessible-table-summary") == 0)
812     {
813       ao = atk_table_get_summary (ATK_TABLE (obj));
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-column-header") == 0)
818     {
819       i = g_value_get_int (&(values->new_value));
820       ao = atk_table_get_column_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-header") == 0)
825     {
826       i = g_value_get_int (&(values->new_value));
827       ao = atk_table_get_row_header (ATK_TABLE (obj), i);
828       s_ao = spi_dbus_get_path(ao);
829       emit(obj, PropertyChange, prop_name, 0, 0, DBUS_TYPE_OBJECT_PATH, s_ao);
830     }
831   else if (strcmp (prop_name, "accessible-table-row-description") == 0)
832     {
833       i = g_value_get_int (&(values->new_value));
834       sp = atk_table_get_row_description (ATK_TABLE (obj), i);
835       emit(obj, PropertyChange, prop_name, 0, 0, DBUS_TYPE_STRING, sp);
836     }
837   else if (strcmp (prop_name, "accessible-table-column-description") == 0)
838     {
839       i = g_value_get_int (&(values->new_value));
840       sp = atk_table_get_column_description (ATK_TABLE(obj), i);
841       emit(obj, PropertyChange, prop_name, 0, 0, DBUS_TYPE_STRING, sp);
842     }
843   else if (strcmp (prop_name, "accessible-table-caption-object") == 0)
844     {
845       ao = atk_table_get_caption (ATK_TABLE(obj));
846       sp = atk_object_get_name (ao);
847       emit(obj, PropertyChange, prop_name, 0, 0, DBUS_TYPE_STRING, sp);
848     }
849   else
850     {
851       emit(obj, PropertyChange, prop_name, 0, 0, DBUS_TYPE_INVALID, NULL);
852     }
853   if (s_ao) g_free(s_ao);
854   return TRUE;
855 }
856
857 static gboolean
858 spi_atk_bridge_state_event_listener (GSignalInvocationHint *signal_hint,
859                                      guint n_param_values,
860                                      const GValue *param_values,
861                                      gpointer data)
862 {
863   AtkObject *obj;
864   gchar *property_name;
865   unsigned long detail1;
866 #ifdef SPI_BRIDGE_DEBUG
867   GSignalQuery signal_query;
868   const gchar *name;
869   
870   g_signal_query (signal_hint->signal_id, &signal_query);
871   name = signal_query.signal_name;
872   fprintf (stderr, "Received (state) signal %s:%s\n",
873            g_type_name (signal_query.itype), name);
874 #endif
875
876   obj = ATK_OBJECT(g_value_get_object (param_values + 0));
877   property_name = g_strdup (g_value_get_string (param_values + 1));
878   /* Ignore defunct for now; we'll send a tree update to remove it when
879      the object goes away */
880   /* Also ignore state changes for objects not yet broadcast */
881   if ((property_name && !strcmp(property_name, "defunct")) ||
882       !spi_dbus_object_is_known(obj))
883   {
884     g_free(property_name);
885     return TRUE;
886   }
887   detail1 = (g_value_get_boolean (param_values + 2))
888     ? 1 : 0;
889   emit(obj, "object_state_changed", property_name, detail1, 0, DBUS_TYPE_INVALID, NULL);
890   g_free (property_name);
891   return TRUE;
892 }
893
894 static void
895 spi_init_keystroke_from_atk_key_event (Accessibility_DeviceEvent  *keystroke,
896                                        AtkKeyEventStruct          *event)
897 {
898 #ifdef SPI_DEBUG
899   if (event)
900     {
901       g_print ("event %c (%d)\n", (int) event->keyval, (int) event->keycode);
902     }
903   else
904 #endif
905   if (!event)
906     { /* this doesn't really need translating */
907       g_print (_("WARNING: NULL key event reported."));
908     }
909   
910   keystroke->id        = (dbus_int32_t) event->keyval;
911   keystroke->hw_code   = (dbus_int16_t) event->keycode;
912   keystroke->timestamp = (dbus_uint32_t) event->timestamp;
913   keystroke->modifiers = (dbus_uint16_t) (event->state & 0xFFFF);
914   if (event->string)
915     {
916       gunichar c;
917
918       keystroke->event_string = g_strdup (event->string);
919       c = g_utf8_get_char_validated (event->string, -1);
920       if (c > 0 && g_unichar_isprint (c))
921         keystroke->is_text = TRUE;
922       else
923         keystroke->is_text = FALSE;
924     }
925   else
926     {
927       keystroke->event_string = g_strdup ("");
928       keystroke->is_text = FALSE;
929     }
930   switch (event->type)
931     {
932     case (ATK_KEY_EVENT_PRESS):
933       keystroke->type = Accessibility_KEY_PRESSED_EVENT;
934       break;
935     case (ATK_KEY_EVENT_RELEASE):
936       keystroke->type = Accessibility_KEY_RELEASED_EVENT;
937       break;
938     default:
939       keystroke->type = 0;
940       break;
941     }
942 #if 0  
943   g_print ("key_event type %d; val=%d code=%d modifiers=%x name=%s is_text=%d, time=%lx\n",
944            (int) keystroke->type, (int) keystroke->id, (int) keystroke->hw_code,
945            (int) keystroke->modifiers,
946            keystroke->event_string, (int) keystroke->is_text, (unsigned long) keystroke->timestamp);
947 #endif
948 }
949
950 static gboolean Accessibility_DeviceEventController_notifyListenersSync(const Accessibility_DeviceEvent *key_event)
951 {
952   DBusMessage *message = dbus_message_new_method_call(SPI_DBUS_NAME_REGISTRY, SPI_DBUS_PATH_REGISTRY, SPI_DBUS_INTERFACE_DEC, "notifyListenersSync");
953   DBusError error;
954   dbus_bool_t consumed = FALSE;
955
956   dbus_error_init(&error);
957   if (spi_dbus_marshal_deviceEvent(message, key_event))
958   {
959     DBusMessage *reply = dbus_connection_send_with_reply_and_block(this_app->droute.bus, message, 1000, &error);
960     if (reply)
961     {
962       DBusError error;
963       dbus_error_init(&error);
964       dbus_message_get_args(reply, &error, DBUS_TYPE_BOOLEAN, &consumed, DBUS_TYPE_INVALID);
965       dbus_message_unref(reply);
966     }
967   }
968   dbus_message_unref(message);
969   return consumed;
970 }
971
972 static gint
973 spi_atk_bridge_key_listener (AtkKeyEventStruct *event, gpointer data)
974 {
975   gboolean             result;
976   Accessibility_DeviceEvent key_event;
977
978   spi_init_keystroke_from_atk_key_event (&key_event, event);
979
980   bridge_threads_leave ();
981   result = Accessibility_DeviceEventController_notifyListenersSync (&key_event);
982   bridge_threads_enter ();
983
984   if (key_event.event_string) g_free (key_event.event_string);
985
986   return result;
987 }
988
989 static gboolean
990 spi_atk_bridge_signal_listener (GSignalInvocationHint *signal_hint,
991                                 guint n_param_values,
992                                 const GValue *param_values,
993                                 gpointer data)
994 {
995   AtkObject *obj;
996   GSignalQuery signal_query;
997   const gchar *name;
998   const gchar *detail = NULL;
999   char *sp = NULL;
1000   AtkObject *ao;
1001   gint detail1 = 0, detail2 = 0;
1002   char *s_ao = NULL;
1003   gchar *sig_name;
1004   char *p;
1005 #ifdef SPI_BRIDGE_DEBUG
1006   const gchar *s, *s2;
1007 #endif 
1008   
1009   g_signal_query (signal_hint->signal_id, &signal_query);
1010
1011   name = signal_query.signal_name;
1012   if (signal_hint->detail)
1013   {
1014     detail = g_quark_to_string (signal_hint->detail);
1015   }
1016   sig_name = g_strdup_printf("object_%s", name);
1017   while ((p = strchr(sig_name, '-')) != NULL) *p = '_';
1018
1019 #ifdef SPI_BRIDGE_DEBUG
1020   s2 = g_type_name (G_OBJECT_TYPE (g_value_get_object (param_values + 0)));
1021   s = atk_object_get_name (ATK_OBJECT (g_value_get_object (param_values + 0)));
1022   fprintf (stderr, "Received signal %s:%s detail: %s from object %s (gail %s)\n",
1023            g_type_name (signal_query.itype), name, 
1024            detail ? detail : "<NULL>", s ? s : "<NULL>" , s2);
1025 #endif
1026   
1027   obj = ATK_OBJECT(g_value_get_object (param_values + 0));
1028
1029   if (signal_query.signal_id == atk_signal_active_descendant_changed)
1030     {
1031       gpointer child = g_value_get_pointer (param_values + 1);
1032
1033       g_return_val_if_fail (ATK_IS_OBJECT (child), TRUE);
1034
1035       ao = ATK_OBJECT (child);
1036
1037       detail1 = atk_object_get_index_in_parent (ao);
1038       s_ao = spi_dbus_get_path(child);
1039       emit(obj, sig_name, detail, detail1, 0, DBUS_TYPE_OBJECT_PATH, s_ao);
1040       g_free(s_ao);
1041     }
1042   else if (signal_query.signal_id == atk_signal_link_selected)
1043     {
1044       if (G_VALUE_TYPE (param_values + 1) == G_TYPE_INT)
1045         detail1 = g_value_get_int (param_values + 1);
1046       emit(obj, sig_name, detail, detail1, 0, DBUS_TYPE_INVALID, NULL);
1047     }
1048   else if (signal_query.signal_id == atk_signal_bounds_changed)
1049     {
1050       AtkRectangle *atk_rect = NULL;
1051
1052       if (G_VALUE_HOLDS_BOXED (param_values + 1))
1053           atk_rect = g_value_get_boxed (param_values + 1);
1054       emit_rect(obj, sig_name, detail, atk_rect);
1055     }
1056   else if ((signal_query.signal_id == atk_signal_children_changed) && obj)
1057     {
1058       spi_dbus_notify_change(obj, FALSE, &this_app->droute);
1059     }
1060   else
1061     {
1062       if (n_param_values >= 2)
1063         {
1064           if (G_VALUE_TYPE (param_values + 1) == G_TYPE_INT)
1065             detail1 = g_value_get_int (param_values + 1);
1066           if (n_param_values >= 3)
1067             {
1068               if (G_VALUE_TYPE (param_values + 2) == G_TYPE_INT)
1069                 detail2 = g_value_get_int (param_values + 2);
1070             }
1071         }
1072
1073       if (signal_query.signal_id == atk_signal_text_changed)
1074         {
1075           sp = atk_text_get_text (ATK_TEXT (obj),
1076                                   detail1,
1077                                   detail1+detail2);
1078           emit(obj, sig_name, detail, detail1, detail2, DBUS_TYPE_STRING, sp);
1079         }
1080       else if (signal_query.signal_id == atk_signal_text_selection_changed)
1081         {
1082           /* Return NULL as the selected string */
1083           emit(obj, sig_name, detail, detail1, detail2, DBUS_TYPE_STRING, "");
1084         }
1085       else
1086         {
1087           emit(obj, sig_name, detail, 0, 0, DBUS_TYPE_INVALID, NULL);
1088         }
1089     }
1090
1091   if (sp) 
1092     g_free (sp);
1093
1094   if (s_ao)
1095      g_free (s_ao);
1096   g_free(sig_name);
1097
1098   return TRUE;
1099 }
1100
1101 static gboolean
1102 spi_atk_bridge_window_event_listener (GSignalInvocationHint *signal_hint,
1103                                       guint n_param_values,
1104                                       const GValue *param_values,
1105                                       gpointer data)
1106 {
1107   AtkObject *obj;
1108   GSignalQuery signal_query;
1109   const gchar *name, *s;
1110 #ifdef SPI_BRIDGE_DEBUG
1111   const gchar *s2;
1112 #endif
1113   
1114   g_signal_query (signal_hint->signal_id, &signal_query);
1115
1116   name = signal_query.signal_name;
1117   gchar *sig_name;
1118
1119 #ifdef SPI_BRIDGE_DEBUG
1120   s2 = g_type_name (G_OBJECT_TYPE (g_value_get_object (param_values + 0)));
1121   s = atk_object_get_name (ATK_OBJECT (g_value_get_object (param_values + 0)));
1122   fprintf (stderr, "Received signal %s:%s from object %s (gail %s)\n",
1123            g_type_name (signal_query.itype), name, s ? s : "<NULL>" , s2);
1124 #endif
1125   
1126   obj = ATK_OBJECT(g_value_get_object (param_values + 0));
1127
1128   s = atk_object_get_name (obj);
1129   sig_name = g_strdup_printf("window_%s", name);
1130   emit(obj, sig_name, NULL, 0, 0, DBUS_TYPE_STRING, s);
1131   g_free(sig_name);
1132
1133   return TRUE;
1134 }
1135
1136 static gboolean
1137 spi_atk_bridge_document_event_listener (GSignalInvocationHint *signal_hint,
1138                                       guint n_param_values,
1139                                       const GValue *param_values,
1140                                       gpointer data)
1141 {
1142   AtkObject *obj;
1143   GSignalQuery signal_query;
1144   const gchar *name, *s;
1145   gchar *sig_name;
1146 #ifdef SPI_BRIDGE_DEBUG
1147   const gchar *s2;
1148 #endif
1149
1150   g_signal_query (signal_hint->signal_id, &signal_query);
1151
1152   name = signal_query.signal_name;
1153
1154 #ifdef SPI_BRIDGE_DEBUG
1155   s2 = g_type_name (G_OBJECT_TYPE (g_value_get_object (param_values + 0)));
1156   s = atk_object_get_name (ATK_OBJECT (g_value_get_object (param_values + 0)));
1157   fprintf (stderr, "Received signal %s:%s from object %s (gail %s)\n",
1158            g_type_name (signal_query.itype), name, s ? s : "<NULL>" , s2);
1159 #endif
1160
1161   obj = ATK_OBJECT(g_value_get_object (param_values + 0));
1162
1163   s = atk_object_get_name (obj);
1164   sig_name = g_strdup_printf("document_%s", name);
1165   emit(obj, sig_name, NULL, 0, 0, DBUS_TYPE_STRING, s);
1166   g_free(sig_name);
1167   return TRUE;
1168 }
1169
1170 static void
1171 spi_atk_tidy_windows (void)
1172 {
1173   AtkObject *root;
1174   gint n_children;
1175   gint i;
1176
1177   root = atk_get_root ();
1178   n_children = atk_object_get_n_accessible_children (root);
1179   for (i = 0; i < n_children; i++)
1180     {
1181       AtkObject *child;
1182       AtkStateSet *stateset;
1183       const gchar *name;
1184      
1185       child = atk_object_ref_accessible_child (root, i);
1186       stateset = atk_object_ref_state_set (child);
1187       
1188       name = atk_object_get_name (child);
1189       if (atk_state_set_contains_state (stateset, ATK_STATE_ACTIVE))
1190         {
1191           emit(child, "window:deactivate", NULL, 0, 0, DBUS_TYPE_STRING, name);
1192         }
1193       g_object_unref (stateset);
1194
1195       emit(child, "window:destroy", NULL, 0, 0, DBUS_TYPE_STRING, name);
1196       g_object_unref (child);
1197     }
1198 }
1199
1200 static void
1201 reinit_register_vars (void)
1202 {
1203   registry = NULL;
1204   device_event_controller = NULL;
1205   this_app = NULL;
1206 }