2009-07-06 Mark Doffman <mark.doffman@codethink.co.uk>
[platform/core/uifw/at-spi2-atk.git] / atk-adaptor / document-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 "common/spi-dbus.h"
29
30 static DBusMessage *
31 impl_getLocale (DBusConnection *bus,
32                 DBusMessage *message,
33                 void *user_data)
34 {
35   AtkDocument *document = (AtkDocument *) user_data;
36   const gchar *lc;
37   DBusMessage *reply;
38
39   g_return_val_if_fail (ATK_IS_DOCUMENT (user_data),
40                         droute_not_yet_handled_error (message));
41   lc = atk_document_get_locale (document);
42   if (!lc)
43     lc = "";
44   reply = dbus_message_new_method_return (message);
45   if (reply)
46     {
47       dbus_message_append_args (reply, DBUS_TYPE_STRING, &lc,
48                                 DBUS_TYPE_INVALID);
49     }
50   return reply;
51 }
52
53 static DBusMessage *
54 impl_getAttributeValue (DBusConnection * bus, DBusMessage * message,
55                         void *user_data)
56 {
57   AtkDocument *document = (AtkDocument *) user_data;
58   DBusError error;
59   gchar *attributename;
60   const gchar *atr;
61   DBusMessage *reply;
62
63   g_return_val_if_fail (ATK_IS_DOCUMENT (user_data),
64                         droute_not_yet_handled_error (message));
65   dbus_error_init (&error);
66   if (!dbus_message_get_args
67       (message, &error, DBUS_TYPE_STRING, &attributename, DBUS_TYPE_INVALID))
68     {
69       return droute_invalid_arguments_error (message);
70     }
71   atr = atk_document_get_attribute_value (document, attributename);
72   if (!atr)
73     atr = "";
74   reply = dbus_message_new_method_return (message);
75   if (reply)
76     {
77       dbus_message_append_args (reply, DBUS_TYPE_STRING, &atr,
78                                 DBUS_TYPE_INVALID);
79     }
80   return reply;
81 }
82
83 static DBusMessage *
84 impl_getAttributes (DBusConnection * bus, DBusMessage * message,
85                     void *user_data)
86 {
87   AtkDocument *document = (AtkDocument *) user_data;
88   DBusMessage *reply;
89   AtkAttributeSet *attributes;
90   DBusMessageIter iter;
91
92   g_return_val_if_fail (ATK_IS_DOCUMENT (user_data),
93                         droute_not_yet_handled_error (message));
94
95   attributes = atk_document_get_attributes (document);
96
97   reply = dbus_message_new_method_return (message);
98   if (reply)
99     {
100       dbus_message_iter_init_append (reply, &iter);
101       spi_atk_append_attribute_set (&iter, attributes);
102     }
103
104   if (attributes)
105     atk_attribute_set_free (attributes);
106   return reply;
107 }
108
109 static DRouteMethod methods[] = {
110   {impl_getLocale, "getLocale"},
111   {impl_getAttributeValue, "getAttributeValue"},
112   {impl_getAttributes, "getAttributes"},
113   {NULL, NULL}
114 };
115
116 void
117 spi_initialize_document (DRoutePath *path)
118 {
119   droute_path_add_interface (path,
120                              SPI_DBUS_INTERFACE_DOCUMENT,
121                              methods,
122                              NULL);
123 };