2002-03-19 Michael Meeks <michael@ximian.com>
[platform/core/uifw/at-spi2-atk.git] / registryd / registry.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 /* registry.c: the main accessibility service registry implementation */
24
25 #undef SPI_LISTENER_DEBUG
26
27 #include <config.h>
28 #ifdef SPI_DEBUG
29 #  include <stdio.h>
30 #endif
31
32 #include <bonobo/bonobo-exception.h>
33 #include "../libspi/spi-private.h"
34 #include "registry.h"
35
36 /* Our parent GObject type  */
37 #define PARENT_TYPE SPI_LISTENER_TYPE
38
39 /* A pointer to our parent object class */
40 static SpiListenerClass *spi_registry_parent_class;
41
42 typedef enum {
43   ETYPE_FOCUS,
44   ETYPE_OBJECT,
45   ETYPE_PROPERTY,
46   ETYPE_WINDOW,
47   ETYPE_TOOLKIT,
48   ETYPE_KEYBOARD,
49   
50   ETYPE_LAST_DEFINED
51 } EventTypeCategory;
52
53 typedef struct {
54   char *event_name;
55   EventTypeCategory type_cat;
56   GQuark major;  /* from string segment[1] */
57   GQuark minor;  /* from string segment[1]+segment[2] */
58   GQuark detail; /* from string segment[3] (not concatenated) */
59 } EventTypeStruct;
60
61 typedef struct {
62   Accessibility_EventListener listener;
63   GQuark            event_type_quark;
64   EventTypeCategory event_type_cat;
65 } SpiListenerStruct;
66
67
68 SpiListenerStruct *
69 spi_listener_struct_new (Accessibility_EventListener listener, CORBA_Environment *ev)
70 {
71   SpiListenerStruct *retval = g_malloc (sizeof (SpiListenerStruct));
72   retval->listener = bonobo_object_dup_ref (listener, ev);
73   return retval;
74 }
75
76
77 void
78 spi_listener_struct_free (SpiListenerStruct *ls, CORBA_Environment *ev)
79 {
80   bonobo_object_release_unref (ls->listener, ev);
81   g_free (ls);
82 }
83
84
85 static void
86 desktop_add_application (SpiDesktop *desktop,
87                          guint index, gpointer data)
88 {
89   BonoboObject *registry = BONOBO_OBJECT (data);
90   Accessibility_Event e;
91   CORBA_Environment ev;
92   
93   e.type = g_strdup ("object:children-changed::add");
94   e.source = BONOBO_OBJREF (desktop);
95   e.detail1 = index;
96   e.detail2 = 0;
97   CORBA_exception_init (&ev);
98   Accessibility_Registry_notifyEvent (BONOBO_OBJREF (registry),
99                                       &e, &ev);
100   CORBA_exception_free (&ev);
101 }
102
103
104
105 static void
106 desktop_remove_application (SpiDesktop *desktop,
107                             guint index, gpointer data)
108 {
109   BonoboObject *registry = BONOBO_OBJECT (data);
110   Accessibility_Event e;
111   CORBA_Environment ev;
112   
113   e.type = g_strdup ("object:children-changed::remove");
114   e.source = BONOBO_OBJREF (desktop);
115   e.detail1 = index;
116   e.detail2 = 0;
117   CORBA_exception_init (&ev);
118   Accessibility_Registry_notifyEvent (BONOBO_OBJREF (registry),
119                                       &e, &ev);
120   CORBA_exception_free (&ev);
121 }
122
123
124
125 static void
126 spi_registry_object_finalize (GObject *object)
127 {
128   printf ("spi_registry_object_finalize called\n");
129
130   /* TODO: unref deviceeventcontroller, which disconnects key listener */
131   G_OBJECT_CLASS (spi_registry_parent_class)->finalize (object);
132 }
133
134 static long
135 _get_unique_id (void)
136 {
137   static long id = 0;
138
139   return ++id;
140 }
141
142 /**
143  * registerApplication:
144  * @application: a reference to the requesting @Application
145  * return values: void
146  *
147  * Register a new application with the accessibility broker.
148  *
149  **/
150 static void
151 impl_accessibility_registry_register_application (PortableServer_Servant servant,
152                                                   const Accessibility_Application application,
153                                                   CORBA_Environment * ev)
154 {
155   SpiRegistry *registry = SPI_REGISTRY (bonobo_object_from_servant (servant));
156
157 #ifdef SPI_DEBUG
158   fprintf (stderr, "registering app %p\n", application);
159 #endif
160   spi_desktop_add_application (registry->desktop, application);
161
162   Accessibility_Application__set_id (application, _get_unique_id (), ev);
163
164   /*
165    * TODO: change the implementation below to a WM-aware one;
166    * e.g. don't add all apps to the SpiDesktop
167    */
168 }
169
170 #ifdef USE_A_HASH_IN_FUTURE
171 static gint
172 compare_corba_objects (gconstpointer p1, gconstpointer p2)
173 {
174   CORBA_Environment ev;
175   gint retval;
176
177 #ifdef SPI_DEBUG
178   fprintf (stderr, "comparing %p to %p\n",
179            p1, p2);
180 #endif
181   
182   retval = !CORBA_Object_is_equivalent ((CORBA_Object) p1, (CORBA_Object) p2, &ev);
183   return retval;  
184 }
185 #endif
186
187 static void
188 register_with_toolkits (SpiRegistry *spi_registry_bonobo_object, EventTypeStruct *etype, CORBA_Environment *ev)
189 {
190   gint n_desktops;
191   gint n_apps;
192   gint i, j;
193   Accessibility_Desktop desktop;
194   Accessibility_Application app;
195   Accessibility_Registry registry;
196   registry  = BONOBO_OBJREF (spi_registry_bonobo_object);
197
198   /* for each app in each desktop, call ...Application_registerToolkitEventListener */
199
200   n_desktops = Accessibility_Registry_getDesktopCount (registry, ev);
201
202   for (i=0; i<n_desktops; ++i)
203     {
204       desktop = Accessibility_Registry_getDesktop (registry, i, ev);
205       n_apps = Accessibility_Desktop__get_childCount (desktop, ev);
206       for (j=0; j<n_apps; ++j)
207         {
208           app = (Accessibility_Application) Accessibility_Desktop_getChildAtIndex (desktop,
209                                                                                    j,
210                                                                                    ev);
211           Accessibility_Application_registerToolkitEventListener (app,
212                                                                   registry,
213                                                                   CORBA_string_dup (etype->event_name),
214                                                                   ev);
215         }
216     }
217 }
218
219 #ifdef USE_A_HASH_IN_FUTURE
220
221 static gint
222 compare_listener_quarks (gconstpointer p1, gconstpointer p2)
223 {
224         return (((SpiListenerStruct *)p2)->event_type_quark !=
225                 ((SpiListenerStruct *)p1)->event_type_quark);
226 }
227
228 static gint
229 compare_listener_corbaref (gconstpointer p1, gconstpointer p2)
230 {
231   return compare_corba_objects (((SpiListenerStruct *)p2)->listener,
232                                 ((SpiListenerStruct *)p1)->listener);
233 }
234 #endif
235
236 static void
237 parse_event_type (EventTypeStruct *etype, const char *event_name)
238 {
239   gchar **split_string;
240   gchar *s;
241
242   split_string = g_strsplit (event_name, ":", 4);
243   etype->event_name = g_strdup (event_name);
244
245   if (!g_ascii_strncasecmp (event_name, "focus:", 6))
246     {
247       etype->type_cat = ETYPE_FOCUS;
248     }
249   else if (!g_ascii_strncasecmp (event_name, "object:", 7))
250     {
251       etype->type_cat = ETYPE_OBJECT;
252     }
253   else if (!g_ascii_strncasecmp (event_name, "window:", 7))
254     {
255       etype->type_cat = ETYPE_WINDOW;
256     }
257   else
258     {
259       etype->type_cat = ETYPE_TOOLKIT;
260     }
261
262   if (split_string[1])
263     {
264       if (split_string[2])
265         {
266           etype->minor = g_quark_from_string (s = g_strconcat (split_string[1], split_string[2], NULL));
267           g_free (s);
268           if (split_string[3])
269             {
270               etype->detail = g_quark_from_string (split_string[3]);
271               s = g_strconcat (split_string[1], split_string[2], split_string[3], NULL);
272               etype->major = g_quark_from_string (s);
273               g_free (s);
274             }
275           else
276             {
277               etype->detail = g_quark_from_static_string ("");
278               s = g_strconcat (split_string[1], split_string[2], NULL);
279               etype->major = g_quark_from_string (s);
280               g_free (s);
281             }
282         }
283       else
284         {
285           etype->major = g_quark_from_string (split_string[1]);
286           etype->minor = etype->major;
287           etype->detail = etype->major;
288         }
289     }
290   else
291     {
292       etype->major = g_quark_from_static_string ("");
293       etype->minor = etype->major;
294       etype->detail = etype->major;
295     }
296
297   g_strfreev (split_string);
298 }
299
300 /**
301  * deregisterApplication:
302  * @application: a reference to the @Application
303  * to be deregistered.
304  * return values: void
305  *
306  * De-register an application previously registered with the broker.
307  *
308  **/
309 static void
310 impl_accessibility_registry_deregister_application (PortableServer_Servant servant,
311                                                     const Accessibility_Application application,
312                                                     CORBA_Environment * ev)
313 {
314   SpiRegistry *registry = SPI_REGISTRY (bonobo_object_from_servant (servant));
315
316   spi_desktop_remove_application (registry->desktop, application);
317
318 #ifdef SPI_DEBUG
319   fprintf (stderr, "de-registered app %p\n", application);
320 #endif
321 }
322
323 static GList **
324 get_listener_list (SpiRegistry      *registry,
325                    EventTypeCategory cat)
326 {
327   GList **ret;
328   
329   switch (cat)
330     {
331       case ETYPE_OBJECT:
332       case ETYPE_PROPERTY:
333       case ETYPE_FOCUS:
334         ret = &registry->object_listeners;
335         break;
336       case ETYPE_WINDOW:
337         ret = &registry->window_listeners;
338         break;
339       case ETYPE_TOOLKIT:
340         ret = &registry->toolkit_listeners;
341         break;
342       case ETYPE_KEYBOARD:
343       default:
344         ret = NULL;
345         break;
346     }
347   return ret;
348 }
349
350 /*
351  * CORBA Accessibility::Registry::registerGlobalEventListener method implementation
352  */
353 static void
354 impl_accessibility_registry_register_global_event_listener (
355         PortableServer_Servant      servant,
356         Accessibility_EventListener listener,
357         const CORBA_char           *event_name,
358         CORBA_Environment          *ev)
359 {
360   SpiRegistry *registry = SPI_REGISTRY (bonobo_object_from_servant (servant));
361   SpiListenerStruct *ls = spi_listener_struct_new (listener, ev);
362   EventTypeStruct etype;
363   GList          **list;
364
365 #ifdef SPI_DEBUG
366   fprintf (stderr, "registering for events of type %s\n", event_name);
367 #endif
368
369   /* parse, check major event type and add listener accordingly */
370   parse_event_type (&etype, event_name);
371   ls->event_type_quark = etype.major;
372   ls->event_type_cat = etype.type_cat;
373
374   list = get_listener_list (registry, etype.type_cat);
375
376   if (list)
377     {
378       *list = g_list_prepend (*list, ls);
379
380       if (etype.type_cat == ETYPE_TOOLKIT)
381         {
382           register_with_toolkits (registry, &etype, ev);
383         }
384     }
385   else
386     {
387       spi_listener_struct_free (ls, ev);
388     }
389 }
390
391 static SpiReEntrantContinue
392 remove_listener_cb (GList * const *list, gpointer user_data)
393 {
394   SpiListenerStruct *ls = (SpiListenerStruct *) (*list)->data;
395   CORBA_Environment  ev;
396   Accessibility_EventListener listener = user_data;
397
398   CORBA_exception_init (&ev);
399         
400   if (CORBA_Object_is_equivalent (ls->listener, listener, &ev))
401     {
402        spi_re_entrant_list_delete_link (list);
403        spi_listener_struct_free (ls, &ev);
404     }
405
406   CORBA_exception_free (&ev);
407
408   return SPI_RE_ENTRANT_CONTINUE;
409 }
410
411 /*
412  * CORBA Accessibility::Registry::deregisterGlobalEventListenerAll method implementation
413  */
414 static void
415 impl_accessibility_registry_deregister_global_event_listener_all (
416         PortableServer_Servant      servant,
417         Accessibility_EventListener listener,
418         CORBA_Environment          *ev)
419 {
420   int i;
421   GList **lists[2];
422   SpiRegistry *registry = SPI_REGISTRY (bonobo_object_from_servant (servant));
423
424   lists[0] = &registry->object_listeners;
425   lists[1] = &registry->window_listeners;
426   lists[2] = &registry->toolkit_listeners;
427
428   for (i = 0; i < sizeof (lists) / sizeof (lists[0]); i++)
429     {
430       spi_re_entrant_list_foreach (lists [i], remove_listener_cb, listener);
431     }
432 }
433
434
435 /*
436  * CORBA Accessibility::Registry::deregisterGlobalEventListener method implementation
437  */
438 static void
439 impl_accessibility_registry_deregister_global_event_listener (
440         PortableServer_Servant      servant,
441         Accessibility_EventListener listener,
442         const CORBA_char           *event_name,
443         CORBA_Environment          *ev)
444 {
445   SpiRegistry    *registry;
446   EventTypeStruct etype;
447
448   registry = SPI_REGISTRY (bonobo_object_from_servant (servant));
449
450   parse_event_type (&etype, (char *) event_name);
451
452   spi_re_entrant_list_foreach (get_listener_list (registry, etype.type_cat),
453                                 remove_listener_cb, listener);
454 }
455
456
457 /**
458  * getDesktopCount:
459  * return values: a short integer indicating the current number of
460  * @Desktops.
461  *
462  * Get the current number of desktops.
463  *
464  **/
465 static short
466 impl_accessibility_registry_get_desktop_count (PortableServer_Servant servant,
467                                                CORBA_Environment * ev)
468 {
469   /* TODO: implement support for multiple virtual desktops */
470   CORBA_short n_desktops;
471   n_desktops = (CORBA_short) 1;
472   return n_desktops;
473 }
474
475
476 /**
477  * getDesktop:
478  * @n: the index of the requested @Desktop.
479  * return values: a reference to the requested @Desktop.
480  *
481  * Get the nth accessible desktop.
482  *
483  **/
484 static Accessibility_Desktop
485 impl_accessibility_registry_get_desktop (PortableServer_Servant servant,
486                                          const CORBA_short n,
487                                          CORBA_Environment * ev)
488 {
489   SpiRegistry *registry = SPI_REGISTRY (bonobo_object_from_servant (servant));
490
491   /* TODO: implement support for multiple virtual desktops */
492   if (n == 0)
493     {
494       return (Accessibility_Desktop)
495         bonobo_object_dup_ref (BONOBO_OBJREF (registry->desktop), ev);
496     }
497   else
498     {
499       return (Accessibility_Desktop) CORBA_OBJECT_NIL;
500     }
501 }
502
503
504 /**
505  * getDesktopList:
506  * return values: a sequence containing references to
507  * the @Desktops.
508  *
509  * Get a list of accessible desktops.
510  *
511  **/
512 static Accessibility_DesktopSeq *
513 impl_accessibility_registry_get_desktop_list (PortableServer_Servant servant,
514                                               CORBA_Environment * ev)
515 {
516   SpiRegistry *registry = SPI_REGISTRY (bonobo_object_from_servant (servant));
517   Accessibility_DesktopSeq *desktops;
518
519   desktops = Accessibility_DesktopSeq__alloc ();
520   desktops->_length = desktops->_maximum = 1;
521   desktops->_buffer = Accessibility_DesktopSeq_allocbuf (desktops->_length);
522   desktops->_buffer [0] = bonobo_object_dup_ref (BONOBO_OBJREF (registry->desktop), ev);
523
524   return desktops;
525 }
526
527
528 static Accessibility_DeviceEventController
529 impl_accessibility_registry_get_device_event_controller (PortableServer_Servant servant,
530                                                          CORBA_Environment     *ev)
531 {
532   SpiRegistry *registry = SPI_REGISTRY (bonobo_object_from_servant (servant));
533
534   if (!registry->de_controller)
535     {
536       registry->de_controller = spi_device_event_controller_new (registry);
537     }
538
539   return bonobo_object_dup_ref (BONOBO_OBJREF (registry->de_controller), ev);
540 }
541
542 typedef struct {
543   CORBA_Environment  *ev;
544   Bonobo_Unknown      source;
545   EventTypeStruct     etype;
546   Accessibility_Event e_out;
547 } NotifyContext;
548
549 static SpiReEntrantContinue
550 notify_listeners_cb (GList * const *list, gpointer user_data)
551 {
552   SpiListenerStruct *ls;
553   NotifyContext     *ctx = user_data;
554 #ifdef SPI_DEBUG
555   CORBA_string       s;
556 #endif
557
558   ls = (*list)->data;
559
560 #ifdef SPI_LISTENER_DEBUG
561   fprintf (stderr, "event quarks: %lx %lx %lx\n", ls->event_type_quark, etype.major, etype.minor);
562   fprintf (stderr, "event name: %s\n", etype.event_name);
563 #endif
564
565   if ((ls->event_type_quark == ctx->etype.major) ||
566       (ls->event_type_quark == ctx->etype.minor))
567     {
568 #ifdef SPI_DEBUG
569       fprintf (stderr, "notifying listener %d\n", g_list_index (listeners, l->data));
570       s = Accessibility_Accessible__get_name (ctx->source, ev);
571       fprintf (stderr, "event source name %s\n", s);
572       CORBA_free (s);
573 #endif
574       
575       ctx->e_out.source = bonobo_object_dup_ref (ctx->source, ctx->ev);
576       if (BONOBO_EX (ctx->ev))
577         {
578           return SPI_RE_ENTRANT_CONTINUE;;
579         }
580
581       if ((*list) && (*list)->data == ls)
582         {
583           Accessibility_EventListener_notifyEvent (
584             (Accessibility_EventListener) ls->listener, &ctx->e_out, ctx->ev);
585         if (ctx->ev->_major != CORBA_NO_EXCEPTION)
586           {
587             g_warning ("Accessibility app error: exception during "
588                        "event notification: %s\n",
589                        CORBA_exception_id (ctx->ev));
590           }
591         }
592       else /* dup re-entered */
593         {
594           bonobo_object_release_unref (ctx->e_out.source, ctx->ev);
595         }
596     }  
597
598   return SPI_RE_ENTRANT_CONTINUE;
599 }
600
601 static void
602 impl_registry_notify_event (PortableServer_Servant     servant,
603                             const Accessibility_Event *e,
604                             CORBA_Environment         *ev)
605 {
606   SpiRegistry  *registry;
607   GList       **list;
608   NotifyContext ctx;
609
610   registry = SPI_REGISTRY (bonobo_object_from_servant (servant));
611
612   parse_event_type (&ctx.etype, e->type);
613
614   list = get_listener_list (registry, ctx.etype.type_cat);
615
616   if (list)
617     {
618       ctx.ev = ev;
619       ctx.e_out = *e;
620       ctx.source = e->source;
621       parse_event_type (&ctx.etype, e->type);
622
623       spi_re_entrant_list_foreach (list, notify_listeners_cb, &ctx);
624     }
625
626   if (e->source != CORBA_OBJECT_NIL)
627     {
628       Accessibility_Accessible_unref (e->source, ev);
629     }
630 }
631
632
633 static void
634 spi_registry_class_init (SpiRegistryClass *klass)
635 {
636   GObjectClass * object_class = (GObjectClass *) klass;
637   POA_Accessibility_Registry__epv *epv = &klass->epv;
638
639   spi_registry_parent_class = g_type_class_ref (SPI_LISTENER_TYPE);
640   
641   object_class->finalize = spi_registry_object_finalize;
642
643   klass->parent_class.epv.notifyEvent   = impl_registry_notify_event;
644   
645   epv->registerApplication              = impl_accessibility_registry_register_application;
646   epv->deregisterApplication            = impl_accessibility_registry_deregister_application;
647   epv->registerGlobalEventListener      = impl_accessibility_registry_register_global_event_listener;
648   epv->deregisterGlobalEventListener    = impl_accessibility_registry_deregister_global_event_listener;
649   epv->deregisterGlobalEventListenerAll = impl_accessibility_registry_deregister_global_event_listener_all;
650   epv->getDeviceEventController         = impl_accessibility_registry_get_device_event_controller;
651   epv->getDesktopCount                  = impl_accessibility_registry_get_desktop_count;
652   epv->getDesktop                       = impl_accessibility_registry_get_desktop;
653   epv->getDesktopList                   = impl_accessibility_registry_get_desktop_list;
654 }
655
656 static void
657 spi_registry_init (SpiRegistry *registry)
658 {
659   registry->object_listeners = NULL;
660   registry->window_listeners = NULL;
661   registry->toolkit_listeners = NULL;
662   registry->desktop = spi_desktop_new ();
663   /* Register callback notification for application addition and removal */
664   g_signal_connect (G_OBJECT (registry->desktop),
665                     "application_added",
666                     G_CALLBACK (desktop_add_application),
667                     registry);
668
669   g_signal_connect (G_OBJECT (registry->desktop),
670                     "application_removed",
671                     G_CALLBACK (desktop_remove_application),
672                     registry);
673
674   registry->de_controller = NULL;
675 }
676
677 BONOBO_TYPE_FUNC_FULL (SpiRegistry,
678                        Accessibility_Registry,
679                        PARENT_TYPE,
680                        spi_registry);
681
682 SpiRegistry *
683 spi_registry_new (void)
684 {
685   SpiRegistry *retval = g_object_new (SPI_REGISTRY_TYPE, NULL);
686   bonobo_object_set_immortal (BONOBO_OBJECT (retval), TRUE);
687   return retval;
688 }