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