Ensure that DBus errors are freed
[platform/core/uifw/at-spi2-atk.git] / atk-adaptor / adaptors / image-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  *
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 #include <atk/atk.h>
26 #include <droute/droute.h>
27
28 #include "spi-dbus.h"
29 #include "object.h"
30 #include "introspection.h"
31
32 static dbus_bool_t
33 impl_get_ImageDescription (DBusMessageIter * iter, void *user_data)
34 {
35   AtkImage *image = (AtkImage *) user_data;
36   g_return_val_if_fail (ATK_IS_IMAGE (user_data), FALSE);
37   return droute_return_v_string (iter,
38                                  atk_image_get_image_description (image));
39 }
40
41 static dbus_bool_t
42 impl_get_ImageLocale (DBusMessageIter * iter, void *user_data)
43 {
44   AtkImage *image = (AtkImage *) user_data;
45   g_return_val_if_fail (ATK_IS_IMAGE (user_data), FALSE);
46   return droute_return_v_string (iter, atk_image_get_image_locale (image));
47 }
48
49 static DBusMessage *
50 impl_GetImageExtents (DBusConnection * bus, DBusMessage * message,
51                       void *user_data)
52 {
53   AtkImage *image = (AtkImage *) user_data;
54   dbus_uint32_t coordType;
55   gint ix, iy, iwidth, iheight;
56
57   g_return_val_if_fail (ATK_IS_IMAGE (user_data),
58                         droute_not_yet_handled_error (message));
59   if (!dbus_message_get_args
60       (message, NULL, DBUS_TYPE_UINT32, &coordType, DBUS_TYPE_INVALID))
61     {
62       return droute_invalid_arguments_error (message);
63     }
64   atk_image_get_image_size (image, &iwidth, &iheight);
65   atk_image_get_image_position (image, &ix, &iy, (AtkCoordType) coordType);
66   return spi_dbus_return_rect (message, ix, iy, iwidth, iheight);
67 }
68
69 static DBusMessage *
70 impl_GetImagePosition (DBusConnection * bus, DBusMessage * message,
71                        void *user_data)
72 {
73   AtkImage *image = (AtkImage *) user_data;
74   dbus_uint32_t coord_type;
75   gint ix = 0, iy = 0;
76   dbus_int32_t x, y;
77   DBusMessage *reply;
78
79   g_return_val_if_fail (ATK_IS_IMAGE (user_data),
80                         droute_not_yet_handled_error (message));
81   if (!dbus_message_get_args
82       (message, NULL, DBUS_TYPE_UINT32, &coord_type, DBUS_TYPE_INVALID))
83     {
84       return droute_invalid_arguments_error (message);
85     }
86   atk_image_get_image_position (image, &ix, &iy, (AtkCoordType) coord_type);
87   x = ix;
88   y = iy;
89   reply = dbus_message_new_method_return (message);
90   if (reply)
91     {
92       dbus_message_append_args (reply, DBUS_TYPE_INT32, &x, DBUS_TYPE_INT32,
93                                 &y, DBUS_TYPE_INVALID);
94     }
95   return reply;
96 }
97
98 static DBusMessage *
99 impl_GetImageSize (DBusConnection * bus, DBusMessage * message,
100                    void *user_data)
101 {
102   AtkImage *image = (AtkImage *) user_data;
103   gint iwidth = 0, iheight = 0;
104   dbus_int32_t width, height;
105   DBusMessage *reply;
106
107   g_return_val_if_fail (ATK_IS_IMAGE (user_data),
108                         droute_not_yet_handled_error (message));
109   atk_image_get_image_size (image, &iwidth, &iheight);
110   width = iwidth;
111   height = iheight;
112   reply = dbus_message_new_method_return (message);
113   if (reply)
114     {
115       dbus_message_append_args (reply, DBUS_TYPE_INT32, &width,
116                                 DBUS_TYPE_INT32, &height, DBUS_TYPE_INVALID);
117     }
118   return reply;
119 }
120
121 static DRouteMethod methods[] = {
122   {impl_GetImageExtents, "GetImageExtents"},
123   {impl_GetImagePosition, "GetImagePosition"},
124   {impl_GetImageSize, "GetImageSize"},
125   {NULL, NULL}
126 };
127
128 static DRouteProperty properties[] = {
129   {impl_get_ImageDescription, NULL, "ImageDescription"},
130   {impl_get_ImageLocale, NULL, "ImageLocale"},
131   {NULL, NULL, NULL}
132 };
133
134 void
135 spi_initialize_image (DRoutePath * path)
136 {
137   droute_path_add_interface (path,
138                              ATSPI_DBUS_INTERFACE_IMAGE, spi_org_a11y_atspi_Image, methods, properties);
139 };