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