Don't leak errors
[platform/upstream/at-spi2-core.git] / atspi / atspi-registry.c
1
2 /*
3  * AT-SPI - Assistive Technology Service Provider Interface
4  * (Gnome Accessibility Project; http://developer.gnome.org/projects/gap)
5  *
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 /* atspi_registry.c: Global functions wrapping the registry */
26
27 #include "atspi-private.h"
28
29 /**
30  * atspi_get_desktop_count:
31  *
32  * Gets the number of virtual desktops.
33  * NOTE: multiple virtual desktops are not implemented yet; as a 
34  * consequence, this function always returns 1.
35  *
36  * Returns: a #gint indicating the number of active virtual desktops.
37  **/
38 gint
39 atspi_get_desktop_count ()
40 {
41   return 1;
42 }
43
44 /**
45  * atspi_get_desktop:
46  * @i: a #gint indicating which of the accessible desktops is to be returned.
47  *
48  * Gets the virtual desktop indicated by index @i.
49  * NOTE: currently multiple virtual desktops are not implemented;
50  * as a consequence, any @i value different from 0 will not return a
51  * virtual desktop - instead it will return NULL.
52  *
53  * Returns: (transfer full): a pointer to the @i-th virtual desktop's
54  * #AtspiAccessible representation.
55  **/
56 AtspiAccessible*
57 atspi_get_desktop (gint i)
58 {
59   if (i != 0) return NULL;
60   return _atspi_ref_accessible (atspi_bus_registry, atspi_path_root);
61 }
62
63 /**
64  * atspi_get_desktop_list:
65  *
66  * Gets the list of virtual desktops.  On return, @list will point
67  *     to a newly-created, NULL terminated array of virtual desktop
68  *     pointers.
69  *     It is the responsibility of the caller to free this array when
70  *     it is no longer needed.
71  * NOTE: currently multiple virtual desktops are not implemented;
72  * this implementation always returns a #Garray with a single
73  * #AtspiAccessible desktop.
74  *
75  * Returns: (transfer full): a #GArray of desktops.
76  **/
77 GArray *
78 atspi_get_desktop_list ()
79 {
80   GArray *array = g_array_new (TRUE, TRUE, sizeof (AtspiAccessible *));
81   AtspiAccessible *desktop;
82
83   desktop = _atspi_ref_accessible (atspi_bus_registry, atspi_path_root);
84   if (array)
85     g_array_index (array, AtspiAccessible *, 0) = desktop;
86   return array;
87 }
88
89 /**
90  * atspi_register_keystroke_listener:
91  * @listener:  a pointer to the #AtspiDeviceListener for which
92  *             keystroke events are requested.
93  * @key_set: (element-type AtspiKeyDefinition) (allow-none): a pointer to the
94  *        #AtspiKeyDefinition array indicating which keystroke events are
95  *        requested, or NULL
96  *        to indicate that all keycodes and keyvals for the specified
97  *        modifier set are to be included.
98  * @modmask:   an #AtspiKeyMaskType mask indicating which
99  *             key event modifiers must be set in combination with @keys,
100  *             events will only be reported for key events for which all
101  *             modifiers in @modmask are set.  If you wish to listen for
102  *             events with multiple modifier combinations, you must call
103  *             #atspi_register_keystroke_listener once for each
104  *             combination.
105  * @event_types: an #AtspiKeyMaskType mask indicating which
106  *             types of key events are requested (ATSPI_KEY_PRESSED etc.).
107  * @sync_type: an #AtspiKeyListenerSyncType parameter indicating
108  *             the behavior of the notification/listener transaction.
109  *             
110  * Registers a listener for keystroke events, either pre-emptively for
111  *             all windows (ATSPI_KEYLISTENER_ALL_WINDOWS),
112  *             non-preemptively (ATSPI_KEYLISTENER_NOSYNC), or
113  *             pre-emptively at the toolkit level (ATSPI_KEYLISTENER_CANCONSUME).
114  *             If ALL_WINDOWS or CANCONSUME are used, the event is consumed
115  *             upon receipt if one of @listener's callbacks returns #TRUE 
116  *             (other sync_type values may be available in the future).
117  *
118  * Returns: #TRUE if successful, otherwise #FALSE.
119  **/
120 gboolean
121 atspi_register_keystroke_listener (AtspiDeviceListener  *listener,
122                                          GArray             *key_set,
123                                          AtspiKeyMaskType         modmask,
124                                          AtspiKeyEventMask        event_types,
125                                          gint sync_type, GError **error)
126 {
127   GArray *d_key_set;
128   gchar *path = _atspi_device_listener_get_path (listener);
129   gint                                i;
130   dbus_uint32_t d_modmask = modmask;
131   dbus_uint32_t d_event_types = event_types;
132   AtspiEventListenerMode     listener_mode;
133   gboolean                          retval = FALSE;
134   DBusError d_error;
135
136   if (!listener)
137     {
138       return retval;
139     }
140
141   /* copy the keyval filter values from the C api into the DBind KeySet */
142   if (key_set)
143     {
144       d_key_set = g_array_sized_new (FALSE, TRUE, sizeof (AtspiKeyDefinition), key_set->len);
145       d_key_set->len = key_set->len;
146       for (i = 0; i < key_set->len; ++i)
147         {
148           AtspiKeyDefinition *kd =  ((AtspiKeyDefinition *) key_set->data) + i;
149           AtspiKeyDefinition *d_kd =  ((AtspiKeyDefinition *) d_key_set->data) + i;
150           d_kd->keycode = kd->keycode;
151           d_kd->keysym = kd->keysym;
152           if (kd->keystring)
153             {
154               d_kd->keystring = kd->keystring;
155             } 
156           else 
157             {
158               d_kd->keystring = "";
159             }
160         }
161     }
162   else
163     {
164       d_key_set = g_array_sized_new (FALSE, TRUE, sizeof (AtspiKeyDefinition), 0);
165     }
166         
167   listener_mode.synchronous =
168           (dbus_bool_t) ((sync_type & ATSPI_KEYLISTENER_SYNCHRONOUS)!=0);
169   listener_mode.preemptive =
170           (dbus_bool_t) ((sync_type & ATSPI_KEYLISTENER_CANCONSUME)!=0);
171   listener_mode.global =
172           (dbus_bool_t) ((sync_type & ATSPI_KEYLISTENER_ALL_WINDOWS)!=0);
173
174   dbus_error_init (&d_error);
175   dbind_method_call_reentrant (_atspi_bus(), atspi_bus_registry, atspi_path_dec, atspi_interface_dec, "RegisterKeystrokeListener", &d_error, "oa(iisi)uu(bbb)=>b", path, d_key_set, d_modmask, d_event_types, &listener_mode, &retval);
176   if (dbus_error_is_set (&d_error))
177     {
178       g_warning ("RegisterKeystrokeListener failed: %s", d_error.message);
179       dbus_error_free (&d_error);
180     }
181
182   g_array_free (d_key_set, TRUE);
183   g_free (path);
184
185   return retval;
186 }
187
188 /**
189  * atspi_deregister_keystroke_listener:
190  * @listener: a pointer to the #AtspiDeviceListener for which
191  *            keystroke events are requested.
192  * @key_set: (element-type AtspiKeyDefinition) (allow-none): a pointer to the
193  *        #AtspiKeyDefinition array indicating which keystroke events are
194  *        requested, or NULL
195  *        to indicate that all keycodes and keyvals for the specified
196  *        modifier set are to be included.
197  * @modmask:  the key modifier mask for which this listener is to be
198  *            'deregistered' (of type #AtspiKeyMaskType).
199  * @event_types: an #AtspiKeyMaskType mask indicating which
200  *             types of key events were requested (#ATSPI_KEY_PRESSED, etc.).
201  *
202  * Removes a keystroke event listener from the registry's listener queue,
203  *            ceasing notification of events with modifiers matching @modmask.
204  *
205  * Returns: #TRUE if successful, otherwise #FALSE.
206  **/
207 gboolean
208 atspi_deregister_keystroke_listener (AtspiDeviceListener *listener,
209                                      GArray              *key_set,
210                                      AtspiKeyMaskType     modmask,
211                                      AtspiKeyEventMask    event_types,
212                                      GError             **error)
213 {
214   GArray *d_key_set;
215   gchar *path = _atspi_device_listener_get_path (listener);
216   gint i;
217   dbus_uint32_t d_modmask = modmask;
218   dbus_uint32_t d_event_types = event_types;
219   DBusError d_error;
220
221   dbus_error_init (&d_error);
222   if (!listener)
223     {
224       return FALSE;
225     }
226
227   /* copy the keyval filter values from the C api into the DBind KeySet */
228   if (key_set)
229     {
230       d_key_set = g_array_sized_new (FALSE, TRUE, sizeof (AtspiKeyDefinition), key_set->len);
231       d_key_set->len = key_set->len;
232       for (i = 0; i < key_set->len; ++i)
233         {
234           AtspiKeyDefinition *kd =  ((AtspiKeyDefinition *) key_set->data) + i;
235           AtspiKeyDefinition *d_kd =  ((AtspiKeyDefinition *) d_key_set->data) + i;
236           d_kd->keycode = kd->keycode;
237           d_kd->keysym = kd->keysym;
238           if (kd->keystring)
239             {
240               d_kd->keystring = kd->keystring;
241             } 
242           else 
243             {
244               d_kd->keystring = "";
245             }
246         }
247     }
248   else
249     {
250       d_key_set = g_array_sized_new (FALSE, TRUE, sizeof (AtspiKeyDefinition), 0);
251     }
252
253   dbind_method_call_reentrant (_atspi_bus(), atspi_bus_registry,
254                                atspi_path_dec, atspi_interface_dec,
255                                "DeregisterKeystrokeListener", &d_error,
256                                "oa(iisi)uu", path, d_key_set, d_modmask,
257                                d_event_types);
258   if (dbus_error_is_set (&d_error))
259     {
260       g_warning ("DeregisterKeystrokeListener failed: %s", d_error.message);
261       dbus_error_free (&d_error);
262     }
263
264   g_array_free (d_key_set, TRUE);
265   g_free (path);
266   return TRUE;
267 }
268
269 /**
270  * atspi_register_device_event_listener:
271  * @listener:  a pointer to the #AtspiDeviceListener which requests
272  *             the events.
273  * @event_types: an #AtspiDeviceEventMask mask indicating which
274  *             types of key events are requested (#ATSPI_KEY_PRESSED, etc.).
275  * @filter: Unused parameter.
276  *             
277  * Registers a listener for device events, for instance button events.
278  *
279  * Returns: #TRUE if successful, otherwise #FALSE.
280  **/
281 gboolean
282 atspi_register_device_event_listener (AtspiDeviceListener  *listener,
283                                  AtspiDeviceEventMask  event_types,
284                                  void                      *filter, GError **error)
285 {
286   gboolean                          retval = FALSE;
287   dbus_uint32_t d_event_types = event_types;
288   gchar *path = _atspi_device_listener_get_path (listener);
289   DBusError d_error;
290
291   dbus_error_init (&d_error);
292   if (!listener)
293     {
294       return retval;
295     }
296
297     dbind_method_call_reentrant (_atspi_bus(), atspi_bus_registry, atspi_path_dec, atspi_interface_dec, "RegisterDeviceEventListener", &d_error, "ou=>b", path, d_event_types, &retval);
298     if (dbus_error_is_set (&d_error))
299       {
300         g_warning ("RegisterDeviceEventListener failed: %s", d_error.message);
301         dbus_error_free (&d_error);
302       }
303
304   g_free (path);
305   return retval;
306 }
307
308 /**
309  * atspi_deregister_device_event_listener:
310  * @listener: a pointer to the #AtspiDeviceListener for which
311  *            device events are requested.
312  * @filter: Unused parameter.
313  *
314  * Removes a device event listener from the registry's listener queue,
315  *            ceasing notification of events of the specified type.
316  *
317  * Returns: #TRUE if successful, otherwise #FALSE.
318  **/
319 gboolean
320 atspi_deregister_device_event_listener (AtspiDeviceListener *listener,
321                                    void                     *filter, GError **error)
322 {
323   dbus_uint32_t event_types = 0;
324   gchar *path = _atspi_device_listener_get_path (listener);
325   DBusError d_error;
326
327   dbus_error_init (&d_error);
328
329   if (!listener)
330     {
331       return FALSE;
332     }
333
334   event_types |= (1 << ATSPI_BUTTON_PRESSED_EVENT);
335   event_types |= (1 << ATSPI_BUTTON_RELEASED_EVENT);
336
337   dbind_method_call_reentrant (_atspi_bus(), atspi_bus_registry, atspi_path_dec, atspi_interface_dec, "DeregisterDeviceEventListener", &d_error, "ou", path, event_types);
338   if (dbus_error_is_set (&d_error))
339     {
340       g_warning ("DeregisterDeviceEventListener failed: %s", d_error.message);
341       dbus_error_free (&d_error);
342     }
343
344   g_free (path);
345   return TRUE;
346 }
347
348 /**
349  * atspi_generate_keyboard_event:
350  * @keyval: a #gint indicating the keycode or keysym of the key event
351  *           being synthesized.
352  * @keystring: an (optional) UTF-8 string which, if @keyval is NULL,
353  *           indicates a 'composed' keyboard input string  
354  *           being synthesized; this type of keyboard event synthesis does
355  *           not emulate hardware keypresses but injects the string 
356  *           as though a composing input method (such as XIM) were used.
357  * @synth_type: an #AtspiKeySynthType flag indicating whether @keyval
358  *           is to be interpreted as a keysym rather than a keycode
359  *           (ATSPI_KEYSYM), or whether to synthesize
360  *           ATSPI_KEY_PRESS, ATSPI_KEY_RELEASE, or both (ATSPI_KEY_PRESSRELEASE).
361  *
362  * Synthesizes a keyboard event (as if a hardware keyboard event occurred in the
363  * current UI context).
364  *
365  * Returns: #TRUE if successful, otherwise #FALSE.
366  **/
367 gboolean
368 atspi_generate_keyboard_event (glong keyval,
369                            const gchar *keystring,
370                            AtspiKeySynthType synth_type, GError **error)
371 {
372   dbus_uint32_t d_synth_type = synth_type;
373   dbus_int32_t d_keyval = keyval;
374   DBusError d_error;
375
376   dbus_error_init (&d_error);
377   if (!keystring)
378     keystring = "";
379   dbind_method_call_reentrant (_atspi_bus(), atspi_bus_registry, atspi_path_dec, atspi_interface_dec, "GenerateKeyboardEvent", &d_error, "isu", d_keyval, keystring, d_synth_type);
380   if (dbus_error_is_set (&d_error))
381     {
382       g_warning ("GenerateKeyboardEvent failed: %s", d_error.message);
383       dbus_error_free (&d_error);
384     }
385
386   return TRUE;
387 }
388
389 /**
390  * atspi_generate_mouse_event:
391  * @x: a #glong indicating the screen x coordinate of the mouse event.
392  * @y: a #glong indicating the screen y coordinate of the mouse event.
393  * @name: a string indicating which mouse event to be synthesized
394  *        (e.g. "b1p", "b1c", "b2r", "rel", "abs").
395  *
396  * Synthesizes a mouse event at a specific screen coordinate.
397  * Most AT clients should use the #AccessibleAction interface when
398  * tempted to generate mouse events, rather than this method.
399  * Event names: b1p = button 1 press; b2r = button 2 release;
400  *              b3c = button 3 click; b2d = button 2 double-click;
401  *              abs = absolute motion; rel = relative motion.
402  *
403  * Returns: #TRUE if successful, otherwise #FALSE.
404  **/
405 gboolean
406 atspi_generate_mouse_event (glong x, glong y, const gchar *name, GError **error)
407 {
408   dbus_int32_t d_x = x, d_y = y;
409   DBusError d_error;
410
411   dbus_error_init (&d_error);
412   dbind_method_call_reentrant (_atspi_bus(), atspi_bus_registry,
413                                atspi_path_dec, atspi_interface_dec,
414                                "GenerateMouseEvent", &d_error, "iis",
415                                d_x, d_y, name);
416   if (dbus_error_is_set (&d_error))
417     {
418       g_warning ("GenerateMouseEvent failed: %s", d_error.message);
419       dbus_error_free (&d_error);
420     }
421
422   return TRUE;
423 }
424
425 AtspiKeyDefinition *
426 atspi_key_definition_copy (AtspiKeyDefinition *src)
427 {
428   AtspiKeyDefinition *dst;
429
430   dst = g_new0 (AtspiKeyDefinition, 1);
431   dst->keycode = src->keycode;
432   dst->keysym = src->keysym;
433   if (src->keystring)
434     dst->keystring = g_strdup (src->keystring);
435   dst->unused = src->unused;
436   return dst;
437 }
438
439 void
440 atspi_key_definition_free (AtspiKeyDefinition *kd)
441 {
442   if (kd->keystring)
443     g_free (kd->keystring);
444   g_free (kd);
445 }
446
447 G_DEFINE_BOXED_TYPE (AtspiKeyDefinition, atspi_key_definition, atspi_key_definition_copy, atspi_key_definition_free)