2 * Copyright (C) 2004 Wim Taymans <wim@fluendo.com>
4 * gstbus.c: GstBus subsystem
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.
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.
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.
24 * @short_description: Asynchronous message bus subsystem
25 * @see_also: #GstMessage, #GstElement
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
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.
36 * The GstBus provides support for #GSource based notifications. This makes it
37 * possible to handle the delivery in the glib mainloop.
39 * The #GSource callback function gst_bus_async_signal_func() can be used to
40 * convert all bus messages into signal emissions.
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.
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.
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.
62 * Every #GstPipeline has one bus.
64 * Note that a #GstPipeline will set its bus into flushing state when changing
65 * from READY to NULL state.
68 #include "gst_private.h"
73 #include <sys/types.h>
75 #include "gstatomicqueue.h"
80 #include "glib-compat-private.h"
82 #define GST_CAT_DEFAULT GST_CAT_BUS
92 #define DEFAULT_ENABLE_ASYNC (TRUE)
100 static void gst_bus_dispose (GObject * object);
101 static void gst_bus_finalize (GObject * object);
103 static guint gst_bus_signals[LAST_SIGNAL] = { 0 };
105 struct _GstBusPrivate
107 GstAtomicQueue *queue;
110 GstBusSyncHandler sync_handler;
111 gpointer sync_handler_data;
112 GDestroyNotify sync_handler_notify;
114 guint signal_watch_id;
115 guint num_signal_watchers;
117 guint num_sync_message_emitters;
120 gboolean enable_async;
125 #define gst_bus_parent_class parent_class
126 G_DEFINE_TYPE (GstBus, gst_bus, GST_TYPE_OBJECT);
129 gst_bus_set_property (GObject * object,
130 guint prop_id, const GValue * value, GParamSpec * pspec)
132 GstBus *bus = GST_BUS_CAST (object);
135 case PROP_ENABLE_ASYNC:
136 bus->priv->enable_async = g_value_get_boolean (value);
139 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
145 gst_bus_constructed (GObject * object)
147 GstBus *bus = GST_BUS_CAST (object);
149 if (bus->priv->enable_async) {
150 bus->priv->poll = gst_poll_new_timer ();
151 gst_poll_get_read_gpollfd (bus->priv->poll, &bus->priv->pollfd);
156 gst_bus_class_init (GstBusClass * klass)
158 GObjectClass *gobject_class = (GObjectClass *) klass;
160 gobject_class->dispose = gst_bus_dispose;
161 gobject_class->finalize = gst_bus_finalize;
162 gobject_class->set_property = gst_bus_set_property;
163 gobject_class->constructed = gst_bus_constructed;
166 * GstBus::enable-async:
168 * Enable async message delivery support for bus watches,
169 * gst_bus_pop() and similar API. Without this only the
170 * synchronous message handlers are called.
172 * This property is used to create the child element buses
175 g_object_class_install_property (gobject_class, PROP_ENABLE_ASYNC,
176 g_param_spec_boolean ("enable-async", "Enable Async",
177 "Enable async message delivery for bus watches and gst_bus_pop()",
178 DEFAULT_ENABLE_ASYNC,
179 G_PARAM_CONSTRUCT_ONLY | G_PARAM_WRITABLE | G_PARAM_STATIC_STRINGS));
182 * GstBus::sync-message:
183 * @bus: the object which received the signal
184 * @message: the message that has been posted synchronously
186 * A message has been posted on the bus. This signal is emitted from the
187 * thread that posted the message so one has to be careful with locking.
189 * This signal will not be emitted by default, you have to call
190 * gst_bus_enable_sync_message_emission() before.
192 gst_bus_signals[SYNC_MESSAGE] =
193 g_signal_new ("sync-message", G_TYPE_FROM_CLASS (klass),
194 G_SIGNAL_RUN_LAST | G_SIGNAL_DETAILED,
195 G_STRUCT_OFFSET (GstBusClass, sync_message), NULL, NULL,
196 g_cclosure_marshal_generic, G_TYPE_NONE, 1, GST_TYPE_MESSAGE);
200 * @bus: the object which received the signal
201 * @message: the message that has been posted asynchronously
203 * A message has been posted on the bus. This signal is emitted from a
204 * GSource added to the mainloop. this signal will only be emitted when
205 * there is a mainloop running.
207 gst_bus_signals[ASYNC_MESSAGE] =
208 g_signal_new ("message", G_TYPE_FROM_CLASS (klass),
209 G_SIGNAL_RUN_LAST | G_SIGNAL_DETAILED,
210 G_STRUCT_OFFSET (GstBusClass, message), NULL, NULL,
211 g_cclosure_marshal_generic, G_TYPE_NONE, 1, GST_TYPE_MESSAGE);
213 g_type_class_add_private (klass, sizeof (GstBusPrivate));
217 gst_bus_init (GstBus * bus)
219 bus->priv = G_TYPE_INSTANCE_GET_PRIVATE (bus, GST_TYPE_BUS, GstBusPrivate);
220 bus->priv->enable_async = DEFAULT_ENABLE_ASYNC;
221 g_mutex_init (&bus->priv->queue_lock);
222 bus->priv->queue = gst_atomic_queue_new (32);
224 /* clear floating flag */
225 gst_object_ref_sink (bus);
227 GST_DEBUG_OBJECT (bus, "created");
231 gst_bus_dispose (GObject * object)
233 GstBus *bus = GST_BUS (object);
235 if (bus->priv->queue) {
238 g_mutex_lock (&bus->priv->queue_lock);
240 message = gst_atomic_queue_pop (bus->priv->queue);
242 gst_message_unref (message);
243 } while (message != NULL);
244 gst_atomic_queue_unref (bus->priv->queue);
245 bus->priv->queue = NULL;
246 g_mutex_unlock (&bus->priv->queue_lock);
247 g_mutex_clear (&bus->priv->queue_lock);
250 gst_poll_free (bus->priv->poll);
251 bus->priv->poll = NULL;
254 G_OBJECT_CLASS (parent_class)->dispose (object);
258 gst_bus_finalize (GObject * object)
260 GstBus *bus = GST_BUS (object);
262 if (bus->priv->sync_handler_notify)
263 bus->priv->sync_handler_notify (bus->priv->sync_handler_data);
265 G_OBJECT_CLASS (parent_class)->finalize (object);
271 * Creates a new #GstBus instance.
273 * Returns: (transfer full): a new #GstBus instance
280 result = g_object_newv (gst_bus_get_type (), 0, NULL);
281 GST_DEBUG_OBJECT (result, "created new bus");
288 * @bus: a #GstBus to post on
289 * @message: (transfer full): the #GstMessage to post
291 * Post a message on the given bus. Ownership of the message
292 * is taken by the bus.
294 * Returns: %TRUE if the message could be posted, %FALSE if the bus is flushing.
299 gst_bus_post (GstBus * bus, GstMessage * message)
301 GstBusSyncReply reply = GST_BUS_PASS;
302 GstBusSyncHandler handler;
303 gboolean emit_sync_message;
304 gpointer handler_data;
306 g_return_val_if_fail (GST_IS_BUS (bus), FALSE);
307 g_return_val_if_fail (GST_IS_MESSAGE (message), FALSE);
309 GST_DEBUG_OBJECT (bus, "[msg %p] posting on bus %" GST_PTR_FORMAT, message,
312 GST_OBJECT_LOCK (bus);
313 /* check if the bus is flushing */
314 if (GST_OBJECT_FLAG_IS_SET (bus, GST_BUS_FLUSHING))
317 handler = bus->priv->sync_handler;
318 handler_data = bus->priv->sync_handler_data;
319 emit_sync_message = bus->priv->num_sync_message_emitters > 0;
320 GST_OBJECT_UNLOCK (bus);
322 /* first call the sync handler if it is installed */
324 reply = handler (bus, message, handler_data);
326 /* emit sync-message if requested to do so via
327 gst_bus_enable_sync_message_emission. terrible but effective */
328 if (emit_sync_message && reply != GST_BUS_DROP
329 && handler != gst_bus_sync_signal_handler)
330 gst_bus_sync_signal_handler (bus, message, NULL);
332 /* If this is a bus without async message delivery
333 * always drop the message */
334 if (!bus->priv->poll)
335 reply = GST_BUS_DROP;
337 /* now see what we should do with the message */
340 /* drop the message */
341 GST_DEBUG_OBJECT (bus, "[msg %p] dropped", message);
344 /* pass the message to the async queue, refcount passed in the queue */
345 GST_DEBUG_OBJECT (bus, "[msg %p] pushing on async queue", message);
346 gst_atomic_queue_push (bus->priv->queue, message);
347 gst_poll_write_control (bus->priv->poll);
348 GST_DEBUG_OBJECT (bus, "[msg %p] pushed on async queue", message);
353 /* async delivery, we need a mutex and a cond to block
355 GCond *cond = GST_MESSAGE_GET_COND (message);
356 GMutex *lock = GST_MESSAGE_GET_LOCK (message);
361 GST_DEBUG_OBJECT (bus, "[msg %p] waiting for async delivery", message);
363 /* now we lock the message mutex, send the message to the async
364 * queue. When the message is handled by the app and destroyed,
365 * the cond will be signalled and we can continue */
368 gst_atomic_queue_push (bus->priv->queue, message);
369 gst_poll_write_control (bus->priv->poll);
371 /* now block till the message is freed */
372 g_cond_wait (cond, lock);
373 g_mutex_unlock (lock);
375 GST_DEBUG_OBJECT (bus, "[msg %p] delivered asynchronously", message);
377 g_mutex_clear (lock);
382 g_warning ("invalid return from bus sync handler");
390 GST_DEBUG_OBJECT (bus, "bus is flushing");
391 gst_message_unref (message);
392 GST_OBJECT_UNLOCK (bus);
399 * gst_bus_have_pending:
400 * @bus: a #GstBus to check
402 * Check if there are pending messages on the bus that
405 * Returns: %TRUE if there are messages on the bus to be handled, %FALSE
411 gst_bus_have_pending (GstBus * bus)
415 g_return_val_if_fail (GST_IS_BUS (bus), FALSE);
417 /* see if there is a message on the bus */
418 result = gst_atomic_queue_length (bus->priv->queue) != 0;
424 * gst_bus_set_flushing:
426 * @flushing: whether or not to flush the bus
428 * If @flushing, flush out and unref any messages queued in the bus. Releases
429 * references to the message origin objects. Will flush future messages until
430 * gst_bus_set_flushing() sets @flushing to %FALSE.
435 gst_bus_set_flushing (GstBus * bus, gboolean flushing)
439 GST_OBJECT_LOCK (bus);
442 GST_OBJECT_FLAG_SET (bus, GST_BUS_FLUSHING);
444 GST_DEBUG_OBJECT (bus, "set bus flushing");
446 while ((message = gst_bus_pop (bus)))
447 gst_message_unref (message);
449 GST_DEBUG_OBJECT (bus, "unset bus flushing");
450 GST_OBJECT_FLAG_UNSET (bus, GST_BUS_FLUSHING);
453 GST_OBJECT_UNLOCK (bus);
457 * gst_bus_timed_pop_filtered:
458 * @bus: a #GstBus to pop from
459 * @timeout: a timeout in nanoseconds, or GST_CLOCK_TIME_NONE to wait forever
460 * @types: message types to take into account, GST_MESSAGE_ANY for any type
462 * Get a message from the bus whose type matches the message type mask @types,
463 * waiting up to the specified timeout (and discarding any messages that do not
464 * match the mask provided).
466 * If @timeout is 0, this function behaves like gst_bus_pop_filtered(). If
467 * @timeout is #GST_CLOCK_TIME_NONE, this function will block forever until a
468 * matching message was posted on the bus.
470 * Returns: (transfer full) (nullable): a #GstMessage matching the
471 * filter in @types, or %NULL if no matching message was found on
472 * the bus until the timeout expired. The message is taken from
473 * the bus and needs to be unreffed with gst_message_unref() after
479 gst_bus_timed_pop_filtered (GstBus * bus, GstClockTime timeout,
480 GstMessageType types)
484 gboolean first_round = TRUE;
485 GstClockTime elapsed = 0;
487 g_return_val_if_fail (GST_IS_BUS (bus), NULL);
488 g_return_val_if_fail (types != 0, NULL);
489 g_return_val_if_fail (timeout == 0 || bus->priv->poll != NULL, NULL);
491 g_mutex_lock (&bus->priv->queue_lock);
496 GST_LOG_OBJECT (bus, "have %d messages",
497 gst_atomic_queue_length (bus->priv->queue));
499 while ((message = gst_atomic_queue_pop (bus->priv->queue))) {
501 gst_poll_read_control (bus->priv->poll);
503 GST_DEBUG_OBJECT (bus, "got message %p, %s from %s, type mask is %u",
504 message, GST_MESSAGE_TYPE_NAME (message),
505 GST_MESSAGE_SRC_NAME (message), (guint) types);
506 if ((GST_MESSAGE_TYPE (message) & types) != 0) {
507 /* Extra check to ensure extended types don't get matched unless
509 if ((GST_MESSAGE_TYPE_IS_EXTENDED (message) == FALSE)
510 || (types & GST_MESSAGE_EXTENDED)) {
511 /* exit the loop, we have a message */
516 GST_DEBUG_OBJECT (bus, "discarding message, does not match mask");
517 gst_message_unref (message);
521 /* no need to wait, exit loop */
525 else if (timeout != GST_CLOCK_TIME_NONE) {
527 g_get_current_time (&then);
530 g_get_current_time (&now);
532 elapsed = GST_TIMEVAL_TO_TIME (now) - GST_TIMEVAL_TO_TIME (then);
534 if (elapsed > timeout)
539 /* only here in timeout case */
540 g_assert (bus->priv->poll);
541 g_mutex_unlock (&bus->priv->queue_lock);
542 ret = gst_poll_wait (bus->priv->poll, timeout - elapsed);
543 g_mutex_lock (&bus->priv->queue_lock);
546 GST_INFO_OBJECT (bus, "timed out, breaking loop");
549 GST_INFO_OBJECT (bus, "we got woken up, recheck for message");
555 g_mutex_unlock (&bus->priv->queue_lock);
563 * @bus: a #GstBus to pop
564 * @timeout: a timeout
566 * Get a message from the bus, waiting up to the specified timeout.
568 * If @timeout is 0, this function behaves like gst_bus_pop(). If @timeout is
569 * #GST_CLOCK_TIME_NONE, this function will block forever until a message was
572 * Returns: (transfer full) (nullable): the #GstMessage that is on the
573 * bus after the specified timeout or %NULL if the bus is empty
574 * after the timeout expired. The message is taken from the bus
575 * and needs to be unreffed with gst_message_unref() after usage.
580 gst_bus_timed_pop (GstBus * bus, GstClockTime timeout)
582 g_return_val_if_fail (GST_IS_BUS (bus), NULL);
584 return gst_bus_timed_pop_filtered (bus, timeout, GST_MESSAGE_ANY);
588 * gst_bus_pop_filtered:
589 * @bus: a #GstBus to pop
590 * @types: message types to take into account
592 * Get a message matching @type from the bus. Will discard all messages on
593 * the bus that do not match @type and that have been posted before the first
594 * message that does match @type. If there is no message matching @type on
595 * the bus, all messages will be discarded. It is not possible to use message
596 * enums beyond #GST_MESSAGE_EXTENDED in the @events mask.
598 * Returns: (transfer full) (nullable): the next #GstMessage matching
599 * @type that is on the bus, or %NULL if the bus is empty or there
600 * is no message matching @type. The message is taken from the bus
601 * and needs to be unreffed with gst_message_unref() after usage.
606 gst_bus_pop_filtered (GstBus * bus, GstMessageType types)
608 g_return_val_if_fail (GST_IS_BUS (bus), NULL);
609 g_return_val_if_fail (types != 0, NULL);
611 return gst_bus_timed_pop_filtered (bus, 0, types);
616 * @bus: a #GstBus to pop
618 * Get a message from the bus.
620 * Returns: (transfer full) (nullable): the #GstMessage that is on the
621 * bus, or %NULL if the bus is empty. The message is taken from
622 * the bus and needs to be unreffed with gst_message_unref() after
628 gst_bus_pop (GstBus * bus)
630 g_return_val_if_fail (GST_IS_BUS (bus), NULL);
632 return gst_bus_timed_pop_filtered (bus, 0, GST_MESSAGE_ANY);
639 * Peek the message on the top of the bus' queue. The message will remain
640 * on the bus' message queue. A reference is returned, and needs to be unreffed
643 * Returns: (transfer full) (nullable): the #GstMessage that is on the
644 * bus, or %NULL if the bus is empty.
649 gst_bus_peek (GstBus * bus)
653 g_return_val_if_fail (GST_IS_BUS (bus), NULL);
655 g_mutex_lock (&bus->priv->queue_lock);
656 message = gst_atomic_queue_peek (bus->priv->queue);
658 gst_message_ref (message);
659 g_mutex_unlock (&bus->priv->queue_lock);
661 GST_DEBUG_OBJECT (bus, "peek on bus, got message %p", message);
667 * gst_bus_set_sync_handler:
668 * @bus: a #GstBus to install the handler on
669 * @func: (allow-none): The handler function to install
670 * @user_data: User data that will be sent to the handler function.
671 * @notify: called when @user_data becomes unused
673 * Sets the synchronous handler on the bus. The function will be called
674 * every time a new message is posted on the bus. Note that the function
675 * will be called in the same thread context as the posting object. This
676 * function is usually only called by the creator of the bus. Applications
677 * should handle messages asynchronously using the gst_bus watch and poll
680 * You cannot replace an existing sync_handler. You can pass %NULL to this
681 * function, which will clear the existing handler.
684 gst_bus_set_sync_handler (GstBus * bus, GstBusSyncHandler func,
685 gpointer user_data, GDestroyNotify notify)
687 GDestroyNotify old_notify;
689 g_return_if_fail (GST_IS_BUS (bus));
691 GST_OBJECT_LOCK (bus);
692 /* Assert if the user attempts to replace an existing sync_handler,
693 * other than to clear it */
694 if (func != NULL && bus->priv->sync_handler != NULL)
697 if ((old_notify = bus->priv->sync_handler_notify)) {
698 gpointer old_data = bus->priv->sync_handler_data;
700 bus->priv->sync_handler_data = NULL;
701 bus->priv->sync_handler_notify = NULL;
702 GST_OBJECT_UNLOCK (bus);
704 old_notify (old_data);
706 GST_OBJECT_LOCK (bus);
708 bus->priv->sync_handler = func;
709 bus->priv->sync_handler_data = user_data;
710 bus->priv->sync_handler_notify = notify;
711 GST_OBJECT_UNLOCK (bus);
717 GST_OBJECT_UNLOCK (bus);
718 g_warning ("cannot replace existing sync handler");
723 /* GSource for the bus
732 gst_bus_source_prepare (GSource * source, gint * timeout)
739 gst_bus_source_check (GSource * source)
741 GstBusSource *bsrc = (GstBusSource *) source;
743 return bsrc->bus->priv->pollfd.revents & (G_IO_IN | G_IO_HUP | G_IO_ERR);
747 gst_bus_source_dispatch (GSource * source, GSourceFunc callback,
750 GstBusFunc handler = (GstBusFunc) callback;
751 GstBusSource *bsource = (GstBusSource *) source;
756 g_return_val_if_fail (bsource != NULL, FALSE);
760 g_return_val_if_fail (GST_IS_BUS (bus), FALSE);
762 message = gst_bus_pop (bus);
764 /* The message queue might be empty if some other thread or callback set
765 * the bus to flushing between check/prepare and dispatch */
766 if (G_UNLIKELY (message == NULL))
772 GST_DEBUG_OBJECT (bus, "source %p calling dispatch with %" GST_PTR_FORMAT,
775 keep = handler (bus, message, user_data);
776 gst_message_unref (message);
778 GST_DEBUG_OBJECT (bus, "source %p handler returns %d", source, keep);
784 g_warning ("GstBus watch dispatched without callback\n"
785 "You must call g_source_set_callback().");
786 gst_message_unref (message);
792 gst_bus_source_finalize (GSource * source)
794 GstBusSource *bsource = (GstBusSource *) source;
799 GST_DEBUG_OBJECT (bus, "finalize source %p", source);
801 GST_OBJECT_LOCK (bus);
802 if (bus->priv->watch_id == source)
803 bus->priv->watch_id = NULL;
804 GST_OBJECT_UNLOCK (bus);
806 gst_object_unref (bsource->bus);
810 static GSourceFuncs gst_bus_source_funcs = {
811 gst_bus_source_prepare,
812 gst_bus_source_check,
813 gst_bus_source_dispatch,
814 gst_bus_source_finalize
818 * gst_bus_create_watch:
819 * @bus: a #GstBus to create the watch for
821 * Create watch for this bus. The GSource will be dispatched whenever
822 * a message is on the bus. After the GSource is dispatched, the
823 * message is popped off the bus and unreffed.
825 * Returns: (transfer full): a #GSource that can be added to a mainloop.
828 gst_bus_create_watch (GstBus * bus)
830 GstBusSource *source;
832 g_return_val_if_fail (GST_IS_BUS (bus), NULL);
833 g_return_val_if_fail (bus->priv->poll != NULL, NULL);
835 source = (GstBusSource *) g_source_new (&gst_bus_source_funcs,
836 sizeof (GstBusSource));
838 g_source_set_name ((GSource *) source, "GStreamer message bus watch");
840 source->bus = gst_object_ref (bus);
841 g_source_add_poll ((GSource *) source, &bus->priv->pollfd);
843 return (GSource *) source;
846 /* must be called with the bus OBJECT LOCK */
848 gst_bus_add_watch_full_unlocked (GstBus * bus, gint priority,
849 GstBusFunc func, gpointer user_data, GDestroyNotify notify)
855 if (bus->priv->watch_id) {
856 GST_ERROR_OBJECT (bus,
857 "Tried to add new watch while one was already there");
861 source = gst_bus_create_watch (bus);
863 if (priority != G_PRIORITY_DEFAULT)
864 g_source_set_priority (source, priority);
866 g_source_set_callback (source, (GSourceFunc) func, user_data, notify);
868 ctx = g_main_context_get_thread_default ();
869 id = g_source_attach (source, ctx);
870 g_source_unref (source);
873 bus->priv->watch_id = source;
876 GST_DEBUG_OBJECT (bus, "New source %p with id %u", source, id);
881 * gst_bus_add_watch_full:
882 * @bus: a #GstBus to create the watch for.
883 * @priority: The priority of the watch.
884 * @func: A function to call when a message is received.
885 * @user_data: user data passed to @func.
886 * @notify: the function to call when the source is removed.
888 * Adds a bus watch to the default main context with the given @priority (e.g.
889 * %G_PRIORITY_DEFAULT). It is also possible to use a non-default main
890 * context set up using g_main_context_push_thread_default() (before
891 * one had to create a bus watch source and attach it to the desired main
892 * context 'manually').
894 * This function is used to receive asynchronous messages in the main loop.
895 * There can only be a single bus watch per bus, you must remove it before you
898 * When @func is called, the message belongs to the caller; if you want to
899 * keep a copy of it, call gst_message_ref() before leaving @func.
901 * The watch can be removed using g_source_remove() or by returning %FALSE
906 * Returns: The event source id.
907 * Rename to: gst_bus_add_watch
910 gst_bus_add_watch_full (GstBus * bus, gint priority,
911 GstBusFunc func, gpointer user_data, GDestroyNotify notify)
915 g_return_val_if_fail (GST_IS_BUS (bus), 0);
917 GST_OBJECT_LOCK (bus);
918 id = gst_bus_add_watch_full_unlocked (bus, priority, func, user_data, notify);
919 GST_OBJECT_UNLOCK (bus);
925 * gst_bus_add_watch: (skip)
926 * @bus: a #GstBus to create the watch for
927 * @func: A function to call when a message is received.
928 * @user_data: user data passed to @func.
930 * Adds a bus watch to the default main context with the default priority
931 * (%G_PRIORITY_DEFAULT). It is also possible to use a non-default main
932 * context set up using g_main_context_push_thread_default() (before
933 * one had to create a bus watch source and attach it to the desired main
934 * context 'manually').
936 * This function is used to receive asynchronous messages in the main loop.
937 * There can only be a single bus watch per bus, you must remove it before you
940 * The watch can be removed using g_source_remove() or by returning %FALSE
943 * Returns: The event source id.
948 gst_bus_add_watch (GstBus * bus, GstBusFunc func, gpointer user_data)
950 return gst_bus_add_watch_full (bus, G_PRIORITY_DEFAULT, func,
958 gboolean source_running;
959 GstMessageType events;
964 poll_func (GstBus * bus, GstMessage * message, GstBusPollData * poll_data)
968 if (!g_main_loop_is_running (poll_data->loop)) {
969 GST_DEBUG ("mainloop %p not running", poll_data->loop);
973 type = GST_MESSAGE_TYPE (message);
975 if (type & poll_data->events) {
976 g_assert (poll_data->message == NULL);
977 /* keep ref to message */
978 poll_data->message = gst_message_ref (message);
979 GST_DEBUG ("mainloop %p quit", poll_data->loop);
980 g_main_loop_quit (poll_data->loop);
982 GST_DEBUG ("type %08x does not match %08x", type, poll_data->events);
987 poll_timeout (GstBusPollData * poll_data)
989 GST_DEBUG ("mainloop %p quit", poll_data->loop);
990 g_main_loop_quit (poll_data->loop);
992 /* we don't remove the GSource as this would free our poll_data,
993 * which we still need */
998 poll_destroy (GstBusPollData * poll_data, gpointer unused)
1000 poll_data->source_running = FALSE;
1001 if (!poll_data->timeout_id) {
1002 g_main_loop_unref (poll_data->loop);
1003 g_slice_free (GstBusPollData, poll_data);
1008 poll_destroy_timeout (GstBusPollData * poll_data)
1010 poll_data->timeout_id = 0;
1011 if (!poll_data->source_running) {
1012 g_main_loop_unref (poll_data->loop);
1013 g_slice_free (GstBusPollData, poll_data);
1020 * @events: a mask of #GstMessageType, representing the set of message types to
1021 * poll for (note special handling of extended message types below)
1022 * @timeout: the poll timeout, as a #GstClockTime, or #GST_CLOCK_TIME_NONE to poll
1025 * Poll the bus for messages. Will block while waiting for messages to come.
1026 * You can specify a maximum time to poll with the @timeout parameter. If
1027 * @timeout is negative, this function will block indefinitely.
1029 * All messages not in @events will be popped off the bus and will be ignored.
1030 * It is not possible to use message enums beyond #GST_MESSAGE_EXTENDED in the
1033 * Because poll is implemented using the "message" signal enabled by
1034 * gst_bus_add_signal_watch(), calling gst_bus_poll() will cause the "message"
1035 * signal to be emitted for every message that poll sees. Thus a "message"
1036 * signal handler will see the same messages that this function sees -- neither
1037 * will steal messages from the other.
1039 * This function will run a main loop from the default main context when
1042 * You should never use this function, since it is pure evil. This is
1043 * especially true for GUI applications based on Gtk+ or Qt, but also for any
1044 * other non-trivial application that uses the GLib main loop. As this function
1045 * runs a GLib main loop, any callback attached to the default GLib main
1046 * context may be invoked. This could be timeouts, GUI events, I/O events etc.;
1047 * even if gst_bus_poll() is called with a 0 timeout. Any of these callbacks
1048 * may do things you do not expect, e.g. destroy the main application window or
1049 * some other resource; change other application state; display a dialog and
1050 * run another main loop until the user clicks it away. In short, using this
1051 * function may add a lot of complexity to your code through unexpected
1052 * re-entrancy and unexpected changes to your application's state.
1054 * For 0 timeouts use gst_bus_pop_filtered() instead of this function; for
1055 * other short timeouts use gst_bus_timed_pop_filtered(); everything else is
1056 * better handled by setting up an asynchronous bus watch and doing things
1059 * Returns: (transfer full) (nullable): the message that was received,
1060 * or %NULL if the poll timed out. The message is taken from the
1061 * bus and needs to be unreffed with gst_message_unref() after
1065 gst_bus_poll (GstBus * bus, GstMessageType events, GstClockTime timeout)
1067 GstBusPollData *poll_data;
1071 poll_data = g_slice_new (GstBusPollData);
1072 poll_data->source_running = TRUE;
1073 poll_data->loop = g_main_loop_new (NULL, FALSE);
1074 poll_data->events = events;
1075 poll_data->message = NULL;
1077 if (timeout != GST_CLOCK_TIME_NONE)
1078 poll_data->timeout_id = g_timeout_add_full (G_PRIORITY_DEFAULT_IDLE,
1079 timeout / GST_MSECOND, (GSourceFunc) poll_timeout, poll_data,
1080 (GDestroyNotify) poll_destroy_timeout);
1082 poll_data->timeout_id = 0;
1084 id = g_signal_connect_data (bus, "message", G_CALLBACK (poll_func), poll_data,
1085 (GClosureNotify) poll_destroy, 0);
1087 /* these can be nested, so it's ok */
1088 gst_bus_add_signal_watch (bus);
1090 GST_DEBUG ("running mainloop %p", poll_data->loop);
1091 g_main_loop_run (poll_data->loop);
1092 GST_DEBUG ("mainloop stopped %p", poll_data->loop);
1094 gst_bus_remove_signal_watch (bus);
1097 ret = poll_data->message;
1099 if (poll_data->timeout_id)
1100 g_source_remove (poll_data->timeout_id);
1102 /* poll_data will be freed now */
1103 g_signal_handler_disconnect (bus, id);
1105 GST_DEBUG_OBJECT (bus, "finished poll with message %p", ret);
1111 * gst_bus_async_signal_func:
1113 * @message: the #GstMessage received
1116 * A helper #GstBusFunc that can be used to convert all asynchronous messages
1122 gst_bus_async_signal_func (GstBus * bus, GstMessage * message, gpointer data)
1126 g_return_val_if_fail (GST_IS_BUS (bus), TRUE);
1127 g_return_val_if_fail (message != NULL, TRUE);
1129 detail = gst_message_type_to_quark (GST_MESSAGE_TYPE (message));
1131 g_signal_emit (bus, gst_bus_signals[ASYNC_MESSAGE], detail, message);
1133 /* we never remove this source based on signal emission return values */
1138 * gst_bus_sync_signal_handler:
1140 * @message: the #GstMessage received
1143 * A helper GstBusSyncHandler that can be used to convert all synchronous
1144 * messages into signals.
1146 * Returns: GST_BUS_PASS
1149 gst_bus_sync_signal_handler (GstBus * bus, GstMessage * message, gpointer data)
1153 g_return_val_if_fail (GST_IS_BUS (bus), GST_BUS_DROP);
1154 g_return_val_if_fail (message != NULL, GST_BUS_DROP);
1156 detail = gst_message_type_to_quark (GST_MESSAGE_TYPE (message));
1158 g_signal_emit (bus, gst_bus_signals[SYNC_MESSAGE], detail, message);
1160 return GST_BUS_PASS;
1164 * gst_bus_enable_sync_message_emission:
1165 * @bus: a #GstBus on which you want to receive the "sync-message" signal
1167 * Instructs GStreamer to emit the "sync-message" signal after running the bus's
1168 * sync handler. This function is here so that code can ensure that they can
1169 * synchronously receive messages without having to affect what the bin's sync
1172 * This function may be called multiple times. To clean up, the caller is
1173 * responsible for calling gst_bus_disable_sync_message_emission() as many times
1174 * as this function is called.
1176 * While this function looks similar to gst_bus_add_signal_watch(), it is not
1177 * exactly the same -- this function enables <emphasis>synchronous</emphasis> emission of
1178 * signals when messages arrive; gst_bus_add_signal_watch() adds an idle callback
1179 * to pop messages off the bus <emphasis>asynchronously</emphasis>. The sync-message signal
1180 * comes from the thread of whatever object posted the message; the "message"
1181 * signal is marshalled to the main thread via the main loop.
1186 gst_bus_enable_sync_message_emission (GstBus * bus)
1188 g_return_if_fail (GST_IS_BUS (bus));
1190 GST_OBJECT_LOCK (bus);
1191 bus->priv->num_sync_message_emitters++;
1192 GST_OBJECT_UNLOCK (bus);
1196 * gst_bus_disable_sync_message_emission:
1197 * @bus: a #GstBus on which you previously called
1198 * gst_bus_enable_sync_message_emission()
1200 * Instructs GStreamer to stop emitting the "sync-message" signal for this bus.
1201 * See gst_bus_enable_sync_message_emission() for more information.
1203 * In the event that multiple pieces of code have called
1204 * gst_bus_enable_sync_message_emission(), the sync-message emissions will only
1205 * be stopped after all calls to gst_bus_enable_sync_message_emission() were
1206 * "cancelled" by calling this function. In this way the semantics are exactly
1207 * the same as gst_object_ref() that which calls enable should also call
1213 gst_bus_disable_sync_message_emission (GstBus * bus)
1215 g_return_if_fail (GST_IS_BUS (bus));
1216 g_return_if_fail (bus->priv->num_sync_message_emitters > 0);
1218 GST_OBJECT_LOCK (bus);
1219 bus->priv->num_sync_message_emitters--;
1220 GST_OBJECT_UNLOCK (bus);
1224 * gst_bus_add_signal_watch_full:
1225 * @bus: a #GstBus on which you want to receive the "message" signal
1226 * @priority: The priority of the watch.
1228 * Adds a bus signal watch to the default main context with the given @priority
1229 * (e.g. %G_PRIORITY_DEFAULT). It is also possible to use a non-default main
1230 * context set up using g_main_context_push_thread_default()
1231 * (before one had to create a bus watch source and attach it to the desired
1232 * main context 'manually').
1234 * After calling this statement, the bus will emit the "message" signal for each
1235 * message posted on the bus when the main loop is running.
1237 * This function may be called multiple times. To clean up, the caller is
1238 * responsible for calling gst_bus_remove_signal_watch() as many times as this
1239 * function is called.
1241 * There can only be a single bus watch per bus, you must remove any signal
1242 * watch before you can set another type of watch.
1247 gst_bus_add_signal_watch_full (GstBus * bus, gint priority)
1249 g_return_if_fail (GST_IS_BUS (bus));
1251 /* I know the callees don't take this lock, so go ahead and abuse it */
1252 GST_OBJECT_LOCK (bus);
1254 if (bus->priv->num_signal_watchers > 0)
1257 /* this should not fail because the counter above takes care of it */
1258 g_assert (bus->priv->signal_watch_id == 0);
1260 bus->priv->signal_watch_id =
1261 gst_bus_add_watch_full_unlocked (bus, priority, gst_bus_async_signal_func,
1264 if (G_UNLIKELY (bus->priv->signal_watch_id == 0))
1269 bus->priv->num_signal_watchers++;
1271 GST_OBJECT_UNLOCK (bus);
1277 g_critical ("Could not add signal watch to bus %s", GST_OBJECT_NAME (bus));
1278 GST_OBJECT_UNLOCK (bus);
1284 * gst_bus_add_signal_watch:
1285 * @bus: a #GstBus on which you want to receive the "message" signal
1287 * Adds a bus signal watch to the default main context with the default priority
1288 * (%G_PRIORITY_DEFAULT). It is also possible to use a non-default
1289 * main context set up using g_main_context_push_thread_default() (before
1290 * one had to create a bus watch source and attach it to the desired main
1291 * context 'manually').
1293 * After calling this statement, the bus will emit the "message" signal for each
1294 * message posted on the bus.
1296 * This function may be called multiple times. To clean up, the caller is
1297 * responsible for calling gst_bus_remove_signal_watch() as many times as this
1298 * function is called.
1303 gst_bus_add_signal_watch (GstBus * bus)
1305 gst_bus_add_signal_watch_full (bus, G_PRIORITY_DEFAULT);
1309 * gst_bus_remove_signal_watch:
1310 * @bus: a #GstBus you previously added a signal watch to
1312 * Removes a signal watch previously added with gst_bus_add_signal_watch().
1317 gst_bus_remove_signal_watch (GstBus * bus)
1321 g_return_if_fail (GST_IS_BUS (bus));
1323 /* I know the callees don't take this lock, so go ahead and abuse it */
1324 GST_OBJECT_LOCK (bus);
1326 if (bus->priv->num_signal_watchers == 0)
1329 bus->priv->num_signal_watchers--;
1331 if (bus->priv->num_signal_watchers > 0)
1334 id = bus->priv->signal_watch_id;
1335 bus->priv->signal_watch_id = 0;
1337 GST_DEBUG_OBJECT (bus, "removing signal watch %u", id);
1340 GST_OBJECT_UNLOCK (bus);
1343 g_source_remove (id);
1350 g_critical ("Bus %s has no signal watches attached", GST_OBJECT_NAME (bus));
1351 GST_OBJECT_UNLOCK (bus);