use GST_MESSAGE_DURATION_CHANGED in docs and code
[platform/upstream/gstreamer.git] / gst / gstbin.c
1 /* GStreamer
2  *
3  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
4  *                    2004 Wim Taymans <wim.taymans@gmail.com>
5  *
6  * gstbin.c: GstBin container object and support code
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public
19  * License along with this library; if not, write to the
20  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
21  * Boston, MA 02110-1301, USA.
22  *
23  * MT safe.
24  */
25
26 /**
27  * SECTION:gstbin
28  * @short_description: Base class and element that can contain other elements
29  *
30  * #GstBin is an element that can contain other #GstElement, allowing them to be
31  * managed as a group.
32  * Pads from the child elements can be ghosted to the bin, see #GstGhostPad.
33  * This makes the bin look like any other elements and enables creation of
34  * higher-level abstraction elements.
35  *
36  * A new #GstBin is created with gst_bin_new(). Use a #GstPipeline instead if you
37  * want to create a toplevel bin because a normal bin doesn't have a bus or
38  * handle clock distribution of its own.
39  *
40  * After the bin has been created you will typically add elements to it with
41  * gst_bin_add(). You can remove elements with gst_bin_remove().
42  *
43  * An element can be retrieved from a bin with gst_bin_get_by_name(), using the
44  * elements name. gst_bin_get_by_name_recurse_up() is mainly used for internal
45  * purposes and will query the parent bins when the element is not found in the
46  * current bin.
47  *
48  * An iterator of elements in a bin can be retrieved with
49  * gst_bin_iterate_elements(). Various other iterators exist to retrieve the
50  * elements in a bin.
51  *
52  * gst_object_unref() is used to drop your reference to the bin.
53  *
54  * The #GstBin::element-added signal is fired whenever a new element is added to
55  * the bin. Likewise the #GstBin::element-removed signal is fired whenever an
56  * element is removed from the bin.
57  *
58  * <refsect2><title>Notes</title>
59  * <para>
60  * A #GstBin internally intercepts every #GstMessage posted by its children and
61  * implements the following default behaviour for each of them:
62  * <variablelist>
63  *   <varlistentry>
64  *     <term>GST_MESSAGE_EOS</term>
65  *     <listitem><para>This message is only posted by sinks in the PLAYING
66  *     state. If all sinks posted the EOS message, this bin will post and EOS
67  *     message upwards.</para></listitem>
68  *   </varlistentry>
69  *   <varlistentry>
70  *     <term>GST_MESSAGE_SEGMENT_START</term>
71  *     <listitem><para>just collected and never forwarded upwards.
72  *     The messages are used to decide when all elements have completed playback
73  *     of their segment.</para></listitem>
74  *   </varlistentry>
75  *   <varlistentry>
76  *     <term>GST_MESSAGE_SEGMENT_DONE</term>
77  *     <listitem><para> Is posted by #GstBin when all elements that posted
78  *     a SEGMENT_START have posted a SEGMENT_DONE.</para></listitem>
79  *   </varlistentry>
80  *   <varlistentry>
81  *     <term>GST_MESSAGE_DURATION_CHANGED</term>
82  *     <listitem><para> Is posted by an element that detected a change
83  *     in the stream duration. The default bin behaviour is to clear any
84  *     cached duration values so that the next duration query will perform
85  *     a full duration recalculation. The duration change is posted to the
86  *     application so that it can refetch the new duration with a duration
87  *     query. Note that these messages can be posted before the bin is
88  *     prerolled, in which case the duration query might fail.
89  *     </para></listitem>
90  *   </varlistentry>
91  *   <varlistentry>
92  *     <term>GST_MESSAGE_CLOCK_LOST</term>
93  *     <listitem><para> This message is posted by an element when it
94  *     can no longer provide a clock. The default bin behaviour is to
95  *     check if the lost clock was the one provided by the bin. If so and
96  *     the bin is currently in the PLAYING state, the message is forwarded to
97  *     the bin parent.
98  *     This message is also generated when a clock provider is removed from
99  *     the bin. If this message is received by the application, it should
100  *     PAUSE the pipeline and set it back to PLAYING to force a new clock
101  *     distribution.
102  *     </para></listitem>
103  *   </varlistentry>
104  *   <varlistentry>
105  *     <term>GST_MESSAGE_CLOCK_PROVIDE</term>
106  *     <listitem><para> This message is generated when an element
107  *     can provide a clock. This mostly happens when a new clock
108  *     provider is added to the bin. The default behaviour of the bin is to
109  *     mark the currently selected clock as dirty, which will perform a clock
110  *     recalculation the next time the bin is asked to provide a clock.
111  *     This message is never sent tot the application but is forwarded to
112  *     the parent of the bin.
113  *     </para></listitem>
114  *   </varlistentry>
115  *   <varlistentry>
116  *     <term>OTHERS</term>
117  *     <listitem><para> posted upwards.</para></listitem>
118  *   </varlistentry>
119  * </variablelist>
120  *
121  *
122  * A #GstBin implements the following default behaviour for answering to a
123  * #GstQuery:
124  * <variablelist>
125  *   <varlistentry>
126  *     <term>GST_QUERY_DURATION</term>
127  *     <listitem><para>If the query has been asked before with the same format
128  *     and the bin is a toplevel bin (ie. has no parent),
129  *     use the cached previous value. If no previous value was cached, the
130  *     query is sent to all sink elements in the bin and the MAXIMUM of all
131  *     values is returned. If the bin is a toplevel bin the value is cached.
132  *     If no sinks are available in the bin, the query fails.
133  *     </para></listitem>
134  *   </varlistentry>
135  *   <varlistentry>
136  *     <term>GST_QUERY_POSITION</term>
137  *     <listitem><para>The query is sent to all sink elements in the bin and the
138  *     MAXIMUM of all values is returned. If no sinks are available in the bin,
139  *     the query fails.
140  *     </para></listitem>
141  *   </varlistentry>
142  *   <varlistentry>
143  *     <term>OTHERS</term>
144  *     <listitem><para>the query is forwarded to all sink elements, the result
145  *     of the first sink that answers the query successfully is returned. If no
146  *     sink is in the bin, the query fails.</para></listitem>
147  *   </varlistentry>
148  * </variablelist>
149  *
150  * A #GstBin will by default forward any event sent to it to all sink elements.
151  * If all the sinks return TRUE, the bin will also return TRUE, else FALSE is
152  * returned. If no sinks are in the bin, the event handler will return TRUE.
153  *
154  * </para>
155  * </refsect2>
156  *
157  * Last reviewed on 2012-03-28 (0.11.3)
158  */
159
160 #include "gst_private.h"
161
162 #include "gstevent.h"
163 #include "gstbin.h"
164 #include "gstinfo.h"
165 #include "gsterror.h"
166
167 #include "gstutils.h"
168 #include "gstchildproxy.h"
169
170 GST_DEBUG_CATEGORY_STATIC (bin_debug);
171 #define GST_CAT_DEFAULT bin_debug
172
173 /* a bin is toplevel if it has no parent or when it is configured to behave like
174  * a toplevel bin */
175 #define BIN_IS_TOPLEVEL(bin) ((GST_OBJECT_PARENT (bin) == NULL) || bin->priv->asynchandling)
176
177 #define GST_BIN_GET_PRIVATE(obj)  \
178    (G_TYPE_INSTANCE_GET_PRIVATE ((obj), GST_TYPE_BIN, GstBinPrivate))
179
180 struct _GstBinPrivate
181 {
182   gboolean asynchandling;
183   /* if we get an ASYNC_DONE message from ourselves, this means that the
184    * subclass will simulate ASYNC behaviour without having ASYNC children. When
185    * such an ASYNC_DONE message is posted while we are doing a state change, we
186    * have to process the message after finishing the state change even when no
187    * child returned GST_STATE_CHANGE_ASYNC. */
188   gboolean pending_async_done;
189
190   guint32 structure_cookie;
191
192 #if 0
193   /* cached index */
194   GstIndex *index;
195 #endif
196
197   /* forward messages from our children */
198   gboolean message_forward;
199
200   gboolean posted_eos;
201 };
202
203 typedef struct
204 {
205   GstBin *bin;
206   guint32 cookie;
207   GstState pending;
208 } BinContinueData;
209
210 static void gst_bin_dispose (GObject * object);
211
212 static void gst_bin_set_property (GObject * object, guint prop_id,
213     const GValue * value, GParamSpec * pspec);
214 static void gst_bin_get_property (GObject * object, guint prop_id,
215     GValue * value, GParamSpec * pspec);
216
217 static GstStateChangeReturn gst_bin_change_state_func (GstElement * element,
218     GstStateChange transition);
219 static void gst_bin_state_changed (GstElement * element, GstState oldstate,
220     GstState newstate, GstState pending);
221 static GstStateChangeReturn gst_bin_get_state_func (GstElement * element,
222     GstState * state, GstState * pending, GstClockTime timeout);
223 static void bin_handle_async_done (GstBin * bin, GstStateChangeReturn ret,
224     gboolean flag_pending, GstClockTime running_time);
225 static void bin_handle_async_start (GstBin * bin);
226 static void bin_push_state_continue (BinContinueData * data);
227 static void bin_do_eos (GstBin * bin);
228
229 static gboolean gst_bin_add_func (GstBin * bin, GstElement * element);
230 static gboolean gst_bin_remove_func (GstBin * bin, GstElement * element);
231
232 #if 0
233 static void gst_bin_set_index_func (GstElement * element, GstIndex * index);
234 static GstIndex *gst_bin_get_index_func (GstElement * element);
235 #endif
236
237 static GstClock *gst_bin_provide_clock_func (GstElement * element);
238 static gboolean gst_bin_set_clock_func (GstElement * element, GstClock * clock);
239
240 static void gst_bin_handle_message_func (GstBin * bin, GstMessage * message);
241 static gboolean gst_bin_send_event (GstElement * element, GstEvent * event);
242 static GstBusSyncReply bin_bus_handler (GstBus * bus,
243     GstMessage * message, GstBin * bin);
244 static gboolean gst_bin_query (GstElement * element, GstQuery * query);
245
246 static gboolean gst_bin_do_latency_func (GstBin * bin);
247
248 static void bin_remove_messages (GstBin * bin, GstObject * src,
249     GstMessageType types);
250 static void gst_bin_continue_func (BinContinueData * data);
251 static gint bin_element_is_sink (GstElement * child, GstBin * bin);
252 static gint bin_element_is_src (GstElement * child, GstBin * bin);
253
254 static GstIterator *gst_bin_sort_iterator_new (GstBin * bin);
255
256 /* Bin signals and properties */
257 enum
258 {
259   ELEMENT_ADDED,
260   ELEMENT_REMOVED,
261   DO_LATENCY,
262   LAST_SIGNAL
263 };
264
265 #define DEFAULT_ASYNC_HANDLING  FALSE
266 #define DEFAULT_MESSAGE_FORWARD FALSE
267
268 enum
269 {
270   PROP_0,
271   PROP_ASYNC_HANDLING,
272   PROP_MESSAGE_FORWARD,
273   PROP_LAST
274 };
275
276 static void gst_bin_child_proxy_init (gpointer g_iface, gpointer iface_data);
277
278 static guint gst_bin_signals[LAST_SIGNAL] = { 0 };
279
280 #define _do_init \
281 { \
282   static const GInterfaceInfo iface_info = { \
283     gst_bin_child_proxy_init, \
284     NULL, \
285     NULL}; \
286   \
287   g_type_add_interface_static (g_define_type_id, GST_TYPE_CHILD_PROXY, &iface_info); \
288   \
289   GST_DEBUG_CATEGORY_INIT (bin_debug, "bin", GST_DEBUG_BOLD, \
290       "debugging info for the 'bin' container element"); \
291   \
292 }
293
294 #define gst_bin_parent_class parent_class
295 G_DEFINE_TYPE_WITH_CODE (GstBin, gst_bin, GST_TYPE_ELEMENT, _do_init);
296
297 static GObject *
298 gst_bin_child_proxy_get_child_by_index (GstChildProxy * child_proxy,
299     guint index)
300 {
301   GstObject *res;
302   GstBin *bin;
303
304   bin = GST_BIN_CAST (child_proxy);
305
306   GST_OBJECT_LOCK (bin);
307   if ((res = g_list_nth_data (bin->children, index)))
308     gst_object_ref (res);
309   GST_OBJECT_UNLOCK (bin);
310
311   return (GObject *) res;
312 }
313
314 static guint
315 gst_bin_child_proxy_get_children_count (GstChildProxy * child_proxy)
316 {
317   guint num;
318   GstBin *bin;
319
320   bin = GST_BIN_CAST (child_proxy);
321
322   GST_OBJECT_LOCK (bin);
323   num = bin->numchildren;
324   GST_OBJECT_UNLOCK (bin);
325
326   return num;
327 }
328
329 static void
330 gst_bin_child_proxy_init (gpointer g_iface, gpointer iface_data)
331 {
332   GstChildProxyInterface *iface = g_iface;
333
334   iface->get_children_count = gst_bin_child_proxy_get_children_count;
335   iface->get_child_by_index = gst_bin_child_proxy_get_child_by_index;
336 }
337
338 static gboolean
339 _gst_boolean_accumulator (GSignalInvocationHint * ihint,
340     GValue * return_accu, const GValue * handler_return, gpointer dummy)
341 {
342   gboolean myboolean;
343
344   myboolean = g_value_get_boolean (handler_return);
345   if (!(ihint->run_type & G_SIGNAL_RUN_CLEANUP))
346     g_value_set_boolean (return_accu, myboolean);
347
348   GST_DEBUG ("invocation %d, %d", ihint->run_type, myboolean);
349
350   /* stop emission */
351   return FALSE;
352 }
353
354 static void
355 gst_bin_class_init (GstBinClass * klass)
356 {
357   GObjectClass *gobject_class;
358   GstElementClass *gstelement_class;
359   GError *err;
360
361   gobject_class = (GObjectClass *) klass;
362   gstelement_class = (GstElementClass *) klass;
363
364   g_type_class_add_private (klass, sizeof (GstBinPrivate));
365
366   gobject_class->set_property = gst_bin_set_property;
367   gobject_class->get_property = gst_bin_get_property;
368
369   /**
370    * GstBin:async-handling:
371    *
372    * If set to #TRUE, the bin will handle asynchronous state changes.
373    * This should be used only if the bin subclass is modifying the state
374    * of its children on its own.
375    */
376   g_object_class_install_property (gobject_class, PROP_ASYNC_HANDLING,
377       g_param_spec_boolean ("async-handling", "Async Handling",
378           "The bin will handle Asynchronous state changes",
379           DEFAULT_ASYNC_HANDLING, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
380
381   /**
382    * GstBin::element-added:
383    * @bin: the #GstBin
384    * @element: the #GstElement that was added to the bin
385    *
386    * Will be emitted after the element was added to the bin.
387    */
388   gst_bin_signals[ELEMENT_ADDED] =
389       g_signal_new ("element-added", G_TYPE_FROM_CLASS (klass),
390       G_SIGNAL_RUN_FIRST, G_STRUCT_OFFSET (GstBinClass, element_added), NULL,
391       NULL, g_cclosure_marshal_generic, G_TYPE_NONE, 1, GST_TYPE_ELEMENT);
392   /**
393    * GstBin::element-removed:
394    * @bin: the #GstBin
395    * @element: the #GstElement that was removed from the bin
396    *
397    * Will be emitted after the element was removed from the bin.
398    */
399   gst_bin_signals[ELEMENT_REMOVED] =
400       g_signal_new ("element-removed", G_TYPE_FROM_CLASS (klass),
401       G_SIGNAL_RUN_FIRST, G_STRUCT_OFFSET (GstBinClass, element_removed), NULL,
402       NULL, g_cclosure_marshal_generic, G_TYPE_NONE, 1, GST_TYPE_ELEMENT);
403   /**
404    * GstBin::do-latency:
405    * @bin: the #GstBin
406    *
407    * Will be emitted when the bin needs to perform latency calculations. This
408    * signal is only emited for toplevel bins or when async-handling is
409    * enabled.
410    *
411    * Only one signal handler is invoked. If no signals are connected, the
412    * default handler is invoked, which will query and distribute the lowest
413    * possible latency to all sinks.
414    *
415    * Connect to this signal if the default latency calculations are not
416    * sufficient, like when you need different latencies for different sinks in
417    * the same pipeline.
418    */
419   gst_bin_signals[DO_LATENCY] =
420       g_signal_new ("do-latency", G_TYPE_FROM_CLASS (klass),
421       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstBinClass, do_latency),
422       _gst_boolean_accumulator, NULL, g_cclosure_marshal_generic,
423       G_TYPE_BOOLEAN, 0, G_TYPE_NONE);
424
425   /**
426    * GstBin:message-forward:
427    *
428    * Forward all children messages, even those that would normally be filtered by
429    * the bin. This can be interesting when one wants to be notified of the EOS
430    * state of individual elements, for example.
431    *
432    * The messages are converted to an ELEMENT message with the bin as the
433    * source. The structure of the message is named 'GstBinForwarded' and contains
434    * a field named 'message' of type GST_TYPE_MESSAGE that contains the original
435    * forwarded message.
436    */
437   g_object_class_install_property (gobject_class, PROP_MESSAGE_FORWARD,
438       g_param_spec_boolean ("message-forward", "Message Forward",
439           "Forwards all children messages",
440           DEFAULT_MESSAGE_FORWARD, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
441
442   gobject_class->dispose = gst_bin_dispose;
443
444   gst_element_class_set_static_metadata (gstelement_class, "Generic bin",
445       "Generic/Bin",
446       "Simple container object",
447       "Erik Walthinsen <omega@cse.ogi.edu>,"
448       "Wim Taymans <wim.taymans@gmail.com>");
449
450   gstelement_class->change_state =
451       GST_DEBUG_FUNCPTR (gst_bin_change_state_func);
452   gstelement_class->state_changed = GST_DEBUG_FUNCPTR (gst_bin_state_changed);
453   gstelement_class->get_state = GST_DEBUG_FUNCPTR (gst_bin_get_state_func);
454 #if 0
455   gstelement_class->get_index = GST_DEBUG_FUNCPTR (gst_bin_get_index_func);
456   gstelement_class->set_index = GST_DEBUG_FUNCPTR (gst_bin_set_index_func);
457 #endif
458   gstelement_class->provide_clock =
459       GST_DEBUG_FUNCPTR (gst_bin_provide_clock_func);
460   gstelement_class->set_clock = GST_DEBUG_FUNCPTR (gst_bin_set_clock_func);
461
462   gstelement_class->send_event = GST_DEBUG_FUNCPTR (gst_bin_send_event);
463   gstelement_class->query = GST_DEBUG_FUNCPTR (gst_bin_query);
464
465   klass->add_element = GST_DEBUG_FUNCPTR (gst_bin_add_func);
466   klass->remove_element = GST_DEBUG_FUNCPTR (gst_bin_remove_func);
467   klass->handle_message = GST_DEBUG_FUNCPTR (gst_bin_handle_message_func);
468
469   klass->do_latency = GST_DEBUG_FUNCPTR (gst_bin_do_latency_func);
470
471   GST_DEBUG ("creating bin thread pool");
472   err = NULL;
473   klass->pool =
474       g_thread_pool_new ((GFunc) gst_bin_continue_func, NULL, -1, FALSE, &err);
475   if (err != NULL) {
476     g_critical ("could alloc threadpool %s", err->message);
477   }
478 }
479
480 static void
481 gst_bin_init (GstBin * bin)
482 {
483   GstBus *bus;
484
485   bin->numchildren = 0;
486   bin->children = NULL;
487   bin->children_cookie = 0;
488   bin->messages = NULL;
489   bin->provided_clock = NULL;
490   bin->clock_dirty = FALSE;
491
492   /* Set up a bus for listening to child elements */
493   bus = g_object_new (GST_TYPE_BUS, "enable-async", FALSE, NULL);
494   bin->child_bus = bus;
495   GST_DEBUG_OBJECT (bin, "using bus %" GST_PTR_FORMAT " to listen to children",
496       bus);
497   gst_bus_set_sync_handler (bus, (GstBusSyncHandler) bin_bus_handler, bin,
498       NULL);
499
500   bin->priv = GST_BIN_GET_PRIVATE (bin);
501   bin->priv->asynchandling = DEFAULT_ASYNC_HANDLING;
502   bin->priv->structure_cookie = 0;
503   bin->priv->message_forward = DEFAULT_MESSAGE_FORWARD;
504 }
505
506 static void
507 gst_bin_dispose (GObject * object)
508 {
509   GstBin *bin = GST_BIN_CAST (object);
510   GstBus **child_bus_p = &bin->child_bus;
511   GstClock **provided_clock_p = &bin->provided_clock;
512   GstElement **clock_provider_p = &bin->clock_provider;
513
514   GST_CAT_DEBUG_OBJECT (GST_CAT_REFCOUNTING, object, "dispose");
515
516   GST_OBJECT_LOCK (object);
517   gst_object_replace ((GstObject **) child_bus_p, NULL);
518   gst_object_replace ((GstObject **) provided_clock_p, NULL);
519   gst_object_replace ((GstObject **) clock_provider_p, NULL);
520   bin_remove_messages (bin, NULL, GST_MESSAGE_ANY);
521   GST_OBJECT_UNLOCK (object);
522
523   while (bin->children) {
524     gst_bin_remove (bin, GST_ELEMENT_CAST (bin->children->data));
525   }
526   if (G_UNLIKELY (bin->children != NULL)) {
527     g_critical ("could not remove elements from bin '%s'",
528         GST_STR_NULL (GST_OBJECT_NAME (object)));
529   }
530
531   G_OBJECT_CLASS (parent_class)->dispose (object);
532 }
533
534 /**
535  * gst_bin_new:
536  * @name: the name of the new bin
537  *
538  * Creates a new bin with the given name.
539  *
540  * Returns: (transfer floating): a new #GstBin
541  */
542 GstElement *
543 gst_bin_new (const gchar * name)
544 {
545   return gst_element_factory_make ("bin", name);
546 }
547
548 static void
549 gst_bin_set_property (GObject * object, guint prop_id,
550     const GValue * value, GParamSpec * pspec)
551 {
552   GstBin *gstbin;
553
554   gstbin = GST_BIN_CAST (object);
555
556   switch (prop_id) {
557     case PROP_ASYNC_HANDLING:
558       GST_OBJECT_LOCK (gstbin);
559       gstbin->priv->asynchandling = g_value_get_boolean (value);
560       GST_OBJECT_UNLOCK (gstbin);
561       break;
562     case PROP_MESSAGE_FORWARD:
563       GST_OBJECT_LOCK (gstbin);
564       gstbin->priv->message_forward = g_value_get_boolean (value);
565       GST_OBJECT_UNLOCK (gstbin);
566       break;
567     default:
568       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
569       break;
570   }
571 }
572
573 static void
574 gst_bin_get_property (GObject * object, guint prop_id,
575     GValue * value, GParamSpec * pspec)
576 {
577   GstBin *gstbin;
578
579   gstbin = GST_BIN_CAST (object);
580
581   switch (prop_id) {
582     case PROP_ASYNC_HANDLING:
583       GST_OBJECT_LOCK (gstbin);
584       g_value_set_boolean (value, gstbin->priv->asynchandling);
585       GST_OBJECT_UNLOCK (gstbin);
586       break;
587     case PROP_MESSAGE_FORWARD:
588       GST_OBJECT_LOCK (gstbin);
589       g_value_set_boolean (value, gstbin->priv->message_forward);
590       GST_OBJECT_UNLOCK (gstbin);
591       break;
592     default:
593       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
594       break;
595   }
596 }
597
598 #if 0
599 /* return the cached index */
600 static GstIndex *
601 gst_bin_get_index_func (GstElement * element)
602 {
603   GstBin *bin;
604   GstIndex *result;
605
606   bin = GST_BIN_CAST (element);
607
608   GST_OBJECT_LOCK (bin);
609   if ((result = bin->priv->index))
610     gst_object_ref (result);
611   GST_OBJECT_UNLOCK (bin);
612
613   return result;
614 }
615
616 /* set the index on all elements in this bin
617  *
618  * MT safe
619  */
620 static void
621 gst_bin_set_index_func (GstElement * element, GstIndex * index)
622 {
623   GstBin *bin;
624   gboolean done;
625   GstIterator *it;
626   GstIndex *old;
627   GValue data = { 0, };
628
629   bin = GST_BIN_CAST (element);
630
631   GST_OBJECT_LOCK (bin);
632   old = bin->priv->index;
633   if (G_UNLIKELY (old == index))
634     goto was_set;
635   if (index)
636     gst_object_ref (index);
637   bin->priv->index = index;
638   GST_OBJECT_UNLOCK (bin);
639
640   if (old)
641     gst_object_unref (old);
642
643   it = gst_bin_iterate_elements (bin);
644
645   /* set the index on all elements in the bin */
646   done = FALSE;
647   while (!done) {
648     switch (gst_iterator_next (it, &data)) {
649       case GST_ITERATOR_OK:
650       {
651         GstElement *child = g_value_get_object (&data);
652
653         GST_DEBUG_OBJECT (bin, "setting index on '%s'",
654             GST_ELEMENT_NAME (child));
655         gst_element_set_index (child, index);
656
657         g_value_reset (&data);
658         break;
659       }
660       case GST_ITERATOR_RESYNC:
661         GST_DEBUG_OBJECT (bin, "iterator doing resync");
662         gst_iterator_resync (it);
663         break;
664       default:
665       case GST_ITERATOR_DONE:
666         GST_DEBUG_OBJECT (bin, "iterator done");
667         done = TRUE;
668         break;
669     }
670   }
671   g_value_unset (&data);
672   gst_iterator_free (it);
673   return;
674
675 was_set:
676   {
677     GST_DEBUG_OBJECT (bin, "index was already set");
678     GST_OBJECT_UNLOCK (bin);
679     return;
680   }
681 }
682 #endif
683
684 /* set the clock on all elements in this bin
685  *
686  * MT safe
687  */
688 static gboolean
689 gst_bin_set_clock_func (GstElement * element, GstClock * clock)
690 {
691   GstBin *bin;
692   gboolean done;
693   GstIterator *it;
694   gboolean res = TRUE;
695   GValue data = { 0, };
696
697   bin = GST_BIN_CAST (element);
698
699   it = gst_bin_iterate_elements (bin);
700
701   done = FALSE;
702   while (!done) {
703     switch (gst_iterator_next (it, &data)) {
704       case GST_ITERATOR_OK:
705       {
706         GstElement *child = g_value_get_object (&data);
707
708         res &= gst_element_set_clock (child, clock);
709
710         g_value_reset (&data);
711         break;
712       }
713       case GST_ITERATOR_RESYNC:
714         GST_DEBUG_OBJECT (bin, "iterator doing resync");
715         gst_iterator_resync (it);
716         res = TRUE;
717         break;
718       default:
719       case GST_ITERATOR_DONE:
720         GST_DEBUG_OBJECT (bin, "iterator done");
721         done = TRUE;
722         break;
723     }
724   }
725   g_value_unset (&data);
726   gst_iterator_free (it);
727
728   if (res)
729     res = GST_ELEMENT_CLASS (parent_class)->set_clock (element, clock);
730
731   return res;
732 }
733
734 /* get the clock for this bin by asking all of the children in this bin
735  *
736  * The ref of the returned clock in increased so unref after usage.
737  *
738  * We loop the elements in state order and pick the last clock we can
739  * get. This makes sure we get a clock from the source.
740  *
741  * MT safe
742  */
743 static GstClock *
744 gst_bin_provide_clock_func (GstElement * element)
745 {
746   GstClock *result = NULL;
747   GstElement *provider = NULL;
748   GstBin *bin;
749   GstIterator *it;
750   gboolean done;
751   GValue val = { 0, };
752   GstClock **provided_clock_p;
753   GstElement **clock_provider_p;
754
755   bin = GST_BIN_CAST (element);
756
757   GST_OBJECT_LOCK (bin);
758   if (!bin->clock_dirty)
759     goto not_dirty;
760
761   GST_DEBUG_OBJECT (bin, "finding new clock");
762
763   it = gst_bin_sort_iterator_new (bin);
764   GST_OBJECT_UNLOCK (bin);
765
766   done = FALSE;
767   while (!done) {
768     switch (gst_iterator_next (it, &val)) {
769       case GST_ITERATOR_OK:
770       {
771         GstElement *child = g_value_get_object (&val);
772         GstClock *clock;
773
774         clock = gst_element_provide_clock (child);
775         if (clock) {
776           GST_DEBUG_OBJECT (bin, "found candidate clock %p by element %s",
777               clock, GST_ELEMENT_NAME (child));
778           if (result) {
779             gst_object_unref (result);
780             gst_object_unref (provider);
781           }
782           result = clock;
783           provider = gst_object_ref (child);
784         }
785
786         g_value_reset (&val);
787         break;
788       }
789       case GST_ITERATOR_RESYNC:
790         gst_iterator_resync (it);
791         break;
792       default:
793       case GST_ITERATOR_DONE:
794         done = TRUE;
795         break;
796     }
797   }
798   g_value_unset (&val);
799   gst_iterator_free (it);
800
801   GST_OBJECT_LOCK (bin);
802   if (!bin->clock_dirty) {
803     if (provider)
804       gst_object_unref (provider);
805     if (result)
806       gst_object_unref (result);
807     result = NULL;
808
809     goto not_dirty;
810   }
811
812   provided_clock_p = &bin->provided_clock;
813   clock_provider_p = &bin->clock_provider;
814   gst_object_replace ((GstObject **) provided_clock_p, (GstObject *) result);
815   gst_object_replace ((GstObject **) clock_provider_p, (GstObject *) provider);
816   bin->clock_dirty = FALSE;
817   GST_DEBUG_OBJECT (bin,
818       "provided new clock %" GST_PTR_FORMAT " by provider %" GST_PTR_FORMAT,
819       result, provider);
820   /* Provider is not being returned to caller, just the result */
821   if (provider)
822     gst_object_unref (provider);
823   GST_OBJECT_UNLOCK (bin);
824
825   return result;
826
827 not_dirty:
828   {
829     if ((result = bin->provided_clock))
830       gst_object_ref (result);
831     GST_DEBUG_OBJECT (bin, "returning old clock %p", result);
832     GST_OBJECT_UNLOCK (bin);
833
834     return result;
835   }
836 }
837
838 /*
839  * functions for manipulating cached messages
840  */
841 typedef struct
842 {
843   GstObject *src;
844   GstMessageType types;
845 } MessageFind;
846
847 /* check if a message is of given src and type */
848 static gint
849 message_check (GstMessage * message, MessageFind * target)
850 {
851   gboolean eq = TRUE;
852
853   if (target->src)
854     eq &= GST_MESSAGE_SRC (message) == target->src;
855   if (target->types)
856     eq &= (GST_MESSAGE_TYPE (message) & target->types) != 0;
857   GST_LOG ("looking at message %p: %d", message, eq);
858
859   return (eq ? 0 : 1);
860 }
861
862 static GList *
863 find_message (GstBin * bin, GstObject * src, GstMessageType types)
864 {
865   GList *result;
866   MessageFind find;
867
868   find.src = src;
869   find.types = types;
870
871   result = g_list_find_custom (bin->messages, &find,
872       (GCompareFunc) message_check);
873
874   if (result) {
875     GST_DEBUG_OBJECT (bin, "we found a message %p from %s matching types %08x",
876         result->data, GST_OBJECT_NAME (GST_MESSAGE_CAST (result->data)->src),
877         types);
878   } else {
879     GST_DEBUG_OBJECT (bin, "no message found matching types %08x", types);
880 #ifndef GST_DISABLE_GST_DEBUG
881     {
882       guint i;
883
884       for (i = 0; i < 32; i++)
885         if (types & (1 << i))
886           GST_DEBUG_OBJECT (bin, "  %s", gst_message_type_get_name (1 << i));
887     }
888 #endif
889   }
890
891   return result;
892 }
893
894 /* with LOCK, returns TRUE if message had a valid SRC, takes ownership of
895  * the message.
896  *
897  * A message that is cached and has the same SRC and type is replaced
898  * by the given message.
899  */
900 static gboolean
901 bin_replace_message (GstBin * bin, GstMessage * message, GstMessageType types)
902 {
903   GList *previous;
904   GstObject *src;
905   gboolean res = TRUE;
906
907   if ((src = GST_MESSAGE_SRC (message))) {
908     /* first find the previous message posted by this element */
909     if ((previous = find_message (bin, src, types))) {
910       GstMessage *previous_msg;
911
912       /* if we found a previous message, replace it */
913       previous_msg = previous->data;
914       previous->data = message;
915
916       GST_DEBUG_OBJECT (bin, "replace old message %s from %s with %s message",
917           GST_MESSAGE_TYPE_NAME (previous_msg), GST_ELEMENT_NAME (src),
918           GST_MESSAGE_TYPE_NAME (message));
919
920       gst_message_unref (previous_msg);
921     } else {
922       /* keep new message */
923       bin->messages = g_list_prepend (bin->messages, message);
924
925       GST_DEBUG_OBJECT (bin, "got new message %p, %s from %s",
926           message, GST_MESSAGE_TYPE_NAME (message), GST_ELEMENT_NAME (src));
927     }
928   } else {
929     GST_DEBUG_OBJECT (bin, "got message %s from (NULL), not processing",
930         GST_MESSAGE_TYPE_NAME (message));
931     res = FALSE;
932     gst_message_unref (message);
933   }
934   return res;
935 }
936
937 /* with LOCK. Remove all messages of given types */
938 static void
939 bin_remove_messages (GstBin * bin, GstObject * src, GstMessageType types)
940 {
941   MessageFind find;
942   GList *walk, *next;
943
944   find.src = src;
945   find.types = types;
946
947   for (walk = bin->messages; walk; walk = next) {
948     GstMessage *message = (GstMessage *) walk->data;
949
950     next = g_list_next (walk);
951
952     if (message_check (message, &find) == 0) {
953       GST_DEBUG_OBJECT (GST_MESSAGE_SRC (message),
954           "deleting message %p of types 0x%08x", message, types);
955       bin->messages = g_list_delete_link (bin->messages, walk);
956       gst_message_unref (message);
957     } else {
958       GST_DEBUG_OBJECT (GST_MESSAGE_SRC (message),
959           "not deleting message %p of type 0x%08x", message,
960           GST_MESSAGE_TYPE (message));
961     }
962   }
963 }
964
965
966 /* Check if the bin is EOS. We do this by scanning all sinks and
967  * checking if they posted an EOS message.
968  *
969  * call with bin LOCK */
970 static gboolean
971 is_eos (GstBin * bin, guint32 * seqnum)
972 {
973   gboolean result;
974   gint n_eos = 0;
975   GList *walk, *msgs;
976
977   result = TRUE;
978   for (walk = bin->children; walk; walk = g_list_next (walk)) {
979     GstElement *element;
980
981     element = GST_ELEMENT_CAST (walk->data);
982     if (bin_element_is_sink (element, bin) == 0) {
983       /* check if element posted EOS */
984       if ((msgs =
985               find_message (bin, GST_OBJECT_CAST (element), GST_MESSAGE_EOS))) {
986         GST_DEBUG ("sink '%s' posted EOS", GST_ELEMENT_NAME (element));
987         *seqnum = gst_message_get_seqnum (GST_MESSAGE_CAST (msgs->data));
988         n_eos++;
989       } else {
990         GST_DEBUG ("sink '%s' did not post EOS yet",
991             GST_ELEMENT_NAME (element));
992         result = FALSE;
993         break;
994       }
995     }
996   }
997   /* FIXME: Some tests (e.g. elements/capsfilter) use
998    * pipelines with a dangling sinkpad but no sink element.
999    * These tests assume that no EOS message is ever
1000    * posted on the bus so let's keep that behaviour.
1001    * In valid pipelines this doesn't make a difference.
1002    */
1003   return result && n_eos > 0;
1004 }
1005
1006
1007 /* Check if the bin is STREAM_START. We do this by scanning all sinks and
1008  * checking if they posted an STREAM_START message.
1009  *
1010  * call with bin LOCK */
1011 static gboolean
1012 is_stream_start (GstBin * bin, guint32 * seqnum)
1013 {
1014   gboolean result;
1015   gint n_stream_start = 0;
1016   GList *walk, *msgs;
1017
1018   result = TRUE;
1019   for (walk = bin->children; walk; walk = g_list_next (walk)) {
1020     GstElement *element;
1021
1022     element = GST_ELEMENT_CAST (walk->data);
1023     if (bin_element_is_sink (element, bin) == 0) {
1024       /* check if element posted STREAM_START */
1025       if ((msgs =
1026               find_message (bin, GST_OBJECT_CAST (element),
1027                   GST_MESSAGE_STREAM_START))) {
1028         GST_DEBUG ("sink '%s' posted STREAM_START", GST_ELEMENT_NAME (element));
1029         *seqnum = gst_message_get_seqnum (GST_MESSAGE_CAST (msgs->data));
1030         n_stream_start++;
1031       } else {
1032         GST_DEBUG ("sink '%s' did not post STREAM_START yet",
1033             GST_ELEMENT_NAME (element));
1034         result = FALSE;
1035         break;
1036       }
1037     }
1038   }
1039
1040   return result;
1041 }
1042
1043 static void
1044 unlink_pads (const GValue * item, gpointer user_data)
1045 {
1046   GstPad *pad;
1047   GstPad *peer;
1048
1049   pad = g_value_get_object (item);
1050
1051   if ((peer = gst_pad_get_peer (pad))) {
1052     if (gst_pad_get_direction (pad) == GST_PAD_SRC)
1053       gst_pad_unlink (pad, peer);
1054     else
1055       gst_pad_unlink (peer, pad);
1056     gst_object_unref (peer);
1057   }
1058 }
1059
1060 /* vmethod that adds an element to a bin
1061  *
1062  * MT safe
1063  */
1064 static gboolean
1065 gst_bin_add_func (GstBin * bin, GstElement * element)
1066 {
1067   gchar *elem_name;
1068   GstIterator *it;
1069   gboolean is_sink, is_source, provides_clock, requires_clock;
1070   GstMessage *clock_message = NULL, *async_message = NULL;
1071   GstStateChangeReturn ret;
1072
1073   GST_DEBUG_OBJECT (bin, "element :%s", GST_ELEMENT_NAME (element));
1074
1075   /* we obviously can't add ourself to ourself */
1076   if (G_UNLIKELY (element == GST_ELEMENT_CAST (bin)))
1077     goto adding_itself;
1078
1079   /* get the element name to make sure it is unique in this bin. */
1080   GST_OBJECT_LOCK (element);
1081   elem_name = g_strdup (GST_ELEMENT_NAME (element));
1082   is_sink = GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_FLAG_SINK);
1083   is_source = GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_FLAG_SOURCE);
1084   provides_clock =
1085       GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_FLAG_PROVIDE_CLOCK);
1086   requires_clock =
1087       GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_FLAG_REQUIRE_CLOCK);
1088   GST_OBJECT_UNLOCK (element);
1089
1090   GST_OBJECT_LOCK (bin);
1091
1092   /* then check to see if the element's name is already taken in the bin,
1093    * we can safely take the lock here. This check is probably bogus because
1094    * you can safely change the element name after this check and before setting
1095    * the object parent. The window is very small though... */
1096   if (G_UNLIKELY (!gst_object_check_uniqueness (bin->children, elem_name)))
1097     goto duplicate_name;
1098
1099   /* set the element's parent and add the element to the bin's list of children */
1100   if (G_UNLIKELY (!gst_object_set_parent (GST_OBJECT_CAST (element),
1101               GST_OBJECT_CAST (bin))))
1102     goto had_parent;
1103
1104   /* if we add a sink we become a sink */
1105   if (is_sink) {
1106     GST_CAT_DEBUG_OBJECT (GST_CAT_PARENTAGE, bin, "element \"%s\" was sink",
1107         elem_name);
1108     GST_OBJECT_FLAG_SET (bin, GST_ELEMENT_FLAG_SINK);
1109   }
1110   if (is_source) {
1111     GST_CAT_DEBUG_OBJECT (GST_CAT_PARENTAGE, bin, "element \"%s\" was source",
1112         elem_name);
1113     GST_OBJECT_FLAG_SET (bin, GST_ELEMENT_FLAG_SOURCE);
1114   }
1115   if (provides_clock) {
1116     GST_DEBUG_OBJECT (bin, "element \"%s\" can provide a clock", elem_name);
1117     clock_message =
1118         gst_message_new_clock_provide (GST_OBJECT_CAST (element), NULL, TRUE);
1119     GST_OBJECT_FLAG_SET (bin, GST_ELEMENT_FLAG_PROVIDE_CLOCK);
1120   }
1121   if (requires_clock) {
1122     GST_DEBUG_OBJECT (bin, "element \"%s\" requires a clock", elem_name);
1123     GST_OBJECT_FLAG_SET (bin, GST_ELEMENT_FLAG_REQUIRE_CLOCK);
1124   }
1125
1126   bin->children = g_list_prepend (bin->children, element);
1127   bin->numchildren++;
1128   bin->children_cookie++;
1129   if (!GST_BIN_IS_NO_RESYNC (bin))
1130     bin->priv->structure_cookie++;
1131
1132   /* distribute the bus */
1133   gst_element_set_bus (element, bin->child_bus);
1134
1135   /* propagate the current base_time, start_time and clock */
1136   gst_element_set_base_time (element, GST_ELEMENT_CAST (bin)->base_time);
1137   gst_element_set_start_time (element, GST_ELEMENT_START_TIME (bin));
1138   /* it's possible that the element did not accept the clock but
1139    * that is not important right now. When the pipeline goes to PLAYING,
1140    * a new clock will be selected */
1141   gst_element_set_clock (element, GST_ELEMENT_CLOCK (bin));
1142
1143 #if 0
1144   /* set the cached index on the children */
1145   if (bin->priv->index)
1146     gst_element_set_index (element, bin->priv->index);
1147 #endif
1148
1149   ret = GST_STATE_RETURN (bin);
1150   /* no need to update the state if we are in error */
1151   if (ret == GST_STATE_CHANGE_FAILURE)
1152     goto no_state_recalc;
1153
1154   /* update the bin state, the new element could have been an ASYNC or
1155    * NO_PREROLL element */
1156   ret = GST_STATE_RETURN (element);
1157   GST_DEBUG_OBJECT (bin, "added %s element",
1158       gst_element_state_change_return_get_name (ret));
1159
1160   switch (ret) {
1161     case GST_STATE_CHANGE_ASYNC:
1162     {
1163       /* create message to track this aync element when it posts an async-done
1164        * message */
1165       async_message = gst_message_new_async_start (GST_OBJECT_CAST (element));
1166       break;
1167     }
1168     case GST_STATE_CHANGE_NO_PREROLL:
1169       /* ignore all async elements we might have and commit our state */
1170       bin_handle_async_done (bin, ret, FALSE, GST_CLOCK_TIME_NONE);
1171       break;
1172     case GST_STATE_CHANGE_FAILURE:
1173       break;
1174     default:
1175       break;
1176   }
1177
1178 no_state_recalc:
1179   GST_OBJECT_UNLOCK (bin);
1180
1181   /* post the messages on the bus of the element so that the bin can handle
1182    * them */
1183   if (clock_message)
1184     gst_element_post_message (element, clock_message);
1185
1186   if (async_message)
1187     gst_element_post_message (element, async_message);
1188
1189   /* unlink all linked pads */
1190   it = gst_element_iterate_pads (element);
1191   gst_iterator_foreach (it, (GstIteratorForeachFunction) unlink_pads, NULL);
1192   gst_iterator_free (it);
1193
1194   GST_CAT_DEBUG_OBJECT (GST_CAT_PARENTAGE, bin, "added element \"%s\"",
1195       elem_name);
1196
1197   g_signal_emit (bin, gst_bin_signals[ELEMENT_ADDED], 0, element);
1198   gst_child_proxy_child_added ((GstChildProxy *) bin, (GObject *) element,
1199       elem_name);
1200
1201   g_free (elem_name);
1202
1203   return TRUE;
1204
1205   /* ERROR handling here */
1206 adding_itself:
1207   {
1208     GST_OBJECT_LOCK (bin);
1209     g_warning ("Cannot add bin '%s' to itself", GST_ELEMENT_NAME (bin));
1210     GST_OBJECT_UNLOCK (bin);
1211     return FALSE;
1212   }
1213 duplicate_name:
1214   {
1215     g_warning ("Name '%s' is not unique in bin '%s', not adding",
1216         elem_name, GST_ELEMENT_NAME (bin));
1217     GST_OBJECT_UNLOCK (bin);
1218     g_free (elem_name);
1219     return FALSE;
1220   }
1221 had_parent:
1222   {
1223     g_warning ("Element '%s' already has parent", elem_name);
1224     GST_OBJECT_UNLOCK (bin);
1225     g_free (elem_name);
1226     return FALSE;
1227   }
1228 }
1229
1230 /**
1231  * gst_bin_add:
1232  * @bin: a #GstBin
1233  * @element: (transfer full): the #GstElement to add
1234  *
1235  * Adds the given element to the bin.  Sets the element's parent, and thus
1236  * takes ownership of the element. An element can only be added to one bin.
1237  *
1238  * If the element's pads are linked to other pads, the pads will be unlinked
1239  * before the element is added to the bin.
1240  *
1241  * <note>
1242  * When you add an element to an already-running pipeline, you will have to
1243  * take care to set the state of the newly-added element to the desired
1244  * state (usually PLAYING or PAUSED, same you set the pipeline to originally)
1245  * with gst_element_set_state(), or use gst_element_sync_state_with_parent().
1246  * The bin or pipeline will not take care of this for you.
1247  * </note>
1248  *
1249  * MT safe.
1250  *
1251  * Returns: TRUE if the element could be added, FALSE if
1252  * the bin does not want to accept the element.
1253  */
1254 gboolean
1255 gst_bin_add (GstBin * bin, GstElement * element)
1256 {
1257   GstBinClass *bclass;
1258   gboolean result;
1259
1260   g_return_val_if_fail (GST_IS_BIN (bin), FALSE);
1261   g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
1262
1263   bclass = GST_BIN_GET_CLASS (bin);
1264
1265   if (G_UNLIKELY (bclass->add_element == NULL))
1266     goto no_function;
1267
1268   GST_CAT_DEBUG (GST_CAT_PARENTAGE, "adding element %s to bin %s",
1269       GST_STR_NULL (GST_ELEMENT_NAME (element)),
1270       GST_STR_NULL (GST_ELEMENT_NAME (bin)));
1271
1272   result = bclass->add_element (bin, element);
1273
1274   return result;
1275
1276   /* ERROR handling */
1277 no_function:
1278   {
1279     g_warning ("adding elements to bin '%s' is not supported",
1280         GST_ELEMENT_NAME (bin));
1281     return FALSE;
1282   }
1283 }
1284
1285 /* remove an element from the bin
1286  *
1287  * MT safe
1288  */
1289 static gboolean
1290 gst_bin_remove_func (GstBin * bin, GstElement * element)
1291 {
1292   gchar *elem_name;
1293   GstIterator *it;
1294   gboolean is_sink, is_source, provides_clock, requires_clock;
1295   gboolean othersink, othersource, otherprovider, otherrequirer, found;
1296   GstMessage *clock_message = NULL;
1297   GstClock **provided_clock_p;
1298   GstElement **clock_provider_p;
1299   GList *walk, *next;
1300   gboolean other_async, this_async, have_no_preroll;
1301   GstStateChangeReturn ret;
1302
1303   GST_DEBUG_OBJECT (bin, "element :%s", GST_ELEMENT_NAME (element));
1304
1305   GST_OBJECT_LOCK (bin);
1306
1307   GST_OBJECT_LOCK (element);
1308   elem_name = g_strdup (GST_ELEMENT_NAME (element));
1309
1310   if (GST_OBJECT_PARENT (element) != GST_OBJECT_CAST (bin))
1311     goto not_in_bin;
1312
1313   /* remove the parent ref */
1314   GST_OBJECT_PARENT (element) = NULL;
1315
1316   /* grab element name so we can print it */
1317   is_sink = GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_FLAG_SINK);
1318   is_source = GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_FLAG_SOURCE);
1319   provides_clock =
1320       GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_FLAG_PROVIDE_CLOCK);
1321   requires_clock =
1322       GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_FLAG_REQUIRE_CLOCK);
1323   GST_OBJECT_UNLOCK (element);
1324
1325   found = FALSE;
1326   othersink = FALSE;
1327   othersource = FALSE;
1328   otherprovider = FALSE;
1329   otherrequirer = FALSE;
1330   have_no_preroll = FALSE;
1331   /* iterate the elements, we collect which ones are async and no_preroll. We
1332    * also remove the element when we find it. */
1333   for (walk = bin->children; walk; walk = next) {
1334     GstElement *child = GST_ELEMENT_CAST (walk->data);
1335
1336     next = g_list_next (walk);
1337
1338     if (child == element) {
1339       found = TRUE;
1340       /* remove the element */
1341       bin->children = g_list_delete_link (bin->children, walk);
1342     } else {
1343       gboolean child_sink, child_source, child_provider, child_requirer;
1344
1345       GST_OBJECT_LOCK (child);
1346       child_sink = GST_OBJECT_FLAG_IS_SET (child, GST_ELEMENT_FLAG_SINK);
1347       child_source = GST_OBJECT_FLAG_IS_SET (child, GST_ELEMENT_FLAG_SOURCE);
1348       child_provider =
1349           GST_OBJECT_FLAG_IS_SET (child, GST_ELEMENT_FLAG_PROVIDE_CLOCK);
1350       child_requirer =
1351           GST_OBJECT_FLAG_IS_SET (child, GST_ELEMENT_FLAG_REQUIRE_CLOCK);
1352       /* when we remove a sink, check if there are other sinks. */
1353       if (is_sink && !othersink && child_sink)
1354         othersink = TRUE;
1355       if (is_source && !othersource && child_source)
1356         othersource = TRUE;
1357       if (provides_clock && !otherprovider && child_provider)
1358         otherprovider = TRUE;
1359       if (requires_clock && !otherrequirer && child_requirer)
1360         otherrequirer = TRUE;
1361       /* check if we have NO_PREROLL children */
1362       if (GST_STATE_RETURN (child) == GST_STATE_CHANGE_NO_PREROLL)
1363         have_no_preroll = TRUE;
1364       GST_OBJECT_UNLOCK (child);
1365     }
1366   }
1367
1368   /* the element must have been in the bin's list of children */
1369   if (G_UNLIKELY (!found))
1370     goto not_in_bin;
1371
1372   /* we now removed the element from the list of elements, increment the cookie
1373    * so that others can detect a change in the children list. */
1374   bin->numchildren--;
1375   bin->children_cookie++;
1376   if (!GST_BIN_IS_NO_RESYNC (bin))
1377     bin->priv->structure_cookie++;
1378
1379   if (is_sink && !othersink) {
1380     /* we're not a sink anymore */
1381     GST_DEBUG_OBJECT (bin, "we removed the last sink");
1382     GST_OBJECT_FLAG_UNSET (bin, GST_ELEMENT_FLAG_SINK);
1383   }
1384   if (is_source && !othersource) {
1385     /* we're not a source anymore */
1386     GST_DEBUG_OBJECT (bin, "we removed the last source");
1387     GST_OBJECT_FLAG_UNSET (bin, GST_ELEMENT_FLAG_SOURCE);
1388   }
1389   if (provides_clock && !otherprovider) {
1390     /* we're not a clock provider anymore */
1391     GST_DEBUG_OBJECT (bin, "we removed the last clock provider");
1392     GST_OBJECT_FLAG_UNSET (bin, GST_ELEMENT_FLAG_PROVIDE_CLOCK);
1393   }
1394   if (requires_clock && !otherrequirer) {
1395     /* we're not a clock requirer anymore */
1396     GST_DEBUG_OBJECT (bin, "we removed the last clock requirer");
1397     GST_OBJECT_FLAG_UNSET (bin, GST_ELEMENT_FLAG_REQUIRE_CLOCK);
1398   }
1399
1400   /* if the clock provider for this element is removed, we lost
1401    * the clock as well, we need to inform the parent of this
1402    * so that it can select a new clock */
1403   if (bin->clock_provider == element) {
1404     GST_DEBUG_OBJECT (bin, "element \"%s\" provided the clock", elem_name);
1405     bin->clock_dirty = TRUE;
1406     clock_message =
1407         gst_message_new_clock_lost (GST_OBJECT_CAST (bin), bin->provided_clock);
1408     provided_clock_p = &bin->provided_clock;
1409     clock_provider_p = &bin->clock_provider;
1410     gst_object_replace ((GstObject **) provided_clock_p, NULL);
1411     gst_object_replace ((GstObject **) clock_provider_p, NULL);
1412   }
1413
1414   /* remove messages for the element, if there was a pending ASYNC_START
1415    * message we must see if removing the element caused the bin to lose its
1416    * async state. */
1417   this_async = FALSE;
1418   other_async = FALSE;
1419   for (walk = bin->messages; walk; walk = next) {
1420     GstMessage *message = (GstMessage *) walk->data;
1421     GstElement *src = GST_ELEMENT_CAST (GST_MESSAGE_SRC (message));
1422     gboolean remove;
1423
1424     next = g_list_next (walk);
1425     remove = FALSE;
1426
1427     switch (GST_MESSAGE_TYPE (message)) {
1428       case GST_MESSAGE_ASYNC_START:
1429         if (src == element)
1430           this_async = TRUE;
1431         else
1432           other_async = TRUE;
1433
1434         GST_DEBUG_OBJECT (src, "looking at message %p", message);
1435         break;
1436       case GST_MESSAGE_STRUCTURE_CHANGE:
1437       {
1438         GstElement *owner;
1439
1440         GST_DEBUG_OBJECT (src, "looking at structure change message %p",
1441             message);
1442         /* it's unlikely that this message is still in the list of messages
1443          * because this would mean that a link/unlink is busy in another thread
1444          * while we remove the element. We still have to remove the message
1445          * because we might not receive the done message anymore when the element
1446          * is removed from the bin. */
1447         gst_message_parse_structure_change (message, NULL, &owner, NULL);
1448         if (owner == element)
1449           remove = TRUE;
1450         break;
1451       }
1452       default:
1453         break;
1454     }
1455     if (src == element)
1456       remove = TRUE;
1457
1458     if (remove) {
1459       /* delete all message types */
1460       GST_DEBUG_OBJECT (src, "deleting message %p of element \"%s\"",
1461           message, elem_name);
1462       bin->messages = g_list_delete_link (bin->messages, walk);
1463       gst_message_unref (message);
1464     }
1465   }
1466
1467   /* get last return */
1468   ret = GST_STATE_RETURN (bin);
1469
1470   /* no need to update the state if we are in error */
1471   if (ret == GST_STATE_CHANGE_FAILURE)
1472     goto no_state_recalc;
1473
1474   if (!other_async && this_async) {
1475     /* all other elements were not async and we removed the async one,
1476      * handle the async-done case because we are not async anymore now. */
1477     GST_DEBUG_OBJECT (bin,
1478         "we removed the last async element, have no_preroll %d",
1479         have_no_preroll);
1480
1481     /* the current state return of the bin depends on if there are no_preroll
1482      * elements in the pipeline or not */
1483     if (have_no_preroll)
1484       ret = GST_STATE_CHANGE_NO_PREROLL;
1485     else
1486       ret = GST_STATE_CHANGE_SUCCESS;
1487
1488     bin_handle_async_done (bin, ret, FALSE, GST_CLOCK_TIME_NONE);
1489   } else {
1490     GST_DEBUG_OBJECT (bin,
1491         "recalc state preroll: %d, other async: %d, this async %d",
1492         have_no_preroll, other_async, this_async);
1493
1494     if (have_no_preroll) {
1495       ret = GST_STATE_CHANGE_NO_PREROLL;
1496     } else if (other_async) {
1497       /* there are other async elements and we were not doing an async state
1498        * change, change our pending state and go async */
1499       if (GST_STATE_PENDING (bin) == GST_STATE_VOID_PENDING) {
1500         GST_STATE_NEXT (bin) = GST_STATE (bin);
1501         GST_STATE_PENDING (bin) = GST_STATE (bin);
1502       }
1503       ret = GST_STATE_CHANGE_ASYNC;
1504     }
1505     GST_STATE_RETURN (bin) = ret;
1506   }
1507 no_state_recalc:
1508   /* clear bus */
1509   gst_element_set_bus (element, NULL);
1510   /* Clear the clock we provided to the element */
1511   gst_element_set_clock (element, NULL);
1512   GST_OBJECT_UNLOCK (bin);
1513
1514   if (clock_message)
1515     gst_element_post_message (GST_ELEMENT_CAST (bin), clock_message);
1516
1517   /* unlink all linked pads */
1518   it = gst_element_iterate_pads (element);
1519   gst_iterator_foreach (it, (GstIteratorForeachFunction) unlink_pads, NULL);
1520   gst_iterator_free (it);
1521
1522   GST_CAT_INFO_OBJECT (GST_CAT_PARENTAGE, bin, "removed child \"%s\"",
1523       elem_name);
1524
1525   g_signal_emit (bin, gst_bin_signals[ELEMENT_REMOVED], 0, element);
1526   gst_child_proxy_child_removed ((GstChildProxy *) bin, (GObject *) element,
1527       elem_name);
1528
1529   g_free (elem_name);
1530   /* element is really out of our control now */
1531   gst_object_unref (element);
1532
1533   return TRUE;
1534
1535   /* ERROR handling */
1536 not_in_bin:
1537   {
1538     g_warning ("Element '%s' is not in bin '%s'", elem_name,
1539         GST_ELEMENT_NAME (bin));
1540     GST_OBJECT_UNLOCK (element);
1541     GST_OBJECT_UNLOCK (bin);
1542     g_free (elem_name);
1543     return FALSE;
1544   }
1545 }
1546
1547 /**
1548  * gst_bin_remove:
1549  * @bin: a #GstBin
1550  * @element: (transfer none): the #GstElement to remove
1551  *
1552  * Removes the element from the bin, unparenting it as well.
1553  * Unparenting the element means that the element will be dereferenced,
1554  * so if the bin holds the only reference to the element, the element
1555  * will be freed in the process of removing it from the bin.  If you
1556  * want the element to still exist after removing, you need to call
1557  * gst_object_ref() before removing it from the bin.
1558  *
1559  * If the element's pads are linked to other pads, the pads will be unlinked
1560  * before the element is removed from the bin.
1561  *
1562  * MT safe.
1563  *
1564  * Returns: TRUE if the element could be removed, FALSE if
1565  * the bin does not want to remove the element.
1566  */
1567 gboolean
1568 gst_bin_remove (GstBin * bin, GstElement * element)
1569 {
1570   GstBinClass *bclass;
1571   gboolean result;
1572
1573   g_return_val_if_fail (GST_IS_BIN (bin), FALSE);
1574   g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
1575
1576   bclass = GST_BIN_GET_CLASS (bin);
1577
1578   if (G_UNLIKELY (bclass->remove_element == NULL))
1579     goto no_function;
1580
1581   GST_CAT_DEBUG (GST_CAT_PARENTAGE, "removing element %s from bin %s",
1582       GST_ELEMENT_NAME (element), GST_ELEMENT_NAME (bin));
1583
1584   result = bclass->remove_element (bin, element);
1585
1586   return result;
1587
1588   /* ERROR handling */
1589 no_function:
1590   {
1591     g_warning ("removing elements from bin '%s' is not supported",
1592         GST_ELEMENT_NAME (bin));
1593     return FALSE;
1594   }
1595 }
1596
1597 /**
1598  * gst_bin_iterate_elements:
1599  * @bin: a #GstBin
1600  *
1601  * Gets an iterator for the elements in this bin.
1602  *
1603  * MT safe.  Caller owns returned value.
1604  *
1605  * Returns: (transfer full): a #GstIterator of #GstElement, or NULL
1606  */
1607 GstIterator *
1608 gst_bin_iterate_elements (GstBin * bin)
1609 {
1610   GstIterator *result;
1611
1612   g_return_val_if_fail (GST_IS_BIN (bin), NULL);
1613
1614   GST_OBJECT_LOCK (bin);
1615   result = gst_iterator_new_list (GST_TYPE_ELEMENT,
1616       GST_OBJECT_GET_LOCK (bin),
1617       &bin->children_cookie, &bin->children, (GObject *) bin, NULL);
1618   GST_OBJECT_UNLOCK (bin);
1619
1620   return result;
1621 }
1622
1623 static GstIteratorItem
1624 iterate_child_recurse (GstIterator * it, const GValue * item)
1625 {
1626   GstElement *child = g_value_get_object (item);
1627
1628   if (GST_IS_BIN (child)) {
1629     GstIterator *other = gst_bin_iterate_recurse (GST_BIN_CAST (child));
1630
1631     gst_iterator_push (it, other);
1632   }
1633   return GST_ITERATOR_ITEM_PASS;
1634 }
1635
1636 /**
1637  * gst_bin_iterate_recurse:
1638  * @bin: a #GstBin
1639  *
1640  * Gets an iterator for the elements in this bin.
1641  * This iterator recurses into GstBin children.
1642  *
1643  * MT safe.  Caller owns returned value.
1644  *
1645  * Returns: (transfer full): a #GstIterator of #GstElement, or NULL
1646  */
1647 GstIterator *
1648 gst_bin_iterate_recurse (GstBin * bin)
1649 {
1650   GstIterator *result;
1651
1652   g_return_val_if_fail (GST_IS_BIN (bin), NULL);
1653
1654   GST_OBJECT_LOCK (bin);
1655   result = gst_iterator_new_list (GST_TYPE_ELEMENT,
1656       GST_OBJECT_GET_LOCK (bin),
1657       &bin->children_cookie,
1658       &bin->children,
1659       (GObject *) bin, (GstIteratorItemFunction) iterate_child_recurse);
1660   GST_OBJECT_UNLOCK (bin);
1661
1662   return result;
1663 }
1664
1665 /* returns 0 when TRUE because this is a GCompareFunc */
1666 /* MT safe */
1667 static gint
1668 bin_element_is_sink (GstElement * child, GstBin * bin)
1669 {
1670   gboolean is_sink;
1671
1672   /* we lock the child here for the remainder of the function to
1673    * get its name and flag safely. */
1674   GST_OBJECT_LOCK (child);
1675   is_sink = GST_OBJECT_FLAG_IS_SET (child, GST_ELEMENT_FLAG_SINK);
1676
1677   GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin,
1678       "child %s %s sink", GST_OBJECT_NAME (child), is_sink ? "is" : "is not");
1679
1680   GST_OBJECT_UNLOCK (child);
1681   return is_sink ? 0 : 1;
1682 }
1683
1684 static gint
1685 sink_iterator_filter (const GValue * vchild, GValue * vbin)
1686 {
1687   GstBin *bin = g_value_get_object (vbin);
1688   GstElement *child = g_value_get_object (vchild);
1689
1690   return (bin_element_is_sink (child, bin));
1691 }
1692
1693 /**
1694  * gst_bin_iterate_sinks:
1695  * @bin: a #GstBin
1696  *
1697  * Gets an iterator for all elements in the bin that have the
1698  * #GST_ELEMENT_FLAG_SINK flag set.
1699  *
1700  * MT safe.  Caller owns returned value.
1701  *
1702  * Returns: (transfer full): a #GstIterator of #GstElement, or NULL
1703  */
1704 GstIterator *
1705 gst_bin_iterate_sinks (GstBin * bin)
1706 {
1707   GstIterator *children;
1708   GstIterator *result;
1709   GValue vbin = { 0, };
1710
1711   g_return_val_if_fail (GST_IS_BIN (bin), NULL);
1712
1713   g_value_init (&vbin, GST_TYPE_BIN);
1714   g_value_set_object (&vbin, bin);
1715
1716   children = gst_bin_iterate_elements (bin);
1717   result = gst_iterator_filter (children,
1718       (GCompareFunc) sink_iterator_filter, &vbin);
1719
1720   g_value_unset (&vbin);
1721
1722   return result;
1723 }
1724
1725 /* returns 0 when TRUE because this is a GCompareFunc */
1726 /* MT safe */
1727 static gint
1728 bin_element_is_src (GstElement * child, GstBin * bin)
1729 {
1730   gboolean is_src;
1731
1732   /* we lock the child here for the remainder of the function to
1733    * get its name and other info safely. */
1734   GST_OBJECT_LOCK (child);
1735   is_src = GST_OBJECT_FLAG_IS_SET (child, GST_ELEMENT_FLAG_SOURCE);
1736
1737   GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin,
1738       "child %s %s src", GST_OBJECT_NAME (child), is_src ? "is" : "is not");
1739
1740   GST_OBJECT_UNLOCK (child);
1741   return is_src ? 0 : 1;
1742 }
1743
1744 static gint
1745 src_iterator_filter (const GValue * vchild, GValue * vbin)
1746 {
1747   GstBin *bin = g_value_get_object (vbin);
1748   GstElement *child = g_value_get_object (vchild);
1749
1750   return (bin_element_is_src (child, bin));
1751 }
1752
1753 /**
1754  * gst_bin_iterate_sources:
1755  * @bin: a #GstBin
1756  *
1757  * Gets an iterator for all elements in the bin that have the
1758  * #GST_ELEMENT_FLAG_SOURCE flag set.
1759  *
1760  * MT safe.  Caller owns returned value.
1761  *
1762  * Returns: (transfer full): a #GstIterator of #GstElement, or NULL
1763  */
1764 GstIterator *
1765 gst_bin_iterate_sources (GstBin * bin)
1766 {
1767   GstIterator *children;
1768   GstIterator *result;
1769   GValue vbin = { 0, };
1770
1771   g_return_val_if_fail (GST_IS_BIN (bin), NULL);
1772
1773   g_value_init (&vbin, GST_TYPE_BIN);
1774   g_value_set_object (&vbin, bin);
1775
1776   children = gst_bin_iterate_elements (bin);
1777   result = gst_iterator_filter (children,
1778       (GCompareFunc) src_iterator_filter, &vbin);
1779
1780   g_value_unset (&vbin);
1781
1782   return result;
1783 }
1784
1785 /*
1786  * MT safe
1787  */
1788 static GstStateChangeReturn
1789 gst_bin_get_state_func (GstElement * element, GstState * state,
1790     GstState * pending, GstClockTime timeout)
1791 {
1792   GstStateChangeReturn ret;
1793
1794   GST_CAT_INFO_OBJECT (GST_CAT_STATES, element, "getting state");
1795
1796   ret =
1797       GST_ELEMENT_CLASS (parent_class)->get_state (element, state, pending,
1798       timeout);
1799
1800   return ret;
1801 }
1802
1803 /***********************************************
1804  * Topologically sorted iterator
1805  * see http://en.wikipedia.org/wiki/Topological_sorting
1806  *
1807  * For each element in the graph, an entry is kept in a HashTable
1808  * with its number of srcpad connections (degree).
1809  * We then change state of all elements without dependencies
1810  * (degree 0) and decrement the degree of all elements connected
1811  * on the sinkpads. When an element reaches degree 0, its state is
1812  * changed next.
1813  * When all elements are handled the algorithm stops.
1814  */
1815 typedef struct _GstBinSortIterator
1816 {
1817   GstIterator it;
1818   GQueue queue;                 /* elements queued for state change */
1819   GstBin *bin;                  /* bin we iterate */
1820   gint mode;                    /* adding or removing dependency */
1821   GstElement *best;             /* next element with least dependencies */
1822   gint best_deg;                /* best degree */
1823   GHashTable *hash;             /* hashtable with element dependencies */
1824   gboolean dirty;               /* we detected structure change */
1825 } GstBinSortIterator;
1826
1827 static void
1828 gst_bin_sort_iterator_copy (const GstBinSortIterator * it,
1829     GstBinSortIterator * copy)
1830 {
1831   GHashTableIter iter;
1832   gpointer key, value;
1833
1834   copy->queue = it->queue;
1835   g_queue_foreach (&copy->queue, (GFunc) gst_object_ref, NULL);
1836
1837   copy->bin = gst_object_ref (it->bin);
1838   if (it->best)
1839     copy->best = gst_object_ref (it->best);
1840
1841   copy->hash = g_hash_table_new (NULL, NULL);
1842   g_hash_table_iter_init (&iter, it->hash);
1843   while (g_hash_table_iter_next (&iter, &key, &value))
1844     g_hash_table_insert (copy->hash, key, value);
1845 }
1846
1847 /* we add and subtract 1 to make sure we don't confuse NULL and 0 */
1848 #define HASH_SET_DEGREE(bit, elem, deg) \
1849     g_hash_table_replace (bit->hash, elem, GINT_TO_POINTER(deg+1))
1850 #define HASH_GET_DEGREE(bit, elem) \
1851     (GPOINTER_TO_INT(g_hash_table_lookup (bit->hash, elem))-1)
1852
1853 /* add element to queue of next elements in the iterator.
1854  * We push at the tail to give higher priority elements a
1855  * chance first */
1856 static void
1857 add_to_queue (GstBinSortIterator * bit, GstElement * element)
1858 {
1859   GST_DEBUG_OBJECT (bit->bin, "adding '%s' to queue",
1860       GST_ELEMENT_NAME (element));
1861   gst_object_ref (element);
1862   g_queue_push_tail (&bit->queue, element);
1863   HASH_SET_DEGREE (bit, element, -1);
1864 }
1865
1866 static void
1867 remove_from_queue (GstBinSortIterator * bit, GstElement * element)
1868 {
1869   GList *find;
1870
1871   if ((find = g_queue_find (&bit->queue, element))) {
1872     GST_DEBUG_OBJECT (bit->bin, "removing '%s' from queue",
1873         GST_ELEMENT_NAME (element));
1874
1875     g_queue_delete_link (&bit->queue, find);
1876     gst_object_unref (element);
1877   } else {
1878     GST_DEBUG_OBJECT (bit->bin, "unable to remove '%s' from queue",
1879         GST_ELEMENT_NAME (element));
1880   }
1881 }
1882
1883 /* clear the queue, unref all objects as we took a ref when
1884  * we added them to the queue */
1885 static void
1886 clear_queue (GQueue * queue)
1887 {
1888   gpointer p;
1889
1890   while ((p = g_queue_pop_head (queue)))
1891     gst_object_unref (p);
1892 }
1893
1894 /* set all degrees to 0. Elements marked as a sink are
1895  * added to the queue immediately. Since we only look at the SINK flag of the
1896  * element, it is possible that we add non-sinks to the queue. These will be
1897  * removed from the queue again when we can prove that it provides data for some
1898  * other element. */
1899 static void
1900 reset_degree (GstElement * element, GstBinSortIterator * bit)
1901 {
1902   gboolean is_sink;
1903
1904   /* sinks are added right away */
1905   GST_OBJECT_LOCK (element);
1906   is_sink = GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_FLAG_SINK);
1907   GST_OBJECT_UNLOCK (element);
1908
1909   if (is_sink) {
1910     add_to_queue (bit, element);
1911   } else {
1912     /* others are marked with 0 and handled when sinks are done */
1913     HASH_SET_DEGREE (bit, element, 0);
1914   }
1915 }
1916
1917 /* adjust the degree of all elements connected to the given
1918  * element. If a degree of an element drops to 0, it is
1919  * added to the queue of elements to schedule next.
1920  *
1921  * We have to make sure not to cross the bin boundary this element
1922  * belongs to.
1923  */
1924 static void
1925 update_degree (GstElement * element, GstBinSortIterator * bit)
1926 {
1927   gboolean linked = FALSE;
1928
1929   GST_OBJECT_LOCK (element);
1930   /* don't touch degree if element has no sinkpads */
1931   if (element->numsinkpads != 0) {
1932     /* loop over all sinkpads, decrement degree for all connected
1933      * elements in this bin */
1934     GList *pads;
1935
1936     for (pads = element->sinkpads; pads; pads = g_list_next (pads)) {
1937       GstPad *pad, *peer;
1938
1939       pad = GST_PAD_CAST (pads->data);
1940
1941       /* we're iterating over the sinkpads, check if it's busy in a link/unlink */
1942       if (G_UNLIKELY (find_message (bit->bin, GST_OBJECT_CAST (pad),
1943                   GST_MESSAGE_STRUCTURE_CHANGE))) {
1944         /* mark the iterator as dirty because we won't be updating the degree
1945          * of the peer parent now. This would result in the 'loop detected'
1946          * later on because the peer parent element could become the best next
1947          * element with a degree > 0. We will simply continue our state
1948          * changes and we'll eventually resync when the unlink completed and
1949          * the iterator cookie is updated. */
1950         bit->dirty = TRUE;
1951         continue;
1952       }
1953
1954       if ((peer = gst_pad_get_peer (pad))) {
1955         GstElement *peer_element;
1956
1957         if ((peer_element = gst_pad_get_parent_element (peer))) {
1958           GST_OBJECT_LOCK (peer_element);
1959           /* check that we don't go outside of this bin */
1960           if (GST_OBJECT_CAST (peer_element)->parent ==
1961               GST_OBJECT_CAST (bit->bin)) {
1962             gint old_deg, new_deg;
1963
1964             old_deg = HASH_GET_DEGREE (bit, peer_element);
1965
1966             /* check to see if we added an element as sink that was not really a
1967              * sink because it was connected to some other element. */
1968             if (old_deg == -1) {
1969               remove_from_queue (bit, peer_element);
1970               old_deg = 0;
1971             }
1972             new_deg = old_deg + bit->mode;
1973
1974             GST_DEBUG_OBJECT (bit->bin,
1975                 "change element %s, degree %d->%d, linked to %s",
1976                 GST_ELEMENT_NAME (peer_element), old_deg, new_deg,
1977                 GST_ELEMENT_NAME (element));
1978
1979             /* update degree, it is possible that an element was in 0 and
1980              * reaches -1 here. This would mean that the element had no sinkpads
1981              * but became linked while the state change was happening. We will
1982              * resync on this with the structure change message. */
1983             if (new_deg == 0) {
1984               /* degree hit 0, add to queue */
1985               add_to_queue (bit, peer_element);
1986             } else {
1987               HASH_SET_DEGREE (bit, peer_element, new_deg);
1988             }
1989             linked = TRUE;
1990           }
1991           GST_OBJECT_UNLOCK (peer_element);
1992           gst_object_unref (peer_element);
1993         }
1994         gst_object_unref (peer);
1995       }
1996     }
1997   }
1998   if (!linked) {
1999     GST_DEBUG_OBJECT (bit->bin, "element %s not linked on any sinkpads",
2000         GST_ELEMENT_NAME (element));
2001   }
2002   GST_OBJECT_UNLOCK (element);
2003 }
2004
2005 /* find the next best element not handled yet. This is the one
2006  * with the lowest non-negative degree */
2007 static void
2008 find_element (GstElement * element, GstBinSortIterator * bit)
2009 {
2010   gint degree;
2011
2012   /* element is already handled */
2013   if ((degree = HASH_GET_DEGREE (bit, element)) < 0)
2014     return;
2015
2016   /* first element or element with smaller degree */
2017   if (bit->best == NULL || bit->best_deg > degree) {
2018     bit->best = element;
2019     bit->best_deg = degree;
2020   }
2021 }
2022
2023 /* get next element in iterator. */
2024 static GstIteratorResult
2025 gst_bin_sort_iterator_next (GstBinSortIterator * bit, GValue * result)
2026 {
2027   GstElement *best;
2028   GstBin *bin = bit->bin;
2029
2030   /* empty queue, we have to find a next best element */
2031   if (g_queue_is_empty (&bit->queue)) {
2032     bit->best = NULL;
2033     bit->best_deg = G_MAXINT;
2034     g_list_foreach (bin->children, (GFunc) find_element, bit);
2035     if ((best = bit->best)) {
2036       /* when we detected an unlink, don't warn because our degrees might be
2037        * screwed up. We will resync later */
2038       if (bit->best_deg != 0 && !bit->dirty) {
2039         /* we don't fail on this one yet */
2040         GST_WARNING_OBJECT (bin, "loop dected in graph");
2041         g_warning ("loop detected in the graph of bin '%s'!!",
2042             GST_ELEMENT_NAME (bin));
2043       }
2044       /* best unhandled element, schedule as next element */
2045       GST_DEBUG_OBJECT (bin, "queue empty, next best: %s",
2046           GST_ELEMENT_NAME (best));
2047       HASH_SET_DEGREE (bit, best, -1);
2048       g_value_set_object (result, best);
2049     } else {
2050       GST_DEBUG_OBJECT (bin, "queue empty, elements exhausted");
2051       /* no more unhandled elements, we are done */
2052       return GST_ITERATOR_DONE;
2053     }
2054   } else {
2055     /* everything added to the queue got reffed */
2056     best = g_queue_pop_head (&bit->queue);
2057     g_value_set_object (result, best);
2058     gst_object_unref (best);
2059   }
2060
2061   GST_DEBUG_OBJECT (bin, "queue head gives %s", GST_ELEMENT_NAME (best));
2062   /* update degrees of linked elements */
2063   update_degree (best, bit);
2064
2065   return GST_ITERATOR_OK;
2066 }
2067
2068 /* clear queues, recalculate the degrees and restart. */
2069 static void
2070 gst_bin_sort_iterator_resync (GstBinSortIterator * bit)
2071 {
2072   GstBin *bin = bit->bin;
2073
2074   GST_DEBUG_OBJECT (bin, "resync");
2075   bit->dirty = FALSE;
2076   clear_queue (&bit->queue);
2077   /* reset degrees */
2078   g_list_foreach (bin->children, (GFunc) reset_degree, bit);
2079   /* calc degrees, incrementing */
2080   bit->mode = 1;
2081   g_list_foreach (bin->children, (GFunc) update_degree, bit);
2082   /* for the rest of the function we decrement the degrees */
2083   bit->mode = -1;
2084 }
2085
2086 /* clear queues, unref bin and free iterator. */
2087 static void
2088 gst_bin_sort_iterator_free (GstBinSortIterator * bit)
2089 {
2090   GstBin *bin = bit->bin;
2091
2092   GST_DEBUG_OBJECT (bin, "free");
2093   clear_queue (&bit->queue);
2094   g_hash_table_destroy (bit->hash);
2095   gst_object_unref (bin);
2096 }
2097
2098 /* should be called with the bin LOCK held */
2099 static GstIterator *
2100 gst_bin_sort_iterator_new (GstBin * bin)
2101 {
2102   GstBinSortIterator *result;
2103
2104   /* we don't need an ItemFunction because we ref the items in the _next
2105    * method already */
2106   result = (GstBinSortIterator *)
2107       gst_iterator_new (sizeof (GstBinSortIterator),
2108       GST_TYPE_ELEMENT,
2109       GST_OBJECT_GET_LOCK (bin),
2110       &bin->priv->structure_cookie,
2111       (GstIteratorCopyFunction) gst_bin_sort_iterator_copy,
2112       (GstIteratorNextFunction) gst_bin_sort_iterator_next,
2113       (GstIteratorItemFunction) NULL,
2114       (GstIteratorResyncFunction) gst_bin_sort_iterator_resync,
2115       (GstIteratorFreeFunction) gst_bin_sort_iterator_free);
2116   g_queue_init (&result->queue);
2117   result->hash = g_hash_table_new (NULL, NULL);
2118   gst_object_ref (bin);
2119   result->bin = bin;
2120   gst_bin_sort_iterator_resync (result);
2121
2122   return (GstIterator *) result;
2123 }
2124
2125 /**
2126  * gst_bin_iterate_sorted:
2127  * @bin: a #GstBin
2128  *
2129  * Gets an iterator for the elements in this bin in topologically
2130  * sorted order. This means that the elements are returned from
2131  * the most downstream elements (sinks) to the sources.
2132  *
2133  * This function is used internally to perform the state changes
2134  * of the bin elements and for clock selection.
2135  *
2136  * MT safe.  Caller owns returned value.
2137  *
2138  * Returns: (transfer full): a #GstIterator of #GstElement, or NULL
2139  */
2140 GstIterator *
2141 gst_bin_iterate_sorted (GstBin * bin)
2142 {
2143   GstIterator *result;
2144
2145   g_return_val_if_fail (GST_IS_BIN (bin), NULL);
2146
2147   GST_OBJECT_LOCK (bin);
2148   result = gst_bin_sort_iterator_new (bin);
2149   GST_OBJECT_UNLOCK (bin);
2150
2151   return result;
2152 }
2153
2154 static GstStateChangeReturn
2155 gst_bin_element_set_state (GstBin * bin, GstElement * element,
2156     GstClockTime base_time, GstClockTime start_time, GstState current,
2157     GstState next)
2158 {
2159   GstStateChangeReturn ret;
2160   GstState child_current, child_pending;
2161   gboolean locked;
2162   GList *found;
2163
2164   GST_STATE_LOCK (element);
2165
2166   GST_OBJECT_LOCK (element);
2167   /* set base_time and start time on child */
2168   GST_ELEMENT_START_TIME (element) = start_time;
2169   element->base_time = base_time;
2170   /* peel off the locked flag */
2171   locked = GST_ELEMENT_IS_LOCKED_STATE (element);
2172   /* Get the previous set_state result to preserve NO_PREROLL and ASYNC */
2173   ret = GST_STATE_RETURN (element);
2174   child_current = GST_STATE (element);
2175   child_pending = GST_STATE_PENDING (element);
2176   GST_OBJECT_UNLOCK (element);
2177
2178   /* skip locked elements */
2179   if (G_UNLIKELY (locked))
2180     goto locked;
2181
2182   /* if the element was no preroll, just start changing the state regardless
2183    * if it had async elements (in the case of a bin) because they won't preroll
2184    * anyway. */
2185   if (G_UNLIKELY (ret == GST_STATE_CHANGE_NO_PREROLL)) {
2186     GST_DEBUG_OBJECT (element, "element is NO_PREROLL, ignore async elements");
2187     goto no_preroll;
2188   }
2189
2190   GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2191       "current %s pending %s, desired next %s",
2192       gst_element_state_get_name (child_current),
2193       gst_element_state_get_name (child_pending),
2194       gst_element_state_get_name (next));
2195
2196   /* always recurse into bins so that we can set the base time */
2197   if (GST_IS_BIN (element))
2198     goto do_state;
2199
2200   /* Try not to change the state of elements that are already in the state we're
2201    * going to */
2202   if (child_current == next && child_pending == GST_STATE_VOID_PENDING) {
2203     /* child is already at the requested state, return previous return. Note that
2204      * if the child has a pending state to next, we will still call the
2205      * set_state function */
2206     goto unneeded;
2207   } else if (next > current) {
2208     /* upward state change */
2209     if (child_pending == GST_STATE_VOID_PENDING) {
2210       /* .. and the child is not busy doing anything */
2211       if (child_current > next) {
2212         /* .. and is already past the requested state, assume it got there
2213          * without error */
2214         ret = GST_STATE_CHANGE_SUCCESS;
2215         goto unneeded;
2216       }
2217     } else if (child_pending > child_current) {
2218       /* .. and the child is busy going upwards */
2219       if (child_current >= next) {
2220         /* .. and is already past the requested state, assume it got there
2221          * without error */
2222         ret = GST_STATE_CHANGE_SUCCESS;
2223         goto unneeded;
2224       }
2225     } else {
2226       /* .. and the child is busy going downwards */
2227       if (child_current > next) {
2228         /* .. and is already past the requested state, assume it got there
2229          * without error */
2230         ret = GST_STATE_CHANGE_SUCCESS;
2231         goto unneeded;
2232       }
2233     }
2234   } else if (next < current) {
2235     /* downward state change */
2236     if (child_pending == GST_STATE_VOID_PENDING) {
2237       /* .. and the child is not busy doing anything */
2238       if (child_current < next) {
2239         /* .. and is already past the requested state, assume it got there
2240          * without error */
2241         ret = GST_STATE_CHANGE_SUCCESS;
2242         goto unneeded;
2243       }
2244     } else if (child_pending < child_current) {
2245       /* .. and the child is busy going downwards */
2246       if (child_current <= next) {
2247         /* .. and is already past the requested state, assume it got there
2248          * without error */
2249         ret = GST_STATE_CHANGE_SUCCESS;
2250         goto unneeded;
2251       }
2252     } else {
2253       /* .. and the child is busy going upwards */
2254       if (child_current < next) {
2255         /* .. and is already past the requested state, assume it got there
2256          * without error */
2257         ret = GST_STATE_CHANGE_SUCCESS;
2258         goto unneeded;
2259       }
2260     }
2261   }
2262
2263 do_state:
2264   GST_OBJECT_LOCK (bin);
2265   /* the element was busy with an upwards async state change, we must wait for
2266    * an ASYNC_DONE message before we attemp to change the state. */
2267   if ((found =
2268           find_message (bin, GST_OBJECT_CAST (element),
2269               GST_MESSAGE_ASYNC_START))) {
2270 #ifndef GST_DISABLE_GST_DEBUG
2271     GstMessage *message = GST_MESSAGE_CAST (found->data);
2272
2273     GST_DEBUG_OBJECT (element, "element message %p, %s async busy",
2274         message, GST_ELEMENT_NAME (GST_MESSAGE_SRC (message)));
2275 #endif
2276     /* only wait for upward state changes */
2277     if (next > current) {
2278       /* We found an async element check if we can force its state to change or
2279        * if we have to wait for it to preroll. */
2280       goto was_busy;
2281     }
2282   }
2283   GST_OBJECT_UNLOCK (bin);
2284
2285 no_preroll:
2286   GST_DEBUG_OBJECT (bin,
2287       "setting element %s to %s, base_time %" GST_TIME_FORMAT,
2288       GST_ELEMENT_NAME (element), gst_element_state_get_name (next),
2289       GST_TIME_ARGS (base_time));
2290
2291   /* change state */
2292   ret = gst_element_set_state (element, next);
2293
2294   GST_STATE_UNLOCK (element);
2295
2296   return ret;
2297
2298 locked:
2299   {
2300     GST_DEBUG_OBJECT (element,
2301         "element is locked, return previous return %s",
2302         gst_element_state_change_return_get_name (ret));
2303     GST_STATE_UNLOCK (element);
2304     return ret;
2305   }
2306 unneeded:
2307   {
2308     GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2309         "skipping transition from %s to  %s",
2310         gst_element_state_get_name (child_current),
2311         gst_element_state_get_name (next));
2312     GST_STATE_UNLOCK (element);
2313     return ret;
2314   }
2315 was_busy:
2316   {
2317     GST_DEBUG_OBJECT (element, "element was busy, delaying state change");
2318     GST_OBJECT_UNLOCK (bin);
2319     GST_STATE_UNLOCK (element);
2320     return GST_STATE_CHANGE_ASYNC;
2321   }
2322 }
2323
2324 /* gst_iterator_fold functions for pads_activate
2325  * Stop the iterator if activating one pad failed. */
2326 static gboolean
2327 activate_pads (const GValue * vpad, GValue * ret, gboolean * active)
2328 {
2329   GstPad *pad = g_value_get_object (vpad);
2330   gboolean cont = TRUE;
2331
2332   if (!(cont = gst_pad_set_active (pad, *active)))
2333     g_value_set_boolean (ret, FALSE);
2334
2335   return cont;
2336 }
2337
2338 /* returns false on error or early cutout of the fold, true if all
2339  * pads in @iter were (de)activated successfully. */
2340 static gboolean
2341 iterator_activate_fold_with_resync (GstIterator * iter, gpointer user_data)
2342 {
2343   GstIteratorResult ires;
2344   GValue ret = { 0 };
2345
2346   /* no need to unset this later, it's just a boolean */
2347   g_value_init (&ret, G_TYPE_BOOLEAN);
2348   g_value_set_boolean (&ret, TRUE);
2349
2350   while (1) {
2351     ires = gst_iterator_fold (iter, (GstIteratorFoldFunction) activate_pads,
2352         &ret, user_data);
2353     switch (ires) {
2354       case GST_ITERATOR_RESYNC:
2355         /* need to reset the result again */
2356         g_value_set_boolean (&ret, TRUE);
2357         gst_iterator_resync (iter);
2358         break;
2359       case GST_ITERATOR_DONE:
2360         /* all pads iterated, return collected value */
2361         goto done;
2362       default:
2363         /* iterator returned _ERROR or premature end with _OK,
2364          * mark an error and exit */
2365         g_value_set_boolean (&ret, FALSE);
2366         goto done;
2367     }
2368   }
2369 done:
2370   /* return collected value */
2371   return g_value_get_boolean (&ret);
2372 }
2373
2374 /* is called with STATE_LOCK
2375  */
2376 static gboolean
2377 gst_bin_src_pads_activate (GstBin * bin, gboolean active)
2378 {
2379   GstIterator *iter;
2380   gboolean fold_ok;
2381
2382   GST_DEBUG_OBJECT (bin, "%s pads", active ? "activate" : "deactivate");
2383
2384   iter = gst_element_iterate_src_pads ((GstElement *) bin);
2385   fold_ok = iterator_activate_fold_with_resync (iter, &active);
2386   gst_iterator_free (iter);
2387   if (G_UNLIKELY (!fold_ok))
2388     goto failed;
2389
2390   GST_DEBUG_OBJECT (bin, "pad %sactivation successful", active ? "" : "de");
2391
2392   return TRUE;
2393
2394   /* ERRORS */
2395 failed:
2396   {
2397     GST_DEBUG_OBJECT (bin, "pad %sactivation failed", active ? "" : "de");
2398     return FALSE;
2399   }
2400 }
2401
2402 /**
2403  * gst_bin_recalculate_latency:
2404  * @bin: a #GstBin
2405  *
2406  * Query @bin for the current latency using and reconfigures this latency to all the
2407  * elements with a LATENCY event.
2408  *
2409  * This method is typically called on the pipeline when a #GST_MESSAGE_LATENCY
2410  * is posted on the bus.
2411  *
2412  * This function simply emits the 'do-latency' signal so any custom latency
2413  * calculations will be performed.
2414  *
2415  * Returns: %TRUE if the latency could be queried and reconfigured.
2416  */
2417 gboolean
2418 gst_bin_recalculate_latency (GstBin * bin)
2419 {
2420   gboolean res;
2421
2422   g_signal_emit (bin, gst_bin_signals[DO_LATENCY], 0, &res);
2423   GST_DEBUG_OBJECT (bin, "latency returned %d", res);
2424
2425   return res;
2426 }
2427
2428 static gboolean
2429 gst_bin_do_latency_func (GstBin * bin)
2430 {
2431   GstQuery *query;
2432   GstElement *element;
2433   GstClockTime min_latency, max_latency;
2434   gboolean res;
2435
2436   g_return_val_if_fail (GST_IS_BIN (bin), FALSE);
2437
2438   element = GST_ELEMENT_CAST (bin);
2439
2440   GST_DEBUG_OBJECT (element, "querying latency");
2441
2442   query = gst_query_new_latency ();
2443   if ((res = gst_element_query (element, query))) {
2444     gboolean live;
2445
2446     gst_query_parse_latency (query, &live, &min_latency, &max_latency);
2447
2448     GST_DEBUG_OBJECT (element,
2449         "got min latency %" GST_TIME_FORMAT ", max latency %"
2450         GST_TIME_FORMAT ", live %d", GST_TIME_ARGS (min_latency),
2451         GST_TIME_ARGS (max_latency), live);
2452
2453     if (max_latency < min_latency) {
2454       /* this is an impossible situation, some parts of the pipeline might not
2455        * work correctly. We post a warning for now. */
2456       GST_ELEMENT_WARNING (element, CORE, CLOCK, (NULL),
2457           ("Impossible to configure latency: max %" GST_TIME_FORMAT " < min %"
2458               GST_TIME_FORMAT ". Add queues or other buffering elements.",
2459               GST_TIME_ARGS (max_latency), GST_TIME_ARGS (min_latency)));
2460     }
2461
2462     /* configure latency on elements */
2463     res = gst_element_send_event (element, gst_event_new_latency (min_latency));
2464     if (res) {
2465       GST_INFO_OBJECT (element, "configured latency of %" GST_TIME_FORMAT,
2466           GST_TIME_ARGS (min_latency));
2467     } else {
2468       GST_WARNING_OBJECT (element,
2469           "did not really configure latency of %" GST_TIME_FORMAT,
2470           GST_TIME_ARGS (min_latency));
2471     }
2472   } else {
2473     /* this is not a real problem, we just don't configure any latency. */
2474     GST_WARNING_OBJECT (element, "failed to query latency");
2475   }
2476   gst_query_unref (query);
2477
2478   return res;
2479 }
2480
2481 static void
2482 gst_bin_state_changed (GstElement * element, GstState oldstate,
2483     GstState newstate, GstState pending)
2484 {
2485   GstElementClass *pklass = (GstElementClass *) parent_class;
2486
2487   if (newstate == GST_STATE_PLAYING && pending == GST_STATE_VOID_PENDING)
2488     bin_do_eos (GST_BIN_CAST (element));
2489
2490   if (pklass->state_changed)
2491     pklass->state_changed (element, oldstate, newstate, pending);
2492 }
2493
2494 static GstStateChangeReturn
2495 gst_bin_change_state_func (GstElement * element, GstStateChange transition)
2496 {
2497   GstBin *bin;
2498   GstStateChangeReturn ret;
2499   GstState current, next;
2500   gboolean have_async;
2501   gboolean have_no_preroll;
2502   GstClockTime base_time, start_time;
2503   GstIterator *it;
2504   gboolean done;
2505   GValue data = { 0, };
2506
2507   /* we don't need to take the STATE_LOCK, it is already taken */
2508   current = (GstState) GST_STATE_TRANSITION_CURRENT (transition);
2509   next = (GstState) GST_STATE_TRANSITION_NEXT (transition);
2510
2511   GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
2512       "changing state of children from %s to %s",
2513       gst_element_state_get_name (current), gst_element_state_get_name (next));
2514
2515   bin = GST_BIN_CAST (element);
2516
2517   switch (next) {
2518     case GST_STATE_PLAYING:
2519     {
2520       gboolean toplevel;
2521
2522       GST_OBJECT_LOCK (bin);
2523       toplevel = BIN_IS_TOPLEVEL (bin);
2524       GST_OBJECT_UNLOCK (bin);
2525
2526       if (toplevel)
2527         gst_bin_recalculate_latency (bin);
2528       break;
2529     }
2530     case GST_STATE_PAUSED:
2531       /* Clear EOS list on next PAUSED */
2532       GST_OBJECT_LOCK (bin);
2533       GST_DEBUG_OBJECT (element, "clearing EOS elements");
2534       bin_remove_messages (bin, NULL, GST_MESSAGE_EOS);
2535       bin->priv->posted_eos = FALSE;
2536       if (current == GST_STATE_READY)
2537         bin_remove_messages (bin, NULL, GST_MESSAGE_STREAM_START);
2538       GST_OBJECT_UNLOCK (bin);
2539       if (current == GST_STATE_READY)
2540         if (!(gst_bin_src_pads_activate (bin, TRUE)))
2541           goto activate_failure;
2542       break;
2543     case GST_STATE_READY:
2544       /* Clear message list on next READY */
2545       GST_OBJECT_LOCK (bin);
2546       GST_DEBUG_OBJECT (element, "clearing all cached messages");
2547       bin_remove_messages (bin, NULL, GST_MESSAGE_ANY);
2548       GST_OBJECT_UNLOCK (bin);
2549       if (current == GST_STATE_PAUSED)
2550         if (!(gst_bin_src_pads_activate (bin, FALSE)))
2551           goto activate_failure;
2552       break;
2553     case GST_STATE_NULL:
2554       if (current == GST_STATE_READY)
2555         if (!(gst_bin_src_pads_activate (bin, FALSE)))
2556           goto activate_failure;
2557       break;
2558     default:
2559       break;
2560   }
2561
2562   /* this flag is used to make the async state changes return immediately. We
2563    * don't want them to interfere with this state change */
2564   GST_OBJECT_LOCK (bin);
2565   bin->polling = TRUE;
2566   GST_OBJECT_UNLOCK (bin);
2567
2568   /* iterate in state change order */
2569   it = gst_bin_iterate_sorted (bin);
2570
2571   /* mark if we've seen an ASYNC element in the bin when we did a state change.
2572    * Note how we don't reset this value when a resync happens, the reason being
2573    * that the async element posted ASYNC_START and we want to post ASYNC_DONE
2574    * even after a resync when the async element is gone */
2575   have_async = FALSE;
2576
2577 restart:
2578   /* take base_time */
2579   base_time = gst_element_get_base_time (element);
2580   start_time = gst_element_get_start_time (element);
2581
2582   have_no_preroll = FALSE;
2583
2584   done = FALSE;
2585   while (!done) {
2586     switch (gst_iterator_next (it, &data)) {
2587       case GST_ITERATOR_OK:
2588       {
2589         GstElement *child;
2590
2591         child = g_value_get_object (&data);
2592
2593         /* set state and base_time now */
2594         ret = gst_bin_element_set_state (bin, child, base_time, start_time,
2595             current, next);
2596
2597         switch (ret) {
2598           case GST_STATE_CHANGE_SUCCESS:
2599             GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2600                 "child '%s' changed state to %d(%s) successfully",
2601                 GST_ELEMENT_NAME (child), next,
2602                 gst_element_state_get_name (next));
2603             break;
2604           case GST_STATE_CHANGE_ASYNC:
2605           {
2606             GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2607                 "child '%s' is changing state asynchronously to %s",
2608                 GST_ELEMENT_NAME (child), gst_element_state_get_name (next));
2609             have_async = TRUE;
2610             break;
2611           }
2612           case GST_STATE_CHANGE_FAILURE:{
2613             GstObject *parent;
2614
2615             GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2616                 "child '%s' failed to go to state %d(%s)",
2617                 GST_ELEMENT_NAME (child),
2618                 next, gst_element_state_get_name (next));
2619
2620             /* Only fail if the child is still inside
2621              * this bin. It might've been removed already
2622              * because of the error by the bin subclass
2623              * to ignore the error.  */
2624             parent = gst_object_get_parent (GST_OBJECT_CAST (child));
2625             if (parent == GST_OBJECT_CAST (element)) {
2626               /* element is still in bin, really error now */
2627               gst_object_unref (parent);
2628               goto done;
2629             }
2630             /* child removed from bin, let the resync code redo the state
2631              * change */
2632             GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2633                 "child '%s' was removed from the bin",
2634                 GST_ELEMENT_NAME (child));
2635
2636             if (parent)
2637               gst_object_unref (parent);
2638
2639             break;
2640           }
2641           case GST_STATE_CHANGE_NO_PREROLL:
2642             GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2643                 "child '%s' changed state to %d(%s) successfully without preroll",
2644                 GST_ELEMENT_NAME (child), next,
2645                 gst_element_state_get_name (next));
2646             have_no_preroll = TRUE;
2647             break;
2648           default:
2649             g_assert_not_reached ();
2650             break;
2651         }
2652         g_value_reset (&data);
2653         break;
2654       }
2655       case GST_ITERATOR_RESYNC:
2656         GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element, "iterator doing resync");
2657         gst_iterator_resync (it);
2658         goto restart;
2659       default:
2660       case GST_ITERATOR_DONE:
2661         GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element, "iterator done");
2662         done = TRUE;
2663         break;
2664     }
2665   }
2666
2667   ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
2668   if (G_UNLIKELY (ret == GST_STATE_CHANGE_FAILURE))
2669     goto done;
2670
2671   if (have_no_preroll) {
2672     GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin,
2673         "we have NO_PREROLL elements %s -> NO_PREROLL",
2674         gst_element_state_change_return_get_name (ret));
2675     ret = GST_STATE_CHANGE_NO_PREROLL;
2676   } else if (have_async) {
2677     GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin,
2678         "we have ASYNC elements %s -> ASYNC",
2679         gst_element_state_change_return_get_name (ret));
2680     ret = GST_STATE_CHANGE_ASYNC;
2681   }
2682
2683 done:
2684   g_value_unset (&data);
2685   gst_iterator_free (it);
2686
2687   GST_OBJECT_LOCK (bin);
2688   bin->polling = FALSE;
2689   /* it's possible that we did not get ASYNC from the children while the bin is
2690    * simulating ASYNC behaviour by posting an ASYNC_DONE message on the bus with
2691    * itself as the source. In that case we still want to check if the state
2692    * change completed. */
2693   if (ret != GST_STATE_CHANGE_ASYNC && !bin->priv->pending_async_done) {
2694     /* no element returned ASYNC and there are no pending async_done messages,
2695      * we can just complete. */
2696     GST_DEBUG_OBJECT (bin, "no async elements");
2697     goto state_end;
2698   }
2699   /* when we get here an ASYNC element was found */
2700   if (GST_STATE_TARGET (bin) <= GST_STATE_READY) {
2701     /* we ignore ASYNC state changes when we go to READY or NULL */
2702     GST_DEBUG_OBJECT (bin, "target state %s <= READY",
2703         gst_element_state_get_name (GST_STATE_TARGET (bin)));
2704     goto state_end;
2705   }
2706
2707   GST_DEBUG_OBJECT (bin, "check async elements");
2708   /* check if all elements managed to commit their state already */
2709   if (!find_message (bin, NULL, GST_MESSAGE_ASYNC_START)) {
2710     /* nothing found, remove all old ASYNC_DONE messages. This can happen when
2711      * all the elements commited their state while we were doing the state
2712      * change. We will still return ASYNC for consistency but we commit the
2713      * state already so that a _get_state() will return immediately. */
2714     bin_remove_messages (bin, NULL, GST_MESSAGE_ASYNC_DONE);
2715
2716     GST_DEBUG_OBJECT (bin, "async elements commited");
2717     bin_handle_async_done (bin, GST_STATE_CHANGE_SUCCESS, FALSE,
2718         GST_CLOCK_TIME_NONE);
2719   }
2720
2721 state_end:
2722   bin->priv->pending_async_done = FALSE;
2723   GST_OBJECT_UNLOCK (bin);
2724
2725   GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
2726       "done changing bin's state from %s to %s, now in %s, ret %s",
2727       gst_element_state_get_name (current),
2728       gst_element_state_get_name (next),
2729       gst_element_state_get_name (GST_STATE (element)),
2730       gst_element_state_change_return_get_name (ret));
2731
2732   return ret;
2733
2734   /* ERRORS */
2735 activate_failure:
2736   {
2737     GST_CAT_WARNING_OBJECT (GST_CAT_STATES, element,
2738         "failure (de)activating src pads");
2739     return GST_STATE_CHANGE_FAILURE;
2740   }
2741 }
2742
2743 /*
2744  * This function is a utility event handler for seek events.
2745  * It will send the event to all sinks or sources and appropriate
2746  * ghost pads depending on the event-direction.
2747  *
2748  * Applications are free to override this behaviour and
2749  * implement their own seek handler, but this will work for
2750  * pretty much all cases in practice.
2751  */
2752 static gboolean
2753 gst_bin_send_event (GstElement * element, GstEvent * event)
2754 {
2755   GstBin *bin = GST_BIN_CAST (element);
2756   GstIterator *iter;
2757   gboolean res = TRUE;
2758   gboolean done = FALSE;
2759   GValue data = { 0, };
2760
2761   if (GST_EVENT_IS_DOWNSTREAM (event)) {
2762     iter = gst_bin_iterate_sources (bin);
2763     GST_DEBUG_OBJECT (bin, "Sending %s event to src children",
2764         GST_EVENT_TYPE_NAME (event));
2765   } else {
2766     iter = gst_bin_iterate_sinks (bin);
2767     GST_DEBUG_OBJECT (bin, "Sending %s event to sink children",
2768         GST_EVENT_TYPE_NAME (event));
2769   }
2770
2771   while (!done) {
2772     switch (gst_iterator_next (iter, &data)) {
2773       case GST_ITERATOR_OK:
2774       {
2775         GstElement *child = g_value_get_object (&data);
2776
2777         gst_event_ref (event);
2778         res &= gst_element_send_event (child, event);
2779
2780         GST_LOG_OBJECT (child, "After handling %s event: %d",
2781             GST_EVENT_TYPE_NAME (event), res);
2782
2783         g_value_reset (&data);
2784         break;
2785       }
2786       case GST_ITERATOR_RESYNC:
2787         gst_iterator_resync (iter);
2788         res = TRUE;
2789         break;
2790       case GST_ITERATOR_DONE:
2791         done = TRUE;
2792         break;
2793       case GST_ITERATOR_ERROR:
2794         g_assert_not_reached ();
2795         break;
2796     }
2797   }
2798   g_value_unset (&data);
2799   gst_iterator_free (iter);
2800
2801   if (GST_EVENT_IS_DOWNSTREAM (event)) {
2802     iter = gst_element_iterate_sink_pads (GST_ELEMENT (bin));
2803     GST_DEBUG_OBJECT (bin, "Sending %s event to sink pads",
2804         GST_EVENT_TYPE_NAME (event));
2805   } else {
2806     iter = gst_element_iterate_src_pads (GST_ELEMENT (bin));
2807     GST_DEBUG_OBJECT (bin, "Sending %s event to src pads",
2808         GST_EVENT_TYPE_NAME (event));
2809   }
2810
2811   done = FALSE;
2812   while (!done) {
2813     switch (gst_iterator_next (iter, &data)) {
2814       case GST_ITERATOR_OK:
2815       {
2816         GstPad *pad = g_value_get_object (&data);
2817
2818         gst_event_ref (event);
2819         res &= gst_pad_send_event (pad, event);
2820         GST_LOG_OBJECT (pad, "After handling %s event: %d",
2821             GST_EVENT_TYPE_NAME (event), res);
2822         break;
2823       }
2824       case GST_ITERATOR_RESYNC:
2825         gst_iterator_resync (iter);
2826         res = TRUE;
2827         break;
2828       case GST_ITERATOR_DONE:
2829         done = TRUE;
2830         break;
2831       case GST_ITERATOR_ERROR:
2832         g_assert_not_reached ();
2833         break;
2834     }
2835   }
2836
2837   g_value_unset (&data);
2838   gst_iterator_free (iter);
2839   gst_event_unref (event);
2840
2841   return res;
2842 }
2843
2844 /* this is the function called by the threadpool. When async elements commit
2845  * their state, this function will attempt to bring the bin to the next state.
2846  */
2847 static void
2848 gst_bin_continue_func (BinContinueData * data)
2849 {
2850   GstBin *bin;
2851   GstState current, next, pending;
2852   GstStateChange transition;
2853
2854   bin = data->bin;
2855   pending = data->pending;
2856
2857   GST_DEBUG_OBJECT (bin, "waiting for state lock");
2858   GST_STATE_LOCK (bin);
2859
2860   GST_DEBUG_OBJECT (bin, "doing state continue");
2861   GST_OBJECT_LOCK (bin);
2862
2863   /* if a new state change happened after this thread was scheduled, we return
2864    * immediately. */
2865   if (data->cookie != GST_ELEMENT_CAST (bin)->state_cookie)
2866     goto interrupted;
2867
2868   current = GST_STATE (bin);
2869   next = GST_STATE_GET_NEXT (current, pending);
2870   transition = (GstStateChange) GST_STATE_TRANSITION (current, next);
2871
2872   GST_STATE_NEXT (bin) = next;
2873   GST_STATE_PENDING (bin) = pending;
2874   /* mark busy */
2875   GST_STATE_RETURN (bin) = GST_STATE_CHANGE_ASYNC;
2876   GST_OBJECT_UNLOCK (bin);
2877
2878   GST_CAT_INFO_OBJECT (GST_CAT_STATES, bin,
2879       "continue state change %s to %s, final %s",
2880       gst_element_state_get_name (current),
2881       gst_element_state_get_name (next), gst_element_state_get_name (pending));
2882
2883   gst_element_change_state (GST_ELEMENT_CAST (bin), transition);
2884
2885   GST_STATE_UNLOCK (bin);
2886   GST_DEBUG_OBJECT (bin, "state continue done");
2887
2888   gst_object_unref (bin);
2889   g_slice_free (BinContinueData, data);
2890   return;
2891
2892 interrupted:
2893   {
2894     GST_OBJECT_UNLOCK (bin);
2895     GST_STATE_UNLOCK (bin);
2896     GST_DEBUG_OBJECT (bin, "state continue aborted due to intervening change");
2897     gst_object_unref (bin);
2898     g_slice_free (BinContinueData, data);
2899     return;
2900   }
2901 }
2902
2903 static GstBusSyncReply
2904 bin_bus_handler (GstBus * bus, GstMessage * message, GstBin * bin)
2905 {
2906   GstBinClass *bclass;
2907
2908   bclass = GST_BIN_GET_CLASS (bin);
2909   if (bclass->handle_message)
2910     bclass->handle_message (bin, message);
2911   else
2912     gst_message_unref (message);
2913
2914   return GST_BUS_DROP;
2915 }
2916
2917 static void
2918 bin_push_state_continue (BinContinueData * data)
2919 {
2920   GstBinClass *klass;
2921   GstBin *bin;
2922
2923   /* ref was taken */
2924   bin = data->bin;
2925   klass = GST_BIN_GET_CLASS (bin);
2926
2927   GST_DEBUG_OBJECT (bin, "pushing continue on thread pool");
2928   g_thread_pool_push (klass->pool, data, NULL);
2929 }
2930
2931 /* an element started an async state change, if we were not busy with a state
2932  * change, we perform a lost state.
2933  * This function is called with the OBJECT lock.
2934  */
2935 static void
2936 bin_handle_async_start (GstBin * bin)
2937 {
2938   GstState old_state, new_state;
2939   gboolean toplevel;
2940   GstMessage *amessage = NULL;
2941
2942   if (GST_STATE_RETURN (bin) == GST_STATE_CHANGE_FAILURE)
2943     goto had_error;
2944
2945   /* get our toplevel state */
2946   toplevel = BIN_IS_TOPLEVEL (bin);
2947
2948   /* prepare an ASYNC_START message, we always post the start message even if we
2949    * are busy with a state change or when we are NO_PREROLL. */
2950   if (!toplevel)
2951     /* non toplevel bin, prepare async-start for the parent */
2952     amessage = gst_message_new_async_start (GST_OBJECT_CAST (bin));
2953
2954   if (bin->polling || GST_STATE_PENDING (bin) != GST_STATE_VOID_PENDING)
2955     goto was_busy;
2956
2957   /* async starts are ignored when we are NO_PREROLL */
2958   if (GST_STATE_RETURN (bin) == GST_STATE_CHANGE_NO_PREROLL)
2959     goto was_no_preroll;
2960
2961   old_state = GST_STATE (bin);
2962
2963   /* when we PLAYING we go back to PAUSED, when preroll happens, we go back to
2964    * PLAYING after optionally redistributing the base_time. */
2965   if (old_state > GST_STATE_PAUSED)
2966     new_state = GST_STATE_PAUSED;
2967   else
2968     new_state = old_state;
2969
2970   GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin,
2971       "lost state of %s, new %s", gst_element_state_get_name (old_state),
2972       gst_element_state_get_name (new_state));
2973
2974   GST_STATE (bin) = new_state;
2975   GST_STATE_NEXT (bin) = new_state;
2976   GST_STATE_PENDING (bin) = new_state;
2977   GST_STATE_RETURN (bin) = GST_STATE_CHANGE_ASYNC;
2978   GST_OBJECT_UNLOCK (bin);
2979
2980   /* post message */
2981   _priv_gst_element_state_changed (GST_ELEMENT_CAST (bin), new_state, new_state,
2982       new_state);
2983
2984 post_start:
2985   if (amessage) {
2986     /* post our ASYNC_START. */
2987     GST_DEBUG_OBJECT (bin, "posting ASYNC_START to parent");
2988     gst_element_post_message (GST_ELEMENT_CAST (bin), amessage);
2989   }
2990   GST_OBJECT_LOCK (bin);
2991
2992   return;
2993
2994 had_error:
2995   {
2996     GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin, "we had an error");
2997     return;
2998   }
2999 was_busy:
3000   {
3001     GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin, "state change busy");
3002     GST_OBJECT_UNLOCK (bin);
3003     goto post_start;
3004   }
3005 was_no_preroll:
3006   {
3007     GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin, "ignoring, we are NO_PREROLL");
3008     GST_OBJECT_UNLOCK (bin);
3009     goto post_start;
3010   }
3011 }
3012
3013 /* this function is called when there are no more async elements in the bin. We
3014  * post a state changed message and an ASYNC_DONE message.
3015  * This function is called with the OBJECT lock.
3016  */
3017 static void
3018 bin_handle_async_done (GstBin * bin, GstStateChangeReturn ret,
3019     gboolean flag_pending, GstClockTime running_time)
3020 {
3021   GstState current, pending, target;
3022   GstStateChangeReturn old_ret;
3023   GstState old_state, old_next;
3024   gboolean toplevel, state_changed = FALSE;
3025   GstMessage *amessage = NULL;
3026   BinContinueData *cont = NULL;
3027
3028   if (GST_STATE_RETURN (bin) == GST_STATE_CHANGE_FAILURE)
3029     goto had_error;
3030
3031   pending = GST_STATE_PENDING (bin);
3032
3033   if (bin->polling)
3034     goto was_busy;
3035
3036   /* check if there is something to commit */
3037   if (pending == GST_STATE_VOID_PENDING)
3038     goto nothing_pending;
3039
3040   old_ret = GST_STATE_RETURN (bin);
3041   GST_STATE_RETURN (bin) = ret;
3042
3043   /* move to the next target state */
3044   target = GST_STATE_TARGET (bin);
3045   pending = GST_STATE_PENDING (bin) = target;
3046
3047   amessage = gst_message_new_async_done (GST_OBJECT_CAST (bin), running_time);
3048
3049   old_state = GST_STATE (bin);
3050   /* this is the state we should go to next */
3051   old_next = GST_STATE_NEXT (bin);
3052
3053   if (old_next != GST_STATE_PLAYING) {
3054     GST_CAT_INFO_OBJECT (GST_CAT_STATES, bin,
3055         "committing state from %s to %s, old pending %s",
3056         gst_element_state_get_name (old_state),
3057         gst_element_state_get_name (old_next),
3058         gst_element_state_get_name (pending));
3059
3060     /* update current state */
3061     current = GST_STATE (bin) = old_next;
3062   } else {
3063     GST_CAT_INFO_OBJECT (GST_CAT_STATES, bin,
3064         "setting state from %s to %s, pending %s",
3065         gst_element_state_get_name (old_state),
3066         gst_element_state_get_name (old_state),
3067         gst_element_state_get_name (pending));
3068     current = old_state;
3069   }
3070
3071   /* get our toplevel state */
3072   toplevel = BIN_IS_TOPLEVEL (bin);
3073
3074   /* see if we reached the final state. If we are not toplevel, we also have to
3075    * stop here, the parent will continue our state. */
3076   if ((pending == current) || !toplevel) {
3077     GST_CAT_INFO_OBJECT (GST_CAT_STATES, bin,
3078         "completed state change, pending VOID");
3079
3080     /* mark VOID pending */
3081     pending = GST_STATE_VOID_PENDING;
3082     GST_STATE_PENDING (bin) = pending;
3083     GST_STATE_NEXT (bin) = GST_STATE_VOID_PENDING;
3084   } else {
3085     GST_CAT_INFO_OBJECT (GST_CAT_STATES, bin,
3086         "continue state change, pending %s",
3087         gst_element_state_get_name (pending));
3088
3089     cont = g_slice_new (BinContinueData);
3090
3091     /* ref to the bin */
3092     cont->bin = gst_object_ref (bin);
3093     /* cookie to detect concurrent state change */
3094     cont->cookie = GST_ELEMENT_CAST (bin)->state_cookie;
3095     /* pending target state */
3096     cont->pending = pending;
3097     /* mark busy */
3098     GST_STATE_RETURN (bin) = GST_STATE_CHANGE_ASYNC;
3099     GST_STATE_NEXT (bin) = GST_STATE_GET_NEXT (old_state, pending);
3100   }
3101
3102   if (old_next != GST_STATE_PLAYING) {
3103     if (old_state != old_next || old_ret == GST_STATE_CHANGE_ASYNC) {
3104       state_changed = TRUE;
3105     }
3106   }
3107   GST_OBJECT_UNLOCK (bin);
3108
3109   if (state_changed) {
3110     _priv_gst_element_state_changed (GST_ELEMENT_CAST (bin), old_state,
3111         old_next, pending);
3112   }
3113   if (amessage) {
3114     /* post our combined ASYNC_DONE when all is ASYNC_DONE. */
3115     GST_DEBUG_OBJECT (bin, "posting ASYNC_DONE to parent");
3116     gst_element_post_message (GST_ELEMENT_CAST (bin), amessage);
3117   }
3118
3119   GST_OBJECT_LOCK (bin);
3120   if (cont) {
3121     /* toplevel, start continue state */
3122     GST_DEBUG_OBJECT (bin, "all async-done, starting state continue");
3123     bin_push_state_continue (cont);
3124   } else {
3125     GST_DEBUG_OBJECT (bin, "state change complete");
3126     GST_STATE_BROADCAST (bin);
3127   }
3128   return;
3129
3130 had_error:
3131   {
3132     GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin, "we had an error");
3133     return;
3134   }
3135 was_busy:
3136   {
3137     GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin, "state change busy");
3138     /* if we were busy with a state change and we are requested to flag a
3139      * pending async done, we do so here */
3140     if (flag_pending)
3141       bin->priv->pending_async_done = TRUE;
3142     return;
3143   }
3144 nothing_pending:
3145   {
3146     GST_CAT_INFO_OBJECT (GST_CAT_STATES, bin, "nothing pending");
3147     return;
3148   }
3149 }
3150
3151 static void
3152 bin_do_eos (GstBin * bin)
3153 {
3154   guint32 seqnum = 0;
3155   gboolean eos;
3156
3157   GST_OBJECT_LOCK (bin);
3158   /* If all sinks are EOS, we're in PLAYING and no state change is pending
3159    * we forward the EOS message to the parent bin or application
3160    */
3161   eos = GST_STATE (bin) == GST_STATE_PLAYING
3162       && GST_STATE_PENDING (bin) == GST_STATE_VOID_PENDING
3163       && is_eos (bin, &seqnum);
3164   GST_OBJECT_UNLOCK (bin);
3165
3166   if (eos
3167       && g_atomic_int_compare_and_exchange (&bin->priv->posted_eos, FALSE,
3168           TRUE)) {
3169     GstMessage *tmessage;
3170
3171     /* Clear out any further messages, and reset posted_eos so we can
3172        detect any new EOS that happens (eg, after a seek). Since all
3173        sinks have now posted an EOS, there will be no further EOS events
3174        seen unless there is a new logical EOS */
3175     GST_OBJECT_LOCK (bin);
3176     bin_remove_messages (bin, NULL, GST_MESSAGE_EOS);
3177     bin->priv->posted_eos = FALSE;
3178     GST_OBJECT_UNLOCK (bin);
3179
3180     tmessage = gst_message_new_eos (GST_OBJECT_CAST (bin));
3181     gst_message_set_seqnum (tmessage, seqnum);
3182     GST_DEBUG_OBJECT (bin,
3183         "all sinks posted EOS, posting seqnum #%" G_GUINT32_FORMAT, seqnum);
3184     gst_element_post_message (GST_ELEMENT_CAST (bin), tmessage);
3185   }
3186 }
3187
3188 static void
3189 bin_do_stream_start (GstBin * bin)
3190 {
3191   guint32 seqnum = 0;
3192   gboolean stream_start;
3193
3194   GST_OBJECT_LOCK (bin);
3195   /* If all sinks are STREAM_START we forward the STREAM_START message
3196    * to the parent bin or application
3197    */
3198   stream_start = is_stream_start (bin, &seqnum);
3199   GST_OBJECT_UNLOCK (bin);
3200
3201   if (stream_start) {
3202     GstMessage *tmessage;
3203
3204     GST_OBJECT_LOCK (bin);
3205     bin_remove_messages (bin, NULL, GST_MESSAGE_STREAM_START);
3206     GST_OBJECT_UNLOCK (bin);
3207
3208     tmessage = gst_message_new_stream_start (GST_OBJECT_CAST (bin));
3209     gst_message_set_seqnum (tmessage, seqnum);
3210     GST_DEBUG_OBJECT (bin,
3211         "all sinks posted STREAM_START, posting seqnum #%" G_GUINT32_FORMAT,
3212         seqnum);
3213     gst_element_post_message (GST_ELEMENT_CAST (bin), tmessage);
3214   }
3215 }
3216
3217 /* must be called with the object lock. This function releases the lock to post
3218  * the message. */
3219 static void
3220 bin_do_message_forward (GstBin * bin, GstMessage * message)
3221 {
3222   if (bin->priv->message_forward) {
3223     GstMessage *forwarded;
3224
3225     GST_DEBUG_OBJECT (bin, "pass %s message upward",
3226         GST_MESSAGE_TYPE_NAME (message));
3227     GST_OBJECT_UNLOCK (bin);
3228
3229     /* we need to convert these messages to element messages so that our parent
3230      * bin can easily ignore them and so that the application can easily
3231      * distinguish between the internally forwarded and the real messages. */
3232     forwarded = gst_message_new_element (GST_OBJECT_CAST (bin),
3233         gst_structure_new ("GstBinForwarded",
3234             "message", GST_TYPE_MESSAGE, message, NULL));
3235
3236     gst_element_post_message (GST_ELEMENT_CAST (bin), forwarded);
3237
3238     GST_OBJECT_LOCK (bin);
3239   }
3240 }
3241
3242 /* handle child messages:
3243  *
3244  * This method is called synchronously when a child posts a message on
3245  * the internal bus.
3246  *
3247  * GST_MESSAGE_EOS: This message is only posted by sinks
3248  *     in the PLAYING state. If all sinks posted the EOS message, post
3249  *     one upwards.
3250  *
3251  * GST_MESSAGE_STATE_DIRTY: Deprecated
3252  *
3253  * GST_MESSAGE_SEGMENT_START: just collect, never forward upwards. If an
3254  *     element posts segment_start twice, only the last message is kept.
3255  *
3256  * GST_MESSAGE_SEGMENT_DONE: replace SEGMENT_START message from same poster
3257  *     with the segment_done message. If there are no more segment_start
3258  *     messages, post segment_done message upwards.
3259  *
3260  * GST_MESSAGE_DURATION_CHANGED: clear any cached durations.
3261  *     Whenever someone performs a duration query on the bin, we store the
3262  *     result so we can answer it quicker the next time. Any element that
3263  *     changes its duration marks our cached values invalid.
3264  *     This message is also posted upwards. This is currently disabled
3265  *     because too many elements don't post DURATION_CHANGED messages when
3266  *     the duration changes.
3267  *
3268  * GST_MESSAGE_CLOCK_LOST: This message is posted by an element when it
3269  *     can no longer provide a clock. The default bin behaviour is to
3270  *     check if the lost clock was the one provided by the bin. If so and
3271  *     we are currently in the PLAYING state, we forward the message to
3272  *     our parent.
3273  *     This message is also generated when we remove a clock provider from
3274  *     a bin. If this message is received by the application, it should
3275  *     PAUSE the pipeline and set it back to PLAYING to force a new clock
3276  *     and a new base_time distribution.
3277  *
3278  * GST_MESSAGE_CLOCK_PROVIDE: This message is generated when an element
3279  *     can provide a clock. This mostly happens when we add a new clock
3280  *     provider to the bin. The default behaviour of the bin is to mark the
3281  *     currently selected clock as dirty, which will perform a clock
3282  *     recalculation the next time we are asked to provide a clock.
3283  *     This message is never sent to the application but is forwarded to
3284  *     the parent.
3285  *
3286  * GST_MESSAGE_ASYNC_START: Create an internal ELEMENT message that stores
3287  *     the state of the element and the fact that the element will need a
3288  *     new base_time. This message is not forwarded to the application.
3289  *
3290  * GST_MESSAGE_ASYNC_DONE: Find the internal ELEMENT message we kept for the
3291  *     element when it posted ASYNC_START. If all elements are done, post a
3292  *     ASYNC_DONE message to the parent.
3293  *
3294  * OTHER: post upwards.
3295  */
3296 static void
3297 gst_bin_handle_message_func (GstBin * bin, GstMessage * message)
3298 {
3299   GstObject *src;
3300   GstMessageType type;
3301   GstMessage *tmessage;
3302   guint32 seqnum;
3303
3304   src = GST_MESSAGE_SRC (message);
3305   type = GST_MESSAGE_TYPE (message);
3306
3307   GST_DEBUG_OBJECT (bin, "[msg %p] handling child %s message of type %s",
3308       message, src ? GST_ELEMENT_NAME (src) : "(NULL)",
3309       GST_MESSAGE_TYPE_NAME (message));
3310
3311   switch (type) {
3312     case GST_MESSAGE_ERROR:
3313     {
3314       GST_OBJECT_LOCK (bin);
3315       /* flag error */
3316       GST_DEBUG_OBJECT (bin, "got ERROR message, unlocking state change");
3317       GST_STATE_RETURN (bin) = GST_STATE_CHANGE_FAILURE;
3318       GST_STATE_BROADCAST (bin);
3319       GST_OBJECT_UNLOCK (bin);
3320
3321       goto forward;
3322     }
3323     case GST_MESSAGE_EOS:
3324     {
3325
3326       /* collect all eos messages from the children */
3327       GST_OBJECT_LOCK (bin);
3328       bin_do_message_forward (bin, message);
3329       /* ref message for future use  */
3330       bin_replace_message (bin, message, GST_MESSAGE_EOS);
3331       GST_OBJECT_UNLOCK (bin);
3332
3333       bin_do_eos (bin);
3334       break;
3335     }
3336     case GST_MESSAGE_STREAM_START:
3337     {
3338
3339       /* collect all stream_start messages from the children */
3340       GST_OBJECT_LOCK (bin);
3341       /* ref message for future use  */
3342       bin_replace_message (bin, message, GST_MESSAGE_STREAM_START);
3343       GST_OBJECT_UNLOCK (bin);
3344
3345       bin_do_stream_start (bin);
3346       break;
3347     }
3348     case GST_MESSAGE_STATE_DIRTY:
3349     {
3350       GST_WARNING_OBJECT (bin, "received deprecated STATE_DIRTY message");
3351
3352       /* free message */
3353       gst_message_unref (message);
3354       break;
3355     }
3356     case GST_MESSAGE_SEGMENT_START:{
3357       gboolean post = FALSE;
3358       GstFormat format;
3359       gint64 position;
3360
3361       gst_message_parse_segment_start (message, &format, &position);
3362       seqnum = gst_message_get_seqnum (message);
3363
3364       GST_OBJECT_LOCK (bin);
3365       bin_do_message_forward (bin, message);
3366       /* if this is the first segment-start, post to parent but not to the
3367        * application */
3368       if (!find_message (bin, NULL, GST_MESSAGE_SEGMENT_START) &&
3369           (GST_OBJECT_PARENT (bin) != NULL)) {
3370         post = TRUE;
3371       }
3372       /* replace any previous segment_start message from this source
3373        * with the new segment start message */
3374       bin_replace_message (bin, message, GST_MESSAGE_SEGMENT_START);
3375       GST_OBJECT_UNLOCK (bin);
3376       if (post) {
3377         tmessage = gst_message_new_segment_start (GST_OBJECT_CAST (bin),
3378             format, position);
3379         gst_message_set_seqnum (tmessage, seqnum);
3380
3381         /* post segment start with initial format and position. */
3382         GST_DEBUG_OBJECT (bin, "posting SEGMENT_START (%u) bus message: %p",
3383             seqnum, message);
3384         gst_element_post_message (GST_ELEMENT_CAST (bin), tmessage);
3385       }
3386       break;
3387     }
3388     case GST_MESSAGE_SEGMENT_DONE:
3389     {
3390       gboolean post = FALSE;
3391       GstFormat format;
3392       gint64 position;
3393
3394       gst_message_parse_segment_done (message, &format, &position);
3395       seqnum = gst_message_get_seqnum (message);
3396
3397       GST_OBJECT_LOCK (bin);
3398       bin_do_message_forward (bin, message);
3399       bin_replace_message (bin, message, GST_MESSAGE_SEGMENT_START);
3400       /* if there are no more segment_start messages, everybody posted
3401        * a segment_done and we can post one on the bus. */
3402
3403       /* we don't care who still has a pending segment start */
3404       if (!find_message (bin, NULL, GST_MESSAGE_SEGMENT_START)) {
3405         /* nothing found */
3406         post = TRUE;
3407         /* remove all old segment_done messages */
3408         bin_remove_messages (bin, NULL, GST_MESSAGE_SEGMENT_DONE);
3409       }
3410       GST_OBJECT_UNLOCK (bin);
3411       if (post) {
3412         tmessage = gst_message_new_segment_done (GST_OBJECT_CAST (bin),
3413             format, position);
3414         gst_message_set_seqnum (tmessage, seqnum);
3415
3416         /* post segment done with latest format and position. */
3417         GST_DEBUG_OBJECT (bin, "posting SEGMENT_DONE (%u) bus message: %p",
3418             seqnum, message);
3419         gst_element_post_message (GST_ELEMENT_CAST (bin), tmessage);
3420       }
3421       break;
3422     }
3423     case GST_MESSAGE_DURATION_CHANGED:
3424     {
3425       /* FIXME: remove all cached durations, next time somebody asks
3426        * for duration, we will recalculate. */
3427 #if 0
3428       GST_OBJECT_LOCK (bin);
3429       bin_remove_messages (bin, NULL, GST_MESSAGE_DURATION_CHANGED);
3430       GST_OBJECT_UNLOCK (bin);
3431 #endif
3432       goto forward;
3433     }
3434     case GST_MESSAGE_CLOCK_LOST:
3435     {
3436       GstClock **provided_clock_p;
3437       GstElement **clock_provider_p;
3438       gboolean playing, provided, forward;
3439       GstClock *clock;
3440
3441       gst_message_parse_clock_lost (message, &clock);
3442
3443       GST_OBJECT_LOCK (bin);
3444       bin->clock_dirty = TRUE;
3445       /* if we lost the clock that we provided, post to parent but
3446        * only if we are PLAYING. */
3447       provided = (clock == bin->provided_clock);
3448       playing = (GST_STATE (bin) == GST_STATE_PLAYING);
3449       forward = playing & provided;
3450       if (provided) {
3451         GST_DEBUG_OBJECT (bin,
3452             "Lost clock %" GST_PTR_FORMAT " provided by %" GST_PTR_FORMAT,
3453             bin->provided_clock, bin->clock_provider);
3454         provided_clock_p = &bin->provided_clock;
3455         clock_provider_p = &bin->clock_provider;
3456         gst_object_replace ((GstObject **) provided_clock_p, NULL);
3457         gst_object_replace ((GstObject **) clock_provider_p, NULL);
3458       }
3459       GST_DEBUG_OBJECT (bin, "provided %d, playing %d, forward %d",
3460           provided, playing, forward);
3461       GST_OBJECT_UNLOCK (bin);
3462
3463       if (forward)
3464         goto forward;
3465
3466       /* free message */
3467       gst_message_unref (message);
3468       break;
3469     }
3470     case GST_MESSAGE_CLOCK_PROVIDE:
3471     {
3472       gboolean forward;
3473
3474       GST_OBJECT_LOCK (bin);
3475       bin->clock_dirty = TRUE;
3476       /* a new clock is available, post to parent but not
3477        * to the application */
3478       forward = GST_OBJECT_PARENT (bin) != NULL;
3479       GST_OBJECT_UNLOCK (bin);
3480
3481       if (forward)
3482         goto forward;
3483
3484       /* free message */
3485       gst_message_unref (message);
3486       break;
3487     }
3488     case GST_MESSAGE_ASYNC_START:
3489     {
3490       GstState target;
3491
3492       GST_DEBUG_OBJECT (bin, "ASYNC_START message %p, %s", message,
3493           src ? GST_OBJECT_NAME (src) : "(NULL)");
3494
3495       GST_OBJECT_LOCK (bin);
3496       bin_do_message_forward (bin, message);
3497
3498       /* we ignore the message if we are going to <= READY */
3499       if ((target = GST_STATE_TARGET (bin)) <= GST_STATE_READY)
3500         goto ignore_start_message;
3501
3502       /* takes ownership of the message */
3503       bin_replace_message (bin, message, GST_MESSAGE_ASYNC_START);
3504
3505       bin_handle_async_start (bin);
3506       GST_OBJECT_UNLOCK (bin);
3507       break;
3508
3509     ignore_start_message:
3510       {
3511         GST_DEBUG_OBJECT (bin, "ignoring message, target %s",
3512             gst_element_state_get_name (target));
3513         GST_OBJECT_UNLOCK (bin);
3514         gst_message_unref (message);
3515         break;
3516       }
3517     }
3518     case GST_MESSAGE_ASYNC_DONE:
3519     {
3520       GstClockTime running_time;
3521       GstState target;
3522
3523       GST_DEBUG_OBJECT (bin, "ASYNC_DONE message %p, %s", message,
3524           src ? GST_OBJECT_NAME (src) : "(NULL)");
3525
3526       gst_message_parse_async_done (message, &running_time);
3527
3528       GST_OBJECT_LOCK (bin);
3529       bin_do_message_forward (bin, message);
3530
3531       /* ignore messages if we are shutting down */
3532       if ((target = GST_STATE_TARGET (bin)) <= GST_STATE_READY)
3533         goto ignore_done_message;
3534
3535       bin_replace_message (bin, message, GST_MESSAGE_ASYNC_START);
3536       /* if there are no more ASYNC_START messages, everybody posted
3537        * a ASYNC_DONE and we can post one on the bus. When checking, we
3538        * don't care who still has a pending ASYNC_START */
3539       if (!find_message (bin, NULL, GST_MESSAGE_ASYNC_START)) {
3540         /* nothing found, remove all old ASYNC_DONE messages */
3541         bin_remove_messages (bin, NULL, GST_MESSAGE_ASYNC_DONE);
3542
3543         GST_DEBUG_OBJECT (bin, "async elements commited");
3544         /* when we get an async done message when a state change was busy, we
3545          * need to set the pending_done flag so that at the end of the state
3546          * change we can see if we need to verify pending async elements, hence
3547          * the TRUE argument here. */
3548         bin_handle_async_done (bin, GST_STATE_CHANGE_SUCCESS, TRUE,
3549             running_time);
3550       } else {
3551         GST_DEBUG_OBJECT (bin, "there are more async elements pending");
3552       }
3553       GST_OBJECT_UNLOCK (bin);
3554       break;
3555
3556     ignore_done_message:
3557       {
3558         GST_DEBUG_OBJECT (bin, "ignoring message, target %s",
3559             gst_element_state_get_name (target));
3560         GST_OBJECT_UNLOCK (bin);
3561         gst_message_unref (message);
3562         break;
3563       }
3564     }
3565     case GST_MESSAGE_STRUCTURE_CHANGE:
3566     {
3567       gboolean busy;
3568
3569       gst_message_parse_structure_change (message, NULL, NULL, &busy);
3570
3571       GST_OBJECT_LOCK (bin);
3572       if (busy) {
3573         /* while the pad is busy, avoid following it when doing state changes.
3574          * Don't update the cookie yet, we will do that after the structure
3575          * change finished and we are ready to inspect the new updated
3576          * structure. */
3577         bin_replace_message (bin, message, GST_MESSAGE_STRUCTURE_CHANGE);
3578         message = NULL;
3579       } else {
3580         /* a pad link/unlink ended, signal the state change iterator that we
3581          * need to resync by updating the structure_cookie. */
3582         bin_remove_messages (bin, GST_MESSAGE_SRC (message),
3583             GST_MESSAGE_STRUCTURE_CHANGE);
3584         if (!GST_BIN_IS_NO_RESYNC (bin))
3585           bin->priv->structure_cookie++;
3586       }
3587       GST_OBJECT_UNLOCK (bin);
3588
3589       if (message)
3590         gst_message_unref (message);
3591
3592       break;
3593     }
3594     default:
3595       goto forward;
3596   }
3597   return;
3598
3599 forward:
3600   {
3601     /* Send all other messages upward */
3602     GST_DEBUG_OBJECT (bin, "posting message upward");
3603     gst_element_post_message (GST_ELEMENT_CAST (bin), message);
3604     return;
3605   }
3606 }
3607
3608 /* generic struct passed to all query fold methods */
3609 typedef struct
3610 {
3611   GstQuery *query;
3612   gint64 min;
3613   gint64 max;
3614   gboolean live;
3615 } QueryFold;
3616
3617 typedef void (*QueryInitFunction) (GstBin * bin, QueryFold * fold);
3618 typedef void (*QueryDoneFunction) (GstBin * bin, QueryFold * fold);
3619
3620 /* for duration/position we collect all durations/positions and take
3621  * the MAX of all valid results */
3622 static void
3623 bin_query_min_max_init (GstBin * bin, QueryFold * fold)
3624 {
3625   fold->min = 0;
3626   fold->max = -1;
3627   fold->live = FALSE;
3628 }
3629
3630 static gboolean
3631 bin_query_duration_fold (const GValue * vitem, GValue * ret, QueryFold * fold)
3632 {
3633   gboolean res = FALSE;
3634   GstObject *item = g_value_get_object (vitem);
3635   if (GST_IS_PAD (item))
3636     res = gst_pad_query (GST_PAD (item), fold->query);
3637   else
3638     res = gst_element_query (GST_ELEMENT (item), fold->query);
3639
3640   if (res) {
3641     gint64 duration;
3642
3643     g_value_set_boolean (ret, TRUE);
3644
3645     gst_query_parse_duration (fold->query, NULL, &duration);
3646
3647     GST_DEBUG_OBJECT (item, "got duration %" G_GINT64_FORMAT, duration);
3648
3649     if (duration == -1) {
3650       /* duration query succeeded, but duration is unknown */
3651       fold->max = -1;
3652       return FALSE;
3653     }
3654
3655     if (duration > fold->max)
3656       fold->max = duration;
3657   }
3658
3659   return TRUE;
3660 }
3661
3662 static void
3663 bin_query_duration_done (GstBin * bin, QueryFold * fold)
3664 {
3665   GstFormat format;
3666
3667   gst_query_parse_duration (fold->query, &format, NULL);
3668   /* store max in query result */
3669   gst_query_set_duration (fold->query, format, fold->max);
3670
3671   GST_DEBUG_OBJECT (bin, "max duration %" G_GINT64_FORMAT, fold->max);
3672
3673   /* FIXME: re-implement duration caching */
3674 #if 0
3675   /* and cache now */
3676   GST_OBJECT_LOCK (bin);
3677   bin->messages = g_list_prepend (bin->messages,
3678       gst_message_new_duration (GST_OBJECT_CAST (bin), format, fold->max));
3679   GST_OBJECT_UNLOCK (bin);
3680 #endif
3681 }
3682
3683 static gboolean
3684 bin_query_position_fold (const GValue * vitem, GValue * ret, QueryFold * fold)
3685 {
3686   gboolean res = FALSE;
3687   GstObject *item = g_value_get_object (vitem);
3688   if (GST_IS_PAD (item))
3689     res = gst_pad_query (GST_PAD (item), fold->query);
3690   else
3691     res = gst_element_query (GST_ELEMENT (item), fold->query);
3692
3693   if (res) {
3694     gint64 position;
3695
3696     g_value_set_boolean (ret, TRUE);
3697
3698     gst_query_parse_position (fold->query, NULL, &position);
3699
3700     GST_DEBUG_OBJECT (item, "got position %" G_GINT64_FORMAT, position);
3701
3702     if (position > fold->max)
3703       fold->max = position;
3704   }
3705
3706   return TRUE;
3707 }
3708
3709 static void
3710 bin_query_position_done (GstBin * bin, QueryFold * fold)
3711 {
3712   GstFormat format;
3713
3714   gst_query_parse_position (fold->query, &format, NULL);
3715   /* store max in query result */
3716   gst_query_set_position (fold->query, format, fold->max);
3717
3718   GST_DEBUG_OBJECT (bin, "max position %" G_GINT64_FORMAT, fold->max);
3719 }
3720
3721 static gboolean
3722 bin_query_latency_fold (const GValue * vitem, GValue * ret, QueryFold * fold)
3723 {
3724   gboolean res = FALSE;
3725   GstObject *item = g_value_get_object (vitem);
3726   if (GST_IS_PAD (item))
3727     res = gst_pad_query (GST_PAD (item), fold->query);
3728   else
3729     res = gst_element_query (GST_ELEMENT (item), fold->query);
3730   if (res) {
3731     GstClockTime min, max;
3732     gboolean live;
3733
3734     gst_query_parse_latency (fold->query, &live, &min, &max);
3735
3736     GST_DEBUG_OBJECT (item,
3737         "got latency min %" GST_TIME_FORMAT ", max %" GST_TIME_FORMAT
3738         ", live %d", GST_TIME_ARGS (min), GST_TIME_ARGS (max), live);
3739
3740     /* for the combined latency we collect the MAX of all min latencies and
3741      * the MIN of all max latencies */
3742     if (live) {
3743       if (min > fold->min)
3744         fold->min = min;
3745       if (fold->max == -1)
3746         fold->max = max;
3747       else if (max < fold->max)
3748         fold->max = max;
3749       if (fold->live == FALSE)
3750         fold->live = live;
3751     }
3752   } else {
3753     g_value_set_boolean (ret, FALSE);
3754     GST_DEBUG_OBJECT (item, "failed query");
3755   }
3756
3757   return TRUE;
3758 }
3759
3760 static void
3761 bin_query_latency_done (GstBin * bin, QueryFold * fold)
3762 {
3763   /* store max in query result */
3764   gst_query_set_latency (fold->query, fold->live, fold->min, fold->max);
3765
3766   GST_DEBUG_OBJECT (bin,
3767       "latency min %" GST_TIME_FORMAT ", max %" GST_TIME_FORMAT
3768       ", live %d", GST_TIME_ARGS (fold->min), GST_TIME_ARGS (fold->max),
3769       fold->live);
3770 }
3771
3772 /* generic fold, return first valid result */
3773 static gboolean
3774 bin_query_generic_fold (const GValue * vitem, GValue * ret, QueryFold * fold)
3775 {
3776   gboolean res = FALSE;
3777   GstObject *item = g_value_get_object (vitem);
3778   if (GST_IS_PAD (item))
3779     res = gst_pad_query (GST_PAD (item), fold->query);
3780   else
3781     res = gst_element_query (GST_ELEMENT (item), fold->query);
3782   if (res) {
3783     g_value_set_boolean (ret, TRUE);
3784     GST_DEBUG_OBJECT (item, "answered query %p", fold->query);
3785   }
3786
3787   /* and stop as soon as we have a valid result */
3788   return !res;
3789 }
3790
3791 /* Perform a query iteration for the given bin. The query is stored in
3792  * QueryFold and iter should be either a GstPad iterator or a
3793  * GstElement iterator. */
3794 static gboolean
3795 bin_iterate_fold (GstBin * bin, GstIterator * iter, QueryInitFunction fold_init,
3796     QueryDoneFunction fold_done, GstIteratorFoldFunction fold_func,
3797     QueryFold fold_data, gboolean default_return)
3798 {
3799   gboolean res = default_return;
3800   GValue ret = { 0 };
3801   /* set the result of the query to FALSE initially */
3802   g_value_init (&ret, G_TYPE_BOOLEAN);
3803   g_value_set_boolean (&ret, res);
3804
3805   while (TRUE) {
3806     GstIteratorResult ires;
3807
3808     ires = gst_iterator_fold (iter, fold_func, &ret, &fold_data);
3809
3810     switch (ires) {
3811       case GST_ITERATOR_RESYNC:
3812         gst_iterator_resync (iter);
3813         if (fold_init)
3814           fold_init (bin, &fold_data);
3815         g_value_set_boolean (&ret, res);
3816         break;
3817       case GST_ITERATOR_OK:
3818       case GST_ITERATOR_DONE:
3819         res = g_value_get_boolean (&ret);
3820         if (fold_done != NULL && res)
3821           fold_done (bin, &fold_data);
3822         goto done;
3823       default:
3824         res = FALSE;
3825         goto done;
3826     }
3827   }
3828 done:
3829   return res;
3830 }
3831
3832 static gboolean
3833 gst_bin_query (GstElement * element, GstQuery * query)
3834 {
3835   GstBin *bin = GST_BIN_CAST (element);
3836   GstIterator *iter;
3837   gboolean default_return = FALSE;
3838   gboolean res = FALSE;
3839   gboolean src_pads_query_result = FALSE;
3840   GstIteratorFoldFunction fold_func;
3841   QueryInitFunction fold_init = NULL;
3842   QueryDoneFunction fold_done = NULL;
3843   QueryFold fold_data;
3844
3845   switch (GST_QUERY_TYPE (query)) {
3846     case GST_QUERY_DURATION:
3847     {
3848       /* FIXME: implement duration caching in GstBin again */
3849 #if 0
3850       GList *cached;
3851       GstFormat qformat;
3852
3853       gst_query_parse_duration (query, &qformat, NULL);
3854
3855       /* find cached duration query */
3856       GST_OBJECT_LOCK (bin);
3857       for (cached = bin->messages; cached; cached = g_list_next (cached)) {
3858         GstMessage *message = (GstMessage *) cached->data;
3859
3860         if (GST_MESSAGE_TYPE (message) == GST_MESSAGE_DURATION_CHANGED &&
3861             GST_MESSAGE_SRC (message) == GST_OBJECT_CAST (bin)) {
3862           GstFormat format;
3863           gint64 duration;
3864
3865           gst_message_parse_duration (message, &format, &duration);
3866
3867           /* if cached same format, copy duration in query result */
3868           if (format == qformat) {
3869             GST_DEBUG_OBJECT (bin, "return cached duration %" G_GINT64_FORMAT,
3870                 duration);
3871             GST_OBJECT_UNLOCK (bin);
3872
3873             gst_query_set_duration (query, qformat, duration);
3874             res = TRUE;
3875             goto exit;
3876           }
3877         }
3878       }
3879       GST_OBJECT_UNLOCK (bin);
3880 #else
3881       GST_FIXME ("implement duration caching in GstBin again");
3882 #endif
3883       /* no cached value found, iterate and collect durations */
3884       fold_func = (GstIteratorFoldFunction) bin_query_duration_fold;
3885       fold_init = bin_query_min_max_init;
3886       fold_done = bin_query_duration_done;
3887       break;
3888     }
3889     case GST_QUERY_POSITION:
3890     {
3891       fold_func = (GstIteratorFoldFunction) bin_query_position_fold;
3892       fold_init = bin_query_min_max_init;
3893       fold_done = bin_query_position_done;
3894       break;
3895     }
3896     case GST_QUERY_LATENCY:
3897     {
3898       fold_func = (GstIteratorFoldFunction) bin_query_latency_fold;
3899       fold_init = bin_query_min_max_init;
3900       fold_done = bin_query_latency_done;
3901       default_return = TRUE;
3902       break;
3903     }
3904     default:
3905       fold_func = (GstIteratorFoldFunction) bin_query_generic_fold;
3906       break;
3907   }
3908
3909   fold_data.query = query;
3910
3911   iter = gst_bin_iterate_sinks (bin);
3912   GST_DEBUG_OBJECT (bin, "Sending query %p (type %s) to sink children",
3913       query, GST_QUERY_TYPE_NAME (query));
3914
3915   if (fold_init)
3916     fold_init (bin, &fold_data);
3917
3918   res =
3919       bin_iterate_fold (bin, iter, fold_init, fold_done, fold_func, fold_data,
3920       default_return);
3921   gst_iterator_free (iter);
3922
3923   if (!res) {
3924     /* Query the source pads of the element */
3925     iter = gst_element_iterate_src_pads (element);
3926     src_pads_query_result =
3927         bin_iterate_fold (bin, iter, fold_init, fold_done, fold_func,
3928         fold_data, default_return);
3929     gst_iterator_free (iter);
3930
3931     if (src_pads_query_result)
3932       res = TRUE;
3933   }
3934
3935   GST_DEBUG_OBJECT (bin, "query %p result %d", query, res);
3936
3937   return res;
3938 }
3939
3940 static gint
3941 compare_name (const GValue * velement, const gchar * name)
3942 {
3943   gint eq;
3944   GstElement *element = g_value_get_object (velement);
3945
3946   GST_OBJECT_LOCK (element);
3947   eq = strcmp (GST_ELEMENT_NAME (element), name);
3948   GST_OBJECT_UNLOCK (element);
3949
3950   return eq;
3951 }
3952
3953 /**
3954  * gst_bin_get_by_name:
3955  * @bin: a #GstBin
3956  * @name: the element name to search for
3957  *
3958  * Gets the element with the given name from a bin. This
3959  * function recurses into child bins.
3960  *
3961  * Returns NULL if no element with the given name is found in the bin.
3962  *
3963  * MT safe.  Caller owns returned reference.
3964  *
3965  * Returns: (transfer full): the #GstElement with the given name, or NULL
3966  */
3967 GstElement *
3968 gst_bin_get_by_name (GstBin * bin, const gchar * name)
3969 {
3970   GstIterator *children;
3971   GValue result = { 0, };
3972   GstElement *element;
3973   gboolean found;
3974
3975   g_return_val_if_fail (GST_IS_BIN (bin), NULL);
3976
3977   GST_CAT_INFO (GST_CAT_PARENTAGE, "[%s]: looking up child element %s",
3978       GST_ELEMENT_NAME (bin), name);
3979
3980   children = gst_bin_iterate_recurse (bin);
3981   found = gst_iterator_find_custom (children,
3982       (GCompareFunc) compare_name, &result, (gpointer) name);
3983   gst_iterator_free (children);
3984
3985   if (found) {
3986     element = g_value_dup_object (&result);
3987     g_value_unset (&result);
3988   } else {
3989     element = NULL;
3990   }
3991
3992   return element;
3993 }
3994
3995 /**
3996  * gst_bin_get_by_name_recurse_up:
3997  * @bin: a #GstBin
3998  * @name: the element name to search for
3999  *
4000  * Gets the element with the given name from this bin. If the
4001  * element is not found, a recursion is performed on the parent bin.
4002  *
4003  * Returns NULL if:
4004  * - no element with the given name is found in the bin
4005  *
4006  * MT safe.  Caller owns returned reference.
4007  *
4008  * Returns: (transfer full): the #GstElement with the given name, or NULL
4009  */
4010 GstElement *
4011 gst_bin_get_by_name_recurse_up (GstBin * bin, const gchar * name)
4012 {
4013   GstElement *result;
4014
4015   g_return_val_if_fail (GST_IS_BIN (bin), NULL);
4016   g_return_val_if_fail (name != NULL, NULL);
4017
4018   result = gst_bin_get_by_name (bin, name);
4019
4020   if (!result) {
4021     GstObject *parent;
4022
4023     parent = gst_object_get_parent (GST_OBJECT_CAST (bin));
4024     if (parent) {
4025       if (GST_IS_BIN (parent)) {
4026         result = gst_bin_get_by_name_recurse_up (GST_BIN_CAST (parent), name);
4027       }
4028       gst_object_unref (parent);
4029     }
4030   }
4031
4032   return result;
4033 }
4034
4035 static gint
4036 compare_interface (const GValue * velement, GValue * interface)
4037 {
4038   GstElement *element = g_value_get_object (velement);
4039   GType interface_type = (GType) g_value_get_pointer (interface);
4040   gint ret;
4041
4042   if (G_TYPE_CHECK_INSTANCE_TYPE (element, interface_type)) {
4043     ret = 0;
4044   } else {
4045     ret = 1;
4046   }
4047   return ret;
4048 }
4049
4050 /**
4051  * gst_bin_get_by_interface:
4052  * @bin: a #GstBin
4053  * @iface: the #GType of an interface
4054  *
4055  * Looks for an element inside the bin that implements the given
4056  * interface. If such an element is found, it returns the element.
4057  * You can cast this element to the given interface afterwards.  If you want
4058  * all elements that implement the interface, use
4059  * gst_bin_iterate_all_by_interface(). This function recurses into child bins.
4060  *
4061  * MT safe.  Caller owns returned reference.
4062  *
4063  * Returns: (transfer full): A #GstElement inside the bin implementing the interface
4064  */
4065 GstElement *
4066 gst_bin_get_by_interface (GstBin * bin, GType iface)
4067 {
4068   GstIterator *children;
4069   GValue result = { 0, };
4070   GstElement *element;
4071   gboolean found;
4072   GValue viface = { 0, };
4073
4074   g_return_val_if_fail (GST_IS_BIN (bin), NULL);
4075   g_return_val_if_fail (G_TYPE_IS_INTERFACE (iface), NULL);
4076
4077   g_value_init (&viface, G_TYPE_POINTER);
4078   g_value_set_pointer (&viface, (gpointer) iface);
4079
4080   children = gst_bin_iterate_recurse (bin);
4081   found = gst_iterator_find_custom (children, (GCompareFunc) compare_interface,
4082       &result, &viface);
4083   gst_iterator_free (children);
4084
4085   if (found) {
4086     element = g_value_dup_object (&result);
4087     g_value_unset (&result);
4088   } else {
4089     element = NULL;
4090   }
4091   g_value_unset (&viface);
4092
4093   return element;
4094 }
4095
4096 /**
4097  * gst_bin_iterate_all_by_interface:
4098  * @bin: a #GstBin
4099  * @iface: the #GType of an interface
4100  *
4101  * Looks for all elements inside the bin that implements the given
4102  * interface. You can safely cast all returned elements to the given interface.
4103  * The function recurses inside child bins. The iterator will yield a series
4104  * of #GstElement that should be unreffed after use.
4105  *
4106  * MT safe.  Caller owns returned value.
4107  *
4108  * Returns: (transfer full): a #GstIterator of #GstElement for all elements
4109  *          in the bin implementing the given interface, or NULL
4110  */
4111 GstIterator *
4112 gst_bin_iterate_all_by_interface (GstBin * bin, GType iface)
4113 {
4114   GstIterator *children;
4115   GstIterator *result;
4116   GValue viface = { 0, };
4117
4118   g_return_val_if_fail (GST_IS_BIN (bin), NULL);
4119   g_return_val_if_fail (G_TYPE_IS_INTERFACE (iface), NULL);
4120
4121   g_value_init (&viface, G_TYPE_POINTER);
4122   g_value_set_pointer (&viface, (gpointer) iface);
4123
4124   children = gst_bin_iterate_recurse (bin);
4125   result = gst_iterator_filter (children, (GCompareFunc) compare_interface,
4126       &viface);
4127
4128   g_value_unset (&viface);
4129
4130   return result;
4131 }