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