Remove erroneous debug print introduced in last commit
[platform/core/uifw/at-spi2-atk.git] / atk-adaptor / accessible-cache.c
1 /*
2  * AT-SPI - Assistive Technology Service Provider Interface
3  * (Gnome Accessibility Project; http://developer.gnome.org/projects/gap)
4  *
5  * Copyright 2009, 2010 Codethink Ltd.
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 #include <atk/atk.h>
24 #include <string.h>
25
26 #include "accessible-cache.h"
27 #include "accessible-register.h"
28 #include "bridge.h"
29
30 SpiCache *spi_global_cache = NULL;
31
32 static gboolean
33 child_added_listener (GSignalInvocationHint * signal_hint,
34                       guint n_param_values,
35                       const GValue * param_values, gpointer data);
36
37 static void
38 toplevel_added_listener (AtkObject * accessible,
39                          guint index, AtkObject * child);
40
41 static void
42 remove_object (GObject * source, GObject * gobj, gpointer data);
43
44 static void
45 add_object (SpiCache * cache, GObject * gobj);
46
47 static void
48 add_subtree (SpiCache *cache, AtkObject * accessible);
49
50 static gboolean
51 add_pending_items (gpointer data);
52
53 /*---------------------------------------------------------------------------*/
54
55 static void
56 spi_cache_finalize (GObject * object);
57
58 static void
59 spi_cache_dispose (GObject * object);
60
61 /*---------------------------------------------------------------------------*/
62
63 enum
64 {
65   OBJECT_ADDED,
66   OBJECT_REMOVED,
67   LAST_SIGNAL
68 };
69 static guint cache_signals[LAST_SIGNAL] = { 0 };
70
71 /*---------------------------------------------------------------------------*/
72
73 G_DEFINE_TYPE (SpiCache, spi_cache, G_TYPE_OBJECT)
74
75 static void spi_cache_class_init (SpiCacheClass * klass)
76 {
77   GObjectClass *object_class = (GObjectClass *) klass;
78
79   spi_cache_parent_class = g_type_class_ref (G_TYPE_OBJECT);
80
81   object_class->finalize = spi_cache_finalize;
82   object_class->dispose = spi_cache_dispose;
83
84   cache_signals [OBJECT_ADDED] = \
85       g_signal_new ("object-added",
86                     SPI_CACHE_TYPE,
87                     G_SIGNAL_ACTION,
88                     0,
89                     NULL,
90                     NULL,
91                     g_cclosure_marshal_VOID__OBJECT,
92                     G_TYPE_NONE,
93                     1,
94                     G_TYPE_OBJECT);
95
96   cache_signals [OBJECT_REMOVED] = \
97       g_signal_new ("object-removed",
98                     SPI_CACHE_TYPE,
99                     G_SIGNAL_ACTION,
100                     0,
101                     NULL,
102                     NULL,
103                     g_cclosure_marshal_VOID__OBJECT,
104                     G_TYPE_NONE,
105                     1,
106                     G_TYPE_OBJECT);
107 }
108
109 static void
110 spi_cache_init (SpiCache * cache)
111 {
112   cache->objects = g_hash_table_new (g_direct_hash, g_direct_equal);
113   cache->add_traversal = g_queue_new ();
114
115 #ifdef SPI_ATK_DEBUG
116   if (g_thread_supported ())
117     g_message ("AT-SPI: Threads enabled");
118
119   g_debug ("AT-SPI: Initial Atk tree regisration");
120 #endif
121
122   g_signal_connect (spi_global_register,
123                     "object-deregistered",
124                     (GCallback) remove_object, cache);
125
126   add_subtree (cache, spi_global_app_data->root);
127
128   cache->child_added_listener = atk_add_global_event_listener (child_added_listener,
129                                                                "Gtk:AtkObject:children-changed"); 
130
131   g_signal_connect (G_OBJECT (spi_global_app_data->root),
132                     "children-changed::add",
133                     (GCallback) toplevel_added_listener, NULL);
134 }
135
136 static void
137 spi_cache_finalize (GObject * object)
138 {
139   SpiCache *cache = SPI_CACHE (object);
140
141   while (!g_queue_is_empty (cache->add_traversal))
142     g_object_unref (G_OBJECT (g_queue_pop_head (cache->add_traversal)));
143   g_queue_free (cache->add_traversal);
144   g_hash_table_unref (cache->objects);
145
146   g_signal_handlers_disconnect_by_func (spi_global_register,
147                                         (GCallback) remove_object, cache);
148
149   g_signal_handlers_disconnect_by_func (G_OBJECT (spi_global_app_data->root),
150                                         (GCallback) toplevel_added_listener, NULL);
151
152   atk_remove_global_event_listener (cache->child_added_listener);
153
154   G_OBJECT_CLASS (spi_cache_parent_class)->finalize (object);
155 }
156
157 static void
158 spi_cache_dispose (GObject * object)
159 {
160   SpiCache *cache = SPI_CACHE (object);
161
162   G_OBJECT_CLASS (spi_cache_parent_class)->dispose (object);
163 }
164
165 /*---------------------------------------------------------------------------*/
166
167 static void
168 remove_object (GObject * source, GObject * gobj, gpointer data)
169 {
170   SpiCache *cache = SPI_CACHE (data);
171   
172   if (spi_cache_in (cache, gobj))
173     {
174 #ifdef SPI_ATK_DEBUG
175   g_debug ("CACHE REM - %s - %d - %s\n", atk_object_get_name (ATK_OBJECT (gobj)),
176             atk_object_get_role (ATK_OBJECT (gobj)),
177             spi_register_object_to_path (spi_global_register, gobj));
178 #endif
179       g_signal_emit (cache, cache_signals [OBJECT_REMOVED], 0, gobj);
180       g_hash_table_remove (cache->objects, gobj);
181     }
182   else
183     g_queue_remove (cache->add_traversal, gobj);
184 }
185
186 static void
187 add_object (SpiCache * cache, GObject * gobj)
188 {
189   g_return_if_fail (G_IS_OBJECT (gobj));
190
191   g_hash_table_insert (cache->objects, gobj, NULL);
192
193 #ifdef SPI_ATK_DEBUG
194   g_debug ("CACHE ADD - %s - %d - %s\n", atk_object_get_name (ATK_OBJECT (gobj)),
195             atk_object_get_role (ATK_OBJECT (gobj)),
196             spi_register_object_to_path (spi_global_register, gobj));
197 #endif
198
199   g_signal_emit (cache, cache_signals [OBJECT_ADDED], 0, gobj);
200 }
201
202 /*---------------------------------------------------------------------------*/
203
204 static GStaticRecMutex cache_mutex        = G_STATIC_REC_MUTEX_INIT;
205 static GStaticMutex recursion_check_guard = G_STATIC_MUTEX_INIT;
206
207 static gboolean recursion_check = FALSE;
208
209 static gboolean
210 recursion_check_and_set ()
211 {
212   gboolean ret;
213   g_static_mutex_lock (&recursion_check_guard);
214   ret = recursion_check;
215   recursion_check = TRUE;
216   g_static_mutex_unlock (&recursion_check_guard);
217   return ret;
218 }
219
220 static void
221 recursion_check_unset ()
222 {
223   g_static_mutex_lock (&recursion_check_guard);
224   recursion_check = FALSE;
225   g_static_mutex_unlock (&recursion_check_guard);
226 }
227
228 /*---------------------------------------------------------------------------*/
229
230 static void
231 append_children (AtkObject * accessible, GQueue * traversal)
232 {
233   AtkObject *current;
234   guint i;
235   gint count = atk_object_get_n_accessible_children (accessible);
236
237   if (count < 0)
238     count = 0;
239   for (i = 0; i < count; i++)
240     {
241       current = atk_object_ref_accessible_child (accessible, i);
242       if (current)
243         {
244           g_queue_push_tail (traversal, current);
245         }
246     }
247 }
248
249 /*
250  * Adds a subtree of accessible objects
251  * to the cache at the accessible object provided.
252  *
253  * The leaf nodes do not have their children
254  * registered. A node is considered a leaf
255  * if it has the state "manages-descendants"
256  * or if it has already been registered.
257  */
258 static void
259 add_subtree (SpiCache *cache, AtkObject * accessible)
260 {
261   g_return_if_fail (ATK_IS_OBJECT (accessible));
262
263   g_object_ref (accessible);
264   g_queue_push_tail (cache->add_traversal, accessible);
265   add_pending_items (cache);
266 }
267
268 static gboolean
269 add_pending_items (gpointer data)
270 {
271   SpiCache *cache = SPI_CACHE (data);
272   AtkObject *current;
273   GQueue *to_add;
274
275   to_add = g_queue_new ();
276
277   while (!g_queue_is_empty (cache->add_traversal))
278     {
279       AtkStateSet *set;
280       
281       current = g_queue_pop_head (cache->add_traversal);
282       set = atk_object_ref_state_set (current);
283
284       if (set && !atk_state_set_contains_state (set, ATK_STATE_TRANSIENT))
285         {
286           g_queue_push_tail (to_add, current);
287           if (!spi_cache_in (cache, G_OBJECT (current)) &&
288               !atk_state_set_contains_state  (set, ATK_STATE_MANAGES_DESCENDANTS) &&
289               !atk_state_set_contains_state  (set, ATK_STATE_DEFUNCT))
290             {
291               append_children (current, cache->add_traversal);
292             }
293         }
294
295       if (set)
296         g_object_unref (set);
297     }
298
299   while (!g_queue_is_empty (to_add))
300     {
301       current = g_queue_pop_head (to_add);
302
303       /* Make sure object is registerd so we are notified if it goes away */
304       g_free (spi_register_object_to_path (spi_global_register,
305               G_OBJECT (current)));
306
307       add_object (cache, G_OBJECT(current));
308       g_object_unref (G_OBJECT (current));
309     }
310
311   g_queue_free (to_add);
312   cache->add_pending_idle = 0;
313   return FALSE;
314 }
315
316 /*---------------------------------------------------------------------------*/
317
318 static gboolean
319 child_added_listener (GSignalInvocationHint * signal_hint,
320                       guint n_param_values,
321                       const GValue * param_values, gpointer data)
322 {
323   SpiCache *cache = spi_global_cache;
324   AtkObject *accessible;
325
326   const gchar *detail = NULL;
327
328   g_static_rec_mutex_lock (&cache_mutex);
329
330   /* 
331    * Ensure that only accessibles already in the cache
332    * have their signals processed.
333    */
334   accessible = ATK_OBJECT (g_value_get_object (&param_values[0]));
335   g_return_val_if_fail (ATK_IS_OBJECT (accessible), TRUE);
336
337   if (spi_cache_in (cache, G_OBJECT(accessible)))
338     {
339 #ifdef SPI_ATK_DEBUG
340       if (recursion_check_and_set ())
341         g_warning ("AT-SPI: Recursive use of cache module");
342
343       g_debug ("AT-SPI: Tree update listener");
344 #endif
345       if (signal_hint->detail)
346         detail = g_quark_to_string (signal_hint->detail);
347
348       if (detail && !strncmp (detail, "add", 3))
349         {
350           gpointer child;
351           int index = g_value_get_uint (param_values + 1);
352           child = g_value_get_pointer (param_values + 2);
353           if (!child)
354             {
355               g_static_rec_mutex_unlock (&cache_mutex);
356               return;
357             }
358
359           g_object_ref (child);
360           g_queue_push_tail (cache->add_traversal, child);
361
362           if (cache->add_pending_idle == 0)
363             cache->add_pending_idle = g_idle_add (add_pending_items, cache);
364         }
365 #ifdef SPI_ATK_DEBUG
366       recursion_check_unset ();
367 #endif
368     }
369
370   g_static_rec_mutex_unlock (&cache_mutex);
371
372   return TRUE;
373 }
374
375 /*---------------------------------------------------------------------------*/
376
377 static void
378 toplevel_added_listener (AtkObject * accessible,
379                          guint index, AtkObject * child)
380 {
381   SpiCache *cache = spi_global_cache;
382
383   g_static_rec_mutex_lock (&cache_mutex);
384
385   g_return_if_fail (ATK_IS_OBJECT (accessible));
386
387   if (spi_cache_in (cache, G_OBJECT(accessible)))
388     {
389 #ifdef SPI_ATK_DEBUG
390       if (recursion_check_and_set ())
391         g_warning ("AT-SPI: Recursive use of registration module");
392
393       g_debug ("AT-SPI: Toplevel added listener");
394 #endif
395       if (!ATK_IS_OBJECT (child))
396         {
397           child = atk_object_ref_accessible_child (accessible, index);
398         }
399       else
400         g_object_ref (child);
401
402       g_queue_push_tail (cache->add_traversal, child);
403
404       if (cache->add_pending_idle == 0)
405         cache->add_pending_idle = g_idle_add (add_pending_items, cache);
406 #ifdef SPI_ATK_DEBUG
407       recursion_check_unset ();
408 #endif
409     }
410
411   g_static_rec_mutex_unlock (&cache_mutex);
412 }
413
414 /*---------------------------------------------------------------------------*/
415
416 void
417 spi_cache_foreach (SpiCache * cache, GHFunc func, gpointer data)
418 {
419   g_hash_table_foreach (cache->objects, func, data);
420 }
421
422 gboolean
423 spi_cache_in (SpiCache * cache, GObject * object)
424 {
425   if (!cache)
426     return FALSE;
427
428   if (g_hash_table_lookup_extended (cache->objects,
429                                     object,
430                                     NULL,
431                                     NULL))
432     return TRUE;
433   else
434     return FALSE;
435 }
436
437 #ifdef SPI_ATK_DEBUG
438 void
439 spi_cache_print_info (GObject * obj)
440 {
441   char * path = spi_register_object_to_path (spi_global_register, obj);
442  
443   if (spi_cache_in (spi_global_cache, obj))
444       g_printf ("%s IC\n", path);
445   else
446       g_printf ("%s NC\n", path);
447
448   if (path)
449       g_free (path);
450 }
451 #endif
452
453 /*END------------------------------------------------------------------------*/