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