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