2009-01-12 Mark Doffman <mark.doffman@codethink.co.uk>
[platform/core/uifw/at-spi2-atk.git] / atk-adaptor / tree-adaptor.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  * Copyright 2008, 2009 Codethink Ltd.
9  *
10  * This library is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Library General Public
12  * License as published by the Free Software Foundation; either
13  * version 2 of the License, or (at your option) any later version.
14  *
15  * This library is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18  * Library General Public License for more details.
19  *
20  * You should have received a copy of the GNU Library General Public
21  * License along with this library; if not, write to the
22  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23  * Boston, MA 02111-1307, USA.
24  */
25
26 #include <string.h>
27
28 #include <atk/atk.h>
29 #include <droute/droute.h>
30
31 #include "bridge.h"
32 #include "accessible-register.h"
33 #include "accessible-marshaller.h"
34 #include "spi-common/spi-dbus.h"
35
36 /*---------------------------------------------------------------------------*/
37
38 /* For use as a GHFunc */
39 static void
40 append_accessible_hf (gpointer key, gpointer obj_data, gpointer iter)
41 {
42   spi_atk_append_accessible (ATK_OBJECT(obj_data), iter);
43 }
44
45 /* For use as a GFunc */
46 static void
47 append_accessible_lf (gpointer obj_data, gpointer iter)
48 {
49   spi_atk_append_accessible (ATK_OBJECT(obj_data), iter);
50 }
51
52 /*---------------------------------------------------------------------------*/
53
54 void
55 spi_emit_cache_removal (guint ref,  DBusConnection *bus)
56 {
57   DBusMessage *message;
58   DBusMessageIter iter;
59   gchar *path;
60
61   message = dbus_message_new_signal ("/org/freedesktop/atspi/tree", SPI_DBUS_INTERFACE_TREE, "removeAccessible");
62
63   dbus_message_iter_init_append (message, &iter);
64
65   path = atk_dbus_ref_to_path (ref);
66   dbus_message_iter_append_basic (&iter, DBUS_TYPE_STRING, &path);
67
68   dbus_connection_send(bus, message, NULL);
69 }
70
71 void
72 spi_emit_cache_update (const GList *accessibles, DBusConnection *bus)
73 {
74    DBusMessage *message;
75    DBusMessageIter iter;
76    DBusMessageIter iter_array;
77    message = dbus_message_new_signal ("/org/freedesktop/atspi/tree", SPI_DBUS_INTERFACE_TREE, "updateAccessible");
78
79    dbus_message_iter_init_append (message, &iter);
80    dbus_message_iter_open_container (&iter, DBUS_TYPE_ARRAY, "(ooaoassusau)", &iter_array);
81    g_list_foreach ((GList *)accessibles, append_accessible_lf, &iter_array);
82    dbus_message_iter_close_container(&iter, &iter_array);
83
84    dbus_connection_send(bus, message, NULL);
85 }
86
87
88 /*---------------------------------------------------------------------------*/
89
90 static DBusMessage *
91 impl_getRoot (DBusConnection *bus, DBusMessage *message, void *user_data)
92 {
93   AtkObject *root = atk_get_root();
94   char *path;
95   DBusMessage *reply;
96
97   if (!root)
98       return spi_dbus_general_error (message);
99   path = atk_dbus_object_to_path (root);
100   if (!path)
101       return spi_dbus_general_error (message);
102   reply = dbus_message_new_method_return (message);
103   dbus_message_append_args (reply, DBUS_TYPE_OBJECT_PATH, &path, DBUS_TYPE_INVALID);
104   g_free (path);
105   return reply;
106 }
107
108 /*---------------------------------------------------------------------------*/
109
110 static DBusMessage *
111 impl_getTree (DBusConnection *bus, DBusMessage *message, void *user_data)
112 {
113   DBusMessage *reply;
114   DBusMessageIter iter, iter_array;
115
116   reply = dbus_message_new_method_return (message);
117
118   dbus_message_iter_init_append (reply, &iter);
119   dbus_message_iter_open_container(&iter, DBUS_TYPE_ARRAY, "(ooaoassusau)", &iter_array);
120   atk_dbus_foreach_registered(append_accessible_hf, &iter_array);
121   dbus_message_iter_close_container(&iter, &iter_array);
122   return reply;
123 }
124
125 /*---------------------------------------------------------------------------*/
126
127 static DRouteMethod methods[] = {
128   {impl_getRoot, "getRoot"},
129   {impl_getTree, "getTree"},
130   {NULL, NULL}
131 };
132
133 void
134 spi_initialize_tree (DRoutePath *path)
135 {
136   droute_path_add_interface (path,
137                              SPI_DBUS_INTERFACE_TREE,
138                              methods,
139                              NULL);
140 };
141
142 /*END------------------------------------------------------------------------*/