Merge branch 'dbus-1.4'
[platform/upstream/dbus.git] / dbus / dbus-pending-call.c
1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
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 2.1
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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
21  *
22  */
23
24 #include <config.h>
25 #include "dbus-internals.h"
26 #include "dbus-connection-internal.h"
27 #include "dbus-pending-call-internal.h"
28 #include "dbus-pending-call.h"
29 #include "dbus-list.h"
30 #include "dbus-threads.h"
31 #include "dbus-test.h"
32
33 /**
34  * @defgroup DBusPendingCallInternals DBusPendingCall implementation details
35  * @ingroup DBusInternals
36  * @brief DBusPendingCall private implementation details.
37  *
38  * The guts of DBusPendingCall and its methods.
39  *
40  * @{
41  */
42
43 /**
44  * @brief Internals of DBusPendingCall
45  *
46  * Opaque object representing a reply message that we're waiting for.
47  */
48
49 /**
50  * shorter and more visible way to write _dbus_connection_lock()
51  */
52 #define CONNECTION_LOCK(connection)   _dbus_connection_lock(connection)
53 /**
54  * shorter and more visible way to write _dbus_connection_unlock()
55  */
56 #define CONNECTION_UNLOCK(connection) _dbus_connection_unlock(connection)
57
58 /**
59  * Implementation details of #DBusPendingCall - all fields are private.
60  */
61 struct DBusPendingCall
62 {
63   DBusAtomic refcount;                            /**< reference count */
64
65   DBusDataSlotList slot_list;                     /**< Data stored by allocated integer ID */
66   
67   DBusPendingCallNotifyFunction function;         /**< Notifier when reply arrives. */
68
69   DBusConnection *connection;                     /**< Connections we're associated with */
70   DBusMessage *reply;                             /**< Reply (after we've received it) */
71   DBusTimeout *timeout;                           /**< Timeout */
72
73   DBusList *timeout_link;                         /**< Preallocated timeout response */
74   
75   dbus_uint32_t reply_serial;                     /**< Expected serial of reply */
76
77   unsigned int completed : 1;                     /**< TRUE if completed */
78   unsigned int timeout_added : 1;                 /**< Have added the timeout */
79 };
80
81 static dbus_int32_t notify_user_data_slot = -1;
82
83 /**
84  * Creates a new pending reply object.
85  *
86  * @param connection connection where reply will arrive
87  * @param timeout_milliseconds length of timeout, -1 (or
88  *  #DBUS_TIMEOUT_USE_DEFAULT) for default,
89  *  #DBUS_TIMEOUT_INFINITE for no timeout
90  * @param timeout_handler timeout handler, takes pending call as data
91  * @returns a new #DBusPendingCall or #NULL if no memory.
92  */
93 DBusPendingCall*
94 _dbus_pending_call_new_unlocked (DBusConnection    *connection,
95                                  int                timeout_milliseconds,
96                                  DBusTimeoutHandler timeout_handler)
97 {
98   DBusPendingCall *pending;
99   DBusTimeout *timeout;
100
101   _dbus_assert (timeout_milliseconds >= 0 || timeout_milliseconds == -1);
102  
103   if (timeout_milliseconds == -1)
104     timeout_milliseconds = _DBUS_DEFAULT_TIMEOUT_VALUE;
105
106   if (!dbus_pending_call_allocate_data_slot (&notify_user_data_slot))
107     return NULL;
108   
109   pending = dbus_new0 (DBusPendingCall, 1);
110   
111   if (pending == NULL)
112     {
113       dbus_pending_call_free_data_slot (&notify_user_data_slot);
114       return NULL;
115     }
116
117   if (timeout_milliseconds != DBUS_TIMEOUT_INFINITE)
118     {
119       timeout = _dbus_timeout_new (timeout_milliseconds,
120                                    timeout_handler,
121                                    pending, NULL);  
122
123       if (timeout == NULL)
124         {
125           dbus_pending_call_free_data_slot (&notify_user_data_slot);
126           dbus_free (pending);
127           return NULL;
128         }
129
130       pending->timeout = timeout;
131     }
132   else
133     {
134       pending->timeout = NULL;
135     }
136
137   _dbus_atomic_inc (&pending->refcount);
138   pending->connection = connection;
139   _dbus_connection_ref_unlocked (pending->connection);
140
141   _dbus_data_slot_list_init (&pending->slot_list);
142   
143   return pending;
144 }
145
146 /**
147  * Sets the reply of a pending call with the given message,
148  * or if the message is #NULL, by timing out the pending call.
149  * 
150  * @param pending the pending call
151  * @param message the message to complete the call with, or #NULL
152  *  to time out the call
153  */
154 void
155 _dbus_pending_call_set_reply_unlocked (DBusPendingCall *pending,
156                                        DBusMessage     *message)
157 {
158   if (message == NULL)
159     {
160       message = pending->timeout_link->data;
161       _dbus_list_clear (&pending->timeout_link);
162     }
163   else
164     dbus_message_ref (message);
165
166   _dbus_verbose ("  handing message %p (%s) to pending call serial %u\n",
167                  message,
168                  dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_METHOD_RETURN ?
169                  "method return" :
170                  dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_ERROR ?
171                  "error" : "other type",
172                  pending->reply_serial);
173   
174   _dbus_assert (pending->reply == NULL);
175   _dbus_assert (pending->reply_serial == dbus_message_get_reply_serial (message));
176   pending->reply = message;
177 }
178
179 /**
180  * Calls notifier function for the pending call
181  * and sets the call to completed.
182  *
183  * @param pending the pending call
184  * 
185  */
186 void
187 _dbus_pending_call_complete (DBusPendingCall *pending)
188 {
189   _dbus_assert (!pending->completed);
190   
191   pending->completed = TRUE;
192
193   if (pending->function)
194     {
195       void *user_data;
196       user_data = dbus_pending_call_get_data (pending,
197                                               notify_user_data_slot);
198       
199       (* pending->function) (pending, user_data);
200     }
201 }
202
203 /**
204  * If the pending call hasn't been timed out, add its timeout
205  * error reply to the connection's incoming message queue.
206  *
207  * @param pending the pending call
208  * @param connection the connection the call was sent to
209  */
210 void
211 _dbus_pending_call_queue_timeout_error_unlocked (DBusPendingCall *pending, 
212                                                  DBusConnection  *connection)
213 {
214   _dbus_assert (connection == pending->connection);
215   
216   if (pending->timeout_link)
217     {
218       _dbus_connection_queue_synthesized_message_link (connection,
219                                                        pending->timeout_link);
220       pending->timeout_link = NULL;
221     }
222 }
223
224 /**
225  * Checks to see if a timeout has been added
226  *
227  * @param pending the pending_call
228  * @returns #TRUE if there is a timeout or #FALSE if not
229  */
230 dbus_bool_t 
231 _dbus_pending_call_is_timeout_added_unlocked (DBusPendingCall  *pending)
232 {
233   _dbus_assert (pending != NULL);
234
235   return pending->timeout_added;
236 }
237
238
239 /**
240  * Sets wether the timeout has been added
241  *
242  * @param pending the pending_call
243  * @param is_added whether or not a timeout is added
244  */
245 void
246 _dbus_pending_call_set_timeout_added_unlocked (DBusPendingCall  *pending,
247                                                dbus_bool_t       is_added)
248 {
249   _dbus_assert (pending != NULL);
250
251   pending->timeout_added = is_added;
252 }
253
254
255 /**
256  * Retrives the timeout
257  *
258  * @param pending the pending_call
259  * @returns a timeout object or NULL if call has no timeout
260  */
261 DBusTimeout *
262 _dbus_pending_call_get_timeout_unlocked (DBusPendingCall  *pending)
263 {
264   _dbus_assert (pending != NULL);
265
266   return pending->timeout;
267 }
268
269 /**
270  * Gets the reply's serial number
271  *
272  * @param pending the pending_call
273  * @returns a serial number for the reply or 0 
274  */
275 dbus_uint32_t 
276 _dbus_pending_call_get_reply_serial_unlocked (DBusPendingCall  *pending)
277 {
278   _dbus_assert (pending != NULL);
279
280   return pending->reply_serial;
281 }
282
283 /**
284  * Sets the reply's serial number
285  *
286  * @param pending the pending_call
287  * @param serial the serial number 
288  */
289 void
290 _dbus_pending_call_set_reply_serial_unlocked  (DBusPendingCall *pending,
291                                                dbus_uint32_t serial)
292 {
293   _dbus_assert (pending != NULL);
294   _dbus_assert (pending->reply_serial == 0);
295
296   pending->reply_serial = serial;
297 }
298
299 /**
300  * Gets the connection associated with this pending call.
301  *
302  * @param pending the pending_call
303  * @returns the connection associated with the pending call
304  */
305 DBusConnection *
306 _dbus_pending_call_get_connection_and_lock (DBusPendingCall *pending)
307 {
308   _dbus_assert (pending != NULL);
309  
310   CONNECTION_LOCK (pending->connection);
311   return pending->connection;
312 }
313
314 /**
315  * Gets the connection associated with this pending call.
316  *
317  * @param pending the pending_call
318  * @returns the connection associated with the pending call
319  */
320 DBusConnection *
321 _dbus_pending_call_get_connection_unlocked (DBusPendingCall *pending)
322 {
323   _dbus_assert (pending != NULL);
324  
325   return pending->connection;
326 }
327
328 /**
329  * Sets the reply message associated with the pending call to a timeout error
330  *
331  * @param pending the pending_call
332  * @param message the message we are sending the error reply to 
333  * @param serial serial number for the reply
334  * @return #FALSE on OOM
335  */
336 dbus_bool_t
337 _dbus_pending_call_set_timeout_error_unlocked (DBusPendingCall *pending,
338                                                DBusMessage     *message,
339                                                dbus_uint32_t    serial)
340
341   DBusList *reply_link;
342   DBusMessage *reply;
343
344   reply = dbus_message_new_error (message, DBUS_ERROR_NO_REPLY,
345                                   "Did not receive a reply. Possible causes include: "
346                                   "the remote application did not send a reply, "
347                                   "the message bus security policy blocked the reply, "
348                                   "the reply timeout expired, or "
349                                   "the network connection was broken.");
350   if (reply == NULL)
351     return FALSE;
352
353   reply_link = _dbus_list_alloc_link (reply);
354   if (reply_link == NULL)
355     {
356       /* it's OK to unref this, nothing that could have attached a callback
357        * has ever seen it */
358       dbus_message_unref (reply);
359       return FALSE;
360     }
361
362   pending->timeout_link = reply_link;
363
364   _dbus_pending_call_set_reply_serial_unlocked (pending, serial);
365   
366   return TRUE;
367 }
368
369 /**
370  * Increments the reference count on a pending call,
371  * while the lock on its connection is already held.
372  *
373  * @param pending the pending call object
374  * @returns the pending call object
375  */
376 DBusPendingCall *
377 _dbus_pending_call_ref_unlocked (DBusPendingCall *pending)
378 {
379   _dbus_atomic_inc (&pending->refcount);
380
381   return pending;
382 }
383
384
385 static void
386 _dbus_pending_call_last_unref (DBusPendingCall *pending)
387 {
388   DBusConnection *connection;
389   
390   /* If we get here, we should be already detached
391    * from the connection, or never attached.
392    */
393   _dbus_assert (!pending->timeout_added);  
394
395   connection = pending->connection;
396
397   /* this assumes we aren't holding connection lock... */
398   _dbus_data_slot_list_free (&pending->slot_list);
399
400   if (pending->timeout != NULL)
401     _dbus_timeout_unref (pending->timeout);
402       
403   if (pending->timeout_link)
404     {
405       dbus_message_unref ((DBusMessage *)pending->timeout_link->data);
406       _dbus_list_free_link (pending->timeout_link);
407       pending->timeout_link = NULL;
408     }
409
410   if (pending->reply)
411     {
412       dbus_message_unref (pending->reply);
413       pending->reply = NULL;
414     }
415       
416   dbus_free (pending);
417
418   dbus_pending_call_free_data_slot (&notify_user_data_slot);
419
420   /* connection lock should not be held. */
421   /* Free the connection last to avoid a weird state while
422    * calling out to application code where the pending exists
423    * but not the connection.
424    */
425   dbus_connection_unref (connection);
426 }
427
428 /**
429  * Decrements the reference count on a pending call,
430  * freeing it if the count reaches 0. Assumes
431  * connection lock is already held.
432  *
433  * @param pending the pending call object
434  */
435 void
436 _dbus_pending_call_unref_and_unlock (DBusPendingCall *pending)
437 {
438   dbus_int32_t old_refcount;
439
440   old_refcount = _dbus_atomic_dec (&pending->refcount);
441   _dbus_assert (old_refcount > 0);
442
443   CONNECTION_UNLOCK (pending->connection);
444
445   if (old_refcount == 1)
446     _dbus_pending_call_last_unref (pending);
447 }
448
449 /**
450  * Checks whether the pending call has received a reply
451  * yet, or not. Assumes connection lock is held.
452  *
453  * @param pending the pending call
454  * @returns #TRUE if a reply has been received
455  */
456 dbus_bool_t
457 _dbus_pending_call_get_completed_unlocked (DBusPendingCall    *pending)
458 {
459   return pending->completed;
460 }
461
462 static DBusDataSlotAllocator slot_allocator;
463 _DBUS_DEFINE_GLOBAL_LOCK (pending_call_slots);
464
465 /**
466  * Stores a pointer on a #DBusPendingCall, along
467  * with an optional function to be used for freeing
468  * the data when the data is set again, or when
469  * the pending call is finalized. The slot number
470  * must have been allocated with dbus_pending_call_allocate_data_slot().
471  *
472  * @param pending the pending_call
473  * @param slot the slot number
474  * @param data the data to store
475  * @param free_data_func finalizer function for the data
476  * @returns #TRUE if there was enough memory to store the data
477  */
478 dbus_bool_t
479 _dbus_pending_call_set_data_unlocked (DBusPendingCall  *pending,
480                                      dbus_int32_t      slot,
481                                      void             *data,
482                                      DBusFreeFunction  free_data_func)
483 {
484   DBusFreeFunction old_free_func;
485   void *old_data;
486   dbus_bool_t retval;
487
488   retval = _dbus_data_slot_list_set (&slot_allocator,
489                                      &pending->slot_list,
490                                      slot, data, free_data_func,
491                                      &old_free_func, &old_data);
492
493   /* Drop locks to call out to app code */
494   CONNECTION_UNLOCK (pending->connection);
495   
496   if (retval)
497     {
498       if (old_free_func)
499         (* old_free_func) (old_data);
500     }
501
502   CONNECTION_LOCK (pending->connection);
503   
504   return retval;
505 }
506
507 /** @} */
508
509 /**
510  * @defgroup DBusPendingCall DBusPendingCall
511  * @ingroup  DBus
512  * @brief Pending reply to a method call message
513  *
514  * A DBusPendingCall is an object representing an
515  * expected reply. A #DBusPendingCall can be created
516  * when you send a message that should have a reply.
517  *
518  * @{
519  */
520
521 /**
522  * @def DBUS_TIMEOUT_INFINITE
523  *
524  * An integer constant representing an infinite timeout. This has the
525  * numeric value 0x7fffffff (the largest 32-bit signed integer).
526  *
527  * For source compatibility with D-Bus versions earlier than 1.4.12, use
528  * 0x7fffffff, or INT32_MAX (assuming your platform has it).
529  */
530
531 /**
532  * @def DBUS_TIMEOUT_USE_DEFAULT
533  *
534  * An integer constant representing a request to use the default timeout.
535  * This has numeric value -1.
536  *
537  * For source compatibility with D-Bus versions earlier than 1.4.12, use a
538  * literal -1.
539  */
540
541 /**
542  * @typedef DBusPendingCall
543  *
544  * Opaque data type representing a message pending.
545  */
546
547 /**
548  * Increments the reference count on a pending call.
549  *
550  * @param pending the pending call object
551  * @returns the pending call object
552  */
553 DBusPendingCall *
554 dbus_pending_call_ref (DBusPendingCall *pending)
555 {
556   _dbus_return_val_if_fail (pending != NULL, NULL);
557
558   _dbus_atomic_inc (&pending->refcount);
559
560   return pending;
561 }
562
563 /**
564  * Decrements the reference count on a pending call,
565  * freeing it if the count reaches 0.
566  *
567  * @param pending the pending call object
568  */
569 void
570 dbus_pending_call_unref (DBusPendingCall *pending)
571 {
572   dbus_bool_t last_unref;
573
574   _dbus_return_if_fail (pending != NULL);
575
576   last_unref = (_dbus_atomic_dec (&pending->refcount) == 1);
577
578   if (last_unref)
579     _dbus_pending_call_last_unref(pending);
580 }
581
582 /**
583  * Sets a notification function to be called when the reply is
584  * received or the pending call times out.
585  *
586  * @param pending the pending call
587  * @param function notifier function
588  * @param user_data data to pass to notifier function
589  * @param free_user_data function to free the user data
590  * @returns #FALSE if not enough memory
591  */
592 dbus_bool_t
593 dbus_pending_call_set_notify (DBusPendingCall              *pending,
594                               DBusPendingCallNotifyFunction function,
595                               void                         *user_data,
596                               DBusFreeFunction              free_user_data)
597 {
598   _dbus_return_val_if_fail (pending != NULL, FALSE);
599
600   CONNECTION_LOCK (pending->connection);
601   
602   /* could invoke application code! */
603   if (!_dbus_pending_call_set_data_unlocked (pending, notify_user_data_slot,
604                                              user_data, free_user_data))
605     return FALSE;
606   
607   pending->function = function;
608
609   CONNECTION_UNLOCK (pending->connection);
610   
611   return TRUE;
612 }
613
614 /**
615  * Cancels the pending call, such that any reply or error received
616  * will just be ignored.  Drops the dbus library's internal reference
617  * to the #DBusPendingCall so will free the call if nobody else is
618  * holding a reference. However you usually get a reference from
619  * dbus_connection_send_with_reply() so probably your app owns a ref
620  * also.
621  *
622  * Note that canceling a pending call will <em>not</em> simulate a
623  * timed-out call; if a call times out, then a timeout error reply is
624  * received. If you cancel the call, no reply is received unless the
625  * the reply was already received before you canceled.
626  * 
627  * @param pending the pending call
628  */
629 void
630 dbus_pending_call_cancel (DBusPendingCall *pending)
631 {
632   _dbus_return_if_fail (pending != NULL);
633
634   _dbus_connection_remove_pending_call (pending->connection,
635                                         pending);
636 }
637
638 /**
639  * Checks whether the pending call has received a reply
640  * yet, or not.
641  *
642  * @param pending the pending call
643  * @returns #TRUE if a reply has been received
644  */
645 dbus_bool_t
646 dbus_pending_call_get_completed (DBusPendingCall *pending)
647 {
648   dbus_bool_t completed;
649   
650   _dbus_return_val_if_fail (pending != NULL, FALSE);
651
652   CONNECTION_LOCK (pending->connection);
653   completed = pending->completed;
654   CONNECTION_UNLOCK (pending->connection);
655
656   return completed;
657 }
658
659 /**
660  * Gets the reply, or returns #NULL if none has been received
661  * yet. Ownership of the reply message passes to the caller. This
662  * function can only be called once per pending call, since the reply
663  * message is tranferred to the caller.
664  * 
665  * @param pending the pending call
666  * @returns the reply message or #NULL.
667  */
668 DBusMessage*
669 dbus_pending_call_steal_reply (DBusPendingCall *pending)
670 {
671   DBusMessage *message;
672   
673   _dbus_return_val_if_fail (pending != NULL, NULL);
674   _dbus_return_val_if_fail (pending->completed, NULL);
675   _dbus_return_val_if_fail (pending->reply != NULL, NULL);
676
677   CONNECTION_LOCK (pending->connection);
678   
679   message = pending->reply;
680   pending->reply = NULL;
681
682   CONNECTION_UNLOCK (pending->connection);
683   
684   return message;
685 }
686
687 /**
688  * Block until the pending call is completed.  The blocking is as with
689  * dbus_connection_send_with_reply_and_block(); it does not enter the
690  * main loop or process other messages, it simply waits for the reply
691  * in question.
692  *
693  * If the pending call is already completed, this function returns
694  * immediately.
695  *
696  * @todo when you start blocking, the timeout is reset, but it should
697  * really only use time remaining since the pending call was created.
698  * This requires storing timestamps instead of intervals in the timeout
699  *
700  * @param pending the pending call
701  */
702 void
703 dbus_pending_call_block (DBusPendingCall *pending)
704 {
705   _dbus_return_if_fail (pending != NULL);
706
707   _dbus_connection_block_pending_call (pending);
708 }
709
710 /**
711  * Allocates an integer ID to be used for storing application-specific
712  * data on any DBusPendingCall. The allocated ID may then be used
713  * with dbus_pending_call_set_data() and dbus_pending_call_get_data().
714  * The passed-in slot must be initialized to -1, and is filled in
715  * with the slot ID. If the passed-in slot is not -1, it's assumed
716  * to be already allocated, and its refcount is incremented.
717  * 
718  * The allocated slot is global, i.e. all DBusPendingCall objects will
719  * have a slot with the given integer ID reserved.
720  *
721  * @param slot_p address of a global variable storing the slot
722  * @returns #FALSE on failure (no memory)
723  */
724 dbus_bool_t
725 dbus_pending_call_allocate_data_slot (dbus_int32_t *slot_p)
726 {
727   _dbus_return_val_if_fail (slot_p != NULL, FALSE);
728
729   return _dbus_data_slot_allocator_alloc (&slot_allocator,
730                                           &_DBUS_LOCK_NAME (pending_call_slots),
731                                           slot_p);
732 }
733
734 /**
735  * Deallocates a global ID for #DBusPendingCall data slots.
736  * dbus_pending_call_get_data() and dbus_pending_call_set_data() may
737  * no longer be used with this slot.  Existing data stored on existing
738  * DBusPendingCall objects will be freed when the #DBusPendingCall is
739  * finalized, but may not be retrieved (and may only be replaced if
740  * someone else reallocates the slot).  When the refcount on the
741  * passed-in slot reaches 0, it is set to -1.
742  *
743  * @param slot_p address storing the slot to deallocate
744  */
745 void
746 dbus_pending_call_free_data_slot (dbus_int32_t *slot_p)
747 {
748   _dbus_return_if_fail (slot_p != NULL);
749   _dbus_return_if_fail (*slot_p >= 0);
750
751   _dbus_data_slot_allocator_free (&slot_allocator, slot_p);
752 }
753
754 /**
755  * Stores a pointer on a #DBusPendingCall, along
756  * with an optional function to be used for freeing
757  * the data when the data is set again, or when
758  * the pending call is finalized. The slot number
759  * must have been allocated with dbus_pending_call_allocate_data_slot().
760  *
761  * @param pending the pending_call
762  * @param slot the slot number
763  * @param data the data to store
764  * @param free_data_func finalizer function for the data
765  * @returns #TRUE if there was enough memory to store the data
766  */
767 dbus_bool_t
768 dbus_pending_call_set_data (DBusPendingCall  *pending,
769                             dbus_int32_t      slot,
770                             void             *data,
771                             DBusFreeFunction  free_data_func)
772 {
773   dbus_bool_t retval;
774   
775   _dbus_return_val_if_fail (pending != NULL, FALSE);
776   _dbus_return_val_if_fail (slot >= 0, FALSE);
777
778   
779   CONNECTION_LOCK (pending->connection);
780   retval = _dbus_pending_call_set_data_unlocked (pending, slot, data, free_data_func);
781   CONNECTION_UNLOCK (pending->connection);
782   return retval;
783 }
784
785 /**
786  * Retrieves data previously set with dbus_pending_call_set_data().
787  * The slot must still be allocated (must not have been freed).
788  *
789  * @param pending the pending_call
790  * @param slot the slot to get data from
791  * @returns the data, or #NULL if not found
792  */
793 void*
794 dbus_pending_call_get_data (DBusPendingCall   *pending,
795                             dbus_int32_t       slot)
796 {
797   void *res;
798
799   _dbus_return_val_if_fail (pending != NULL, NULL);
800
801   CONNECTION_LOCK (pending->connection);
802   res = _dbus_data_slot_list_get (&slot_allocator,
803                                   &pending->slot_list,
804                                   slot);
805   CONNECTION_UNLOCK (pending->connection);
806
807   return res;
808 }
809
810 /** @} */