2003-10-16 Havoc Pennington <hp@redhat.com>
[platform/upstream/dbus.git] / dbus / dbus-pending-call.c
1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* dbus-pending-call.c Object representing a call in progress.
3  *
4  * Copyright (C) 2002, 2003 Red Hat Inc.
5  *
6  * Licensed under the Academic Free License version 1.2
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  *
22  */
23
24 #include "dbus-internals.h"
25 #include "dbus-connection-internal.h"
26 #include "dbus-pending-call.h"
27 #include "dbus-list.h"
28 #include "dbus-threads.h"
29 #include "dbus-test.h"
30
31 /**
32  * @defgroup DBusPendingCallInternals DBusPendingCall implementation details
33  * @ingroup DBusInternals
34  * @brief DBusPendingCall private implementation details.
35  *
36  * The guts of DBusPendingCall and its methods.
37  *
38  * @{
39  */
40
41 static dbus_int32_t notify_user_data_slot = -1;
42
43 /**
44  * Creates a new pending reply object.
45  *
46  * @param connection connection where reply will arrive
47  * @param timeout_milliseconds length of timeout, -1 for default
48  * @param timeout_handler timeout handler, takes pending call as data
49  * @returns a new #DBusPendingCall or #NULL if no memory.
50  */
51 DBusPendingCall*
52 _dbus_pending_call_new (DBusConnection    *connection,
53                         int                timeout_milliseconds,
54                         DBusTimeoutHandler timeout_handler)
55 {
56   DBusPendingCall *pending;
57   DBusTimeout *timeout;
58
59   _dbus_return_val_if_fail (timeout_milliseconds >= 0 || timeout_milliseconds == -1, FALSE);
60   
61   if (timeout_milliseconds == -1)
62     timeout_milliseconds = _DBUS_DEFAULT_TIMEOUT_VALUE;
63
64   if (!dbus_pending_call_allocate_data_slot (&notify_user_data_slot))
65     return NULL;
66   
67   pending = dbus_new0 (DBusPendingCall, 1);
68   
69   if (pending == NULL)
70     {
71       dbus_pending_call_free_data_slot (&notify_user_data_slot);
72       return NULL;
73     }
74
75   timeout = _dbus_timeout_new (timeout_milliseconds,
76                                timeout_handler,
77                                pending, NULL);  
78
79   if (timeout == NULL)
80     {
81       dbus_pending_call_free_data_slot (&notify_user_data_slot);
82       dbus_free (pending);
83       return NULL;
84     }
85   
86   pending->refcount.value = 1;
87   pending->connection = connection;
88   pending->timeout = timeout;
89
90   _dbus_data_slot_list_init (&pending->slot_list);
91   
92   return pending;
93 }
94
95 /**
96  * Calls notifier function for the pending call
97  * and sets the call to completed.
98  *
99  * @param pending the pending call
100  * 
101  */
102 void
103 _dbus_pending_call_notify (DBusPendingCall *pending)
104 {
105   pending->completed = TRUE;
106
107   if (pending->function)
108     {
109       void *user_data;
110       user_data = dbus_pending_call_get_data (pending,
111                                               notify_user_data_slot);
112       
113       (* pending->function) (pending, user_data);
114     }
115 }
116
117 /** @} */
118
119 /**
120  * @defgroup DBusPendingCall DBusPendingCall
121  * @ingroup  DBus
122  * @brief Pending reply to a method call message
123  *
124  * A DBusPendingCall is an object representing an
125  * expected reply. A #DBusPendingCall can be created
126  * when you send a message that should have a reply.
127  *
128  * @{
129  */
130
131 /**
132  * @typedef DBusPendingCall
133  *
134  * Opaque data type representing a message pending.
135  */
136
137 /**
138  * Increments the reference count on a pending call.
139  *
140  * @param pending the pending call object
141  */
142 void
143 dbus_pending_call_ref (DBusPendingCall *pending)
144 {
145   _dbus_return_if_fail (pending != NULL);
146
147   _dbus_atomic_inc (&pending->refcount);
148 }
149
150 /**
151  * Decrements the reference count on a pending call,
152  * freeing it if the count reaches 0.
153  *
154  * @param pending the pending call object
155  */
156 void
157 dbus_pending_call_unref (DBusPendingCall *pending)
158 {
159   dbus_bool_t last_unref;
160
161   _dbus_return_if_fail (pending != NULL);
162
163   last_unref = (_dbus_atomic_dec (&pending->refcount) == 1);
164
165   if (last_unref)
166     {
167       /* If we get here, we should be already detached
168        * from the connection, or never attached.
169        */
170       _dbus_assert (pending->connection == NULL);
171       _dbus_assert (!pending->timeout_added);  
172
173       /* this assumes we aren't holding connection lock... */
174       _dbus_data_slot_list_free (&pending->slot_list);
175       
176       if (pending->timeout != NULL)
177         _dbus_timeout_unref (pending->timeout);
178       
179       if (pending->timeout_link)
180         {
181           dbus_message_unref ((DBusMessage *)pending->timeout_link->data);
182           _dbus_list_free_link (pending->timeout_link);
183           pending->timeout_link = NULL;
184         }
185
186       if (pending->reply)
187         {
188           dbus_message_unref (pending->reply);
189           pending->reply = NULL;
190         }
191       
192       dbus_free (pending);
193
194       dbus_pending_call_free_data_slot (&notify_user_data_slot);
195     }
196 }
197
198 /**
199  * Sets a notification function to be called when the reply is
200  * received or the pending call times out.
201  *
202  * @param pending the pending call
203  * @param function notifier function
204  * @param user_data data to pass to notifier function
205  * @param free_user_data function to free the user data
206  * @returns #FALSE if not enough memory
207  */
208 dbus_bool_t
209 dbus_pending_call_set_notify (DBusPendingCall              *pending,
210                               DBusPendingCallNotifyFunction function,
211                               void                         *user_data,
212                               DBusFreeFunction              free_user_data)
213 {
214   _dbus_return_val_if_fail (pending != NULL, FALSE);
215
216   /* could invoke application code! */
217   if (!dbus_pending_call_set_data (pending, notify_user_data_slot,
218                                    user_data, free_user_data))
219     return FALSE;
220   
221   pending->function = function;
222
223   return TRUE;
224 }
225
226 /**
227  * Cancels the pending call, such that any reply
228  * or error received will just be ignored.
229  * Drops at least one reference to the #DBusPendingCall
230  * so will free the call if nobody else is holding
231  * a reference.
232  * 
233  * @param pending the pending call
234  */
235 void
236 dbus_pending_call_cancel (DBusPendingCall *pending)
237 {
238   if (pending->connection)
239     _dbus_connection_remove_pending_call (pending->connection,
240                                           pending);
241 }
242
243 /**
244  * Checks whether the pending call has received a reply
245  * yet, or not.
246  *
247  * @todo not thread safe? I guess it has to lock though it sucks
248  *
249  * @param pending the pending call
250  * @returns #TRUE if a reply has been received */
251 dbus_bool_t
252 dbus_pending_call_get_completed (DBusPendingCall *pending)
253 {
254   return pending->completed;
255 }
256
257 /**
258  * Gets the reply, or returns #NULL if none has been received yet. The
259  * reference count is not incremented on the returned message, so you
260  * have to keep a reference count on the pending call (or add one
261  * to the message).
262  *
263  * @todo not thread safe? I guess it has to lock though it sucks
264  * @todo maybe to make this threadsafe, it should be steal_reply(), i.e. only one thread can ever get the message
265  * 
266  * @param pending the pending call
267  * @returns the reply message or #NULL.
268  */
269 DBusMessage*
270 dbus_pending_call_get_reply (DBusPendingCall *pending)
271 {
272   return pending->reply;
273 }
274
275 /**
276  * Block until the pending call is completed.  The blocking is as with
277  * dbus_connection_send_with_reply_and_block(); it does not enter the
278  * main loop or process other messages, it simply waits for the reply
279  * in question.
280  *
281  * If the pending call is already completed, this function returns
282  * immediately.
283  *
284  * @todo when you start blocking, the timeout is reset, but it should
285  * really only use time remaining since the pending call was created.
286  *
287  * @param pending the pending call
288  */
289 void
290 dbus_pending_call_block (DBusPendingCall *pending)
291 {
292   DBusMessage *message;
293
294   if (dbus_pending_call_get_completed (pending))
295     return;
296
297   /* message may be NULL if no reply */
298   message = _dbus_connection_block_for_reply (pending->connection,
299                                               pending->reply_serial,
300                                               dbus_timeout_get_interval (pending->timeout));
301
302   _dbus_connection_lock (pending->connection);
303   _dbus_pending_call_complete_and_unlock (pending, message);
304   if (message)
305     dbus_message_unref (message);
306 }
307
308 static DBusDataSlotAllocator slot_allocator;
309 _DBUS_DEFINE_GLOBAL_LOCK (pending_call_slots);
310
311 /**
312  * Allocates an integer ID to be used for storing application-specific
313  * data on any DBusPendingCall. The allocated ID may then be used
314  * with dbus_pending_call_set_data() and dbus_pending_call_get_data().
315  * The passed-in slot must be initialized to -1, and is filled in
316  * with the slot ID. If the passed-in slot is not -1, it's assumed
317  * to be already allocated, and its refcount is incremented.
318  * 
319  * The allocated slot is global, i.e. all DBusPendingCall objects will
320  * have a slot with the given integer ID reserved.
321  *
322  * @param slot_p address of a global variable storing the slot
323  * @returns #FALSE on failure (no memory)
324  */
325 dbus_bool_t
326 dbus_pending_call_allocate_data_slot (dbus_int32_t *slot_p)
327 {
328   return _dbus_data_slot_allocator_alloc (&slot_allocator,
329                                           _DBUS_LOCK_NAME (pending_call_slots),
330                                           slot_p);
331 }
332
333 /**
334  * Deallocates a global ID for #DBusPendingCall data slots.
335  * dbus_pending_call_get_data() and dbus_pending_call_set_data() may
336  * no longer be used with this slot.  Existing data stored on existing
337  * DBusPendingCall objects will be freed when the #DBusPendingCall is
338  * finalized, but may not be retrieved (and may only be replaced if
339  * someone else reallocates the slot).  When the refcount on the
340  * passed-in slot reaches 0, it is set to -1.
341  *
342  * @param slot_p address storing the slot to deallocate
343  */
344 void
345 dbus_pending_call_free_data_slot (dbus_int32_t *slot_p)
346 {
347   _dbus_return_if_fail (*slot_p >= 0);
348   
349   _dbus_data_slot_allocator_free (&slot_allocator, slot_p);
350 }
351
352 /**
353  * Stores a pointer on a #DBusPendingCall, along
354  * with an optional function to be used for freeing
355  * the data when the data is set again, or when
356  * the pending call is finalized. The slot number
357  * must have been allocated with dbus_pending_call_allocate_data_slot().
358  *
359  * @param pending the pending_call
360  * @param slot the slot number
361  * @param data the data to store
362  * @param free_data_func finalizer function for the data
363  * @returns #TRUE if there was enough memory to store the data
364  */
365 dbus_bool_t
366 dbus_pending_call_set_data (DBusPendingCall  *pending,
367                             dbus_int32_t      slot,
368                             void             *data,
369                             DBusFreeFunction  free_data_func)
370 {
371   DBusFreeFunction old_free_func;
372   void *old_data;
373   dbus_bool_t retval;
374
375   _dbus_return_val_if_fail (pending != NULL, FALSE);
376   _dbus_return_val_if_fail (slot >= 0, FALSE);
377
378   retval = _dbus_data_slot_list_set (&slot_allocator,
379                                      &pending->slot_list,
380                                      slot, data, free_data_func,
381                                      &old_free_func, &old_data);
382
383   if (retval)
384     {
385       if (old_free_func)
386         (* old_free_func) (old_data);
387     }
388
389   return retval;
390 }
391
392 /**
393  * Retrieves data previously set with dbus_pending_call_set_data().
394  * The slot must still be allocated (must not have been freed).
395  *
396  * @param pending the pending_call
397  * @param slot the slot to get data from
398  * @returns the data, or #NULL if not found
399  */
400 void*
401 dbus_pending_call_get_data (DBusPendingCall   *pending,
402                             dbus_int32_t       slot)
403 {
404   void *res;
405
406   _dbus_return_val_if_fail (pending != NULL, NULL);
407
408   res = _dbus_data_slot_list_get (&slot_allocator,
409                                   &pending->slot_list,
410                                   slot);
411
412   return res;
413 }
414
415 /** @} */
416
417 #ifdef DBUS_BUILD_TESTS
418
419 /**
420  * @ingroup DBusPendingCallInternals
421  * Unit test for DBusPendingCall.
422  *
423  * @returns #TRUE on success.
424  */
425 dbus_bool_t
426 _dbus_pending_call_test (const char *test_data_dir)
427 {  
428
429   return TRUE;
430 }
431 #endif /* DBUS_BUILD_TESTS */