Release v2.11.3
[platform/core/uifw/at-spi2-atk.git] / atk-adaptor / adaptors / collection-adaptor.c
1 /*
2  * AT-SPI - Assistive Technology Service Provider Interface
3  * (Gnome Accessibility Project; http://developer.gnome.org/projects/gap)
4  *
5  * Copyright 2007 IBM Corp.
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 /* collection.c: implements the Collection interface */
24
25 #include <string.h>
26
27 #include <atk/atk.h>
28 #include <droute/droute.h>
29
30 #include "bitarray.h"
31 #include "spi-dbus.h"
32 #include "accessible-stateset.h"
33
34 #include "accessible-register.h"
35 #include "object.h"
36 #include "introspection.h"
37
38 typedef struct _MatchRulePrivate MatchRulePrivate;
39 struct _MatchRulePrivate
40 {
41   gint *states;
42   AtspiCollectionMatchType statematchtype;
43   AtkAttributeSet *attributes;
44   AtspiCollectionMatchType attributematchtype;
45   gint *roles;
46   AtspiCollectionMatchType rolematchtype;
47   gchar **ifaces;
48   AtspiCollectionMatchType interfacematchtype;
49   gboolean invert;
50 };
51
52 static gboolean
53 child_interface_p (AtkObject * child, gchar * repo_id)
54 {
55   if (!strcasecmp (repo_id, "action"))
56     return ATK_IS_ACTION (child);
57   if (!strcasecmp (repo_id, "component"))
58     return ATK_IS_COMPONENT (child);
59   if (!strcasecmp (repo_id, "editabletext"))
60     return ATK_IS_EDITABLE_TEXT (child);
61   if (!strcasecmp (repo_id, "text"))
62     return ATK_IS_TEXT (child);
63   if (!strcasecmp (repo_id, "hypertext"))
64     return ATK_IS_HYPERTEXT (child);
65   if (!strcasecmp (repo_id, "image"))
66     return ATK_IS_IMAGE (child);
67   if (!strcasecmp (repo_id, "selection"))
68     return ATK_IS_SELECTION (child);
69   if (!strcasecmp (repo_id, "table"))
70     return ATK_IS_TABLE (child);
71   if (!strcasecmp (repo_id, "value"))
72     return ATK_IS_VALUE (child);
73   if (!strcasecmp (repo_id, "streamablecontent"))
74     return ATK_IS_STREAMABLE_CONTENT (child);
75   if (!strcasecmp (repo_id, "document"))
76     return ATK_IS_DOCUMENT (child);
77   return FALSE;
78 }
79
80 #define child_collection_p(ch) (TRUE)
81
82 static gboolean
83 match_states_all_p (AtkObject * child, gint * set)
84 {
85   AtkStateSet *chs;
86   gint i;
87   gboolean ret = TRUE;
88
89   if (set == NULL || set[0] == BITARRAY_SEQ_TERM)
90     return TRUE;
91
92   chs = atk_object_ref_state_set (child);
93
94   // TODO: use atk-state_set_contains_states; would be more efficient
95   for (i = 0; set[i] != BITARRAY_SEQ_TERM; i++)
96     {
97       if (!atk_state_set_contains_state (chs, set[i]))
98         {
99           ret = FALSE;
100           break;
101         }
102     }
103
104   g_object_unref (chs);
105   return ret;
106 }
107
108 static gboolean
109 match_states_any_p (AtkObject * child, gint * set)
110 {
111   AtkStateSet *chs;
112   gint i;
113   gboolean ret = FALSE;
114
115   if (set == NULL || set[0] == BITARRAY_SEQ_TERM)
116     return TRUE;
117
118   chs = atk_object_ref_state_set (child);
119
120   for (i = 0; set[i] != BITARRAY_SEQ_TERM; i++)
121     {
122       if (atk_state_set_contains_state (chs, set[i]))
123         {
124           ret = TRUE;
125           break;
126         }
127     }
128
129   g_object_unref (chs);
130   return ret;
131 }
132
133 static gboolean
134 match_states_none_p (AtkObject * child, gint * set)
135 {
136   AtkStateSet *chs;
137   gint i;
138   gboolean ret = TRUE;
139
140   if (set == NULL || set[0] == BITARRAY_SEQ_TERM)
141     return TRUE;
142
143   chs = atk_object_ref_state_set (child);
144
145   for (i = 0; set[i] != BITARRAY_SEQ_TERM; i++)
146     {
147       if (atk_state_set_contains_state (chs, set[i]))
148         {
149           ret = FALSE;
150           break;
151         }
152     }
153
154   g_object_unref (chs);
155   return ret;
156 }
157
158 // TODO: need to convert at-spi roles/states to atk roles/states */
159 static gboolean
160 match_states_lookup (AtkObject * child, MatchRulePrivate * mrp)
161 {
162   switch (mrp->statematchtype)
163     {
164     case ATSPI_Collection_MATCH_ALL:
165       if (match_states_all_p (child, mrp->states))
166         return TRUE;
167       break;
168
169     case ATSPI_Collection_MATCH_ANY:
170       if (match_states_any_p (child, mrp->states))
171         return TRUE;
172       break;
173
174     case ATSPI_Collection_MATCH_NONE:
175       if (match_states_none_p (child, mrp->states))
176         return TRUE;
177       break;
178
179     default:
180       break;
181     }
182
183   return FALSE;
184 }
185
186 // TODO: Map at-spi -> atk roles at mrp creation instead of doing this;
187 // would be more efficient
188 #define spi_get_role(obj) spi_accessible_role_from_atk_role(atk_object_get_role(obj))
189
190 static gboolean
191 match_roles_all_p (AtkObject * child, gint * roles)
192 {
193   if (roles == NULL || roles[0] == BITARRAY_SEQ_TERM)
194     return TRUE;
195   else if (roles[1] != BITARRAY_SEQ_TERM)
196     return FALSE;
197
198   return (atk_object_get_role (child) == roles[0]);
199
200 }
201
202 static gboolean
203 match_roles_any_p (AtkObject * child, gint * roles)
204 {
205   AtspiRole role;
206   int i;
207
208   if (roles == NULL || roles[0] == BITARRAY_SEQ_TERM)
209     return TRUE;
210
211   role = spi_accessible_role_from_atk_role (atk_object_get_role (child));
212
213   for (i = 0; roles[i] != BITARRAY_SEQ_TERM; i++)
214     if (role == roles[i])
215       return TRUE;
216
217   return FALSE;
218 }
219
220 static gboolean
221 match_roles_none_p (AtkObject * child, gint * roles)
222 {
223   AtkRole role;
224   int i;
225
226   if (roles == NULL || roles[0] == BITARRAY_SEQ_TERM)
227     return TRUE;
228
229   role = atk_object_get_role (child);
230
231   for (i = 0; roles[i] != BITARRAY_SEQ_TERM; i++)
232     if (role == roles[i])
233       return FALSE;
234
235   return TRUE;
236 }
237
238 static gboolean
239 match_roles_lookup (AtkObject * child, MatchRulePrivate * mrp)
240 {
241   switch (mrp->rolematchtype)
242     {
243     case ATSPI_Collection_MATCH_ALL:
244       if (match_roles_all_p (child, mrp->roles))
245         return TRUE;
246       break;
247
248     case ATSPI_Collection_MATCH_ANY:
249       if (match_roles_any_p (child, mrp->roles))
250         return TRUE;
251       break;
252
253     case ATSPI_Collection_MATCH_NONE:
254       if (match_roles_none_p (child, mrp->roles))
255         return TRUE;
256       break;
257
258     default:
259       break;
260
261     }
262   return FALSE;
263 }
264
265 static gboolean
266 match_interfaces_all_p (AtkObject * obj, gchar ** ifaces)
267 {
268   gint i;
269
270   if (ifaces == NULL)
271     return TRUE;
272
273   for (i = 0; ifaces[i]; i++)
274     if (!child_interface_p (obj, ifaces[i]))
275       {
276         return FALSE;
277       }
278   return TRUE;
279 }
280
281 static gboolean
282 match_interfaces_any_p (AtkObject * obj, gchar ** ifaces)
283 {
284   gint i;
285
286   if (ifaces == NULL)
287     return TRUE;
288
289
290   for (i = 0; ifaces[i]; i++)
291     if (child_interface_p (obj, ifaces[i]))
292       {
293         return TRUE;
294       }
295   return FALSE;
296 }
297
298 static gboolean
299 match_interfaces_none_p (AtkObject * obj, gchar ** ifaces)
300 {
301   gint i;
302
303   for (i = 0; ifaces[i]; i++)
304     if (child_interface_p (obj, ifaces[i]))
305       return FALSE;
306
307   return TRUE;
308 }
309
310 static gboolean
311 match_interfaces_lookup (AtkObject * child, MatchRulePrivate * mrp)
312 {
313   switch (mrp->interfacematchtype)
314     {
315
316     case ATSPI_Collection_MATCH_ALL:
317       if (match_interfaces_all_p (child, mrp->ifaces))
318         return TRUE;
319       break;
320
321     case ATSPI_Collection_MATCH_ANY:
322       if (match_interfaces_any_p (child, mrp->ifaces))
323         return TRUE;
324       break;
325
326     case ATSPI_Collection_MATCH_NONE:
327       if (match_interfaces_none_p (child, mrp->ifaces))
328         return TRUE;
329       break;
330
331     default:
332       break;
333     }
334
335   return FALSE;
336 }
337
338 #define split_attributes(attributes) (g_strsplit (attributes, ";", 0))
339
340 static gboolean
341 match_attributes_all_p (AtkObject * child, AtkAttributeSet * attributes)
342 {
343   int i, k;
344   AtkAttributeSet *oa;
345   gint length, oa_length;
346   gboolean flag = FALSE;
347
348   if (attributes == NULL || g_slist_length (attributes) == 0)
349     return TRUE;
350
351   oa = atk_object_get_attributes (child);
352   length = g_slist_length (attributes);
353   oa_length = g_slist_length (oa);
354
355   for (i = 0; i < length; i++)
356     {
357       AtkAttribute *attr = g_slist_nth_data (attributes, i);
358       for (k = 0; k < oa_length; k++)
359         {
360           AtkAttribute *oa_attr = g_slist_nth_data (attributes, i);
361           if (!g_ascii_strcasecmp (oa_attr->name, attr->name) &&
362               !g_ascii_strcasecmp (oa_attr->value, attr->value))
363             {
364               flag = TRUE;
365               break;
366             }
367           else
368             flag = FALSE;
369         }
370       if (!flag)
371         {
372           atk_attribute_set_free (oa);
373           return FALSE;
374         }
375     }
376   atk_attribute_set_free (oa);
377   return TRUE;
378 }
379
380 static gboolean
381 match_attributes_any_p (AtkObject * child, AtkAttributeSet * attributes)
382 {
383   int i, k;
384
385   AtkAttributeSet *oa;
386   gint length, oa_length;
387
388   length = g_slist_length (attributes);
389   if (length == 0)
390     return TRUE;
391
392   oa = atk_object_get_attributes (child);
393   oa_length = g_slist_length (oa);
394
395   for (i = 0; i < length; i++)
396     {
397       AtkAttribute *attr = g_slist_nth_data (attributes, i);
398       for (k = 0; k < oa_length; k++)
399         {
400           AtkAttribute *oa_attr = g_slist_nth_data (oa, k);
401           if (!g_ascii_strcasecmp (oa_attr->name, attr->name) &&
402               !g_ascii_strcasecmp (oa_attr->value, attr->value))
403             {
404               atk_attribute_set_free (oa);
405               return TRUE;
406             }
407         }
408     }
409   atk_attribute_set_free (oa);
410   return FALSE;
411 }
412
413 static gboolean
414 match_attributes_none_p (AtkObject * child, AtkAttributeSet * attributes)
415 {
416   int i, k;
417
418   AtkAttributeSet *oa;
419   gint length, oa_length;
420
421   length = g_slist_length (attributes);
422   if (length == 0)
423     return TRUE;
424
425   oa = atk_object_get_attributes (child);
426   oa_length = g_slist_length (oa);
427
428   for (i = 0; i < length; i++)
429     {
430       AtkAttribute *attr = g_slist_nth_data (attributes, i);
431       for (k = 0; k < oa_length; k++)
432         {
433           AtkAttribute *oa_attr = g_slist_nth_data (attributes, i);
434           if (!g_ascii_strcasecmp (oa_attr->name, attr->name) &&
435               !g_ascii_strcasecmp (oa_attr->value, attr->value))
436             {
437               atk_attribute_set_free (oa);
438               return FALSE;
439             }
440         }
441     }
442   atk_attribute_set_free (oa);
443   return TRUE;
444 }
445
446 static gboolean
447 match_attributes_lookup (AtkObject * child, MatchRulePrivate * mrp)
448 {
449   switch (mrp->attributematchtype)
450     {
451
452     case ATSPI_Collection_MATCH_ALL:
453       if (match_attributes_all_p (child, mrp->attributes))
454         return TRUE;
455       break;
456
457     case ATSPI_Collection_MATCH_ANY:
458       if (match_attributes_any_p (child, mrp->attributes))
459         return TRUE;
460       break;
461
462     case ATSPI_Collection_MATCH_NONE:
463       if (match_attributes_none_p (child, mrp->attributes))
464         return TRUE;
465       break;
466
467     default:
468       break;
469     }
470   return FALSE;
471 }
472
473 static gboolean
474 traverse_p (AtkObject * child, const gboolean traverse)
475 {
476   if (traverse)
477     return TRUE;
478   else
479     return !child_collection_p (child);
480 }
481
482 static int
483 sort_order_canonical (MatchRulePrivate * mrp, GList * ls,
484                       gint kount, gint max,
485                       AtkObject * obj, glong index, gboolean flag,
486                       AtkObject * pobj, gboolean recurse, gboolean traverse)
487 {
488   gint i = index;
489   glong acount = atk_object_get_n_accessible_children (obj);
490   gboolean prev = pobj ? TRUE : FALSE;
491
492   for (; i < acount && (max == 0 || kount < max); i++)
493     {
494       AtkObject *child = atk_object_ref_accessible_child (obj, i);
495
496       g_object_unref (child);
497       if (prev && child == pobj)
498         {
499           return kount;
500         }
501
502       if (flag && match_interfaces_lookup (child, mrp)
503           && match_states_lookup (child, mrp)
504           && match_roles_lookup (child, mrp)
505           && match_attributes_lookup (child, mrp))
506         {
507
508           ls = g_list_append (ls, child);
509           kount++;
510         }
511
512       if (!flag)
513         flag = TRUE;
514
515       if (recurse && traverse_p (child, traverse))
516         kount = sort_order_canonical (mrp, ls, kount,
517                                       max, child, 0, TRUE,
518                                       pobj, recurse, traverse);
519     }
520   return kount;
521 }
522
523 static int
524 sort_order_rev_canonical (MatchRulePrivate * mrp, GList * ls,
525                           gint kount, gint max,
526                           AtkObject * obj, gboolean flag, AtkObject * pobj)
527 {
528   AtkObject *nextobj;
529   AtkObject *parent;
530   glong indexinparent;
531
532   /* This breaks us out of the recursion. */
533   if (!obj || obj == pobj)
534     {
535       return kount;
536     }
537
538   /* Add to the list if it matches */
539   if (flag && match_interfaces_lookup (obj, mrp)
540       && match_states_lookup (obj, mrp)
541       && match_roles_lookup (obj, mrp) && match_attributes_lookup (obj, mrp)
542       && (max == 0 || kount < max))
543     {
544       ls = g_list_append (ls, obj);
545       kount++;
546     }
547
548   if (!flag)
549     flag = TRUE;
550
551   /* Get the current nodes index in it's parent and the parent object. */
552   indexinparent = atk_object_get_index_in_parent (obj);
553   parent = atk_object_get_parent (obj);
554
555   if (indexinparent > 0 && (max == 0 || kount < max))
556     {
557       /* there are still some siblings to visit so get the previous sibling
558          and get it's last descendant.
559          First, get the previous sibling */
560       nextobj = atk_object_ref_accessible_child (parent, indexinparent - 1);
561       g_object_unref (nextobj);
562
563       /* Now, drill down the right side to the last descendant */
564       while (atk_object_get_n_accessible_children (nextobj) > 0)
565         {
566           nextobj = atk_object_ref_accessible_child (nextobj,
567                                                      atk_object_get_n_accessible_children
568                                                      (nextobj) - 1);
569           g_object_unref (nextobj);
570         }
571       /* recurse with the last descendant */
572       kount = sort_order_rev_canonical (mrp, ls, kount, max,
573                                         nextobj, TRUE, pobj);
574     }
575   else if (max == 0 || kount < max)
576     {
577       /* no more siblings so next node must be the parent */
578       kount = sort_order_rev_canonical (mrp, ls, kount, max,
579                                         parent, TRUE, pobj);
580
581     }
582   return kount;
583 }
584
585 static int
586 query_exec (MatchRulePrivate * mrp, AtspiCollectionSortOrder sortby,
587             GList * ls, gint kount, gint max,
588             AtkObject * obj, glong index,
589             gboolean flag,
590             AtkObject * pobj, gboolean recurse, gboolean traverse)
591 {
592   switch (sortby)
593     {
594     case ATSPI_Collection_SORT_ORDER_CANONICAL:
595       kount = sort_order_canonical (mrp, ls, 0, max, obj, index, flag,
596                                     pobj, recurse, traverse);
597       break;
598     case ATSPI_Collection_SORT_ORDER_REVERSE_CANONICAL:
599       kount = sort_order_canonical (mrp, ls, 0, max, obj, index, flag,
600                                     pobj, recurse, traverse);
601       break;
602     default:
603       kount = 0;
604       g_warning ("Sort method not implemented yet");
605       break;
606     }
607
608   return kount;
609 }
610
611 static gboolean
612 bitarray_to_seq (dbus_uint32_t *array, int array_count, int **ret)
613 {
614   int out_size = 4;
615   int out_count = 0;
616   int i, j;
617   int *out = (int *) g_malloc (out_size * sizeof (int));
618
619   if (!out)
620     return FALSE;
621   for (i = 0; i < array_count; i++)
622     {
623       for (j = 0; j < 32; j++)
624         {
625           if (array[i] & (1 << j))
626             {
627               if (out_count == out_size - 2)
628                 {
629                   out_size <<= 1;
630                   out = (int *) g_realloc (out, out_size * sizeof (int));
631                   if (!out)
632                     return FALSE;
633                 }
634               out[out_count++] = i * 32 + j;
635             }
636         }
637     }
638   out[out_count] = BITARRAY_SEQ_TERM;
639   *ret = out;
640   return TRUE;
641 }
642
643
644 static dbus_bool_t
645 read_mr (DBusMessageIter * iter, MatchRulePrivate * mrp)
646 {
647   DBusMessageIter iter_struct, iter_array, iter_dict, iter_dict_entry;
648   dbus_uint32_t *array;
649   dbus_int32_t matchType;
650   int array_count;
651   AtkAttribute *attr;
652   int i;
653
654   dbus_message_iter_recurse (iter, &iter_struct);
655
656   /* states */
657   dbus_message_iter_recurse (&iter_struct, &iter_array);
658   dbus_message_iter_get_fixed_array (&iter_array, &array, &array_count);
659   bitarray_to_seq (array, array_count, &mrp->states);
660   for (i = 0; mrp->states[i] != BITARRAY_SEQ_TERM; i++)
661     {
662       mrp->states[i] = spi_atk_state_from_spi_state (mrp->states[i]);
663     }
664   dbus_message_iter_next (&iter_struct);
665   dbus_message_iter_get_basic (&iter_struct, &matchType);
666   dbus_message_iter_next (&iter_struct);
667   mrp->statematchtype = matchType;;
668
669   /* attributes */
670   mrp->attributes = NULL;
671   dbus_message_iter_recurse (&iter_struct, &iter_dict);
672   while (dbus_message_iter_get_arg_type (&iter_dict) != DBUS_TYPE_INVALID)
673     {
674       const char *key, *val;
675       const char *p, *q;
676       dbus_message_iter_recurse (&iter_dict, &iter_dict_entry);
677       dbus_message_iter_get_basic (&iter_dict_entry, &key);
678       dbus_message_iter_next (&iter_dict_entry);
679       dbus_message_iter_get_basic (&iter_dict_entry, &val);
680       p = q = val;
681       for (;;)
682       {
683         if (*q == '\0' || (*q == ':' && (q == val || q[-1] != '\\')))
684         {
685           char *tmp;
686           attr = g_new (AtkAttribute, 1);
687           attr->name = g_strdup (key);
688           attr->value = g_strdup (p);
689           attr->value[q - p] = '\0';
690           tmp = attr->value;
691           while (*tmp != '\0')
692           {
693             if (*tmp == '\\')
694               memmove (tmp, tmp + 1, strlen (tmp));
695             else
696               tmp++;
697           }
698           mrp->attributes = g_slist_prepend (mrp->attributes, attr);
699           if (*q == '\0')
700             break;
701           else
702             p = ++q;
703         }
704         else
705           q++;
706       }
707       dbus_message_iter_next (&iter_dict);
708     }
709   dbus_message_iter_next (&iter_struct);
710   dbus_message_iter_get_basic (&iter_struct, &matchType);
711   mrp->attributematchtype = matchType;;
712   dbus_message_iter_next (&iter_struct);
713
714   /* Get roles and role match */
715   dbus_message_iter_recurse (&iter_struct, &iter_array);
716   dbus_message_iter_get_fixed_array (&iter_array, &array, &array_count);
717   bitarray_to_seq (array, array_count, &mrp->roles);
718   dbus_message_iter_next (&iter_struct);
719   dbus_message_iter_get_basic (&iter_struct, &matchType);
720   mrp->rolematchtype = matchType;;
721   dbus_message_iter_next (&iter_struct);
722
723   /* Get interfaces and interface match */
724   dbus_message_iter_recurse (&iter_struct, &iter_array);
725   mrp->ifaces = g_new0 (gchar *, 16);
726   i = 0;
727   while (i < 15 && dbus_message_iter_get_arg_type (&iter_array) != DBUS_TYPE_INVALID)
728   {
729     char *iface;
730     dbus_message_iter_get_basic (&iter_array, &iface);
731     mrp->ifaces [i] = g_strdup (iface);
732     i++;
733     dbus_message_iter_next (&iter_array);
734   }
735   dbus_message_iter_next (&iter_struct);
736   dbus_message_iter_get_basic (&iter_struct, &matchType);
737   mrp->interfacematchtype = matchType;;
738   dbus_message_iter_next (&iter_struct);
739   /* get invert */
740   dbus_message_iter_get_basic (&iter_struct, &mrp->invert);
741   dbus_message_iter_next (iter);
742   return TRUE;
743 }
744
745 static DBusMessage *
746 return_and_free_list (DBusMessage * message, GList * ls)
747 {
748   DBusMessage *reply;
749   DBusMessageIter iter, iter_array;
750   GList *item;
751
752   reply = dbus_message_new_method_return (message);
753   if (!reply)
754     return NULL;
755   dbus_message_iter_init_append (reply, &iter);
756   if (!dbus_message_iter_open_container
757       (&iter, DBUS_TYPE_ARRAY, "(so)", &iter_array))
758     goto oom;
759   for (item = ls; item; item = g_list_next (item))
760     {
761       spi_object_append_reference (&iter_array, ATK_OBJECT (item->data));
762     }
763   if (!dbus_message_iter_close_container (&iter, &iter_array))
764     goto oom;
765   g_list_free (ls);
766   return reply;
767 oom:
768   // TODO: Handle out of memory
769   g_list_free (ls);
770   return reply;
771 }
772
773 static void
774 free_mrp_data (MatchRulePrivate * mrp)
775 {
776   g_free (mrp->states);
777   atk_attribute_set_free (mrp->attributes);
778   g_free (mrp->roles);
779   g_strfreev (mrp->ifaces);
780 }
781
782 static DBusMessage *
783 GetMatchesFrom (DBusMessage * message,
784                 AtkObject * current_object,
785                 MatchRulePrivate * mrp,
786                 const AtspiCollectionSortOrder sortby,
787                 const dbus_bool_t isrestrict,
788                 dbus_int32_t count, const dbus_bool_t traverse)
789 {
790   GList *ls = NULL;
791   AtkObject *parent;
792   glong index = atk_object_get_index_in_parent (current_object);
793
794   ls = g_list_append (ls, current_object);
795
796   if (!isrestrict)
797     {
798       parent = atk_object_get_parent (current_object);
799       query_exec (mrp, sortby, ls, 0, count, parent, index,
800                   FALSE, NULL, TRUE, traverse);
801     }
802   else
803     query_exec (mrp, sortby, ls, 0, count,
804                 current_object, 0, FALSE, NULL, TRUE, traverse);
805
806   ls = g_list_remove (ls, ls->data);
807
808   if (sortby == ATSPI_Collection_SORT_ORDER_REVERSE_CANONICAL)
809     ls = g_list_reverse (ls);
810
811   free_mrp_data (mrp);
812   return return_and_free_list (message, ls);
813 }
814
815 /*
816   inorder traversal from a given object in the hierarchy
817 */
818
819 static int
820 inorder (AtkObject * collection, MatchRulePrivate * mrp,
821          GList * ls, gint kount, gint max,
822          AtkObject * obj,
823          gboolean flag, AtkObject * pobj, dbus_bool_t traverse)
824 {
825   int i = 0;
826
827   /* First, look through the children recursively. */
828   kount = sort_order_canonical (mrp, ls, kount, max, obj, 0, TRUE,
829                                 NULL, TRUE, TRUE);
830
831   /* Next, we look through the right subtree */
832   while ((max == 0 || kount < max) && obj != collection)
833     {
834       AtkObject *parent = atk_object_get_parent (obj);
835       i = atk_object_get_index_in_parent (obj);
836       kount = sort_order_canonical (mrp, ls, kount, max, parent,
837                                     i + 1, TRUE, FALSE, TRUE, TRUE);
838       obj = parent;
839     }
840
841   if (max == 0 || kount < max)
842     {
843       kount = sort_order_canonical (mrp, ls, kount, max,
844                                     obj, i + 1, TRUE, FALSE, TRUE, TRUE);
845     }
846
847   return kount;
848 }
849
850 /*
851   GetMatchesInOrder: get matches from a given object in an inorder traversal.
852 */
853
854 static DBusMessage *
855 GetMatchesInOrder (DBusMessage * message,
856                    AtkObject * current_object,
857                    MatchRulePrivate * mrp,
858                    const AtspiCollectionSortOrder sortby,
859                    const dbus_bool_t recurse,
860                    dbus_int32_t count, const dbus_bool_t traverse)
861 {
862   GList *ls = NULL;
863   AtkObject *obj;
864
865   ls = g_list_append (ls, current_object);
866
867   obj = ATK_OBJECT(spi_register_path_to_object (spi_global_register, dbus_message_get_path (message)));
868
869   inorder (obj, mrp, ls, 0, count,
870            current_object, TRUE, NULL, traverse);
871
872   ls = g_list_remove (ls, ls->data);
873
874   if (sortby == ATSPI_Collection_SORT_ORDER_REVERSE_CANONICAL)
875     ls = g_list_reverse (ls);
876
877   free_mrp_data (mrp);
878   return return_and_free_list (message, ls);
879 }
880
881 /*
882   GetMatchesInBackOrder: get matches from a given object in a
883   reverse order traversal.
884 */
885
886 static DBusMessage *
887 GetMatchesInBackOrder (DBusMessage * message,
888                        AtkObject * current_object,
889                        MatchRulePrivate * mrp,
890                        const AtspiCollectionSortOrder sortby,
891                        dbus_int32_t count)
892 {
893   GList *ls = NULL;
894   AtkObject *collection;
895
896   ls = g_list_append (ls, current_object);
897
898   collection = ATK_OBJECT(spi_register_path_to_object (spi_global_register, dbus_message_get_path (message)));
899
900   sort_order_rev_canonical (mrp, ls, 0, count, current_object,
901                             FALSE, collection);
902
903   ls = g_list_remove (ls, ls->data);
904
905   if (sortby == ATSPI_Collection_SORT_ORDER_REVERSE_CANONICAL)
906     ls = g_list_reverse (ls);
907
908   free_mrp_data (mrp);
909   return return_and_free_list (message, ls);
910 }
911
912 static DBusMessage *
913 GetMatchesTo (DBusMessage * message,
914               AtkObject * current_object,
915               MatchRulePrivate * mrp,
916               const AtspiCollectionSortOrder sortby,
917               const dbus_bool_t recurse,
918               const dbus_bool_t isrestrict,
919               dbus_int32_t count, const dbus_bool_t traverse)
920 {
921   GList *ls = NULL;
922   AtkObject *obj;
923   ls = g_list_append (ls, current_object);
924
925   if (recurse)
926     {
927       obj = ATK_OBJECT (atk_object_get_parent (current_object));
928       query_exec (mrp, sortby, ls, 0, count,
929                   obj, 0, TRUE, current_object, TRUE, traverse);
930     }
931   else
932     {
933       obj = ATK_OBJECT (spi_register_path_to_object (spi_global_register, dbus_message_get_path (message)));
934       query_exec (mrp, sortby, ls, 0, count,
935                   obj, 0, TRUE, current_object, TRUE, traverse);
936
937     }
938
939   ls = g_list_remove (ls, ls->data);
940
941   if (sortby != ATSPI_Collection_SORT_ORDER_REVERSE_CANONICAL)
942     ls = g_list_reverse (ls);
943
944   free_mrp_data (mrp);
945   return return_and_free_list (message, ls);
946 }
947
948 static DBusMessage *
949 impl_GetMatchesFrom (DBusConnection * bus, DBusMessage * message,
950                      void *user_data)
951 {
952   char *current_object_path = NULL;
953   AtkObject *current_object;
954   DBusMessageIter iter;
955   MatchRulePrivate rule;
956   dbus_uint32_t sortby;
957   dbus_uint32_t tree;
958   dbus_int32_t count;
959   dbus_bool_t traverse;
960   const char *signature;
961
962   signature = dbus_message_get_signature (message);
963   if (strcmp (signature, "o(aiia{ss}iaiiasib)uuib") != 0)
964     {
965       return droute_invalid_arguments_error (message);
966     }
967
968   dbus_message_iter_init (message, &iter);
969   dbus_message_iter_get_basic (&iter, &current_object_path);
970   current_object = ATK_OBJECT (spi_register_path_to_object (spi_global_register, current_object_path));
971   if (!current_object)
972     {
973       // TODO: object-not-found error
974       return spi_dbus_general_error (message);
975     }
976   dbus_message_iter_next (&iter);
977   if (!read_mr (&iter, &rule))
978     {
979       return spi_dbus_general_error (message);
980     }
981   dbus_message_iter_get_basic (&iter, &sortby);
982   dbus_message_iter_next (&iter);
983   dbus_message_iter_get_basic (&iter, &tree);
984   dbus_message_iter_next (&iter);
985   dbus_message_iter_get_basic (&iter, &count);
986   dbus_message_iter_next (&iter);
987   dbus_message_iter_get_basic (&iter, &traverse);
988   dbus_message_iter_next (&iter);
989
990   switch (tree)
991     {
992     case ATSPI_Collection_TREE_RESTRICT_CHILDREN:
993       return GetMatchesFrom (message, current_object,
994                              &rule, sortby, TRUE, count, traverse);
995       break;
996     case ATSPI_Collection_TREE_RESTRICT_SIBLING:
997       return GetMatchesFrom (message, current_object,
998                              &rule, sortby, FALSE, count, traverse);
999       break;
1000     case ATSPI_Collection_TREE_INORDER:
1001       return GetMatchesInOrder (message, current_object,
1002                                 &rule, sortby, TRUE, count, traverse);
1003       break;
1004     default:
1005       return NULL;
1006     }
1007 }
1008
1009 static DBusMessage *
1010 impl_GetMatchesTo (DBusConnection * bus, DBusMessage * message,
1011                    void *user_data)
1012 {
1013   char *current_object_path = NULL;
1014   AtkObject *current_object;
1015   DBusMessageIter iter;
1016   MatchRulePrivate rule;
1017   dbus_uint32_t sortby;
1018   dbus_uint32_t tree;
1019   dbus_bool_t recurse;
1020   dbus_int32_t count;
1021   dbus_bool_t traverse;
1022   const char *signature;
1023
1024   signature = dbus_message_get_signature (message);
1025   if (strcmp (signature, "o(aiia{ss}iaiiasib)uubib") != 0)
1026     {
1027       return droute_invalid_arguments_error (message);
1028     }
1029
1030   dbus_message_iter_init (message, &iter);
1031   dbus_message_iter_get_basic (&iter, &current_object_path);
1032   current_object = ATK_OBJECT (spi_register_path_to_object (spi_global_register, current_object_path));
1033   if (!current_object)
1034     {
1035       // TODO: object-not-found error
1036       return spi_dbus_general_error (message);
1037     }
1038   dbus_message_iter_next (&iter);
1039   if (!read_mr (&iter, &rule))
1040     {
1041       return spi_dbus_general_error (message);
1042     }
1043   dbus_message_iter_get_basic (&iter, &sortby);
1044   dbus_message_iter_next (&iter);
1045   dbus_message_iter_get_basic (&iter, &tree);
1046   dbus_message_iter_next (&iter);
1047   dbus_message_iter_get_basic (&iter, &recurse);
1048   dbus_message_iter_next (&iter);
1049   dbus_message_iter_get_basic (&iter, &count);
1050   dbus_message_iter_next (&iter);
1051   dbus_message_iter_get_basic (&iter, &traverse);
1052   dbus_message_iter_next (&iter);
1053
1054   switch (tree)
1055     {
1056     case ATSPI_Collection_TREE_RESTRICT_CHILDREN:
1057       return GetMatchesTo (message, current_object,
1058                            &rule, sortby, recurse, TRUE, count, traverse);
1059       break;
1060     case ATSPI_Collection_TREE_RESTRICT_SIBLING:
1061       return GetMatchesTo (message, current_object,
1062                            &rule, sortby, recurse, FALSE, count, traverse);
1063       break;
1064     case ATSPI_Collection_TREE_INORDER:
1065       return GetMatchesInBackOrder (message, current_object,
1066                                     &rule, sortby, count);
1067       break;
1068     default:
1069       return NULL;
1070     }
1071 }
1072
1073 static DBusMessage *
1074 impl_GetMatches (DBusConnection * bus, DBusMessage * message, void *user_data)
1075 {
1076   AtkObject *obj = ATK_OBJECT (spi_register_path_to_object (spi_global_register, dbus_message_get_path (message)));
1077   DBusMessageIter iter;
1078   MatchRulePrivate rule;
1079   dbus_uint32_t sortby;
1080   dbus_int32_t count;
1081   dbus_bool_t traverse;
1082   GList *ls = NULL;
1083   const char *signature;
1084
1085   signature = dbus_message_get_signature (message);
1086   if (strcmp (signature, "(aiia{ss}iaiiasib)uib") != 0)
1087     {
1088       return droute_invalid_arguments_error (message);
1089     }
1090
1091   dbus_message_iter_init (message, &iter);
1092   if (!read_mr (&iter, &rule))
1093     {
1094       return spi_dbus_general_error (message);
1095     }
1096   dbus_message_iter_get_basic (&iter, &sortby);
1097   dbus_message_iter_next (&iter);
1098   dbus_message_iter_get_basic (&iter, &count);
1099   dbus_message_iter_next (&iter);
1100   dbus_message_iter_get_basic (&iter, &traverse);
1101   dbus_message_iter_next (&iter);
1102   ls = g_list_prepend (ls, obj);
1103   count = query_exec (&rule, sortby, ls, 0, count,
1104                       obj, 0, TRUE, NULL, TRUE, traverse);
1105   ls = g_list_remove (ls, ls->data);
1106
1107   if (sortby == ATSPI_Collection_SORT_ORDER_REVERSE_CANONICAL)
1108     ls = g_list_reverse (ls);
1109   free_mrp_data (&rule);
1110   return return_and_free_list (message, ls);
1111 }
1112
1113 static DRouteMethod methods[] = {
1114   {impl_GetMatchesFrom, "GetMatchesFrom"},
1115   {impl_GetMatchesTo, "GetMatchesTo"},
1116   {impl_GetMatches, "GetMatches"},
1117   {NULL, NULL}
1118 };
1119
1120 void
1121 spi_initialize_collection (DRoutePath * path)
1122 {
1123   droute_path_add_interface (path,
1124                              ATSPI_DBUS_INTERFACE_COLLECTION, spi_org_a11y_atspi_Collection, methods, NULL);
1125 };