Don't leak errors
[platform/upstream/at-spi2-core.git] / dbind / dbind.c
1 /*
2  * Copyright 2008-2011 Novell, Inc.
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #include <stdio.h>
21 #include <stdarg.h>
22 #include <sys/time.h>
23 #include <string.h>
24 #include <glib.h>
25
26 #include "config.h"
27 #include "dbind/dbind.h"
28 #include "atspi/atspi-gmain.h"
29
30 static int dbind_timeout = -1;
31
32 /*
33  * FIXME: compare types - to ensure they match &
34  *        do dynamic padding of structures etc.
35  */
36
37 /*---------------------------------------------------------------------------*/
38
39 typedef struct _SpiReentrantCallClosure 
40 {
41   DBusMessage *reply;
42 } SpiReentrantCallClosure;
43
44 static void
45 set_reply (DBusPendingCall * pending, void *user_data)
46 {
47   SpiReentrantCallClosure* closure = (SpiReentrantCallClosure *) user_data; 
48
49   closure->reply = dbus_pending_call_steal_reply (pending);
50   dbus_pending_call_unref (pending);
51 }
52
53 static gint
54 time_elapsed (struct timeval *origin)
55 {
56   struct timeval tv;
57
58   gettimeofday (&tv, NULL);
59   return (tv.tv_sec - origin->tv_sec) * 1000 + (tv.tv_usec - origin->tv_usec) / 1000;
60 }
61
62 DBusMessage *
63 dbind_send_and_allow_reentry (DBusConnection * bus, DBusMessage * message, DBusError *error)
64 {
65   DBusPendingCall *pending;
66   SpiReentrantCallClosure *closure;
67   const char *unique_name = dbus_bus_get_unique_name (bus);
68   const char *destination = dbus_message_get_destination (message);
69   struct timeval tv;
70   DBusMessage *ret;
71
72   if (unique_name && destination &&
73       strcmp (destination, unique_name) != 0)
74     return dbus_connection_send_with_reply_and_block (bus, message, dbind_timeout, error);
75
76   closure = g_new0 (SpiReentrantCallClosure, 1);
77   closure->reply = NULL;
78   atspi_dbus_connection_setup_with_g_main(bus, NULL);
79   if (!dbus_connection_send_with_reply (bus, message, &pending, dbind_timeout))
80       return NULL;
81   if (!pending)
82     return NULL;
83   dbus_pending_call_set_notify (pending, set_reply, (void *) closure, g_free);
84
85   closure->reply = NULL;
86   gettimeofday (&tv, NULL);
87   dbus_pending_call_ref (pending);
88   while (!closure->reply)
89     {
90       if (!dbus_connection_read_write_dispatch (bus, dbind_timeout))
91         {
92           dbus_pending_call_unref (pending);
93           return NULL;
94         }
95       if (time_elapsed (&tv) > dbind_timeout)
96         {
97           dbus_pending_call_unref (pending);
98           dbus_set_error_const (error, "org.freedesktop.DBus.Error.NoReply",
99                                 "timeout from dbind");
100           return NULL;
101         }
102     }
103   
104   ret = closure->reply;
105   dbus_pending_call_unref (pending);
106   return ret;
107 }
108
109 dbus_bool_t
110 dbind_method_call_reentrant_va (DBusConnection *cnx,
111                                 const char     *bus_name,
112                                 const char     *path,
113                                 const char     *interface,
114                                 const char     *method,
115                                 DBusError      *opt_error,
116                                 const char     *arg_types,
117                                 va_list         args)
118 {
119     dbus_bool_t success = FALSE;
120     DBusMessage *msg = NULL, *reply = NULL;
121     DBusMessageIter iter;
122     DBusError *err, real_err;
123     const char *p;
124   va_list args_demarshal;
125
126   dbus_error_init (&real_err);
127
128   va_copy (args_demarshal, args);
129     if (opt_error)
130         err = opt_error;
131     else {
132         err = &real_err;
133     }
134
135     msg = dbus_message_new_method_call (bus_name, path, interface, method);
136     if (!msg)
137         goto out;
138
139     p = arg_types;
140     dbus_message_iter_init_append (msg, &iter);
141     dbind_any_marshal_va (&iter, &p, args);
142
143     reply = dbind_send_and_allow_reentry (cnx, msg, err);
144     if (!reply)
145         goto out;
146
147     if (dbus_message_get_type (reply) == DBUS_MESSAGE_TYPE_ERROR)
148     {
149       const char *name = dbus_message_get_error_name (reply);
150       goto out;
151     }
152     /* demarshal */
153     if (p[0] == '=' && p[1] == '>')
154     {
155         DBusMessageIter iter;
156         dbus_message_iter_init (reply, &iter);
157         if (strcmp (p + 2, dbus_message_get_signature (reply)) != 0)
158         {
159             g_warning ("dbind: Call to \"%s\" returned signature %s; expected %s",
160                        method, dbus_message_get_signature (reply), p + 2);
161             if (opt_error)
162                 dbus_set_error (opt_error, DBUS_ERROR_INVALID_ARGS,
163                                 "Call to \"%s\" returned signature %s; expected %s",
164                                 method, dbus_message_get_signature (reply),
165                                 p + 2);
166             goto out;
167         }
168         p = arg_types;
169         dbind_any_demarshal_va (&iter, &p, args_demarshal);
170     }
171
172     success = TRUE;
173 out:
174     if (msg)
175         dbus_message_unref (msg);
176
177     if (reply)
178         dbus_message_unref (reply);
179
180     if (dbus_error_is_set (&real_err))
181         dbus_error_free (&real_err);
182
183     va_end (args_demarshal);
184     return success;
185 }
186
187 /**
188  * dbind_method_call_reentrant:
189  *
190  * @cnx:       A D-Bus Connection used to make the method call.
191  * @bus_name:  The D-Bus bus name of the program where the method call should
192  *             be made.
193  * @path:      The D-Bus object path that should handle the method.
194  * @interface: The D-Bus interface used to scope the method name.
195  * @method:    Method to be invoked.
196  * @opt_error: D-Bus error.
197  * @arg_types: Variable length arguments interleaving D-Bus argument types
198  *             and pointers to argument data.
199  *
200  * Makes a D-Bus method call using the supplied location data, method name and
201  * argument data.This function is re-entrant. It continuously reads from the D-Bus
202  * bus and dispatches messages until a reply has been recieved.
203  **/
204 dbus_bool_t
205 dbind_method_call_reentrant (DBusConnection *cnx,
206                              const char     *bus_name,
207                              const char     *path,
208                              const char     *interface,
209                              const char     *method,
210                              DBusError      *opt_error,
211                              const char     *arg_types,
212                              ...)
213 {
214     dbus_bool_t success = FALSE;
215     va_list args;
216
217     va_start (args, arg_types);
218     success = dbind_method_call_reentrant_va (cnx,
219                                               bus_name,
220                                               path,
221                                               interface,
222                                               method,
223                                               opt_error,
224                                               arg_types,
225                                               args);
226     va_end (args);
227
228     return success;
229 }
230
231 /*---------------------------------------------------------------------------*/
232
233 dbus_bool_t
234 dbind_emit_signal_va (DBusConnection *cnx,
235                       const char     *path,
236                       const char     *interface,
237                       const char     *signal,
238                       DBusError      *opt_error,
239                       const char     *arg_types,
240                       va_list         args)
241 {
242     dbus_bool_t success = FALSE;
243     DBusMessage *msg = NULL;
244     DBusMessageIter iter;
245     DBusError *err, real_err;
246     const char *p;
247
248     dbus_error_init (&real_err);
249
250     if (opt_error)
251         err = opt_error;
252     else {
253         err = &real_err;
254     }
255
256     msg = dbus_message_new_signal (path, interface, signal);
257     if (!msg)
258         goto out;
259
260     p = arg_types;
261     dbus_message_iter_init_append (msg, &iter);
262     dbind_any_marshal_va (&iter, &p, args);
263
264     if (!dbus_connection_send (cnx, msg, NULL))
265        goto out;
266
267     success = TRUE;
268 out:
269
270     if (msg)
271         dbus_message_unref (msg);
272
273     if (dbus_error_is_set (&real_err))
274         dbus_error_free (&real_err);
275
276     return success;
277 }
278
279 /**
280  * dbind_emit_signal:
281  *
282  * @cnx:       A D-Bus Connection used to make the method call.
283  * @path:      The D-Bus object path that this signal is emitted from.
284  * @interface: The D-Bus interface used to scope the method name.
285  * @signal:    Name of signal to emit.
286  * @opt_error: D-Bus error.
287  * @arg_types: Variable length arguments interleaving D-Bus argument types
288  *             and pointers to argument data.
289  *
290  * Emits a D-Bus signal  using the supplied signal name and argument data.
291  **/
292 dbus_bool_t
293 dbind_emit_signal (DBusConnection *cnx,
294                    const char     *path,
295                    const char     *interface,
296                    const char     *signal,
297                    DBusError      *opt_error,
298                    const char     *arg_types,
299                    ...)
300 {
301     dbus_bool_t success = FALSE;
302     va_list args;
303
304     va_start (args, arg_types);
305     success = dbind_emit_signal_va (cnx, path, interface, signal, opt_error, arg_types, args);
306     va_end (args);
307
308     return success;
309 }
310 void
311 dbind_set_timeout (int timeout)
312 {
313   dbind_timeout = timeout;
314 }
315
316
317 /*END------------------------------------------------------------------------*/