Merge branch 'master' into 0.11
[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_FLAG_SET (pad, GST_PAD_FLAG_NEED_PARENT);
710   GST_OBJECT_UNLOCK (pad);
711
712   /* then check to see if there's already a pad by that name here */
713   GST_OBJECT_LOCK (element);
714   if (G_UNLIKELY (!gst_object_check_uniqueness (element->pads, pad_name)))
715     goto name_exists;
716
717   /* try to set the pad's parent */
718   if (G_UNLIKELY (!gst_object_set_parent (GST_OBJECT_CAST (pad),
719               GST_OBJECT_CAST (element))))
720     goto had_parent;
721
722   /* check for flushing pads */
723   if (flushing && (GST_STATE (element) > GST_STATE_READY ||
724           GST_STATE_NEXT (element) == GST_STATE_PAUSED)) {
725     g_warning ("adding flushing pad '%s' to running element '%s', you need to "
726         "use gst_pad_set_active(pad,TRUE) before adding it.",
727         GST_STR_NULL (pad_name), GST_ELEMENT_NAME (element));
728     /* unset flushing */
729     GST_OBJECT_LOCK (pad);
730     GST_PAD_UNSET_FLUSHING (pad);
731     GST_OBJECT_UNLOCK (pad);
732   }
733
734   g_free (pad_name);
735
736   /* add it to the list */
737   switch (gst_pad_get_direction (pad)) {
738     case GST_PAD_SRC:
739       element->srcpads = g_list_prepend (element->srcpads, pad);
740       element->numsrcpads++;
741       break;
742     case GST_PAD_SINK:
743       element->sinkpads = g_list_prepend (element->sinkpads, pad);
744       element->numsinkpads++;
745       break;
746     default:
747       goto no_direction;
748   }
749   element->pads = g_list_prepend (element->pads, pad);
750   element->numpads++;
751   element->pads_cookie++;
752   GST_OBJECT_UNLOCK (element);
753
754   /* emit the PAD_ADDED signal */
755   g_signal_emit (element, gst_element_signals[PAD_ADDED], 0, pad);
756
757   return TRUE;
758
759   /* ERROR cases */
760 name_exists:
761   {
762     g_critical ("Padname %s is not unique in element %s, not adding",
763         pad_name, GST_ELEMENT_NAME (element));
764     GST_OBJECT_UNLOCK (element);
765     g_free (pad_name);
766     return FALSE;
767   }
768 had_parent:
769   {
770     g_critical
771         ("Pad %s already has parent when trying to add to element %s",
772         pad_name, GST_ELEMENT_NAME (element));
773     GST_OBJECT_UNLOCK (element);
774     g_free (pad_name);
775     return FALSE;
776   }
777 no_direction:
778   {
779     GST_OBJECT_LOCK (pad);
780     g_critical
781         ("Trying to add pad %s to element %s, but it has no direction",
782         GST_OBJECT_NAME (pad), GST_ELEMENT_NAME (element));
783     GST_OBJECT_UNLOCK (pad);
784     GST_OBJECT_UNLOCK (element);
785     return FALSE;
786   }
787 }
788
789 /**
790  * gst_element_remove_pad:
791  * @element: a #GstElement to remove pad from.
792  * @pad: (transfer none): the #GstPad to remove from the element.
793  *
794  * Removes @pad from @element. @pad will be destroyed if it has not been
795  * referenced elsewhere using gst_object_unparent().
796  *
797  * This function is used by plugin developers and should not be used
798  * by applications. Pads that were dynamically requested from elements
799  * with gst_element_get_request_pad() should be released with the
800  * gst_element_release_request_pad() function instead.
801  *
802  * Pads are not automatically deactivated so elements should perform the needed
803  * steps to deactivate the pad in case this pad is removed in the PAUSED or
804  * PLAYING state. See gst_pad_set_active() for more information about
805  * deactivating pads.
806  *
807  * The pad and the element should be unlocked when calling this function.
808  *
809  * This function will emit the #GstElement::pad-removed signal on the element.
810  *
811  * Returns: %TRUE if the pad could be removed. Can return %FALSE if the
812  * pad does not belong to the provided element.
813  *
814  * MT safe.
815  */
816 gboolean
817 gst_element_remove_pad (GstElement * element, GstPad * pad)
818 {
819   GstPad *peer;
820
821   g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
822   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
823
824   /* locking pad to look at the name and parent */
825   GST_OBJECT_LOCK (pad);
826   GST_CAT_INFO_OBJECT (GST_CAT_ELEMENT_PADS, element, "removing pad '%s'",
827       GST_STR_NULL (GST_PAD_NAME (pad)));
828
829   if (G_UNLIKELY (GST_PAD_PARENT (pad) != element))
830     goto not_our_pad;
831   GST_OBJECT_UNLOCK (pad);
832
833   /* unlink */
834   if ((peer = gst_pad_get_peer (pad))) {
835     /* window for MT unsafeness, someone else could unlink here
836      * and then we call unlink with wrong pads. The unlink
837      * function would catch this and safely return failed. */
838     if (GST_PAD_IS_SRC (pad))
839       gst_pad_unlink (pad, peer);
840     else
841       gst_pad_unlink (peer, pad);
842
843     gst_object_unref (peer);
844   }
845
846   GST_OBJECT_LOCK (element);
847   /* remove it from the list */
848   switch (gst_pad_get_direction (pad)) {
849     case GST_PAD_SRC:
850       element->srcpads = g_list_remove (element->srcpads, pad);
851       element->numsrcpads--;
852       break;
853     case GST_PAD_SINK:
854       element->sinkpads = g_list_remove (element->sinkpads, pad);
855       element->numsinkpads--;
856       break;
857     default:
858       g_critical ("Removing pad without direction???");
859       break;
860   }
861   element->pads = g_list_remove (element->pads, pad);
862   element->numpads--;
863   element->pads_cookie++;
864   GST_OBJECT_UNLOCK (element);
865
866   /* emit the PAD_REMOVED signal before unparenting and losing the last ref. */
867   g_signal_emit (element, gst_element_signals[PAD_REMOVED], 0, pad);
868
869   gst_object_unparent (GST_OBJECT_CAST (pad));
870
871   return TRUE;
872
873   /* ERRORS */
874 not_our_pad:
875   {
876     /* locking order is element > pad */
877     GST_OBJECT_UNLOCK (pad);
878
879     GST_OBJECT_LOCK (element);
880     GST_OBJECT_LOCK (pad);
881     g_critical ("Padname %s:%s does not belong to element %s when removing",
882         GST_DEBUG_PAD_NAME (pad), GST_ELEMENT_NAME (element));
883     GST_OBJECT_UNLOCK (pad);
884     GST_OBJECT_UNLOCK (element);
885     return FALSE;
886   }
887 }
888
889 /**
890  * gst_element_no_more_pads:
891  * @element: a #GstElement
892  *
893  * Use this function to signal that the element does not expect any more pads
894  * to show up in the current pipeline. This function should be called whenever
895  * pads have been added by the element itself. Elements with #GST_PAD_SOMETIMES
896  * pad templates use this in combination with autopluggers to figure out that
897  * the element is done initializing its pads.
898  *
899  * This function emits the #GstElement::no-more-pads signal.
900  *
901  * MT safe.
902  */
903 void
904 gst_element_no_more_pads (GstElement * element)
905 {
906   g_return_if_fail (GST_IS_ELEMENT (element));
907
908   g_signal_emit (element, gst_element_signals[NO_MORE_PADS], 0);
909 }
910
911 static gint
912 pad_compare_name (GstPad * pad1, const gchar * name)
913 {
914   gint result;
915
916   GST_OBJECT_LOCK (pad1);
917   result = strcmp (GST_PAD_NAME (pad1), name);
918   GST_OBJECT_UNLOCK (pad1);
919
920   return result;
921 }
922
923 /**
924  * gst_element_get_static_pad:
925  * @element: a #GstElement to find a static pad of.
926  * @name: the name of the static #GstPad to retrieve.
927  *
928  * Retrieves a pad from @element by name. This version only retrieves
929  * already-existing (i.e. 'static') pads.
930  *
931  * Returns: (transfer full): the requested #GstPad if found, otherwise %NULL.
932  *     unref after usage.
933  *
934  * MT safe.
935  */
936 GstPad *
937 gst_element_get_static_pad (GstElement * element, const gchar * name)
938 {
939   GList *find;
940   GstPad *result = NULL;
941
942   g_return_val_if_fail (GST_IS_ELEMENT (element), NULL);
943   g_return_val_if_fail (name != NULL, NULL);
944
945   GST_OBJECT_LOCK (element);
946   find =
947       g_list_find_custom (element->pads, name, (GCompareFunc) pad_compare_name);
948   if (find) {
949     result = GST_PAD_CAST (find->data);
950     gst_object_ref (result);
951   }
952
953   if (result == NULL) {
954     GST_CAT_INFO (GST_CAT_ELEMENT_PADS, "no such pad '%s' in element \"%s\"",
955         name, GST_ELEMENT_NAME (element));
956   } else {
957     GST_CAT_INFO (GST_CAT_ELEMENT_PADS, "found pad %s:%s",
958         GST_ELEMENT_NAME (element), name);
959   }
960   GST_OBJECT_UNLOCK (element);
961
962   return result;
963 }
964
965 static GstPad *
966 _gst_element_request_pad (GstElement * element, GstPadTemplate * templ,
967     const gchar * name, const GstCaps * caps)
968 {
969   GstPad *newpad = NULL;
970   GstElementClass *oclass;
971
972   oclass = GST_ELEMENT_GET_CLASS (element);
973
974 #ifndef G_DISABLE_CHECKS
975   /* Some sanity checking here */
976   if (name) {
977     GstPad *pad;
978
979     /* Is this the template name? */
980     if (strstr (name, "%") || !strchr (templ->name_template, '%')) {
981       g_return_val_if_fail (strcmp (name, templ->name_template) == 0, NULL);
982     } else {
983       const gchar *str, *data;
984       gchar *endptr;
985
986       /* Otherwise check if it's a valid name for the name template */
987       str = strchr (templ->name_template, '%');
988       g_return_val_if_fail (str != NULL, NULL);
989       g_return_val_if_fail (strncmp (templ->name_template, name,
990               str - templ->name_template) == 0, NULL);
991       g_return_val_if_fail (strlen (name) > str - templ->name_template, NULL);
992
993       data = name + (str - templ->name_template);
994
995       /* Can either be %s or %d or %u, do sanity checking for %d */
996       if (*(str + 1) == 'd') {
997         gint64 tmp;
998
999         /* it's an int */
1000         tmp = g_ascii_strtoll (data, &endptr, 10);
1001         g_return_val_if_fail (tmp >= G_MININT && tmp <= G_MAXINT
1002             && *endptr == '\0', NULL);
1003       } else if (*(str + 1) == 'u') {
1004         guint64 tmp;
1005
1006         /* it's an int */
1007         tmp = g_ascii_strtoull (data, &endptr, 10);
1008         g_return_val_if_fail (tmp <= G_MAXUINT && *endptr == '\0', NULL);
1009       }
1010     }
1011
1012     pad = gst_element_get_static_pad (element, name);
1013     if (pad) {
1014       gst_object_unref (pad);
1015       /* FIXME 0.11: Change this to g_return_val_if_fail() */
1016       g_critical ("Element %s already has a pad named %s, the behaviour of "
1017           " gst_element_get_request_pad() for existing pads is undefined!",
1018           GST_ELEMENT_NAME (element), name);
1019     }
1020   }
1021 #endif
1022
1023   if (oclass->request_new_pad)
1024     newpad = (oclass->request_new_pad) (element, templ, name, caps);
1025
1026   if (newpad)
1027     gst_object_ref (newpad);
1028
1029   return newpad;
1030 }
1031
1032 /**
1033  * gst_element_get_request_pad:
1034  * @element: a #GstElement to find a request pad of.
1035  * @name: the name of the request #GstPad to retrieve.
1036  *
1037  * Retrieves a pad from the element by name (e.g. "src_\%d"). This version only
1038  * retrieves request pads. The pad should be released with
1039  * gst_element_release_request_pad().
1040  *
1041  * This method is slow and will be deprecated in the future. New code should
1042  * use gst_element_request_pad() with the requested template.
1043  *
1044  * Returns: (transfer full): requested #GstPad if found, otherwise %NULL.
1045  *     Release after usage.
1046  */
1047 GstPad *
1048 gst_element_get_request_pad (GstElement * element, const gchar * name)
1049 {
1050   GstPadTemplate *templ = NULL;
1051   GstPad *pad;
1052   const gchar *req_name = NULL;
1053   gboolean templ_found = FALSE;
1054   GList *list;
1055   const gchar *data;
1056   gchar *str, *endptr = NULL;
1057   GstElementClass *class;
1058
1059   g_return_val_if_fail (GST_IS_ELEMENT (element), NULL);
1060   g_return_val_if_fail (name != NULL, NULL);
1061
1062   class = GST_ELEMENT_GET_CLASS (element);
1063
1064   /* if the name contains a %, we assume it's the complete template name. Get
1065    * the template and try to get a pad */
1066   if (strstr (name, "%")) {
1067     templ = gst_element_class_get_request_pad_template (class, name);
1068     req_name = NULL;
1069     if (templ)
1070       templ_found = TRUE;
1071   } else {
1072     /* there is no % in the name, try to find a matching template */
1073     list = class->padtemplates;
1074     while (!templ_found && list) {
1075       templ = (GstPadTemplate *) list->data;
1076       if (templ->presence == GST_PAD_REQUEST) {
1077         GST_CAT_DEBUG (GST_CAT_PADS, "comparing %s to %s", name,
1078             templ->name_template);
1079         /* see if we find an exact match */
1080         if (strcmp (name, templ->name_template) == 0) {
1081           templ_found = TRUE;
1082           req_name = name;
1083           break;
1084         }
1085         /* Because of sanity checks in gst_pad_template_new(), we know that %s
1086            and %d and %u, occurring at the end of the name_template, are the only
1087            possibilities. */
1088         else if ((str = strchr (templ->name_template, '%'))
1089             && strncmp (templ->name_template, name,
1090                 str - templ->name_template) == 0
1091             && strlen (name) > str - templ->name_template) {
1092           data = name + (str - templ->name_template);
1093           if (*(str + 1) == 'd') {
1094             glong tmp;
1095
1096             /* it's an int */
1097             tmp = strtol (data, &endptr, 10);
1098             if (tmp != G_MINLONG && tmp != G_MAXLONG && endptr &&
1099                 *endptr == '\0') {
1100               templ_found = TRUE;
1101               req_name = name;
1102               break;
1103             }
1104           } else if (*(str + 1) == 'u') {
1105             gulong tmp;
1106
1107             /* it's an int */
1108             tmp = strtoul (data, &endptr, 10);
1109             if (tmp != G_MAXULONG && endptr && *endptr == '\0') {
1110               templ_found = TRUE;
1111               req_name = name;
1112               break;
1113             }
1114           } else {
1115             /* it's a string */
1116             templ_found = TRUE;
1117             req_name = name;
1118             break;
1119           }
1120         }
1121       }
1122       list = list->next;
1123     }
1124   }
1125
1126   if (!templ_found)
1127     return NULL;
1128
1129   pad = _gst_element_request_pad (element, templ, req_name, NULL);
1130
1131   return pad;
1132 }
1133
1134 /**
1135  * gst_element_request_pad:
1136  * @element: a #GstElement to find a request pad of.
1137  * @templ: a #GstPadTemplate of which we want a pad of.
1138  * @name: (transfer none) (allow-none): the name of the request #GstPad
1139  * to retrieve. Can be %NULL.
1140  * @caps: (transfer none) (allow-none): the caps of the pad we want to
1141  * request. Can be %NULL.
1142  *
1143  * Retrieves a request pad from the element according to the provided template.
1144  * Pad templates can be looked up using
1145  * gst_element_factory_get_static_pad_templates().
1146  *
1147  * The pad should be released with gst_element_release_request_pad().
1148  *
1149  * Returns: (transfer full): requested #GstPad if found, otherwise %NULL.
1150  *     Release after usage.
1151  *
1152  * Since: 0.10.32
1153  */
1154 GstPad *
1155 gst_element_request_pad (GstElement * element,
1156     GstPadTemplate * templ, const gchar * name, const GstCaps * caps)
1157 {
1158   g_return_val_if_fail (GST_IS_ELEMENT (element), NULL);
1159   g_return_val_if_fail (templ != NULL, NULL);
1160
1161   return _gst_element_request_pad (element, templ, name, caps);
1162 }
1163
1164 static GstIterator *
1165 gst_element_iterate_pad_list (GstElement * element, GList ** padlist)
1166 {
1167   GstIterator *result;
1168
1169   GST_OBJECT_LOCK (element);
1170   result = gst_iterator_new_list (GST_TYPE_PAD,
1171       GST_OBJECT_GET_LOCK (element),
1172       &element->pads_cookie, padlist, (GObject *) element, NULL);
1173   GST_OBJECT_UNLOCK (element);
1174
1175   return result;
1176 }
1177
1178 /**
1179  * gst_element_iterate_pads:
1180  * @element: a #GstElement to iterate pads of.
1181  *
1182  * Retrieves an iterator of @element's pads. The iterator should
1183  * be freed after usage. Also more specialized iterators exists such as
1184  * gst_element_iterate_src_pads() or gst_element_iterate_sink_pads().
1185  *
1186  * Returns: (transfer full): the #GstIterator of #GstPad. Unref each pad
1187  *     after use.
1188  *
1189  * MT safe.
1190  */
1191 GstIterator *
1192 gst_element_iterate_pads (GstElement * element)
1193 {
1194   g_return_val_if_fail (GST_IS_ELEMENT (element), NULL);
1195
1196   return gst_element_iterate_pad_list (element, &element->pads);
1197 }
1198
1199 /**
1200  * gst_element_iterate_src_pads:
1201  * @element: a #GstElement.
1202  *
1203  * Retrieves an iterator of @element's source pads.
1204  *
1205  * Returns: (transfer full): the #GstIterator of #GstPad. Unref each pad
1206  *     after use.
1207  *
1208  * MT safe.
1209  */
1210 GstIterator *
1211 gst_element_iterate_src_pads (GstElement * element)
1212 {
1213   g_return_val_if_fail (GST_IS_ELEMENT (element), NULL);
1214
1215   return gst_element_iterate_pad_list (element, &element->srcpads);
1216 }
1217
1218 /**
1219  * gst_element_iterate_sink_pads:
1220  * @element: a #GstElement.
1221  *
1222  * Retrieves an iterator of @element's sink pads.
1223  *
1224  * Returns: (transfer full): the #GstIterator of #GstPad. Unref each pad
1225  *     after use.
1226  *
1227  * MT safe.
1228  */
1229 GstIterator *
1230 gst_element_iterate_sink_pads (GstElement * element)
1231 {
1232   g_return_val_if_fail (GST_IS_ELEMENT (element), NULL);
1233
1234   return gst_element_iterate_pad_list (element, &element->sinkpads);
1235 }
1236
1237 /**
1238  * gst_element_class_add_pad_template:
1239  * @klass: the #GstElementClass to add the pad template to.
1240  * @templ: (transfer full): a #GstPadTemplate to add to the element class.
1241  *
1242  * Adds a padtemplate to an element class. This is mainly used in the _class_init
1243  * functions of classes. If a pad template with the same name as an already
1244  * existing one is added the old one is replaced by the new one.
1245  *
1246  */
1247 void
1248 gst_element_class_add_pad_template (GstElementClass * klass,
1249     GstPadTemplate * templ)
1250 {
1251   GList *template_list = klass->padtemplates;
1252
1253   g_return_if_fail (GST_IS_ELEMENT_CLASS (klass));
1254   g_return_if_fail (GST_IS_PAD_TEMPLATE (templ));
1255
1256   /* If we already have a pad template with the same name replace the
1257    * old one. */
1258   while (template_list) {
1259     GstPadTemplate *padtempl = (GstPadTemplate *) template_list->data;
1260
1261     /* Found pad with the same name, replace and return */
1262     if (strcmp (templ->name_template, padtempl->name_template) == 0) {
1263       gst_object_unref (padtempl);
1264       template_list->data = templ;
1265       return;
1266     }
1267     template_list = g_list_next (template_list);
1268   }
1269
1270   /* Take ownership of the floating ref */
1271   gst_object_ref_sink (templ);
1272
1273   klass->padtemplates = g_list_append (klass->padtemplates, templ);
1274   klass->numpadtemplates++;
1275 }
1276
1277 /**
1278  * gst_element_class_add_metadata:
1279  * @klass: class to set metadata for
1280  * @key: the key to set
1281  * @value: the value to set
1282  *
1283  * Set @key with @value as metadata in @klass.
1284  */
1285 void
1286 gst_element_class_add_metadata (GstElementClass * klass,
1287     const gchar * key, const gchar * value)
1288 {
1289   g_return_if_fail (GST_IS_ELEMENT_CLASS (klass));
1290   g_return_if_fail (key != NULL);
1291   g_return_if_fail (value != NULL);
1292
1293   gst_structure_set ((GstStructure *) klass->metadata,
1294       key, G_TYPE_STRING, value, NULL);
1295 }
1296
1297 /**
1298  * gst_element_class_set_metadata:
1299  * @klass: class to set metadata for
1300  * @longname: The long English name of the element. E.g. "File Sink"
1301  * @classification: String describing the type of element, as an unordered list
1302  * separated with slashes ('/'). See draft-klass.txt of the design docs
1303  * for more details and common types. E.g: "Sink/File"
1304  * @description: Sentence describing the purpose of the element.
1305  * E.g: "Write stream to a file"
1306  * @author: Name and contact details of the author(s). Use \n to separate
1307  * multiple author metadata. E.g: "Joe Bloggs &lt;joe.blogs at foo.com&gt;"
1308  *
1309  * Sets the detailed information for a #GstElementClass.
1310  * <note>This function is for use in _class_init functions only.</note>
1311  */
1312 void
1313 gst_element_class_set_metadata (GstElementClass * klass,
1314     const gchar * longname, const gchar * classification,
1315     const gchar * description, const gchar * author)
1316 {
1317   g_return_if_fail (GST_IS_ELEMENT_CLASS (klass));
1318
1319   gst_structure_set ((GstStructure *) klass->metadata,
1320       GST_ELEMENT_METADATA_LONGNAME, G_TYPE_STRING, longname,
1321       GST_ELEMENT_METADATA_KLASS, G_TYPE_STRING, classification,
1322       GST_ELEMENT_METADATA_DESCRIPTION, G_TYPE_STRING, description,
1323       GST_ELEMENT_METADATA_AUTHOR, G_TYPE_STRING, author, NULL);
1324 }
1325
1326 /**
1327  * gst_element_class_get_metadata:
1328  * @klass: class to get metadata for
1329  * @key: the key to get
1330  *
1331  * Get metadata with @key in @klass.
1332  *
1333  * Returns: the metadata for @key.
1334  */
1335 const gchar *
1336 gst_element_class_get_metadata (GstElementClass * klass, const gchar * key)
1337 {
1338   g_return_val_if_fail (GST_IS_ELEMENT_CLASS (klass), NULL);
1339   g_return_val_if_fail (key != NULL, NULL);
1340
1341   return gst_structure_get_string ((GstStructure *) klass->metadata, key);
1342 }
1343
1344 /**
1345  * gst_element_class_get_pad_template_list:
1346  * @element_class: a #GstElementClass to get pad templates of.
1347  *
1348  * Retrieves a list of the pad templates associated with @element_class. The
1349  * list must not be modified by the calling code.
1350  * <note>If you use this function in the #GInstanceInitFunc of an object class
1351  * that has subclasses, make sure to pass the g_class parameter of the
1352  * #GInstanceInitFunc here.</note>
1353  *
1354  * Returns: (transfer none) (element-type Gst.PadTemplate): the #GList of
1355  *     pad templates.
1356  */
1357 GList *
1358 gst_element_class_get_pad_template_list (GstElementClass * element_class)
1359 {
1360   g_return_val_if_fail (GST_IS_ELEMENT_CLASS (element_class), NULL);
1361
1362   return element_class->padtemplates;
1363 }
1364
1365 /**
1366  * gst_element_class_get_pad_template:
1367  * @element_class: a #GstElementClass to get the pad template of.
1368  * @name: the name of the #GstPadTemplate to get.
1369  *
1370  * Retrieves a padtemplate from @element_class with the given name.
1371  * <note>If you use this function in the #GInstanceInitFunc of an object class
1372  * that has subclasses, make sure to pass the g_class parameter of the
1373  * #GInstanceInitFunc here.</note>
1374  *
1375  * Returns: (transfer none): the #GstPadTemplate with the given name, or %NULL
1376  *     if none was found. No unreferencing is necessary.
1377  */
1378 GstPadTemplate *
1379 gst_element_class_get_pad_template (GstElementClass *
1380     element_class, const gchar * name)
1381 {
1382   GList *padlist;
1383
1384   g_return_val_if_fail (GST_IS_ELEMENT_CLASS (element_class), NULL);
1385   g_return_val_if_fail (name != NULL, NULL);
1386
1387   padlist = element_class->padtemplates;
1388
1389   while (padlist) {
1390     GstPadTemplate *padtempl = (GstPadTemplate *) padlist->data;
1391
1392     if (strcmp (padtempl->name_template, name) == 0)
1393       return padtempl;
1394
1395     padlist = g_list_next (padlist);
1396   }
1397
1398   return NULL;
1399 }
1400
1401 static GstPadTemplate *
1402 gst_element_class_get_request_pad_template (GstElementClass *
1403     element_class, const gchar * name)
1404 {
1405   GstPadTemplate *tmpl;
1406
1407   tmpl = gst_element_class_get_pad_template (element_class, name);
1408   if (tmpl != NULL && tmpl->presence == GST_PAD_REQUEST)
1409     return tmpl;
1410
1411   return NULL;
1412 }
1413
1414 /* get a random pad on element of the given direction.
1415  * The pad is random in a sense that it is the first pad that is (optionaly) linked.
1416  */
1417 static GstPad *
1418 gst_element_get_random_pad (GstElement * element,
1419     gboolean need_linked, GstPadDirection dir)
1420 {
1421   GstPad *result = NULL;
1422   GList *pads;
1423
1424   GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "getting a random pad");
1425
1426   switch (dir) {
1427     case GST_PAD_SRC:
1428       GST_OBJECT_LOCK (element);
1429       pads = element->srcpads;
1430       break;
1431     case GST_PAD_SINK:
1432       GST_OBJECT_LOCK (element);
1433       pads = element->sinkpads;
1434       break;
1435     default:
1436       goto wrong_direction;
1437   }
1438   for (; pads; pads = g_list_next (pads)) {
1439     GstPad *pad = GST_PAD_CAST (pads->data);
1440
1441     GST_OBJECT_LOCK (pad);
1442     GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "checking pad %s:%s",
1443         GST_DEBUG_PAD_NAME (pad));
1444
1445     if (need_linked && !GST_PAD_IS_LINKED (pad)) {
1446       /* if we require a linked pad, and it is not linked, continue the
1447        * search */
1448       GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "pad %s:%s is not linked",
1449           GST_DEBUG_PAD_NAME (pad));
1450       GST_OBJECT_UNLOCK (pad);
1451       continue;
1452     } else {
1453       /* found a pad, stop search */
1454       GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "found pad %s:%s",
1455           GST_DEBUG_PAD_NAME (pad));
1456       GST_OBJECT_UNLOCK (pad);
1457       result = pad;
1458       break;
1459     }
1460   }
1461   if (result)
1462     gst_object_ref (result);
1463
1464   GST_OBJECT_UNLOCK (element);
1465
1466   return result;
1467
1468   /* ERROR handling */
1469 wrong_direction:
1470   {
1471     g_warning ("unknown pad direction %d", dir);
1472     return NULL;
1473   }
1474 }
1475
1476 static gboolean
1477 gst_element_default_send_event (GstElement * element, GstEvent * event)
1478 {
1479   gboolean result = FALSE;
1480   GstPad *pad;
1481
1482   pad = GST_EVENT_IS_DOWNSTREAM (event) ?
1483       gst_element_get_random_pad (element, TRUE, GST_PAD_SRC) :
1484       gst_element_get_random_pad (element, TRUE, GST_PAD_SINK);
1485
1486   if (pad) {
1487     GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS,
1488         "pushing %s event to random %s pad %s:%s",
1489         GST_EVENT_TYPE_NAME (event),
1490         (GST_PAD_DIRECTION (pad) == GST_PAD_SRC ? "src" : "sink"),
1491         GST_DEBUG_PAD_NAME (pad));
1492
1493     result = gst_pad_push_event (pad, event);
1494     gst_object_unref (pad);
1495   } else {
1496     GST_CAT_INFO (GST_CAT_ELEMENT_PADS, "can't send %s event on element %s",
1497         GST_EVENT_TYPE_NAME (event), GST_ELEMENT_NAME (element));
1498     gst_event_unref (event);
1499   }
1500   return result;
1501 }
1502
1503 /**
1504  * gst_element_send_event:
1505  * @element: a #GstElement to send the event to.
1506  * @event: (transfer full): the #GstEvent to send to the element.
1507  *
1508  * Sends an event to an element. If the element doesn't implement an
1509  * event handler, the event will be pushed on a random linked sink pad for
1510  * upstream events or a random linked source pad for downstream events.
1511  *
1512  * This function takes owership of the provided event so you should
1513  * gst_event_ref() it if you want to reuse the event after this call.
1514  *
1515  * Returns: %TRUE if the event was handled.
1516  *
1517  * MT safe.
1518  */
1519 gboolean
1520 gst_element_send_event (GstElement * element, GstEvent * event)
1521 {
1522   GstElementClass *oclass;
1523   gboolean result = FALSE;
1524
1525   g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
1526   g_return_val_if_fail (event != NULL, FALSE);
1527
1528   oclass = GST_ELEMENT_GET_CLASS (element);
1529
1530   GST_STATE_LOCK (element);
1531   if (oclass->send_event) {
1532     GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "send %s event on element %s",
1533         GST_EVENT_TYPE_NAME (event), GST_ELEMENT_NAME (element));
1534     result = oclass->send_event (element, event);
1535   }
1536   GST_STATE_UNLOCK (element);
1537
1538   return result;
1539 }
1540
1541 /**
1542  * gst_element_seek:
1543  * @element: a #GstElement to send the event to.
1544  * @rate: The new playback rate
1545  * @format: The format of the seek values
1546  * @flags: The optional seek flags.
1547  * @cur_type: The type and flags for the new current position
1548  * @cur: The value of the new current position
1549  * @stop_type: The type and flags for the new stop position
1550  * @stop: The value of the new stop position
1551  *
1552  * Sends a seek event to an element. See gst_event_new_seek() for the details of
1553  * the parameters. The seek event is sent to the element using
1554  * gst_element_send_event().
1555  *
1556  * Returns: %TRUE if the event was handled.
1557  *
1558  * MT safe.
1559  */
1560 gboolean
1561 gst_element_seek (GstElement * element, gdouble rate, GstFormat format,
1562     GstSeekFlags flags, GstSeekType cur_type, gint64 cur,
1563     GstSeekType stop_type, gint64 stop)
1564 {
1565   GstEvent *event;
1566   gboolean result;
1567
1568   g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
1569
1570   event =
1571       gst_event_new_seek (rate, format, flags, cur_type, cur, stop_type, stop);
1572   result = gst_element_send_event (element, event);
1573
1574   return result;
1575 }
1576
1577 static gboolean
1578 gst_element_default_query (GstElement * element, GstQuery * query)
1579 {
1580   gboolean result = FALSE;
1581   GstPad *pad;
1582
1583   pad = gst_element_get_random_pad (element, FALSE, GST_PAD_SRC);
1584   if (pad) {
1585     result = gst_pad_query (pad, query);
1586
1587     gst_object_unref (pad);
1588   } else {
1589     pad = gst_element_get_random_pad (element, TRUE, GST_PAD_SINK);
1590     if (pad) {
1591       GstPad *peer = gst_pad_get_peer (pad);
1592
1593       if (peer) {
1594         result = gst_pad_query (peer, query);
1595
1596         gst_object_unref (peer);
1597       }
1598       gst_object_unref (pad);
1599     }
1600   }
1601   return result;
1602 }
1603
1604 /**
1605  * gst_element_query:
1606  * @element: a #GstElement to perform the query on.
1607  * @query: (transfer none): the #GstQuery.
1608  *
1609  * Performs a query on the given element.
1610  *
1611  * For elements that don't implement a query handler, this function
1612  * forwards the query to a random srcpad or to the peer of a
1613  * random linked sinkpad of this element.
1614  *
1615  * Please note that some queries might need a running pipeline to work.
1616  *
1617  * Returns: TRUE if the query could be performed.
1618  *
1619  * MT safe.
1620  */
1621 gboolean
1622 gst_element_query (GstElement * element, GstQuery * query)
1623 {
1624   GstElementClass *oclass;
1625   gboolean result = FALSE;
1626
1627   g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
1628   g_return_val_if_fail (query != NULL, FALSE);
1629
1630   oclass = GST_ELEMENT_GET_CLASS (element);
1631
1632   if (oclass->query) {
1633     GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "send query on element %s",
1634         GST_ELEMENT_NAME (element));
1635     result = oclass->query (element, query);
1636   }
1637   return result;
1638 }
1639
1640 /**
1641  * gst_element_post_message:
1642  * @element: a #GstElement posting the message
1643  * @message: (transfer full): a #GstMessage to post
1644  *
1645  * Post a message on the element's #GstBus. This function takes ownership of the
1646  * message; if you want to access the message after this call, you should add an
1647  * additional reference before calling.
1648  *
1649  * Returns: %TRUE if the message was successfully posted. The function returns
1650  * %FALSE if the element did not have a bus.
1651  *
1652  * MT safe.
1653  */
1654 gboolean
1655 gst_element_post_message (GstElement * element, GstMessage * message)
1656 {
1657   GstBus *bus;
1658   gboolean result = FALSE;
1659
1660   g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
1661   g_return_val_if_fail (message != NULL, FALSE);
1662
1663   GST_OBJECT_LOCK (element);
1664   bus = element->bus;
1665
1666   if (G_UNLIKELY (bus == NULL))
1667     goto no_bus;
1668
1669   gst_object_ref (bus);
1670   GST_OBJECT_UNLOCK (element);
1671
1672   /* we release the element lock when posting the message so that any
1673    * (synchronous) message handlers can operate on the element */
1674   result = gst_bus_post (bus, message);
1675   gst_object_unref (bus);
1676
1677   return result;
1678
1679   /* ERRORS */
1680 no_bus:
1681   {
1682     GST_CAT_DEBUG_OBJECT (GST_CAT_MESSAGE, element,
1683         "not posting message %p: no bus", message);
1684     GST_OBJECT_UNLOCK (element);
1685     gst_message_unref (message);
1686     return FALSE;
1687   }
1688 }
1689
1690 /**
1691  * _gst_element_error_printf:
1692  * @format: the printf-like format to use, or %NULL
1693  *
1694  * This function is only used internally by the gst_element_error() macro.
1695  *
1696  * Returns: (transfer full): a newly allocated string, or %NULL if the format
1697  *     was %NULL or ""
1698  *
1699  * MT safe.
1700  */
1701 gchar *
1702 _gst_element_error_printf (const gchar * format, ...)
1703 {
1704   va_list args;
1705   gchar *buffer;
1706
1707   if (format == NULL)
1708     return NULL;
1709   if (format[0] == 0)
1710     return NULL;
1711
1712   va_start (args, format);
1713   buffer = g_strdup_vprintf (format, args);
1714   va_end (args);
1715   return buffer;
1716 }
1717
1718 /**
1719  * gst_element_message_full:
1720  * @element:  a #GstElement to send message from
1721  * @type:     the #GstMessageType
1722  * @domain:   the GStreamer GError domain this message belongs to
1723  * @code:     the GError code belonging to the domain
1724  * @text:     (allow-none) (transfer full): an allocated text string to be used
1725  *            as a replacement for the default message connected to code,
1726  *            or %NULL
1727  * @debug:    (allow-none) (transfer full): an allocated debug message to be
1728  *            used as a replacement for the default debugging information,
1729  *            or %NULL
1730  * @file:     the source code file where the error was generated
1731  * @function: the source code function where the error was generated
1732  * @line:     the source code line where the error was generated
1733  *
1734  * Post an error, warning or info message on the bus from inside an element.
1735  *
1736  * @type must be of #GST_MESSAGE_ERROR, #GST_MESSAGE_WARNING or
1737  * #GST_MESSAGE_INFO.
1738  *
1739  * MT safe.
1740  */
1741 void gst_element_message_full
1742     (GstElement * element, GstMessageType type,
1743     GQuark domain, gint code, gchar * text,
1744     gchar * debug, const gchar * file, const gchar * function, gint line)
1745 {
1746   GError *gerror = NULL;
1747   gchar *name;
1748   gchar *sent_text;
1749   gchar *sent_debug;
1750   gboolean has_debug = TRUE;
1751   GstMessage *message = NULL;
1752
1753   /* checks */
1754   GST_CAT_DEBUG_OBJECT (GST_CAT_MESSAGE, element, "start");
1755   g_return_if_fail (GST_IS_ELEMENT (element));
1756   g_return_if_fail ((type == GST_MESSAGE_ERROR) ||
1757       (type == GST_MESSAGE_WARNING) || (type == GST_MESSAGE_INFO));
1758
1759   /* check if we send the given text or the default error text */
1760   if ((text == NULL) || (text[0] == 0)) {
1761     /* text could have come from g_strdup_printf (""); */
1762     g_free (text);
1763     sent_text = gst_error_get_message (domain, code);
1764   } else
1765     sent_text = text;
1766
1767   /* construct a sent_debug with extra information from source */
1768   if ((debug == NULL) || (debug[0] == 0)) {
1769     /* debug could have come from g_strdup_printf (""); */
1770     has_debug = FALSE;
1771   }
1772
1773   name = gst_object_get_path_string (GST_OBJECT_CAST (element));
1774   if (has_debug)
1775     sent_debug = g_strdup_printf ("%s(%d): %s (): %s:\n%s",
1776         file, line, function, name, debug);
1777   else
1778     sent_debug = g_strdup_printf ("%s(%d): %s (): %s",
1779         file, line, function, name);
1780   g_free (name);
1781   g_free (debug);
1782
1783   /* create gerror and post message */
1784   GST_CAT_INFO_OBJECT (GST_CAT_ERROR_SYSTEM, element, "posting message: %s",
1785       sent_text);
1786   gerror = g_error_new_literal (domain, code, sent_text);
1787
1788   switch (type) {
1789     case GST_MESSAGE_ERROR:
1790       message =
1791           gst_message_new_error (GST_OBJECT_CAST (element), gerror, sent_debug);
1792       break;
1793     case GST_MESSAGE_WARNING:
1794       message = gst_message_new_warning (GST_OBJECT_CAST (element), gerror,
1795           sent_debug);
1796       break;
1797     case GST_MESSAGE_INFO:
1798       message = gst_message_new_info (GST_OBJECT_CAST (element), gerror,
1799           sent_debug);
1800       break;
1801     default:
1802       g_assert_not_reached ();
1803       break;
1804   }
1805   gst_element_post_message (element, message);
1806
1807   GST_CAT_INFO_OBJECT (GST_CAT_ERROR_SYSTEM, element, "posted %s message: %s",
1808       (type == GST_MESSAGE_ERROR ? "error" : "warning"), sent_text);
1809
1810   /* cleanup */
1811   g_error_free (gerror);
1812   g_free (sent_debug);
1813   g_free (sent_text);
1814 }
1815
1816 /**
1817  * gst_element_is_locked_state:
1818  * @element: a #GstElement.
1819  *
1820  * Checks if the state of an element is locked.
1821  * If the state of an element is locked, state changes of the parent don't
1822  * affect the element.
1823  * This way you can leave currently unused elements inside bins. Just lock their
1824  * state before changing the state from #GST_STATE_NULL.
1825  *
1826  * MT safe.
1827  *
1828  * Returns: TRUE, if the element's state is locked.
1829  */
1830 gboolean
1831 gst_element_is_locked_state (GstElement * element)
1832 {
1833   gboolean result;
1834
1835   g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
1836
1837   GST_OBJECT_LOCK (element);
1838   result = GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_LOCKED_STATE);
1839   GST_OBJECT_UNLOCK (element);
1840
1841   return result;
1842 }
1843
1844 /**
1845  * gst_element_set_locked_state:
1846  * @element: a #GstElement
1847  * @locked_state: TRUE to lock the element's state
1848  *
1849  * Locks the state of an element, so state changes of the parent don't affect
1850  * this element anymore.
1851  *
1852  * MT safe.
1853  *
1854  * Returns: TRUE if the state was changed, FALSE if bad parameters were given
1855  * or the elements state-locking needed no change.
1856  */
1857 gboolean
1858 gst_element_set_locked_state (GstElement * element, gboolean locked_state)
1859 {
1860   gboolean old;
1861
1862   g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
1863
1864   GST_OBJECT_LOCK (element);
1865   old = GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_LOCKED_STATE);
1866
1867   if (G_UNLIKELY (old == locked_state))
1868     goto was_ok;
1869
1870   if (locked_state) {
1871     GST_CAT_DEBUG (GST_CAT_STATES, "locking state of element %s",
1872         GST_ELEMENT_NAME (element));
1873     GST_OBJECT_FLAG_SET (element, GST_ELEMENT_LOCKED_STATE);
1874   } else {
1875     GST_CAT_DEBUG (GST_CAT_STATES, "unlocking state of element %s",
1876         GST_ELEMENT_NAME (element));
1877     GST_OBJECT_FLAG_UNSET (element, GST_ELEMENT_LOCKED_STATE);
1878   }
1879   GST_OBJECT_UNLOCK (element);
1880
1881   return TRUE;
1882
1883 was_ok:
1884   {
1885     GST_CAT_DEBUG (GST_CAT_STATES,
1886         "elements %s was already in locked state %d",
1887         GST_ELEMENT_NAME (element), old);
1888     GST_OBJECT_UNLOCK (element);
1889
1890     return FALSE;
1891   }
1892 }
1893
1894 /**
1895  * gst_element_sync_state_with_parent:
1896  * @element: a #GstElement.
1897  *
1898  * Tries to change the state of the element to the same as its parent.
1899  * If this function returns FALSE, the state of element is undefined.
1900  *
1901  * Returns: TRUE, if the element's state could be synced to the parent's state.
1902  *
1903  * MT safe.
1904  */
1905 gboolean
1906 gst_element_sync_state_with_parent (GstElement * element)
1907 {
1908   GstElement *parent;
1909   GstState target;
1910   GstStateChangeReturn ret;
1911
1912   g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
1913
1914   if ((parent = GST_ELEMENT_CAST (gst_element_get_parent (element)))) {
1915     GstState parent_current, parent_pending;
1916
1917     GST_OBJECT_LOCK (parent);
1918     parent_current = GST_STATE (parent);
1919     parent_pending = GST_STATE_PENDING (parent);
1920     GST_OBJECT_UNLOCK (parent);
1921
1922     /* set to pending if there is one, else we set it to the current state of
1923      * the parent */
1924     if (parent_pending != GST_STATE_VOID_PENDING)
1925       target = parent_pending;
1926     else
1927       target = parent_current;
1928
1929     GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
1930         "syncing state (%s) to parent %s %s (%s, %s)",
1931         gst_element_state_get_name (GST_STATE (element)),
1932         GST_ELEMENT_NAME (parent), gst_element_state_get_name (target),
1933         gst_element_state_get_name (parent_current),
1934         gst_element_state_get_name (parent_pending));
1935
1936     ret = gst_element_set_state (element, target);
1937     if (ret == GST_STATE_CHANGE_FAILURE)
1938       goto failed;
1939
1940     gst_object_unref (parent);
1941
1942     return TRUE;
1943   } else {
1944     GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element, "element has no parent");
1945   }
1946   return FALSE;
1947
1948   /* ERROR */
1949 failed:
1950   {
1951     GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
1952         "syncing state failed (%s)",
1953         gst_element_state_change_return_get_name (ret));
1954     gst_object_unref (parent);
1955     return FALSE;
1956   }
1957 }
1958
1959 /* MT safe */
1960 static GstStateChangeReturn
1961 gst_element_get_state_func (GstElement * element,
1962     GstState * state, GstState * pending, GstClockTime timeout)
1963 {
1964   GstStateChangeReturn ret = GST_STATE_CHANGE_FAILURE;
1965   GstState old_pending;
1966
1967   GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element, "getting state, timeout %"
1968       GST_TIME_FORMAT, GST_TIME_ARGS (timeout));
1969
1970   GST_OBJECT_LOCK (element);
1971   ret = GST_STATE_RETURN (element);
1972   GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element, "RETURN is %s",
1973       gst_element_state_change_return_get_name (ret));
1974
1975   /* we got an error, report immediately */
1976   if (ret == GST_STATE_CHANGE_FAILURE)
1977     goto done;
1978
1979   /* we got no_preroll, report immediately */
1980   if (ret == GST_STATE_CHANGE_NO_PREROLL)
1981     goto done;
1982
1983   /* no need to wait async if we are not async */
1984   if (ret != GST_STATE_CHANGE_ASYNC)
1985     goto done;
1986
1987   old_pending = GST_STATE_PENDING (element);
1988   if (old_pending != GST_STATE_VOID_PENDING) {
1989     GTimeVal *timeval, abstimeout;
1990     guint32 cookie;
1991
1992     if (timeout != GST_CLOCK_TIME_NONE) {
1993       glong add = timeout / 1000;
1994
1995       if (add == 0)
1996         goto done;
1997
1998       /* make timeout absolute */
1999       g_get_current_time (&abstimeout);
2000       g_time_val_add (&abstimeout, add);
2001       timeval = &abstimeout;
2002     } else {
2003       timeval = NULL;
2004     }
2005     /* get cookie to detect state changes during waiting */
2006     cookie = element->state_cookie;
2007
2008     GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2009         "waiting for element to commit state");
2010
2011     /* we have a pending state change, wait for it to complete */
2012     if (!GST_STATE_TIMED_WAIT (element, timeval)) {
2013       GST_CAT_INFO_OBJECT (GST_CAT_STATES, element, "timed out");
2014       /* timeout triggered */
2015       ret = GST_STATE_CHANGE_ASYNC;
2016     } else {
2017       if (cookie != element->state_cookie)
2018         goto interrupted;
2019
2020       /* could be success or failure */
2021       if (old_pending == GST_STATE (element)) {
2022         GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element, "got success");
2023         ret = GST_STATE_CHANGE_SUCCESS;
2024       } else {
2025         GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element, "got failure");
2026         ret = GST_STATE_CHANGE_FAILURE;
2027       }
2028     }
2029     /* if nothing is pending anymore we can return SUCCESS */
2030     if (GST_STATE_PENDING (element) == GST_STATE_VOID_PENDING) {
2031       GST_CAT_LOG_OBJECT (GST_CAT_STATES, element, "nothing pending");
2032       ret = GST_STATE_CHANGE_SUCCESS;
2033     }
2034   }
2035
2036 done:
2037   if (state)
2038     *state = GST_STATE (element);
2039   if (pending)
2040     *pending = GST_STATE_PENDING (element);
2041
2042   GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
2043       "state current: %s, pending: %s, result: %s",
2044       gst_element_state_get_name (GST_STATE (element)),
2045       gst_element_state_get_name (GST_STATE_PENDING (element)),
2046       gst_element_state_change_return_get_name (ret));
2047   GST_OBJECT_UNLOCK (element);
2048
2049   return ret;
2050
2051 interrupted:
2052   {
2053     if (state)
2054       *state = GST_STATE_VOID_PENDING;
2055     if (pending)
2056       *pending = GST_STATE_VOID_PENDING;
2057
2058     GST_CAT_INFO_OBJECT (GST_CAT_STATES, element, "interruped");
2059
2060     GST_OBJECT_UNLOCK (element);
2061
2062     return GST_STATE_CHANGE_FAILURE;
2063   }
2064 }
2065
2066 /**
2067  * gst_element_get_state:
2068  * @element: a #GstElement to get the state of.
2069  * @state: (out) (allow-none): a pointer to #GstState to hold the state.
2070  *     Can be %NULL.
2071  * @pending: (out) (allow-none): a pointer to #GstState to hold the pending
2072  *     state. Can be %NULL.
2073  * @timeout: a #GstClockTime to specify the timeout for an async
2074  *           state change or %GST_CLOCK_TIME_NONE for infinite timeout.
2075  *
2076  * Gets the state of the element.
2077  *
2078  * For elements that performed an ASYNC state change, as reported by
2079  * gst_element_set_state(), this function will block up to the
2080  * specified timeout value for the state change to complete.
2081  * If the element completes the state change or goes into
2082  * an error, this function returns immediately with a return value of
2083  * %GST_STATE_CHANGE_SUCCESS or %GST_STATE_CHANGE_FAILURE respectively.
2084  *
2085  * For elements that did not return %GST_STATE_CHANGE_ASYNC, this function
2086  * returns the current and pending state immediately.
2087  *
2088  * This function returns %GST_STATE_CHANGE_NO_PREROLL if the element
2089  * successfully changed its state but is not able to provide data yet.
2090  * This mostly happens for live sources that only produce data in
2091  * %GST_STATE_PLAYING. While the state change return is equivalent to
2092  * %GST_STATE_CHANGE_SUCCESS, it is returned to the application to signal that
2093  * some sink elements might not be able to complete their state change because
2094  * an element is not producing data to complete the preroll. When setting the
2095  * element to playing, the preroll will complete and playback will start.
2096  *
2097  * Returns: %GST_STATE_CHANGE_SUCCESS if the element has no more pending state
2098  *          and the last state change succeeded, %GST_STATE_CHANGE_ASYNC if the
2099  *          element is still performing a state change or
2100  *          %GST_STATE_CHANGE_FAILURE if the last state change failed.
2101  *
2102  * MT safe.
2103  */
2104 GstStateChangeReturn
2105 gst_element_get_state (GstElement * element,
2106     GstState * state, GstState * pending, GstClockTime timeout)
2107 {
2108   GstElementClass *oclass;
2109   GstStateChangeReturn result = GST_STATE_CHANGE_FAILURE;
2110
2111   g_return_val_if_fail (GST_IS_ELEMENT (element), GST_STATE_CHANGE_FAILURE);
2112
2113   oclass = GST_ELEMENT_GET_CLASS (element);
2114
2115   if (oclass->get_state)
2116     result = (oclass->get_state) (element, state, pending, timeout);
2117
2118   return result;
2119 }
2120
2121 /**
2122  * gst_element_abort_state:
2123  * @element: a #GstElement to abort the state of.
2124  *
2125  * Abort the state change of the element. This function is used
2126  * by elements that do asynchronous state changes and find out
2127  * something is wrong.
2128  *
2129  * This function should be called with the STATE_LOCK held.
2130  *
2131  * MT safe.
2132  */
2133 void
2134 gst_element_abort_state (GstElement * element)
2135 {
2136   GstState pending;
2137
2138 #ifndef GST_DISABLE_GST_DEBUG
2139   GstState old_state;
2140 #endif
2141
2142   g_return_if_fail (GST_IS_ELEMENT (element));
2143
2144   GST_OBJECT_LOCK (element);
2145   pending = GST_STATE_PENDING (element);
2146
2147   if (pending == GST_STATE_VOID_PENDING ||
2148       GST_STATE_RETURN (element) == GST_STATE_CHANGE_FAILURE)
2149     goto nothing_aborted;
2150
2151 #ifndef GST_DISABLE_GST_DEBUG
2152   old_state = GST_STATE (element);
2153
2154   GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2155       "aborting state from %s to %s", gst_element_state_get_name (old_state),
2156       gst_element_state_get_name (pending));
2157 #endif
2158
2159   /* flag error */
2160   GST_STATE_RETURN (element) = GST_STATE_CHANGE_FAILURE;
2161
2162   GST_STATE_BROADCAST (element);
2163   GST_OBJECT_UNLOCK (element);
2164
2165   return;
2166
2167 nothing_aborted:
2168   {
2169     GST_OBJECT_UNLOCK (element);
2170     return;
2171   }
2172 }
2173
2174 /* Not static because GstBin has manual state handling too */
2175 void
2176 _priv_gst_element_state_changed (GstElement * element, GstState oldstate,
2177     GstState newstate, GstState pending)
2178 {
2179   GstElementClass *klass = GST_ELEMENT_GET_CLASS (element);
2180   GstMessage *message;
2181
2182   GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2183       "notifying about state-changed %s to %s (%s pending)",
2184       gst_element_state_get_name (oldstate),
2185       gst_element_state_get_name (newstate),
2186       gst_element_state_get_name (pending));
2187
2188   if (klass->state_changed)
2189     klass->state_changed (element, oldstate, newstate, pending);
2190
2191   message = gst_message_new_state_changed (GST_OBJECT_CAST (element),
2192       oldstate, newstate, pending);
2193   gst_element_post_message (element, message);
2194 }
2195
2196 /**
2197  * gst_element_continue_state:
2198  * @element: a #GstElement to continue the state change of.
2199  * @ret: The previous state return value
2200  *
2201  * Commit the state change of the element and proceed to the next
2202  * pending state if any. This function is used
2203  * by elements that do asynchronous state changes.
2204  * The core will normally call this method automatically when an
2205  * element returned %GST_STATE_CHANGE_SUCCESS from the state change function.
2206  *
2207  * If after calling this method the element still has not reached
2208  * the pending state, the next state change is performed.
2209  *
2210  * This method is used internally and should normally not be called by plugins
2211  * or applications.
2212  *
2213  * Returns: The result of the commit state change.
2214  *
2215  * MT safe.
2216  */
2217 GstStateChangeReturn
2218 gst_element_continue_state (GstElement * element, GstStateChangeReturn ret)
2219 {
2220   GstStateChangeReturn old_ret;
2221   GstState old_state, old_next;
2222   GstState current, next, pending;
2223   GstStateChange transition;
2224
2225   GST_OBJECT_LOCK (element);
2226   old_ret = GST_STATE_RETURN (element);
2227   GST_STATE_RETURN (element) = ret;
2228   pending = GST_STATE_PENDING (element);
2229
2230   /* check if there is something to commit */
2231   if (pending == GST_STATE_VOID_PENDING)
2232     goto nothing_pending;
2233
2234   old_state = GST_STATE (element);
2235   /* this is the state we should go to next */
2236   old_next = GST_STATE_NEXT (element);
2237   /* update current state */
2238   current = GST_STATE (element) = old_next;
2239
2240   /* see if we reached the final state */
2241   if (pending == current)
2242     goto complete;
2243
2244   next = GST_STATE_GET_NEXT (current, pending);
2245   transition = (GstStateChange) GST_STATE_TRANSITION (current, next);
2246
2247   GST_STATE_NEXT (element) = next;
2248   /* mark busy */
2249   GST_STATE_RETURN (element) = GST_STATE_CHANGE_ASYNC;
2250   GST_OBJECT_UNLOCK (element);
2251
2252   GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2253       "committing state from %s to %s, pending %s, next %s",
2254       gst_element_state_get_name (old_state),
2255       gst_element_state_get_name (old_next),
2256       gst_element_state_get_name (pending), gst_element_state_get_name (next));
2257
2258   _priv_gst_element_state_changed (element, old_state, old_next, pending);
2259
2260   GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2261       "continue state change %s to %s, final %s",
2262       gst_element_state_get_name (current),
2263       gst_element_state_get_name (next), gst_element_state_get_name (pending));
2264
2265   ret = gst_element_change_state (element, transition);
2266
2267   return ret;
2268
2269 nothing_pending:
2270   {
2271     GST_CAT_INFO_OBJECT (GST_CAT_STATES, element, "nothing pending");
2272     GST_OBJECT_UNLOCK (element);
2273     return ret;
2274   }
2275 complete:
2276   {
2277     GST_STATE_PENDING (element) = GST_STATE_VOID_PENDING;
2278     GST_STATE_NEXT (element) = GST_STATE_VOID_PENDING;
2279
2280     GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2281         "completed state change to %s", gst_element_state_get_name (pending));
2282     GST_OBJECT_UNLOCK (element);
2283
2284     /* don't post silly messages with the same state. This can happen
2285      * when an element state is changed to what it already was. For bins
2286      * this can be the result of a lost state, which we check with the
2287      * previous return value.
2288      * We do signal the cond though as a _get_state() might be blocking
2289      * on it. */
2290     if (old_state != old_next || old_ret == GST_STATE_CHANGE_ASYNC)
2291       _priv_gst_element_state_changed (element, old_state, old_next,
2292           GST_STATE_VOID_PENDING);
2293
2294     GST_STATE_BROADCAST (element);
2295
2296     return ret;
2297   }
2298 }
2299
2300 /**
2301  * gst_element_lost_state:
2302  * @element: a #GstElement the state is lost of
2303  *
2304  * Brings the element to the lost state. The current state of the
2305  * element is copied to the pending state so that any call to
2306  * gst_element_get_state() will return %GST_STATE_CHANGE_ASYNC.
2307  *
2308  * An ASYNC_START message is posted. If the element was PLAYING, it will
2309  * go to PAUSED. The element will be restored to its PLAYING state by
2310  * the parent pipeline when it prerolls again.
2311  *
2312  * This is mostly used for elements that lost their preroll buffer
2313  * in the %GST_STATE_PAUSED or %GST_STATE_PLAYING state after a flush,
2314  * they will go to their pending state again when a new preroll buffer is
2315  * queued. This function can only be called when the element is currently
2316  * not in error or an async state change.
2317  *
2318  * This function is used internally and should normally not be called from
2319  * plugins or applications.
2320  */
2321 void
2322 gst_element_lost_state (GstElement * element)
2323 {
2324   GstState old_state, new_state;
2325   GstMessage *message;
2326
2327   g_return_if_fail (GST_IS_ELEMENT (element));
2328
2329   GST_OBJECT_LOCK (element);
2330   if (GST_STATE_RETURN (element) == GST_STATE_CHANGE_FAILURE)
2331     goto nothing_lost;
2332
2333   if (GST_STATE_PENDING (element) != GST_STATE_VOID_PENDING)
2334     goto only_async_start;
2335
2336   old_state = GST_STATE (element);
2337
2338   /* when we were PLAYING, the new state is PAUSED. We will also not
2339    * automatically go to PLAYING but let the parent bin(s) set us to PLAYING
2340    * when we preroll. */
2341   if (old_state > GST_STATE_PAUSED)
2342     new_state = GST_STATE_PAUSED;
2343   else
2344     new_state = old_state;
2345
2346   GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
2347       "lost state of %s to %s", gst_element_state_get_name (old_state),
2348       gst_element_state_get_name (new_state));
2349
2350   GST_STATE (element) = new_state;
2351   GST_STATE_NEXT (element) = new_state;
2352   GST_STATE_PENDING (element) = new_state;
2353   GST_STATE_RETURN (element) = GST_STATE_CHANGE_ASYNC;
2354   GST_OBJECT_UNLOCK (element);
2355
2356   _priv_gst_element_state_changed (element, new_state, new_state, new_state);
2357
2358   message = gst_message_new_async_start (GST_OBJECT_CAST (element));
2359   gst_element_post_message (element, message);
2360
2361   return;
2362
2363 nothing_lost:
2364   {
2365     GST_OBJECT_UNLOCK (element);
2366     return;
2367   }
2368 only_async_start:
2369   {
2370     GST_OBJECT_UNLOCK (element);
2371
2372     message = gst_message_new_async_start (GST_OBJECT_CAST (element));
2373     gst_element_post_message (element, message);
2374     return;
2375   }
2376 }
2377
2378 /**
2379  * gst_element_set_state:
2380  * @element: a #GstElement to change state of.
2381  * @state: the element's new #GstState.
2382  *
2383  * Sets the state of the element. This function will try to set the
2384  * requested state by going through all the intermediary states and calling
2385  * the class's state change function for each.
2386  *
2387  * This function can return #GST_STATE_CHANGE_ASYNC, in which case the
2388  * element will perform the remainder of the state change asynchronously in
2389  * another thread.
2390  * An application can use gst_element_get_state() to wait for the completion
2391  * of the state change or it can wait for a state change message on the bus.
2392  *
2393  * State changes to %GST_STATE_READY or %GST_STATE_NULL never return
2394  * #GST_STATE_CHANGE_ASYNC.
2395  *
2396  * Returns: Result of the state change using #GstStateChangeReturn.
2397  *
2398  * MT safe.
2399  */
2400 GstStateChangeReturn
2401 gst_element_set_state (GstElement * element, GstState state)
2402 {
2403   GstElementClass *oclass;
2404   GstStateChangeReturn result = GST_STATE_CHANGE_FAILURE;
2405
2406   g_return_val_if_fail (GST_IS_ELEMENT (element), GST_STATE_CHANGE_FAILURE);
2407
2408   oclass = GST_ELEMENT_GET_CLASS (element);
2409
2410   if (oclass->set_state)
2411     result = (oclass->set_state) (element, state);
2412
2413   return result;
2414 }
2415
2416 /*
2417  * default set state function, calculates the next state based
2418  * on current state and calls the change_state function
2419  */
2420 static GstStateChangeReturn
2421 gst_element_set_state_func (GstElement * element, GstState state)
2422 {
2423   GstState current, next, old_pending;
2424   GstStateChangeReturn ret;
2425   GstStateChange transition;
2426   GstStateChangeReturn old_ret;
2427
2428   g_return_val_if_fail (GST_IS_ELEMENT (element), GST_STATE_CHANGE_FAILURE);
2429
2430   GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element, "set_state to %s",
2431       gst_element_state_get_name (state));
2432
2433   /* state lock is taken to protect the set_state() and get_state()
2434    * procedures, it does not lock any variables. */
2435   GST_STATE_LOCK (element);
2436
2437   /* now calculate how to get to the new state */
2438   GST_OBJECT_LOCK (element);
2439   old_ret = GST_STATE_RETURN (element);
2440   /* previous state change returned an error, remove all pending
2441    * and next states */
2442   if (old_ret == GST_STATE_CHANGE_FAILURE) {
2443     GST_STATE_NEXT (element) = GST_STATE_VOID_PENDING;
2444     GST_STATE_PENDING (element) = GST_STATE_VOID_PENDING;
2445     GST_STATE_RETURN (element) = GST_STATE_CHANGE_SUCCESS;
2446   }
2447
2448   current = GST_STATE (element);
2449   next = GST_STATE_NEXT (element);
2450   old_pending = GST_STATE_PENDING (element);
2451
2452   /* this is the (new) state we should go to. TARGET is the last state we set on
2453    * the element. */
2454   if (state != GST_STATE_TARGET (element)) {
2455     GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
2456         "setting target state to %s", gst_element_state_get_name (state));
2457     GST_STATE_TARGET (element) = state;
2458     /* increment state cookie so that we can track each state change. We only do
2459      * this if this is actually a new state change. */
2460     element->state_cookie++;
2461   }
2462   GST_STATE_PENDING (element) = state;
2463
2464   GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
2465       "current %s, old_pending %s, next %s, old return %s",
2466       gst_element_state_get_name (current),
2467       gst_element_state_get_name (old_pending),
2468       gst_element_state_get_name (next),
2469       gst_element_state_change_return_get_name (old_ret));
2470
2471   /* if the element was busy doing a state change, we just update the
2472    * target state, it'll get to it async then. */
2473   if (old_pending != GST_STATE_VOID_PENDING) {
2474     /* upwards state change will happen ASYNC */
2475     if (old_pending <= state)
2476       goto was_busy;
2477     /* element is going to this state already */
2478     else if (next == state)
2479       goto was_busy;
2480     /* element was performing an ASYNC upward state change and
2481      * we request to go downward again. Start from the next pending
2482      * state then. */
2483     else if (next > state
2484         && GST_STATE_RETURN (element) == GST_STATE_CHANGE_ASYNC) {
2485       current = next;
2486     }
2487   }
2488   next = GST_STATE_GET_NEXT (current, state);
2489   /* now we store the next state */
2490   GST_STATE_NEXT (element) = next;
2491   /* mark busy, we need to check that there is actually a state change
2492    * to be done else we could accidentally override SUCCESS/NO_PREROLL and
2493    * the default element change_state function has no way to know what the
2494    * old value was... could consider this a FIXME...*/
2495   if (current != next)
2496     GST_STATE_RETURN (element) = GST_STATE_CHANGE_ASYNC;
2497
2498   transition = (GstStateChange) GST_STATE_TRANSITION (current, next);
2499
2500   GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
2501       "%s: setting state from %s to %s",
2502       (next != state ? "intermediate" : "final"),
2503       gst_element_state_get_name (current), gst_element_state_get_name (next));
2504
2505   /* now signal any waiters, they will error since the cookie was incremented */
2506   GST_STATE_BROADCAST (element);
2507
2508   GST_OBJECT_UNLOCK (element);
2509
2510   ret = gst_element_change_state (element, transition);
2511
2512   GST_STATE_UNLOCK (element);
2513
2514   GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element, "returned %s",
2515       gst_element_state_change_return_get_name (ret));
2516
2517   return ret;
2518
2519 was_busy:
2520   {
2521     GST_STATE_RETURN (element) = GST_STATE_CHANGE_ASYNC;
2522     GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
2523         "element was busy with async state change");
2524     GST_OBJECT_UNLOCK (element);
2525
2526     GST_STATE_UNLOCK (element);
2527
2528     return GST_STATE_CHANGE_ASYNC;
2529   }
2530 }
2531
2532 /**
2533  * gst_element_change_state:
2534  * @element: a #GstElement
2535  * @transition: the requested transition
2536  *
2537  * Perform @transition on @element.
2538  *
2539  * This function must be called with STATE_LOCK held and is mainly used
2540  * internally.
2541  *
2542  * Returns: the #GstStateChangeReturn of the state transition.
2543  */
2544 GstStateChangeReturn
2545 gst_element_change_state (GstElement * element, GstStateChange transition)
2546 {
2547   GstElementClass *oclass;
2548   GstStateChangeReturn ret = GST_STATE_CHANGE_SUCCESS;
2549
2550   oclass = GST_ELEMENT_GET_CLASS (element);
2551
2552   /* call the state change function so it can set the state */
2553   if (oclass->change_state)
2554     ret = (oclass->change_state) (element, transition);
2555   else
2556     ret = GST_STATE_CHANGE_FAILURE;
2557
2558   switch (ret) {
2559     case GST_STATE_CHANGE_FAILURE:
2560       GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2561           "have FAILURE change_state return");
2562       /* state change failure */
2563       gst_element_abort_state (element);
2564       break;
2565     case GST_STATE_CHANGE_ASYNC:
2566     {
2567       GstState target;
2568
2569       GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
2570           "element will change state ASYNC");
2571
2572       target = GST_STATE_TARGET (element);
2573
2574       if (target > GST_STATE_READY)
2575         goto async;
2576
2577       /* else we just continue the state change downwards */
2578       GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2579           "forcing commit state %s <= %s",
2580           gst_element_state_get_name (target),
2581           gst_element_state_get_name (GST_STATE_READY));
2582
2583       ret = gst_element_continue_state (element, GST_STATE_CHANGE_SUCCESS);
2584       break;
2585     }
2586     case GST_STATE_CHANGE_SUCCESS:
2587       GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
2588           "element changed state SUCCESS");
2589       /* we can commit the state now which will proceeed to
2590        * the next state */
2591       ret = gst_element_continue_state (element, ret);
2592       break;
2593     case GST_STATE_CHANGE_NO_PREROLL:
2594       GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
2595           "element changed state NO_PREROLL");
2596       /* we can commit the state now which will proceeed to
2597        * the next state */
2598       ret = gst_element_continue_state (element, ret);
2599       break;
2600     default:
2601       goto invalid_return;
2602   }
2603
2604   GST_CAT_LOG_OBJECT (GST_CAT_STATES, element, "exit state change %d", ret);
2605
2606   return ret;
2607
2608 async:
2609   GST_CAT_LOG_OBJECT (GST_CAT_STATES, element, "exit async state change %d",
2610       ret);
2611
2612   return ret;
2613
2614   /* ERROR */
2615 invalid_return:
2616   {
2617     GST_OBJECT_LOCK (element);
2618     /* somebody added a GST_STATE_ and forgot to do stuff here ! */
2619     g_critical ("%s: unknown return value %d from a state change function",
2620         GST_ELEMENT_NAME (element), ret);
2621
2622     /* we are in error now */
2623     ret = GST_STATE_CHANGE_FAILURE;
2624     GST_STATE_RETURN (element) = ret;
2625     GST_OBJECT_UNLOCK (element);
2626
2627     return ret;
2628   }
2629 }
2630
2631 /* gst_iterator_fold functions for pads_activate
2632  * Stop the iterator if activating one pad failed. */
2633 static gboolean
2634 activate_pads (const GValue * vpad, GValue * ret, gboolean * active)
2635 {
2636   GstPad *pad = g_value_get_object (vpad);
2637   gboolean cont = TRUE;
2638
2639   if (!(cont = gst_pad_set_active (pad, *active)))
2640     g_value_set_boolean (ret, FALSE);
2641
2642   return cont;
2643 }
2644
2645 /* returns false on error or early cutout of the fold, true if all
2646  * pads in @iter were (de)activated successfully. */
2647 static gboolean
2648 iterator_activate_fold_with_resync (GstIterator * iter,
2649     GstIteratorFoldFunction func, gpointer user_data)
2650 {
2651   GstIteratorResult ires;
2652   GValue ret = { 0 };
2653
2654   /* no need to unset this later, it's just a boolean */
2655   g_value_init (&ret, G_TYPE_BOOLEAN);
2656   g_value_set_boolean (&ret, TRUE);
2657
2658   while (1) {
2659     ires = gst_iterator_fold (iter, func, &ret, user_data);
2660     switch (ires) {
2661       case GST_ITERATOR_RESYNC:
2662         /* need to reset the result again */
2663         g_value_set_boolean (&ret, TRUE);
2664         gst_iterator_resync (iter);
2665         break;
2666       case GST_ITERATOR_DONE:
2667         /* all pads iterated, return collected value */
2668         goto done;
2669       default:
2670         /* iterator returned _ERROR or premature end with _OK,
2671          * mark an error and exit */
2672         g_value_set_boolean (&ret, FALSE);
2673         goto done;
2674     }
2675   }
2676 done:
2677   /* return collected value */
2678   return g_value_get_boolean (&ret);
2679 }
2680
2681 /* is called with STATE_LOCK
2682  *
2683  * Pads are activated from source pads to sinkpads.
2684  */
2685 static gboolean
2686 gst_element_pads_activate (GstElement * element, gboolean active)
2687 {
2688   GstIterator *iter;
2689   gboolean res;
2690
2691   GST_CAT_DEBUG_OBJECT (GST_CAT_ELEMENT_PADS, element,
2692       "pads_activate with active %d", active);
2693
2694   iter = gst_element_iterate_src_pads (element);
2695   res =
2696       iterator_activate_fold_with_resync (iter,
2697       (GstIteratorFoldFunction) activate_pads, &active);
2698   gst_iterator_free (iter);
2699   if (G_UNLIKELY (!res))
2700     goto src_failed;
2701
2702   iter = gst_element_iterate_sink_pads (element);
2703   res =
2704       iterator_activate_fold_with_resync (iter,
2705       (GstIteratorFoldFunction) activate_pads, &active);
2706   gst_iterator_free (iter);
2707   if (G_UNLIKELY (!res))
2708     goto sink_failed;
2709
2710   GST_CAT_DEBUG_OBJECT (GST_CAT_ELEMENT_PADS, element,
2711       "pads_activate successful");
2712
2713   return TRUE;
2714
2715   /* ERRORS */
2716 src_failed:
2717   {
2718     GST_CAT_DEBUG_OBJECT (GST_CAT_ELEMENT_PADS, element,
2719         "source pads_activate failed");
2720     return FALSE;
2721   }
2722 sink_failed:
2723   {
2724     GST_CAT_DEBUG_OBJECT (GST_CAT_ELEMENT_PADS, element,
2725         "sink pads_activate failed");
2726     return FALSE;
2727   }
2728 }
2729
2730 /* is called with STATE_LOCK */
2731 static GstStateChangeReturn
2732 gst_element_change_state_func (GstElement * element, GstStateChange transition)
2733 {
2734   GstState state, next;
2735   GstStateChangeReturn result = GST_STATE_CHANGE_SUCCESS;
2736
2737   g_return_val_if_fail (GST_IS_ELEMENT (element), GST_STATE_CHANGE_FAILURE);
2738
2739   state = (GstState) GST_STATE_TRANSITION_CURRENT (transition);
2740   next = GST_STATE_TRANSITION_NEXT (transition);
2741
2742   /* if the element already is in the given state, we just return success */
2743   if (next == GST_STATE_VOID_PENDING || state == next)
2744     goto was_ok;
2745
2746   GST_CAT_LOG_OBJECT (GST_CAT_STATES, element,
2747       "default handler tries setting state from %s to %s (%04x)",
2748       gst_element_state_get_name (state),
2749       gst_element_state_get_name (next), transition);
2750
2751   switch (transition) {
2752     case GST_STATE_CHANGE_NULL_TO_READY:
2753       break;
2754     case GST_STATE_CHANGE_READY_TO_PAUSED:
2755       if (!gst_element_pads_activate (element, TRUE)) {
2756         result = GST_STATE_CHANGE_FAILURE;
2757       }
2758       break;
2759     case GST_STATE_CHANGE_PAUSED_TO_PLAYING:
2760       break;
2761     case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
2762       break;
2763     case GST_STATE_CHANGE_PAUSED_TO_READY:
2764     case GST_STATE_CHANGE_READY_TO_NULL:
2765       /* deactivate pads in both cases, since they are activated on
2766          ready->paused but the element might not have made it to paused */
2767       if (!gst_element_pads_activate (element, FALSE)) {
2768         result = GST_STATE_CHANGE_FAILURE;
2769       }
2770       break;
2771     default:
2772       /* this will catch real but unhandled state changes;
2773        * can only be caused by:
2774        * - a new state was added
2775        * - somehow the element was asked to jump across an intermediate state
2776        */
2777       g_warning ("Unhandled state change from %s to %s",
2778           gst_element_state_get_name (state),
2779           gst_element_state_get_name (next));
2780       break;
2781   }
2782   return result;
2783
2784 was_ok:
2785   {
2786     GST_OBJECT_LOCK (element);
2787     result = GST_STATE_RETURN (element);
2788     GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
2789         "element is already in the %s state",
2790         gst_element_state_get_name (state));
2791     GST_OBJECT_UNLOCK (element);
2792
2793     return result;
2794   }
2795 }
2796
2797 /**
2798  * gst_element_get_factory:
2799  * @element: a #GstElement to request the element factory of.
2800  *
2801  * Retrieves the factory that was used to create this element.
2802  *
2803  * Returns: (transfer none): the #GstElementFactory used for creating this
2804  *     element. no refcounting is needed.
2805  */
2806 GstElementFactory *
2807 gst_element_get_factory (GstElement * element)
2808 {
2809   g_return_val_if_fail (GST_IS_ELEMENT (element), NULL);
2810
2811   return GST_ELEMENT_GET_CLASS (element)->elementfactory;
2812 }
2813
2814 static void
2815 gst_element_dispose (GObject * object)
2816 {
2817   GstElement *element = GST_ELEMENT_CAST (object);
2818   GstClock **clock_p;
2819   GstBus **bus_p;
2820
2821   GST_CAT_INFO_OBJECT (GST_CAT_REFCOUNTING, element, "dispose");
2822
2823   if (GST_STATE (element) != GST_STATE_NULL)
2824     goto not_null;
2825
2826   GST_CAT_DEBUG_OBJECT (GST_CAT_ELEMENT_PADS, element,
2827       "removing %d pads", g_list_length (element->pads));
2828   /* first we break all our links with the outside */
2829   while (element->pads && element->pads->data) {
2830     /* don't call _remove_pad with NULL */
2831     gst_element_remove_pad (element, GST_PAD_CAST (element->pads->data));
2832   }
2833   if (G_UNLIKELY (element->pads != NULL)) {
2834     g_critical ("could not remove pads from element %s",
2835         GST_STR_NULL (GST_OBJECT_NAME (object)));
2836   }
2837
2838   GST_OBJECT_LOCK (element);
2839   clock_p = &element->clock;
2840   bus_p = &element->bus;
2841   gst_object_replace ((GstObject **) clock_p, NULL);
2842   gst_object_replace ((GstObject **) bus_p, NULL);
2843   GST_OBJECT_UNLOCK (element);
2844
2845   GST_CAT_INFO_OBJECT (GST_CAT_REFCOUNTING, element, "parent class dispose");
2846
2847   G_OBJECT_CLASS (parent_class)->dispose (object);
2848
2849   return;
2850
2851   /* ERRORS */
2852 not_null:
2853   {
2854     gboolean is_locked;
2855
2856     is_locked = GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_LOCKED_STATE);
2857     g_critical
2858         ("\nTrying to dispose element %s, but it is in %s%s instead of the NULL"
2859         " state.\n"
2860         "You need to explicitly set elements to the NULL state before\n"
2861         "dropping the final reference, to allow them to clean up.\n"
2862         "This problem may also be caused by a refcounting bug in the\n"
2863         "application or some element.\n",
2864         GST_OBJECT_NAME (element),
2865         gst_element_state_get_name (GST_STATE (element)),
2866         is_locked ? " (locked)" : "");
2867     return;
2868   }
2869 }
2870
2871 static void
2872 gst_element_finalize (GObject * object)
2873 {
2874   GstElement *element = GST_ELEMENT_CAST (object);
2875
2876   GST_CAT_INFO_OBJECT (GST_CAT_REFCOUNTING, element, "finalize");
2877
2878   g_cond_free (element->state_cond);
2879   g_static_rec_mutex_free (&element->state_lock);
2880
2881   GST_CAT_INFO_OBJECT (GST_CAT_REFCOUNTING, element, "finalize parent");
2882
2883   G_OBJECT_CLASS (parent_class)->finalize (object);
2884 }
2885
2886 static void
2887 gst_element_set_bus_func (GstElement * element, GstBus * bus)
2888 {
2889   GstBus **bus_p;
2890
2891   g_return_if_fail (GST_IS_ELEMENT (element));
2892
2893   GST_CAT_DEBUG_OBJECT (GST_CAT_PARENTAGE, element, "setting bus to %p", bus);
2894
2895   GST_OBJECT_LOCK (element);
2896   bus_p = &GST_ELEMENT_BUS (element);
2897   gst_object_replace ((GstObject **) bus_p, GST_OBJECT_CAST (bus));
2898   GST_OBJECT_UNLOCK (element);
2899 }
2900
2901 /**
2902  * gst_element_set_bus:
2903  * @element: a #GstElement to set the bus of.
2904  * @bus: (transfer none): the #GstBus to set.
2905  *
2906  * Sets the bus of the element. Increases the refcount on the bus.
2907  * For internal use only, unless you're testing elements.
2908  *
2909  * MT safe.
2910  */
2911 void
2912 gst_element_set_bus (GstElement * element, GstBus * bus)
2913 {
2914   GstElementClass *oclass;
2915
2916   g_return_if_fail (GST_IS_ELEMENT (element));
2917
2918   oclass = GST_ELEMENT_GET_CLASS (element);
2919
2920   if (oclass->set_bus)
2921     oclass->set_bus (element, bus);
2922 }
2923
2924 /**
2925  * gst_element_get_bus:
2926  * @element: a #GstElement to get the bus of.
2927  *
2928  * Returns the bus of the element. Note that only a #GstPipeline will provide a
2929  * bus for the application.
2930  *
2931  * Returns: (transfer full): the element's #GstBus. unref after usage.
2932  *
2933  * MT safe.
2934  */
2935 GstBus *
2936 gst_element_get_bus (GstElement * element)
2937 {
2938   GstBus *result = NULL;
2939
2940   g_return_val_if_fail (GST_IS_ELEMENT (element), result);
2941
2942   GST_OBJECT_LOCK (element);
2943   if ((result = GST_ELEMENT_BUS (element)))
2944     gst_object_ref (result);
2945   GST_OBJECT_UNLOCK (element);
2946
2947   GST_CAT_DEBUG_OBJECT (GST_CAT_BUS, element, "got bus %" GST_PTR_FORMAT,
2948       result);
2949
2950   return result;
2951 }