a3e565367cbc3a430398d764477d32709e1da3fe
[platform/core/uifw/at-spi2-atk.git] / atk-bridge / 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 Sun Microsystems Inc.
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <stdarg.h>
26 #include <libbonobo.h>
27 #include <orbit/orbit.h>
28 #include <atk/atk.h>
29 #include <atk/atkobject.h>
30 #include <atk/atknoopobject.h>
31 #include <libspi/Accessibility.h>
32 #include "accessible.h"
33 #include "application.h"
34
35 #include <bonobo-activation/bonobo-activation-register.h>
36
37 #undef SPI_BRIDGE_DEBUG
38
39 static CORBA_Environment ev;
40 static Accessibility_Registry registry;
41 static SpiApplication *this_app = NULL;
42
43 static void     spi_atk_bridge_exit_func               (void);
44 static void     spi_atk_register_event_listeners       (void);
45 static gboolean spi_atk_bridge_idle_init               (gpointer               user_data);
46 static void     spi_atk_bridge_focus_tracker           (AtkObject             *object);
47 static gboolean spi_atk_bridge_property_event_listener (GSignalInvocationHint *signal_hint,
48                                                         guint                  n_param_values,
49                                                         const GValue          *param_values,
50                                                         gpointer               data);
51 static gboolean spi_atk_bridge_signal_listener         (GSignalInvocationHint *signal_hint,
52                                                         guint                  n_param_values,
53                                                         const GValue          *param_values,
54                                                         gpointer               data);
55 static gint     spi_atk_bridge_key_listener            (AtkKeyEventStruct     *event,
56                                                         gpointer               data);
57
58 /* For automatic libgnome init */
59 extern void gnome_accessibility_module_init     (void);
60 extern void gnome_accessibility_module_shutdown (void);
61
62 static int     atk_bridge_initialized = FALSE;
63 static guint   atk_bridge_focus_tracker_id = 0;
64 static guint   atk_bridge_key_event_listener_id = 0;
65 static guint   idle_init_id = 0;
66 static GArray *listener_ids = NULL;
67
68 /*
69  *   These exported symbols are hooked by gnome-program
70  * to provide automatic module initialization and shutdown.
71  */
72 extern void gnome_accessibility_module_init     (void);
73 extern void gnome_accessibility_module_shutdown (void);
74
75 static int
76 atk_bridge_init (gint *argc, gchar **argv[])
77 {
78   CORBA_Environment ev;
79
80   if (atk_bridge_initialized)
81     {
82       return 0;
83     }
84   atk_bridge_initialized = TRUE;
85
86   if (!bonobo_init (argc, argv ? *argv : NULL))
87     {
88       g_error ("Could not initialize Bonobo");
89     }
90
91   /*
92    *   We only want to enable the bridge for top level
93    * applications, we detect bonobo components by seeing
94    * if they were activated with the intention of extracting
95    * an impl. by IID - very solid.
96    */
97   if (bonobo_activation_iid_get ())
98           return 0;
99
100   CORBA_exception_init(&ev);
101
102   registry = bonobo_activation_activate_from_id (
103           "OAFIID:Accessibility_Registry:proto0.1", 0, NULL, &ev);
104   
105   if (ev._major != CORBA_NO_EXCEPTION)
106     {
107       g_error ("Accessibility app error: exception during "
108                "registry activation from id: %s\n",
109                CORBA_exception_id (&ev));
110       CORBA_exception_free (&ev);
111     }
112
113   if (registry == CORBA_OBJECT_NIL)
114     {
115       g_error ("Could not locate registry");
116     }
117
118   bonobo_activate ();
119
120   /* Create the accessible application server object */
121
122   this_app = spi_application_new (atk_get_root ());
123
124   fprintf (stderr, "About to register application\n");
125
126   Accessibility_Registry_registerApplication (registry,
127                                               BONOBO_OBJREF (this_app),
128                                               &ev);
129
130   g_atexit (spi_atk_bridge_exit_func);
131
132   idle_init_id = g_idle_add (spi_atk_bridge_idle_init, NULL);
133
134   return 0;
135 }
136
137 int
138 gtk_module_init (gint *argc, gchar **argv[])
139 {
140         return atk_bridge_init (argc, argv);
141 }
142
143 static gboolean
144 spi_atk_bridge_idle_init (gpointer user_data)
145 {
146   idle_init_id = 0;
147
148   spi_atk_register_event_listeners ();
149
150   fprintf (stderr, "Application registered & listening\n");
151
152   return FALSE;
153 }
154
155 static void
156 add_signal_listener (const char *signal_name)
157 {
158   guint id;
159
160   id = atk_add_global_event_listener (
161     spi_atk_bridge_signal_listener, signal_name);
162
163   g_array_append_val (listener_ids, id);
164 }
165
166 static void
167 spi_atk_register_event_listeners (void)
168 {
169   /*
170    * kludge to make sure the Atk interface types are registered, otherwise
171    * the AtkText signal handlers below won't get registered
172    */
173   guint      id;
174   GObject   *ao = g_object_new (ATK_TYPE_OBJECT, NULL);
175   AtkObject *bo = atk_no_op_object_new (ao);
176   
177   /* Register for focus event notifications, and register app with central registry  */
178
179   listener_ids = g_array_sized_new (FALSE, TRUE, sizeof (guint), 16);
180
181   atk_bridge_focus_tracker_id = atk_add_focus_tracker (spi_atk_bridge_focus_tracker);
182
183   id = atk_add_global_event_listener (spi_atk_bridge_property_event_listener,
184                                       "Gtk:AtkObject:property-change");
185   g_array_append_val (listener_ids, id);
186
187   add_signal_listener ("Gtk:AtkObject:children-changed");
188   add_signal_listener ("Gtk:AtkObject:visible-data-changed");
189   add_signal_listener ("Gtk:AtkSelection:selection-changed");
190   add_signal_listener ("Gtk:AtkText:text-selection-changed");
191   add_signal_listener ("Gtk:AtkText:text-changed");
192   add_signal_listener ("Gtk:AtkText:text-caret-moved");
193   add_signal_listener ("Gtk:AtkTable:row-inserted");
194   add_signal_listener ("Gtk:AtkTable:row-reordered");
195   add_signal_listener ("Gtk:AtkTable:row-deleted");
196   add_signal_listener ("Gtk:AtkTable:column-inserted");
197   add_signal_listener ("Gtk:AtkTable:column-reordered");
198   add_signal_listener ("Gtk:AtkTable:column-deleted");
199   add_signal_listener ("Gtk:AtkTable:model-changed");
200 /*
201  * May add the following listeners to implement preemptive key listening for GTK+
202  *
203  * atk_add_global_event_listener (spi_atk_bridge_widgetkey_listener, "Gtk:GtkWidget:key-press-event");
204  * atk_add_global_event_listener (spi_atk_bridge_widgetkey_listener, "Gtk:GtkWidget:key-release-event");
205  */
206   atk_bridge_key_event_listener_id = atk_add_key_event_listener (
207     spi_atk_bridge_key_listener, NULL);
208   
209   g_object_unref (G_OBJECT (bo));
210   g_object_unref (ao);
211 }
212
213 static void
214 deregister_application (BonoboObject *app)
215 {
216   Accessibility_Registry_deregisterApplication (
217           registry, BONOBO_OBJREF (app), &ev);
218
219   registry = bonobo_object_release_unref (registry, &ev);
220   
221   app = bonobo_object_unref (app);
222 }
223
224 static void
225 spi_atk_bridge_exit_func (void)
226 {
227   BonoboObject *app = (BonoboObject *) this_app;
228
229   fprintf (stderr, "exiting bridge\n");
230
231   if (!app)
232     {
233       return;
234     }
235   this_app = NULL;
236
237   /*
238    *  FIXME: this may be incorrect for apps that do their own bonobo
239    *  shutdown, until we can explicitly shutdown to get the ordering
240    *  right.
241    */
242   if (!bonobo_is_initialized ())
243     {
244       fprintf (stderr, "Re-initializing bonobo\n");
245       g_assert (bonobo_init (0, NULL));
246       g_assert (bonobo_activate ());
247     }
248   
249   deregister_application (app);
250
251   fprintf (stderr, "bridge exit func complete.\n");
252
253   if (g_getenv ("AT_BRIDGE_SHUTDOWN"))
254     {
255       g_assert (!bonobo_debug_shutdown ());
256     }
257 }
258
259 void
260 gnome_accessibility_module_init (void)
261 {
262   atk_bridge_init (NULL, NULL);
263
264   g_print("Atk Accessibilty bridge initialized\n");
265 }
266
267 void
268 gnome_accessibility_module_shutdown (void)
269 {
270   BonoboObject *app = (BonoboObject *) this_app;
271
272   if (!atk_bridge_initialized)
273     {
274       return;
275     }
276   atk_bridge_initialized = FALSE;
277   this_app = NULL;
278
279   g_print("Atk Accessibilty bridge shutdown\n");
280
281   if (idle_init_id)
282     {
283       g_source_remove (idle_init_id);
284       idle_init_id = 0;
285     }
286   else
287     {
288       int     i;
289       GArray *ids = listener_ids;
290
291       listener_ids = NULL;
292       atk_remove_focus_tracker (atk_bridge_focus_tracker_id);
293       
294       for (i = 0; ids && i < ids->len; i++)
295         {
296           atk_remove_global_event_listener (g_array_index (ids, guint, i));
297         }
298
299       atk_remove_key_event_listener (atk_bridge_key_event_listener_id);
300     }
301
302   deregister_application (app);
303 }
304
305 static void
306 spi_atk_bridge_focus_tracker (AtkObject *object)
307 {
308   SpiAccessible *source;
309   Accessibility_Event e;
310
311   source = spi_accessible_new (object);
312
313   e.type = "focus:";
314   e.source = BONOBO_OBJREF (source);
315   e.detail1 = 0;
316   e.detail2 = 0;
317
318   Accessibility_Registry_notifyEvent (registry, &e, &ev);
319
320   CORBA_exception_free (&ev);
321 }
322
323 static void
324 spi_atk_emit_eventv (GObject      *gobject,
325                      unsigned long detail1,
326                      unsigned long detail2,
327                      const char   *format, ...)
328 {
329   va_list             args;
330   Accessibility_Event e;
331   SpiAccessible      *source;
332   AtkObject          *aobject;
333 #ifdef SPI_BRIDGE_DEBUG
334   CORBA_string s;
335 #endif
336   
337   va_start (args, format);
338   
339   if (ATK_IS_IMPLEMENTOR (gobject))
340     {
341       aobject = atk_implementor_ref_accessible (ATK_IMPLEMENTOR (gobject));
342       source  = spi_accessible_new (aobject);
343       g_object_unref (G_OBJECT (aobject));
344     }
345   else if (ATK_IS_OBJECT (gobject))
346     {
347       aobject = ATK_OBJECT (gobject);
348       source  = spi_accessible_new (aobject);
349     }
350   else
351     {
352       aobject = NULL;
353       source  = NULL;
354       g_error ("received property-change event from non-AtkImplementor");
355     }
356
357   if (source != NULL)
358     {
359       e.type = g_strdup_vprintf (format, args);
360       e.source = BONOBO_OBJREF (source);
361       e.detail1 = detail1;
362       e.detail2 = detail2;
363
364 #ifdef SPI_BRIDGE_DEBUG
365       s = Accessibility_Accessible__get_name (BONOBO_OBJREF (source), &ev);
366       g_warning ("Emitting event '%s' (%lu, %lu) on %s",
367                  e.type, e.detail1, e.detail2, s);
368       CORBA_free (s);
369 #endif
370
371       Accessibility_Registry_notifyEvent (registry, &e, &ev);
372
373       CORBA_exception_free (&ev);
374
375       g_free (e.type);
376     }
377
378   va_end (args);
379 }
380
381 static gboolean
382 spi_atk_bridge_property_event_listener (GSignalInvocationHint *signal_hint,
383                                         guint n_param_values,
384                                         const GValue *param_values,
385                                         gpointer data)
386 {
387   AtkPropertyValues *values;
388   GObject *gobject;
389
390 #ifdef SPI_BRIDGE_DEBUG
391   GSignalQuery signal_query;
392   const gchar *name;
393   gchar *s, *s2;
394   
395   g_signal_query (signal_hint->signal_id, &signal_query);
396   name = signal_query.signal_name;
397
398   s2 = g_type_name (G_OBJECT_TYPE (g_value_get_object (param_values + 0)));
399   s = atk_object_get_name (ATK_OBJECT (g_value_get_object (param_values + 0)));
400   fprintf (stderr, "Received (property) signal %s:%s from object %s (gail %s)\n",
401            g_type_name (signal_query.itype), name, s, s2);
402 #endif
403
404   gobject = g_value_get_object (param_values + 0);
405   values = (AtkPropertyValues*) g_value_get_pointer (param_values + 1);
406
407   spi_atk_emit_eventv (gobject, 0, 0, "object:property-change:%s", values->property_name);
408
409   return TRUE;
410 }
411
412 #if THIS_WILL_EVER_BE_USED
413 static gboolean
414 spi_atk_bridge_state_event_listener (GSignalInvocationHint *signal_hint,
415                                      guint n_param_values,
416                                      const GValue *param_values,
417                                      gpointer data)
418 {
419   GObject *gobject;
420   AtkPropertyValues *values;
421 #ifdef SPI_BRIDGE_DEBUG
422   GSignalQuery signal_query;
423   const gchar *name;
424   
425   g_signal_query (signal_hint->signal_id, &signal_query);
426   name = signal_query.signal_name;
427   fprintf (stderr, "Received (state) signal %s:%s\n",
428            g_type_name (signal_query.itype), name);
429 #endif
430
431   gobject = g_value_get_object (param_values + 0);
432   values = (AtkPropertyValues*) g_value_get_pointer (param_values + 1);
433
434   spi_atk_emit_eventv (gobject, 
435                        (unsigned long) values->old_value.data[0].v_ulong,
436                        (unsigned long) values->new_value.data[0].v_ulong,
437                        "object:%s:?", values->property_name);
438   
439   return TRUE;
440 }
441 #endif
442
443 static void
444 spi_init_keystroke_from_atk_key_event (Accessibility_DeviceEvent  *keystroke,
445                                        AtkKeyEventStruct          *event)
446 {
447 #ifdef SPI_DEBUG
448   if (event)
449     {
450       g_print ("event %c (%d)\n", (int) event->keyval, (int) event->keycode);
451     }
452   else
453 #endif
454   if (!event)
455     {
456       g_print ("WARNING: NULL key event!");
457     }
458   
459   keystroke->id        = (CORBA_long) event->keyval;
460   keystroke->hw_code   = (CORBA_short) event->keycode;
461   keystroke->timestamp = (CORBA_unsigned_long) event->timestamp;
462   keystroke->modifiers = (CORBA_unsigned_short) (event->state & 0xFFFF);
463   if (event->string)
464     {
465       keystroke->event_string = CORBA_string_dup (event->string);
466       keystroke->is_text = CORBA_TRUE;
467     }
468   else
469     {
470       keystroke->event_string = CORBA_string_dup ("");
471       keystroke->is_text = CORBA_FALSE;
472     }
473   switch (event->type)
474     {
475     case (ATK_KEY_EVENT_PRESS):
476       keystroke->type = Accessibility_KEY_PRESSED;
477       break;
478     case (ATK_KEY_EVENT_RELEASE):
479       keystroke->type = Accessibility_KEY_RELEASED;
480       break;
481     default:
482       keystroke->type = 0;
483       break;
484     }
485 #if 0  
486   g_print ("key_event type %d; val=%d code=%d modifiers=%x name=%s is_text=%d, time=%lx\n",
487            (int) keystroke->type, (int) keystroke->id, (int) keystroke->hw_code,
488            (int) keystroke->modifiers,
489            keystroke->event_string, (int) keystroke->is_text, (unsigned long) keystroke->timestamp);
490 #endif
491 }
492
493 static gint
494 spi_atk_bridge_key_listener (AtkKeyEventStruct *event, gpointer data)
495 {
496   CORBA_boolean             result;
497   Accessibility_DeviceEvent key_event;
498   Accessibility_DeviceEventController controller =
499     Accessibility_Registry_getDeviceEventController (registry, &ev);
500
501   if (BONOBO_EX (&ev))
502     {
503       g_warning ("failure: no deviceeventcontroller found\n");
504       CORBA_exception_free (&ev);
505       result = FALSE;
506     }
507   else
508     {
509
510       spi_init_keystroke_from_atk_key_event (&key_event, event);
511
512       result = Accessibility_DeviceEventController_notifyListenersSync (
513         controller, &key_event, &ev);
514
515       CORBA_exception_free (&ev);
516     }
517
518   return result;
519 }
520
521 static gboolean
522 spi_atk_bridge_signal_listener (GSignalInvocationHint *signal_hint,
523                                 guint n_param_values,
524                                 const GValue *param_values,
525                                 gpointer data)
526 {
527   GObject *gobject;
528   GSignalQuery signal_query;
529   const gchar *name;
530   gint detail1 = 0, detail2 = 0;
531 #ifdef SPI_BRIDGE_DEBUG
532   gchar *s, *s2;
533 #endif
534   
535   g_signal_query (signal_hint->signal_id, &signal_query);
536
537   name = signal_query.signal_name;
538
539 #ifdef SPI_BRIDGE_DEBUG
540   s2 = g_type_name (G_OBJECT_TYPE (g_value_get_object (param_values + 0)));
541   s = atk_object_get_name (ATK_OBJECT (g_value_get_object (param_values + 0)));
542   fprintf (stderr, "Received signal %s:%s from object %s (gail %s)\n",
543            g_type_name (signal_query.itype), name, s, s2);
544 #endif
545
546   gobject = g_value_get_object (param_values + 0);
547   if (G_VALUE_TYPE (param_values + 1) == G_TYPE_INT)
548     detail1 = g_value_get_int (param_values + 1);
549   if (G_VALUE_TYPE (param_values + 2) == G_TYPE_INT)
550     detail2 = g_value_get_int (param_values + 2);
551   
552   spi_atk_emit_eventv (gobject, detail1, detail2, "object:%s", name);
553
554   return TRUE;
555 }