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