2009-01-12 Mark Doffman <mark.doffman@codethink.co.uk>
[platform/core/uifw/at-spi2-atk.git] / atk-adaptor / accessible-marshaller.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-register.h"
24 #include "accessible-marshaller.h"
25
26 /*---------------------------------------------------------------------------*/
27
28 /*
29  * Marshals the D-Bus path of an AtkObject into a D-Bus message.
30  *
31  * Unrefs the AtkObject if unref is true.
32  */
33 DBusMessage *
34 spi_dbus_return_object (DBusMessage *message, AtkObject *obj, gboolean unref)
35 {
36   DBusMessage *reply;
37   gchar *path;
38
39   path = atk_dbus_object_to_path (obj);
40
41   if (unref)
42     g_object_unref (obj);
43
44   reply = dbus_message_new_method_return (message);
45   if (reply)
46     {
47       dbus_message_append_args (reply, DBUS_TYPE_OBJECT_PATH, path,
48                                 DBUS_TYPE_INVALID);
49     }
50   return reply;
51 }
52
53 /*---------------------------------------------------------------------------*/
54
55 /*
56  * Marshals a variant containing the D-Bus path of an AtkObject into a D-Bus
57  * message.
58  *
59  * Unrefs the object if unref is true.
60  */
61 dbus_bool_t
62 spi_dbus_return_v_object (DBusMessageIter *iter, AtkObject *obj, int unref)
63 {
64   char *path;
65
66   path = atk_dbus_object_to_path (obj);
67
68   if (unref)
69     g_object_unref (obj);
70
71   return droute_return_v_object (iter, path);
72 }
73
74 /*END------------------------------------------------------------------------*/
75