bus: Unreferencing messages outside the lock
[platform/upstream/gstreamer.git] / gst / gstbus.c
1 /* GStreamer
2  * Copyright (C) 2004 Wim Taymans <wim@fluendo.com>
3  *
4  * gstbus.c: GstBus subsystem
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
19  * Boston, MA 02110-1301, USA.
20  */
21
22 /**
23  * SECTION:gstbus
24  * @short_description: Asynchronous message bus subsystem
25  * @see_also: #GstMessage, #GstElement
26  *
27  * The #GstBus is an object responsible for delivering #GstMessage packets in
28  * a first-in first-out way from the streaming threads (see #GstTask) to the
29  * application.
30  *
31  * Since the application typically only wants to deal with delivery of these
32  * messages from one thread, the GstBus will marshall the messages between
33  * different threads. This is important since the actual streaming of media
34  * is done in another thread than the application.
35  *
36  * The GstBus provides support for #GSource based notifications. This makes it
37  * possible to handle the delivery in the glib mainloop.
38  *
39  * The #GSource callback function gst_bus_async_signal_func() can be used to
40  * convert all bus messages into signal emissions.
41  *
42  * A message is posted on the bus with the gst_bus_post() method. With the
43  * gst_bus_peek() and gst_bus_pop() methods one can look at or retrieve a
44  * previously posted message.
45  *
46  * The bus can be polled with the gst_bus_poll() method. This methods blocks
47  * up to the specified timeout value until one of the specified messages types
48  * is posted on the bus. The application can then gst_bus_pop() the messages
49  * from the bus to handle them.
50  * Alternatively the application can register an asynchronous bus function
51  * using gst_bus_add_watch_full() or gst_bus_add_watch(). This function will
52  * install a #GSource in the default glib main loop and will deliver messages
53  * a short while after they have been posted. Note that the main loop should
54  * be running for the asynchronous callbacks.
55  *
56  * It is also possible to get messages from the bus without any thread
57  * marshalling with the gst_bus_set_sync_handler() method. This makes it
58  * possible to react to a message in the same thread that posted the
59  * message on the bus. This should only be used if the application is able
60  * to deal with messages from different threads.
61  *
62  * Every #GstPipeline has one bus.
63  *
64  * Note that a #GstPipeline will set its bus into flushing state when changing
65  * from READY to NULL state.
66  */
67
68 #include "gst_private.h"
69 #include <errno.h>
70 #ifdef HAVE_UNISTD_H
71 #  include <unistd.h>
72 #endif
73 #include <sys/types.h>
74
75 #include "gstatomicqueue.h"
76 #include "gstinfo.h"
77 #include "gstpoll.h"
78
79 #include "gstbus.h"
80 #include "glib-compat-private.h"
81
82 #define GST_CAT_DEFAULT GST_CAT_BUS
83 /* bus signals */
84 enum
85 {
86   SYNC_MESSAGE,
87   ASYNC_MESSAGE,
88   /* add more above */
89   LAST_SIGNAL
90 };
91
92 #define DEFAULT_ENABLE_ASYNC (TRUE)
93
94 enum
95 {
96   PROP_0,
97   PROP_ENABLE_ASYNC
98 };
99
100 static void gst_bus_dispose (GObject * object);
101 static void gst_bus_finalize (GObject * object);
102
103 static guint gst_bus_signals[LAST_SIGNAL] = { 0 };
104
105 struct _GstBusPrivate
106 {
107   GstAtomicQueue *queue;
108   GMutex queue_lock;
109
110   GstBusSyncHandler sync_handler;
111   gpointer sync_handler_data;
112   GDestroyNotify sync_handler_notify;
113
114   guint num_signal_watchers;
115
116   guint num_sync_message_emitters;
117   GSource *signal_watch;
118
119   gboolean enable_async;
120   GstPoll *poll;
121   GPollFD pollfd;
122 };
123
124 #define gst_bus_parent_class parent_class
125 G_DEFINE_TYPE (GstBus, gst_bus, GST_TYPE_OBJECT);
126
127 static void
128 gst_bus_set_property (GObject * object,
129     guint prop_id, const GValue * value, GParamSpec * pspec)
130 {
131   GstBus *bus = GST_BUS_CAST (object);
132
133   switch (prop_id) {
134     case PROP_ENABLE_ASYNC:
135       bus->priv->enable_async = g_value_get_boolean (value);
136       break;
137     default:
138       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
139       break;
140   }
141 }
142
143 static void
144 gst_bus_constructed (GObject * object)
145 {
146   GstBus *bus = GST_BUS_CAST (object);
147
148   if (bus->priv->enable_async) {
149     bus->priv->poll = gst_poll_new_timer ();
150     gst_poll_get_read_gpollfd (bus->priv->poll, &bus->priv->pollfd);
151   }
152 }
153
154 static void
155 gst_bus_class_init (GstBusClass * klass)
156 {
157   GObjectClass *gobject_class = (GObjectClass *) klass;
158
159   gobject_class->dispose = gst_bus_dispose;
160   gobject_class->finalize = gst_bus_finalize;
161   gobject_class->set_property = gst_bus_set_property;
162   gobject_class->constructed = gst_bus_constructed;
163
164   /**
165    * GstBus::enable-async:
166    *
167    * Enable async message delivery support for bus watches,
168    * gst_bus_pop() and similar API. Without this only the
169    * synchronous message handlers are called.
170    *
171    * This property is used to create the child element buses
172    * in #GstBin.
173    */
174   g_object_class_install_property (gobject_class, PROP_ENABLE_ASYNC,
175       g_param_spec_boolean ("enable-async", "Enable Async",
176           "Enable async message delivery for bus watches and gst_bus_pop()",
177           DEFAULT_ENABLE_ASYNC,
178           G_PARAM_CONSTRUCT_ONLY | G_PARAM_WRITABLE | G_PARAM_STATIC_STRINGS));
179
180   /**
181    * GstBus::sync-message:
182    * @bus: the object which received the signal
183    * @message: the message that has been posted synchronously
184    *
185    * A message has been posted on the bus. This signal is emitted from the
186    * thread that posted the message so one has to be careful with locking.
187    *
188    * This signal will not be emitted by default, you have to call
189    * gst_bus_enable_sync_message_emission() before.
190    */
191   gst_bus_signals[SYNC_MESSAGE] =
192       g_signal_new ("sync-message", G_TYPE_FROM_CLASS (klass),
193       G_SIGNAL_RUN_LAST | G_SIGNAL_DETAILED,
194       G_STRUCT_OFFSET (GstBusClass, sync_message), NULL, NULL,
195       g_cclosure_marshal_generic, G_TYPE_NONE, 1, GST_TYPE_MESSAGE);
196
197   /**
198    * GstBus::message:
199    * @bus: the object which received the signal
200    * @message: the message that has been posted asynchronously
201    *
202    * A message has been posted on the bus. This signal is emitted from a
203    * GSource added to the mainloop. this signal will only be emitted when
204    * there is a mainloop running.
205    */
206   gst_bus_signals[ASYNC_MESSAGE] =
207       g_signal_new ("message", G_TYPE_FROM_CLASS (klass),
208       G_SIGNAL_RUN_LAST | G_SIGNAL_DETAILED,
209       G_STRUCT_OFFSET (GstBusClass, message), NULL, NULL,
210       g_cclosure_marshal_generic, G_TYPE_NONE, 1, GST_TYPE_MESSAGE);
211
212   g_type_class_add_private (klass, sizeof (GstBusPrivate));
213 }
214
215 static void
216 gst_bus_init (GstBus * bus)
217 {
218   bus->priv = G_TYPE_INSTANCE_GET_PRIVATE (bus, GST_TYPE_BUS, GstBusPrivate);
219   bus->priv->enable_async = DEFAULT_ENABLE_ASYNC;
220   g_mutex_init (&bus->priv->queue_lock);
221   bus->priv->queue = gst_atomic_queue_new (32);
222
223   /* clear floating flag */
224   gst_object_ref_sink (bus);
225
226   GST_DEBUG_OBJECT (bus, "created");
227 }
228
229 static void
230 gst_bus_dispose (GObject * object)
231 {
232   GstBus *bus = GST_BUS (object);
233
234   if (bus->priv->queue) {
235     GstMessage *message;
236
237     g_mutex_lock (&bus->priv->queue_lock);
238     do {
239       message = gst_atomic_queue_pop (bus->priv->queue);
240       if (message)
241         gst_message_unref (message);
242     } while (message != NULL);
243     gst_atomic_queue_unref (bus->priv->queue);
244     bus->priv->queue = NULL;
245     g_mutex_unlock (&bus->priv->queue_lock);
246     g_mutex_clear (&bus->priv->queue_lock);
247
248     if (bus->priv->poll)
249       gst_poll_free (bus->priv->poll);
250     bus->priv->poll = NULL;
251   }
252
253   G_OBJECT_CLASS (parent_class)->dispose (object);
254 }
255
256 static void
257 gst_bus_finalize (GObject * object)
258 {
259   GstBus *bus = GST_BUS (object);
260
261   if (bus->priv->sync_handler_notify)
262     bus->priv->sync_handler_notify (bus->priv->sync_handler_data);
263
264   G_OBJECT_CLASS (parent_class)->finalize (object);
265 }
266
267 /**
268  * gst_bus_new:
269  *
270  * Creates a new #GstBus instance.
271  *
272  * Returns: (transfer full): a new #GstBus instance
273  */
274 GstBus *
275 gst_bus_new (void)
276 {
277   GstBus *result;
278
279   result = g_object_newv (gst_bus_get_type (), 0, NULL);
280   GST_DEBUG_OBJECT (result, "created new bus");
281
282   return result;
283 }
284
285 /**
286  * gst_bus_post:
287  * @bus: a #GstBus to post on
288  * @message: (transfer full): the #GstMessage to post
289  *
290  * Post a message on the given bus. Ownership of the message
291  * is taken by the bus.
292  *
293  * Returns: %TRUE if the message could be posted, %FALSE if the bus is flushing.
294  *
295  * MT safe.
296  */
297 gboolean
298 gst_bus_post (GstBus * bus, GstMessage * message)
299 {
300   GstBusSyncReply reply = GST_BUS_PASS;
301   GstBusSyncHandler handler;
302   gboolean emit_sync_message;
303   gpointer handler_data;
304
305   g_return_val_if_fail (GST_IS_BUS (bus), FALSE);
306   g_return_val_if_fail (GST_IS_MESSAGE (message), FALSE);
307
308   GST_DEBUG_OBJECT (bus, "[msg %p] posting on bus %" GST_PTR_FORMAT, message,
309       message);
310
311   /* check we didn't accidentally add a public flag that maps to same value */
312   g_assert (!GST_MINI_OBJECT_FLAG_IS_SET (message,
313           GST_MESSAGE_FLAG_ASYNC_DELIVERY));
314
315   GST_OBJECT_LOCK (bus);
316   /* check if the bus is flushing */
317   if (GST_OBJECT_FLAG_IS_SET (bus, GST_BUS_FLUSHING))
318     goto is_flushing;
319
320   handler = bus->priv->sync_handler;
321   handler_data = bus->priv->sync_handler_data;
322   emit_sync_message = bus->priv->num_sync_message_emitters > 0;
323   GST_OBJECT_UNLOCK (bus);
324
325   /* first call the sync handler if it is installed */
326   if (handler)
327     reply = handler (bus, message, handler_data);
328
329   /* emit sync-message if requested to do so via
330      gst_bus_enable_sync_message_emission. terrible but effective */
331   if (emit_sync_message && reply != GST_BUS_DROP
332       && handler != gst_bus_sync_signal_handler)
333     gst_bus_sync_signal_handler (bus, message, NULL);
334
335   /* If this is a bus without async message delivery
336    * always drop the message */
337   if (!bus->priv->poll)
338     reply = GST_BUS_DROP;
339
340   /* now see what we should do with the message */
341   switch (reply) {
342     case GST_BUS_DROP:
343       /* drop the message */
344       GST_DEBUG_OBJECT (bus, "[msg %p] dropped", message);
345       break;
346     case GST_BUS_PASS:
347       /* pass the message to the async queue, refcount passed in the queue */
348       GST_DEBUG_OBJECT (bus, "[msg %p] pushing on async queue", message);
349       gst_atomic_queue_push (bus->priv->queue, message);
350       gst_poll_write_control (bus->priv->poll);
351       GST_DEBUG_OBJECT (bus, "[msg %p] pushed on async queue", message);
352
353       break;
354     case GST_BUS_ASYNC:
355     {
356       /* async delivery, we need a mutex and a cond to block
357        * on */
358       GCond *cond = GST_MESSAGE_GET_COND (message);
359       GMutex *lock = GST_MESSAGE_GET_LOCK (message);
360
361       g_cond_init (cond);
362       g_mutex_init (lock);
363
364       GST_MINI_OBJECT_FLAG_SET (message, GST_MESSAGE_FLAG_ASYNC_DELIVERY);
365
366       GST_DEBUG_OBJECT (bus, "[msg %p] waiting for async delivery", message);
367
368       /* now we lock the message mutex, send the message to the async
369        * queue. When the message is handled by the app and destroyed,
370        * the cond will be signalled and we can continue */
371       g_mutex_lock (lock);
372
373       gst_atomic_queue_push (bus->priv->queue, message);
374       gst_poll_write_control (bus->priv->poll);
375
376       /* now block till the message is freed */
377       g_cond_wait (cond, lock);
378
379       /* we acquired a new ref from gst_message_dispose() so we can clean up */
380       g_mutex_unlock (lock);
381
382       GST_DEBUG_OBJECT (bus, "[msg %p] delivered asynchronously", message);
383
384       GST_MINI_OBJECT_FLAG_UNSET (message, GST_MESSAGE_FLAG_ASYNC_DELIVERY);
385
386       g_mutex_clear (lock);
387       g_cond_clear (cond);
388
389       gst_message_unref (message);
390       break;
391     }
392     default:
393       g_warning ("invalid return from bus sync handler");
394       break;
395   }
396   return TRUE;
397
398   /* ERRORS */
399 is_flushing:
400   {
401     GST_DEBUG_OBJECT (bus, "bus is flushing");
402     gst_message_unref (message);
403     GST_OBJECT_UNLOCK (bus);
404
405     return FALSE;
406   }
407 }
408
409 /**
410  * gst_bus_have_pending:
411  * @bus: a #GstBus to check
412  *
413  * Check if there are pending messages on the bus that
414  * should be handled.
415  *
416  * Returns: %TRUE if there are messages on the bus to be handled, %FALSE
417  * otherwise.
418  *
419  * MT safe.
420  */
421 gboolean
422 gst_bus_have_pending (GstBus * bus)
423 {
424   gboolean result;
425
426   g_return_val_if_fail (GST_IS_BUS (bus), FALSE);
427
428   /* see if there is a message on the bus */
429   result = gst_atomic_queue_length (bus->priv->queue) != 0;
430
431   return result;
432 }
433
434 /**
435  * gst_bus_set_flushing:
436  * @bus: a #GstBus
437  * @flushing: whether or not to flush the bus
438  *
439  * If @flushing, flush out and unref any messages queued in the bus. Releases
440  * references to the message origin objects. Will flush future messages until
441  * gst_bus_set_flushing() sets @flushing to %FALSE.
442  *
443  * MT safe.
444  */
445 void
446 gst_bus_set_flushing (GstBus * bus, gboolean flushing)
447 {
448   GstMessage *message;
449   GList *l, *message_list = NULL;
450
451   GST_OBJECT_LOCK (bus);
452
453   if (flushing) {
454     GST_OBJECT_FLAG_SET (bus, GST_BUS_FLUSHING);
455
456     GST_DEBUG_OBJECT (bus, "set bus flushing");
457
458     while ((message = gst_bus_pop (bus)))
459       message_list = g_list_prepend (message_list, message);
460   } else {
461     GST_DEBUG_OBJECT (bus, "unset bus flushing");
462     GST_OBJECT_FLAG_UNSET (bus, GST_BUS_FLUSHING);
463   }
464
465   GST_OBJECT_UNLOCK (bus);
466
467   for (l = message_list; l; l = l->next) {
468     message = GST_MESSAGE (l);
469     gst_message_unref (message);
470   }
471   g_list_free (message_list);
472 }
473
474 /**
475  * gst_bus_timed_pop_filtered:
476  * @bus: a #GstBus to pop from
477  * @timeout: a timeout in nanoseconds, or GST_CLOCK_TIME_NONE to wait forever
478  * @types: message types to take into account, GST_MESSAGE_ANY for any type
479  *
480  * Get a message from the bus whose type matches the message type mask @types,
481  * waiting up to the specified timeout (and discarding any messages that do not
482  * match the mask provided).
483  *
484  * If @timeout is 0, this function behaves like gst_bus_pop_filtered(). If
485  * @timeout is #GST_CLOCK_TIME_NONE, this function will block forever until a
486  * matching message was posted on the bus.
487  *
488  * Returns: (transfer full) (nullable): a #GstMessage matching the
489  *     filter in @types, or %NULL if no matching message was found on
490  *     the bus until the timeout expired. The message is taken from
491  *     the bus and needs to be unreffed with gst_message_unref() after
492  *     usage.
493  *
494  * MT safe.
495  */
496 GstMessage *
497 gst_bus_timed_pop_filtered (GstBus * bus, GstClockTime timeout,
498     GstMessageType types)
499 {
500   GstMessage *message;
501   GTimeVal now, then;
502   gboolean first_round = TRUE;
503   GstClockTime elapsed = 0;
504
505   g_return_val_if_fail (GST_IS_BUS (bus), NULL);
506   g_return_val_if_fail (types != 0, NULL);
507   g_return_val_if_fail (timeout == 0 || bus->priv->poll != NULL, NULL);
508
509   g_mutex_lock (&bus->priv->queue_lock);
510
511   while (TRUE) {
512     gint ret;
513
514     GST_LOG_OBJECT (bus, "have %d messages",
515         gst_atomic_queue_length (bus->priv->queue));
516
517     while ((message = gst_atomic_queue_pop (bus->priv->queue))) {
518       if (bus->priv->poll)
519         gst_poll_read_control (bus->priv->poll);
520
521       GST_DEBUG_OBJECT (bus, "got message %p, %s from %s, type mask is %u",
522           message, GST_MESSAGE_TYPE_NAME (message),
523           GST_MESSAGE_SRC_NAME (message), (guint) types);
524       if ((GST_MESSAGE_TYPE (message) & types) != 0) {
525         /* Extra check to ensure extended types don't get matched unless
526          * asked for */
527         if ((!GST_MESSAGE_TYPE_IS_EXTENDED (message))
528             || (types & GST_MESSAGE_EXTENDED)) {
529           /* exit the loop, we have a message */
530           goto beach;
531         }
532       }
533
534       GST_DEBUG_OBJECT (bus, "discarding message, does not match mask");
535       gst_message_unref (message);
536       message = NULL;
537     }
538
539     /* no need to wait, exit loop */
540     if (timeout == 0)
541       break;
542
543     else if (timeout != GST_CLOCK_TIME_NONE) {
544       if (first_round) {
545         g_get_current_time (&then);
546         first_round = FALSE;
547       } else {
548         g_get_current_time (&now);
549
550         elapsed = GST_TIMEVAL_TO_TIME (now) - GST_TIMEVAL_TO_TIME (then);
551
552         if (elapsed > timeout)
553           break;
554       }
555     }
556
557     /* only here in timeout case */
558     g_assert (bus->priv->poll);
559     g_mutex_unlock (&bus->priv->queue_lock);
560     ret = gst_poll_wait (bus->priv->poll, timeout - elapsed);
561     g_mutex_lock (&bus->priv->queue_lock);
562
563     if (ret == 0) {
564       GST_INFO_OBJECT (bus, "timed out, breaking loop");
565       break;
566     } else {
567       GST_INFO_OBJECT (bus, "we got woken up, recheck for message");
568     }
569   }
570
571 beach:
572
573   g_mutex_unlock (&bus->priv->queue_lock);
574
575   return message;
576 }
577
578
579 /**
580  * gst_bus_timed_pop:
581  * @bus: a #GstBus to pop
582  * @timeout: a timeout
583  *
584  * Get a message from the bus, waiting up to the specified timeout.
585  *
586  * If @timeout is 0, this function behaves like gst_bus_pop(). If @timeout is
587  * #GST_CLOCK_TIME_NONE, this function will block forever until a message was
588  * posted on the bus.
589  *
590  * Returns: (transfer full) (nullable): the #GstMessage that is on the
591  *     bus after the specified timeout or %NULL if the bus is empty
592  *     after the timeout expired.  The message is taken from the bus
593  *     and needs to be unreffed with gst_message_unref() after usage.
594  *
595  * MT safe.
596  */
597 GstMessage *
598 gst_bus_timed_pop (GstBus * bus, GstClockTime timeout)
599 {
600   g_return_val_if_fail (GST_IS_BUS (bus), NULL);
601
602   return gst_bus_timed_pop_filtered (bus, timeout, GST_MESSAGE_ANY);
603 }
604
605 /**
606  * gst_bus_pop_filtered:
607  * @bus: a #GstBus to pop
608  * @types: message types to take into account
609  *
610  * Get a message matching @type from the bus.  Will discard all messages on
611  * the bus that do not match @type and that have been posted before the first
612  * message that does match @type.  If there is no message matching @type on
613  * the bus, all messages will be discarded. It is not possible to use message
614  * enums beyond #GST_MESSAGE_EXTENDED in the @events mask.
615  *
616  * Returns: (transfer full) (nullable): the next #GstMessage matching
617  *     @type that is on the bus, or %NULL if the bus is empty or there
618  *     is no message matching @type. The message is taken from the bus
619  *     and needs to be unreffed with gst_message_unref() after usage.
620  *
621  * MT safe.
622  */
623 GstMessage *
624 gst_bus_pop_filtered (GstBus * bus, GstMessageType types)
625 {
626   g_return_val_if_fail (GST_IS_BUS (bus), NULL);
627   g_return_val_if_fail (types != 0, NULL);
628
629   return gst_bus_timed_pop_filtered (bus, 0, types);
630 }
631
632 /**
633  * gst_bus_pop:
634  * @bus: a #GstBus to pop
635  *
636  * Get a message from the bus.
637  *
638  * Returns: (transfer full) (nullable): the #GstMessage that is on the
639  *     bus, or %NULL if the bus is empty. The message is taken from
640  *     the bus and needs to be unreffed with gst_message_unref() after
641  *     usage.
642  *
643  * MT safe.
644  */
645 GstMessage *
646 gst_bus_pop (GstBus * bus)
647 {
648   g_return_val_if_fail (GST_IS_BUS (bus), NULL);
649
650   return gst_bus_timed_pop_filtered (bus, 0, GST_MESSAGE_ANY);
651 }
652
653 /**
654  * gst_bus_peek:
655  * @bus: a #GstBus
656  *
657  * Peek the message on the top of the bus' queue. The message will remain
658  * on the bus' message queue. A reference is returned, and needs to be unreffed
659  * by the caller.
660  *
661  * Returns: (transfer full) (nullable): the #GstMessage that is on the
662  *     bus, or %NULL if the bus is empty.
663  *
664  * MT safe.
665  */
666 GstMessage *
667 gst_bus_peek (GstBus * bus)
668 {
669   GstMessage *message;
670
671   g_return_val_if_fail (GST_IS_BUS (bus), NULL);
672
673   g_mutex_lock (&bus->priv->queue_lock);
674   message = gst_atomic_queue_peek (bus->priv->queue);
675   if (message)
676     gst_message_ref (message);
677   g_mutex_unlock (&bus->priv->queue_lock);
678
679   GST_DEBUG_OBJECT (bus, "peek on bus, got message %p", message);
680
681   return message;
682 }
683
684 /**
685  * gst_bus_set_sync_handler:
686  * @bus: a #GstBus to install the handler on
687  * @func: (allow-none): The handler function to install
688  * @user_data: User data that will be sent to the handler function.
689  * @notify: called when @user_data becomes unused
690  *
691  * Sets the synchronous handler on the bus. The function will be called
692  * every time a new message is posted on the bus. Note that the function
693  * will be called in the same thread context as the posting object. This
694  * function is usually only called by the creator of the bus. Applications
695  * should handle messages asynchronously using the gst_bus watch and poll
696  * functions.
697  *
698  * You cannot replace an existing sync_handler. You can pass %NULL to this
699  * function, which will clear the existing handler.
700  */
701 void
702 gst_bus_set_sync_handler (GstBus * bus, GstBusSyncHandler func,
703     gpointer user_data, GDestroyNotify notify)
704 {
705   GDestroyNotify old_notify;
706
707   g_return_if_fail (GST_IS_BUS (bus));
708
709   GST_OBJECT_LOCK (bus);
710   /* Assert if the user attempts to replace an existing sync_handler,
711    * other than to clear it */
712   if (func != NULL && bus->priv->sync_handler != NULL)
713     goto no_replace;
714
715   if ((old_notify = bus->priv->sync_handler_notify)) {
716     gpointer old_data = bus->priv->sync_handler_data;
717
718     bus->priv->sync_handler_data = NULL;
719     bus->priv->sync_handler_notify = NULL;
720     GST_OBJECT_UNLOCK (bus);
721
722     old_notify (old_data);
723
724     GST_OBJECT_LOCK (bus);
725   }
726   bus->priv->sync_handler = func;
727   bus->priv->sync_handler_data = user_data;
728   bus->priv->sync_handler_notify = notify;
729   GST_OBJECT_UNLOCK (bus);
730
731   return;
732
733 no_replace:
734   {
735     GST_OBJECT_UNLOCK (bus);
736     g_warning ("cannot replace existing sync handler");
737     return;
738   }
739 }
740
741 /* GSource for the bus
742  */
743 typedef struct
744 {
745   GSource source;
746   GstBus *bus;
747 } GstBusSource;
748
749 static gboolean
750 gst_bus_source_prepare (GSource * source, gint * timeout)
751 {
752   *timeout = -1;
753   return FALSE;
754 }
755
756 static gboolean
757 gst_bus_source_check (GSource * source)
758 {
759   GstBusSource *bsrc = (GstBusSource *) source;
760
761   return bsrc->bus->priv->pollfd.revents & (G_IO_IN | G_IO_HUP | G_IO_ERR);
762 }
763
764 static gboolean
765 gst_bus_source_dispatch (GSource * source, GSourceFunc callback,
766     gpointer user_data)
767 {
768   GstBusFunc handler = (GstBusFunc) callback;
769   GstBusSource *bsource = (GstBusSource *) source;
770   GstMessage *message;
771   gboolean keep;
772   GstBus *bus;
773
774   g_return_val_if_fail (bsource != NULL, FALSE);
775
776   bus = bsource->bus;
777
778   g_return_val_if_fail (GST_IS_BUS (bus), FALSE);
779
780   message = gst_bus_pop (bus);
781
782   /* The message queue might be empty if some other thread or callback set
783    * the bus to flushing between check/prepare and dispatch */
784   if (G_UNLIKELY (message == NULL))
785     return TRUE;
786
787   if (!handler)
788     goto no_handler;
789
790   GST_DEBUG_OBJECT (bus, "source %p calling dispatch with %" GST_PTR_FORMAT,
791       source, message);
792
793   keep = handler (bus, message, user_data);
794   gst_message_unref (message);
795
796   GST_DEBUG_OBJECT (bus, "source %p handler returns %d", source, keep);
797
798   return keep;
799
800 no_handler:
801   {
802     g_warning ("GstBus watch dispatched without callback\n"
803         "You must call g_source_set_callback().");
804     gst_message_unref (message);
805     return FALSE;
806   }
807 }
808
809 static void
810 gst_bus_source_finalize (GSource * source)
811 {
812   GstBusSource *bsource = (GstBusSource *) source;
813   GstBus *bus;
814
815   bus = bsource->bus;
816
817   GST_DEBUG_OBJECT (bus, "finalize source %p", source);
818
819   GST_OBJECT_LOCK (bus);
820   if (bus->priv->signal_watch == source)
821     bus->priv->signal_watch = NULL;
822   GST_OBJECT_UNLOCK (bus);
823
824   gst_object_unref (bsource->bus);
825   bsource->bus = NULL;
826 }
827
828 static GSourceFuncs gst_bus_source_funcs = {
829   gst_bus_source_prepare,
830   gst_bus_source_check,
831   gst_bus_source_dispatch,
832   gst_bus_source_finalize
833 };
834
835 /**
836  * gst_bus_create_watch:
837  * @bus: a #GstBus to create the watch for
838  *
839  * Create watch for this bus. The GSource will be dispatched whenever
840  * a message is on the bus. After the GSource is dispatched, the
841  * message is popped off the bus and unreffed.
842  *
843  * Returns: (transfer full): a #GSource that can be added to a mainloop.
844  */
845 GSource *
846 gst_bus_create_watch (GstBus * bus)
847 {
848   GstBusSource *source;
849
850   g_return_val_if_fail (GST_IS_BUS (bus), NULL);
851   g_return_val_if_fail (bus->priv->poll != NULL, NULL);
852
853   source = (GstBusSource *) g_source_new (&gst_bus_source_funcs,
854       sizeof (GstBusSource));
855
856   g_source_set_name ((GSource *) source, "GStreamer message bus watch");
857
858   source->bus = gst_object_ref (bus);
859   g_source_add_poll ((GSource *) source, &bus->priv->pollfd);
860
861   return (GSource *) source;
862 }
863
864 /* must be called with the bus OBJECT LOCK */
865 static guint
866 gst_bus_add_watch_full_unlocked (GstBus * bus, gint priority,
867     GstBusFunc func, gpointer user_data, GDestroyNotify notify)
868 {
869   GMainContext *ctx;
870   guint id;
871   GSource *source;
872
873   if (bus->priv->signal_watch) {
874     GST_ERROR_OBJECT (bus,
875         "Tried to add new watch while one was already there");
876     return 0;
877   }
878
879   source = gst_bus_create_watch (bus);
880
881   if (priority != G_PRIORITY_DEFAULT)
882     g_source_set_priority (source, priority);
883
884   g_source_set_callback (source, (GSourceFunc) func, user_data, notify);
885
886   ctx = g_main_context_get_thread_default ();
887   id = g_source_attach (source, ctx);
888   g_source_unref (source);
889
890   if (id) {
891     bus->priv->signal_watch = source;
892   }
893
894   GST_DEBUG_OBJECT (bus, "New source %p with id %u", source, id);
895   return id;
896 }
897
898 /**
899  * gst_bus_add_watch_full: (rename-to gst_bus_add_watch)
900  * @bus: a #GstBus to create the watch for.
901  * @priority: The priority of the watch.
902  * @func: A function to call when a message is received.
903  * @user_data: user data passed to @func.
904  * @notify: the function to call when the source is removed.
905  *
906  * Adds a bus watch to the default main context with the given @priority (e.g.
907  * %G_PRIORITY_DEFAULT). It is also possible to use a non-default  main
908  * context set up using g_main_context_push_thread_default() (before
909  * one had to create a bus watch source and attach it to the desired main
910  * context 'manually').
911  *
912  * This function is used to receive asynchronous messages in the main loop.
913  * There can only be a single bus watch per bus, you must remove it before you
914  * can set a new one.
915  *
916  * When @func is called, the message belongs to the caller; if you want to
917  * keep a copy of it, call gst_message_ref() before leaving @func.
918  *
919  * The watch can be removed using gst_bus_remove_watch() or by returning %FALSE
920  * from @func. If the watch was added to the default main context it is also
921  * possible to remove the watch using g_source_remove().
922  *
923  * MT safe.
924  *
925  * Returns: The event source id or 0 if @bus already got an event source.
926  */
927 guint
928 gst_bus_add_watch_full (GstBus * bus, gint priority,
929     GstBusFunc func, gpointer user_data, GDestroyNotify notify)
930 {
931   guint id;
932
933   g_return_val_if_fail (GST_IS_BUS (bus), 0);
934
935   GST_OBJECT_LOCK (bus);
936   id = gst_bus_add_watch_full_unlocked (bus, priority, func, user_data, notify);
937   GST_OBJECT_UNLOCK (bus);
938
939   return id;
940 }
941
942 /**
943  * gst_bus_add_watch: (skip)
944  * @bus: a #GstBus to create the watch for
945  * @func: A function to call when a message is received.
946  * @user_data: user data passed to @func.
947  *
948  * Adds a bus watch to the default main context with the default priority
949  * (%G_PRIORITY_DEFAULT). It is also possible to use a non-default main
950  * context set up using g_main_context_push_thread_default() (before
951  * one had to create a bus watch source and attach it to the desired main
952  * context 'manually').
953  *
954  * This function is used to receive asynchronous messages in the main loop.
955  * There can only be a single bus watch per bus, you must remove it before you
956  * can set a new one.
957  *
958  * The watch can be removed using gst_bus_remove_watch() or by returning %FALSE
959  * from @func. If the watch was added to the default main context it is also
960  * possible to remove the watch using g_source_remove().
961  *
962  * Returns: The event source id or 0 if @bus already got an event source.
963  *
964  * MT safe.
965  */
966 guint
967 gst_bus_add_watch (GstBus * bus, GstBusFunc func, gpointer user_data)
968 {
969   return gst_bus_add_watch_full (bus, G_PRIORITY_DEFAULT, func,
970       user_data, NULL);
971 }
972
973 /**
974  * gst_bus_remove_watch:
975  * @bus: a #GstBus to remove the watch from.
976  *
977  * Removes an installed bus watch from @bus.
978  *
979  * Returns: %TRUE on success or %FALSE if @bus has no event source.
980  *
981  * Since: 1.6
982  *
983  */
984 gboolean
985 gst_bus_remove_watch (GstBus * bus)
986 {
987   GSource *watch_id;
988
989   g_return_val_if_fail (GST_IS_BUS (bus), FALSE);
990
991   GST_OBJECT_LOCK (bus);
992
993   if (bus->priv->signal_watch == NULL) {
994     GST_ERROR_OBJECT (bus, "no bus watch was present");
995     goto no_watch;
996   }
997
998   watch_id = bus->priv->signal_watch;
999
1000   GST_OBJECT_UNLOCK (bus);
1001
1002   g_source_destroy (watch_id);
1003
1004   return TRUE;
1005
1006 no_watch:
1007   GST_OBJECT_UNLOCK (bus);
1008
1009   return FALSE;
1010 }
1011
1012 typedef struct
1013 {
1014   GMainLoop *loop;
1015   guint timeout_id;
1016   gboolean source_running;
1017   GstMessageType events;
1018   GstMessage *message;
1019 } GstBusPollData;
1020
1021 static void
1022 poll_func (GstBus * bus, GstMessage * message, GstBusPollData * poll_data)
1023 {
1024   GstMessageType type;
1025
1026   if (!g_main_loop_is_running (poll_data->loop)) {
1027     GST_DEBUG ("mainloop %p not running", poll_data->loop);
1028     return;
1029   }
1030
1031   type = GST_MESSAGE_TYPE (message);
1032
1033   if (type & poll_data->events) {
1034     g_assert (poll_data->message == NULL);
1035     /* keep ref to message */
1036     poll_data->message = gst_message_ref (message);
1037     GST_DEBUG ("mainloop %p quit", poll_data->loop);
1038     g_main_loop_quit (poll_data->loop);
1039   } else {
1040     GST_DEBUG ("type %08x does not match %08x", type, poll_data->events);
1041   }
1042 }
1043
1044 static gboolean
1045 poll_timeout (GstBusPollData * poll_data)
1046 {
1047   GST_DEBUG ("mainloop %p quit", poll_data->loop);
1048   g_main_loop_quit (poll_data->loop);
1049
1050   /* we don't remove the GSource as this would free our poll_data,
1051    * which we still need */
1052   return TRUE;
1053 }
1054
1055 static void
1056 poll_destroy (GstBusPollData * poll_data, gpointer unused)
1057 {
1058   poll_data->source_running = FALSE;
1059   if (!poll_data->timeout_id) {
1060     g_main_loop_unref (poll_data->loop);
1061     g_slice_free (GstBusPollData, poll_data);
1062   }
1063 }
1064
1065 static void
1066 poll_destroy_timeout (GstBusPollData * poll_data)
1067 {
1068   poll_data->timeout_id = 0;
1069   if (!poll_data->source_running) {
1070     g_main_loop_unref (poll_data->loop);
1071     g_slice_free (GstBusPollData, poll_data);
1072   }
1073 }
1074
1075 /**
1076  * gst_bus_poll:
1077  * @bus: a #GstBus
1078  * @events: a mask of #GstMessageType, representing the set of message types to
1079  * poll for (note special handling of extended message types below)
1080  * @timeout: the poll timeout, as a #GstClockTime, or #GST_CLOCK_TIME_NONE to poll
1081  * indefinitely.
1082  *
1083  * Poll the bus for messages. Will block while waiting for messages to come.
1084  * You can specify a maximum time to poll with the @timeout parameter. If
1085  * @timeout is negative, this function will block indefinitely.
1086  *
1087  * All messages not in @events will be popped off the bus and will be ignored.
1088  * It is not possible to use message enums beyond #GST_MESSAGE_EXTENDED in the
1089  * @events mask
1090  *
1091  * Because poll is implemented using the "message" signal enabled by
1092  * gst_bus_add_signal_watch(), calling gst_bus_poll() will cause the "message"
1093  * signal to be emitted for every message that poll sees. Thus a "message"
1094  * signal handler will see the same messages that this function sees -- neither
1095  * will steal messages from the other.
1096  *
1097  * This function will run a main loop from the default main context when
1098  * polling.
1099  *
1100  * You should never use this function, since it is pure evil. This is
1101  * especially true for GUI applications based on Gtk+ or Qt, but also for any
1102  * other non-trivial application that uses the GLib main loop. As this function
1103  * runs a GLib main loop, any callback attached to the default GLib main
1104  * context may be invoked. This could be timeouts, GUI events, I/O events etc.;
1105  * even if gst_bus_poll() is called with a 0 timeout. Any of these callbacks
1106  * may do things you do not expect, e.g. destroy the main application window or
1107  * some other resource; change other application state; display a dialog and
1108  * run another main loop until the user clicks it away. In short, using this
1109  * function may add a lot of complexity to your code through unexpected
1110  * re-entrancy and unexpected changes to your application's state.
1111  *
1112  * For 0 timeouts use gst_bus_pop_filtered() instead of this function; for
1113  * other short timeouts use gst_bus_timed_pop_filtered(); everything else is
1114  * better handled by setting up an asynchronous bus watch and doing things
1115  * from there.
1116  *
1117  * Returns: (transfer full) (nullable): the message that was received,
1118  *     or %NULL if the poll timed out. The message is taken from the
1119  *     bus and needs to be unreffed with gst_message_unref() after
1120  *     usage.
1121  */
1122 GstMessage *
1123 gst_bus_poll (GstBus * bus, GstMessageType events, GstClockTime timeout)
1124 {
1125   GstBusPollData *poll_data;
1126   GstMessage *ret;
1127   gulong id;
1128
1129   poll_data = g_slice_new (GstBusPollData);
1130   poll_data->source_running = TRUE;
1131   poll_data->loop = g_main_loop_new (NULL, FALSE);
1132   poll_data->events = events;
1133   poll_data->message = NULL;
1134
1135   if (timeout != GST_CLOCK_TIME_NONE)
1136     poll_data->timeout_id = g_timeout_add_full (G_PRIORITY_DEFAULT_IDLE,
1137         timeout / GST_MSECOND, (GSourceFunc) poll_timeout, poll_data,
1138         (GDestroyNotify) poll_destroy_timeout);
1139   else
1140     poll_data->timeout_id = 0;
1141
1142   id = g_signal_connect_data (bus, "message", G_CALLBACK (poll_func), poll_data,
1143       (GClosureNotify) poll_destroy, 0);
1144
1145   /* these can be nested, so it's ok */
1146   gst_bus_add_signal_watch (bus);
1147
1148   GST_DEBUG ("running mainloop %p", poll_data->loop);
1149   g_main_loop_run (poll_data->loop);
1150   GST_DEBUG ("mainloop stopped %p", poll_data->loop);
1151
1152   gst_bus_remove_signal_watch (bus);
1153
1154   /* holds a ref */
1155   ret = poll_data->message;
1156
1157   if (poll_data->timeout_id)
1158     g_source_remove (poll_data->timeout_id);
1159
1160   /* poll_data will be freed now */
1161   g_signal_handler_disconnect (bus, id);
1162
1163   GST_DEBUG_OBJECT (bus, "finished poll with message %p", ret);
1164
1165   return ret;
1166 }
1167
1168 /**
1169  * gst_bus_async_signal_func:
1170  * @bus: a #GstBus
1171  * @message: the #GstMessage received
1172  * @data: user data
1173  *
1174  * A helper #GstBusFunc that can be used to convert all asynchronous messages
1175  * into signals.
1176  *
1177  * Returns: %TRUE
1178  */
1179 gboolean
1180 gst_bus_async_signal_func (GstBus * bus, GstMessage * message, gpointer data)
1181 {
1182   GQuark detail = 0;
1183
1184   g_return_val_if_fail (GST_IS_BUS (bus), TRUE);
1185   g_return_val_if_fail (message != NULL, TRUE);
1186
1187   detail = gst_message_type_to_quark (GST_MESSAGE_TYPE (message));
1188
1189   g_signal_emit (bus, gst_bus_signals[ASYNC_MESSAGE], detail, message);
1190
1191   /* we never remove this source based on signal emission return values */
1192   return TRUE;
1193 }
1194
1195 /**
1196  * gst_bus_sync_signal_handler:
1197  * @bus: a #GstBus
1198  * @message: the #GstMessage received
1199  * @data: user data
1200  *
1201  * A helper GstBusSyncHandler that can be used to convert all synchronous
1202  * messages into signals.
1203  *
1204  * Returns: GST_BUS_PASS
1205  */
1206 GstBusSyncReply
1207 gst_bus_sync_signal_handler (GstBus * bus, GstMessage * message, gpointer data)
1208 {
1209   GQuark detail = 0;
1210
1211   g_return_val_if_fail (GST_IS_BUS (bus), GST_BUS_DROP);
1212   g_return_val_if_fail (message != NULL, GST_BUS_DROP);
1213
1214   detail = gst_message_type_to_quark (GST_MESSAGE_TYPE (message));
1215
1216   g_signal_emit (bus, gst_bus_signals[SYNC_MESSAGE], detail, message);
1217
1218   return GST_BUS_PASS;
1219 }
1220
1221 /**
1222  * gst_bus_enable_sync_message_emission:
1223  * @bus: a #GstBus on which you want to receive the "sync-message" signal
1224  *
1225  * Instructs GStreamer to emit the "sync-message" signal after running the bus's
1226  * sync handler. This function is here so that code can ensure that they can
1227  * synchronously receive messages without having to affect what the bin's sync
1228  * handler is.
1229  *
1230  * This function may be called multiple times. To clean up, the caller is
1231  * responsible for calling gst_bus_disable_sync_message_emission() as many times
1232  * as this function is called.
1233  *
1234  * While this function looks similar to gst_bus_add_signal_watch(), it is not
1235  * exactly the same -- this function enables <emphasis>synchronous</emphasis> emission of
1236  * signals when messages arrive; gst_bus_add_signal_watch() adds an idle callback
1237  * to pop messages off the bus <emphasis>asynchronously</emphasis>. The sync-message signal
1238  * comes from the thread of whatever object posted the message; the "message"
1239  * signal is marshalled to the main thread via the main loop.
1240  *
1241  * MT safe.
1242  */
1243 void
1244 gst_bus_enable_sync_message_emission (GstBus * bus)
1245 {
1246   g_return_if_fail (GST_IS_BUS (bus));
1247
1248   GST_OBJECT_LOCK (bus);
1249   bus->priv->num_sync_message_emitters++;
1250   GST_OBJECT_UNLOCK (bus);
1251 }
1252
1253 /**
1254  * gst_bus_disable_sync_message_emission:
1255  * @bus: a #GstBus on which you previously called
1256  * gst_bus_enable_sync_message_emission()
1257  *
1258  * Instructs GStreamer to stop emitting the "sync-message" signal for this bus.
1259  * See gst_bus_enable_sync_message_emission() for more information.
1260  *
1261  * In the event that multiple pieces of code have called
1262  * gst_bus_enable_sync_message_emission(), the sync-message emissions will only
1263  * be stopped after all calls to gst_bus_enable_sync_message_emission() were
1264  * "cancelled" by calling this function. In this way the semantics are exactly
1265  * the same as gst_object_ref() that which calls enable should also call
1266  * disable.
1267  *
1268  * MT safe.
1269  */
1270 void
1271 gst_bus_disable_sync_message_emission (GstBus * bus)
1272 {
1273   g_return_if_fail (GST_IS_BUS (bus));
1274   g_return_if_fail (bus->priv->num_sync_message_emitters > 0);
1275
1276   GST_OBJECT_LOCK (bus);
1277   bus->priv->num_sync_message_emitters--;
1278   GST_OBJECT_UNLOCK (bus);
1279 }
1280
1281 /**
1282  * gst_bus_add_signal_watch_full:
1283  * @bus: a #GstBus on which you want to receive the "message" signal
1284  * @priority: The priority of the watch.
1285  *
1286  * Adds a bus signal watch to the default main context with the given @priority
1287  * (e.g. %G_PRIORITY_DEFAULT). It is also possible to use a non-default main
1288  * context set up using g_main_context_push_thread_default()
1289  * (before one had to create a bus watch source and attach it to the desired
1290  * main context 'manually').
1291  *
1292  * After calling this statement, the bus will emit the "message" signal for each
1293  * message posted on the bus when the main loop is running.
1294  *
1295  * This function may be called multiple times. To clean up, the caller is
1296  * responsible for calling gst_bus_remove_signal_watch() as many times as this
1297  * function is called.
1298  *
1299  * There can only be a single bus watch per bus, you must remove any signal
1300  * watch before you can set another type of watch.
1301  *
1302  * MT safe.
1303  */
1304 void
1305 gst_bus_add_signal_watch_full (GstBus * bus, gint priority)
1306 {
1307   g_return_if_fail (GST_IS_BUS (bus));
1308
1309   /* I know the callees don't take this lock, so go ahead and abuse it */
1310   GST_OBJECT_LOCK (bus);
1311
1312   if (bus->priv->num_signal_watchers > 0)
1313     goto done;
1314
1315   /* this should not fail because the counter above takes care of it */
1316   g_assert (!bus->priv->signal_watch);
1317
1318   gst_bus_add_watch_full_unlocked (bus, priority, gst_bus_async_signal_func,
1319       NULL, NULL);
1320
1321   if (G_UNLIKELY (!bus->priv->signal_watch))
1322     goto add_failed;
1323
1324 done:
1325
1326   bus->priv->num_signal_watchers++;
1327
1328   GST_OBJECT_UNLOCK (bus);
1329   return;
1330
1331   /* ERRORS */
1332 add_failed:
1333   {
1334     g_critical ("Could not add signal watch to bus %s", GST_OBJECT_NAME (bus));
1335     GST_OBJECT_UNLOCK (bus);
1336     return;
1337   }
1338 }
1339
1340 /**
1341  * gst_bus_add_signal_watch:
1342  * @bus: a #GstBus on which you want to receive the "message" signal
1343  *
1344  * Adds a bus signal watch to the default main context with the default priority
1345  * (%G_PRIORITY_DEFAULT). It is also possible to use a non-default
1346  * main context set up using g_main_context_push_thread_default() (before
1347  * one had to create a bus watch source and attach it to the desired main
1348  * context 'manually').
1349  *
1350  * After calling this statement, the bus will emit the "message" signal for each
1351  * message posted on the bus.
1352  *
1353  * This function may be called multiple times. To clean up, the caller is
1354  * responsible for calling gst_bus_remove_signal_watch() as many times as this
1355  * function is called.
1356  *
1357  * MT safe.
1358  */
1359 void
1360 gst_bus_add_signal_watch (GstBus * bus)
1361 {
1362   gst_bus_add_signal_watch_full (bus, G_PRIORITY_DEFAULT);
1363 }
1364
1365 /**
1366  * gst_bus_remove_signal_watch:
1367  * @bus: a #GstBus you previously added a signal watch to
1368  *
1369  * Removes a signal watch previously added with gst_bus_add_signal_watch().
1370  *
1371  * MT safe.
1372  */
1373 void
1374 gst_bus_remove_signal_watch (GstBus * bus)
1375 {
1376   GSource *source = NULL;
1377
1378   g_return_if_fail (GST_IS_BUS (bus));
1379
1380   /* I know the callees don't take this lock, so go ahead and abuse it */
1381   GST_OBJECT_LOCK (bus);
1382
1383   if (bus->priv->num_signal_watchers == 0)
1384     goto error;
1385
1386   bus->priv->num_signal_watchers--;
1387
1388   if (bus->priv->num_signal_watchers > 0)
1389     goto done;
1390
1391   GST_DEBUG_OBJECT (bus, "removing signal watch %u",
1392       g_source_get_id (bus->priv->signal_watch));
1393
1394   source = bus->priv->signal_watch;
1395
1396 done:
1397   GST_OBJECT_UNLOCK (bus);
1398
1399   if (source)
1400     g_source_destroy (source);
1401
1402   return;
1403
1404   /* ERRORS */
1405 error:
1406   {
1407     g_critical ("Bus %s has no signal watches attached", GST_OBJECT_NAME (bus));
1408     GST_OBJECT_UNLOCK (bus);
1409     return;
1410   }
1411 }