222292c9b9bec1ebba7a097274c500104f42a8df
[platform/upstream/gstreamer.git] / gst / gstelement.c
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *                    2004 Wim Taymans <wim@fluendo.com>
4  *
5  * gstelement.c: The base element, all elements derive from this
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 /**
24  * SECTION:gstelement
25  * @short_description: Abstract base class for all pipeline elements
26  * @see_also: #GstElementFactory, #GstPad
27  *
28  * GstElement is the abstract base class needed to construct an element that
29  * can be used in a GStreamer pipeline. Please refer to the plugin writers
30  * guide for more information on creating #GstElement subclasses.
31  *
32  * The name of a #GstElement can be get with gst_element_get_name() and set with
33  * gst_element_set_name().  For speed, GST_ELEMENT_NAME() can be used in the
34  * core when using the appropriate locking. Do not use this in plug-ins or
35  * applications in order to retain ABI compatibility.
36  *
37  * All elements have pads (of the type #GstPad).  These pads link to pads on
38  * other elements.  #GstBuffer flow between these linked pads.
39  * A #GstElement has a #GList of #GstPad structures for all their input (or sink)
40  * and output (or source) pads.
41  * Core and plug-in writers can add and remove pads with gst_element_add_pad()
42  * and gst_element_remove_pad().
43  *
44  * An existing pad of an element can be retrieved by name with
45  * gst_element_get_static_pad(). A new dynamic pad can be created using
46  * gst_element_request_pad() with a #GstPadTemplate or 
47  * gst_element_get_request_pad() with the template name such as "src_\%d".
48  * An iterator of all pads can be retrieved with gst_element_iterate_pads().
49  *
50  * Elements can be linked through their pads.
51  * If the link is straightforward, use the gst_element_link()
52  * convenience function to link two elements, or gst_element_link_many()
53  * for more elements in a row.
54  * Use gst_element_link_filtered() to link two elements constrained by
55  * a specified set of #GstCaps.
56  * For finer control, use gst_element_link_pads() and
57  * gst_element_link_pads_filtered() to specify the pads to link on
58  * each element by name.
59  *
60  * Each element has a state (see #GstState).  You can get and set the state
61  * of an element with gst_element_get_state() and gst_element_set_state().
62  * Setting a state triggers a #GstStateChange. To get a string representation
63  * of a #GstState, use gst_element_state_get_name().
64  *
65  * You can get and set a #GstClock on an element using gst_element_get_clock()
66  * and gst_element_set_clock().
67  * Some elements can provide a clock for the pipeline if
68  * gst_element_provides_clock() returns %TRUE. With the
69  * gst_element_provide_clock() method one can retrieve the clock provided by
70  * such an element.
71  * Not all elements require a clock to operate correctly. If
72  * gst_element_requires_clock() returns %TRUE, a clock should be set on the
73  * element with gst_element_set_clock().
74  *
75  * Note that clock slection and distribution is normally handled by the
76  * toplevel #GstPipeline so the clock functions are only to be used in very
77  * specific situations.
78  *
79  * Last reviewed on 2009-05-29 (0.10.24)
80  */
81
82 #include "gst_private.h"
83 #include <glib.h>
84 #include <stdarg.h>
85 #include <gobject/gvaluecollector.h>
86
87 #include "gstelement.h"
88 #include "gstelementmetadata.h"
89 #include "gstenumtypes.h"
90 #include "gstbus.h"
91 #include "gstmarshal.h"
92 #include "gsterror.h"
93 #include "gstevent.h"
94 #include "gstutils.h"
95 #include "gstinfo.h"
96 #include "gstvalue.h"
97 #include "gst-i18n-lib.h"
98
99 /* Element signals and args */
100 enum
101 {
102   PAD_ADDED,
103   PAD_REMOVED,
104   NO_MORE_PADS,
105   /* add more above */
106   LAST_SIGNAL
107 };
108
109 enum
110 {
111   ARG_0
112       /* FILL ME */
113 };
114
115 static void gst_element_class_init (GstElementClass * klass);
116 static void gst_element_init (GstElement * element);
117 static void gst_element_base_class_init (gpointer g_class);
118 static void gst_element_base_class_finalize (gpointer g_class);
119
120 static void gst_element_dispose (GObject * object);
121 static void gst_element_finalize (GObject * object);
122
123 static GstStateChangeReturn gst_element_change_state_func (GstElement * element,
124     GstStateChange transition);
125 static GstStateChangeReturn gst_element_get_state_func (GstElement * element,
126     GstState * state, GstState * pending, GstClockTime timeout);
127 static GstStateChangeReturn gst_element_set_state_func (GstElement * element,
128     GstState state);
129 static gboolean gst_element_set_clock_func (GstElement * element,
130     GstClock * clock);
131 static void gst_element_set_bus_func (GstElement * element, GstBus * bus);
132
133 static gboolean gst_element_default_send_event (GstElement * element,
134     GstEvent * event);
135 static gboolean gst_element_default_query (GstElement * element,
136     GstQuery * query);
137
138 static GstPadTemplate
139     * gst_element_class_get_request_pad_template (GstElementClass *
140     element_class, const gchar * name);
141
142 static GstObjectClass *parent_class = NULL;
143 static guint gst_element_signals[LAST_SIGNAL] = { 0 };
144
145 /* this is used in gstelementfactory.c:gst_element_register() */
146 GQuark __gst_elementclass_factory = 0;
147
148 GType
149 gst_element_get_type (void)
150 {
151   static volatile gsize gst_element_type = 0;
152
153   if (g_once_init_enter (&gst_element_type)) {
154     GType _type;
155     static const GTypeInfo element_info = {
156       sizeof (GstElementClass),
157       gst_element_base_class_init,
158       gst_element_base_class_finalize,
159       (GClassInitFunc) gst_element_class_init,
160       NULL,
161       NULL,
162       sizeof (GstElement),
163       0,
164       (GInstanceInitFunc) gst_element_init,
165       NULL
166     };
167
168     _type = g_type_register_static (GST_TYPE_OBJECT, "GstElement",
169         &element_info, G_TYPE_FLAG_ABSTRACT);
170
171     __gst_elementclass_factory =
172         g_quark_from_static_string ("GST_ELEMENTCLASS_FACTORY");
173     g_once_init_leave (&gst_element_type, _type);
174   }
175   return gst_element_type;
176 }
177
178 static void
179 gst_element_class_init (GstElementClass * klass)
180 {
181   GObjectClass *gobject_class;
182
183   gobject_class = (GObjectClass *) klass;
184
185   parent_class = g_type_class_peek_parent (klass);
186
187   /**
188    * GstElement::pad-added:
189    * @gstelement: the object which received the signal
190    * @new_pad: the pad that has been added
191    *
192    * a new #GstPad has been added to the element. Note that this signal will
193    * usually be emitted from the context of the streaming thread. Also keep in
194    * mind that if you add new elements to the pipeline in the signal handler
195    * you will need to set them to the desired target state with
196    * gst_element_set_state() or gst_element_sync_state_with_parent().
197    */
198   gst_element_signals[PAD_ADDED] =
199       g_signal_new ("pad-added", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
200       G_STRUCT_OFFSET (GstElementClass, pad_added), NULL, NULL,
201       gst_marshal_VOID__OBJECT, G_TYPE_NONE, 1, GST_TYPE_PAD);
202   /**
203    * GstElement::pad-removed:
204    * @gstelement: the object which received the signal
205    * @old_pad: the pad that has been removed
206    *
207    * a #GstPad has been removed from the element
208    */
209   gst_element_signals[PAD_REMOVED] =
210       g_signal_new ("pad-removed", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
211       G_STRUCT_OFFSET (GstElementClass, pad_removed), NULL, NULL,
212       gst_marshal_VOID__OBJECT, G_TYPE_NONE, 1, GST_TYPE_PAD);
213   /**
214    * GstElement::no-more-pads:
215    * @gstelement: the object which received the signal
216    *
217    * This signals that the element will not generate more dynamic pads.
218    * Note that this signal will usually be emitted from the context of
219    * the streaming thread.
220    */
221   gst_element_signals[NO_MORE_PADS] =
222       g_signal_new ("no-more-pads", G_TYPE_FROM_CLASS (klass),
223       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstElementClass, no_more_pads), NULL,
224       NULL, gst_marshal_VOID__VOID, G_TYPE_NONE, 0);
225
226   gobject_class->dispose = gst_element_dispose;
227   gobject_class->finalize = gst_element_finalize;
228
229   klass->change_state = GST_DEBUG_FUNCPTR (gst_element_change_state_func);
230   klass->set_state = GST_DEBUG_FUNCPTR (gst_element_set_state_func);
231   klass->get_state = GST_DEBUG_FUNCPTR (gst_element_get_state_func);
232   klass->set_clock = GST_DEBUG_FUNCPTR (gst_element_set_clock_func);
233   klass->set_bus = GST_DEBUG_FUNCPTR (gst_element_set_bus_func);
234   klass->query = GST_DEBUG_FUNCPTR (gst_element_default_query);
235   klass->send_event = GST_DEBUG_FUNCPTR (gst_element_default_send_event);
236   klass->numpadtemplates = 0;
237
238   klass->elementfactory = NULL;
239 }
240
241 static void
242 gst_element_base_class_init (gpointer g_class)
243 {
244   GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
245   GList *node, *padtemplates;
246
247   /* Copy the element details here so elements can inherit the
248    * details from their base class and classes only need to set
249    * the details in class_init instead of base_init */
250   element_class->metadata =
251       element_class->metadata ? gst_structure_copy (element_class->metadata) :
252       gst_structure_new_empty ("metadata");
253
254   /* Copy the pad templates so elements inherit them
255    * from their base class but elements can add pad templates in class_init
256    * instead of base_init.
257    */
258   padtemplates = g_list_copy (element_class->padtemplates);
259   for (node = padtemplates; node != NULL; node = node->next) {
260     GstPadTemplate *tmpl = (GstPadTemplate *) node->data;
261     gst_object_ref (tmpl);
262   }
263   element_class->padtemplates = padtemplates;
264
265   /* set the factory, see gst_element_register() */
266   element_class->elementfactory =
267       g_type_get_qdata (G_TYPE_FROM_CLASS (element_class),
268       __gst_elementclass_factory);
269   GST_DEBUG ("type %s : factory %p", G_OBJECT_CLASS_NAME (element_class),
270       element_class->elementfactory);
271 }
272
273 static void
274 gst_element_base_class_finalize (gpointer g_class)
275 {
276   GstElementClass *klass = GST_ELEMENT_CLASS (g_class);
277
278   g_list_foreach (klass->padtemplates, (GFunc) gst_object_unref, NULL);
279   g_list_free (klass->padtemplates);
280
281   gst_structure_free (klass->metadata);
282 }
283
284 static void
285 gst_element_init (GstElement * element)
286 {
287   GST_STATE (element) = GST_STATE_NULL;
288   GST_STATE_TARGET (element) = GST_STATE_NULL;
289   GST_STATE_NEXT (element) = GST_STATE_VOID_PENDING;
290   GST_STATE_PENDING (element) = GST_STATE_VOID_PENDING;
291   GST_STATE_RETURN (element) = GST_STATE_CHANGE_SUCCESS;
292
293   g_static_rec_mutex_init (&element->state_lock);
294   element->state_cond = g_cond_new ();
295 }
296
297 /**
298  * gst_element_release_request_pad:
299  * @element: a #GstElement to release the request pad of.
300  * @pad: the #GstPad to release.
301  *
302  * Makes the element free the previously requested pad as obtained
303  * with gst_element_get_request_pad().
304  *
305  * This does not unref the pad. If the pad was created by using
306  * gst_element_get_request_pad(), gst_element_release_request_pad() needs to be
307  * followed by gst_object_unref() to free the @pad.
308  *
309  * MT safe.
310  */
311 void
312 gst_element_release_request_pad (GstElement * element, GstPad * pad)
313 {
314   GstElementClass *oclass;
315
316   g_return_if_fail (GST_IS_ELEMENT (element));
317   g_return_if_fail (GST_IS_PAD (pad));
318
319   oclass = GST_ELEMENT_GET_CLASS (element);
320
321   /* if the element implements a custom release function we call that, else we
322    * simply remove the pad from the element */
323   if (oclass->release_pad)
324     (oclass->release_pad) (element, pad);
325   else
326     gst_element_remove_pad (element, pad);
327 }
328
329 /**
330  * gst_element_requires_clock:
331  * @element: a #GstElement to query
332  *
333  * Query if the element requires a clock.
334  *
335  * Returns: %TRUE if the element requires a clock
336  *
337  * MT safe.
338  */
339 gboolean
340 gst_element_requires_clock (GstElement * element)
341 {
342   gboolean result;
343
344   g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
345
346   result = (GST_ELEMENT_GET_CLASS (element)->set_clock != NULL);
347
348   return result;
349 }
350
351 /**
352  * gst_element_provides_clock:
353  * @element: a #GstElement to query
354  *
355  * Query if the element provides a clock. A #GstClock provided by an
356  * element can be used as the global #GstClock for the pipeline.
357  * An element that can provide a clock is only required to do so in the PAUSED
358  * state, this means when it is fully negotiated and has allocated the resources
359  * to operate the clock.
360  *
361  * Returns: %TRUE if the element provides a clock
362  *
363  * MT safe.
364  */
365 gboolean
366 gst_element_provides_clock (GstElement * element)
367 {
368   gboolean result;
369
370   g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
371
372   result = (GST_ELEMENT_GET_CLASS (element)->provide_clock != NULL);
373
374   return result;
375 }
376
377 /**
378  * gst_element_provide_clock:
379  * @element: a #GstElement to query
380  *
381  * Get the clock provided by the given element.
382  * <note>An element is only required to provide a clock in the PAUSED
383  * state. Some elements can provide a clock in other states.</note>
384  *
385  * Returns: (transfer full): the GstClock provided by the element or %NULL
386  * if no clock could be provided.  Unref after usage.
387  *
388  * MT safe.
389  */
390 GstClock *
391 gst_element_provide_clock (GstElement * element)
392 {
393   GstClock *result = NULL;
394   GstElementClass *oclass;
395
396   g_return_val_if_fail (GST_IS_ELEMENT (element), NULL);
397
398   oclass = GST_ELEMENT_GET_CLASS (element);
399
400   if (oclass->provide_clock)
401     result = oclass->provide_clock (element);
402
403   return result;
404 }
405
406 static gboolean
407 gst_element_set_clock_func (GstElement * element, GstClock * clock)
408 {
409   GstClock **clock_p;
410
411   GST_OBJECT_LOCK (element);
412   clock_p = &element->clock;
413   gst_object_replace ((GstObject **) clock_p, (GstObject *) clock);
414   GST_OBJECT_UNLOCK (element);
415
416   return TRUE;
417 }
418
419 /**
420  * gst_element_set_clock:
421  * @element: a #GstElement to set the clock for.
422  * @clock: the #GstClock to set for the element.
423  *
424  * Sets the clock for the element. This function increases the
425  * refcount on the clock. Any previously set clock on the object
426  * is unreffed.
427  *
428  * Returns: %TRUE if the element accepted the clock. An element can refuse a
429  * clock when it, for example, is not able to slave its internal clock to the
430  * @clock or when it requires a specific clock to operate.
431  *
432  * MT safe.
433  */
434 gboolean
435 gst_element_set_clock (GstElement * element, GstClock * clock)
436 {
437   GstElementClass *oclass;
438   gboolean res = FALSE;
439
440   g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
441   g_return_val_if_fail (clock == NULL || GST_IS_CLOCK (clock), FALSE);
442
443   oclass = GST_ELEMENT_GET_CLASS (element);
444
445   GST_CAT_DEBUG_OBJECT (GST_CAT_CLOCK, element, "setting clock %p", clock);
446
447   if (oclass->set_clock)
448     res = oclass->set_clock (element, clock);
449
450   return res;
451 }
452
453 /**
454  * gst_element_get_clock:
455  * @element: a #GstElement to get the clock of.
456  *
457  * Gets the currently configured clock of the element. This is the clock as was
458  * last set with gst_element_set_clock().
459  *
460  * Returns: (transfer full): the #GstClock of the element. unref after usage.
461  *
462  * MT safe.
463  */
464 GstClock *
465 gst_element_get_clock (GstElement * element)
466 {
467   GstClock *result;
468
469   g_return_val_if_fail (GST_IS_ELEMENT (element), NULL);
470
471   GST_OBJECT_LOCK (element);
472   if ((result = element->clock))
473     gst_object_ref (result);
474   GST_OBJECT_UNLOCK (element);
475
476   return result;
477 }
478
479 /**
480  * gst_element_set_base_time:
481  * @element: a #GstElement.
482  * @time: the base time to set.
483  *
484  * Set the base time of an element. See gst_element_get_base_time().
485  *
486  * MT safe.
487  */
488 void
489 gst_element_set_base_time (GstElement * element, GstClockTime time)
490 {
491   GstClockTime old;
492
493   g_return_if_fail (GST_IS_ELEMENT (element));
494
495   GST_OBJECT_LOCK (element);
496   old = element->base_time;
497   element->base_time = time;
498   GST_OBJECT_UNLOCK (element);
499
500   GST_CAT_DEBUG_OBJECT (GST_CAT_CLOCK, element,
501       "set base_time=%" GST_TIME_FORMAT ", old %" GST_TIME_FORMAT,
502       GST_TIME_ARGS (time), GST_TIME_ARGS (old));
503 }
504
505 /**
506  * gst_element_get_base_time:
507  * @element: a #GstElement.
508  *
509  * Returns the base time of the element. The base time is the
510  * absolute time of the clock when this element was last put to
511  * PLAYING. Subtracting the base time from the clock time gives
512  * the running time of the element.
513  *
514  * Returns: the base time of the element.
515  *
516  * MT safe.
517  */
518 GstClockTime
519 gst_element_get_base_time (GstElement * element)
520 {
521   GstClockTime result;
522
523   g_return_val_if_fail (GST_IS_ELEMENT (element), GST_CLOCK_TIME_NONE);
524
525   GST_OBJECT_LOCK (element);
526   result = element->base_time;
527   GST_OBJECT_UNLOCK (element);
528
529   return result;
530 }
531
532 /**
533  * gst_element_set_start_time:
534  * @element: a #GstElement.
535  * @time: the base time to set.
536  *
537  * Set the start time of an element. The start time of the element is the
538  * running time of the element when it last went to the PAUSED state. In READY
539  * or after a flushing seek, it is set to 0.
540  *
541  * Toplevel elements like #GstPipeline will manage the start_time and
542  * base_time on its children. Setting the start_time to #GST_CLOCK_TIME_NONE
543  * on such a toplevel element will disable the distribution of the base_time to
544  * the children and can be useful if the application manages the base_time
545  * itself, for example if you want to synchronize capture from multiple
546  * pipelines, and you can also ensure that the pipelines have the same clock.
547  *
548  * MT safe.
549  *
550  * Since: 0.10.24
551  */
552 void
553 gst_element_set_start_time (GstElement * element, GstClockTime time)
554 {
555   GstClockTime old;
556
557   g_return_if_fail (GST_IS_ELEMENT (element));
558
559   GST_OBJECT_LOCK (element);
560   old = GST_ELEMENT_START_TIME (element);
561   GST_ELEMENT_START_TIME (element) = time;
562   GST_OBJECT_UNLOCK (element);
563
564   GST_CAT_DEBUG_OBJECT (GST_CAT_CLOCK, element,
565       "set start_time=%" GST_TIME_FORMAT ", old %" GST_TIME_FORMAT,
566       GST_TIME_ARGS (time), GST_TIME_ARGS (old));
567 }
568
569 /**
570  * gst_element_get_start_time:
571  * @element: a #GstElement.
572  *
573  * Returns the start time of the element. The start time is the
574  * running time of the clock when this element was last put to PAUSED.
575  *
576  * Usually the start_time is managed by a toplevel element such as
577  * #GstPipeline.
578  *
579  * MT safe.
580  *
581  * Returns: the start time of the element.
582  *
583  * Since: 0.10.24
584  */
585 GstClockTime
586 gst_element_get_start_time (GstElement * element)
587 {
588   GstClockTime result;
589
590   g_return_val_if_fail (GST_IS_ELEMENT (element), GST_CLOCK_TIME_NONE);
591
592   GST_OBJECT_LOCK (element);
593   result = GST_ELEMENT_START_TIME (element);
594   GST_OBJECT_UNLOCK (element);
595
596   return result;
597 }
598
599 /**
600  * gst_element_is_indexable:
601  * @element: a #GstElement.
602  *
603  * Queries if the element can be indexed.
604  *
605  * Returns: TRUE if the element can be indexed.
606  *
607  * MT safe.
608  */
609 gboolean
610 gst_element_is_indexable (GstElement * element)
611 {
612   gboolean result;
613
614   g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
615
616   result = (GST_ELEMENT_GET_CLASS (element)->set_index != NULL);
617
618   return result;
619 }
620
621 /**
622  * gst_element_set_index:
623  * @element: a #GstElement.
624  * @index: (transfer none): a #GstIndex.
625  *
626  * Set @index on the element. The refcount of the index
627  * will be increased, any previously set index is unreffed.
628  *
629  * MT safe.
630  */
631 void
632 gst_element_set_index (GstElement * element, GstIndex * index)
633 {
634   GstElementClass *oclass;
635
636   g_return_if_fail (GST_IS_ELEMENT (element));
637   g_return_if_fail (index == NULL || GST_IS_INDEX (index));
638
639   oclass = GST_ELEMENT_GET_CLASS (element);
640
641   if (oclass->set_index)
642     oclass->set_index (element, index);
643 }
644
645 /**
646  * gst_element_get_index:
647  * @element: a #GstElement.
648  *
649  * Gets the index from the element.
650  *
651  * Returns: (transfer full): a #GstIndex or %NULL when no index was set on the
652  * element. unref after usage.
653  *
654  * MT safe.
655  */
656 GstIndex *
657 gst_element_get_index (GstElement * element)
658 {
659   GstElementClass *oclass;
660   GstIndex *result = NULL;
661
662   g_return_val_if_fail (GST_IS_ELEMENT (element), NULL);
663
664   oclass = GST_ELEMENT_GET_CLASS (element);
665
666   if (oclass->get_index)
667     result = oclass->get_index (element);
668
669   return result;
670 }
671
672 /**
673  * gst_element_add_pad:
674  * @element: a #GstElement to add the pad to.
675  * @pad: (transfer full): the #GstPad to add to the element.
676  *
677  * Adds a pad (link point) to @element. @pad's parent will be set to @element;
678  * see gst_object_set_parent() for refcounting information.
679  *
680  * Pads are not automatically activated so elements should perform the needed
681  * steps to activate the pad in case this pad is added in the PAUSED or PLAYING
682  * state. See gst_pad_set_active() for more information about activating pads.
683  *
684  * The pad and the element should be unlocked when calling this function.
685  *
686  * This function will emit the #GstElement::pad-added signal on the element.
687  *
688  * Returns: %TRUE if the pad could be added. This function can fail when
689  * a pad with the same name already existed or the pad already had another
690  * parent.
691  *
692  * MT safe.
693  */
694 gboolean
695 gst_element_add_pad (GstElement * element, GstPad * pad)
696 {
697   gchar *pad_name;
698   gboolean flushing;
699
700   g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
701   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
702
703   /* locking pad to look at the name */
704   GST_OBJECT_LOCK (pad);
705   pad_name = g_strdup (GST_PAD_NAME (pad));
706   GST_CAT_INFO_OBJECT (GST_CAT_ELEMENT_PADS, element, "adding pad '%s'",
707       GST_STR_NULL (pad_name));
708   flushing = GST_PAD_IS_FLUSHING (pad);
709   GST_OBJECT_UNLOCK (pad);
710
711   /* then check to see if there's already a pad by that name here */
712   GST_OBJECT_LOCK (element);
713   if (G_UNLIKELY (!gst_object_check_uniqueness (element->pads, pad_name)))
714     goto name_exists;
715
716   /* try to set the pad's parent */
717   if (G_UNLIKELY (!gst_object_set_parent (GST_OBJECT_CAST (pad),
718               GST_OBJECT_CAST (element))))
719     goto had_parent;
720
721   /* check for flushing pads */
722   if (flushing && (GST_STATE (element) > GST_STATE_READY ||
723           GST_STATE_NEXT (element) == GST_STATE_PAUSED)) {
724     g_warning ("adding flushing pad '%s' to running element '%s', you need to "
725         "use gst_pad_set_active(pad,TRUE) before adding it.",
726         GST_STR_NULL (pad_name), GST_ELEMENT_NAME (element));
727     /* unset flushing */
728     GST_OBJECT_LOCK (pad);
729     GST_PAD_UNSET_FLUSHING (pad);
730     GST_OBJECT_UNLOCK (pad);
731   }
732
733   g_free (pad_name);
734
735   /* add it to the list */
736   switch (gst_pad_get_direction (pad)) {
737     case GST_PAD_SRC:
738       element->srcpads = g_list_prepend (element->srcpads, pad);
739       element->numsrcpads++;
740       break;
741     case GST_PAD_SINK:
742       element->sinkpads = g_list_prepend (element->sinkpads, pad);
743       element->numsinkpads++;
744       break;
745     default:
746       goto no_direction;
747   }
748   element->pads = g_list_prepend (element->pads, pad);
749   element->numpads++;
750   element->pads_cookie++;
751   GST_OBJECT_UNLOCK (element);
752
753   /* emit the PAD_ADDED signal */
754   g_signal_emit (element, gst_element_signals[PAD_ADDED], 0, pad);
755
756   return TRUE;
757
758   /* ERROR cases */
759 name_exists:
760   {
761     g_critical ("Padname %s is not unique in element %s, not adding",
762         pad_name, GST_ELEMENT_NAME (element));
763     GST_OBJECT_UNLOCK (element);
764     g_free (pad_name);
765     return FALSE;
766   }
767 had_parent:
768   {
769     g_critical
770         ("Pad %s already has parent when trying to add to element %s",
771         pad_name, GST_ELEMENT_NAME (element));
772     GST_OBJECT_UNLOCK (element);
773     g_free (pad_name);
774     return FALSE;
775   }
776 no_direction:
777   {
778     GST_OBJECT_LOCK (pad);
779     g_critical
780         ("Trying to add pad %s to element %s, but it has no direction",
781         GST_OBJECT_NAME (pad), GST_ELEMENT_NAME (element));
782     GST_OBJECT_UNLOCK (pad);
783     GST_OBJECT_UNLOCK (element);
784     return FALSE;
785   }
786 }
787
788 /**
789  * gst_element_remove_pad:
790  * @element: a #GstElement to remove pad from.
791  * @pad: (transfer none): the #GstPad to remove from the element.
792  *
793  * Removes @pad from @element. @pad will be destroyed if it has not been
794  * referenced elsewhere using gst_object_unparent().
795  *
796  * This function is used by plugin developers and should not be used
797  * by applications. Pads that were dynamically requested from elements
798  * with gst_element_get_request_pad() should be released with the
799  * gst_element_release_request_pad() function instead.
800  *
801  * Pads are not automatically deactivated so elements should perform the needed
802  * steps to deactivate the pad in case this pad is removed in the PAUSED or
803  * PLAYING state. See gst_pad_set_active() for more information about
804  * deactivating pads.
805  *
806  * The pad and the element should be unlocked when calling this function.
807  *
808  * This function will emit the #GstElement::pad-removed signal on the element.
809  *
810  * Returns: %TRUE if the pad could be removed. Can return %FALSE if the
811  * pad does not belong to the provided element.
812  *
813  * MT safe.
814  */
815 gboolean
816 gst_element_remove_pad (GstElement * element, GstPad * pad)
817 {
818   GstPad *peer;
819
820   g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
821   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
822
823   /* locking pad to look at the name and parent */
824   GST_OBJECT_LOCK (pad);
825   GST_CAT_INFO_OBJECT (GST_CAT_ELEMENT_PADS, element, "removing pad '%s'",
826       GST_STR_NULL (GST_PAD_NAME (pad)));
827
828   if (G_UNLIKELY (GST_PAD_PARENT (pad) != element))
829     goto not_our_pad;
830   GST_OBJECT_UNLOCK (pad);
831
832   /* unlink */
833   if ((peer = gst_pad_get_peer (pad))) {
834     /* window for MT unsafeness, someone else could unlink here
835      * and then we call unlink with wrong pads. The unlink
836      * function would catch this and safely return failed. */
837     if (GST_PAD_IS_SRC (pad))
838       gst_pad_unlink (pad, peer);
839     else
840       gst_pad_unlink (peer, pad);
841
842     gst_object_unref (peer);
843   }
844
845   GST_OBJECT_LOCK (element);
846   /* remove it from the list */
847   switch (gst_pad_get_direction (pad)) {
848     case GST_PAD_SRC:
849       element->srcpads = g_list_remove (element->srcpads, pad);
850       element->numsrcpads--;
851       break;
852     case GST_PAD_SINK:
853       element->sinkpads = g_list_remove (element->sinkpads, pad);
854       element->numsinkpads--;
855       break;
856     default:
857       g_critical ("Removing pad without direction???");
858       break;
859   }
860   element->pads = g_list_remove (element->pads, pad);
861   element->numpads--;
862   element->pads_cookie++;
863   GST_OBJECT_UNLOCK (element);
864
865   /* emit the PAD_REMOVED signal before unparenting and losing the last ref. */
866   g_signal_emit (element, gst_element_signals[PAD_REMOVED], 0, pad);
867
868   gst_object_unparent (GST_OBJECT_CAST (pad));
869
870   return TRUE;
871
872   /* ERRORS */
873 not_our_pad:
874   {
875     /* locking order is element > pad */
876     GST_OBJECT_UNLOCK (pad);
877
878     GST_OBJECT_LOCK (element);
879     GST_OBJECT_LOCK (pad);
880     g_critical ("Padname %s:%s does not belong to element %s when removing",
881         GST_DEBUG_PAD_NAME (pad), GST_ELEMENT_NAME (element));
882     GST_OBJECT_UNLOCK (pad);
883     GST_OBJECT_UNLOCK (element);
884     return FALSE;
885   }
886 }
887
888 /**
889  * gst_element_no_more_pads:
890  * @element: a #GstElement
891  *
892  * Use this function to signal that the element does not expect any more pads
893  * to show up in the current pipeline. This function should be called whenever
894  * pads have been added by the element itself. Elements with #GST_PAD_SOMETIMES
895  * pad templates use this in combination with autopluggers to figure out that
896  * the element is done initializing its pads.
897  *
898  * This function emits the #GstElement::no-more-pads signal.
899  *
900  * MT safe.
901  */
902 void
903 gst_element_no_more_pads (GstElement * element)
904 {
905   g_return_if_fail (GST_IS_ELEMENT (element));
906
907   g_signal_emit (element, gst_element_signals[NO_MORE_PADS], 0);
908 }
909
910 static gint
911 pad_compare_name (GstPad * pad1, const gchar * name)
912 {
913   gint result;
914
915   GST_OBJECT_LOCK (pad1);
916   result = strcmp (GST_PAD_NAME (pad1), name);
917   GST_OBJECT_UNLOCK (pad1);
918
919   return result;
920 }
921
922 /**
923  * gst_element_get_static_pad:
924  * @element: a #GstElement to find a static pad of.
925  * @name: the name of the static #GstPad to retrieve.
926  *
927  * Retrieves a pad from @element by name. This version only retrieves
928  * already-existing (i.e. 'static') pads.
929  *
930  * Returns: (transfer full): the requested #GstPad if found, otherwise %NULL.
931  *     unref after usage.
932  *
933  * MT safe.
934  */
935 GstPad *
936 gst_element_get_static_pad (GstElement * element, const gchar * name)
937 {
938   GList *find;
939   GstPad *result = NULL;
940
941   g_return_val_if_fail (GST_IS_ELEMENT (element), NULL);
942   g_return_val_if_fail (name != NULL, NULL);
943
944   GST_OBJECT_LOCK (element);
945   find =
946       g_list_find_custom (element->pads, name, (GCompareFunc) pad_compare_name);
947   if (find) {
948     result = GST_PAD_CAST (find->data);
949     gst_object_ref (result);
950   }
951
952   if (result == NULL) {
953     GST_CAT_INFO (GST_CAT_ELEMENT_PADS, "no such pad '%s' in element \"%s\"",
954         name, GST_ELEMENT_NAME (element));
955   } else {
956     GST_CAT_INFO (GST_CAT_ELEMENT_PADS, "found pad %s:%s",
957         GST_ELEMENT_NAME (element), name);
958   }
959   GST_OBJECT_UNLOCK (element);
960
961   return result;
962 }
963
964 static GstPad *
965 _gst_element_request_pad (GstElement * element, GstPadTemplate * templ,
966     const gchar * name, const GstCaps * caps)
967 {
968   GstPad *newpad = NULL;
969   GstElementClass *oclass;
970
971   oclass = GST_ELEMENT_GET_CLASS (element);
972
973 #ifndef G_DISABLE_CHECKS
974   /* Some sanity checking here */
975   if (name) {
976     GstPad *pad;
977
978     /* Is this the template name? */
979     if (strstr (name, "%") || !strchr (templ->name_template, '%')) {
980       g_return_val_if_fail (strcmp (name, templ->name_template) == 0, NULL);
981     } else {
982       const gchar *str, *data;
983       gchar *endptr;
984
985       /* Otherwise check if it's a valid name for the name template */
986       str = strchr (templ->name_template, '%');
987       g_return_val_if_fail (str != NULL, NULL);
988       g_return_val_if_fail (strncmp (templ->name_template, name,
989               str - templ->name_template) == 0, NULL);
990       g_return_val_if_fail (strlen (name) > str - templ->name_template, NULL);
991
992       data = name + (str - templ->name_template);
993
994       /* Can either be %s or %d or %u, do sanity checking for %d */
995       if (*(str + 1) == 'd') {
996         gint64 tmp;
997
998         /* it's an int */
999         tmp = g_ascii_strtoll (data, &endptr, 10);
1000         g_return_val_if_fail (tmp >= G_MININT && tmp <= G_MAXINT
1001             && *endptr == '\0', NULL);
1002       } else if (*(str + 1) == 'u') {
1003         guint64 tmp;
1004
1005         /* it's an int */
1006         tmp = g_ascii_strtoull (data, &endptr, 10);
1007         g_return_val_if_fail (tmp <= G_MAXUINT && *endptr == '\0', NULL);
1008       }
1009     }
1010
1011     pad = gst_element_get_static_pad (element, name);
1012     if (pad) {
1013       gst_object_unref (pad);
1014       /* FIXME 0.11: Change this to g_return_val_if_fail() */
1015       g_critical ("Element %s already has a pad named %s, the behaviour of "
1016           " gst_element_get_request_pad() for existing pads is undefined!",
1017           GST_ELEMENT_NAME (element), name);
1018     }
1019   }
1020 #endif
1021
1022   if (oclass->request_new_pad)
1023     newpad = (oclass->request_new_pad) (element, templ, name, caps);
1024
1025   if (newpad)
1026     gst_object_ref (newpad);
1027
1028   return newpad;
1029 }
1030
1031 /**
1032  * gst_element_get_request_pad:
1033  * @element: a #GstElement to find a request pad of.
1034  * @name: the name of the request #GstPad to retrieve.
1035  *
1036  * Retrieves a pad from the element by name (e.g. "src_\%d"). This version only
1037  * retrieves request pads. The pad should be released with
1038  * gst_element_release_request_pad().
1039  *
1040  * This method is slow and will be deprecated in the future. New code should
1041  * use gst_element_request_pad() with the requested template.
1042  *
1043  * Returns: (transfer full): requested #GstPad if found, otherwise %NULL.
1044  *     Release after usage.
1045  */
1046 GstPad *
1047 gst_element_get_request_pad (GstElement * element, const gchar * name)
1048 {
1049   GstPadTemplate *templ = NULL;
1050   GstPad *pad;
1051   const gchar *req_name = NULL;
1052   gboolean templ_found = FALSE;
1053   GList *list;
1054   const gchar *data;
1055   gchar *str, *endptr = NULL;
1056   GstElementClass *class;
1057
1058   g_return_val_if_fail (GST_IS_ELEMENT (element), NULL);
1059   g_return_val_if_fail (name != NULL, NULL);
1060
1061   class = GST_ELEMENT_GET_CLASS (element);
1062
1063   /* if the name contains a %, we assume it's the complete template name. Get
1064    * the template and try to get a pad */
1065   if (strstr (name, "%")) {
1066     templ = gst_element_class_get_request_pad_template (class, name);
1067     req_name = NULL;
1068     if (templ)
1069       templ_found = TRUE;
1070   } else {
1071     /* there is no % in the name, try to find a matching template */
1072     list = class->padtemplates;
1073     while (!templ_found && list) {
1074       templ = (GstPadTemplate *) list->data;
1075       if (templ->presence == GST_PAD_REQUEST) {
1076         GST_CAT_DEBUG (GST_CAT_PADS, "comparing %s to %s", name,
1077             templ->name_template);
1078         /* see if we find an exact match */
1079         if (strcmp (name, templ->name_template) == 0) {
1080           templ_found = TRUE;
1081           req_name = name;
1082           break;
1083         }
1084         /* Because of sanity checks in gst_pad_template_new(), we know that %s
1085            and %d and %u, occurring at the end of the name_template, are the only
1086            possibilities. */
1087         else if ((str = strchr (templ->name_template, '%'))
1088             && strncmp (templ->name_template, name,
1089                 str - templ->name_template) == 0
1090             && strlen (name) > str - templ->name_template) {
1091           data = name + (str - templ->name_template);
1092           if (*(str + 1) == 'd') {
1093             glong tmp;
1094
1095             /* it's an int */
1096             tmp = strtol (data, &endptr, 10);
1097             if (tmp != G_MINLONG && tmp != G_MAXLONG && endptr &&
1098                 *endptr == '\0') {
1099               templ_found = TRUE;
1100               req_name = name;
1101               break;
1102             }
1103           } else if (*(str + 1) == 'u') {
1104             gulong tmp;
1105
1106             /* it's an int */
1107             tmp = strtoul (data, &endptr, 10);
1108             if (tmp != G_MAXULONG && endptr && *endptr == '\0') {
1109               templ_found = TRUE;
1110               req_name = name;
1111               break;
1112             }
1113           } else {
1114             /* it's a string */
1115             templ_found = TRUE;
1116             req_name = name;
1117             break;
1118           }
1119         }
1120       }
1121       list = list->next;
1122     }
1123   }
1124
1125   if (!templ_found)
1126     return NULL;
1127
1128   pad = _gst_element_request_pad (element, templ, req_name, NULL);
1129
1130   return pad;
1131 }
1132
1133 /**
1134  * gst_element_request_pad:
1135  * @element: a #GstElement to find a request pad of.
1136  * @templ: a #GstPadTemplate of which we want a pad of.
1137  * @name: (transfer none) (allow-none): the name of the request #GstPad
1138  * to retrieve. Can be %NULL.
1139  * @caps: (transfer none) (allow-none): the caps of the pad we want to
1140  * request. Can be %NULL.
1141  *
1142  * Retrieves a request pad from the element according to the provided template.
1143  * Pad templates can be looked up using
1144  * gst_element_factory_get_static_pad_templates().
1145  *
1146  * The pad should be released with gst_element_release_request_pad().
1147  *
1148  * Returns: (transfer full): requested #GstPad if found, otherwise %NULL.
1149  *     Release after usage.
1150  *
1151  * Since: 0.10.32
1152  */
1153 GstPad *
1154 gst_element_request_pad (GstElement * element,
1155     GstPadTemplate * templ, const gchar * name, const GstCaps * caps)
1156 {
1157   g_return_val_if_fail (GST_IS_ELEMENT (element), NULL);
1158   g_return_val_if_fail (templ != NULL, NULL);
1159
1160   return _gst_element_request_pad (element, templ, name, caps);
1161 }
1162
1163 static GstIterator *
1164 gst_element_iterate_pad_list (GstElement * element, GList ** padlist)
1165 {
1166   GstIterator *result;
1167
1168   GST_OBJECT_LOCK (element);
1169   result = gst_iterator_new_list (GST_TYPE_PAD,
1170       GST_OBJECT_GET_LOCK (element),
1171       &element->pads_cookie, padlist, (GObject *) element, NULL);
1172   GST_OBJECT_UNLOCK (element);
1173
1174   return result;
1175 }
1176
1177 /**
1178  * gst_element_iterate_pads:
1179  * @element: a #GstElement to iterate pads of.
1180  *
1181  * Retrieves an iterator of @element's pads. The iterator should
1182  * be freed after usage. Also more specialized iterators exists such as
1183  * gst_element_iterate_src_pads() or gst_element_iterate_sink_pads().
1184  *
1185  * Returns: (transfer full): the #GstIterator of #GstPad. Unref each pad
1186  *     after use.
1187  *
1188  * MT safe.
1189  */
1190 GstIterator *
1191 gst_element_iterate_pads (GstElement * element)
1192 {
1193   g_return_val_if_fail (GST_IS_ELEMENT (element), NULL);
1194
1195   return gst_element_iterate_pad_list (element, &element->pads);
1196 }
1197
1198 /**
1199  * gst_element_iterate_src_pads:
1200  * @element: a #GstElement.
1201  *
1202  * Retrieves an iterator of @element's source pads.
1203  *
1204  * Returns: (transfer full): the #GstIterator of #GstPad. Unref each pad
1205  *     after use.
1206  *
1207  * MT safe.
1208  */
1209 GstIterator *
1210 gst_element_iterate_src_pads (GstElement * element)
1211 {
1212   g_return_val_if_fail (GST_IS_ELEMENT (element), NULL);
1213
1214   return gst_element_iterate_pad_list (element, &element->srcpads);
1215 }
1216
1217 /**
1218  * gst_element_iterate_sink_pads:
1219  * @element: a #GstElement.
1220  *
1221  * Retrieves an iterator of @element's sink pads.
1222  *
1223  * Returns: (transfer full): the #GstIterator of #GstPad. Unref each pad
1224  *     after use.
1225  *
1226  * MT safe.
1227  */
1228 GstIterator *
1229 gst_element_iterate_sink_pads (GstElement * element)
1230 {
1231   g_return_val_if_fail (GST_IS_ELEMENT (element), NULL);
1232
1233   return gst_element_iterate_pad_list (element, &element->sinkpads);
1234 }
1235
1236 /**
1237  * gst_element_class_add_pad_template:
1238  * @klass: the #GstElementClass to add the pad template to.
1239  * @templ: (transfer full): a #GstPadTemplate to add to the element class.
1240  *
1241  * Adds a padtemplate to an element class. This is mainly used in the _class_init
1242  * functions of classes. If a pad template with the same name as an already
1243  * existing one is added the old one is replaced by the new one.
1244  *
1245  */
1246 void
1247 gst_element_class_add_pad_template (GstElementClass * klass,
1248     GstPadTemplate * templ)
1249 {
1250   GList *template_list = klass->padtemplates;
1251
1252   g_return_if_fail (GST_IS_ELEMENT_CLASS (klass));
1253   g_return_if_fail (GST_IS_PAD_TEMPLATE (templ));
1254
1255   /* If we already have a pad template with the same name replace the
1256    * old one. */
1257   while (template_list) {
1258     GstPadTemplate *padtempl = (GstPadTemplate *) template_list->data;
1259
1260     /* Found pad with the same name, replace and return */
1261     if (strcmp (templ->name_template, padtempl->name_template) == 0) {
1262       gst_object_unref (padtempl);
1263       template_list->data = templ;
1264       return;
1265     }
1266     template_list = g_list_next (template_list);
1267   }
1268
1269   /* Take ownership of the floating ref */
1270   g_object_ref_sink (templ);
1271
1272   klass->padtemplates = g_list_append (klass->padtemplates, templ);
1273   klass->numpadtemplates++;
1274 }
1275
1276 /**
1277  * gst_element_class_add_metadata:
1278  * @klass: class to set metadata for
1279  * @key: the key to set
1280  * @value: the value to set
1281  *
1282  * Set @key with @value as metadata in @klass.
1283  */
1284 void
1285 gst_element_class_add_metadata (GstElementClass * klass,
1286     const gchar * key, const gchar * value)
1287 {
1288   g_return_if_fail (GST_IS_ELEMENT_CLASS (klass));
1289   g_return_if_fail (key != NULL);
1290   g_return_if_fail (value != NULL);
1291
1292   gst_structure_set ((GstStructure *) klass->metadata,
1293       key, G_TYPE_STRING, value, NULL);
1294 }
1295
1296 /**
1297  * gst_element_class_set_metadata:
1298  * @klass: class to set metadata for
1299  * @longname: The long English name of the element. E.g. "File Sink"
1300  * @classification: String describing the type of element, as an unordered list
1301  * separated with slashes ('/'). See draft-klass.txt of the design docs
1302  * for more details and common types. E.g: "Sink/File"
1303  * @description: Sentence describing the purpose of the element.
1304  * E.g: "Write stream to a file"
1305  * @author: Name and contact details of the author(s). Use \n to separate
1306  * multiple author metadata. E.g: "Joe Bloggs &lt;joe.blogs at foo.com&gt;"
1307  *
1308  * Sets the detailed information for a #GstElementClass.
1309  * <note>This function is for use in _class_init functions only.</note>
1310  */
1311 void
1312 gst_element_class_set_metadata (GstElementClass * klass,
1313     const gchar * longname, const gchar * classification,
1314     const gchar * description, const gchar * author)
1315 {
1316   g_return_if_fail (GST_IS_ELEMENT_CLASS (klass));
1317
1318   gst_structure_set ((GstStructure *) klass->metadata,
1319       GST_ELEMENT_METADATA_LONGNAME, G_TYPE_STRING, longname,
1320       GST_ELEMENT_METADATA_KLASS, G_TYPE_STRING, classification,
1321       GST_ELEMENT_METADATA_DESCRIPTION, G_TYPE_STRING, description,
1322       GST_ELEMENT_METADATA_AUTHOR, G_TYPE_STRING, author, NULL);
1323 }
1324
1325 /**
1326  * gst_element_class_get_metadata:
1327  * @klass: class to get metadata for
1328  * @key: the key to get
1329  *
1330  * Get metadata with @key in @klass.
1331  *
1332  * Returns: the metadata for @key.
1333  */
1334 const gchar *
1335 gst_element_class_get_metadata (GstElementClass * klass, const gchar * key)
1336 {
1337   g_return_val_if_fail (GST_IS_ELEMENT_CLASS (klass), NULL);
1338   g_return_val_if_fail (key != NULL, NULL);
1339
1340   return gst_structure_get_string ((GstStructure *) klass->metadata, key);
1341 }
1342
1343 /**
1344  * gst_element_class_get_pad_template_list:
1345  * @element_class: a #GstElementClass to get pad templates of.
1346  *
1347  * Retrieves a list of the pad templates associated with @element_class. The
1348  * list must not be modified by the calling code.
1349  * <note>If you use this function in the #GInstanceInitFunc of an object class
1350  * that has subclasses, make sure to pass the g_class parameter of the
1351  * #GInstanceInitFunc here.</note>
1352  *
1353  * Returns: (transfer none) (element-type Gst.PadTemplate): the #GList of
1354  *     pad templates.
1355  */
1356 GList *
1357 gst_element_class_get_pad_template_list (GstElementClass * element_class)
1358 {
1359   g_return_val_if_fail (GST_IS_ELEMENT_CLASS (element_class), NULL);
1360
1361   return element_class->padtemplates;
1362 }
1363
1364 /**
1365  * gst_element_class_get_pad_template:
1366  * @element_class: a #GstElementClass to get the pad template of.
1367  * @name: the name of the #GstPadTemplate to get.
1368  *
1369  * Retrieves a padtemplate from @element_class with the given name.
1370  * <note>If you use this function in the #GInstanceInitFunc of an object class
1371  * that has subclasses, make sure to pass the g_class parameter of the
1372  * #GInstanceInitFunc here.</note>
1373  *
1374  * Returns: (transfer none): the #GstPadTemplate with the given name, or %NULL
1375  *     if none was found. No unreferencing is necessary.
1376  */
1377 GstPadTemplate *
1378 gst_element_class_get_pad_template (GstElementClass *
1379     element_class, const gchar * name)
1380 {
1381   GList *padlist;
1382
1383   g_return_val_if_fail (GST_IS_ELEMENT_CLASS (element_class), NULL);
1384   g_return_val_if_fail (name != NULL, NULL);
1385
1386   padlist = element_class->padtemplates;
1387
1388   while (padlist) {
1389     GstPadTemplate *padtempl = (GstPadTemplate *) padlist->data;
1390
1391     if (strcmp (padtempl->name_template, name) == 0)
1392       return padtempl;
1393
1394     padlist = g_list_next (padlist);
1395   }
1396
1397   return NULL;
1398 }
1399
1400 static GstPadTemplate *
1401 gst_element_class_get_request_pad_template (GstElementClass *
1402     element_class, const gchar * name)
1403 {
1404   GstPadTemplate *tmpl;
1405
1406   tmpl = gst_element_class_get_pad_template (element_class, name);
1407   if (tmpl != NULL && tmpl->presence == GST_PAD_REQUEST)
1408     return tmpl;
1409
1410   return NULL;
1411 }
1412
1413 /* get a random pad on element of the given direction.
1414  * The pad is random in a sense that it is the first pad that is (optionaly) linked.
1415  */
1416 static GstPad *
1417 gst_element_get_random_pad (GstElement * element,
1418     gboolean need_linked, GstPadDirection dir)
1419 {
1420   GstPad *result = NULL;
1421   GList *pads;
1422
1423   GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "getting a random pad");
1424
1425   switch (dir) {
1426     case GST_PAD_SRC:
1427       GST_OBJECT_LOCK (element);
1428       pads = element->srcpads;
1429       break;
1430     case GST_PAD_SINK:
1431       GST_OBJECT_LOCK (element);
1432       pads = element->sinkpads;
1433       break;
1434     default:
1435       goto wrong_direction;
1436   }
1437   for (; pads; pads = g_list_next (pads)) {
1438     GstPad *pad = GST_PAD_CAST (pads->data);
1439
1440     GST_OBJECT_LOCK (pad);
1441     GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "checking pad %s:%s",
1442         GST_DEBUG_PAD_NAME (pad));
1443
1444     if (need_linked && !GST_PAD_IS_LINKED (pad)) {
1445       /* if we require a linked pad, and it is not linked, continue the
1446        * search */
1447       GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "pad %s:%s is not linked",
1448           GST_DEBUG_PAD_NAME (pad));
1449       GST_OBJECT_UNLOCK (pad);
1450       continue;
1451     } else {
1452       /* found a pad, stop search */
1453       GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "found pad %s:%s",
1454           GST_DEBUG_PAD_NAME (pad));
1455       GST_OBJECT_UNLOCK (pad);
1456       result = pad;
1457       break;
1458     }
1459   }
1460   if (result)
1461     gst_object_ref (result);
1462
1463   GST_OBJECT_UNLOCK (element);
1464
1465   return result;
1466
1467   /* ERROR handling */
1468 wrong_direction:
1469   {
1470     g_warning ("unknown pad direction %d", dir);
1471     return NULL;
1472   }
1473 }
1474
1475 static gboolean
1476 gst_element_default_send_event (GstElement * element, GstEvent * event)
1477 {
1478   gboolean result = FALSE;
1479   GstPad *pad;
1480
1481   pad = GST_EVENT_IS_DOWNSTREAM (event) ?
1482       gst_element_get_random_pad (element, TRUE, GST_PAD_SRC) :
1483       gst_element_get_random_pad (element, TRUE, GST_PAD_SINK);
1484
1485   if (pad) {
1486     GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS,
1487         "pushing %s event to random %s pad %s:%s",
1488         GST_EVENT_TYPE_NAME (event),
1489         (GST_PAD_DIRECTION (pad) == GST_PAD_SRC ? "src" : "sink"),
1490         GST_DEBUG_PAD_NAME (pad));
1491
1492     result = gst_pad_push_event (pad, event);
1493     gst_object_unref (pad);
1494   } else {
1495     GST_CAT_INFO (GST_CAT_ELEMENT_PADS, "can't send %s event on element %s",
1496         GST_EVENT_TYPE_NAME (event), GST_ELEMENT_NAME (element));
1497     gst_event_unref (event);
1498   }
1499   return result;
1500 }
1501
1502 /**
1503  * gst_element_send_event:
1504  * @element: a #GstElement to send the event to.
1505  * @event: (transfer full): the #GstEvent to send to the element.
1506  *
1507  * Sends an event to an element. If the element doesn't implement an
1508  * event handler, the event will be pushed on a random linked sink pad for
1509  * upstream events or a random linked source pad for downstream events.
1510  *
1511  * This function takes owership of the provided event so you should
1512  * gst_event_ref() it if you want to reuse the event after this call.
1513  *
1514  * Returns: %TRUE if the event was handled.
1515  *
1516  * MT safe.
1517  */
1518 gboolean
1519 gst_element_send_event (GstElement * element, GstEvent * event)
1520 {
1521   GstElementClass *oclass;
1522   gboolean result = FALSE;
1523
1524   g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
1525   g_return_val_if_fail (event != NULL, FALSE);
1526
1527   oclass = GST_ELEMENT_GET_CLASS (element);
1528
1529   GST_STATE_LOCK (element);
1530   if (oclass->send_event) {
1531     GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "send %s event on element %s",
1532         GST_EVENT_TYPE_NAME (event), GST_ELEMENT_NAME (element));
1533     result = oclass->send_event (element, event);
1534   }
1535   GST_STATE_UNLOCK (element);
1536
1537   return result;
1538 }
1539
1540 /**
1541  * gst_element_seek:
1542  * @element: a #GstElement to send the event to.
1543  * @rate: The new playback rate
1544  * @format: The format of the seek values
1545  * @flags: The optional seek flags.
1546  * @cur_type: The type and flags for the new current position
1547  * @cur: The value of the new current position
1548  * @stop_type: The type and flags for the new stop position
1549  * @stop: The value of the new stop position
1550  *
1551  * Sends a seek event to an element. See gst_event_new_seek() for the details of
1552  * the parameters. The seek event is sent to the element using
1553  * gst_element_send_event().
1554  *
1555  * Returns: %TRUE if the event was handled.
1556  *
1557  * MT safe.
1558  */
1559 gboolean
1560 gst_element_seek (GstElement * element, gdouble rate, GstFormat format,
1561     GstSeekFlags flags, GstSeekType cur_type, gint64 cur,
1562     GstSeekType stop_type, gint64 stop)
1563 {
1564   GstEvent *event;
1565   gboolean result;
1566
1567   g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
1568
1569   event =
1570       gst_event_new_seek (rate, format, flags, cur_type, cur, stop_type, stop);
1571   result = gst_element_send_event (element, event);
1572
1573   return result;
1574 }
1575
1576 static gboolean
1577 gst_element_default_query (GstElement * element, GstQuery * query)
1578 {
1579   gboolean result = FALSE;
1580   GstPad *pad;
1581
1582   pad = gst_element_get_random_pad (element, FALSE, GST_PAD_SRC);
1583   if (pad) {
1584     result = gst_pad_query (pad, query);
1585
1586     gst_object_unref (pad);
1587   } else {
1588     pad = gst_element_get_random_pad (element, TRUE, GST_PAD_SINK);
1589     if (pad) {
1590       GstPad *peer = gst_pad_get_peer (pad);
1591
1592       if (peer) {
1593         result = gst_pad_query (peer, query);
1594
1595         gst_object_unref (peer);
1596       }
1597       gst_object_unref (pad);
1598     }
1599   }
1600   return result;
1601 }
1602
1603 /**
1604  * gst_element_query:
1605  * @element: a #GstElement to perform the query on.
1606  * @query: (transfer none): the #GstQuery.
1607  *
1608  * Performs a query on the given element.
1609  *
1610  * For elements that don't implement a query handler, this function
1611  * forwards the query to a random srcpad or to the peer of a
1612  * random linked sinkpad of this element.
1613  *
1614  * Please note that some queries might need a running pipeline to work.
1615  *
1616  * Returns: TRUE if the query could be performed.
1617  *
1618  * MT safe.
1619  */
1620 gboolean
1621 gst_element_query (GstElement * element, GstQuery * query)
1622 {
1623   GstElementClass *oclass;
1624   gboolean result = FALSE;
1625
1626   g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
1627   g_return_val_if_fail (query != NULL, FALSE);
1628
1629   oclass = GST_ELEMENT_GET_CLASS (element);
1630
1631   if (oclass->query) {
1632     GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "send query on element %s",
1633         GST_ELEMENT_NAME (element));
1634     result = oclass->query (element, query);
1635   }
1636   return result;
1637 }
1638
1639 /**
1640  * gst_element_post_message:
1641  * @element: a #GstElement posting the message
1642  * @message: (transfer full): a #GstMessage to post
1643  *
1644  * Post a message on the element's #GstBus. This function takes ownership of the
1645  * message; if you want to access the message after this call, you should add an
1646  * additional reference before calling.
1647  *
1648  * Returns: %TRUE if the message was successfully posted. The function returns
1649  * %FALSE if the element did not have a bus.
1650  *
1651  * MT safe.
1652  */
1653 gboolean
1654 gst_element_post_message (GstElement * element, GstMessage * message)
1655 {
1656   GstBus *bus;
1657   gboolean result = FALSE;
1658
1659   g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
1660   g_return_val_if_fail (message != NULL, FALSE);
1661
1662   GST_OBJECT_LOCK (element);
1663   bus = element->bus;
1664
1665   if (G_UNLIKELY (bus == NULL))
1666     goto no_bus;
1667
1668   gst_object_ref (bus);
1669   GST_OBJECT_UNLOCK (element);
1670
1671   /* we release the element lock when posting the message so that any
1672    * (synchronous) message handlers can operate on the element */
1673   result = gst_bus_post (bus, message);
1674   gst_object_unref (bus);
1675
1676   return result;
1677
1678   /* ERRORS */
1679 no_bus:
1680   {
1681     GST_CAT_DEBUG_OBJECT (GST_CAT_MESSAGE, element,
1682         "not posting message %p: no bus", message);
1683     GST_OBJECT_UNLOCK (element);
1684     gst_message_unref (message);
1685     return FALSE;
1686   }
1687 }
1688
1689 /**
1690  * _gst_element_error_printf:
1691  * @format: the printf-like format to use, or %NULL
1692  *
1693  * This function is only used internally by the gst_element_error() macro.
1694  *
1695  * Returns: (transfer full): a newly allocated string, or %NULL if the format
1696  *     was %NULL or ""
1697  *
1698  * MT safe.
1699  */
1700 gchar *
1701 _gst_element_error_printf (const gchar * format, ...)
1702 {
1703   va_list args;
1704   gchar *buffer;
1705
1706   if (format == NULL)
1707     return NULL;
1708   if (format[0] == 0)
1709     return NULL;
1710
1711   va_start (args, format);
1712   buffer = g_strdup_vprintf (format, args);
1713   va_end (args);
1714   return buffer;
1715 }
1716
1717 /**
1718  * gst_element_message_full:
1719  * @element:  a #GstElement to send message from
1720  * @type:     the #GstMessageType
1721  * @domain:   the GStreamer GError domain this message belongs to
1722  * @code:     the GError code belonging to the domain
1723  * @text:     (allow-none) (transfer full): an allocated text string to be used
1724  *            as a replacement for the default message connected to code,
1725  *            or %NULL
1726  * @debug:    (allow-none) (transfer full): an allocated debug message to be
1727  *            used as a replacement for the default debugging information,
1728  *            or %NULL
1729  * @file:     the source code file where the error was generated
1730  * @function: the source code function where the error was generated
1731  * @line:     the source code line where the error was generated
1732  *
1733  * Post an error, warning or info message on the bus from inside an element.
1734  *
1735  * @type must be of #GST_MESSAGE_ERROR, #GST_MESSAGE_WARNING or
1736  * #GST_MESSAGE_INFO.
1737  *
1738  * MT safe.
1739  */
1740 void gst_element_message_full
1741     (GstElement * element, GstMessageType type,
1742     GQuark domain, gint code, gchar * text,
1743     gchar * debug, const gchar * file, const gchar * function, gint line)
1744 {
1745   GError *gerror = NULL;
1746   gchar *name;
1747   gchar *sent_text;
1748   gchar *sent_debug;
1749   gboolean has_debug = TRUE;
1750   GstMessage *message = NULL;
1751
1752   /* checks */
1753   GST_CAT_DEBUG_OBJECT (GST_CAT_MESSAGE, element, "start");
1754   g_return_if_fail (GST_IS_ELEMENT (element));
1755   g_return_if_fail ((type == GST_MESSAGE_ERROR) ||
1756       (type == GST_MESSAGE_WARNING) || (type == GST_MESSAGE_INFO));
1757
1758   /* check if we send the given text or the default error text */
1759   if ((text == NULL) || (text[0] == 0)) {
1760     /* text could have come from g_strdup_printf (""); */
1761     g_free (text);
1762     sent_text = gst_error_get_message (domain, code);
1763   } else
1764     sent_text = text;
1765
1766   /* construct a sent_debug with extra information from source */
1767   if ((debug == NULL) || (debug[0] == 0)) {
1768     /* debug could have come from g_strdup_printf (""); */
1769     has_debug = FALSE;
1770   }
1771
1772   name = gst_object_get_path_string (GST_OBJECT_CAST (element));
1773   if (has_debug)
1774     sent_debug = g_strdup_printf ("%s(%d): %s (): %s:\n%s",
1775         file, line, function, name, debug);
1776   else
1777     sent_debug = g_strdup_printf ("%s(%d): %s (): %s",
1778         file, line, function, name);
1779   g_free (name);
1780   g_free (debug);
1781
1782   /* create gerror and post message */
1783   GST_CAT_INFO_OBJECT (GST_CAT_ERROR_SYSTEM, element, "posting message: %s",
1784       sent_text);
1785   gerror = g_error_new_literal (domain, code, sent_text);
1786
1787   switch (type) {
1788     case GST_MESSAGE_ERROR:
1789       message =
1790           gst_message_new_error (GST_OBJECT_CAST (element), gerror, sent_debug);
1791       break;
1792     case GST_MESSAGE_WARNING:
1793       message = gst_message_new_warning (GST_OBJECT_CAST (element), gerror,
1794           sent_debug);
1795       break;
1796     case GST_MESSAGE_INFO:
1797       message = gst_message_new_info (GST_OBJECT_CAST (element), gerror,
1798           sent_debug);
1799       break;
1800     default:
1801       g_assert_not_reached ();
1802       break;
1803   }
1804   gst_element_post_message (element, message);
1805
1806   GST_CAT_INFO_OBJECT (GST_CAT_ERROR_SYSTEM, element, "posted %s message: %s",
1807       (type == GST_MESSAGE_ERROR ? "error" : "warning"), sent_text);
1808
1809   /* cleanup */
1810   g_error_free (gerror);
1811   g_free (sent_debug);
1812   g_free (sent_text);
1813 }
1814
1815 /**
1816  * gst_element_is_locked_state:
1817  * @element: a #GstElement.
1818  *
1819  * Checks if the state of an element is locked.
1820  * If the state of an element is locked, state changes of the parent don't
1821  * affect the element.
1822  * This way you can leave currently unused elements inside bins. Just lock their
1823  * state before changing the state from #GST_STATE_NULL.
1824  *
1825  * MT safe.
1826  *
1827  * Returns: TRUE, if the element's state is locked.
1828  */
1829 gboolean
1830 gst_element_is_locked_state (GstElement * element)
1831 {
1832   gboolean result;
1833
1834   g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
1835
1836   GST_OBJECT_LOCK (element);
1837   result = GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_LOCKED_STATE);
1838   GST_OBJECT_UNLOCK (element);
1839
1840   return result;
1841 }
1842
1843 /**
1844  * gst_element_set_locked_state:
1845  * @element: a #GstElement
1846  * @locked_state: TRUE to lock the element's state
1847  *
1848  * Locks the state of an element, so state changes of the parent don't affect
1849  * this element anymore.
1850  *
1851  * MT safe.
1852  *
1853  * Returns: TRUE if the state was changed, FALSE if bad parameters were given
1854  * or the elements state-locking needed no change.
1855  */
1856 gboolean
1857 gst_element_set_locked_state (GstElement * element, gboolean locked_state)
1858 {
1859   gboolean old;
1860
1861   g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
1862
1863   GST_OBJECT_LOCK (element);
1864   old = GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_LOCKED_STATE);
1865
1866   if (G_UNLIKELY (old == locked_state))
1867     goto was_ok;
1868
1869   if (locked_state) {
1870     GST_CAT_DEBUG (GST_CAT_STATES, "locking state of element %s",
1871         GST_ELEMENT_NAME (element));
1872     GST_OBJECT_FLAG_SET (element, GST_ELEMENT_LOCKED_STATE);
1873   } else {
1874     GST_CAT_DEBUG (GST_CAT_STATES, "unlocking state of element %s",
1875         GST_ELEMENT_NAME (element));
1876     GST_OBJECT_FLAG_UNSET (element, GST_ELEMENT_LOCKED_STATE);
1877   }
1878   GST_OBJECT_UNLOCK (element);
1879
1880   return TRUE;
1881
1882 was_ok:
1883   {
1884     GST_CAT_DEBUG (GST_CAT_STATES,
1885         "elements %s was already in locked state %d",
1886         GST_ELEMENT_NAME (element), old);
1887     GST_OBJECT_UNLOCK (element);
1888
1889     return FALSE;
1890   }
1891 }
1892
1893 /**
1894  * gst_element_sync_state_with_parent:
1895  * @element: a #GstElement.
1896  *
1897  * Tries to change the state of the element to the same as its parent.
1898  * If this function returns FALSE, the state of element is undefined.
1899  *
1900  * Returns: TRUE, if the element's state could be synced to the parent's state.
1901  *
1902  * MT safe.
1903  */
1904 gboolean
1905 gst_element_sync_state_with_parent (GstElement * element)
1906 {
1907   GstElement *parent;
1908   GstState target;
1909   GstStateChangeReturn ret;
1910
1911   g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
1912
1913   if ((parent = GST_ELEMENT_CAST (gst_element_get_parent (element)))) {
1914     GstState parent_current, parent_pending;
1915
1916     GST_OBJECT_LOCK (parent);
1917     parent_current = GST_STATE (parent);
1918     parent_pending = GST_STATE_PENDING (parent);
1919     GST_OBJECT_UNLOCK (parent);
1920
1921     /* set to pending if there is one, else we set it to the current state of
1922      * the parent */
1923     if (parent_pending != GST_STATE_VOID_PENDING)
1924       target = parent_pending;
1925     else
1926       target = parent_current;
1927
1928     GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
1929         "syncing state (%s) to parent %s %s (%s, %s)",
1930         gst_element_state_get_name (GST_STATE (element)),
1931         GST_ELEMENT_NAME (parent), gst_element_state_get_name (target),
1932         gst_element_state_get_name (parent_current),
1933         gst_element_state_get_name (parent_pending));
1934
1935     ret = gst_element_set_state (element, target);
1936     if (ret == GST_STATE_CHANGE_FAILURE)
1937       goto failed;
1938
1939     gst_object_unref (parent);
1940
1941     return TRUE;
1942   } else {
1943     GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element, "element has no parent");
1944   }
1945   return FALSE;
1946
1947   /* ERROR */
1948 failed:
1949   {
1950     GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
1951         "syncing state failed (%s)",
1952         gst_element_state_change_return_get_name (ret));
1953     gst_object_unref (parent);
1954     return FALSE;
1955   }
1956 }
1957
1958 /* MT safe */
1959 static GstStateChangeReturn
1960 gst_element_get_state_func (GstElement * element,
1961     GstState * state, GstState * pending, GstClockTime timeout)
1962 {
1963   GstStateChangeReturn ret = GST_STATE_CHANGE_FAILURE;
1964   GstState old_pending;
1965
1966   GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element, "getting state, timeout %"
1967       GST_TIME_FORMAT, GST_TIME_ARGS (timeout));
1968
1969   GST_OBJECT_LOCK (element);
1970   ret = GST_STATE_RETURN (element);
1971   GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element, "RETURN is %s",
1972       gst_element_state_change_return_get_name (ret));
1973
1974   /* we got an error, report immediately */
1975   if (ret == GST_STATE_CHANGE_FAILURE)
1976     goto done;
1977
1978   /* we got no_preroll, report immediately */
1979   if (ret == GST_STATE_CHANGE_NO_PREROLL)
1980     goto done;
1981
1982   /* no need to wait async if we are not async */
1983   if (ret != GST_STATE_CHANGE_ASYNC)
1984     goto done;
1985
1986   old_pending = GST_STATE_PENDING (element);
1987   if (old_pending != GST_STATE_VOID_PENDING) {
1988     GTimeVal *timeval, abstimeout;
1989     guint32 cookie;
1990
1991     if (timeout != GST_CLOCK_TIME_NONE) {
1992       glong add = timeout / 1000;
1993
1994       if (add == 0)
1995         goto done;
1996
1997       /* make timeout absolute */
1998       g_get_current_time (&abstimeout);
1999       g_time_val_add (&abstimeout, add);
2000       timeval = &abstimeout;
2001     } else {
2002       timeval = NULL;
2003     }
2004     /* get cookie to detect state changes during waiting */
2005     cookie = element->state_cookie;
2006
2007     GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2008         "waiting for element to commit state");
2009
2010     /* we have a pending state change, wait for it to complete */
2011     if (!GST_STATE_TIMED_WAIT (element, timeval)) {
2012       GST_CAT_INFO_OBJECT (GST_CAT_STATES, element, "timed out");
2013       /* timeout triggered */
2014       ret = GST_STATE_CHANGE_ASYNC;
2015     } else {
2016       if (cookie != element->state_cookie)
2017         goto interrupted;
2018
2019       /* could be success or failure */
2020       if (old_pending == GST_STATE (element)) {
2021         GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element, "got success");
2022         ret = GST_STATE_CHANGE_SUCCESS;
2023       } else {
2024         GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element, "got failure");
2025         ret = GST_STATE_CHANGE_FAILURE;
2026       }
2027     }
2028     /* if nothing is pending anymore we can return SUCCESS */
2029     if (GST_STATE_PENDING (element) == GST_STATE_VOID_PENDING) {
2030       GST_CAT_LOG_OBJECT (GST_CAT_STATES, element, "nothing pending");
2031       ret = GST_STATE_CHANGE_SUCCESS;
2032     }
2033   }
2034
2035 done:
2036   if (state)
2037     *state = GST_STATE (element);
2038   if (pending)
2039     *pending = GST_STATE_PENDING (element);
2040
2041   GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
2042       "state current: %s, pending: %s, result: %s",
2043       gst_element_state_get_name (GST_STATE (element)),
2044       gst_element_state_get_name (GST_STATE_PENDING (element)),
2045       gst_element_state_change_return_get_name (ret));
2046   GST_OBJECT_UNLOCK (element);
2047
2048   return ret;
2049
2050 interrupted:
2051   {
2052     if (state)
2053       *state = GST_STATE_VOID_PENDING;
2054     if (pending)
2055       *pending = GST_STATE_VOID_PENDING;
2056
2057     GST_CAT_INFO_OBJECT (GST_CAT_STATES, element, "interruped");
2058
2059     GST_OBJECT_UNLOCK (element);
2060
2061     return GST_STATE_CHANGE_FAILURE;
2062   }
2063 }
2064
2065 /**
2066  * gst_element_get_state:
2067  * @element: a #GstElement to get the state of.
2068  * @state: (out) (allow-none): a pointer to #GstState to hold the state.
2069  *     Can be %NULL.
2070  * @pending: (out) (allow-none): a pointer to #GstState to hold the pending
2071  *     state. Can be %NULL.
2072  * @timeout: a #GstClockTime to specify the timeout for an async
2073  *           state change or %GST_CLOCK_TIME_NONE for infinite timeout.
2074  *
2075  * Gets the state of the element.
2076  *
2077  * For elements that performed an ASYNC state change, as reported by
2078  * gst_element_set_state(), this function will block up to the
2079  * specified timeout value for the state change to complete.
2080  * If the element completes the state change or goes into
2081  * an error, this function returns immediately with a return value of
2082  * %GST_STATE_CHANGE_SUCCESS or %GST_STATE_CHANGE_FAILURE respectively.
2083  *
2084  * For elements that did not return %GST_STATE_CHANGE_ASYNC, this function
2085  * returns the current and pending state immediately.
2086  *
2087  * This function returns %GST_STATE_CHANGE_NO_PREROLL if the element
2088  * successfully changed its state but is not able to provide data yet.
2089  * This mostly happens for live sources that only produce data in
2090  * %GST_STATE_PLAYING. While the state change return is equivalent to
2091  * %GST_STATE_CHANGE_SUCCESS, it is returned to the application to signal that
2092  * some sink elements might not be able to complete their state change because
2093  * an element is not producing data to complete the preroll. When setting the
2094  * element to playing, the preroll will complete and playback will start.
2095  *
2096  * Returns: %GST_STATE_CHANGE_SUCCESS if the element has no more pending state
2097  *          and the last state change succeeded, %GST_STATE_CHANGE_ASYNC if the
2098  *          element is still performing a state change or
2099  *          %GST_STATE_CHANGE_FAILURE if the last state change failed.
2100  *
2101  * MT safe.
2102  */
2103 GstStateChangeReturn
2104 gst_element_get_state (GstElement * element,
2105     GstState * state, GstState * pending, GstClockTime timeout)
2106 {
2107   GstElementClass *oclass;
2108   GstStateChangeReturn result = GST_STATE_CHANGE_FAILURE;
2109
2110   g_return_val_if_fail (GST_IS_ELEMENT (element), GST_STATE_CHANGE_FAILURE);
2111
2112   oclass = GST_ELEMENT_GET_CLASS (element);
2113
2114   if (oclass->get_state)
2115     result = (oclass->get_state) (element, state, pending, timeout);
2116
2117   return result;
2118 }
2119
2120 /**
2121  * gst_element_abort_state:
2122  * @element: a #GstElement to abort the state of.
2123  *
2124  * Abort the state change of the element. This function is used
2125  * by elements that do asynchronous state changes and find out
2126  * something is wrong.
2127  *
2128  * This function should be called with the STATE_LOCK held.
2129  *
2130  * MT safe.
2131  */
2132 void
2133 gst_element_abort_state (GstElement * element)
2134 {
2135   GstState pending;
2136
2137 #ifndef GST_DISABLE_GST_DEBUG
2138   GstState old_state;
2139 #endif
2140
2141   g_return_if_fail (GST_IS_ELEMENT (element));
2142
2143   GST_OBJECT_LOCK (element);
2144   pending = GST_STATE_PENDING (element);
2145
2146   if (pending == GST_STATE_VOID_PENDING ||
2147       GST_STATE_RETURN (element) == GST_STATE_CHANGE_FAILURE)
2148     goto nothing_aborted;
2149
2150 #ifndef GST_DISABLE_GST_DEBUG
2151   old_state = GST_STATE (element);
2152
2153   GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2154       "aborting state from %s to %s", gst_element_state_get_name (old_state),
2155       gst_element_state_get_name (pending));
2156 #endif
2157
2158   /* flag error */
2159   GST_STATE_RETURN (element) = GST_STATE_CHANGE_FAILURE;
2160
2161   GST_STATE_BROADCAST (element);
2162   GST_OBJECT_UNLOCK (element);
2163
2164   return;
2165
2166 nothing_aborted:
2167   {
2168     GST_OBJECT_UNLOCK (element);
2169     return;
2170   }
2171 }
2172
2173 /* Not static because GstBin has manual state handling too */
2174 void
2175 _priv_gst_element_state_changed (GstElement * element, GstState oldstate,
2176     GstState newstate, GstState pending)
2177 {
2178   GstElementClass *klass = GST_ELEMENT_GET_CLASS (element);
2179   GstMessage *message;
2180
2181   GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2182       "notifying about state-changed %s to %s (%s pending)",
2183       gst_element_state_get_name (oldstate),
2184       gst_element_state_get_name (newstate),
2185       gst_element_state_get_name (pending));
2186
2187   if (klass->state_changed)
2188     klass->state_changed (element, oldstate, newstate, pending);
2189
2190   message = gst_message_new_state_changed (GST_OBJECT_CAST (element),
2191       oldstate, newstate, pending);
2192   gst_element_post_message (element, message);
2193 }
2194
2195 /**
2196  * gst_element_continue_state:
2197  * @element: a #GstElement to continue the state change of.
2198  * @ret: The previous state return value
2199  *
2200  * Commit the state change of the element and proceed to the next
2201  * pending state if any. This function is used
2202  * by elements that do asynchronous state changes.
2203  * The core will normally call this method automatically when an
2204  * element returned %GST_STATE_CHANGE_SUCCESS from the state change function.
2205  *
2206  * If after calling this method the element still has not reached
2207  * the pending state, the next state change is performed.
2208  *
2209  * This method is used internally and should normally not be called by plugins
2210  * or applications.
2211  *
2212  * Returns: The result of the commit state change.
2213  *
2214  * MT safe.
2215  */
2216 GstStateChangeReturn
2217 gst_element_continue_state (GstElement * element, GstStateChangeReturn ret)
2218 {
2219   GstStateChangeReturn old_ret;
2220   GstState old_state, old_next;
2221   GstState current, next, pending;
2222   GstStateChange transition;
2223
2224   GST_OBJECT_LOCK (element);
2225   old_ret = GST_STATE_RETURN (element);
2226   GST_STATE_RETURN (element) = ret;
2227   pending = GST_STATE_PENDING (element);
2228
2229   /* check if there is something to commit */
2230   if (pending == GST_STATE_VOID_PENDING)
2231     goto nothing_pending;
2232
2233   old_state = GST_STATE (element);
2234   /* this is the state we should go to next */
2235   old_next = GST_STATE_NEXT (element);
2236   /* update current state */
2237   current = GST_STATE (element) = old_next;
2238
2239   /* see if we reached the final state */
2240   if (pending == current)
2241     goto complete;
2242
2243   next = GST_STATE_GET_NEXT (current, pending);
2244   transition = (GstStateChange) GST_STATE_TRANSITION (current, next);
2245
2246   GST_STATE_NEXT (element) = next;
2247   /* mark busy */
2248   GST_STATE_RETURN (element) = GST_STATE_CHANGE_ASYNC;
2249   GST_OBJECT_UNLOCK (element);
2250
2251   GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2252       "committing state from %s to %s, pending %s, next %s",
2253       gst_element_state_get_name (old_state),
2254       gst_element_state_get_name (old_next),
2255       gst_element_state_get_name (pending), gst_element_state_get_name (next));
2256
2257   _priv_gst_element_state_changed (element, old_state, old_next, pending);
2258
2259   GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2260       "continue state change %s to %s, final %s",
2261       gst_element_state_get_name (current),
2262       gst_element_state_get_name (next), gst_element_state_get_name (pending));
2263
2264   ret = gst_element_change_state (element, transition);
2265
2266   return ret;
2267
2268 nothing_pending:
2269   {
2270     GST_CAT_INFO_OBJECT (GST_CAT_STATES, element, "nothing pending");
2271     GST_OBJECT_UNLOCK (element);
2272     return ret;
2273   }
2274 complete:
2275   {
2276     GST_STATE_PENDING (element) = GST_STATE_VOID_PENDING;
2277     GST_STATE_NEXT (element) = GST_STATE_VOID_PENDING;
2278
2279     GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2280         "completed state change to %s", gst_element_state_get_name (pending));
2281     GST_OBJECT_UNLOCK (element);
2282
2283     /* don't post silly messages with the same state. This can happen
2284      * when an element state is changed to what it already was. For bins
2285      * this can be the result of a lost state, which we check with the
2286      * previous return value.
2287      * We do signal the cond though as a _get_state() might be blocking
2288      * on it. */
2289     if (old_state != old_next || old_ret == GST_STATE_CHANGE_ASYNC)
2290       _priv_gst_element_state_changed (element, old_state, old_next,
2291           GST_STATE_VOID_PENDING);
2292
2293     GST_STATE_BROADCAST (element);
2294
2295     return ret;
2296   }
2297 }
2298
2299 /**
2300  * gst_element_lost_state:
2301  * @element: a #GstElement the state is lost of
2302  *
2303  * Brings the element to the lost state. The current state of the
2304  * element is copied to the pending state so that any call to
2305  * gst_element_get_state() will return %GST_STATE_CHANGE_ASYNC.
2306  *
2307  * An ASYNC_START message is posted. If the element was PLAYING, it will
2308  * go to PAUSED. The element will be restored to its PLAYING state by
2309  * the parent pipeline when it prerolls again.
2310  *
2311  * This is mostly used for elements that lost their preroll buffer
2312  * in the %GST_STATE_PAUSED or %GST_STATE_PLAYING state after a flush,
2313  * they will go to their pending state again when a new preroll buffer is
2314  * queued. This function can only be called when the element is currently
2315  * not in error or an async state change.
2316  *
2317  * This function is used internally and should normally not be called from
2318  * plugins or applications.
2319  */
2320 void
2321 gst_element_lost_state (GstElement * element)
2322 {
2323   GstState old_state, new_state;
2324   GstMessage *message;
2325
2326   g_return_if_fail (GST_IS_ELEMENT (element));
2327
2328   GST_OBJECT_LOCK (element);
2329   if (GST_STATE_RETURN (element) == GST_STATE_CHANGE_FAILURE)
2330     goto nothing_lost;
2331
2332   if (GST_STATE_PENDING (element) != GST_STATE_VOID_PENDING)
2333     goto only_async_start;
2334
2335   old_state = GST_STATE (element);
2336
2337   /* when we were PLAYING, the new state is PAUSED. We will also not
2338    * automatically go to PLAYING but let the parent bin(s) set us to PLAYING
2339    * when we preroll. */
2340   if (old_state > GST_STATE_PAUSED)
2341     new_state = GST_STATE_PAUSED;
2342   else
2343     new_state = old_state;
2344
2345   GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
2346       "lost state of %s to %s", gst_element_state_get_name (old_state),
2347       gst_element_state_get_name (new_state));
2348
2349   GST_STATE (element) = new_state;
2350   GST_STATE_NEXT (element) = new_state;
2351   GST_STATE_PENDING (element) = new_state;
2352   GST_STATE_RETURN (element) = GST_STATE_CHANGE_ASYNC;
2353   GST_OBJECT_UNLOCK (element);
2354
2355   _priv_gst_element_state_changed (element, new_state, new_state, new_state);
2356
2357   message = gst_message_new_async_start (GST_OBJECT_CAST (element));
2358   gst_element_post_message (element, message);
2359
2360   return;
2361
2362 nothing_lost:
2363   {
2364     GST_OBJECT_UNLOCK (element);
2365     return;
2366   }
2367 only_async_start:
2368   {
2369     GST_OBJECT_UNLOCK (element);
2370
2371     message = gst_message_new_async_start (GST_OBJECT_CAST (element));
2372     gst_element_post_message (element, message);
2373     return;
2374   }
2375 }
2376
2377 /**
2378  * gst_element_set_state:
2379  * @element: a #GstElement to change state of.
2380  * @state: the element's new #GstState.
2381  *
2382  * Sets the state of the element. This function will try to set the
2383  * requested state by going through all the intermediary states and calling
2384  * the class's state change function for each.
2385  *
2386  * This function can return #GST_STATE_CHANGE_ASYNC, in which case the
2387  * element will perform the remainder of the state change asynchronously in
2388  * another thread.
2389  * An application can use gst_element_get_state() to wait for the completion
2390  * of the state change or it can wait for a state change message on the bus.
2391  *
2392  * State changes to %GST_STATE_READY or %GST_STATE_NULL never return
2393  * #GST_STATE_CHANGE_ASYNC.
2394  *
2395  * Returns: Result of the state change using #GstStateChangeReturn.
2396  *
2397  * MT safe.
2398  */
2399 GstStateChangeReturn
2400 gst_element_set_state (GstElement * element, GstState state)
2401 {
2402   GstElementClass *oclass;
2403   GstStateChangeReturn result = GST_STATE_CHANGE_FAILURE;
2404
2405   g_return_val_if_fail (GST_IS_ELEMENT (element), GST_STATE_CHANGE_FAILURE);
2406
2407   oclass = GST_ELEMENT_GET_CLASS (element);
2408
2409   if (oclass->set_state)
2410     result = (oclass->set_state) (element, state);
2411
2412   return result;
2413 }
2414
2415 /*
2416  * default set state function, calculates the next state based
2417  * on current state and calls the change_state function
2418  */
2419 static GstStateChangeReturn
2420 gst_element_set_state_func (GstElement * element, GstState state)
2421 {
2422   GstState current, next, old_pending;
2423   GstStateChangeReturn ret;
2424   GstStateChange transition;
2425   GstStateChangeReturn old_ret;
2426
2427   g_return_val_if_fail (GST_IS_ELEMENT (element), GST_STATE_CHANGE_FAILURE);
2428
2429   GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element, "set_state to %s",
2430       gst_element_state_get_name (state));
2431
2432   /* state lock is taken to protect the set_state() and get_state()
2433    * procedures, it does not lock any variables. */
2434   GST_STATE_LOCK (element);
2435
2436   /* now calculate how to get to the new state */
2437   GST_OBJECT_LOCK (element);
2438   old_ret = GST_STATE_RETURN (element);
2439   /* previous state change returned an error, remove all pending
2440    * and next states */
2441   if (old_ret == GST_STATE_CHANGE_FAILURE) {
2442     GST_STATE_NEXT (element) = GST_STATE_VOID_PENDING;
2443     GST_STATE_PENDING (element) = GST_STATE_VOID_PENDING;
2444     GST_STATE_RETURN (element) = GST_STATE_CHANGE_SUCCESS;
2445   }
2446
2447   current = GST_STATE (element);
2448   next = GST_STATE_NEXT (element);
2449   old_pending = GST_STATE_PENDING (element);
2450
2451   /* this is the (new) state we should go to. TARGET is the last state we set on
2452    * the element. */
2453   if (state != GST_STATE_TARGET (element)) {
2454     GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
2455         "setting target state to %s", gst_element_state_get_name (state));
2456     GST_STATE_TARGET (element) = state;
2457     /* increment state cookie so that we can track each state change. We only do
2458      * this if this is actually a new state change. */
2459     element->state_cookie++;
2460   }
2461   GST_STATE_PENDING (element) = state;
2462
2463   GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
2464       "current %s, old_pending %s, next %s, old return %s",
2465       gst_element_state_get_name (current),
2466       gst_element_state_get_name (old_pending),
2467       gst_element_state_get_name (next),
2468       gst_element_state_change_return_get_name (old_ret));
2469
2470   /* if the element was busy doing a state change, we just update the
2471    * target state, it'll get to it async then. */
2472   if (old_pending != GST_STATE_VOID_PENDING) {
2473     /* upwards state change will happen ASYNC */
2474     if (old_pending <= state)
2475       goto was_busy;
2476     /* element is going to this state already */
2477     else if (next == state)
2478       goto was_busy;
2479     /* element was performing an ASYNC upward state change and
2480      * we request to go downward again. Start from the next pending
2481      * state then. */
2482     else if (next > state
2483         && GST_STATE_RETURN (element) == GST_STATE_CHANGE_ASYNC) {
2484       current = next;
2485     }
2486   }
2487   next = GST_STATE_GET_NEXT (current, state);
2488   /* now we store the next state */
2489   GST_STATE_NEXT (element) = next;
2490   /* mark busy, we need to check that there is actually a state change
2491    * to be done else we could accidentally override SUCCESS/NO_PREROLL and
2492    * the default element change_state function has no way to know what the
2493    * old value was... could consider this a FIXME...*/
2494   if (current != next)
2495     GST_STATE_RETURN (element) = GST_STATE_CHANGE_ASYNC;
2496
2497   transition = (GstStateChange) GST_STATE_TRANSITION (current, next);
2498
2499   GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
2500       "%s: setting state from %s to %s",
2501       (next != state ? "intermediate" : "final"),
2502       gst_element_state_get_name (current), gst_element_state_get_name (next));
2503
2504   /* now signal any waiters, they will error since the cookie was incremented */
2505   GST_STATE_BROADCAST (element);
2506
2507   GST_OBJECT_UNLOCK (element);
2508
2509   ret = gst_element_change_state (element, transition);
2510
2511   GST_STATE_UNLOCK (element);
2512
2513   GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element, "returned %s",
2514       gst_element_state_change_return_get_name (ret));
2515
2516   return ret;
2517
2518 was_busy:
2519   {
2520     GST_STATE_RETURN (element) = GST_STATE_CHANGE_ASYNC;
2521     GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
2522         "element was busy with async state change");
2523     GST_OBJECT_UNLOCK (element);
2524
2525     GST_STATE_UNLOCK (element);
2526
2527     return GST_STATE_CHANGE_ASYNC;
2528   }
2529 }
2530
2531 /**
2532  * gst_element_change_state:
2533  * @element: a #GstElement
2534  * @transition: the requested transition
2535  *
2536  * Perform @transition on @element.
2537  *
2538  * This function must be called with STATE_LOCK held and is mainly used
2539  * internally.
2540  *
2541  * Returns: the #GstStateChangeReturn of the state transition.
2542  */
2543 GstStateChangeReturn
2544 gst_element_change_state (GstElement * element, GstStateChange transition)
2545 {
2546   GstElementClass *oclass;
2547   GstStateChangeReturn ret = GST_STATE_CHANGE_SUCCESS;
2548
2549   oclass = GST_ELEMENT_GET_CLASS (element);
2550
2551   /* call the state change function so it can set the state */
2552   if (oclass->change_state)
2553     ret = (oclass->change_state) (element, transition);
2554   else
2555     ret = GST_STATE_CHANGE_FAILURE;
2556
2557   switch (ret) {
2558     case GST_STATE_CHANGE_FAILURE:
2559       GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2560           "have FAILURE change_state return");
2561       /* state change failure */
2562       gst_element_abort_state (element);
2563       break;
2564     case GST_STATE_CHANGE_ASYNC:
2565     {
2566       GstState target;
2567
2568       GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
2569           "element will change state ASYNC");
2570
2571       target = GST_STATE_TARGET (element);
2572
2573       if (target > GST_STATE_READY)
2574         goto async;
2575
2576       /* else we just continue the state change downwards */
2577       GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2578           "forcing commit state %s <= %s",
2579           gst_element_state_get_name (target),
2580           gst_element_state_get_name (GST_STATE_READY));
2581
2582       ret = gst_element_continue_state (element, GST_STATE_CHANGE_SUCCESS);
2583       break;
2584     }
2585     case GST_STATE_CHANGE_SUCCESS:
2586       GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
2587           "element changed state SUCCESS");
2588       /* we can commit the state now which will proceeed to
2589        * the next state */
2590       ret = gst_element_continue_state (element, ret);
2591       break;
2592     case GST_STATE_CHANGE_NO_PREROLL:
2593       GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
2594           "element changed state NO_PREROLL");
2595       /* we can commit the state now which will proceeed to
2596        * the next state */
2597       ret = gst_element_continue_state (element, ret);
2598       break;
2599     default:
2600       goto invalid_return;
2601   }
2602
2603   GST_CAT_LOG_OBJECT (GST_CAT_STATES, element, "exit state change %d", ret);
2604
2605   return ret;
2606
2607 async:
2608   GST_CAT_LOG_OBJECT (GST_CAT_STATES, element, "exit async state change %d",
2609       ret);
2610
2611   return ret;
2612
2613   /* ERROR */
2614 invalid_return:
2615   {
2616     GST_OBJECT_LOCK (element);
2617     /* somebody added a GST_STATE_ and forgot to do stuff here ! */
2618     g_critical ("%s: unknown return value %d from a state change function",
2619         GST_ELEMENT_NAME (element), ret);
2620
2621     /* we are in error now */
2622     ret = GST_STATE_CHANGE_FAILURE;
2623     GST_STATE_RETURN (element) = ret;
2624     GST_OBJECT_UNLOCK (element);
2625
2626     return ret;
2627   }
2628 }
2629
2630 /* gst_iterator_fold functions for pads_activate
2631  * Stop the iterator if activating one pad failed. */
2632 static gboolean
2633 activate_pads (const GValue * vpad, GValue * ret, gboolean * active)
2634 {
2635   GstPad *pad = g_value_get_object (vpad);
2636   gboolean cont = TRUE;
2637
2638   if (!(cont = gst_pad_set_active (pad, *active)))
2639     g_value_set_boolean (ret, FALSE);
2640
2641   return cont;
2642 }
2643
2644 /* returns false on error or early cutout of the fold, true if all
2645  * pads in @iter were (de)activated successfully. */
2646 static gboolean
2647 iterator_activate_fold_with_resync (GstIterator * iter,
2648     GstIteratorFoldFunction func, gpointer user_data)
2649 {
2650   GstIteratorResult ires;
2651   GValue ret = { 0 };
2652
2653   /* no need to unset this later, it's just a boolean */
2654   g_value_init (&ret, G_TYPE_BOOLEAN);
2655   g_value_set_boolean (&ret, TRUE);
2656
2657   while (1) {
2658     ires = gst_iterator_fold (iter, func, &ret, user_data);
2659     switch (ires) {
2660       case GST_ITERATOR_RESYNC:
2661         /* need to reset the result again */
2662         g_value_set_boolean (&ret, TRUE);
2663         gst_iterator_resync (iter);
2664         break;
2665       case GST_ITERATOR_DONE:
2666         /* all pads iterated, return collected value */
2667         goto done;
2668       default:
2669         /* iterator returned _ERROR or premature end with _OK,
2670          * mark an error and exit */
2671         g_value_set_boolean (&ret, FALSE);
2672         goto done;
2673     }
2674   }
2675 done:
2676   /* return collected value */
2677   return g_value_get_boolean (&ret);
2678 }
2679
2680 /* is called with STATE_LOCK
2681  *
2682  * Pads are activated from source pads to sinkpads.
2683  */
2684 static gboolean
2685 gst_element_pads_activate (GstElement * element, gboolean active)
2686 {
2687   GstIterator *iter;
2688   gboolean res;
2689
2690   GST_CAT_DEBUG_OBJECT (GST_CAT_ELEMENT_PADS, element,
2691       "pads_activate with active %d", active);
2692
2693   iter = gst_element_iterate_src_pads (element);
2694   res =
2695       iterator_activate_fold_with_resync (iter,
2696       (GstIteratorFoldFunction) activate_pads, &active);
2697   gst_iterator_free (iter);
2698   if (G_UNLIKELY (!res))
2699     goto src_failed;
2700
2701   iter = gst_element_iterate_sink_pads (element);
2702   res =
2703       iterator_activate_fold_with_resync (iter,
2704       (GstIteratorFoldFunction) activate_pads, &active);
2705   gst_iterator_free (iter);
2706   if (G_UNLIKELY (!res))
2707     goto sink_failed;
2708
2709   GST_CAT_DEBUG_OBJECT (GST_CAT_ELEMENT_PADS, element,
2710       "pads_activate successful");
2711
2712   return TRUE;
2713
2714   /* ERRORS */
2715 src_failed:
2716   {
2717     GST_CAT_DEBUG_OBJECT (GST_CAT_ELEMENT_PADS, element,
2718         "source pads_activate failed");
2719     return FALSE;
2720   }
2721 sink_failed:
2722   {
2723     GST_CAT_DEBUG_OBJECT (GST_CAT_ELEMENT_PADS, element,
2724         "sink pads_activate failed");
2725     return FALSE;
2726   }
2727 }
2728
2729 /* is called with STATE_LOCK */
2730 static GstStateChangeReturn
2731 gst_element_change_state_func (GstElement * element, GstStateChange transition)
2732 {
2733   GstState state, next;
2734   GstStateChangeReturn result = GST_STATE_CHANGE_SUCCESS;
2735
2736   g_return_val_if_fail (GST_IS_ELEMENT (element), GST_STATE_CHANGE_FAILURE);
2737
2738   state = (GstState) GST_STATE_TRANSITION_CURRENT (transition);
2739   next = GST_STATE_TRANSITION_NEXT (transition);
2740
2741   /* if the element already is in the given state, we just return success */
2742   if (next == GST_STATE_VOID_PENDING || state == next)
2743     goto was_ok;
2744
2745   GST_CAT_LOG_OBJECT (GST_CAT_STATES, element,
2746       "default handler tries setting state from %s to %s (%04x)",
2747       gst_element_state_get_name (state),
2748       gst_element_state_get_name (next), transition);
2749
2750   switch (transition) {
2751     case GST_STATE_CHANGE_NULL_TO_READY:
2752       break;
2753     case GST_STATE_CHANGE_READY_TO_PAUSED:
2754       if (!gst_element_pads_activate (element, TRUE)) {
2755         result = GST_STATE_CHANGE_FAILURE;
2756       }
2757       break;
2758     case GST_STATE_CHANGE_PAUSED_TO_PLAYING:
2759       break;
2760     case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
2761       break;
2762     case GST_STATE_CHANGE_PAUSED_TO_READY:
2763     case GST_STATE_CHANGE_READY_TO_NULL:
2764       /* deactivate pads in both cases, since they are activated on
2765          ready->paused but the element might not have made it to paused */
2766       if (!gst_element_pads_activate (element, FALSE)) {
2767         result = GST_STATE_CHANGE_FAILURE;
2768       }
2769       break;
2770     default:
2771       /* this will catch real but unhandled state changes;
2772        * can only be caused by:
2773        * - a new state was added
2774        * - somehow the element was asked to jump across an intermediate state
2775        */
2776       g_warning ("Unhandled state change from %s to %s",
2777           gst_element_state_get_name (state),
2778           gst_element_state_get_name (next));
2779       break;
2780   }
2781   return result;
2782
2783 was_ok:
2784   {
2785     GST_OBJECT_LOCK (element);
2786     result = GST_STATE_RETURN (element);
2787     GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
2788         "element is already in the %s state",
2789         gst_element_state_get_name (state));
2790     GST_OBJECT_UNLOCK (element);
2791
2792     return result;
2793   }
2794 }
2795
2796 /**
2797  * gst_element_get_factory:
2798  * @element: a #GstElement to request the element factory of.
2799  *
2800  * Retrieves the factory that was used to create this element.
2801  *
2802  * Returns: (transfer none): the #GstElementFactory used for creating this
2803  *     element. no refcounting is needed.
2804  */
2805 GstElementFactory *
2806 gst_element_get_factory (GstElement * element)
2807 {
2808   g_return_val_if_fail (GST_IS_ELEMENT (element), NULL);
2809
2810   return GST_ELEMENT_GET_CLASS (element)->elementfactory;
2811 }
2812
2813 static void
2814 gst_element_dispose (GObject * object)
2815 {
2816   GstElement *element = GST_ELEMENT_CAST (object);
2817   GstClock **clock_p;
2818   GstBus **bus_p;
2819
2820   GST_CAT_INFO_OBJECT (GST_CAT_REFCOUNTING, element, "dispose");
2821
2822   if (GST_STATE (element) != GST_STATE_NULL)
2823     goto not_null;
2824
2825   GST_CAT_DEBUG_OBJECT (GST_CAT_ELEMENT_PADS, element,
2826       "removing %d pads", g_list_length (element->pads));
2827   /* first we break all our links with the outside */
2828   while (element->pads && element->pads->data) {
2829     /* don't call _remove_pad with NULL */
2830     gst_element_remove_pad (element, GST_PAD_CAST (element->pads->data));
2831   }
2832   if (G_UNLIKELY (element->pads != NULL)) {
2833     g_critical ("could not remove pads from element %s",
2834         GST_STR_NULL (GST_OBJECT_NAME (object)));
2835   }
2836
2837   GST_OBJECT_LOCK (element);
2838   clock_p = &element->clock;
2839   bus_p = &element->bus;
2840   gst_object_replace ((GstObject **) clock_p, NULL);
2841   gst_object_replace ((GstObject **) bus_p, NULL);
2842   GST_OBJECT_UNLOCK (element);
2843
2844   GST_CAT_INFO_OBJECT (GST_CAT_REFCOUNTING, element, "parent class dispose");
2845
2846   G_OBJECT_CLASS (parent_class)->dispose (object);
2847
2848   return;
2849
2850   /* ERRORS */
2851 not_null:
2852   {
2853     gboolean is_locked;
2854
2855     is_locked = GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_LOCKED_STATE);
2856     g_critical
2857         ("\nTrying to dispose element %s, but it is in %s%s instead of the NULL"
2858         " state.\n"
2859         "You need to explicitly set elements to the NULL state before\n"
2860         "dropping the final reference, to allow them to clean up.\n"
2861         "This problem may also be caused by a refcounting bug in the\n"
2862         "application or some element.\n",
2863         GST_OBJECT_NAME (element),
2864         gst_element_state_get_name (GST_STATE (element)),
2865         is_locked ? " (locked)" : "");
2866     return;
2867   }
2868 }
2869
2870 static void
2871 gst_element_finalize (GObject * object)
2872 {
2873   GstElement *element = GST_ELEMENT_CAST (object);
2874
2875   GST_CAT_INFO_OBJECT (GST_CAT_REFCOUNTING, element, "finalize");
2876
2877   g_cond_free (element->state_cond);
2878   g_static_rec_mutex_free (&element->state_lock);
2879
2880   GST_CAT_INFO_OBJECT (GST_CAT_REFCOUNTING, element, "finalize parent");
2881
2882   G_OBJECT_CLASS (parent_class)->finalize (object);
2883 }
2884
2885 static void
2886 gst_element_set_bus_func (GstElement * element, GstBus * bus)
2887 {
2888   GstBus **bus_p;
2889
2890   g_return_if_fail (GST_IS_ELEMENT (element));
2891
2892   GST_CAT_DEBUG_OBJECT (GST_CAT_PARENTAGE, element, "setting bus to %p", bus);
2893
2894   GST_OBJECT_LOCK (element);
2895   bus_p = &GST_ELEMENT_BUS (element);
2896   gst_object_replace ((GstObject **) bus_p, GST_OBJECT_CAST (bus));
2897   GST_OBJECT_UNLOCK (element);
2898 }
2899
2900 /**
2901  * gst_element_set_bus:
2902  * @element: a #GstElement to set the bus of.
2903  * @bus: (transfer none): the #GstBus to set.
2904  *
2905  * Sets the bus of the element. Increases the refcount on the bus.
2906  * For internal use only, unless you're testing elements.
2907  *
2908  * MT safe.
2909  */
2910 void
2911 gst_element_set_bus (GstElement * element, GstBus * bus)
2912 {
2913   GstElementClass *oclass;
2914
2915   g_return_if_fail (GST_IS_ELEMENT (element));
2916
2917   oclass = GST_ELEMENT_GET_CLASS (element);
2918
2919   if (oclass->set_bus)
2920     oclass->set_bus (element, bus);
2921 }
2922
2923 /**
2924  * gst_element_get_bus:
2925  * @element: a #GstElement to get the bus of.
2926  *
2927  * Returns the bus of the element. Note that only a #GstPipeline will provide a
2928  * bus for the application.
2929  *
2930  * Returns: (transfer full): the element's #GstBus. unref after usage.
2931  *
2932  * MT safe.
2933  */
2934 GstBus *
2935 gst_element_get_bus (GstElement * element)
2936 {
2937   GstBus *result = NULL;
2938
2939   g_return_val_if_fail (GST_IS_ELEMENT (element), result);
2940
2941   GST_OBJECT_LOCK (element);
2942   if ((result = GST_ELEMENT_BUS (element)))
2943     gst_object_ref (result);
2944   GST_OBJECT_UNLOCK (element);
2945
2946   GST_CAT_DEBUG_OBJECT (GST_CAT_BUS, element, "got bus %" GST_PTR_FORMAT,
2947       result);
2948
2949   return result;
2950 }