Various fixes
[platform/upstream/at-spi2-core.git] / atspi / atspi-misc.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 Sun Microsystems Inc.,
6  * Copyright 2001, 2002 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 /*
25  *
26  * Basic SPI initialization and event loop function prototypes
27  *
28  */
29
30 #include "atspi-private.h"
31 #include "X11/Xlib.h"
32 #include <stdio.h>
33 #include <string.h>
34
35 static DBusConnection *bus = NULL;
36 static GHashTable *apps = NULL;
37 static GHashTable *live_refs = NULL;
38 static GQueue *exception_handlers = NULL;
39 static DBusError exception;
40
41 const char *atspi_path_dec = ATSPI_DBUS_PATH_DEC;
42 const char *atspi_path_registry = ATSPI_DBUS_PATH_REGISTRY;
43 const char *atspi_path_root = ATSPI_DBUS_PATH_ROOT;
44 const char *atspi_bus_registry = ATSPI_DBUS_NAME_REGISTRY;
45 const char *atspi_interface_accessible = ATSPI_DBUS_INTERFACE_ACCESSIBLE;
46 const char *atspi_interface_action = ATSPI_DBUS_INTERFACE_ACTION;
47 const char *atspi_interface_application = ATSPI_DBUS_INTERFACE_APPLICATION;
48 const char *atspi_interface_collection = ATSPI_DBUS_INTERFACE_COLLECTION;
49 const char *atspi_interface_component = ATSPI_DBUS_INTERFACE_COMPONENT;
50 const char *atspi_interface_dec = ATSPI_DBUS_INTERFACE_DEC;
51 const char *atspi_interface_device_event_listener = ATSPI_DBUS_INTERFACE_DEVICE_EVENT_LISTENER;
52 const char *atspi_interface_document = ATSPI_DBUS_INTERFACE_DOCUMENT;
53 const char *atspi_interface_editable_text = ATSPI_DBUS_INTERFACE_EDITABLE_TEXT;
54 const char *atspi_interface_event_object = ATSPI_DBUS_INTERFACE_EVENT_OBJECT;
55 const char *atspi_interface_hyperlink = ATSPI_DBUS_INTERFACE_HYPERLINK;
56 const char *atspi_interface_hypertext = ATSPI_DBUS_INTERFACE_HYPERTEXT;
57 const char *atspi_interface_image = ATSPI_DBUS_INTERFACE_IMAGE;
58 const char *atspi_interface_registry = ATSPI_DBUS_INTERFACE_REGISTRY;
59 const char *atspi_interface_selection = ATSPI_DBUS_INTERFACE_SELECTION;
60 const char *atspi_interface_table = ATSPI_DBUS_INTERFACE_TABLE;
61 const char *atspi_interface_text = ATSPI_DBUS_INTERFACE_TEXT;
62 const char *atspi_interface_cache = ATSPI_DBUS_INTERFACE_CACHE;
63 const char *atspi_interface_value = ATSPI_DBUS_INTERFACE_VALUE;
64
65 static const char *interfaces[] =
66 {
67   ATSPI_DBUS_INTERFACE_ACCESSIBLE,
68   ATSPI_DBUS_INTERFACE_ACTION,
69   ATSPI_DBUS_INTERFACE_APPLICATION,
70   ATSPI_DBUS_INTERFACE_COLLECTION,
71   ATSPI_DBUS_INTERFACE_COMPONENT,
72   ATSPI_DBUS_INTERFACE_DOCUMENT,
73   ATSPI_DBUS_INTERFACE_EDITABLE_TEXT,
74   ATSPI_DBUS_INTERFACE_HYPERLINK,
75   ATSPI_DBUS_INTERFACE_HYPERTEXT,
76   ATSPI_DBUS_INTERFACE_IMAGE,
77   "org.a11y.atspi.LoginHelper",
78   ATSPI_DBUS_INTERFACE_SELECTION,
79   ATSPI_DBUS_INTERFACE_TABLE,
80   ATSPI_DBUS_INTERFACE_TEXT,
81   ATSPI_DBUS_INTERFACE_VALUE,
82   NULL
83 };
84
85 gint
86 _atspi_get_iface_num (const char *iface)
87 {
88   /* TODO: Use a binary search or hash to improve performance */
89   int i;
90
91   for (i = 0; interfaces[i]; i++)
92   {
93     if (!strcmp(iface, interfaces[i])) return i;
94   }
95   return -1;
96 }
97
98 static GHashTable *
99 get_live_refs (void)
100 {
101   if (!live_refs) 
102     {
103       live_refs = g_hash_table_new (g_direct_hash, g_direct_equal);
104     }
105   return live_refs;
106 }
107
108 /* TODO: Add an application parameter */
109 DBusConnection *
110 _atspi_bus ()
111 {
112   if (!bus)
113     atspi_init ();
114   return bus;
115 }
116
117 #define APP_IS_REGISTRY(app) (!strcmp (app->bus_name, atspi_bus_registry))
118
119 static void
120 cleanup ()
121 {
122   GHashTable *refs;
123
124   refs = live_refs;
125   live_refs = NULL;
126   if (refs)
127     {
128       g_hash_table_destroy (refs);
129     }
130 }
131
132 static gboolean atspi_inited = FALSE;
133
134 static GHashTable *app_hash = NULL;
135
136 static AtspiApplication *
137 get_application (const char *bus_name)
138 {
139   AtspiApplication *app = NULL;
140   char *bus_name_dup;
141
142   if (!app_hash)
143   {
144     app_hash = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, (GDestroyNotify)g_hash_table_unref);
145     if (!app_hash) return NULL;
146   }
147   app = g_hash_table_lookup (app_hash, bus_name);
148   if (app) return app;
149   bus_name_dup = g_strdup (bus_name);
150   if (!bus_name_dup) return NULL;
151   // TODO: change below to something that will send state-change:defunct notification if necessary */
152   app = _atspi_application_new (bus_name);
153   if (!app) return NULL;
154   app->bus_name = bus_name_dup;
155   app->hash = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_object_unref);
156   g_hash_table_insert (app_hash, bus_name_dup, app);
157   return app;
158 }
159
160 static AtspiAccessible *
161 ref_accessible (const char *app_name, const char *path)
162 {
163   AtspiApplication *app = get_application (app_name);
164   AtspiAccessible *a;
165
166   if (!strcmp (path, ATSPI_DBUS_PATH_NULL))
167     return NULL;
168
169   if (!strcmp (path, "/org/a11y/atspi/accessible/root"))
170   {
171     if (!app->root)
172     {
173       app->root = atspi_accessible_new (app, atspi_path_root);
174       app->root->accessible_parent = atspi_get_desktop (0);
175     }
176     return g_object_ref (app->root);
177   }
178
179   a = g_hash_table_lookup (app->hash, path);
180   if (a)
181   {
182     return g_object_ref (a);
183   }
184   a = atspi_accessible_new (app, path);
185   if (!a)
186     return NULL;
187   g_hash_table_insert (app->hash, a->parent.path, a);
188   g_object_ref (a);     /* for the hash */
189   return a;
190 }
191
192 static AtspiHyperlink *
193 ref_hyperlink (const char *app_name, const char *path)
194 {
195   AtspiApplication *app = get_application (app_name);
196   AtspiHyperlink *hyperlink;
197
198   if (!strcmp (path, ATSPI_DBUS_PATH_NULL))
199     return NULL;
200
201   hyperlink = g_hash_table_lookup (app->hash, path);
202   if (hyperlink)
203   {
204     return g_object_ref (hyperlink);
205   }
206   hyperlink = atspi_hyperlink_new (app, path);
207   if (!hyperlink)
208     return NULL;
209   g_hash_table_insert (app->hash, hyperlink->parent.path, hyperlink);
210   /* TODO: This should be a weak ref */
211   g_object_ref (hyperlink);     /* for the hash */
212   return hyperlink;
213 }
214
215 typedef struct
216 {
217   char *path;
218   char *parent;
219   GArray *children;
220   GArray *interfaces;
221   char *name;
222   dbus_uint32_t role;
223   char *description;
224   GArray *state_bitflags;
225 } CACHE_ADDITION;
226
227 static DBusHandlerResult
228 handle_remove_accessible (DBusConnection *bus, DBusMessage *message, void *user_data)
229 {
230   const char *sender = dbus_message_get_sender (message);
231   AtspiApplication *app;
232   const char *path;
233   DBusMessageIter iter, iter_struct;
234   const char *signature = dbus_message_get_signature (message);
235   AtspiAccessible *a;
236   int id;
237
238   if (strcmp (signature, "(so)") != 0)
239   {
240     g_warning ("at-spi: Unknown signature %s for RemoveAccessible", signature);
241     return DBUS_HANDLER_RESULT_HANDLED;
242   }
243
244   dbus_message_iter_init (message, &iter);
245   dbus_message_iter_recurse (&iter, &iter_struct);
246   dbus_message_iter_get_basic (&iter_struct, &sender);
247   dbus_message_iter_get_basic (&iter_struct, &path);
248   app = get_application (sender);
249   a = ref_accessible (sender, path);
250   if (!a)
251     return DBUS_HANDLER_RESULT_HANDLED;
252   if (a->accessible_parent && g_list_find (a->accessible_parent->children, a))
253   {
254     a->accessible_parent->children = g_list_remove (a->accessible_parent->children, a);
255     g_object_unref (a);
256   }
257   g_hash_table_remove (app->hash, app->bus_name);
258   g_object_unref (a);   /* unref our own ref */
259   return DBUS_HANDLER_RESULT_HANDLED;
260 }
261
262 static gboolean
263 add_app_to_desktop (AtspiAccessible *a, const char *bus_name)
264 {
265   DBusError error;
266   char *root_path;
267
268   dbus_error_init (&error);
269   AtspiAccessible *obj = ref_accessible (bus_name, atspi_path_root);
270   if (obj)
271   {
272     GList *new_list = g_list_append (a->children, obj);
273     if (new_list)
274     {
275       a->children = new_list;
276       return TRUE;
277     }
278   }
279   else
280   {
281     g_warning ("Error calling getRoot for %s: %s", bus_name, error.message);
282   }
283   return FALSE;
284 }
285
286 static void
287 send_children_changed (AtspiAccessible *parent, AtspiAccessible *child, gboolean add)
288 {
289   AtspiEvent e;
290
291   memset (&e, 0, sizeof (e));
292   e.type = (add? "object:children-changed:add": "object:children-changed:remove");
293   e.source = parent;
294   e.detail1 = g_list_index (parent->children, child);
295   e.detail2 = 0;
296   _atspi_send_event (&e);
297 }
298
299 static void
300 unref_object_and_descendants (AtspiAccessible *obj)
301 {
302   GList *l;
303
304   for (l = obj->children; l; l = l->next)
305   {
306     unref_object_and_descendants (l->data);
307   }
308   g_object_unref (obj);
309 }
310
311 static gboolean
312 remove_app_from_desktop (AtspiAccessible *a, const char *bus_name)
313 {
314   GList *l;
315   AtspiAccessible *child;
316
317   for (l = a->children; l; l = l->next)
318   {
319     child = l->data;
320     if (!strcmp (bus_name, child->parent.app->bus_name)) break;
321   }
322   if (!l)
323   {
324     g_warning ("Removing unregistered app %s; doing nothing\n", bus_name);
325     return FALSE;
326   }
327   send_children_changed (a, child, FALSE);
328   a->children = g_list_remove (a->children, child);
329   unref_object_and_descendants (child);
330   return TRUE;
331 }
332
333 static AtspiAccessible *desktop;
334
335 void
336 get_reference_from_iter (DBusMessageIter *iter, const char **app_name, const char **path)
337 {
338   DBusMessageIter iter_struct;
339
340   dbus_message_iter_recurse (iter, &iter_struct);
341   dbus_message_iter_get_basic (&iter_struct, app_name);
342   dbus_message_iter_next (&iter_struct);
343   dbus_message_iter_get_basic (&iter_struct, path);
344   dbus_message_iter_next (iter);
345 }
346
347 static void
348 add_accessible_from_iter (DBusMessageIter *iter)
349 {
350   gint i;
351   GList *new_list;
352   DBusMessageIter iter_struct, iter_array;
353   const char *app_name, *path;
354   AtspiApplication *app;
355   AtspiAccessible *accessible;
356   const char *name, *description;
357   dbus_uint32_t role;
358   dbus_uint32_t *states;
359   int count;
360
361   dbus_message_iter_recurse (iter, &iter_struct);
362
363   /* get accessible */
364   get_reference_from_iter (&iter_struct, &app_name, &path);
365   accessible = ref_accessible (app_name, path);
366   if (!accessible)
367     return;
368
369   /* Get application: TODO */
370   dbus_message_iter_next (&iter_struct);
371
372   /* get parent */
373   get_reference_from_iter (&iter_struct, &app_name, &path);
374   accessible->accessible_parent = ref_accessible (app_name, path);
375
376   /* Get children */
377   dbus_message_iter_recurse (&iter_struct, &iter_array);
378   while (dbus_message_iter_get_arg_type (&iter_array) != DBUS_TYPE_INVALID)
379   {
380     AtspiAccessible *child;
381     get_reference_from_iter (&iter_array, &app_name, &path);
382     child = ref_accessible (app_name, path);
383     new_list = g_list_append (accessible->children, child);
384     if (new_list) accessible->children = new_list;
385   }
386
387   /* interfaces */
388   accessible->interfaces = 0;
389   dbus_message_iter_next (&iter_struct);
390   dbus_message_iter_recurse (&iter_struct, &iter_array);
391   while (dbus_message_iter_get_arg_type (&iter_array) != DBUS_TYPE_INVALID)
392   {
393     const char *iface;
394     gint n;
395     dbus_message_iter_get_basic (&iter_array, &iface);
396     if (!strcmp (iface, "org.freedesktop.DBus.Introspectable")) continue;
397     n = _atspi_get_iface_num (iface);
398     if (n == -1)
399     {
400       g_warning ("Unknown interface %s", iface);
401     }
402     else accessible->interfaces |= (1 << n);
403     dbus_message_iter_next (&iter_array);
404   }
405   dbus_message_iter_next (&iter_struct);
406
407   /* name */
408   dbus_message_iter_get_basic (&iter_struct, &name);
409   accessible->name = g_strdup (name);
410   dbus_message_iter_next (&iter_struct);
411
412   /* role */
413   dbus_message_iter_get_basic (&iter_struct, &role);
414   accessible->role = role;
415   dbus_message_iter_next (&iter_struct);
416
417   /* description */
418   dbus_message_iter_get_basic (&iter_struct, &description);
419   accessible->description = g_strdup (description);
420   dbus_message_iter_next (&iter_struct);
421
422   dbus_message_iter_recurse (&iter_struct, &iter_array);
423   dbus_message_iter_get_fixed_array (&iter_array, &states, &count);
424   if (count != 2)
425   {
426     g_warning ("at-spi: expected 2 values in states array; got %d\n", count);
427     accessible->states = _atspi_state_set_new_internal (accessible, 0);
428   }
429   else
430   {
431     guint64 val = ((guint64)states [1]) << 32;
432     val += states [0];
433     accessible->states = _atspi_state_set_new_internal (accessible, val);
434   }
435   dbus_message_iter_next (&iter_struct);
436
437   /* This is a bit of a hack since the cache holds a ref, so we don't need
438    * the one provided for us anymore */
439   g_object_unref (accessible);
440 }
441
442 static void
443 add_accessibles (const char *app_name)
444 {
445   DBusError error;
446   DBusMessage *message, *reply;
447   DBusMessageIter iter, iter_array;
448
449   AtspiApplication *app = get_application (app_name);
450   /* TODO: Move this functionality into app initializer? */
451   dbus_error_init (&error);
452   message = dbus_message_new_method_call (app_name, "/org/a11y/atspi/cache", atspi_interface_cache, "GetItems");
453   reply = _atspi_dbus_send_with_reply_and_block (message);
454   if (!reply || strcmp (dbus_message_get_signature (reply), "a((so)(so)(so)a(so)assusau)") != 0)
455   {
456     g_warning ("at-spi: Error in GetItems");
457     return;
458     if (reply)
459       dbus_message_unref (reply);
460   }
461   dbus_message_iter_init (reply, &iter);
462   dbus_message_iter_recurse (&iter, &iter_array);
463   while (dbus_message_iter_get_arg_type (&iter_array) != DBUS_TYPE_INVALID)
464   {
465     add_accessible_from_iter (&iter_array);
466     dbus_message_iter_next (&iter_array);
467   }
468   dbus_message_unref (reply);
469 }
470
471 /* TODO: Do we stil need this function? */
472 static AtspiAccessible *
473 ref_accessible_desktop (AtspiApplication *app)
474 {
475   DBusError error;
476   GArray *apps = NULL;
477   GArray *additions;
478   gint i;
479   DBusMessage *message, *reply;
480   DBusMessageIter iter, iter_array;
481
482   if (desktop)
483   {
484     g_object_ref (desktop);
485     return desktop;
486   }
487   desktop = atspi_accessible_new (app, atspi_path_root);
488   if (!desktop)
489   {
490     return NULL;
491   }
492   g_hash_table_insert (app->hash, desktop->parent.path, desktop);
493   g_object_ref (desktop);       /* for the hash */
494   desktop->name = g_strdup ("main");
495   dbus_error_init (&error);
496   message = dbus_message_new_method_call (atspi_bus_registry,
497         atspi_path_root,
498         atspi_interface_accessible,
499         "GetChildren");
500   if (!message)
501     return;
502   reply = _atspi_dbus_send_with_reply_and_block (message);
503   if (!reply || strcmp (dbus_message_get_signature (reply), "a(so)") != 0)
504   {
505     g_error ("Couldn't get application list: %s", error.message);
506     if (reply)
507       dbus_message_unref (reply);
508     return;
509   }
510   dbus_message_iter_init (reply, &iter);
511   dbus_message_iter_recurse (&iter, &iter_array);
512   while (dbus_message_iter_get_arg_type (&iter_array) != DBUS_TYPE_INVALID)
513   {
514     const char *app_name, *path;
515     get_reference_from_iter (&iter_array, &app_name, &path);
516     add_accessibles (app_name);
517     add_app_to_desktop (desktop, app_name);
518   }
519   dbus_message_unref (reply);
520   return desktop;
521 }
522
523 AtspiAccessible *
524 _atspi_ref_accessible (const char *app, const char *path)
525 {
526   AtspiApplication *a = get_application (app);
527   if (!a) return NULL;
528   if ( APP_IS_REGISTRY(a))
529   {
530     return ref_accessible_desktop (a);
531   }
532   return ref_accessible (app, path);
533 }
534
535 AtspiAccessible *
536 _atspi_dbus_return_accessible_from_message (DBusMessage *message)
537 {
538   DBusMessageIter iter;
539   AtspiAccessible *retval = NULL;
540   const char *signature = dbus_message_get_signature (message);
541    
542   if (!strcmp (signature, "(so)"))
543   {
544     dbus_message_iter_init (message, &iter);
545     retval =  _atspi_dbus_return_accessible_from_iter (&iter);
546   }
547   else
548   {
549     g_warning ("Atspi: Called _atspi_dbus_return_accessible_from_message with strange signature %s", signature);
550   }
551   dbus_message_unref (message);
552   return retval;
553 }
554
555 AtspiAccessible *
556 _atspi_dbus_return_accessible_from_iter (DBusMessageIter *iter)
557 {
558   const char *app_name, *path;
559
560   get_reference_from_iter (iter, &app_name, &path);
561   return ref_accessible (app_name, path);
562 }
563
564 AtspiHyperlink *
565 _atspi_dbus_return_hyperlink_from_message (DBusMessage *message)
566 {
567   DBusMessageIter iter;
568   AtspiHyperlink *retval = NULL;
569   const char *signature = dbus_message_get_signature (message);
570    
571   if (!strcmp (signature, "(so)"))
572   {
573     dbus_message_iter_init (message, &iter);
574     retval =  _atspi_dbus_return_hyperlink_from_iter (&iter);
575   }
576   else
577   {
578     g_warning ("Atspi: Called _atspi_dbus_return_hyperlink_from_message with strange signature %s", signature);
579   }
580   dbus_message_unref (message);
581   return retval;
582 }
583
584 AtspiHyperlink *
585 _atspi_dbus_return_hyperlink_from_iter (DBusMessageIter *iter)
586 {
587   const char *app_name, *path;
588
589   get_reference_from_iter (iter, &app_name, &path);
590   return ref_hyperlink (app_name, path);
591 }
592
593 const char *cache_signal_type = "((so)(so)(so)a(so)assusau)";
594
595 static DBusHandlerResult
596 handle_add_accessible (DBusConnection *bus, DBusMessage *message, void *user_data)
597 {
598   DBusMessageIter iter;
599   const char *sender = dbus_message_get_sender (message);
600   AtspiApplication *app = get_application (sender);
601   const char *type = cache_signal_type;
602
603   if (strcmp (dbus_message_get_signature (message), cache_signal_type) != 0)
604   {
605     g_warning ("atspi: AddAccessible with unknown signature %s\n", dbus_message_get_signature (message));
606     return;
607   }
608
609   dbus_message_iter_init (message, &iter);
610   add_accessible_from_iter (&iter);
611 }
612
613 static DBusHandlerResult
614 atspi_dbus_filter (DBusConnection *bus, DBusMessage *message, void *data)
615 {
616   int type = dbus_message_get_type (message);
617   const char *interface = dbus_message_get_interface (message);
618   const char *member = dbus_message_get_member (message); 
619   dbus_uint32_t v;
620   char *bus_name;
621
622   if (type == DBUS_MESSAGE_TYPE_SIGNAL &&
623       !strncmp (interface, "org.a11y.atspi.Event.", 21))
624   {
625     return atspi_dbus_handle_event (bus, message, data);
626   }
627   if (dbus_message_is_method_call (message, atspi_interface_device_event_listener, "NotifyEvent"))
628   {
629     return atspi_dbus_handle_DeviceEvent (bus, message, data);
630   }
631   if (dbus_message_is_signal (message, atspi_interface_cache, "AddAccessible"))
632   {
633     return handle_add_accessible (bus, message, data);
634   }
635   if (dbus_message_is_signal (message, atspi_interface_cache, "RemoveAccessible"))
636   {
637     return handle_remove_accessible (bus, message, data);
638   }
639   /* TODO: Handle ChildrenChanged, StateChanged, PropertyChanged */
640   return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
641 }
642
643 static const char *signal_interfaces[] =
644 {
645   "org.a11y.atspi.Event.Object",
646   "org.a11y.atspi.Event.Window",
647   "org.a11y.atspi.Event.Mouse",
648   "org.a11y.atspi.Event.Terminal",
649   "org.a11y.atspi.Event.Document",
650   "org.a11y.atspi.Event.Focus",
651   NULL
652 };
653
654 /*
655  * Returns a 'canonicalized' value for DISPLAY,
656  * with the screen number stripped off if present.
657  *
658  * TODO: Avoid having duplicate functions for this here and in at-spi2-atk
659  */
660 static const gchar *
661 spi_display_name (void)
662 {
663   static const char *canonical_display_name = NULL;
664   if (!canonical_display_name)
665     {
666       const gchar *display_env = g_getenv ("AT_SPI_DISPLAY");
667       if (!display_env)
668         {
669           display_env = g_getenv ("DISPLAY");
670           if (!display_env || !display_env[0])
671             canonical_display_name = ":0";
672           else
673             {
674               gchar *display_p, *screen_p;
675               canonical_display_name = g_strdup (display_env);
676               display_p = g_utf8_strrchr (canonical_display_name, -1, ':');
677               screen_p = g_utf8_strrchr (canonical_display_name, -1, '.');
678               if (screen_p && display_p && (screen_p > display_p))
679                 {
680                   *screen_p = '\0';
681                 }
682             }
683         }
684       else
685         {
686           canonical_display_name = display_env;
687         }
688     }
689   return canonical_display_name;
690 }
691
692 /* TODO: Avoid having duplicate functions for this here and in at-spi2-atk */
693 static DBusConnection *
694 get_accessibility_bus ()
695 {
696   Atom AT_SPI_BUS;
697   Atom actual_type;
698   Display *bridge_display;
699   int actual_format;
700   unsigned char *data = NULL;
701   unsigned long nitems;
702   unsigned long leftover;
703
704   DBusConnection *bus = NULL;
705   DBusError error;
706
707   bridge_display = XOpenDisplay (spi_display_name ());
708   if (!bridge_display)
709     {
710       g_warning ("AT_SPI: Could not get the display\n");
711       return NULL;
712     }
713
714   AT_SPI_BUS = XInternAtom (bridge_display, "AT_SPI_BUS", False);
715   XGetWindowProperty (bridge_display,
716                       XDefaultRootWindow (bridge_display),
717                       AT_SPI_BUS, 0L,
718                       (long) BUFSIZ, False,
719                       (Atom) 31, &actual_type, &actual_format,
720                       &nitems, &leftover, &data);
721
722   dbus_error_init (&error);
723
724   if (data == NULL)
725     {
726       g_warning
727         ("AT-SPI: Accessibility bus not found - Using session bus.\n");
728       bus = dbus_bus_get (DBUS_BUS_SESSION, &error);
729       if (!bus)
730         {
731           g_warning ("AT-SPI: Couldn't connect to bus: %s\n", error.message);
732           return NULL;
733         }
734     }
735   else
736     {
737       bus = dbus_connection_open (data, &error);
738       if (!bus)
739         {
740           g_warning ("AT-SPI: Couldn't connect to bus: %s\n", error.message);
741           return NULL;
742         }
743       else
744         {
745           if (!dbus_bus_register (bus, &error))
746             {
747               g_warning ("AT-SPI: Couldn't register with bus: %s\n", error.message);
748               return NULL;
749             }
750         }
751     }
752
753   return bus;
754 }
755
756 /**
757  * atspi_init:
758  *
759  * Connects to the accessibility registry and initializes the SPI.
760  *
761  * Returns: 0 on success, otherwise an integer error code.  
762  **/
763 int
764 atspi_init (void)
765 {
766   DBusError error;
767   char *match;
768   int i;
769
770   if (atspi_inited)
771     {
772       return 1;
773     }
774
775   atspi_inited = TRUE;
776
777   g_type_init ();
778
779   get_live_refs();
780
781   dbus_error_init (&error);
782   bus = get_accessibility_bus ();
783   if (!bus)
784   {
785     g_error ("Couldn't get session bus");
786     return 2;
787   }
788   dbus_bus_register (bus, &error);
789   dbus_connection_setup_with_g_main(bus, g_main_context_default());
790   dbus_connection_add_filter (bus, atspi_dbus_filter, NULL, NULL);
791   match = g_strdup_printf ("type='signal',interface='%s',member='AddAccessible'", atspi_interface_cache);
792   dbus_error_init (&error);
793   dbus_bus_add_match (bus, match, &error);
794   g_free (match);
795   match = g_strdup_printf ("type='signal',interface='%s',member='RemoveAccessible'", atspi_interface_cache);
796   dbus_bus_add_match (bus, match, &error);
797   g_free (match);
798   match = g_strdup_printf ("type='signal',interface='%s',member='ChildrenChanged'", atspi_interface_event_object);
799   dbus_bus_add_match (bus, match, &error);
800   g_free (match);
801   match = g_strdup_printf ("type='signal',interface='%s',member='PropertyChange'", atspi_interface_event_object);
802   dbus_bus_add_match (bus, match, &error);
803   g_free (match);
804   match = g_strdup_printf ("type='signal',interface='%s',member='StateChanged'", atspi_interface_event_object);
805   dbus_bus_add_match (bus, match, &error);
806   g_free (match);
807   return 0;
808 }
809
810   static GMainLoop *mainloop;
811
812 /**
813  * atspi_event_main:
814  *
815  * Starts/enters the main event loop for the AT-SPI services.
816  *
817  * (NOTE: This method does not return control, it is exited via a call to
818  *  atspi_event_quit () from within an event handler).
819  *
820  **/
821 void
822 atspi_event_main (void)
823 {
824   mainloop = g_main_loop_new (NULL, FALSE);
825   g_main_loop_run (mainloop);
826 }
827
828 /**
829  * atspi_event_quit:
830  *
831  * Quits the last main event loop for the SPI services,
832  * see atspi_event_main
833  **/
834 void
835 atspi_event_quit (void)
836 {
837   g_main_loop_quit (mainloop);
838 }
839
840 /**
841  * atspi_exit:
842  *
843  * Disconnects from the Accessibility Registry and releases 
844  * any floating resources. Call only once at exit.
845  *
846  * Returns: 0 if there were no leaks, otherwise non zero.
847  **/
848 int
849 atspi_exit (void)
850 {
851   int leaked;
852
853   if (!atspi_inited)
854     {
855       return 0;
856     }
857
858   atspi_inited = FALSE;
859
860   if (live_refs)
861     {
862       leaked = g_hash_table_size (live_refs);
863     }
864   else
865     {
866       leaked = 0;
867     }
868
869   cleanup ();
870
871   return leaked;
872 }
873
874 dbus_bool_t
875 _atspi_dbus_call (gpointer obj, const char *interface, const char *method, GError **error, const char *type, ...)
876 {
877   va_list args;
878   dbus_bool_t retval;
879   DBusError err;
880   AtspiObject *aobj = ATSPI_OBJECT (obj);
881
882   va_start (args, type);
883   dbus_error_init (&err);
884   retval = dbind_method_call_reentrant_va (_atspi_bus(), aobj->app->bus_name, aobj->path, interface, method, &err, type, args);
885   va_end (args);
886   if (dbus_error_is_set (&err))
887   {
888     /* TODO: Set gerror */
889     dbus_error_free (&err);
890   }
891   return retval;
892 }
893
894 DBusMessage *
895 _atspi_dbus_call_partial (gpointer obj,
896                           const char *interface,
897                           const char *method,
898                           GError **error,
899                           const char *type, ...)
900 {
901   va_list args;
902
903   va_start (args, type);
904   return _atspi_dbus_call_partial_va (obj, interface, method, error, type, args);
905 }
906
907 DBusMessage *
908 _atspi_dbus_call_partial_va (gpointer obj,
909                           const char *interface,
910                           const char *method,
911                           GError **error,
912                           const char *type,
913                           va_list args)
914 {
915   AtspiObject *aobj = ATSPI_OBJECT (obj);
916   dbus_bool_t retval;
917   DBusError err;
918     DBusMessage *msg = NULL, *reply = NULL;
919     DBusMessageIter iter;
920     const char *p;
921
922   dbus_error_init (&err);
923
924     msg = dbus_message_new_method_call (aobj->app->bus_name, aobj->path, interface, method);
925     if (!msg)
926         goto out;
927
928     p = type;
929     dbus_message_iter_init_append (msg, &iter);
930     dbind_any_marshal_va (&iter, &p, args);
931
932     reply = dbind_send_and_allow_reentry (_atspi_bus(), msg, &err);
933 out:
934   va_end (args);
935   if (dbus_error_is_set (&err))
936   {
937     /* TODO: Set gerror */
938     dbus_error_free (&err);
939   }
940   return reply;
941 }
942
943 dbus_bool_t
944 _atspi_dbus_get_property (gpointer obj, const char *interface, const char *name, GError **error, const char *type, void *data)
945 {
946   DBusMessage *message, *reply;
947   DBusMessageIter iter, iter_variant;
948   DBusError err;
949   dbus_bool_t retval = FALSE;
950   AtspiObject *aobj = ATSPI_OBJECT (obj);
951
952   if (!aobj)
953     return NULL;
954
955   message = dbus_message_new_method_call (aobj->app->bus_name,
956                                           aobj->path,
957                                           "org.freedesktop.DBus.Properties",
958                                           "Get");
959   if (!message)
960   {
961     // TODO: throw exception
962     goto done;
963   }
964   dbus_message_append_args (message, DBUS_TYPE_STRING, &interface, DBUS_TYPE_STRING, &name, DBUS_TYPE_INVALID);
965   dbus_error_init (&err);
966   reply = dbus_connection_send_with_reply_and_block (_atspi_bus(), message, 1000, &err);
967   dbus_message_unref (message);
968   if (!reply)
969   {
970     // TODO: throw exception
971     goto done;
972   }
973   dbus_message_iter_init (reply, &iter);
974   dbus_message_iter_recurse (&iter, &iter_variant);
975   if (dbus_message_iter_get_arg_type (&iter_variant) != type[0])
976   {
977     g_warning ("atspi_dbus_get_property: Wrong type: expected %s, got %c\n", type, dbus_message_iter_get_arg_type (&iter_variant));
978     goto done;
979   }
980   if (!strcmp (type, "(so)"))
981   {
982     *((AtspiAccessible **)data) = _atspi_dbus_return_accessible_from_iter (&iter_variant);
983   }
984   else
985   {
986     dbus_message_iter_get_basic (&iter_variant, data);
987     dbus_message_unref (reply);
988     if (type [0] == 's')
989       *(char **)data = g_strdup (*(char **)data);
990   }
991   retval = TRUE;
992 done:
993   return retval;
994 }
995
996 DBusMessage *
997 _atspi_dbus_send_with_reply_and_block (DBusMessage *message)
998 {
999   DBusMessage *reply;
1000   DBusError err;
1001
1002   dbus_error_init (&err);
1003   /* TODO: Write this function; allow reentrancy */
1004   reply = dbus_connection_send_with_reply_and_block (_atspi_bus(), message, 1000, &err);
1005   dbus_message_unref (message);
1006   if (err.message)
1007     g_warning ("Atspi: Got error: %s\n", err.message);
1008   return reply;
1009 }
1010
1011 GHashTable *
1012 _atspi_dbus_hash_from_message (DBusMessage *message)
1013 {
1014   DBusMessageIter iter;
1015
1016   _ATSPI_DBUS_CHECK_SIG (message, "a{ss}", NULL);
1017
1018   dbus_message_iter_init (message, &iter);
1019   return _atspi_dbus_hash_from_iter (&iter);
1020 }
1021
1022 GHashTable *
1023 _atspi_dbus_hash_from_iter (DBusMessageIter *iter)
1024 {
1025   GHashTable *hash = g_hash_table_new (g_str_hash, g_str_equal);
1026   DBusMessageIter iter_array, iter_dict;
1027
1028   dbus_message_iter_recurse (iter, &iter_array);
1029   while (dbus_message_iter_get_arg_type (&iter_array) != DBUS_TYPE_INVALID)
1030   {
1031     const char *name, *value;
1032     dbus_message_iter_recurse (&iter_array, &iter_dict);
1033     dbus_message_iter_get_basic (&iter_dict, &name);
1034     dbus_message_iter_next (&iter_dict);
1035     dbus_message_iter_get_basic (&iter_dict, &value);
1036     g_hash_table_insert (hash, g_strdup (name), g_strdup (value));
1037     dbus_message_iter_next (&iter_array);
1038   }
1039   return hash;
1040 }
1041
1042 GArray *
1043 _atspi_dbus_attribute_array_from_message (DBusMessage *message)
1044 {
1045   DBusMessageIter iter;
1046
1047   _ATSPI_DBUS_CHECK_SIG (message, "a{ss}", NULL);
1048
1049   dbus_message_iter_init (message, &iter);
1050
1051   return _atspi_dbus_attribute_array_from_iter (&iter);
1052 }
1053
1054 GArray *
1055 _atspi_dbus_attribute_array_from_iter (DBusMessageIter *iter)
1056 {
1057   DBusMessageIter iter_array, iter_dict;
1058   GArray *array = g_array_new (TRUE, TRUE, sizeof (gchar *));
1059   gint count = 0;
1060
1061   dbus_message_iter_recurse (iter, &iter_array);
1062   while (dbus_message_iter_get_arg_type (&iter_array) != DBUS_TYPE_INVALID)
1063   {
1064     const char *name, *value;
1065     gchar *str;
1066     GArray *new_array;
1067     dbus_message_iter_recurse (&iter_array, &iter_dict);
1068     dbus_message_iter_get_basic (&iter_dict, &name);
1069     dbus_message_iter_next (&iter_dict);
1070     dbus_message_iter_get_basic (&iter_dict, &value);
1071     str = g_strdup_printf ("%s:%s", name, value);
1072     new_array = g_array_append_val (array, str);
1073     if (new_array)
1074       array = new_array;
1075     dbus_message_iter_next (&iter_array);;
1076   }
1077   return array;
1078 }
1079