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