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