1 /* GStreamer
2 *
3 * Copyright (C) 2011 Stefan Sauer <ensonic@users.sf.net>
4 *
5 * gstcontrolbinding.c: Attachment for control sources
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Library General Public License for more details.
16 *
17 * You should have received a copy of the GNU Library General Public
18 * License along with this library; if not, write to the
19 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
20 * Boston, MA 02110-1301, USA.
21 */
22 /**
23 * SECTION:gstcontrolbinding
24 * @title: GstControlBinding
25 * @short_description: attachment for control source sources
26 *
27 * A base class for value mapping objects that attaches control sources to gobject
28 * properties. Such an object is taking one or more #GstControlSource instances,
29 * combines them and maps the resulting value to the type and value range of the
30 * bound property.
31 */
32 /* FIXME(ensonic): should we make gst_object_add_control_binding() internal
33 * - we create the control_binding for a certain object anyway
34 * - we could call gst_object_add_control_binding() at the end of
35 * gst_control_binding_constructor()
36 * - the weak-ref on object is not nice, as is the same as gst_object_parent()
37 * once the object is added to the parent
38 *
39 * - another option would be to defer what is done in _constructor to when
40 * the parent is set (need to listen to the signal then)
41 * then basically I could
42 * a) remove the obj arg and wait the binding to be added or
43 * b) add the binding from constructor, unref object there and make obj
44 * writeonly
45 */
46
47 #include "gst_private.h"
48
49 #include <glib-object.h>
50 #include <gst/gst.h>
51
52 #include "gstcontrolbinding.h"
53
54 #include <math.h>
55
56 struct _GstControlBindingPrivate
57 {
58 GWeakRef object;
59 };
60
61 #define GST_CAT_DEFAULT control_binding_debug
62 GST_DEBUG_CATEGORY_STATIC (GST_CAT_DEFAULT);
63
64 #define _do_init \
65 GST_DEBUG_CATEGORY_INIT (GST_CAT_DEFAULT, "gstcontrolbinding", 0, \
66 "dynamic parameter control source attachment");
67
68 static GObject *gst_control_binding_constructor (GType type,
69 guint n_construct_params, GObjectConstructParam * construct_params);
70 static void gst_control_binding_set_property (GObject * object, guint prop_id,
71 const GValue * value, GParamSpec * pspec);
72 static void gst_control_binding_get_property (GObject * object, guint prop_id,
73 GValue * value, GParamSpec * pspec);
74 static void gst_control_binding_dispose (GObject * object);
75 static void gst_control_binding_finalize (GObject * object);
76
77 G_DEFINE_ABSTRACT_TYPE_WITH_CODE (GstControlBinding, gst_control_binding,
78 GST_TYPE_OBJECT, G_ADD_PRIVATE (GstControlBinding) _do_init);
79
80 enum
81 {
82 PROP_0,
83 PROP_OBJECT,
84 PROP_NAME,
85 PROP_LAST
86 };
87
88 static GParamSpec *properties[PROP_LAST];
89
90 static void
gst_control_binding_class_init(GstControlBindingClass * klass)91 gst_control_binding_class_init (GstControlBindingClass * klass)
92 {
93 GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
94
95 gobject_class->constructor = gst_control_binding_constructor;
96 gobject_class->set_property = gst_control_binding_set_property;
97 gobject_class->get_property = gst_control_binding_get_property;
98 gobject_class->dispose = gst_control_binding_dispose;
99 gobject_class->finalize = gst_control_binding_finalize;
100
101 properties[PROP_OBJECT] =
102 g_param_spec_object ("object", "Object",
103 "The object of the property", GST_TYPE_OBJECT,
104 G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS);
105
106 properties[PROP_NAME] =
107 g_param_spec_string ("name", "Name", "The name of the property", NULL,
108 G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS);
109
110
111 g_object_class_install_properties (gobject_class, PROP_LAST, properties);
112 }
113
114 static void
gst_control_binding_init(GstControlBinding * binding)115 gst_control_binding_init (GstControlBinding * binding)
116 {
117 binding->ABI.abi.priv = gst_control_binding_get_instance_private (binding);
118 g_weak_ref_init (&binding->ABI.abi.priv->object, NULL);
119 }
120
121 static GObject *
gst_control_binding_constructor(GType type,guint n_construct_params,GObjectConstructParam * construct_params)122 gst_control_binding_constructor (GType type, guint n_construct_params,
123 GObjectConstructParam * construct_params)
124 {
125 GstControlBinding *binding;
126 GParamSpec *pspec;
127 GstObject *object;
128
129 binding =
130 GST_CONTROL_BINDING (G_OBJECT_CLASS (gst_control_binding_parent_class)
131 ->constructor (type, n_construct_params, construct_params));
132
133 object = g_weak_ref_get (&binding->ABI.abi.priv->object);
134 if (!object) {
135 GST_WARNING_OBJECT (object, "no object set");
136 return (GObject *) binding;
137 }
138
139 GST_INFO_OBJECT (object, "trying to put property '%s' under control",
140 binding->name);
141
142 /* check if the object has a property of that name */
143 if ((pspec =
144 g_object_class_find_property (G_OBJECT_GET_CLASS (object),
145 binding->name))) {
146 GST_DEBUG_OBJECT (object, " psec->flags : 0x%08x", pspec->flags);
147
148 /* check if this param is witable && controlable && !construct-only */
149 if ((pspec->flags & (G_PARAM_WRITABLE | GST_PARAM_CONTROLLABLE |
150 G_PARAM_CONSTRUCT_ONLY)) ==
151 (G_PARAM_WRITABLE | GST_PARAM_CONTROLLABLE)) {
152 binding->pspec = pspec;
153 } else {
154 GST_WARNING_OBJECT (object,
155 "property '%s' on class '%s' needs to "
156 "be writeable, controlable and not construct_only", binding->name,
157 G_OBJECT_TYPE_NAME (object));
158 }
159 } else {
160 GST_WARNING_OBJECT (object, "class '%s' has no property '%s'",
161 G_OBJECT_TYPE_NAME (object), binding->name);
162 }
163
164 gst_object_unref (object);
165
166 return (GObject *) binding;
167 }
168
169 static void
gst_control_binding_dispose(GObject * object)170 gst_control_binding_dispose (GObject * object)
171 {
172 GstControlBinding *self = GST_CONTROL_BINDING (object);
173
174 /* we did not took a reference */
175 if (self->__object)
176 g_object_remove_weak_pointer ((GObject *) self->__object,
177 (gpointer *) & self->__object);
178 self->__object = NULL;
179 g_weak_ref_clear (&self->ABI.abi.priv->object);
180
181 ((GObjectClass *) gst_control_binding_parent_class)->dispose (object);
182 }
183
184 static void
gst_control_binding_finalize(GObject * object)185 gst_control_binding_finalize (GObject * object)
186 {
187 GstControlBinding *self = GST_CONTROL_BINDING (object);
188
189 g_free (self->name);
190
191 ((GObjectClass *) gst_control_binding_parent_class)->finalize (object);
192 }
193
194 static void
gst_control_binding_set_property(GObject * object,guint prop_id,const GValue * value,GParamSpec * pspec)195 gst_control_binding_set_property (GObject * object, guint prop_id,
196 const GValue * value, GParamSpec * pspec)
197 {
198 GstControlBinding *self = GST_CONTROL_BINDING (object);
199
200 switch (prop_id) {
201 case PROP_OBJECT:
202 /* do not ref to avoid a ref cycle */
203 self->__object = g_value_get_object (value);
204 g_object_add_weak_pointer ((GObject *) self->__object,
205 (gpointer *) & self->__object);
206
207 g_weak_ref_set (&self->ABI.abi.priv->object, self->__object);
208 break;
209 case PROP_NAME:
210 self->name = g_value_dup_string (value);
211 break;
212 default:
213 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
214 break;
215 }
216 }
217
218 static void
gst_control_binding_get_property(GObject * object,guint prop_id,GValue * value,GParamSpec * pspec)219 gst_control_binding_get_property (GObject * object, guint prop_id,
220 GValue * value, GParamSpec * pspec)
221 {
222 GstControlBinding *self = GST_CONTROL_BINDING (object);
223
224 switch (prop_id) {
225 case PROP_OBJECT:
226 g_value_take_object (value, g_weak_ref_get (&self->ABI.abi.priv->object));
227 break;
228 case PROP_NAME:
229 g_value_set_string (value, self->name);
230 break;
231 default:
232 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
233 break;
234 }
235 }
236
237 /* functions */
238
239 /**
240 * gst_control_binding_sync_values:
241 * @binding: the control binding
242 * @object: the object that has controlled properties
243 * @timestamp: the time that should be processed
244 * @last_sync: the last time this was called
245 *
246 * Sets the property of the @object, according to the #GstControlSources that
247 * handle them and for the given timestamp.
248 *
249 * If this function fails, it is most likely the application developers fault.
250 * Most probably the control sources are not setup correctly.
251 *
252 * Returns: %TRUE if the controller value could be applied to the object
253 * property, %FALSE otherwise
254 */
255 gboolean
gst_control_binding_sync_values(GstControlBinding * binding,GstObject * object,GstClockTime timestamp,GstClockTime last_sync)256 gst_control_binding_sync_values (GstControlBinding * binding,
257 GstObject * object, GstClockTime timestamp, GstClockTime last_sync)
258 {
259 GstControlBindingClass *klass;
260 gboolean ret = FALSE;
261
262 g_return_val_if_fail (GST_IS_CONTROL_BINDING (binding), FALSE);
263
264 if (binding->disabled)
265 return TRUE;
266
267 klass = GST_CONTROL_BINDING_GET_CLASS (binding);
268
269 if (G_LIKELY (klass->sync_values != NULL)) {
270 ret = klass->sync_values (binding, object, timestamp, last_sync);
271 } else {
272 GST_WARNING_OBJECT (binding, "missing sync_values implementation");
273 }
274 return ret;
275 }
276
277 /**
278 * gst_control_binding_get_value:
279 * @binding: the control binding
280 * @timestamp: the time the control-change should be read from
281 *
282 * Gets the value for the given controlled property at the requested time.
283 *
284 * Returns: (nullable): the GValue of the property at the given time,
285 * or %NULL if the property isn't controlled.
286 */
287 GValue *
gst_control_binding_get_value(GstControlBinding * binding,GstClockTime timestamp)288 gst_control_binding_get_value (GstControlBinding * binding,
289 GstClockTime timestamp)
290 {
291 GstControlBindingClass *klass;
292 GValue *ret = NULL;
293
294 g_return_val_if_fail (GST_IS_CONTROL_BINDING (binding), NULL);
295 g_return_val_if_fail (GST_CLOCK_TIME_IS_VALID (timestamp), NULL);
296
297 klass = GST_CONTROL_BINDING_GET_CLASS (binding);
298
299 if (G_LIKELY (klass->get_value != NULL)) {
300 ret = klass->get_value (binding, timestamp);
301 } else {
302 GST_WARNING_OBJECT (binding, "missing get_value implementation");
303 }
304 return ret;
305 }
306
307 /**
308 * gst_control_binding_get_value_array: (skip)
309 * @binding: the control binding
310 * @timestamp: the time that should be processed
311 * @interval: the time spacing between subsequent values
312 * @n_values: the number of values
313 * @values: (array length=n_values): array to put control-values in
314 *
315 * Gets a number of values for the given controlled property starting at the
316 * requested time. The array @values need to hold enough space for @n_values of
317 * the same type as the objects property's type.
318 *
319 * This function is useful if one wants to e.g. draw a graph of the control
320 * curve or apply a control curve sample by sample.
321 *
322 * The values are unboxed and ready to be used. The similar function
323 * gst_control_binding_get_g_value_array() returns the array as #GValues and is
324 * more suitable for bindings.
325 *
326 * Returns: %TRUE if the given array could be filled, %FALSE otherwise
327 */
328 gboolean
gst_control_binding_get_value_array(GstControlBinding * binding,GstClockTime timestamp,GstClockTime interval,guint n_values,gpointer values)329 gst_control_binding_get_value_array (GstControlBinding * binding,
330 GstClockTime timestamp, GstClockTime interval, guint n_values,
331 gpointer values)
332 {
333 GstControlBindingClass *klass;
334 gboolean ret = FALSE;
335
336 g_return_val_if_fail (GST_IS_CONTROL_BINDING (binding), FALSE);
337 g_return_val_if_fail (GST_CLOCK_TIME_IS_VALID (timestamp), FALSE);
338 g_return_val_if_fail (GST_CLOCK_TIME_IS_VALID (interval), FALSE);
339 g_return_val_if_fail (values, FALSE);
340
341 klass = GST_CONTROL_BINDING_GET_CLASS (binding);
342
343 if (G_LIKELY (klass->get_value_array != NULL)) {
344 ret =
345 klass->get_value_array (binding, timestamp, interval, n_values, values);
346 } else {
347 GST_WARNING_OBJECT (binding, "missing get_value_array implementation");
348 }
349 return ret;
350 }
351
352 #define CONVERT_ARRAY(type,TYPE) \
353 { \
354 g##type *v = g_new (g##type,n_values); \
355 ret = gst_control_binding_get_value_array (binding, timestamp, interval, \
356 n_values, v); \
357 if (ret) { \
358 for (i = 0; i < n_values; i++) { \
359 g_value_init (&values[i], G_TYPE_##TYPE); \
360 g_value_set_##type (&values[i], v[i]); \
361 } \
362 } \
363 g_free (v); \
364 }
365
366 /**
367 * gst_control_binding_get_g_value_array:
368 * @binding: the control binding
369 * @timestamp: the time that should be processed
370 * @interval: the time spacing between subsequent values
371 * @n_values: the number of values
372 * @values: (array length=n_values): array to put control-values in
373 *
374 * Gets a number of #GValues for the given controlled property starting at the
375 * requested time. The array @values need to hold enough space for @n_values of
376 * #GValue.
377 *
378 * This function is useful if one wants to e.g. draw a graph of the control
379 * curve or apply a control curve sample by sample.
380 *
381 * Returns: %TRUE if the given array could be filled, %FALSE otherwise
382 */
383 gboolean
gst_control_binding_get_g_value_array(GstControlBinding * binding,GstClockTime timestamp,GstClockTime interval,guint n_values,GValue * values)384 gst_control_binding_get_g_value_array (GstControlBinding * binding,
385 GstClockTime timestamp, GstClockTime interval, guint n_values,
386 GValue * values)
387 {
388 GstControlBindingClass *klass;
389 gboolean ret = FALSE;
390
391 g_return_val_if_fail (GST_IS_CONTROL_BINDING (binding), FALSE);
392 g_return_val_if_fail (GST_CLOCK_TIME_IS_VALID (timestamp), FALSE);
393 g_return_val_if_fail (GST_CLOCK_TIME_IS_VALID (interval), FALSE);
394 g_return_val_if_fail (values, FALSE);
395
396 klass = GST_CONTROL_BINDING_GET_CLASS (binding);
397
398 if (G_LIKELY (klass->get_g_value_array != NULL)) {
399 ret =
400 klass->get_g_value_array (binding, timestamp, interval, n_values,
401 values);
402 } else {
403 guint i;
404 GType type, base;
405
406 base = type = G_PARAM_SPEC_VALUE_TYPE (GST_CONTROL_BINDING_PSPEC (binding));
407 while ((type = g_type_parent (type)))
408 base = type;
409
410 GST_INFO_OBJECT (binding, "missing get_g_value_array implementation, we're "
411 "emulating it");
412 switch (base) {
413 case G_TYPE_INT:
414 CONVERT_ARRAY (int, INT);
415 break;
416 case G_TYPE_UINT:
417 CONVERT_ARRAY (uint, UINT);
418 break;
419 case G_TYPE_LONG:
420 CONVERT_ARRAY (long, LONG);
421 break;
422 case G_TYPE_ULONG:
423 CONVERT_ARRAY (ulong, ULONG);
424 break;
425 case G_TYPE_INT64:
426 CONVERT_ARRAY (int64, INT64);
427 break;
428 case G_TYPE_UINT64:
429 CONVERT_ARRAY (uint64, UINT64);
430 break;
431 case G_TYPE_FLOAT:
432 CONVERT_ARRAY (float, FLOAT);
433 break;
434 case G_TYPE_DOUBLE:
435 CONVERT_ARRAY (double, DOUBLE);
436 break;
437 case G_TYPE_BOOLEAN:
438 CONVERT_ARRAY (boolean, BOOLEAN);
439 break;
440 case G_TYPE_ENUM:
441 {
442 gint *v = g_new (gint, n_values);
443 ret = gst_control_binding_get_value_array (binding, timestamp, interval,
444 n_values, v);
445 if (ret) {
446 for (i = 0; i < n_values; i++) {
447 g_value_init (&values[i], type);
448 g_value_set_enum (&values[i], v[i]);
449 }
450 }
451 g_free (v);
452 }
453 break;
454 default:
455 GST_WARNING ("incomplete implementation for paramspec type '%s'",
456 G_PARAM_SPEC_TYPE_NAME (GST_CONTROL_BINDING_PSPEC (binding)));
457 GST_CONTROL_BINDING_PSPEC (binding) = NULL;
458 break;
459 }
460 }
461 return ret;
462 }
463
464 /**
465 * gst_control_binding_set_disabled:
466 * @binding: the control binding
467 * @disabled: boolean that specifies whether to disable the controller
468 * or not.
469 *
470 * This function is used to disable a control binding for some time, i.e.
471 * gst_object_sync_values() will do nothing.
472 */
473 void
gst_control_binding_set_disabled(GstControlBinding * binding,gboolean disabled)474 gst_control_binding_set_disabled (GstControlBinding * binding,
475 gboolean disabled)
476 {
477 g_return_if_fail (GST_IS_CONTROL_BINDING (binding));
478 binding->disabled = disabled;
479 }
480
481 /**
482 * gst_control_binding_is_disabled:
483 * @binding: the control binding
484 *
485 * Check if the control binding is disabled.
486 *
487 * Returns: %TRUE if the binding is inactive
488 */
489 gboolean
gst_control_binding_is_disabled(GstControlBinding * binding)490 gst_control_binding_is_disabled (GstControlBinding * binding)
491 {
492 g_return_val_if_fail (GST_IS_CONTROL_BINDING (binding), TRUE);
493 return ! !binding->disabled;
494 }
495