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