Rework functions related to device events
[platform/core/uifw/at-spi2-atk.git] / libspi / dbus.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  *
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 "accessible.h"
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <string.h>
27
28 static GHashTable *path2ptr;
29 static guint objindex;
30
31 static void
32 deregister_object (gpointer data, GObject *obj)
33 {
34   spi_dbus_notify_remove(ATK_OBJECT(obj), NULL);
35   g_hash_table_remove (path2ptr, &obj);
36 }
37
38 static guint
39 register_object (AtkObject * obj)
40 {
41   gint *new_int;
42
43   if (!path2ptr)
44     {
45       path2ptr = g_hash_table_new_full (g_int_hash, g_int_equal, g_free, NULL);
46       if (!path2ptr)
47         return ++objindex;
48     }
49   objindex++;
50   while (g_hash_table_lookup (path2ptr, &objindex))
51     {
52       objindex++;
53       /* g_object_get_data returning 0 means no data, so handle wrap-around */
54       if (objindex == 0)
55         objindex++;
56     }
57   new_int = (gint *)g_malloc(sizeof(gint));
58   if (new_int)
59   {
60     *new_int = objindex;
61     g_hash_table_insert (path2ptr, new_int, obj);
62   }
63   g_object_set_data (G_OBJECT (obj), "dbus-id", (gpointer) objindex);
64   g_object_weak_ref(G_OBJECT(obj), deregister_object, NULL);
65   spi_dbus_notify_change(obj, TRUE, NULL);
66   return objindex;
67 }
68
69 AtkObject *
70 spi_dbus_get_object (const char *path)
71 {
72   guint index;
73   void *data;
74
75   g_assert (path);
76   if (strncmp(path, "/org/freedesktop/atspi/accessible", 33) != 0) return NULL;
77   path += 33;   /* skip over preamble */
78   if (path[0] == '\0') return atk_get_root();
79   if (path[0] != '/') return NULL;
80   path++;
81   index = atoi (path);
82   data = g_hash_table_lookup (path2ptr, &index);
83   if (data)
84     return ATK_OBJECT (data);
85   return NULL;
86 }
87
88 gchar *
89 spi_dbus_get_path (AtkObject * obj)
90 {
91   if (!obj) return NULL;
92   guint index = (guint) g_object_get_data (G_OBJECT (obj), "dbus-id");
93   if (!index)
94     index = register_object (obj);
95   return g_strdup_printf ("/org/freedesktop/atspi/accessible/%d", index);
96 }
97
98 DBusMessage *
99 spi_dbus_general_error (DBusMessage * message)
100 {
101   return dbus_message_new_error (message,
102                                  "org.freedesktop.atspi.GeneralError",
103                                  "General error");
104 }
105
106 /* Reply with the given object and dereference it if unref is TRUE */
107 DBusMessage *
108 spi_dbus_return_object (DBusMessage * message, AtkObject * obj, int unref)
109 {
110   DBusMessage *reply;
111   const char *path = spi_dbus_get_path (obj);
112   if (unref)
113     g_object_unref (obj);
114   if (!path)
115     {
116       /* Should we have a more specific error for this? */
117       return spi_dbus_general_error (message);
118     }
119   reply = dbus_message_new_method_return (message);
120   if (reply)
121     {
122       dbus_message_append_args (reply, DBUS_TYPE_OBJECT_PATH, path,
123                                 DBUS_TYPE_INVALID);
124     }
125   return reply;
126 }
127
128 DBusMessage *
129 spi_dbus_return_rect (DBusMessage * message, gint ix, gint iy, gint iwidth,
130                       gint iheight)
131 {
132   DBusMessage *reply;
133   dbus_uint32_t x, y, width, height;
134
135   x = ix;
136   y = iy;
137   width = iwidth;
138   height = iheight;
139   reply = dbus_message_new_method_return (message);
140   if (reply)
141     {
142       DBusMessageIter iter, sub;
143       dbus_message_iter_init_append (reply, &iter);
144       if (!dbus_message_iter_open_container
145           (&iter, DBUS_TYPE_STRUCT, NULL, &sub))
146         goto oom;
147       dbus_message_iter_append_basic (&sub, DBUS_TYPE_INT32, &x);
148       dbus_message_iter_append_basic (&sub, DBUS_TYPE_INT32, &y);
149       dbus_message_iter_append_basic (&sub, DBUS_TYPE_INT32, &width);
150       dbus_message_iter_append_basic (&sub, DBUS_TYPE_INT32, &height);
151       if (!dbus_message_iter_close_container (&iter, &sub))
152         goto oom;
153     }
154   return reply;
155 oom:
156   /* todo: return an error */
157   return reply;
158 }
159
160 dbus_bool_t
161 spi_dbus_return_v_object (DBusMessageIter * iter, AtkObject * obj, int unref)
162 {
163   const char *path = spi_dbus_get_path (obj);
164   if (unref)
165     g_object_unref (obj);
166   if (!path)
167     return FALSE;
168   return droute_return_v_object (iter, path);
169 }
170
171
172 void
173 spi_dbus_initialize (DRouteData * data)
174 {
175   spi_initialize_accessible (data);
176   spi_initialize_action(data);
177   spi_initialize_component (data);
178   spi_initialize_document (data);
179   spi_initialize_editabletext (data);
180   spi_initialize_hyperlink (data);
181   spi_initialize_hypertext (data);
182   spi_initialize_image (data);
183   spi_initialize_selection (data);
184   spi_initialize_table (data);
185   spi_initialize_text (data);
186   spi_initialize_value (data);
187   spi_initialize_introspectable(data);
188 }
189
190 static GString *
191 spi_get_tree (AtkObject * obj, GString * str, DRouteData * data)
192 {
193   int role;
194   const char *name;
195   gchar *path;
196   GSList *l;
197   gint childcount;
198   gint i;
199
200   if (!obj)
201     return NULL;
202   role = spi_accessible_role_from_atk_role (atk_object_get_role (obj));;
203   name = atk_object_get_name (obj);
204   if (!name)
205     name = "";
206   path = spi_dbus_get_path (obj);
207   g_string_append_printf (str,
208                           "<object path=\"%s\" name=\"%s\" role=\"%d\">\n",
209                           path, name, role);
210   for (l = data->interfaces; l; l = g_slist_next (l))
211     {
212       DRouteInterface *iface_def = (DRouteInterface *) l->data;
213       void *datum = NULL;
214       if (iface_def->get_datum)
215         datum = (*iface_def->get_datum) (path, data->user_data);
216       if (datum)
217         {
218           g_string_append_printf (str, "<interface name=\"%s\"/>\n",
219                                   iface_def->name);
220           if (iface_def->free_datum)
221             (*iface_def->free_datum) (datum);
222         }
223     }
224   childcount = atk_object_get_n_accessible_children (obj);
225   for (i = 0; i < childcount; i++)
226     {
227       AtkObject *child = atk_object_ref_accessible_child (obj, i);
228       str = spi_get_tree (child, str, data);
229       g_object_unref (child);
230     }
231   str = g_string_append (str, "</object>\n");
232   return str;
233 }
234
235 dbus_bool_t spi_dbus_message_iter_get_struct(DBusMessageIter *iter, ...)
236 {
237   va_list args;
238   DBusMessageIter iter_struct;
239   int type;
240   void *ptr;
241
242   dbus_message_iter_recurse(iter, &iter_struct);
243   va_start(args, iter);
244   for (;;)
245   {
246     type = va_arg(args, int);
247     if (type == DBUS_TYPE_INVALID) break;
248     if (type != dbus_message_iter_get_arg_type(&iter_struct))
249     {
250       va_end(args);
251       return FALSE;
252     }
253     ptr = va_arg(args, void *);
254     dbus_message_iter_get_basic(&iter_struct, ptr);
255     dbus_message_iter_next(&iter_struct);
256   }
257   dbus_message_iter_next(iter);
258   va_end(args);
259   return TRUE;
260 }
261
262 dbus_bool_t spi_dbus_message_iter_append_struct(DBusMessageIter *iter, ...)
263 {
264   va_list args;
265   DBusMessageIter iter_struct;
266   int type;
267   void *ptr;
268
269   if (!dbus_message_iter_open_container(iter, &iter_struct)) return FALSE;
270   va_start(args, iter);
271   for (;;)
272   {
273     type = va_arg(args, int);
274     if (type == DBUS_TYPE_INVALID) break;
275     ptr = va_arg(args, void *);
276     dbus_message_iter_append_basic(&iter_struct, type, ptr);
277   }
278   if (!dbus_message_iter_close_container(iter, &iter_struct)) return FALSE;
279   va_end(args);
280   return TRUE;
281 }
282
283 dbus_bool_t spi_dbus_marshall_deviceEvent(DBusMessage *message, const Accessibility_DeviceEvent *e)
284 {
285   DBusMessageIter iter;
286
287   if (!message) return FALSE;
288   dbus_message_iter_init_append(message, &iter);
289   return spi_dbus_message_iter_append_struct(&iter, DBUS_TYPE_UINT32, &e->type, DBUS_TYPE_INT32, &e->id, DBUS_TYPE_INT16, &e->hw_code, DBUS_TYPE_INT16, &e->modifiers, DBUS_TYPE_INT32, &e->timestamp, DBUS_TYPE_STRING, &e->event_string, DBUS_TYPE_BOOLEAN, &e->is_text, DBUS_TYPE_INVALID);
290 }
291
292 dbus_bool_t spi_dbus_demarshall_deviceEvent(DBusMessage *message, Accessibility_DeviceEvent *e)
293 {
294   DBusMessageIter iter;
295
296   dbus_message_iter_init(message, &iter);
297   return spi_dbus_message_iter_get_struct(&iter, DBUS_TYPE_UINT32, &e->type, DBUS_TYPE_INT32, &e->id, DBUS_TYPE_INT16, &e->hw_code, DBUS_TYPE_INT16, &e->modifiers, DBUS_TYPE_INT32, &e->timestamp, DBUS_TYPE_STRING, &e->event_string, DBUS_TYPE_BOOLEAN, &e->is_text, DBUS_TYPE_INVALID);
298 }