2 * AT-SPI - Assistive Technology Service Provider Interface
3 * (Gnome Accessibility Project; http://developer.gnome.org/projects/gap)
5 * Copyright 2008 Novell, Inc.
6 * Copyright 2001, 2002 Sun Microsystems Inc.,
7 * Copyright 2001, 2002 Ximian, Inc.
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.
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.
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.
26 #include <droute/introspect-loader.h>
28 #include "accessible.h"
30 #define get_object(message) spi_dbus_get_object(dbus_message_get_path(message))
33 append_update (DBusMessageIter * iter_array, AtkObject * obj,
34 dbus_bool_t include_children, DRouteData * data)
36 DBusMessageIter iter_struct, iter_sub_array;
39 const char *name, *desc;
46 g_assert(data != NULL);
48 dbus_message_iter_open_container (iter_array, DBUS_TYPE_STRUCT, NULL,
50 path = spi_dbus_get_path (obj);
51 dbus_message_iter_append_basic (&iter_struct, DBUS_TYPE_OBJECT_PATH, &path);
52 path_parent = spi_dbus_get_path (atk_object_get_parent(obj));
53 if (!path_parent) path_parent = g_strdup("/");
54 dbus_message_iter_append_basic (&iter_struct, DBUS_TYPE_OBJECT_PATH, &path_parent);
56 dbus_message_iter_open_container (&iter_struct, DBUS_TYPE_ARRAY, "o",
58 childcount = atk_object_get_n_accessible_children (obj);
59 for (i = 0; i < childcount; i++)
61 AtkObject *child = atk_object_ref_accessible_child (obj, i);
62 char *child_path = spi_dbus_get_path (child);
65 dbus_message_iter_append_basic (&iter_sub_array,
66 DBUS_TYPE_OBJECT_PATH, &child_path);
70 g_object_unref (child);
72 if (!dbus_message_iter_close_container (&iter_struct, &iter_sub_array))
74 dbus_message_iter_open_container (&iter_struct, DBUS_TYPE_ARRAY, "s",
76 if (data) for (l = data->interfaces; l; l = g_slist_next (l))
78 DRouteInterface *iface_def = (DRouteInterface *) l->data;
80 if (iface_def->get_datum)
82 datum = (*iface_def->get_datum) (path, data->user_data);
86 dbus_message_iter_append_basic (&iter_sub_array, DBUS_TYPE_STRING,
88 if (iface_def->free_datum)
89 (*iface_def->free_datum) (datum);
91 if (!dbus_message_iter_close_container (&iter_struct, &iter_sub_array))
93 name = atk_object_get_name (obj);
96 dbus_message_iter_append_basic (&iter_struct, DBUS_TYPE_STRING, &name);
97 role = spi_accessible_role_from_atk_role (atk_object_get_role (obj));
98 dbus_message_iter_append_basic (&iter_struct, DBUS_TYPE_UINT32, &role);
99 desc = atk_object_get_description (obj);
102 dbus_message_iter_append_basic (&iter_struct, DBUS_TYPE_STRING, &desc);
103 if (!dbus_message_iter_close_container (iter_array, &iter_struct))
105 if (!include_children) childcount = 0;
106 for (i = 0; i < childcount; i++)
108 AtkObject *child = atk_object_ref_accessible_child (obj, i);
112 result = append_update (iter_array, child, TRUE, data);
113 g_object_unref (child);
120 if (path) g_free(path);
125 spi_dbus_append_tree (DBusMessage * message, AtkObject * obj,
128 DBusMessageIter iter, iter_array;
131 g_assert(data != NULL);
133 dbus_message_iter_init_append (message, &iter);
134 dbus_message_iter_open_container (&iter, DBUS_TYPE_ARRAY, "(ooaoassus)",
136 result = append_update (&iter_array, obj, TRUE, data);
138 result = dbus_message_iter_close_container (&iter, &iter_array);
143 impl_getRoot (DBusConnection * bus, DBusMessage * message, void *user_data)
145 AtkObject *root = atk_get_root();
149 if (root) path = spi_dbus_get_path(root);
151 return spi_dbus_general_error (message);
152 reply = dbus_message_new_method_return (message);
153 dbus_message_append_args (reply, DBUS_TYPE_OBJECT_PATH, &path,
160 impl_getTree (DBusConnection * bus, DBusMessage * message, void *user_data)
163 AtkObject *root = atk_get_root();
165 if (!root) return spi_dbus_general_error(message);
166 reply = dbus_message_new_method_return (message);
167 spi_dbus_append_tree (reply, root, (DRouteData *) user_data);
172 impl_introspect (DBusConnection *bus, DBusMessage *message, void *user_data)
180 path = dbus_message_get_path(message);
182 output = g_string_new(spi_introspection_header);
184 g_string_append_printf(output, spi_introspection_node_element, path);
186 spi_append_interface(output, "org.freedesktop.atspi.Tree");
188 g_string_append(output, spi_introspection_footer);
189 final = g_string_free(output, FALSE);
191 reply = dbus_message_new_method_return (message);
192 g_assert(reply != NULL);
193 dbus_message_append_args(reply, DBUS_TYPE_STRING, &final,
200 static DBusHandlerResult
201 message_handler (DBusConnection *bus, DBusMessage *message, void *user_data)
203 const char *iface = dbus_message_get_interface (message);
204 const char *member = dbus_message_get_member (message);
206 DBusMessage *reply = NULL;
208 if (!strcmp(iface, "org.freedesktop.atspi.Tree"))
210 if (!strcmp(member, "getRoot"))
212 reply = impl_getRoot(bus, message, user_data);
215 if (!strcmp(member, "getTree"))
217 reply = impl_getTree(bus, message, user_data);
221 if (!strcmp(iface, "org.freedesktop.DBus.Introspectable"))
223 if (!strcmp(member, "Introspect"))
225 reply = impl_introspect(bus, message, user_data);
231 dbus_connection_send (bus, reply, NULL);
232 dbus_message_unref (reply);
235 return DBUS_HANDLER_RESULT_HANDLED;
238 static DBusObjectPathVTable tree_vtable =
242 NULL, NULL, NULL, NULL
246 spi_register_tree_object(DBusConnection *bus,
250 dbus_bool_t mem = FALSE;
251 mem = dbus_connection_register_object_path(bus, path, &tree_vtable, data);
252 g_assert(mem == TRUE);
255 static GHashTable *cache_list;
258 #define UPDATE_REFRESH 2
259 #define UPDATE_REMOVE 3
261 static int update_pending = 0;
262 static gint update_pending_id;
266 DBusMessageIter iter;
271 static void handle_cache_item(char *path, guint action, CacheIterData *d)
280 if (d->removing) return;
281 obj = spi_dbus_get_object(path);
282 //printf("update %s\n", path);
283 append_update(&d->iter, obj, FALSE, d->droute);
286 //printf("remove: %s\n", path);
287 if (!d->removing) return;
288 dbus_message_iter_append_basic(&d->iter, DBUS_TYPE_OBJECT_PATH, &path);
291 g_hash_table_remove(cache_list, path);
294 gboolean spi_dbus_update_cache(DRouteData *data)
296 DBusMessage *message;
297 DBusMessageIter iter;
300 g_assert(data != NULL);
302 if (update_pending == 0) return FALSE;
303 //printf("Sending cache\n");
304 message = dbus_message_new_signal("/org/freedesktop/atspi/tree", "org.freedesktop.atspi.Tree", "UpdateTree");
305 if (!message) goto done;
306 dbus_message_iter_init_append (message, &iter);
307 dbus_message_iter_open_container (&iter, DBUS_TYPE_ARRAY, "(ooaoassus)",
313 /* This loop is needed because appending an item may cause new children
314 * to be registered and consequently added to the hash, so they, too,
315 * will need to be sent with the update */
317 g_hash_table_foreach(cache_list, (GHFunc)handle_cache_item, &d);
318 } while (update_pending);
319 dbus_message_iter_close_container(&iter, &d.iter);
320 dbus_message_iter_open_container(&iter, DBUS_TYPE_ARRAY, "o", &d.iter);
322 g_hash_table_foreach(cache_list, (GHFunc)handle_cache_item, &d);
323 dbus_message_iter_close_container(&iter, &d.iter);
324 dbus_connection_send(data->bus, message, NULL);
329 void spi_dbus_notify_change(AtkObject *obj, gboolean new, DRouteData *data)
331 guint action = (new? UPDATE_NEW: UPDATE_REFRESH);
332 char *path = spi_dbus_get_path(obj);
336 cache_list = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, NULL);
343 if (g_hash_table_lookup(cache_list, path))
348 //printf("change: %s\n", path);
349 g_hash_table_insert(cache_list, path, (gpointer)action);
350 if (update_pending != 2 && data)
352 update_pending_id = g_idle_add((GSourceFunc)spi_dbus_update_cache, data);
355 else if (!update_pending) update_pending = 1;
358 void spi_dbus_notify_remove(AtkObject *obj, DRouteData *data)
360 guint action = UPDATE_REMOVE;
362 gchar *path = spi_dbus_get_path(obj);
364 //printf("notify remove: %s\n", path);
370 cur_action = (guint)g_hash_table_lookup(cache_list, path);
371 if (cur_action == UPDATE_NEW)
373 /* No one knew that this object ever existed, so just remove it */
374 //printf("Removing object from send queue\n");
375 g_hash_table_remove(cache_list, path);
380 g_hash_table_insert(cache_list, path, (gpointer)action);
381 if (update_pending != 2 && data)
383 update_pending_id = g_idle_add((GSourceFunc)spi_dbus_update_cache, data);
386 else if (!update_pending) update_pending = 1;
390 gboolean spi_dbus_object_is_known(AtkObject *obj)
393 char *path = spi_dbus_get_path(obj);
394 if (!path) return FALSE;
395 cur_action = (guint)g_hash_table_lookup(cache_list, path);
397 return (cur_action != UPDATE_NEW);