Fix crash, when dbus call in GetNeighbor fails
[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  * Copyright 2010, 2011 Novell, Inc.
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Library General Public
11  * License as published by the Free Software Foundation; either
12  * version 2 of the License, or (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Library General Public License for more details.
18  *
19  * You should have received a copy of the GNU Library General Public
20  * License along with this library; if not, write to the
21  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22  * Boston, MA 02111-1307, USA.
23  */
24
25 /*
26  *
27  * Basic SPI initialization and event loop function prototypes
28  *
29  */
30
31 #include "atspi-private.h"
32 #ifdef HAVE_X11
33 #include "X11/Xlib.h"
34 #endif
35 #include "atspi-gmain.h"
36 #include <stdio.h>
37 #include <string.h>
38
39 static void handle_get_items (DBusPendingCall *pending, void *user_data);
40
41 static DBusConnection *bus = NULL;
42 static GHashTable *live_refs = NULL;
43 static gint method_call_timeout = 800;
44 static gint app_startup_time = 15000;
45 static gboolean allow_sync = TRUE;
46
47 GMainLoop *atspi_main_loop;
48 GMainContext *atspi_main_context;
49 gboolean atspi_no_cache;
50
51 const char *atspi_path_dec = ATSPI_DBUS_PATH_DEC;
52 const char *atspi_path_registry = ATSPI_DBUS_PATH_REGISTRY;
53 const char *atspi_path_root = ATSPI_DBUS_PATH_ROOT;
54 const char *atspi_bus_registry = ATSPI_DBUS_NAME_REGISTRY;
55 const char *atspi_interface_accessible = ATSPI_DBUS_INTERFACE_ACCESSIBLE;
56 const char *atspi_interface_action = ATSPI_DBUS_INTERFACE_ACTION;
57 const char *atspi_interface_application = ATSPI_DBUS_INTERFACE_APPLICATION;
58 const char *atspi_interface_collection = ATSPI_DBUS_INTERFACE_COLLECTION;
59 const char *atspi_interface_component = ATSPI_DBUS_INTERFACE_COMPONENT;
60 const char *atspi_interface_dec = ATSPI_DBUS_INTERFACE_DEC;
61 const char *atspi_interface_device_event_listener = ATSPI_DBUS_INTERFACE_DEVICE_EVENT_LISTENER;
62 const char *atspi_interface_document = ATSPI_DBUS_INTERFACE_DOCUMENT;
63 const char *atspi_interface_editable_text = ATSPI_DBUS_INTERFACE_EDITABLE_TEXT;
64 const char *atspi_interface_event_object = ATSPI_DBUS_INTERFACE_EVENT_OBJECT;
65 const char *atspi_interface_hyperlink = ATSPI_DBUS_INTERFACE_HYPERLINK;
66 const char *atspi_interface_hypertext = ATSPI_DBUS_INTERFACE_HYPERTEXT;
67 const char *atspi_interface_image = ATSPI_DBUS_INTERFACE_IMAGE;
68 const char *atspi_interface_registry = ATSPI_DBUS_INTERFACE_REGISTRY;
69 const char *atspi_interface_selection = ATSPI_DBUS_INTERFACE_SELECTION;
70 const char *atspi_interface_table = ATSPI_DBUS_INTERFACE_TABLE;
71 const char *atspi_interface_table_cell = ATSPI_DBUS_INTERFACE_TABLE_CELL;
72 const char *atspi_interface_text = ATSPI_DBUS_INTERFACE_TEXT;
73 const char *atspi_interface_cache = ATSPI_DBUS_INTERFACE_CACHE;
74 const char *atspi_interface_value = ATSPI_DBUS_INTERFACE_VALUE;
75
76 static const char *interfaces[] =
77 {
78   ATSPI_DBUS_INTERFACE_ACCESSIBLE,
79   ATSPI_DBUS_INTERFACE_ACTION,
80   ATSPI_DBUS_INTERFACE_APPLICATION,
81   ATSPI_DBUS_INTERFACE_COLLECTION,
82   ATSPI_DBUS_INTERFACE_COMPONENT,
83   ATSPI_DBUS_INTERFACE_DOCUMENT,
84   ATSPI_DBUS_INTERFACE_EDITABLE_TEXT,
85   ATSPI_DBUS_INTERFACE_HYPERLINK,
86   ATSPI_DBUS_INTERFACE_HYPERTEXT,
87   ATSPI_DBUS_INTERFACE_IMAGE,
88   "org.a11y.atspi.LoginHelper",
89   ATSPI_DBUS_INTERFACE_SELECTION,
90   ATSPI_DBUS_INTERFACE_TABLE,
91   ATSPI_DBUS_INTERFACE_TABLE_CELL,
92   ATSPI_DBUS_INTERFACE_TEXT,
93   ATSPI_DBUS_INTERFACE_VALUE,
94   NULL
95 };
96
97 gint
98 _atspi_get_iface_num (const char *iface)
99 {
100   /* TODO: Use a binary search or hash to improve performance */
101   int i;
102
103   for (i = 0; interfaces[i]; i++)
104   {
105     if (!strcmp(iface, interfaces[i])) return i;
106   }
107   return -1;
108 }
109
110 GHashTable *
111 _atspi_get_live_refs (void)
112 {
113   if (!live_refs)
114     {
115       live_refs = g_hash_table_new (g_direct_hash, g_direct_equal);
116     }
117   return live_refs;
118 }
119
120 /* TODO: Add an application parameter */
121 DBusConnection *
122 _atspi_bus ()
123 {
124   if (!bus)
125     atspi_init ();
126   if (!bus)
127     g_error ("AT-SPI: Couldn't connect to accessibility bus. Is at-spi-bus-launcher running?");
128   return bus;
129 }
130
131 #define APP_IS_REGISTRY(app) (!strcmp (app->bus_name, atspi_bus_registry))
132
133 static AtspiAccessible *desktop;
134
135 static void
136 cleanup ()
137 {
138   GHashTable *refs;
139   GList *l;
140
141   refs = live_refs;
142   live_refs = NULL;
143   if (refs)
144     {
145       g_hash_table_destroy (refs);
146     }
147
148   if (bus)
149     {
150       dbus_connection_close (bus);
151       dbus_connection_unref (bus);
152       bus = NULL;
153     }
154
155   if (!desktop)
156     return;
157   for (l = desktop->children; l;)
158   {
159     GList *next = l->next;
160     AtspiAccessible *child = l->data;
161     g_object_run_dispose (G_OBJECT (child->parent.app));
162     g_object_run_dispose (G_OBJECT (child));
163     l = next;
164   }
165   g_object_run_dispose (G_OBJECT (desktop->parent.app));
166   g_object_unref (desktop);
167   desktop = NULL;
168 }
169
170 static gboolean atspi_inited = FALSE;
171
172 static GHashTable *app_hash = NULL;
173
174 static void
175 handle_get_bus_address (DBusPendingCall *pending, void *user_data)
176 {
177   AtspiApplication *app = user_data;
178   DBusMessage *reply = dbus_pending_call_steal_reply (pending);
179   DBusMessage *message;
180   const char *address;
181   DBusPendingCall *new_pending;
182
183   if (dbus_message_get_type (reply) == DBUS_MESSAGE_TYPE_METHOD_RETURN)
184   {
185     if (dbus_message_get_args (reply, NULL, DBUS_TYPE_STRING, &address,
186                                DBUS_TYPE_INVALID) && address [0])
187     {
188       DBusError error;
189       DBusConnection *bus;
190
191       dbus_error_init (&error);
192       bus = dbus_connection_open_private (address, &error);
193       if (bus)
194       {
195         if (app->bus)
196           {
197             dbus_connection_unref (app->bus);
198           }
199         app->bus = bus;
200       }
201       else
202       {
203         g_warning ("Unable to open bus connection: %s", error.message);
204         dbus_error_free (&error);
205       }
206     }
207   }
208   dbus_message_unref (reply);
209   dbus_pending_call_unref (pending);
210
211   if (!app->bus)
212     return; /* application has gone away / been disposed */
213
214   message = dbus_message_new_method_call (app->bus_name,
215                                           "/org/a11y/atspi/cache",
216                                           atspi_interface_cache, "GetItems");
217
218   dbus_connection_send_with_reply (app->bus, message, &new_pending, 2000);
219   dbus_message_unref (message);
220   if (!new_pending)
221     return;
222   dbus_pending_call_set_notify (new_pending, handle_get_items, app, NULL);
223 }
224
225 static AtspiApplication *
226 get_application (const char *bus_name)
227 {
228   AtspiApplication *app = NULL;
229   char *bus_name_dup;
230   DBusMessage *message;
231   DBusPendingCall *pending = NULL;
232
233   if (!app_hash)
234   {
235     app_hash = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, (GDestroyNotify)g_object_unref);
236     if (!app_hash) return NULL;
237   }
238   app = g_hash_table_lookup (app_hash, bus_name);
239   if (app) return app;
240   bus_name_dup = g_strdup (bus_name);
241   if (!bus_name_dup) return NULL;
242   // TODO: change below to something that will send state-change:defunct notification if necessary */
243   app = _atspi_application_new (bus_name);
244   app->hash = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_object_unref);
245   app->bus = dbus_connection_ref (_atspi_bus ());
246   gettimeofday (&app->time_added, NULL);
247   app->cache = ATSPI_CACHE_UNDEFINED;
248   g_hash_table_insert (app_hash, bus_name_dup, app);
249   message = dbus_message_new_method_call (bus_name, atspi_path_root,
250                                           atspi_interface_application, "GetApplicationBusAddress");
251
252   dbus_connection_send_with_reply (app->bus, message, &pending, 2000);
253   dbus_message_unref (message);
254   if (!pending)
255   {
256     g_hash_table_remove (app_hash, bus_name_dup);
257     return NULL;
258   }
259   dbus_pending_call_set_notify (pending, handle_get_bus_address, app, NULL);
260   return app;
261 }
262
263 AtspiAccessible *
264 ref_accessible (const char *app_name, const char *path)
265 {
266   AtspiApplication *app;
267   AtspiAccessible *a;
268
269   if (!strcmp (path, ATSPI_DBUS_PATH_NULL))
270     return NULL;
271
272   app = get_application (app_name);
273
274   if (!strcmp (path, "/org/a11y/atspi/accessible/root"))
275   {
276     if (!app->root)
277     {
278       app->root = _atspi_accessible_new (app, atspi_path_root);
279       app->root->accessible_parent = atspi_get_desktop (0);
280       app->root->accessible_parent->children = g_list_append (app->root->accessible_parent->children, g_object_ref (app->root));
281     }
282     return g_object_ref (app->root);
283   }
284
285   a = g_hash_table_lookup (app->hash, path);
286   if (a)
287   {
288     return g_object_ref (a);
289   }
290   a = _atspi_accessible_new (app, path);
291   if (!a)
292     return NULL;
293   g_hash_table_insert (app->hash, g_strdup (a->parent.path), g_object_ref (a));
294   return a;
295 }
296
297 static AtspiHyperlink *
298 ref_hyperlink (const char *app_name, const char *path)
299 {
300   AtspiApplication *app = get_application (app_name);
301   AtspiHyperlink *hyperlink;
302
303   if (!strcmp (path, ATSPI_DBUS_PATH_NULL))
304     return NULL;
305
306   hyperlink = g_hash_table_lookup (app->hash, path);
307   if (hyperlink)
308   {
309     return g_object_ref (hyperlink);
310   }
311   hyperlink = _atspi_hyperlink_new (app, path);
312   g_hash_table_insert (app->hash, g_strdup (hyperlink->parent.path), hyperlink);
313   /* TODO: This should be a weak ref */
314   g_object_ref (hyperlink);     /* for the hash */
315   return hyperlink;
316 }
317
318 typedef struct
319 {
320   char *path;
321   char *parent;
322   GArray *children;
323   GArray *interfaces;
324   char *name;
325   dbus_uint32_t role;
326   char *description;
327   GArray *state_bitflags;
328 } CACHE_ADDITION;
329
330 static DBusHandlerResult
331 handle_remove_accessible (DBusConnection *bus, DBusMessage *message, void *user_data)
332 {
333   const char *sender = dbus_message_get_sender (message);
334   AtspiApplication *app;
335   const char *path;
336   DBusMessageIter iter, iter_struct;
337   const char *signature = dbus_message_get_signature (message);
338   AtspiAccessible *a;
339
340   if (strcmp (signature, "(so)") != 0)
341   {
342     g_warning ("AT-SPI: Unknown signature %s for RemoveAccessible", signature);
343     return DBUS_HANDLER_RESULT_HANDLED;
344   }
345
346   dbus_message_iter_init (message, &iter);
347   dbus_message_iter_recurse (&iter, &iter_struct);
348   dbus_message_iter_get_basic (&iter_struct, &sender);
349   dbus_message_iter_next (&iter_struct);
350   dbus_message_iter_get_basic (&iter_struct, &path);
351   app = get_application (sender);
352   a = ref_accessible (sender, path);
353   if (!a)
354     return DBUS_HANDLER_RESULT_HANDLED;
355   g_object_run_dispose (G_OBJECT (a));
356   g_hash_table_remove (app->hash, a->parent.path);
357   g_object_unref (a);   /* unref our own ref */
358   return DBUS_HANDLER_RESULT_HANDLED;
359 }
360
361 static DBusHandlerResult
362 handle_name_owner_changed (DBusConnection *bus, DBusMessage *message, void *user_data)
363 {
364   const char *name, *new, *old;
365   static gboolean registry_lost = FALSE;
366
367   if (!dbus_message_get_args (message, NULL,
368                               DBUS_TYPE_STRING, &name,
369                               DBUS_TYPE_STRING, &old,
370                               DBUS_TYPE_STRING, &new,
371                               DBUS_TYPE_INVALID))
372   {
373     return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
374   }
375
376   if (!strcmp (name, "org.a11y.atspi.Registry"))
377   {
378     if (registry_lost && !old[0])
379     {
380       _atspi_reregister_event_listeners ();
381       _atspi_reregister_device_listeners ();
382       registry_lost = FALSE;
383     }
384     else if (!new[0])
385       registry_lost = TRUE;
386   }
387   else if (app_hash)
388   {
389     AtspiApplication *app = g_hash_table_lookup (app_hash, old);
390     if (app && app->bus_name && !strcmp(app->bus_name, name))
391       g_object_run_dispose (G_OBJECT (app));
392   }
393   return DBUS_HANDLER_RESULT_HANDLED;
394 }
395
396 static gboolean
397 add_app_to_desktop (AtspiAccessible *a, const char *bus_name)
398 {
399   AtspiAccessible *obj = ref_accessible (bus_name, atspi_path_root);
400   /* The app will be added to the desktop as a side-effect of calling
401    * ref_accessible */
402   g_object_unref (obj);
403   return (obj != NULL);
404 }
405
406 void
407 get_reference_from_iter (DBusMessageIter *iter, const char **app_name, const char **path)
408 {
409   DBusMessageIter iter_struct;
410
411   dbus_message_iter_recurse (iter, &iter_struct);
412   dbus_message_iter_get_basic (&iter_struct, app_name);
413   dbus_message_iter_next (&iter_struct);
414   dbus_message_iter_get_basic (&iter_struct, path);
415   dbus_message_iter_next (iter);
416 }
417
418 static void
419 add_accessible_from_iter (DBusMessageIter *iter)
420 {
421   DBusMessageIter iter_struct, iter_array;
422   const char *app_name, *path;
423   AtspiAccessible *accessible;
424   const char *name, *description;
425   dbus_uint32_t role;
426
427   dbus_message_iter_recurse (iter, &iter_struct);
428
429   /* get accessible */
430   get_reference_from_iter (&iter_struct, &app_name, &path);
431   accessible = ref_accessible (app_name, path);
432   if (!accessible)
433     return;
434
435   /* Get application: TODO */
436   dbus_message_iter_next (&iter_struct);
437
438   /* get parent */
439   get_reference_from_iter (&iter_struct, &app_name, &path);
440   if (accessible->accessible_parent)
441     g_object_unref (accessible->accessible_parent);
442   accessible->accessible_parent = ref_accessible (app_name, path);
443
444   /* Get children */
445   while (accessible->children)
446   {
447     g_object_unref (accessible->children->data);
448     accessible->children = g_list_remove (accessible->children, accessible->children->data);
449   }
450   dbus_message_iter_recurse (&iter_struct, &iter_array);
451   while (dbus_message_iter_get_arg_type (&iter_array) != DBUS_TYPE_INVALID)
452   {
453     AtspiAccessible *child;
454     get_reference_from_iter (&iter_array, &app_name, &path);
455     child = ref_accessible (app_name, path);
456     accessible->children = g_list_append (accessible->children, child);
457   }
458
459   /* interfaces */
460   dbus_message_iter_next (&iter_struct);
461   _atspi_dbus_set_interfaces (accessible, &iter_struct);
462   dbus_message_iter_next (&iter_struct);
463
464   /* name */
465   if (accessible->name)
466     g_free (accessible->name);
467   dbus_message_iter_get_basic (&iter_struct, &name);
468   accessible->name = g_strdup (name);
469   dbus_message_iter_next (&iter_struct);
470
471   /* role */
472   dbus_message_iter_get_basic (&iter_struct, &role);
473   accessible->role = role;
474   dbus_message_iter_next (&iter_struct);
475
476   /* description */
477   if (accessible->description)
478     g_free (accessible->description);
479   dbus_message_iter_get_basic (&iter_struct, &description);
480   accessible->description = g_strdup (description);
481   dbus_message_iter_next (&iter_struct);
482
483   _atspi_dbus_set_state (accessible, &iter_struct);
484   dbus_message_iter_next (&iter_struct);
485
486   _atspi_accessible_add_cache (accessible, ATSPI_CACHE_NAME | ATSPI_CACHE_ROLE |
487                                ATSPI_CACHE_PARENT | ATSPI_CACHE_DESCRIPTION);
488   if (!atspi_state_set_contains (accessible->states,
489                                        ATSPI_STATE_MANAGES_DESCENDANTS))
490     _atspi_accessible_add_cache (accessible, ATSPI_CACHE_CHILDREN);
491
492   /* This is a bit of a hack since the cache holds a ref, so we don't need
493    * the one provided for us anymore */
494   g_object_unref (accessible);
495 }
496
497 static void
498 handle_get_items (DBusPendingCall *pending, void *user_data)
499 {
500   DBusMessage *reply = dbus_pending_call_steal_reply (pending);
501   DBusMessageIter iter, iter_array;
502
503   if (dbus_message_get_type (reply) == DBUS_MESSAGE_TYPE_ERROR)
504   {
505     const char *sender = dbus_message_get_sender (reply);
506     const char *error = NULL;
507     dbus_message_get_args (reply, NULL, DBUS_TYPE_STRING, &error,
508                            DBUS_TYPE_INVALID);
509     g_warning ("AT-SPI: Error in GetItems, sender=%s, error=%s", sender, error);
510     dbus_message_unref (reply);
511     dbus_pending_call_unref (pending);
512     return;
513   }
514
515   dbus_message_iter_init (reply, &iter);
516   dbus_message_iter_recurse (&iter, &iter_array);
517   while (dbus_message_iter_get_arg_type (&iter_array) != DBUS_TYPE_INVALID)
518   {
519     add_accessible_from_iter (&iter_array);
520     dbus_message_iter_next (&iter_array);
521   }
522   dbus_message_unref (reply);
523   dbus_pending_call_unref (pending);
524 }
525
526 /* TODO: Do we stil need this function? */
527 static AtspiAccessible *
528 ref_accessible_desktop (AtspiApplication *app)
529 {
530   GError *error;
531   DBusMessage *message, *reply;
532   DBusMessageIter iter, iter_array;
533   gchar *bus_name_dup;
534
535   if (desktop)
536   {
537     g_object_ref (desktop);
538     return desktop;
539   }
540   desktop = _atspi_accessible_new (app, atspi_path_root);
541   if (!desktop)
542   {
543     return NULL;
544   }
545   g_hash_table_insert (app->hash, g_strdup (desktop->parent.path),
546                        g_object_ref (desktop));
547   app->root = g_object_ref (desktop);
548   desktop->name = g_strdup ("main");
549   message = dbus_message_new_method_call (atspi_bus_registry,
550         atspi_path_root,
551         atspi_interface_accessible,
552         "GetChildren");
553   if (!message)
554     return NULL;
555   error = NULL;
556   reply = _atspi_dbus_send_with_reply_and_block (message, &error);
557   if (!reply || strcmp (dbus_message_get_signature (reply), "a(so)") != 0)
558   {
559     if (error != NULL)
560     {
561       g_warning ("Couldn't get application list: %s", error->message);
562       g_clear_error (&error);
563     }
564     if (reply)
565       dbus_message_unref (reply);
566     return NULL;
567   }
568   dbus_message_iter_init (reply, &iter);
569   dbus_message_iter_recurse (&iter, &iter_array);
570   while (dbus_message_iter_get_arg_type (&iter_array) != DBUS_TYPE_INVALID)
571   {
572     const char *app_name, *path;
573     get_reference_from_iter (&iter_array, &app_name, &path);
574     add_app_to_desktop (desktop, app_name);
575   }
576   dbus_message_unref (reply);
577
578   /* Record the alternate name as an alias for org.a11y.atspi.Registry */
579   bus_name_dup = g_strdup (dbus_message_get_sender (reply));
580   if (bus_name_dup)
581     g_hash_table_insert (app_hash, bus_name_dup, app);
582
583   return g_object_ref (desktop);
584 }
585
586 AtspiAccessible *
587 _atspi_ref_accessible (const char *app, const char *path)
588 {
589   AtspiApplication *a = get_application (app);
590   if (!a)
591     return NULL;
592   if ( APP_IS_REGISTRY(a))
593   {
594     if (!a->root)
595       g_object_unref (ref_accessible_desktop (a));      /* sets a->root */
596     return g_object_ref (a->root);
597   }
598   return ref_accessible (app, path);
599 }
600
601 AtspiAccessible *
602 _atspi_dbus_return_accessible_from_message (DBusMessage *message)
603 {
604   DBusMessageIter iter;
605   AtspiAccessible *retval = NULL;
606   const char *signature;
607
608   if (!message)
609     return NULL;
610
611   signature = dbus_message_get_signature (message);
612   if (!strcmp (signature, "(so)"))
613   {
614     dbus_message_iter_init (message, &iter);
615     retval =  _atspi_dbus_return_accessible_from_iter (&iter);
616   }
617   else
618   {
619     g_warning ("AT-SPI: Called _atspi_dbus_return_accessible_from_message with strange signature %s", signature);
620   }
621   dbus_message_unref (message);
622   return retval;
623 }
624
625 AtspiAccessible *
626 _atspi_dbus_return_accessible_from_iter (DBusMessageIter *iter)
627 {
628   const char *app_name, *path;
629
630   get_reference_from_iter (iter, &app_name, &path);
631   return ref_accessible (app_name, path);
632 }
633
634 AtspiHyperlink *
635 _atspi_dbus_return_hyperlink_from_message (DBusMessage *message)
636 {
637   DBusMessageIter iter;
638   AtspiHyperlink *retval = NULL;
639   const char *signature;
640
641   if (!message)
642     return NULL;
643
644   signature = dbus_message_get_signature (message);
645   if (!strcmp (signature, "(so)"))
646   {
647     dbus_message_iter_init (message, &iter);
648     retval =  _atspi_dbus_return_hyperlink_from_iter (&iter);
649   }
650   else
651   {
652     g_warning ("AT-SPI: Called _atspi_dbus_return_hyperlink_from_message with strange signature %s", signature);
653   }
654   dbus_message_unref (message);
655   return retval;
656 }
657
658 AtspiHyperlink *
659 _atspi_dbus_return_hyperlink_from_iter (DBusMessageIter *iter)
660 {
661   const char *app_name, *path;
662
663   get_reference_from_iter (iter, &app_name, &path);
664   return ref_hyperlink (app_name, path);
665 }
666
667 const char *cache_signal_type = "((so)(so)(so)a(so)assusau)";
668
669 static DBusHandlerResult
670 handle_add_accessible (DBusConnection *bus, DBusMessage *message, void *user_data)
671 {
672   DBusMessageIter iter;
673
674   if (strcmp (dbus_message_get_signature (message), cache_signal_type) != 0)
675   {
676     g_warning ("AT-SPI: AddAccessible with unknown signature %s\n",
677                dbus_message_get_signature (message));
678     return DBUS_HANDLER_RESULT_HANDLED;
679   }
680
681   dbus_message_iter_init (message, &iter);
682   add_accessible_from_iter (&iter);
683   return DBUS_HANDLER_RESULT_HANDLED;
684 }
685
686 typedef struct
687 {
688   DBusConnection *bus;
689   DBusMessage *message;
690   void *data;
691 } BusDataClosure;
692
693 static GSource *process_deferred_messages_source = NULL;
694
695 static void
696 process_deferred_message (BusDataClosure *closure)
697 {
698   int type = dbus_message_get_type (closure->message);
699   const char *interface = dbus_message_get_interface (closure->message);
700
701   if (type == DBUS_MESSAGE_TYPE_SIGNAL &&
702       !strncmp (interface, "org.a11y.atspi.Event.", 21))
703   {
704     _atspi_dbus_handle_event (closure->bus, closure->message, closure->data);
705   }
706   if (dbus_message_is_method_call (closure->message, atspi_interface_device_event_listener, "NotifyEvent"))
707   {
708     _atspi_dbus_handle_DeviceEvent (closure->bus,
709                                    closure->message, closure->data);
710   }
711   if (dbus_message_is_signal (closure->message, atspi_interface_cache, "AddAccessible"))
712   {
713     handle_add_accessible (closure->bus, closure->message, closure->data);
714   }
715   if (dbus_message_is_signal (closure->message, atspi_interface_cache, "RemoveAccessible"))
716   {
717     handle_remove_accessible (closure->bus, closure->message, closure->data);
718   }
719   if (dbus_message_is_signal (closure->message, "org.freedesktop.DBus", "NameOwnerChanged"))
720   {
721     handle_name_owner_changed (closure->bus, closure->message, closure->data);
722   }
723 }
724
725 static GQueue *deferred_messages = NULL;
726
727 static gboolean
728 process_deferred_messages (void)
729 {
730   static int in_process_deferred_messages = 0;
731   BusDataClosure *closure;
732
733   if (in_process_deferred_messages)
734     return TRUE;
735   in_process_deferred_messages = 1;
736   while ((closure = g_queue_pop_head (deferred_messages)))
737   {
738     process_deferred_message (closure);
739     dbus_message_unref (closure->message);
740     dbus_connection_unref (closure->bus);
741     g_free (closure);
742   }
743   in_process_deferred_messages = 0;
744   return FALSE;
745 }
746
747 static gboolean
748 process_deferred_messages_callback (gpointer data)
749 {
750   if (process_deferred_messages ())
751     return G_SOURCE_CONTINUE;
752
753   process_deferred_messages_source = NULL;
754   return G_SOURCE_REMOVE;
755 }
756
757 static DBusHandlerResult
758 defer_message (DBusConnection *connection, DBusMessage *message, void *user_data)
759 {
760   BusDataClosure *closure = g_new (BusDataClosure, 1);
761
762   closure->bus = dbus_connection_ref (bus);
763   closure->message = dbus_message_ref (message);
764   closure->data = user_data;
765
766   g_queue_push_tail (deferred_messages, closure);
767
768   if (process_deferred_messages_source == NULL)
769   {
770     process_deferred_messages_source = g_idle_source_new ();
771     g_source_set_callback (process_deferred_messages_source,
772                            process_deferred_messages_callback, NULL, NULL);
773     g_source_attach (process_deferred_messages_source, atspi_main_context);
774     g_source_unref (process_deferred_messages_source);
775   }
776
777   return DBUS_HANDLER_RESULT_HANDLED;
778 }
779
780 static DBusHandlerResult
781 atspi_dbus_filter (DBusConnection *bus, DBusMessage *message, void *data)
782 {
783   int type = dbus_message_get_type (message);
784   const char *interface = dbus_message_get_interface (message);
785
786   if (type == DBUS_MESSAGE_TYPE_SIGNAL &&
787       !strncmp (interface, "org.a11y.atspi.Event.", 21))
788   {
789     return defer_message (bus, message, data);
790   }
791   if (dbus_message_is_method_call (message, atspi_interface_device_event_listener, "NotifyEvent"))
792   {
793     return defer_message (bus, message, data);
794   }
795   if (dbus_message_is_signal (message, atspi_interface_cache, "AddAccessible"))
796   {
797     return defer_message (bus, message, data);
798   }
799   if (dbus_message_is_signal (message, atspi_interface_cache, "RemoveAccessible"))
800   {
801     return defer_message (bus, message, data);
802   }
803   if (dbus_message_is_signal (message, "org.freedesktop.DBus", "NameOwnerChanged"))
804   {
805     defer_message (bus, message, data);
806     return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
807   }
808   return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
809 }
810
811 /*
812  * Returns a 'canonicalized' value for DISPLAY,
813  * with the screen number stripped off if present.
814  *
815  * TODO: Avoid having duplicate functions for this here and in at-spi2-atk
816  */
817 static gchar *
818 spi_display_name (void)
819 {
820   char *canonical_display_name = NULL;
821   const gchar *display_env = g_getenv ("AT_SPI_DISPLAY");
822
823   if (!display_env)
824     {
825       display_env = g_getenv ("DISPLAY");
826       if (!display_env || !display_env[0])
827         return NULL;
828       else
829         {
830           gchar *display_p, *screen_p;
831           canonical_display_name = g_strdup (display_env);
832           display_p = g_utf8_strrchr (canonical_display_name, -1, ':');
833           screen_p = g_utf8_strrchr (canonical_display_name, -1, '.');
834           if (screen_p && display_p && (screen_p > display_p))
835             {
836               *screen_p = '\0';
837             }
838         }
839     }
840   else
841     {
842       canonical_display_name = g_strdup (display_env);
843     }
844
845   return canonical_display_name;
846 }
847
848 /**
849  * atspi_init:
850  *
851  * Connects to the accessibility registry and initializes the SPI.
852  *
853  * Returns: 0 on success, 1 if already initialized, or an integer error code.
854  **/
855 int
856 atspi_init (void)
857 {
858   char *match;
859   const gchar *no_cache;
860
861   if (atspi_inited)
862     {
863       return 1;
864     }
865
866   atspi_inited = TRUE;
867
868   _atspi_get_live_refs();
869
870   bus = atspi_get_a11y_bus ();
871   if (!bus)
872     return 2;
873   dbus_bus_register (bus, NULL);
874   atspi_dbus_connection_setup_with_g_main(bus, g_main_context_default());
875   dbus_connection_add_filter (bus, atspi_dbus_filter, NULL, NULL);
876   match = g_strdup_printf ("type='signal',interface='%s',member='AddAccessible'", atspi_interface_cache);
877   dbus_bus_add_match (bus, match, NULL);
878   g_free (match);
879   match = g_strdup_printf ("type='signal',interface='%s',member='RemoveAccessible'", atspi_interface_cache);
880   dbus_bus_add_match (bus, match, NULL);
881   g_free (match);
882   match = g_strdup_printf ("type='signal',interface='%s',member='ChildrenChanged'", atspi_interface_event_object);
883   dbus_bus_add_match (bus, match, NULL);
884   g_free (match);
885   match = g_strdup_printf ("type='signal',interface='%s',member='PropertyChange'", atspi_interface_event_object);
886   dbus_bus_add_match (bus, match, NULL);
887   g_free (match);
888   match = g_strdup_printf ("type='signal',interface='%s',member='StateChanged'", atspi_interface_event_object);
889   dbus_bus_add_match (bus, match, NULL);
890   g_free (match);
891
892   dbus_bus_add_match (bus,
893                       "type='signal', interface='org.freedesktop.DBus', member='NameOwnerChanged'",
894                       NULL);
895
896   no_cache = g_getenv ("ATSPI_NO_CACHE");
897   if (no_cache && g_strcmp0 (no_cache, "0") != 0)
898     atspi_no_cache = TRUE;
899
900   deferred_messages = g_queue_new ();
901
902   return 0;
903 }
904
905 /**
906  * atspi_is_initialized:
907  *
908  * Indicates whether AT-SPI has been initialized.
909  *
910  * Returns: %True if initialized; %False otherwise.
911  */
912 gboolean
913 atspi_is_initialized ()
914 {
915   return atspi_inited;
916 }
917
918 /**
919  * atspi_event_main:
920  *
921  * Starts/enters the main event loop for the AT-SPI services.
922  *
923  * NOTE: This method does not return control; it is exited via a call to
924  * #atspi_event_quit from within an event handler.
925  *
926  **/
927 void
928 atspi_event_main (void)
929 {
930   atspi_main_loop = g_main_loop_new (NULL, FALSE);
931   g_main_loop_run (atspi_main_loop);
932   atspi_main_loop = NULL;
933 }
934
935 /**
936  * atspi_event_quit:
937  *
938  * Quits the last main event loop for the AT-SPI services,
939  * See: #atspi_event_main
940  **/
941 void
942 atspi_event_quit (void)
943 {
944   g_main_loop_quit (atspi_main_loop);
945 }
946
947 /**
948  * atspi_exit:
949  *
950  * Disconnects from #AtspiRegistry instances and releases
951  * any floating resources. Call only once at exit.
952  *
953  * Returns: 0 if there were no leaks, otherwise other integer values.
954  **/
955 int
956 atspi_exit (void)
957 {
958   int leaked;
959
960   if (!atspi_inited)
961     {
962       return 0;
963     }
964
965   atspi_inited = FALSE;
966
967   if (live_refs)
968     {
969       leaked = g_hash_table_size (live_refs);
970     }
971   else
972     {
973       leaked = 0;
974     }
975
976   cleanup ();
977
978   return leaked;
979 }
980
981 static GSList *hung_processes;
982
983 static void
984 remove_hung_process (DBusPendingCall *pending, void *data)
985 {
986
987   hung_processes = g_slist_remove (hung_processes, data);
988   g_free (data);
989   dbus_pending_call_unref (pending);
990 }
991
992 static void
993 check_for_hang (DBusMessage *message, DBusError *error, DBusConnection *bus, const char *bus_name)
994 {
995   if (!message && error->name &&
996       !strcmp (error->name, "org.freedesktop.DBus.Error.NoReply"))
997   {
998     GSList *l;
999     DBusMessage *message;
1000     gchar *bus_name_dup;
1001     DBusPendingCall *pending = NULL;
1002     for (l = hung_processes; l; l = l->next)
1003       if (!strcmp (l->data, bus_name))
1004         return;
1005     message = dbus_message_new_method_call (bus_name, "/",
1006                                             "org.freedesktop.DBus.Peer",
1007                                             "Ping");
1008     if (!message)
1009       return;
1010     dbus_connection_send_with_reply (bus, message, &pending, -1);
1011     dbus_message_unref (message);
1012     if (!pending)
1013       return;
1014     bus_name_dup = g_strdup (bus_name);
1015     hung_processes = g_slist_append (hung_processes, bus_name_dup);
1016     dbus_pending_call_set_notify (pending, remove_hung_process, bus_name_dup, NULL);
1017   }
1018 }
1019
1020 static gboolean
1021 connection_is_hung (const char *bus_name)
1022 {
1023   GSList *l;
1024
1025   for (l = hung_processes; l; l = l->next)
1026     if (!strcmp (l->data, bus_name))
1027       return TRUE;
1028   return FALSE;
1029 }
1030
1031 static gboolean
1032 check_app (AtspiApplication *app, GError **error)
1033 {
1034   if (!app || !app->bus)
1035   {
1036     g_set_error_literal (error, ATSPI_ERROR, ATSPI_ERROR_APPLICATION_GONE,
1037                           _("The application no longer exists"));
1038     return FALSE;
1039   }
1040
1041   if (atspi_main_loop && connection_is_hung (app->bus_name))
1042   {
1043       g_set_error_literal (error, ATSPI_ERROR, ATSPI_ERROR_IPC,
1044                            "The process appears to be hung.");
1045     return FALSE;
1046   }
1047
1048   return TRUE;
1049 }
1050
1051 static void
1052 set_timeout (AtspiApplication *app)
1053 {
1054   struct timeval tv;
1055   int diff;
1056
1057   if (app && app_startup_time > 0)
1058   {
1059     gettimeofday (&tv, NULL);
1060     diff = (tv.tv_sec - app->time_added.tv_sec) * 1000 + (tv.tv_usec - app->time_added.tv_usec) / 1000;
1061     dbind_set_timeout (MAX(method_call_timeout, app_startup_time - diff));
1062   }
1063   else
1064     dbind_set_timeout (method_call_timeout);
1065 }
1066
1067 dbus_bool_t
1068 _atspi_dbus_call (gpointer obj, const char *interface, const char *method, GError **error, const char *type, ...)
1069 {
1070   va_list args;
1071   dbus_bool_t retval;
1072   DBusError err;
1073   AtspiObject *aobj = ATSPI_OBJECT (obj);
1074
1075   if (!check_app (aobj->app, error))
1076     return FALSE;
1077
1078   if (!allow_sync)
1079   {
1080     _atspi_set_error_no_sync (error);
1081     return FALSE;
1082   }
1083
1084   va_start (args, type);
1085   dbus_error_init (&err);
1086   set_timeout (aobj->app);
1087   retval = dbind_method_call_reentrant_va (aobj->app->bus, aobj->app->bus_name,
1088                                            aobj->path, interface, method, &err,
1089                                            type, args);
1090   va_end (args);
1091   check_for_hang (NULL, &err, aobj->app->bus, aobj->app->bus_name);
1092   process_deferred_messages ();
1093   if (dbus_error_is_set (&err))
1094   {
1095     g_set_error(error, ATSPI_ERROR, ATSPI_ERROR_IPC, "%s", err.message);
1096     dbus_error_free (&err);
1097   }
1098   return retval;
1099 }
1100
1101 DBusMessage *
1102 _atspi_dbus_call_partial (gpointer obj,
1103                           const char *interface,
1104                           const char *method,
1105                           GError **error,
1106                           const char *type, ...)
1107 {
1108   va_list args;
1109
1110   va_start (args, type);
1111   return _atspi_dbus_call_partial_va (obj, interface, method, error, type, args);
1112 }
1113
1114
1115 DBusMessage *
1116 _atspi_dbus_call_partial_va (gpointer obj,
1117                           const char *interface,
1118                           const char *method,
1119                           GError **error,
1120                           const char *type,
1121                           va_list args)
1122 {
1123   AtspiObject *aobj = ATSPI_OBJECT (obj);
1124   DBusError err;
1125   DBusMessage *msg = NULL, *reply = NULL;
1126   DBusMessageIter iter;
1127   const char *p;
1128
1129   dbus_error_init (&err);
1130
1131   if (!check_app (aobj->app, error))
1132     goto out;
1133
1134   msg = dbus_message_new_method_call (aobj->app->bus_name, aobj->path, interface, method);
1135   if (!msg)
1136     goto out;
1137
1138   p = type;
1139   dbus_message_iter_init_append (msg, &iter);
1140   dbind_any_marshal_va (&iter, &p, args);
1141
1142   set_timeout (aobj->app);
1143   reply = dbind_send_and_allow_reentry (aobj->app->bus, msg, &err);
1144   check_for_hang (reply, &err, aobj->app->bus, aobj->app->bus_name);
1145 out:
1146   va_end (args);
1147   if (msg)
1148     dbus_message_unref (msg);
1149   process_deferred_messages ();
1150   if (dbus_error_is_set (&err))
1151   {
1152     g_set_error_literal(error, ATSPI_ERROR, ATSPI_ERROR_IPC, err.message);
1153     dbus_error_free (&err);
1154     if (reply)
1155       dbus_message_unref(reply);
1156     return NULL;
1157   }
1158   else if (reply && dbus_message_get_type(reply) == DBUS_MESSAGE_TYPE_ERROR)
1159   {
1160     const char *err_str = NULL;
1161     dbus_message_get_args (reply, NULL, DBUS_TYPE_STRING, &err_str, DBUS_TYPE_INVALID);
1162     if (err_str)
1163       g_set_error_literal (error, ATSPI_ERROR, ATSPI_ERROR_IPC, err_str);
1164     dbus_message_unref (reply);
1165     return NULL;
1166   }
1167   return reply;
1168 }
1169
1170 dbus_bool_t
1171 _atspi_dbus_get_property (gpointer obj, const char *interface, const char *name, GError **error, const char *type, void *data)
1172 {
1173   DBusMessage *message, *reply;
1174   DBusMessageIter iter, iter_variant;
1175   DBusError err;
1176   dbus_bool_t retval = FALSE;
1177   AtspiObject *aobj = ATSPI_OBJECT (obj);
1178   char expected_type = (type [0] == '(' ? 'r' : type [0]);
1179
1180   if (!aobj)
1181     return FALSE;
1182
1183   if (!check_app (aobj->app, error))
1184     return FALSE;
1185
1186   if (!allow_sync)
1187   {
1188     _atspi_set_error_no_sync (error);
1189     return FALSE;
1190   }
1191
1192   message = dbus_message_new_method_call (aobj->app->bus_name,
1193                                           aobj->path,
1194                                           "org.freedesktop.DBus.Properties",
1195                                           "Get");
1196   if (!message)
1197   {
1198     // TODO: throw exception
1199     return FALSE;
1200   }
1201   dbus_message_append_args (message, DBUS_TYPE_STRING, &interface, DBUS_TYPE_STRING, &name, DBUS_TYPE_INVALID);
1202   dbus_error_init (&err);
1203   set_timeout (aobj->app);
1204   reply = dbind_send_and_allow_reentry (aobj->app->bus, message, &err);
1205   check_for_hang (reply, &err, aobj->app->bus, aobj->app->bus_name);
1206   dbus_message_unref (message);
1207   process_deferred_messages ();
1208   if (!reply)
1209   {
1210     // TODO: throw exception
1211     goto done;
1212   }
1213
1214   if (dbus_message_get_type (reply) == DBUS_MESSAGE_TYPE_ERROR)
1215   {
1216     const char *err_str = NULL;
1217     dbus_message_get_args (reply, NULL, DBUS_TYPE_STRING, &err_str, DBUS_TYPE_INVALID);
1218     if (err_str)
1219       g_set_error_literal (error, ATSPI_ERROR, ATSPI_ERROR_IPC, err_str);
1220     goto done;
1221   }
1222
1223   dbus_message_iter_init (reply, &iter);
1224   if (dbus_message_iter_get_arg_type (&iter) != 'v')
1225   {
1226     g_warning ("AT-SPI: expected a variant when fetching %s from interface %s; got %s\n", name, interface, dbus_message_get_signature (reply));
1227     goto done;
1228   }
1229   dbus_message_iter_recurse (&iter, &iter_variant);
1230   if (dbus_message_iter_get_arg_type (&iter_variant) != expected_type)
1231   {
1232     g_warning ("atspi_dbus_get_property: Wrong type: expected %s, got %c\n", type, dbus_message_iter_get_arg_type (&iter_variant));
1233     goto done;
1234   }
1235   if (!strcmp (type, "(so)"))
1236   {
1237     *((AtspiAccessible **)data) = _atspi_dbus_return_accessible_from_iter (&iter_variant);
1238   }
1239   else
1240   {
1241     dbus_message_iter_get_basic (&iter_variant, data);
1242     if (type [0] == 's')
1243       *(char **)data = g_strdup (*(char **)data);
1244   }
1245   retval = TRUE;
1246 done:
1247   dbus_error_free (&err);
1248   if (reply)
1249     dbus_message_unref (reply);
1250   return retval;
1251 }
1252
1253 DBusMessage *
1254 _atspi_dbus_send_with_reply_and_block (DBusMessage *message, GError **error)
1255 {
1256   DBusMessage *reply;
1257   DBusError err;
1258   AtspiApplication *app;
1259   DBusConnection *bus;
1260
1261   app = get_application (dbus_message_get_destination (message));
1262
1263   if (app && !app->bus)
1264     return NULL;        /* will fail anyway; app has been disposed */
1265
1266   bus = (app ? app->bus : _atspi_bus());
1267   dbus_error_init (&err);
1268   set_timeout (app);
1269   reply = dbind_send_and_allow_reentry (bus, message, &err);
1270   process_deferred_messages ();
1271   dbus_message_unref (message);
1272   if (dbus_error_is_set (&err))
1273   {
1274     if (error)
1275       g_set_error_literal (error, ATSPI_ERROR, ATSPI_ERROR_IPC, err.message);
1276     dbus_error_free (&err);
1277   }
1278   return reply;
1279 }
1280
1281 GHashTable *
1282 _atspi_dbus_return_hash_from_message (DBusMessage *message)
1283 {
1284   DBusMessageIter iter;
1285   GHashTable *ret;
1286
1287   if (!message)
1288     return NULL;
1289
1290   _ATSPI_DBUS_CHECK_SIG (message, "a{ss}", NULL, NULL);
1291
1292   dbus_message_iter_init (message, &iter);
1293   ret = _atspi_dbus_hash_from_iter (&iter);
1294   dbus_message_unref (message);
1295   return ret;
1296 }
1297
1298 GHashTable *
1299 _atspi_dbus_hash_from_iter (DBusMessageIter *iter)
1300 {
1301   GHashTable *hash = g_hash_table_new_full (g_str_hash, g_str_equal,
1302                                             (GDestroyNotify) g_free,
1303                                             (GDestroyNotify) g_free);
1304   DBusMessageIter iter_array, iter_dict;
1305
1306   dbus_message_iter_recurse (iter, &iter_array);
1307   while (dbus_message_iter_get_arg_type (&iter_array) != DBUS_TYPE_INVALID)
1308   {
1309     const char *name, *value;
1310     dbus_message_iter_recurse (&iter_array, &iter_dict);
1311     dbus_message_iter_get_basic (&iter_dict, &name);
1312     dbus_message_iter_next (&iter_dict);
1313     dbus_message_iter_get_basic (&iter_dict, &value);
1314     g_hash_table_insert (hash, g_strdup (name), g_strdup (value));
1315     dbus_message_iter_next (&iter_array);
1316   }
1317   return hash;
1318 }
1319
1320 GArray *
1321 _atspi_dbus_return_attribute_array_from_message (DBusMessage *message)
1322 {
1323   DBusMessageIter iter;
1324   GArray *ret;
1325
1326   if (!message)
1327     return NULL;
1328
1329   _ATSPI_DBUS_CHECK_SIG (message, "a{ss}", NULL, NULL);
1330
1331   dbus_message_iter_init (message, &iter);
1332
1333   ret = _atspi_dbus_attribute_array_from_iter (&iter);
1334   dbus_message_unref (message);
1335   return ret;
1336 }
1337
1338 GArray *
1339 _atspi_dbus_attribute_array_from_iter (DBusMessageIter *iter)
1340 {
1341   DBusMessageIter iter_array, iter_dict;
1342   GArray *array = g_array_new (TRUE, TRUE, sizeof (gchar *));
1343
1344   dbus_message_iter_recurse (iter, &iter_array);
1345   while (dbus_message_iter_get_arg_type (&iter_array) != DBUS_TYPE_INVALID)
1346   {
1347     const char *name, *value;
1348     gchar *str;
1349     dbus_message_iter_recurse (&iter_array, &iter_dict);
1350     dbus_message_iter_get_basic (&iter_dict, &name);
1351     dbus_message_iter_next (&iter_dict);
1352     dbus_message_iter_get_basic (&iter_dict, &value);
1353     str = g_strdup_printf ("%s:%s", name, value);
1354     array = g_array_append_val (array, str);
1355     dbus_message_iter_next (&iter_array);;
1356   }
1357   return array;
1358 }
1359
1360 void
1361 _atspi_dbus_set_interfaces (AtspiAccessible *accessible, DBusMessageIter *iter)
1362 {
1363   DBusMessageIter iter_array;
1364   char *iter_sig = dbus_message_iter_get_signature (iter);
1365
1366   accessible->interfaces = 0;
1367   if (strcmp (iter_sig, "as") != 0)
1368   {
1369     g_warning ("_atspi_dbus_set_interfaces: Passed iterator with invalid signature %s", dbus_message_iter_get_signature (iter));
1370     dbus_free (iter_sig);
1371     return;
1372   }
1373   dbus_free (iter_sig);
1374   dbus_message_iter_recurse (iter, &iter_array);
1375   while (dbus_message_iter_get_arg_type (&iter_array) != DBUS_TYPE_INVALID)
1376   {
1377     const char *iface;
1378     gint n;
1379     dbus_message_iter_get_basic (&iter_array, &iface);
1380     if (!strcmp (iface, "org.freedesktop.DBus.Introspectable")) continue;
1381     n = _atspi_get_iface_num (iface);
1382     if (n == -1)
1383     {
1384       g_warning ("AT-SPI: Unknown interface %s", iface);
1385     }
1386     else
1387       accessible->interfaces |= (1 << n);
1388     dbus_message_iter_next (&iter_array);
1389   }
1390   _atspi_accessible_add_cache (accessible, ATSPI_CACHE_INTERFACES);
1391 }
1392
1393 void
1394 _atspi_dbus_set_state (AtspiAccessible *accessible, DBusMessageIter *iter)
1395 {
1396   DBusMessageIter iter_array;
1397   gint count;
1398   dbus_uint32_t *states;
1399
1400   dbus_message_iter_recurse (iter, &iter_array);
1401   dbus_message_iter_get_fixed_array (&iter_array, &states, &count);
1402   if (count != 2)
1403   {
1404     g_warning ("AT-SPI: expected 2 values in states array; got %d\n", count);
1405     if (!accessible->states)
1406       accessible->states = _atspi_state_set_new_internal (accessible, 0);
1407   }
1408   else
1409   {
1410     guint64 val = ((guint64)states [1]) << 32;
1411     val += states [0];
1412     if (!accessible->states)
1413       accessible->states = _atspi_state_set_new_internal (accessible, val);
1414     else
1415       accessible->states->states = val;
1416   }
1417   _atspi_accessible_add_cache (accessible, ATSPI_CACHE_STATES);
1418 }
1419
1420 GQuark
1421 _atspi_error_quark (void)
1422 {
1423   return g_quark_from_static_string ("atspi_error");
1424 }
1425
1426 /*
1427  * Gets the IOR from the XDisplay.
1428  */
1429 #ifdef HAVE_X11
1430 static char *
1431 get_accessibility_bus_address_x11 (void)
1432 {
1433   Atom AT_SPI_BUS;
1434   Atom actual_type;
1435   Display *bridge_display = NULL;
1436   int actual_format;
1437   char *data;
1438   unsigned char *data_x11 = NULL;
1439   unsigned long nitems;
1440   unsigned long leftover;
1441   char *display_name;
1442
1443   display_name = spi_display_name ();
1444   if (!display_name)
1445     return NULL;
1446
1447   bridge_display = XOpenDisplay (display_name);
1448   g_free (display_name);
1449
1450   if (!bridge_display)
1451     {
1452       g_warning ("Could not open X display");
1453       return NULL;
1454     }
1455
1456   AT_SPI_BUS = XInternAtom (bridge_display, "AT_SPI_BUS", False);
1457   XGetWindowProperty (bridge_display,
1458                       XDefaultRootWindow (bridge_display),
1459                       AT_SPI_BUS, 0L,
1460                       (long) BUFSIZ, False,
1461                       (Atom) 31, &actual_type, &actual_format,
1462                       &nitems, &leftover, &data_x11);
1463   XCloseDisplay (bridge_display);
1464
1465   data = g_strdup ((gchar *)data_x11);
1466   XFree (data_x11);
1467   return data;
1468 }
1469 #endif
1470
1471 static char *
1472 get_accessibility_bus_address_dbus (void)
1473 {
1474   DBusConnection *session_bus = NULL;
1475   DBusMessage *message;
1476   DBusMessage *reply;
1477   DBusError error;
1478   char *address = NULL;
1479
1480   session_bus = dbus_bus_get (DBUS_BUS_SESSION, NULL);
1481   if (!session_bus)
1482     return NULL;
1483
1484   message = dbus_message_new_method_call ("org.a11y.Bus",
1485                                           "/org/a11y/bus",
1486                                           "org.a11y.Bus",
1487                                           "GetAddress");
1488
1489   dbus_error_init (&error);
1490   reply = dbus_connection_send_with_reply_and_block (session_bus,
1491                                                      message,
1492                                                      -1,
1493                                                      &error);
1494   dbus_message_unref (message);
1495
1496   if (!reply)
1497   {
1498     g_warning ("Error retrieving accessibility bus address: %s: %s",
1499                error.name, error.message);
1500     dbus_error_free (&error);
1501     goto out;
1502   }
1503
1504   {
1505     const char *tmp_address;
1506     if (!dbus_message_get_args (reply,
1507                                 NULL,
1508                                 DBUS_TYPE_STRING,
1509                                 &tmp_address,
1510                                 DBUS_TYPE_INVALID))
1511       {
1512         dbus_message_unref (reply);
1513         goto out;
1514       }
1515     address = g_strdup (tmp_address);
1516     dbus_message_unref (reply);
1517   }
1518
1519 out:
1520   dbus_connection_unref (session_bus);
1521   return address;
1522 }
1523
1524 static DBusConnection *a11y_bus;
1525 static dbus_int32_t a11y_dbus_slot = -1;
1526
1527 static void
1528 a11y_bus_free (void *data)
1529 {
1530   if (data == a11y_bus)
1531     {
1532       a11y_bus = NULL;
1533       dbus_connection_free_data_slot (&a11y_dbus_slot);
1534     }
1535 }
1536
1537 /**
1538  * atspi_get_a11y_bus: (skip)
1539  */
1540 DBusConnection *
1541 atspi_get_a11y_bus (void)
1542 {
1543   DBusError error;
1544   char *address = NULL;
1545
1546   if (a11y_bus && dbus_connection_get_is_connected (a11y_bus))
1547     return a11y_bus;
1548
1549   if (a11y_dbus_slot == -1)
1550     if (!dbus_connection_allocate_data_slot (&a11y_dbus_slot))
1551       g_warning ("at-spi: Unable to allocate D-Bus slot");
1552
1553 #ifdef HAVE_X11
1554   address = get_accessibility_bus_address_x11 ();
1555 #endif
1556   if (!address)
1557     address = get_accessibility_bus_address_dbus ();
1558   if (!address)
1559     return NULL;
1560
1561   dbus_error_init (&error);
1562   a11y_bus = dbus_connection_open_private (address, &error);
1563   g_free (address);
1564
1565   if (!a11y_bus)
1566     {
1567       g_warning ("Couldn't connect to accessibility bus: %s", error.message);
1568       dbus_error_free (&error);
1569       return NULL;
1570     }
1571   else
1572     {
1573       if (!dbus_bus_register (a11y_bus, &error))
1574         {
1575           g_warning ("Couldn't register with accessibility bus: %s", error.message);
1576           dbus_error_free (&error);
1577           dbus_connection_close (a11y_bus);
1578           dbus_connection_unref (a11y_bus);
1579           a11y_bus = NULL;
1580           return NULL;
1581         }
1582     }
1583
1584   /* Simulate a weak ref on the bus */
1585   dbus_connection_set_data (a11y_bus, a11y_dbus_slot, a11y_bus, a11y_bus_free);
1586
1587   return a11y_bus;
1588 }
1589
1590 /**
1591  * atspi_set_timeout:
1592  * @val: The timeout value, in milliseconds, or -1 to disable the timeout.
1593  * @startup_time: The amount of time, in milliseconds, to allow to pass
1594  * before enforcing timeouts on an application. Can be used to prevent
1595  * timeout exceptions if an application is likely to block for an extended
1596  * period of time on initialization. -1 can be passed to disable this
1597  * behavior.
1598  *
1599  * Set the timeout used for method calls. If this is not set explicitly,
1600  * a default of 0.8 ms is used.
1601  * Note that at-spi2-registryd currently uses a timeout of 3 seconds when
1602  * sending a keyboard event notification. This means that, if an AT makes
1603  * a call in response to the keyboard notification and the application
1604  * being called does not respond before the timeout is reached,
1605  * at-spi2-registryd will time out on the keyboard event notification and
1606  * pass the key onto the application (ie, reply to indicate that the key
1607  * was not consumed), so this may make it undesirable to set a timeout
1608  * larger than 3 seconds.
1609  *
1610  * By default, the normal timeout is set to 800 ms, and the application startup
1611  * timeout is set to 15 seconds.
1612  */
1613 void
1614 atspi_set_timeout (gint val, gint startup_time)
1615 {
1616   method_call_timeout = val;
1617   app_startup_time = startup_time;
1618 }
1619
1620 /**
1621  * atspi_set_main_context:
1622  * @cnx: The #GMainContext to use.
1623  *
1624  * Sets the main loop context that AT-SPI should assume is in use when
1625  * setting an idle callback.
1626  * This function should be called by application-side implementors (ie,
1627  * at-spi2-atk) when it is desirable to re-enter the main loop.
1628  */
1629 void
1630 atspi_set_main_context (GMainContext *cnx)
1631 {
1632   if (atspi_main_context == cnx)
1633     return;
1634   if (process_deferred_messages_source != NULL)
1635   {
1636     g_source_destroy (process_deferred_messages_source);
1637     process_deferred_messages_source = g_idle_source_new ();
1638     g_source_set_callback (process_deferred_messages_source,
1639                            process_deferred_messages_callback, NULL, NULL);
1640     g_source_attach (process_deferred_messages_source, cnx);
1641     g_source_unref (process_deferred_messages_source);
1642   }
1643   atspi_main_context = cnx;
1644   atspi_dbus_connection_setup_with_g_main (atspi_get_a11y_bus (), cnx);
1645 }
1646
1647 #ifdef DEBUG_REF_COUNTS
1648 static void
1649 print_disposed (gpointer key, gpointer value, gpointer data)
1650 {
1651   AtspiAccessible *accessible = key;
1652   if (accessible->parent.app)
1653     return;
1654   g_print ("disposed: %s %d\n", accessible->name, accessible->role);
1655 }
1656
1657 void
1658 debug_disposed ()
1659 {
1660   g_hash_table_foreach (live_refs, print_disposed, NULL);
1661 }
1662 #endif
1663
1664 gchar *
1665 _atspi_name_compat (gchar *name)
1666 {
1667   gchar *p = name;
1668
1669   while (*p)
1670   {
1671     if (*p == '-')
1672       *p = ' ';
1673     p++;
1674   }
1675   return name;
1676 }
1677
1678 /**
1679  * atspi_role_get_name:
1680  * @role: an #AtspiRole object to query.
1681  *
1682  * Gets a localizable string that indicates the name of an #AtspiRole.
1683  * <em>DEPRECATED.</em>
1684  *
1685  * Returns: a localizable string name for an #AtspiRole enumerated type.
1686  **/
1687 gchar *
1688 atspi_role_get_name (AtspiRole role)
1689 {
1690   gchar *retval = NULL;
1691   GTypeClass *type_class;
1692   GEnumValue *value;
1693
1694   type_class = g_type_class_ref (ATSPI_TYPE_ROLE);
1695   g_return_val_if_fail (G_IS_ENUM_CLASS (type_class), NULL);
1696
1697   value = g_enum_get_value (G_ENUM_CLASS (type_class), role);
1698
1699   if (value)
1700     {
1701       retval = g_strdup (value->value_nick);
1702     }
1703
1704   g_type_class_unref (type_class);
1705
1706   if (retval)
1707     return _atspi_name_compat (retval);
1708
1709   return NULL;
1710 }
1711
1712 GHashTable *
1713 _atspi_dbus_update_cache_from_dict (AtspiAccessible *accessible, DBusMessageIter *iter)
1714 {
1715   GHashTable *cache = _atspi_accessible_ref_cache (accessible);
1716   DBusMessageIter iter_dict, iter_dict_entry, iter_struct, iter_variant;
1717
1718   dbus_message_iter_recurse (iter, &iter_dict);
1719   while (dbus_message_iter_get_arg_type (&iter_dict) != DBUS_TYPE_INVALID)
1720   {
1721     const char *key;
1722     GValue *val = NULL;
1723     dbus_message_iter_recurse (&iter_dict, &iter_dict_entry);
1724     dbus_message_iter_get_basic (&iter_dict_entry, &key);
1725     dbus_message_iter_next (&iter_dict_entry);
1726     dbus_message_iter_recurse (&iter_dict_entry, &iter_variant);
1727     if (!strcmp (key, "interfaces"))
1728     {
1729       _atspi_dbus_set_interfaces (accessible, &iter_variant);
1730     }
1731     else if (!strcmp (key, "Attributes"))
1732     {
1733       char *iter_sig = dbus_message_iter_get_signature (&iter_variant);
1734       val = g_new0 (GValue, 1);;
1735       g_value_init (val, G_TYPE_HASH_TABLE);
1736       if (strcmp (iter_sig, "a{ss}") != 0)
1737       {
1738         dbus_free (iter_sig);
1739         break;
1740       }
1741       dbus_free (iter_sig);
1742       g_value_take_boxed (val, _atspi_dbus_hash_from_iter (&iter_variant));
1743     }
1744     else if (!strcmp (key, "Component.ScreenExtents"))
1745     {
1746       dbus_int32_t d_int;
1747       AtspiRect extents;
1748       char *iter_sig = dbus_message_iter_get_signature (&iter_variant);
1749       val = g_new0 (GValue, 1);;
1750       g_value_init (val, ATSPI_TYPE_RECT);
1751       if (strcmp (iter_sig, "(iiii)") != 0)
1752       {
1753         dbus_free (iter_sig);
1754         break;
1755       }
1756       dbus_free (iter_sig);
1757       dbus_message_iter_recurse (&iter_variant, &iter_struct);
1758       dbus_message_iter_get_basic (&iter_struct, &d_int);
1759       extents.x = d_int;
1760       dbus_message_iter_next (&iter_struct);
1761       dbus_message_iter_get_basic (&iter_struct, &d_int);
1762       extents.y = d_int;
1763       dbus_message_iter_next (&iter_struct);
1764       dbus_message_iter_get_basic (&iter_struct, &d_int);
1765       extents.width = d_int;
1766       dbus_message_iter_next (&iter_struct);
1767       dbus_message_iter_get_basic (&iter_struct, &d_int);
1768       extents.height = d_int;
1769       g_value_set_boxed (val, &extents);
1770     }
1771     if (val)
1772       g_hash_table_insert (cache, g_strdup (key), val);
1773     dbus_message_iter_next (&iter_dict);
1774   }
1775
1776   return cache;
1777 }
1778
1779 gboolean
1780 _atspi_get_allow_sync ()
1781 {
1782   return allow_sync;
1783 }
1784
1785 gboolean
1786 _atspi_set_allow_sync (gboolean val)
1787 {
1788   gboolean ret = allow_sync;
1789
1790   allow_sync = val;
1791   return ret;
1792 }
1793
1794 void
1795 _atspi_set_error_no_sync (GError **error)
1796 {
1797   g_set_error_literal (error, ATSPI_ERROR, ATSPI_ERROR_SYNC_NOT_ALLOWED,
1798                         _("Attempted synchronous call where prohibited"));
1799 }