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