2008-05-20 Mark Doffman <mark.doffman@codethink.co.uk>
[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 DBusHandlerResult
201 message_handler (DBusConnection *bus, DBusMessage *message, void *user_data)
202 {
203   const char *iface = dbus_message_get_interface (message);
204   const char *member = dbus_message_get_member (message);
205
206   DBusMessage *reply = NULL;
207   
208   if (!strcmp(iface, "org.freedesktop.atspi.Tree"))
209     {
210       if (!strcmp(member, "getRoot"))
211         {
212           reply = impl_getRoot(bus, message, user_data);
213         }
214
215       if (!strcmp(member, "getTree"))
216         {
217           reply = impl_getTree(bus, message, user_data);
218         }
219     }
220
221   if (!strcmp(iface, "org.freedesktop.DBus.Introspectable"))
222     {
223       if (!strcmp(member, "Introspect"))
224         {
225           reply = impl_introspect(bus, message, user_data);
226         }
227     }
228
229   if (reply)
230     {
231       dbus_connection_send (bus, reply, NULL);
232       dbus_message_unref (reply);
233     }
234
235   return DBUS_HANDLER_RESULT_HANDLED;
236 }
237
238 static DBusObjectPathVTable tree_vtable =
239 {
240   NULL,
241   &message_handler,
242   NULL, NULL, NULL, NULL
243 };
244
245 void
246 spi_register_tree_object(DBusConnection *bus,
247                          DRouteData *data,
248                          const char *path)
249 {
250   dbus_bool_t mem = FALSE;
251   mem = dbus_connection_register_object_path(bus, path, &tree_vtable, data);
252   g_assert(mem == TRUE);
253 }
254
255 static GHashTable *cache_list;
256
257 #define UPDATE_NEW     1
258 #define UPDATE_REFRESH 2
259 #define UPDATE_REMOVE 3
260
261 static int update_pending = 0;
262 static gint update_pending_id;
263
264 typedef struct
265 {
266   DBusMessageIter iter;
267   DRouteData *droute;
268   gboolean removing;
269 } CacheIterData;
270
271 static void handle_cache_item(char *path, guint action, CacheIterData *d)
272 {
273   AtkObject *obj;
274
275   switch (action)
276   {
277   case UPDATE_NEW:
278   case UPDATE_REFRESH:
279   default:
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);
284     break;
285   case UPDATE_REMOVE:
286 //printf("remove: %s\n", path);
287     if (!d->removing) return;
288     dbus_message_iter_append_basic(&d->iter, DBUS_TYPE_OBJECT_PATH, &path);
289     break;
290   }
291   g_hash_table_remove(cache_list, path);
292 }
293
294 gboolean spi_dbus_update_cache(DRouteData *data)
295 {
296   DBusMessage *message;
297   DBusMessageIter iter;
298   CacheIterData d;
299
300   g_assert(data != NULL);
301
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)",
308                                     &d.iter);
309   d.droute = data;
310   d.removing = FALSE;
311   do
312   {
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 */
316     update_pending = 0;
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);
321   d.removing = TRUE;
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);
325 done:
326   return FALSE;
327 }
328
329 void spi_dbus_notify_change(AtkObject *obj, gboolean new, DRouteData *data)
330 {
331   guint action = (new? UPDATE_NEW: UPDATE_REFRESH);
332   char *path = spi_dbus_get_path(obj);
333
334   if (!cache_list)
335   {
336     cache_list = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, NULL);
337     if (!cache_list)
338     {
339       g_free(path);
340       return;
341     }
342   }
343   if (g_hash_table_lookup(cache_list, path))
344   {
345     g_free(path);
346     return;
347   }
348 //printf("change: %s\n", path);
349   g_hash_table_insert(cache_list, path, (gpointer)action);
350   if (update_pending != 2 && data)
351   {
352     update_pending_id = g_idle_add((GSourceFunc)spi_dbus_update_cache, data);
353     update_pending = 2;
354   }
355   else if (!update_pending) update_pending = 1;
356 }
357
358 void spi_dbus_notify_remove(AtkObject *obj, DRouteData *data)
359 {
360   guint action = UPDATE_REMOVE;
361   guint cur_action;
362   gchar *path = spi_dbus_get_path(obj);
363
364 //printf("notify remove: %s\n", path);
365   if (!cache_list)
366   {
367     g_free(path);
368     return;
369   }
370   cur_action = (guint)g_hash_table_lookup(cache_list, path);
371   if (cur_action == UPDATE_NEW)
372   {
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);
376     g_free(path);
377   }
378   else
379   {
380     g_hash_table_insert(cache_list, path, (gpointer)action);
381     if (update_pending != 2 && data)
382     {
383       update_pending_id = g_idle_add((GSourceFunc)spi_dbus_update_cache, data);
384       update_pending = 2;
385     }
386     else if (!update_pending) update_pending = 1;
387   }
388 }
389
390 gboolean spi_dbus_object_is_known(AtkObject *obj)
391 {
392   guint cur_action;
393   char *path = spi_dbus_get_path(obj);
394   if (!path) return FALSE;
395   cur_action = (guint)g_hash_table_lookup(cache_list, path);
396   g_free(path);
397   return (cur_action != UPDATE_NEW);
398 }