2 * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3 * 2000 Wim Taymans <wtay@chello.be>
5 * gstpadtemplate.c: Templates for pad creation
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.
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.
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.
24 * SECTION:gstpadtemplate
25 * @short_description: Describe the media type of a pad.
26 * @see_also: #GstPad, #GstElementFactory
28 * Padtemplates describe the possible media types a pad or an elementfactory can
29 * handle. This allows for both inspection of handled types before loading the
30 * element plugin as well as identifying pads on elements that are not yet
31 * created (request or sometimes pads).
33 * Pad and PadTemplates have #GstCaps attached to it to describe the media type
34 * they are capable of dealing with. gst_pad_template_get_caps() or
35 * GST_PAD_TEMPLATE_CAPS() are used to get the caps of a padtemplate. It's not
36 * possible to modify the caps of a padtemplate after creation.
38 * PadTemplates have a #GstPadPresence property which identifies the lifetime
39 * of the pad and that can be retrieved with GST_PAD_TEMPLATE_PRESENCE(). Also
40 * the direction of the pad can be retrieved from the #GstPadTemplate with
41 * GST_PAD_TEMPLATE_DIRECTION().
43 * The GST_PAD_TEMPLATE_NAME_TEMPLATE () is important for GST_PAD_REQUEST pads
44 * because it has to be used as the name in the gst_element_get_request_pad()
45 * call to instantiate a pad from this template.
47 * Padtemplates can be created with gst_pad_template_new() or with
48 * gst_static_pad_template_get (), which creates a #GstPadTemplate from a
49 * #GstStaticPadTemplate that can be filled with the
50 * convenient GST_STATIC_PAD_TEMPLATE() macro.
52 * A padtemplate can be used to create a pad (see gst_pad_new_from_template()
53 * or gst_pad_new_from_static_template ()) or to add to an element class
54 * (see gst_element_class_add_pad_template ()).
56 * The following code example shows the code to create a pad from a padtemplate.
58 * <title>Create a pad from a padtemplate</title>
60 * GstStaticPadTemplate my_template =
61 * GST_STATIC_PAD_TEMPLATE (
62 * "sink", // the name of the pad
63 * GST_PAD_SINK, // the direction of the pad
64 * GST_PAD_ALWAYS, // when this pad will be present
65 * GST_STATIC_CAPS ( // the capabilities of the padtemplate
67 * "channels = (int) [ 1, 6 ]"
74 * pad = gst_pad_new_from_static_template (&my_template, "sink");
80 * The following example shows you how to add the padtemplate to an
81 * element class, this is usually done in the class_init of the class:
85 * my_element_class_init (GstMyElementClass *klass)
87 * GstElementClass *gstelement_class = GST_ELEMENT_CLASS (klass);
89 * gst_element_class_add_pad_template (gstelement_class,
90 * gst_static_pad_template_get (&my_template));
95 * Last reviewed on 2006-02-14 (0.10.3)
98 #include "gst_private.h"
101 #include "gstpadtemplate.h"
102 #include "gstenumtypes.h"
103 #include "gstmarshal.h"
104 #include "gstutils.h"
106 #include "gsterror.h"
107 #include "gstvalue.h"
109 #define GST_CAT_DEFAULT GST_CAT_PADS
113 PROP_NAME_TEMPLATE = 1,
126 static guint gst_pad_template_signals[LAST_SIGNAL] = { 0 };
128 static void gst_pad_template_dispose (GObject * object);
129 static void gst_pad_template_set_property (GObject * object, guint prop_id,
130 const GValue * value, GParamSpec * pspec);
131 static void gst_pad_template_get_property (GObject * object, guint prop_id,
132 GValue * value, GParamSpec * pspec);
134 #define gst_pad_template_parent_class parent_class
135 G_DEFINE_TYPE (GstPadTemplate, gst_pad_template, GST_TYPE_OBJECT);
138 gst_pad_template_class_init (GstPadTemplateClass * klass)
140 GObjectClass *gobject_class;
141 GstObjectClass *gstobject_class;
143 gobject_class = (GObjectClass *) klass;
144 gstobject_class = (GstObjectClass *) klass;
147 * GstPadTemplate::pad-created:
148 * @pad_template: the object which received the signal.
149 * @pad: the pad that was created.
151 * This signal is fired when an element creates a pad from this template.
153 gst_pad_template_signals[TEMPL_PAD_CREATED] =
154 g_signal_new ("pad-created", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
155 G_STRUCT_OFFSET (GstPadTemplateClass, pad_created),
156 NULL, NULL, gst_marshal_VOID__OBJECT, G_TYPE_NONE, 1, GST_TYPE_PAD);
158 gobject_class->dispose = gst_pad_template_dispose;
160 gobject_class->get_property = gst_pad_template_get_property;
161 gobject_class->set_property = gst_pad_template_set_property;
164 * GstPadTemplate:name-template
166 * The name template of the pad template.
170 g_object_class_install_property (gobject_class, PROP_NAME_TEMPLATE,
171 g_param_spec_string ("name-template", "Name template",
172 "The name template of the pad template", NULL,
173 G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS));
176 * GstPadTemplate:direction
178 * The direction of the pad described by the pad template.
182 g_object_class_install_property (gobject_class, PROP_DIRECTION,
183 g_param_spec_enum ("direction", "Direction",
184 "The direction of the pad described by the pad template",
185 GST_TYPE_PAD_DIRECTION, GST_PAD_UNKNOWN,
186 G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS));
189 * GstPadTemplate:presence
191 * When the pad described by the pad template will become available.
195 g_object_class_install_property (gobject_class, PROP_PRESENCE,
196 g_param_spec_enum ("presence", "Presence",
197 "When the pad described by the pad template will become available",
198 GST_TYPE_PAD_PRESENCE, GST_PAD_ALWAYS,
199 G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS));
202 * GstPadTemplate:caps
204 * The capabilities of the pad described by the pad template.
208 g_object_class_install_property (gobject_class, PROP_CAPS,
209 g_param_spec_boxed ("caps", "Caps",
210 "The capabilities of the pad described by the pad template",
212 G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS));
214 gstobject_class->path_string_separator = "*";
218 gst_pad_template_init (GstPadTemplate * templ)
223 gst_pad_template_dispose (GObject * object)
225 GstPadTemplate *templ = GST_PAD_TEMPLATE (object);
227 g_free (GST_PAD_TEMPLATE_NAME_TEMPLATE (templ));
228 if (GST_PAD_TEMPLATE_CAPS (templ)) {
229 gst_caps_unref (GST_PAD_TEMPLATE_CAPS (templ));
232 G_OBJECT_CLASS (parent_class)->dispose (object);
235 /* ALWAYS padtemplates cannot have conversion specifications (like src_%d),
236 * since it doesn't make sense.
237 * SOMETIMES padtemplates can do whatever they want, they are provided by the
239 * REQUEST padtemplates can be reverse-parsed (the user asks for 'sink1', the
240 * 'sink%d' template is automatically selected), so we need to restrict their
244 name_is_valid (const gchar * name, GstPadPresence presence)
248 if (presence == GST_PAD_ALWAYS) {
249 if (strchr (name, '%')) {
250 g_warning ("invalid name template %s: conversion specifications are not"
251 " allowed for GST_PAD_ALWAYS padtemplates", name);
254 } else if (presence == GST_PAD_REQUEST) {
255 if ((str = strchr (name, '%')) && strchr (str + 1, '%')) {
256 g_warning ("invalid name template %s: only one conversion specification"
257 " allowed in GST_PAD_REQUEST padtemplate", name);
260 if (str && (*(str + 1) != 's' && *(str + 1) != 'd' && *(str + 1) != 'u')) {
261 g_warning ("invalid name template %s: conversion specification must be of"
262 " type '%%d', '%%u' or '%%s' for GST_PAD_REQUEST padtemplate", name);
265 if (str && (*(str + 2) != '\0')) {
266 g_warning ("invalid name template %s: conversion specification must"
267 " appear at the end of the GST_PAD_REQUEST padtemplate name", name);
276 gst_static_pad_template_get_type (void)
278 static GType staticpadtemplate_type = 0;
280 if (G_UNLIKELY (staticpadtemplate_type == 0)) {
281 staticpadtemplate_type =
282 g_pointer_type_register_static ("GstStaticPadTemplate");
284 return staticpadtemplate_type;
288 * gst_static_pad_template_get:
289 * @pad_template: the static pad template
291 * Converts a #GstStaticPadTemplate into a #GstPadTemplate.
293 * Returns: (transfer full): a new #GstPadTemplate.
295 /* FIXME0.11: rename to gst_pad_template_new_from_static_pad_template() */
297 gst_static_pad_template_get (GstStaticPadTemplate * pad_template)
302 if (!name_is_valid (pad_template->name_template, pad_template->presence))
305 caps = gst_static_caps_get (&pad_template->static_caps);
307 new = g_object_new (gst_pad_template_get_type (),
308 "name", pad_template->name_template,
309 "name-template", pad_template->name_template,
310 "direction", pad_template->direction,
311 "presence", pad_template->presence, "caps", caps, NULL);
313 gst_caps_unref (caps);
319 * gst_pad_template_new:
320 * @name_template: the name template.
321 * @direction: the #GstPadDirection of the template.
322 * @presence: the #GstPadPresence of the pad.
323 * @caps: (transfer none): a #GstCaps set for the template.
325 * Creates a new pad template with a name according to the given template
326 * and with the given arguments.
328 * Returns: (transfer full): a new #GstPadTemplate.
331 gst_pad_template_new (const gchar * name_template,
332 GstPadDirection direction, GstPadPresence presence, GstCaps * caps)
336 g_return_val_if_fail (name_template != NULL, NULL);
337 g_return_val_if_fail (caps != NULL, NULL);
338 g_return_val_if_fail (direction == GST_PAD_SRC
339 || direction == GST_PAD_SINK, NULL);
340 g_return_val_if_fail (presence == GST_PAD_ALWAYS
341 || presence == GST_PAD_SOMETIMES || presence == GST_PAD_REQUEST, NULL);
343 if (!name_is_valid (name_template, presence)) {
347 new = g_object_new (gst_pad_template_get_type (),
348 "name", name_template, "name-template", name_template,
349 "direction", direction, "presence", presence, "caps", caps, NULL);
355 * gst_static_pad_template_get_caps:
356 * @templ: a #GstStaticPadTemplate to get capabilities of.
358 * Gets the capabilities of the static pad template.
360 * Returns: (transfer full): the #GstCaps of the static pad template.
361 * Unref after usage. Since the core holds an additional
362 * ref to the returned caps, use gst_caps_make_writable()
363 * on the returned caps to modify it.
366 gst_static_pad_template_get_caps (GstStaticPadTemplate * templ)
368 g_return_val_if_fail (templ, NULL);
370 return (GstCaps *) gst_static_caps_get (&templ->static_caps);
374 * gst_pad_template_get_caps:
375 * @templ: a #GstPadTemplate to get capabilities of.
377 * Gets the capabilities of the pad template.
379 * Returns: (transfer full): the #GstCaps of the pad template.
383 gst_pad_template_get_caps (GstPadTemplate * templ)
386 g_return_val_if_fail (GST_IS_PAD_TEMPLATE (templ), NULL);
388 caps = GST_PAD_TEMPLATE_CAPS (templ);
390 return (caps ? gst_caps_ref (caps) : NULL);
394 * gst_pad_template_pad_created:
395 * @templ: a #GstPadTemplate that has been created
396 * @pad: the #GstPad that created it
398 * Emit the pad-created signal for this template when created by this pad.
401 gst_pad_template_pad_created (GstPadTemplate * templ, GstPad * pad)
403 g_signal_emit (templ, gst_pad_template_signals[TEMPL_PAD_CREATED], 0, pad);
407 gst_pad_template_set_property (GObject * object, guint prop_id,
408 const GValue * value, GParamSpec * pspec)
410 /* these properties are all construct-only */
412 case PROP_NAME_TEMPLATE:
413 GST_PAD_TEMPLATE_NAME_TEMPLATE (object) = g_value_dup_string (value);
416 GST_PAD_TEMPLATE_DIRECTION (object) =
417 (GstPadDirection) g_value_get_enum (value);
420 GST_PAD_TEMPLATE_PRESENCE (object) =
421 (GstPadPresence) g_value_get_enum (value);
424 GST_PAD_TEMPLATE_CAPS (object) = g_value_dup_boxed (value);
427 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
433 gst_pad_template_get_property (GObject * object, guint prop_id, GValue * value,
436 /* these properties are all construct-only */
438 case PROP_NAME_TEMPLATE:
439 g_value_set_string (value, GST_PAD_TEMPLATE_NAME_TEMPLATE (object));
442 g_value_set_enum (value, GST_PAD_TEMPLATE_DIRECTION (object));
445 g_value_set_enum (value, GST_PAD_TEMPLATE_PRESENCE (object));
448 g_value_set_boxed (value, GST_PAD_TEMPLATE_CAPS (object));
451 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);