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