Have org.freedesktop.atspi.Tree use droute
[platform/core/uifw/at-spi2-atk.git] / atk-adaptor / tree.c
1 /*
2  * AT-SPI - Assistive Technology Service Provider Interface
3  * (Gnome Accessibility Project; http://developer.gnome.org/projects/gap)
4  *
5  * Copyright 2008 Novell, Inc.
6  * Copyright 2001, 2002 Sun Microsystems Inc.,
7  * Copyright 2001, 2002 Ximian, 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 #include <string.h>
26 #include <droute/introspect-loader.h>
27
28 #include "accessible.h"
29
30 #define get_object(message) spi_dbus_get_object(dbus_message_get_path(message))
31
32 static dbus_bool_t
33 append_update (DBusMessageIter * iter_array, AtkObject * obj,
34                              dbus_bool_t include_children, DRouteData * data)
35 {
36   DBusMessageIter iter_struct, iter_sub_array;
37   char *path = NULL;
38   char *path_parent;
39   const char *name, *desc;
40   int i;
41   dbus_uint32_t role;
42
43   gint childcount;
44   GSList *l;
45
46   g_assert(data != NULL);
47
48   dbus_message_iter_open_container (iter_array, DBUS_TYPE_STRUCT, NULL,
49                                     &iter_struct);
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);
55   g_free(path_parent);
56   dbus_message_iter_open_container (&iter_struct, DBUS_TYPE_ARRAY, "o",
57                                     &iter_sub_array);
58   childcount = atk_object_get_n_accessible_children (obj);
59   for (i = 0; i < childcount; i++)
60     {
61       AtkObject *child = atk_object_ref_accessible_child (obj, i);
62       char *child_path = spi_dbus_get_path (child);
63       if (child_path)
64         {
65           dbus_message_iter_append_basic (&iter_sub_array,
66                                           DBUS_TYPE_OBJECT_PATH, &child_path);
67           g_free (child_path);
68         }
69       if (child)
70         g_object_unref (child);
71     }
72   if (!dbus_message_iter_close_container (&iter_struct, &iter_sub_array))
73     goto oom;
74   dbus_message_iter_open_container (&iter_struct, DBUS_TYPE_ARRAY, "s",
75                                     &iter_sub_array);
76   if (data) for (l = data->interfaces; l; l = g_slist_next (l))
77     {
78       DRouteInterface *iface_def = (DRouteInterface *) l->data;
79       void *datum = NULL;
80       if (iface_def->get_datum)
81         {
82           datum = (*iface_def->get_datum) (path, data->user_data);
83           if (!datum)
84             continue;
85         }
86       dbus_message_iter_append_basic (&iter_sub_array, DBUS_TYPE_STRING,
87                                       &iface_def->name);
88       if (iface_def->free_datum)
89         (*iface_def->free_datum) (datum);
90     }
91   if (!dbus_message_iter_close_container (&iter_struct, &iter_sub_array))
92     goto oom;
93   name = atk_object_get_name (obj);
94   if (!name)
95     name = "";
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);
100   if (!desc)
101     desc = "";
102   dbus_message_iter_append_basic (&iter_struct, DBUS_TYPE_STRING, &desc);
103   if (!dbus_message_iter_close_container (iter_array, &iter_struct))
104     goto oom;
105   if (!include_children) childcount = 0;
106   for (i = 0; i < childcount; i++)
107     {
108       AtkObject *child = atk_object_ref_accessible_child (obj, i);
109       dbus_bool_t result;
110       if (!child)
111         continue;
112       result = append_update (iter_array, child, TRUE, data);
113       g_object_unref (child);
114       if (!result)
115         goto oom;
116     }
117   g_free (path);
118   return TRUE;
119 oom:
120   if (path) g_free(path);
121   return FALSE;
122 }
123
124 dbus_bool_t
125 spi_dbus_append_tree (DBusMessage * message, AtkObject * obj,
126                       DRouteData * data)
127 {
128   DBusMessageIter iter, iter_array;
129   dbus_bool_t result;
130
131   g_assert(data != NULL);
132
133   dbus_message_iter_init_append (message, &iter);
134   dbus_message_iter_open_container (&iter, DBUS_TYPE_ARRAY, "(ooaoassus)",
135                                     &iter_array);
136   result = append_update (&iter_array, obj, TRUE, data);
137   if (result)
138     result = dbus_message_iter_close_container (&iter, &iter_array);
139   return result;
140 }
141
142 static DBusMessage *
143 impl_getRoot (DBusConnection * bus, DBusMessage * message, void *user_data)
144 {
145   AtkObject *root = atk_get_root();
146   char *path;
147   DBusMessage *reply;
148
149   if (root) path = spi_dbus_get_path(root);
150   if (!root || !path)
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,
154                             DBUS_TYPE_INVALID);
155   g_free (path);
156   return reply;
157 }
158
159 static DBusMessage *
160 impl_getTree (DBusConnection * bus, DBusMessage * message, void *user_data)
161 {
162   DBusMessage *reply;
163   AtkObject *root = atk_get_root();
164
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);
168   return reply;
169 }
170
171 static DBusMessage *
172 impl_introspect (DBusConnection *bus, DBusMessage *message, void *user_data)
173 {
174   const char *path;
175   GString *output;
176   char *final;
177
178   DBusMessage *reply;
179
180   path = dbus_message_get_path(message);
181
182   output = g_string_new(spi_introspection_header);
183   
184   g_string_append_printf(output, spi_introspection_node_element, path);
185
186   spi_append_interface(output, "org.freedesktop.atspi.Tree");
187
188   g_string_append(output, spi_introspection_footer);
189   final = g_string_free(output, FALSE);
190
191   reply = dbus_message_new_method_return (message);
192   g_assert(reply != NULL);
193   dbus_message_append_args(reply, DBUS_TYPE_STRING, &final,
194                            DBUS_TYPE_INVALID);
195
196   g_free(final);
197   return reply;
198 }
199
200 static DRouteMethod methods[] = {
201   {impl_getRoot, "getRoot"},
202   {impl_getTree, "getTree", TRUE},
203   {NULL, NULL}
204 };
205
206 void
207 spi_initialize_tree (DRouteData * data)
208 {
209   droute_add_interface (data, "org.freedesktop.atspi.Tree", methods,
210                         NULL, NULL, NULL);
211 };
212 static GHashTable *cache_list;
213
214 #define UPDATE_NEW     1
215 #define UPDATE_REFRESH 2
216 #define UPDATE_REMOVE 3
217
218 static int update_pending = 0;
219 static gint update_pending_id;
220
221 typedef struct
222 {
223   DBusMessageIter iter;
224   DRouteData *droute;
225   gboolean removing;
226 } CacheIterData;
227
228 static void handle_cache_item(char *path, guint action, CacheIterData *d)
229 {
230   AtkObject *obj;
231
232   switch (action)
233   {
234   case UPDATE_NEW:
235   case UPDATE_REFRESH:
236   default:
237     if (d->removing) return;
238     obj = spi_dbus_get_object(path);
239 //printf("update %s\n", path);
240     append_update(&d->iter, obj, FALSE, d->droute);
241     break;
242   case UPDATE_REMOVE:
243 //printf("remove: %s\n", path);
244     if (!d->removing) return;
245     dbus_message_iter_append_basic(&d->iter, DBUS_TYPE_OBJECT_PATH, &path);
246     break;
247   }
248   g_hash_table_remove(cache_list, path);
249 }
250
251 gboolean spi_dbus_update_cache(DRouteData *data)
252 {
253   DBusMessage *message;
254   DBusMessageIter iter;
255   CacheIterData d;
256
257   g_assert(data != NULL);
258
259   if (update_pending == 0) return FALSE;
260 //printf("Sending cache\n");
261   message = dbus_message_new_signal("/org/freedesktop/atspi/tree", "org.freedesktop.atspi.Tree", "UpdateTree");
262   if (!message) goto done;
263   dbus_message_iter_init_append (message, &iter);
264   dbus_message_iter_open_container (&iter, DBUS_TYPE_ARRAY, "(ooaoassus)",
265                                     &d.iter);
266   d.droute = data;
267   d.removing = FALSE;
268   do
269   {
270     /* This loop is needed because appending an item may cause new children
271      * to be registered and consequently added to the hash, so they, too,
272      * will need to be sent with the update */
273     update_pending = 0;
274     g_hash_table_foreach(cache_list, (GHFunc)handle_cache_item, &d);
275   } while (update_pending);
276   dbus_message_iter_close_container(&iter, &d.iter);
277   dbus_message_iter_open_container(&iter, DBUS_TYPE_ARRAY, "o", &d.iter);
278   d.removing = TRUE;
279   g_hash_table_foreach(cache_list, (GHFunc)handle_cache_item, &d);
280   dbus_message_iter_close_container(&iter, &d.iter);
281   dbus_connection_send(data->bus, message, NULL);
282 done:
283   return FALSE;
284 }
285
286 void spi_dbus_notify_change(AtkObject *obj, gboolean new, DRouteData *data)
287 {
288   guint action = (new? UPDATE_NEW: UPDATE_REFRESH);
289   char *path = spi_dbus_get_path(obj);
290
291   if (!cache_list)
292   {
293     cache_list = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, NULL);
294     if (!cache_list)
295     {
296       g_free(path);
297       return;
298     }
299   }
300   if (g_hash_table_lookup(cache_list, path))
301   {
302     g_free(path);
303     return;
304   }
305 //printf("change: %s\n", path);
306   g_hash_table_insert(cache_list, path, (gpointer)action);
307   if (update_pending != 2 && data)
308   {
309     update_pending_id = g_idle_add((GSourceFunc)spi_dbus_update_cache, data);
310     update_pending = 2;
311   }
312   else if (!update_pending) update_pending = 1;
313 }
314
315 void spi_dbus_notify_remove(AtkObject *obj, DRouteData *data)
316 {
317   guint action = UPDATE_REMOVE;
318   guint cur_action;
319   gchar *path = spi_dbus_get_path(obj);
320
321 //printf("notify remove: %s\n", path);
322   if (!cache_list)
323   {
324     g_free(path);
325     return;
326   }
327   cur_action = (guint)g_hash_table_lookup(cache_list, path);
328   if (cur_action == UPDATE_NEW)
329   {
330     /* No one knew that this object ever existed, so just remove it */
331 //printf("Removing object from send queue\n");
332     g_hash_table_remove(cache_list, path);
333     g_free(path);
334   }
335   else
336   {
337     g_hash_table_insert(cache_list, path, (gpointer)action);
338     if (update_pending != 2 && data)
339     {
340       update_pending_id = g_idle_add((GSourceFunc)spi_dbus_update_cache, data);
341       update_pending = 2;
342     }
343     else if (!update_pending) update_pending = 1;
344   }
345 }
346
347 gboolean spi_dbus_object_is_known(AtkObject *obj)
348 {
349   guint cur_action;
350   char *path = spi_dbus_get_path(obj);
351   if (!path) return FALSE;
352   cur_action = (guint)g_hash_table_lookup(cache_list, path);
353   g_free(path);
354   return (cur_action != UPDATE_NEW);
355 }