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