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