b9ce67bc8f45122b7d583a9d7dc9f94253471bb3
[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   GST_OBJECT_LOCK (bus);
312   /* check if the bus is flushing */
313   if (GST_OBJECT_FLAG_IS_SET (bus, GST_BUS_FLUSHING))
314     goto is_flushing;
315
316   handler = bus->priv->sync_handler;
317   handler_data = bus->priv->sync_handler_data;
318   emit_sync_message = bus->priv->num_sync_message_emitters > 0;
319   GST_OBJECT_UNLOCK (bus);
320
321   /* first call the sync handler if it is installed */
322   if (handler)
323     reply = handler (bus, message, handler_data);
324
325   /* emit sync-message if requested to do so via
326      gst_bus_enable_sync_message_emission. terrible but effective */
327   if (emit_sync_message && reply != GST_BUS_DROP
328       && handler != gst_bus_sync_signal_handler)
329     gst_bus_sync_signal_handler (bus, message, NULL);
330
331   /* If this is a bus without async message delivery
332    * always drop the message */
333   if (!bus->priv->poll)
334     reply = GST_BUS_DROP;
335
336   /* now see what we should do with the message */
337   switch (reply) {
338     case GST_BUS_DROP:
339       /* drop the message */
340       GST_DEBUG_OBJECT (bus, "[msg %p] dropped", message);
341       break;
342     case GST_BUS_PASS:
343       /* pass the message to the async queue, refcount passed in the queue */
344       GST_DEBUG_OBJECT (bus, "[msg %p] pushing on async queue", message);
345       gst_atomic_queue_push (bus->priv->queue, message);
346       gst_poll_write_control (bus->priv->poll);
347       GST_DEBUG_OBJECT (bus, "[msg %p] pushed on async queue", message);
348
349       break;
350     case GST_BUS_ASYNC:
351     {
352       /* async delivery, we need a mutex and a cond to block
353        * on */
354       GCond *cond = GST_MESSAGE_GET_COND (message);
355       GMutex *lock = GST_MESSAGE_GET_LOCK (message);
356
357       g_cond_init (cond);
358       g_mutex_init (lock);
359
360       GST_DEBUG_OBJECT (bus, "[msg %p] waiting for async delivery", message);
361
362       /* now we lock the message mutex, send the message to the async
363        * queue. When the message is handled by the app and destroyed,
364        * the cond will be signalled and we can continue */
365       g_mutex_lock (lock);
366
367       gst_atomic_queue_push (bus->priv->queue, message);
368       gst_poll_write_control (bus->priv->poll);
369
370       /* now block till the message is freed */
371       g_cond_wait (cond, lock);
372       g_mutex_unlock (lock);
373
374       GST_DEBUG_OBJECT (bus, "[msg %p] delivered asynchronously", message);
375
376       g_mutex_clear (lock);
377       g_cond_clear (cond);
378       break;
379     }
380     default:
381       g_warning ("invalid return from bus sync handler");
382       break;
383   }
384   return TRUE;
385
386   /* ERRORS */
387 is_flushing:
388   {
389     GST_DEBUG_OBJECT (bus, "bus is flushing");
390     gst_message_unref (message);
391     GST_OBJECT_UNLOCK (bus);
392
393     return FALSE;
394   }
395 }
396
397 /**
398  * gst_bus_have_pending:
399  * @bus: a #GstBus to check
400  *
401  * Check if there are pending messages on the bus that
402  * should be handled.
403  *
404  * Returns: %TRUE if there are messages on the bus to be handled, %FALSE
405  * otherwise.
406  *
407  * MT safe.
408  */
409 gboolean
410 gst_bus_have_pending (GstBus * bus)
411 {
412   gboolean result;
413
414   g_return_val_if_fail (GST_IS_BUS (bus), FALSE);
415
416   /* see if there is a message on the bus */
417   result = gst_atomic_queue_length (bus->priv->queue) != 0;
418
419   return result;
420 }
421
422 /**
423  * gst_bus_set_flushing:
424  * @bus: a #GstBus
425  * @flushing: whether or not to flush the bus
426  *
427  * If @flushing, flush out and unref any messages queued in the bus. Releases
428  * references to the message origin objects. Will flush future messages until
429  * gst_bus_set_flushing() sets @flushing to %FALSE.
430  *
431  * MT safe.
432  */
433 void
434 gst_bus_set_flushing (GstBus * bus, gboolean flushing)
435 {
436   GstMessage *message;
437
438   GST_OBJECT_LOCK (bus);
439
440   if (flushing) {
441     GST_OBJECT_FLAG_SET (bus, GST_BUS_FLUSHING);
442
443     GST_DEBUG_OBJECT (bus, "set bus flushing");
444
445     while ((message = gst_bus_pop (bus)))
446       gst_message_unref (message);
447   } else {
448     GST_DEBUG_OBJECT (bus, "unset bus flushing");
449     GST_OBJECT_FLAG_UNSET (bus, GST_BUS_FLUSHING);
450   }
451
452   GST_OBJECT_UNLOCK (bus);
453 }
454
455 /**
456  * gst_bus_timed_pop_filtered:
457  * @bus: a #GstBus to pop from
458  * @timeout: a timeout in nanoseconds, or GST_CLOCK_TIME_NONE to wait forever
459  * @types: message types to take into account, GST_MESSAGE_ANY for any type
460  *
461  * Get a message from the bus whose type matches the message type mask @types,
462  * waiting up to the specified timeout (and discarding any messages that do not
463  * match the mask provided).
464  *
465  * If @timeout is 0, this function behaves like gst_bus_pop_filtered(). If
466  * @timeout is #GST_CLOCK_TIME_NONE, this function will block forever until a
467  * matching message was posted on the bus.
468  *
469  * Returns: (transfer full) (nullable): a #GstMessage matching the
470  *     filter in @types, or %NULL if no matching message was found on
471  *     the bus until the timeout expired. The message is taken from
472  *     the bus and needs to be unreffed with gst_message_unref() after
473  *     usage.
474  *
475  * MT safe.
476  */
477 GstMessage *
478 gst_bus_timed_pop_filtered (GstBus * bus, GstClockTime timeout,
479     GstMessageType types)
480 {
481   GstMessage *message;
482   GTimeVal now, then;
483   gboolean first_round = TRUE;
484   GstClockTime elapsed = 0;
485
486   g_return_val_if_fail (GST_IS_BUS (bus), NULL);
487   g_return_val_if_fail (types != 0, NULL);
488   g_return_val_if_fail (timeout == 0 || bus->priv->poll != NULL, NULL);
489
490   g_mutex_lock (&bus->priv->queue_lock);
491
492   while (TRUE) {
493     gint ret;
494
495     GST_LOG_OBJECT (bus, "have %d messages",
496         gst_atomic_queue_length (bus->priv->queue));
497
498     while ((message = gst_atomic_queue_pop (bus->priv->queue))) {
499       if (bus->priv->poll)
500         gst_poll_read_control (bus->priv->poll);
501
502       GST_DEBUG_OBJECT (bus, "got message %p, %s from %s, type mask is %u",
503           message, GST_MESSAGE_TYPE_NAME (message),
504           GST_MESSAGE_SRC_NAME (message), (guint) types);
505       if ((GST_MESSAGE_TYPE (message) & types) != 0) {
506         /* Extra check to ensure extended types don't get matched unless
507          * asked for */
508         if ((GST_MESSAGE_TYPE_IS_EXTENDED (message) == FALSE)
509             || (types & GST_MESSAGE_EXTENDED)) {
510           /* exit the loop, we have a message */
511           goto beach;
512         }
513       }
514
515       GST_DEBUG_OBJECT (bus, "discarding message, does not match mask");
516       gst_message_unref (message);
517       message = NULL;
518     }
519
520     /* no need to wait, exit loop */
521     if (timeout == 0)
522       break;
523
524     else if (timeout != GST_CLOCK_TIME_NONE) {
525       if (first_round) {
526         g_get_current_time (&then);
527         first_round = FALSE;
528       } else {
529         g_get_current_time (&now);
530
531         elapsed = GST_TIMEVAL_TO_TIME (now) - GST_TIMEVAL_TO_TIME (then);
532
533         if (elapsed > timeout)
534           break;
535       }
536     }
537
538     /* only here in timeout case */
539     g_assert (bus->priv->poll);
540     g_mutex_unlock (&bus->priv->queue_lock);
541     ret = gst_poll_wait (bus->priv->poll, timeout - elapsed);
542     g_mutex_lock (&bus->priv->queue_lock);
543
544     if (ret == 0) {
545       GST_INFO_OBJECT (bus, "timed out, breaking loop");
546       break;
547     } else {
548       GST_INFO_OBJECT (bus, "we got woken up, recheck for message");
549     }
550   }
551
552 beach:
553
554   g_mutex_unlock (&bus->priv->queue_lock);
555
556   return message;
557 }
558
559
560 /**
561  * gst_bus_timed_pop:
562  * @bus: a #GstBus to pop
563  * @timeout: a timeout
564  *
565  * Get a message from the bus, waiting up to the specified timeout.
566  *
567  * If @timeout is 0, this function behaves like gst_bus_pop(). If @timeout is
568  * #GST_CLOCK_TIME_NONE, this function will block forever until a message was
569  * posted on the bus.
570  *
571  * Returns: (transfer full) (nullable): the #GstMessage that is on the
572  *     bus after the specified timeout or %NULL if the bus is empty
573  *     after the timeout expired.  The message is taken from the bus
574  *     and needs to be unreffed with gst_message_unref() after usage.
575  *
576  * MT safe.
577  */
578 GstMessage *
579 gst_bus_timed_pop (GstBus * bus, GstClockTime timeout)
580 {
581   g_return_val_if_fail (GST_IS_BUS (bus), NULL);
582
583   return gst_bus_timed_pop_filtered (bus, timeout, GST_MESSAGE_ANY);
584 }
585
586 /**
587  * gst_bus_pop_filtered:
588  * @bus: a #GstBus to pop
589  * @types: message types to take into account
590  *
591  * Get a message matching @type from the bus.  Will discard all messages on
592  * the bus that do not match @type and that have been posted before the first
593  * message that does match @type.  If there is no message matching @type on
594  * the bus, all messages will be discarded. It is not possible to use message
595  * enums beyond #GST_MESSAGE_EXTENDED in the @events mask.
596  *
597  * Returns: (transfer full) (nullable): the next #GstMessage matching
598  *     @type that is on the bus, or %NULL if the bus is empty or there
599  *     is no message matching @type. The message is taken from the bus
600  *     and needs to be unreffed with gst_message_unref() after usage.
601  *
602  * MT safe.
603  */
604 GstMessage *
605 gst_bus_pop_filtered (GstBus * bus, GstMessageType types)
606 {
607   g_return_val_if_fail (GST_IS_BUS (bus), NULL);
608   g_return_val_if_fail (types != 0, NULL);
609
610   return gst_bus_timed_pop_filtered (bus, 0, types);
611 }
612
613 /**
614  * gst_bus_pop:
615  * @bus: a #GstBus to pop
616  *
617  * Get a message from the bus.
618  *
619  * Returns: (transfer full) (nullable): the #GstMessage that is on the
620  *     bus, or %NULL if the bus is empty. The message is taken from
621  *     the bus and needs to be unreffed with gst_message_unref() after
622  *     usage.
623  *
624  * MT safe.
625  */
626 GstMessage *
627 gst_bus_pop (GstBus * bus)
628 {
629   g_return_val_if_fail (GST_IS_BUS (bus), NULL);
630
631   return gst_bus_timed_pop_filtered (bus, 0, GST_MESSAGE_ANY);
632 }
633
634 /**
635  * gst_bus_peek:
636  * @bus: a #GstBus
637  *
638  * Peek the message on the top of the bus' queue. The message will remain
639  * on the bus' message queue. A reference is returned, and needs to be unreffed
640  * by the caller.
641  *
642  * Returns: (transfer full) (nullable): the #GstMessage that is on the
643  *     bus, or %NULL if the bus is empty.
644  *
645  * MT safe.
646  */
647 GstMessage *
648 gst_bus_peek (GstBus * bus)
649 {
650   GstMessage *message;
651
652   g_return_val_if_fail (GST_IS_BUS (bus), NULL);
653
654   g_mutex_lock (&bus->priv->queue_lock);
655   message = gst_atomic_queue_peek (bus->priv->queue);
656   if (message)
657     gst_message_ref (message);
658   g_mutex_unlock (&bus->priv->queue_lock);
659
660   GST_DEBUG_OBJECT (bus, "peek on bus, got message %p", message);
661
662   return message;
663 }
664
665 /**
666  * gst_bus_set_sync_handler:
667  * @bus: a #GstBus to install the handler on
668  * @func: (allow-none): The handler function to install
669  * @user_data: User data that will be sent to the handler function.
670  * @notify: called when @user_data becomes unused
671  *
672  * Sets the synchronous handler on the bus. The function will be called
673  * every time a new message is posted on the bus. Note that the function
674  * will be called in the same thread context as the posting object. This
675  * function is usually only called by the creator of the bus. Applications
676  * should handle messages asynchronously using the gst_bus watch and poll
677  * functions.
678  *
679  * You cannot replace an existing sync_handler. You can pass %NULL to this
680  * function, which will clear the existing handler.
681  */
682 void
683 gst_bus_set_sync_handler (GstBus * bus, GstBusSyncHandler func,
684     gpointer user_data, GDestroyNotify notify)
685 {
686   GDestroyNotify old_notify;
687
688   g_return_if_fail (GST_IS_BUS (bus));
689
690   GST_OBJECT_LOCK (bus);
691   /* Assert if the user attempts to replace an existing sync_handler,
692    * other than to clear it */
693   if (func != NULL && bus->priv->sync_handler != NULL)
694     goto no_replace;
695
696   if ((old_notify = bus->priv->sync_handler_notify)) {
697     gpointer old_data = bus->priv->sync_handler_data;
698
699     bus->priv->sync_handler_data = NULL;
700     bus->priv->sync_handler_notify = NULL;
701     GST_OBJECT_UNLOCK (bus);
702
703     old_notify (old_data);
704
705     GST_OBJECT_LOCK (bus);
706   }
707   bus->priv->sync_handler = func;
708   bus->priv->sync_handler_data = user_data;
709   bus->priv->sync_handler_notify = notify;
710   GST_OBJECT_UNLOCK (bus);
711
712   return;
713
714 no_replace:
715   {
716     GST_OBJECT_UNLOCK (bus);
717     g_warning ("cannot replace existing sync handler");
718     return;
719   }
720 }
721
722 /* GSource for the bus
723  */
724 typedef struct
725 {
726   GSource source;
727   GstBus *bus;
728 } GstBusSource;
729
730 static gboolean
731 gst_bus_source_prepare (GSource * source, gint * timeout)
732 {
733   *timeout = -1;
734   return FALSE;
735 }
736
737 static gboolean
738 gst_bus_source_check (GSource * source)
739 {
740   GstBusSource *bsrc = (GstBusSource *) source;
741
742   return bsrc->bus->priv->pollfd.revents & (G_IO_IN | G_IO_HUP | G_IO_ERR);
743 }
744
745 static gboolean
746 gst_bus_source_dispatch (GSource * source, GSourceFunc callback,
747     gpointer user_data)
748 {
749   GstBusFunc handler = (GstBusFunc) callback;
750   GstBusSource *bsource = (GstBusSource *) source;
751   GstMessage *message;
752   gboolean keep;
753   GstBus *bus;
754
755   g_return_val_if_fail (bsource != NULL, FALSE);
756
757   bus = bsource->bus;
758
759   g_return_val_if_fail (GST_IS_BUS (bus), FALSE);
760
761   message = gst_bus_pop (bus);
762
763   /* The message queue might be empty if some other thread or callback set
764    * the bus to flushing between check/prepare and dispatch */
765   if (G_UNLIKELY (message == NULL))
766     return TRUE;
767
768   if (!handler)
769     goto no_handler;
770
771   GST_DEBUG_OBJECT (bus, "source %p calling dispatch with %" GST_PTR_FORMAT,
772       source, message);
773
774   keep = handler (bus, message, user_data);
775   gst_message_unref (message);
776
777   GST_DEBUG_OBJECT (bus, "source %p handler returns %d", source, keep);
778
779   return keep;
780
781 no_handler:
782   {
783     g_warning ("GstBus watch dispatched without callback\n"
784         "You must call g_source_set_callback().");
785     gst_message_unref (message);
786     return FALSE;
787   }
788 }
789
790 static void
791 gst_bus_source_finalize (GSource * source)
792 {
793   GstBusSource *bsource = (GstBusSource *) source;
794   GstBus *bus;
795
796   bus = bsource->bus;
797
798   GST_DEBUG_OBJECT (bus, "finalize source %p", source);
799
800   GST_OBJECT_LOCK (bus);
801   if (bus->priv->signal_watch == source)
802     bus->priv->signal_watch = NULL;
803   GST_OBJECT_UNLOCK (bus);
804
805   gst_object_unref (bsource->bus);
806   bsource->bus = NULL;
807 }
808
809 static GSourceFuncs gst_bus_source_funcs = {
810   gst_bus_source_prepare,
811   gst_bus_source_check,
812   gst_bus_source_dispatch,
813   gst_bus_source_finalize
814 };
815
816 /**
817  * gst_bus_create_watch:
818  * @bus: a #GstBus to create the watch for
819  *
820  * Create watch for this bus. The GSource will be dispatched whenever
821  * a message is on the bus. After the GSource is dispatched, the
822  * message is popped off the bus and unreffed.
823  *
824  * Returns: (transfer full): a #GSource that can be added to a mainloop.
825  */
826 GSource *
827 gst_bus_create_watch (GstBus * bus)
828 {
829   GstBusSource *source;
830
831   g_return_val_if_fail (GST_IS_BUS (bus), NULL);
832   g_return_val_if_fail (bus->priv->poll != NULL, NULL);
833
834   source = (GstBusSource *) g_source_new (&gst_bus_source_funcs,
835       sizeof (GstBusSource));
836
837   g_source_set_name ((GSource *) source, "GStreamer message bus watch");
838
839   source->bus = gst_object_ref (bus);
840   g_source_add_poll ((GSource *) source, &bus->priv->pollfd);
841
842   return (GSource *) source;
843 }
844
845 /* must be called with the bus OBJECT LOCK */
846 static guint
847 gst_bus_add_watch_full_unlocked (GstBus * bus, gint priority,
848     GstBusFunc func, gpointer user_data, GDestroyNotify notify)
849 {
850   GMainContext *ctx;
851   guint id;
852   GSource *source;
853
854   if (bus->priv->signal_watch) {
855     GST_ERROR_OBJECT (bus,
856         "Tried to add new watch while one was already there");
857     return 0;
858   }
859
860   source = gst_bus_create_watch (bus);
861
862   if (priority != G_PRIORITY_DEFAULT)
863     g_source_set_priority (source, priority);
864
865   g_source_set_callback (source, (GSourceFunc) func, user_data, notify);
866
867   ctx = g_main_context_get_thread_default ();
868   id = g_source_attach (source, ctx);
869   g_source_unref (source);
870
871   if (id) {
872     bus->priv->signal_watch = source;
873   }
874
875   GST_DEBUG_OBJECT (bus, "New source %p with id %u", source, id);
876   return id;
877 }
878
879 /**
880  * gst_bus_add_watch_full:
881  * @bus: a #GstBus to create the watch for.
882  * @priority: The priority of the watch.
883  * @func: A function to call when a message is received.
884  * @user_data: user data passed to @func.
885  * @notify: the function to call when the source is removed.
886  *
887  * Adds a bus watch to the default main context with the given @priority (e.g.
888  * %G_PRIORITY_DEFAULT). It is also possible to use a non-default  main
889  * context set up using g_main_context_push_thread_default() (before
890  * one had to create a bus watch source and attach it to the desired main
891  * context 'manually').
892  *
893  * This function is used to receive asynchronous messages in the main loop.
894  * There can only be a single bus watch per bus, you must remove it before you
895  * can set a new one.
896  *
897  * When @func is called, the message belongs to the caller; if you want to
898  * keep a copy of it, call gst_message_ref() before leaving @func.
899  *
900  * The watch can be removed using gst_bus_remove_watch() or by returning %FALSE
901  * from @func. If the watch was added to the default main context it is also
902  * possible to remove the watch using g_source_remove().
903  *
904  * MT safe.
905  *
906  * Returns: The event source id or 0 if @bus already got an event source.
907  * Rename to: gst_bus_add_watch
908  */
909 guint
910 gst_bus_add_watch_full (GstBus * bus, gint priority,
911     GstBusFunc func, gpointer user_data, GDestroyNotify notify)
912 {
913   guint id;
914
915   g_return_val_if_fail (GST_IS_BUS (bus), 0);
916
917   GST_OBJECT_LOCK (bus);
918   id = gst_bus_add_watch_full_unlocked (bus, priority, func, user_data, notify);
919   GST_OBJECT_UNLOCK (bus);
920
921   return id;
922 }
923
924 /**
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.
929  *
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').
935  *
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
938  * can set a new one.
939  *
940  * The watch can be removed using gst_bus_remove_watch() or by returning %FALSE
941  * from @func. If the watch was added to the default main context it is also
942  * possible to remove the watch using g_source_remove().
943  *
944  * Returns: The event source id or 0 if @bus already got an event source.
945  *
946  * MT safe.
947  */
948 guint
949 gst_bus_add_watch (GstBus * bus, GstBusFunc func, gpointer user_data)
950 {
951   return gst_bus_add_watch_full (bus, G_PRIORITY_DEFAULT, func,
952       user_data, NULL);
953 }
954
955 /**
956  * gst_bus_remove_watch:
957  * @bus: a #GstBus to remove the watch from.
958  *
959  * Removes an installed bus watch from @bus.
960  *
961  * Returns: %TRUE on success or %FALSE if @bus has no event source.
962  *
963  * Since: 1.6
964  *
965  */
966 gboolean
967 gst_bus_remove_watch (GstBus * bus)
968 {
969   GSource *watch_id;
970
971   g_return_val_if_fail (GST_IS_BUS (bus), FALSE);
972
973   GST_OBJECT_LOCK (bus);
974
975   if (bus->priv->signal_watch == NULL) {
976     GST_ERROR_OBJECT (bus, "no bus watch was present");
977     goto no_watch;
978   }
979
980   watch_id = bus->priv->signal_watch;
981
982   GST_OBJECT_UNLOCK (bus);
983
984   g_source_destroy (watch_id);
985
986   return TRUE;
987
988 no_watch:
989   GST_OBJECT_UNLOCK (bus);
990
991   return FALSE;
992 }
993
994 typedef struct
995 {
996   GMainLoop *loop;
997   guint timeout_id;
998   gboolean source_running;
999   GstMessageType events;
1000   GstMessage *message;
1001 } GstBusPollData;
1002
1003 static void
1004 poll_func (GstBus * bus, GstMessage * message, GstBusPollData * poll_data)
1005 {
1006   GstMessageType type;
1007
1008   if (!g_main_loop_is_running (poll_data->loop)) {
1009     GST_DEBUG ("mainloop %p not running", poll_data->loop);
1010     return;
1011   }
1012
1013   type = GST_MESSAGE_TYPE (message);
1014
1015   if (type & poll_data->events) {
1016     g_assert (poll_data->message == NULL);
1017     /* keep ref to message */
1018     poll_data->message = gst_message_ref (message);
1019     GST_DEBUG ("mainloop %p quit", poll_data->loop);
1020     g_main_loop_quit (poll_data->loop);
1021   } else {
1022     GST_DEBUG ("type %08x does not match %08x", type, poll_data->events);
1023   }
1024 }
1025
1026 static gboolean
1027 poll_timeout (GstBusPollData * poll_data)
1028 {
1029   GST_DEBUG ("mainloop %p quit", poll_data->loop);
1030   g_main_loop_quit (poll_data->loop);
1031
1032   /* we don't remove the GSource as this would free our poll_data,
1033    * which we still need */
1034   return TRUE;
1035 }
1036
1037 static void
1038 poll_destroy (GstBusPollData * poll_data, gpointer unused)
1039 {
1040   poll_data->source_running = FALSE;
1041   if (!poll_data->timeout_id) {
1042     g_main_loop_unref (poll_data->loop);
1043     g_slice_free (GstBusPollData, poll_data);
1044   }
1045 }
1046
1047 static void
1048 poll_destroy_timeout (GstBusPollData * poll_data)
1049 {
1050   poll_data->timeout_id = 0;
1051   if (!poll_data->source_running) {
1052     g_main_loop_unref (poll_data->loop);
1053     g_slice_free (GstBusPollData, poll_data);
1054   }
1055 }
1056
1057 /**
1058  * gst_bus_poll:
1059  * @bus: a #GstBus
1060  * @events: a mask of #GstMessageType, representing the set of message types to
1061  * poll for (note special handling of extended message types below)
1062  * @timeout: the poll timeout, as a #GstClockTime, or #GST_CLOCK_TIME_NONE to poll
1063  * indefinitely.
1064  *
1065  * Poll the bus for messages. Will block while waiting for messages to come.
1066  * You can specify a maximum time to poll with the @timeout parameter. If
1067  * @timeout is negative, this function will block indefinitely.
1068  *
1069  * All messages not in @events will be popped off the bus and will be ignored.
1070  * It is not possible to use message enums beyond #GST_MESSAGE_EXTENDED in the
1071  * @events mask
1072  *
1073  * Because poll is implemented using the "message" signal enabled by
1074  * gst_bus_add_signal_watch(), calling gst_bus_poll() will cause the "message"
1075  * signal to be emitted for every message that poll sees. Thus a "message"
1076  * signal handler will see the same messages that this function sees -- neither
1077  * will steal messages from the other.
1078  *
1079  * This function will run a main loop from the default main context when
1080  * polling.
1081  *
1082  * You should never use this function, since it is pure evil. This is
1083  * especially true for GUI applications based on Gtk+ or Qt, but also for any
1084  * other non-trivial application that uses the GLib main loop. As this function
1085  * runs a GLib main loop, any callback attached to the default GLib main
1086  * context may be invoked. This could be timeouts, GUI events, I/O events etc.;
1087  * even if gst_bus_poll() is called with a 0 timeout. Any of these callbacks
1088  * may do things you do not expect, e.g. destroy the main application window or
1089  * some other resource; change other application state; display a dialog and
1090  * run another main loop until the user clicks it away. In short, using this
1091  * function may add a lot of complexity to your code through unexpected
1092  * re-entrancy and unexpected changes to your application's state.
1093  *
1094  * For 0 timeouts use gst_bus_pop_filtered() instead of this function; for
1095  * other short timeouts use gst_bus_timed_pop_filtered(); everything else is
1096  * better handled by setting up an asynchronous bus watch and doing things
1097  * from there.
1098  *
1099  * Returns: (transfer full) (nullable): the message that was received,
1100  *     or %NULL if the poll timed out. The message is taken from the
1101  *     bus and needs to be unreffed with gst_message_unref() after
1102  *     usage.
1103  */
1104 GstMessage *
1105 gst_bus_poll (GstBus * bus, GstMessageType events, GstClockTime timeout)
1106 {
1107   GstBusPollData *poll_data;
1108   GstMessage *ret;
1109   gulong id;
1110
1111   poll_data = g_slice_new (GstBusPollData);
1112   poll_data->source_running = TRUE;
1113   poll_data->loop = g_main_loop_new (NULL, FALSE);
1114   poll_data->events = events;
1115   poll_data->message = NULL;
1116
1117   if (timeout != GST_CLOCK_TIME_NONE)
1118     poll_data->timeout_id = g_timeout_add_full (G_PRIORITY_DEFAULT_IDLE,
1119         timeout / GST_MSECOND, (GSourceFunc) poll_timeout, poll_data,
1120         (GDestroyNotify) poll_destroy_timeout);
1121   else
1122     poll_data->timeout_id = 0;
1123
1124   id = g_signal_connect_data (bus, "message", G_CALLBACK (poll_func), poll_data,
1125       (GClosureNotify) poll_destroy, 0);
1126
1127   /* these can be nested, so it's ok */
1128   gst_bus_add_signal_watch (bus);
1129
1130   GST_DEBUG ("running mainloop %p", poll_data->loop);
1131   g_main_loop_run (poll_data->loop);
1132   GST_DEBUG ("mainloop stopped %p", poll_data->loop);
1133
1134   gst_bus_remove_signal_watch (bus);
1135
1136   /* holds a ref */
1137   ret = poll_data->message;
1138
1139   if (poll_data->timeout_id)
1140     g_source_remove (poll_data->timeout_id);
1141
1142   /* poll_data will be freed now */
1143   g_signal_handler_disconnect (bus, id);
1144
1145   GST_DEBUG_OBJECT (bus, "finished poll with message %p", ret);
1146
1147   return ret;
1148 }
1149
1150 /**
1151  * gst_bus_async_signal_func:
1152  * @bus: a #GstBus
1153  * @message: the #GstMessage received
1154  * @data: user data
1155  *
1156  * A helper #GstBusFunc that can be used to convert all asynchronous messages
1157  * into signals.
1158  *
1159  * Returns: %TRUE
1160  */
1161 gboolean
1162 gst_bus_async_signal_func (GstBus * bus, GstMessage * message, gpointer data)
1163 {
1164   GQuark detail = 0;
1165
1166   g_return_val_if_fail (GST_IS_BUS (bus), TRUE);
1167   g_return_val_if_fail (message != NULL, TRUE);
1168
1169   detail = gst_message_type_to_quark (GST_MESSAGE_TYPE (message));
1170
1171   g_signal_emit (bus, gst_bus_signals[ASYNC_MESSAGE], detail, message);
1172
1173   /* we never remove this source based on signal emission return values */
1174   return TRUE;
1175 }
1176
1177 /**
1178  * gst_bus_sync_signal_handler:
1179  * @bus: a #GstBus
1180  * @message: the #GstMessage received
1181  * @data: user data
1182  *
1183  * A helper GstBusSyncHandler that can be used to convert all synchronous
1184  * messages into signals.
1185  *
1186  * Returns: GST_BUS_PASS
1187  */
1188 GstBusSyncReply
1189 gst_bus_sync_signal_handler (GstBus * bus, GstMessage * message, gpointer data)
1190 {
1191   GQuark detail = 0;
1192
1193   g_return_val_if_fail (GST_IS_BUS (bus), GST_BUS_DROP);
1194   g_return_val_if_fail (message != NULL, GST_BUS_DROP);
1195
1196   detail = gst_message_type_to_quark (GST_MESSAGE_TYPE (message));
1197
1198   g_signal_emit (bus, gst_bus_signals[SYNC_MESSAGE], detail, message);
1199
1200   return GST_BUS_PASS;
1201 }
1202
1203 /**
1204  * gst_bus_enable_sync_message_emission:
1205  * @bus: a #GstBus on which you want to receive the "sync-message" signal
1206  *
1207  * Instructs GStreamer to emit the "sync-message" signal after running the bus's
1208  * sync handler. This function is here so that code can ensure that they can
1209  * synchronously receive messages without having to affect what the bin's sync
1210  * handler is.
1211  *
1212  * This function may be called multiple times. To clean up, the caller is
1213  * responsible for calling gst_bus_disable_sync_message_emission() as many times
1214  * as this function is called.
1215  *
1216  * While this function looks similar to gst_bus_add_signal_watch(), it is not
1217  * exactly the same -- this function enables <emphasis>synchronous</emphasis> emission of
1218  * signals when messages arrive; gst_bus_add_signal_watch() adds an idle callback
1219  * to pop messages off the bus <emphasis>asynchronously</emphasis>. The sync-message signal
1220  * comes from the thread of whatever object posted the message; the "message"
1221  * signal is marshalled to the main thread via the main loop.
1222  *
1223  * MT safe.
1224  */
1225 void
1226 gst_bus_enable_sync_message_emission (GstBus * bus)
1227 {
1228   g_return_if_fail (GST_IS_BUS (bus));
1229
1230   GST_OBJECT_LOCK (bus);
1231   bus->priv->num_sync_message_emitters++;
1232   GST_OBJECT_UNLOCK (bus);
1233 }
1234
1235 /**
1236  * gst_bus_disable_sync_message_emission:
1237  * @bus: a #GstBus on which you previously called
1238  * gst_bus_enable_sync_message_emission()
1239  *
1240  * Instructs GStreamer to stop emitting the "sync-message" signal for this bus.
1241  * See gst_bus_enable_sync_message_emission() for more information.
1242  *
1243  * In the event that multiple pieces of code have called
1244  * gst_bus_enable_sync_message_emission(), the sync-message emissions will only
1245  * be stopped after all calls to gst_bus_enable_sync_message_emission() were
1246  * "cancelled" by calling this function. In this way the semantics are exactly
1247  * the same as gst_object_ref() that which calls enable should also call
1248  * disable.
1249  *
1250  * MT safe.
1251  */
1252 void
1253 gst_bus_disable_sync_message_emission (GstBus * bus)
1254 {
1255   g_return_if_fail (GST_IS_BUS (bus));
1256   g_return_if_fail (bus->priv->num_sync_message_emitters > 0);
1257
1258   GST_OBJECT_LOCK (bus);
1259   bus->priv->num_sync_message_emitters--;
1260   GST_OBJECT_UNLOCK (bus);
1261 }
1262
1263 /**
1264  * gst_bus_add_signal_watch_full:
1265  * @bus: a #GstBus on which you want to receive the "message" signal
1266  * @priority: The priority of the watch.
1267  *
1268  * Adds a bus signal watch to the default main context with the given @priority
1269  * (e.g. %G_PRIORITY_DEFAULT). It is also possible to use a non-default main
1270  * context set up using g_main_context_push_thread_default()
1271  * (before one had to create a bus watch source and attach it to the desired
1272  * main context 'manually').
1273  *
1274  * After calling this statement, the bus will emit the "message" signal for each
1275  * message posted on the bus when the main loop is running.
1276  *
1277  * This function may be called multiple times. To clean up, the caller is
1278  * responsible for calling gst_bus_remove_signal_watch() as many times as this
1279  * function is called.
1280  *
1281  * There can only be a single bus watch per bus, you must remove any signal
1282  * watch before you can set another type of watch.
1283  *
1284  * MT safe.
1285  */
1286 void
1287 gst_bus_add_signal_watch_full (GstBus * bus, gint priority)
1288 {
1289   g_return_if_fail (GST_IS_BUS (bus));
1290
1291   /* I know the callees don't take this lock, so go ahead and abuse it */
1292   GST_OBJECT_LOCK (bus);
1293
1294   if (bus->priv->num_signal_watchers > 0)
1295     goto done;
1296
1297   /* this should not fail because the counter above takes care of it */
1298   g_assert (!bus->priv->signal_watch);
1299
1300   gst_bus_add_watch_full_unlocked (bus, priority, gst_bus_async_signal_func,
1301       NULL, NULL);
1302
1303   if (G_UNLIKELY (!bus->priv->signal_watch))
1304     goto add_failed;
1305
1306 done:
1307
1308   bus->priv->num_signal_watchers++;
1309
1310   GST_OBJECT_UNLOCK (bus);
1311   return;
1312
1313   /* ERRORS */
1314 add_failed:
1315   {
1316     g_critical ("Could not add signal watch to bus %s", GST_OBJECT_NAME (bus));
1317     GST_OBJECT_UNLOCK (bus);
1318     return;
1319   }
1320 }
1321
1322 /**
1323  * gst_bus_add_signal_watch:
1324  * @bus: a #GstBus on which you want to receive the "message" signal
1325  *
1326  * Adds a bus signal watch to the default main context with the default priority
1327  * (%G_PRIORITY_DEFAULT). It is also possible to use a non-default
1328  * main context set up using g_main_context_push_thread_default() (before
1329  * one had to create a bus watch source and attach it to the desired main
1330  * context 'manually').
1331  *
1332  * After calling this statement, the bus will emit the "message" signal for each
1333  * message posted on the bus.
1334  *
1335  * This function may be called multiple times. To clean up, the caller is
1336  * responsible for calling gst_bus_remove_signal_watch() as many times as this
1337  * function is called.
1338  *
1339  * MT safe.
1340  */
1341 void
1342 gst_bus_add_signal_watch (GstBus * bus)
1343 {
1344   gst_bus_add_signal_watch_full (bus, G_PRIORITY_DEFAULT);
1345 }
1346
1347 /**
1348  * gst_bus_remove_signal_watch:
1349  * @bus: a #GstBus you previously added a signal watch to
1350  *
1351  * Removes a signal watch previously added with gst_bus_add_signal_watch().
1352  *
1353  * MT safe.
1354  */
1355 void
1356 gst_bus_remove_signal_watch (GstBus * bus)
1357 {
1358   GSource *source = NULL;
1359
1360   g_return_if_fail (GST_IS_BUS (bus));
1361
1362   /* I know the callees don't take this lock, so go ahead and abuse it */
1363   GST_OBJECT_LOCK (bus);
1364
1365   if (bus->priv->num_signal_watchers == 0)
1366     goto error;
1367
1368   bus->priv->num_signal_watchers--;
1369
1370   if (bus->priv->num_signal_watchers > 0)
1371     goto done;
1372
1373   GST_DEBUG_OBJECT (bus, "removing signal watch %u",
1374       g_source_get_id (bus->priv->signal_watch));
1375
1376   source = bus->priv->signal_watch;
1377
1378 done:
1379   GST_OBJECT_UNLOCK (bus);
1380
1381   if (source)
1382     g_source_destroy (source);
1383
1384   return;
1385
1386   /* ERRORS */
1387 error:
1388   {
1389     g_critical ("Bus %s has no signal watches attached", GST_OBJECT_NAME (bus));
1390     GST_OBJECT_UNLOCK (bus);
1391     return;
1392   }
1393 }