2 * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3 * 2000 Wim Taymans <wtay@chello.be>
4 * 2005 Wim Taymans <wim@fluendo.com>
6 * gstobject.c: Fundamental class used for all of GStreamer
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Library General Public License for more details.
18 * You should have received a copy of the GNU Library General Public
19 * License along with this library; if not, write to the
20 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 * Boston, MA 02111-1307, USA.
26 * @short_description: Base class for the GStreamer object hierarchy
28 * #GstObject provides a root for the object hierarchy tree filed in by the
29 * GStreamer library. It is currently a thin wrapper on top of
30 * #GObject. It is an abstract class that is not very usable on its own.
32 * #GstObject gives us basic refcounting, parenting functionality and locking.
33 * Most of the function are just extended for special GStreamer needs and can be
34 * found under the same name in the base class of #GstObject which is #GObject
35 * (e.g. g_object_ref() becomes gst_object_ref()).
37 * The most interesting difference between #GstObject and #GObject is the
38 * "floating" reference count. A #GObject is created with a reference count of
39 * 1, owned by the creator of the #GObject. (The owner of a reference is the
40 * code section that has the right to call gst_object_unref() in order to
41 * remove that reference.) A #GstObject is created with a reference count of 1
42 * also, but it isn't owned by anyone; Instead, the initial reference count
43 * of a #GstObject is "floating". The floating reference can be removed by
44 * anyone at any time, by calling gst_object_sink(). gst_object_sink() does
45 * nothing if an object is already sunk (has no floating reference).
47 * When you add a #GstElement to its parent container, the parent container will
51 * gst_object_ref (GST_OBJECT (child_element));
52 * gst_object_sink (GST_OBJECT (child_element));
55 * This means that the container now owns a reference to the child element
56 * (since it called gst_object_ref()), and the child element has no floating
59 * The purpose of the floating reference is to keep the child element alive
60 * until you add it to a parent container, which then manages the lifetime of
64 * element = gst_element_factory_make (factoryname, name);
65 * // element has one floating reference to keep it alive
66 * gst_bin_add (GST_BIN (bin), element);
67 * // element has one non-floating reference owned by the container
71 * Another effect of this is, that calling gst_object_unref() on a bin object,
72 * will also destoy all the #GstElement objects in it. The same is true for
73 * calling gst_bin_remove().
75 * Special care has to be taken for all methods that gst_object_sink() an object
76 * since if the caller of those functions had a floating reference to the object,
77 * the object reference is now invalid.
79 * In contrast to #GObject instances, #GstObject adds a name property. The functions
80 * gst_object_set_name() and gst_object_get_name() are used to set/get the name
83 * Last reviewed on 2005-11-09 (0.9.4)
86 #include "gst_private.h"
88 #include "gstobject.h"
89 #include "gstmarshal.h"
93 #ifndef GST_DISABLE_TRACE
95 static GstAllocTrace *_gst_object_trace;
98 #define DEBUG_REFCOUNT
100 /* Object signals and args */
105 #ifndef GST_DISABLE_LOADSAVE_REGISTRY
125 static GHashTable *object_name_counts = NULL;
127 G_LOCK_DEFINE_STATIC (object_name_mutex);
129 typedef struct _GstSignalObject GstSignalObject;
130 typedef struct _GstSignalObjectClass GstSignalObjectClass;
132 static GType gst_signal_object_get_type (void);
133 static void gst_signal_object_class_init (GstSignalObjectClass * klass);
134 static void gst_signal_object_init (GstSignalObject * object);
136 #ifndef GST_DISABLE_LOADSAVE_REGISTRY
137 static guint gst_signal_object_signals[SO_LAST_SIGNAL] = { 0 };
140 static void gst_object_class_init (GstObjectClass * klass);
141 static void gst_object_init (GTypeInstance * instance, gpointer g_class);
143 static void gst_object_set_property (GObject * object, guint prop_id,
144 const GValue * value, GParamSpec * pspec);
145 static void gst_object_get_property (GObject * object, guint prop_id,
146 GValue * value, GParamSpec * pspec);
147 static void gst_object_dispatch_properties_changed (GObject * object,
148 guint n_pspecs, GParamSpec ** pspecs);
150 static void gst_object_dispose (GObject * object);
151 static void gst_object_finalize (GObject * object);
153 static gboolean gst_object_set_name_default (GstObject * object,
154 const gchar * type_name);
156 #ifndef GST_DISABLE_LOADSAVE_REGISTRY
157 static void gst_object_real_restore_thyself (GstObject * object,
161 static GObjectClass *parent_class = NULL;
162 static guint gst_object_signals[LAST_SIGNAL] = { 0 };
165 gst_object_get_type (void)
167 static GType gst_object_type = 0;
169 if (G_UNLIKELY (gst_object_type == 0)) {
170 static const GTypeInfo object_info = {
171 sizeof (GstObjectClass),
174 (GClassInitFunc) gst_object_class_init,
184 g_type_register_static (G_TYPE_OBJECT, "GstObject", &object_info,
185 G_TYPE_FLAG_ABSTRACT);
187 return gst_object_type;
191 gst_object_class_init (GstObjectClass * klass)
193 GObjectClass *gobject_class;
195 gobject_class = G_OBJECT_CLASS (klass);
197 parent_class = g_type_class_peek_parent (klass);
199 #ifndef GST_DISABLE_TRACE
200 _gst_object_trace = gst_alloc_trace_register (g_type_name (GST_TYPE_OBJECT));
203 gobject_class->set_property = GST_DEBUG_FUNCPTR (gst_object_set_property);
204 gobject_class->get_property = GST_DEBUG_FUNCPTR (gst_object_get_property);
206 g_object_class_install_property (gobject_class, ARG_NAME,
207 g_param_spec_string ("name", "Name", "The name of the object",
208 NULL, G_PARAM_READWRITE | G_PARAM_CONSTRUCT));
211 * GstObject::parent-set:
212 * @gstobject: a #GstObject
213 * @parent: the new parent
215 * Emitted when the parent of an object is set.
217 gst_object_signals[PARENT_SET] =
218 g_signal_new ("parent-set", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
219 G_STRUCT_OFFSET (GstObjectClass, parent_set), NULL, NULL,
220 g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1, G_TYPE_OBJECT);
223 * GstObject::parent-unset:
224 * @gstobject: a #GstObject
225 * @parent: the old parent
227 * Emitted when the parent of an object is unset.
229 gst_object_signals[PARENT_UNSET] =
230 g_signal_new ("parent-unset", G_TYPE_FROM_CLASS (klass),
231 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstObjectClass, parent_unset), NULL,
232 NULL, g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1, G_TYPE_OBJECT);
234 #ifndef GST_DISABLE_LOADSAVE_REGISTRY
236 * GstObject::object-saved:
237 * @gstobject: a #GstObject
238 * @xml_node: the xmlNodePtr of the parent node
240 * Trigered whenever a new object is saved to XML. You can connect to this
241 * signal to insert custom XML tags into the core XML.
243 /* FIXME This should be the GType of xmlNodePtr instead of G_TYPE_POINTER
244 * (if libxml would use GObject)
246 gst_object_signals[OBJECT_SAVED] =
247 g_signal_new ("object-saved", G_TYPE_FROM_CLASS (klass),
248 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstObjectClass, object_saved), NULL,
249 NULL, g_cclosure_marshal_VOID__POINTER, G_TYPE_NONE, 1, G_TYPE_POINTER);
251 klass->restore_thyself = gst_object_real_restore_thyself;
255 * GstObject::deep-notify:
256 * @gstobject: a #GstObject
257 * @prop_object: the object that originated the signal
258 * @prop: the property that changed
260 * The deep notify signal is used to be notified of property changes. It is
261 * typically attached to the toplevel bin to receive notifications from all
262 * the elements contained in that bin.
264 gst_object_signals[DEEP_NOTIFY] =
265 g_signal_new ("deep-notify", G_TYPE_FROM_CLASS (klass),
266 G_SIGNAL_RUN_FIRST | G_SIGNAL_NO_RECURSE | G_SIGNAL_DETAILED |
267 G_SIGNAL_NO_HOOKS, G_STRUCT_OFFSET (GstObjectClass, deep_notify), NULL,
268 NULL, gst_marshal_VOID__OBJECT_PARAM, G_TYPE_NONE, 2, G_TYPE_OBJECT,
271 klass->path_string_separator = "/";
272 klass->lock = g_new0 (GStaticRecMutex, 1);
273 g_static_rec_mutex_init (klass->lock);
275 klass->signal_object = g_object_new (gst_signal_object_get_type (), NULL);
277 /* see the comments at gst_object_dispatch_properties_changed */
278 gobject_class->dispatch_properties_changed
279 = GST_DEBUG_FUNCPTR (gst_object_dispatch_properties_changed);
281 gobject_class->dispose = gst_object_dispose;
282 gobject_class->finalize = gst_object_finalize;
286 gst_object_init (GTypeInstance * instance, gpointer g_class)
288 GstObject *object = GST_OBJECT (instance);
290 object->lock = g_mutex_new ();
291 object->parent = NULL;
293 GST_CAT_LOG_OBJECT (GST_CAT_REFCOUNTING, object, "%p new", object);
295 #ifndef GST_DISABLE_TRACE
296 gst_alloc_trace_new (_gst_object_trace, object);
300 GST_OBJECT_FLAG_SET (object, GST_OBJECT_FLOATING);
305 * @object: a #GstObject to reference
307 * Increments the refence count on @object. This function
308 * does not take the lock on @object because it relies on
309 * atomic refcounting.
311 * This object returns the input parameter to ease writing
313 * result = gst_object_ref (object->parent);
315 * Returns: A pointer to @object
318 gst_object_ref (gpointer object)
320 g_return_val_if_fail (object != NULL, NULL);
322 #ifdef DEBUG_REFCOUNT
323 GST_CAT_LOG_OBJECT (GST_CAT_REFCOUNTING, object, "%p ref %d->%d",
325 ((GObject *) object)->ref_count, ((GObject *) object)->ref_count + 1);
327 g_object_ref (object);
334 * @object: a #GstObject to unreference
336 * Decrements the refence count on @object. If reference count hits
337 * zero, destroy @object. This function does not take the lock
338 * on @object as it relies on atomic refcounting.
340 * The unref method should never be called with the LOCK held since
341 * this might deadlock the dispose function.
344 gst_object_unref (gpointer object)
346 g_return_if_fail (object != NULL);
347 g_return_if_fail (((GObject *) object)->ref_count > 0);
349 #ifdef DEBUG_REFCOUNT
350 GST_CAT_LOG_OBJECT (GST_CAT_REFCOUNTING, object, "%p unref %d->%d",
352 ((GObject *) object)->ref_count, ((GObject *) object)->ref_count - 1);
354 g_object_unref (object);
359 * @object: a #GstObject to sink
361 * If @object was floating, the #GST_OBJECT_FLOATING flag is removed
362 * and @object is unreffed. When @object was not floating,
363 * this function does nothing.
365 * Any newly created object has a refcount of 1 and is floating.
366 * This function should be used when creating a new object to
367 * symbolically 'take ownership' of @object. This done by first doing a
368 * gst_object_ref() to keep a reference to @object and then gst_object_sink()
369 * to remove and unref any floating references to @object.
370 * Use gst_object_set_parent() to have this done for you.
372 * MT safe. This function grabs and releases @object lock.
375 gst_object_sink (gpointer object)
377 g_return_if_fail (GST_IS_OBJECT (object));
379 GST_CAT_LOG_OBJECT (GST_CAT_REFCOUNTING, object, "sink");
381 GST_OBJECT_LOCK (object);
382 if (G_LIKELY (GST_OBJECT_IS_FLOATING (object))) {
383 GST_OBJECT_FLAG_UNSET (object, GST_OBJECT_FLOATING);
384 GST_OBJECT_UNLOCK (object);
385 gst_object_unref (object);
387 GST_OBJECT_UNLOCK (object);
392 * gst_object_replace:
393 * @oldobj: pointer to a place of a #GstObject to replace
394 * @newobj: a new #GstObject
396 * Unrefs the #GstObject pointed to by @oldobj, refs @newobj and
397 * puts @newobj in *@oldobj. Be carefull when calling this
398 * function, it does not take any locks. You might want to lock
399 * the object owning @oldobj pointer before calling this
402 * Make sure not to LOCK @oldobj because it might be unreffed
403 * which could cause a deadlock when it is disposed.
406 gst_object_replace (GstObject ** oldobj, GstObject * newobj)
408 g_return_if_fail (oldobj != NULL);
409 g_return_if_fail (*oldobj == NULL || GST_IS_OBJECT (*oldobj));
410 g_return_if_fail (newobj == NULL || GST_IS_OBJECT (newobj));
412 #ifdef DEBUG_REFCOUNT
413 GST_CAT_LOG (GST_CAT_REFCOUNTING, "replace %s (%d) with %s (%d)",
414 *oldobj ? GST_STR_NULL (GST_OBJECT_NAME (*oldobj)) : "(NONE)",
415 *oldobj ? G_OBJECT (*oldobj)->ref_count : 0,
416 newobj ? GST_STR_NULL (GST_OBJECT_NAME (newobj)) : "(NONE)",
417 newobj ? G_OBJECT (newobj)->ref_count : 0);
420 if (G_LIKELY (*oldobj != newobj)) {
422 gst_object_ref (newobj);
424 gst_object_unref (*oldobj);
430 /* dispose is called when the object has to release all links
431 * to other objects */
433 gst_object_dispose (GObject * object)
437 GST_CAT_LOG_OBJECT (GST_CAT_REFCOUNTING, object, "dispose");
439 GST_OBJECT_LOCK (object);
440 if ((parent = GST_OBJECT_PARENT (object)))
442 GST_OBJECT_PARENT (object) = NULL;
443 GST_OBJECT_UNLOCK (object);
445 parent_class->dispose (object);
452 g_critical ("\nTrying to dispose object \"%s\", but it still has a "
453 "parent \"%s\".\nYou need to let the parent manage the "
454 "object instead of unreffing the object directly.\n",
455 GST_OBJECT_NAME (object), GST_OBJECT_NAME (parent));
456 GST_OBJECT_UNLOCK (object);
457 /* ref the object again to revive it in this error case */
458 object = gst_object_ref (object);
463 /* finalize is called when the object has to free its resources */
465 gst_object_finalize (GObject * object)
467 GstObject *gstobject = GST_OBJECT (object);
469 GST_CAT_LOG_OBJECT (GST_CAT_REFCOUNTING, object, "finalize");
471 g_signal_handlers_destroy (object);
473 g_free (gstobject->name);
474 g_mutex_free (gstobject->lock);
476 #ifndef GST_DISABLE_TRACE
477 gst_alloc_trace_free (_gst_object_trace, object);
480 parent_class->finalize (object);
483 /* Changing a GObject property of a GstObject will result in "deep_notify"
484 * signals being emitted by the object itself, as well as in each parent
485 * object. This is so that an application can connect a listener to the
486 * top-level bin to catch property-change notifications for all contained
489 * This function is not MT safe in glib < 2.8 so we need to lock it with a
490 * classwide mutex in that case.
495 gst_object_dispatch_properties_changed (GObject * object,
496 guint n_pspecs, GParamSpec ** pspecs)
498 GstObject *gst_object, *parent, *old_parent;
500 gchar *name, *debug_name;
501 GstObjectClass *klass;
503 /* we fail when this is not a GstObject */
504 g_return_if_fail (GST_IS_OBJECT (object));
506 klass = GST_OBJECT_GET_CLASS (object);
508 /* do the standard dispatching */
509 G_OBJECT_CLASS (parent_class)->dispatch_properties_changed (object, n_pspecs,
512 gst_object = GST_OBJECT_CAST (object);
513 name = gst_object_get_name (gst_object);
514 debug_name = GST_STR_NULL (name);
516 /* now let the parent dispatch those, too */
517 parent = gst_object_get_parent (gst_object);
519 /* for debugging ... */
520 gchar *parent_name = gst_object_get_name (parent);
522 #ifndef GST_DISABLE_GST_DEBUG
523 gchar *debug_parent_name = GST_STR_NULL (parent_name);
526 /* need own category? */
527 for (i = 0; i < n_pspecs; i++) {
528 GST_CAT_LOG (GST_CAT_EVENT, "deep notification from %s to %s (%s)",
529 debug_name, debug_parent_name, pspecs[i]->name);
531 g_signal_emit (parent, gst_object_signals[DEEP_NOTIFY],
532 g_quark_from_string (pspecs[i]->name), GST_OBJECT_CAST (object),
535 g_free (parent_name);
538 parent = gst_object_get_parent (old_parent);
539 gst_object_unref (old_parent);
545 * gst_object_default_deep_notify:
546 * @object: the #GObject that signalled the notify.
547 * @orig: a #GstObject that initiated the notify.
548 * @pspec: a #GParamSpec of the property.
549 * @excluded_props: a set of user-specified properties to exclude or
550 * NULL to show all changes.
552 * A default deep_notify signal callback for an object. The user data
553 * should contain a pointer to an array of strings that should be excluded
554 * from the notify. The default handler will print the new value of the property
557 * MT safe. This function grabs and releases @object's LOCK for getting its
561 gst_object_default_deep_notify (GObject * object, GstObject * orig,
562 GParamSpec * pspec, gchar ** excluded_props)
564 GValue value = { 0, }; /* the important thing is that value.type = 0 */
568 if (pspec->flags & G_PARAM_READABLE) {
569 /* let's not print these out for excluded properties... */
570 while (excluded_props != NULL && *excluded_props != NULL) {
571 if (strcmp (pspec->name, *excluded_props) == 0)
575 g_value_init (&value, G_PARAM_SPEC_VALUE_TYPE (pspec));
576 g_object_get_property (G_OBJECT (orig), pspec->name, &value);
578 if (G_IS_PARAM_SPEC_ENUM (pspec)) {
579 GEnumValue *enum_value;
582 g_enum_get_value (G_ENUM_CLASS (g_type_class_ref (pspec->value_type)),
583 g_value_get_enum (&value));
585 str = g_strdup_printf ("%s (%d)", enum_value->value_nick,
588 str = g_strdup_value_contents (&value);
590 name = gst_object_get_path_string (orig);
591 g_print ("%s: %s = %s\n", name, pspec->name, str);
594 g_value_unset (&value);
596 name = gst_object_get_path_string (orig);
597 g_warning ("Parameter %s not readable in %s.", pspec->name, name);
603 gst_object_set_name_default (GstObject * object, const gchar * type_name)
609 /* to ensure guaranteed uniqueness across threads, only one thread
610 * may ever assign a name */
611 G_LOCK (object_name_mutex);
613 if (!object_name_counts) {
614 object_name_counts = g_hash_table_new_full (g_str_hash, g_str_equal,
618 count = GPOINTER_TO_INT (g_hash_table_lookup (object_name_counts, type_name));
619 g_hash_table_insert (object_name_counts, g_strdup (type_name),
620 GINT_TO_POINTER (count + 1));
622 G_UNLOCK (object_name_mutex);
624 /* GstFooSink -> foosinkN */
625 if (strncmp (type_name, "Gst", 3) == 0)
627 tmp = g_strdup_printf ("%s%d", type_name, count);
628 name = g_ascii_strdown (tmp, strlen (tmp));
631 result = gst_object_set_name (object, name);
638 * gst_object_set_name:
639 * @object: a #GstObject
640 * @name: new name of object
642 * Sets the name of @object, or gives @object a guaranteed unique
643 * name (if @name is NULL).
644 * This function makes a copy of the provided name, so the caller
645 * retains ownership of the name it sent.
647 * Returns: TRUE if the name could be set. Since Objects that have
648 * a parent cannot be renamed, this function returns FALSE in those
651 * MT safe. This function grabs and releases @object's LOCK.
654 gst_object_set_name (GstObject * object, const gchar * name)
658 g_return_val_if_fail (GST_IS_OBJECT (object), FALSE);
660 GST_OBJECT_LOCK (object);
662 /* parented objects cannot be renamed */
663 if (G_UNLIKELY (object->parent != NULL))
667 g_free (object->name);
668 object->name = g_strdup (name);
669 GST_OBJECT_UNLOCK (object);
672 GST_OBJECT_UNLOCK (object);
673 result = gst_object_set_name_default (object, G_OBJECT_TYPE_NAME (object));
680 GST_OBJECT_UNLOCK (object);
686 * gst_object_get_name:
687 * @object: a #GstObject
689 * Returns a copy of the name of @object.
690 * Caller should g_free() the return value after usage.
691 * For a nameless object, this returns NULL, which you can safely g_free()
694 * Returns: the name of @object. g_free() after usage.
696 * MT safe. This function grabs and releases @object's LOCK.
699 gst_object_get_name (GstObject * object)
701 gchar *result = NULL;
703 g_return_val_if_fail (GST_IS_OBJECT (object), NULL);
705 GST_OBJECT_LOCK (object);
706 result = g_strdup (object->name);
707 GST_OBJECT_UNLOCK (object);
713 * gst_object_set_name_prefix:
714 * @object: a #GstObject
715 * @name_prefix: new name prefix of @object
717 * Sets the name prefix of @object to @name_prefix.
718 * This function makes a copy of the provided name prefix, so the caller
719 * retains ownership of the name prefix it sent.
721 * MT safe. This function grabs and releases @object's LOCK.
724 gst_object_set_name_prefix (GstObject * object, const gchar * name_prefix)
726 g_return_if_fail (GST_IS_OBJECT (object));
728 GST_OBJECT_LOCK (object);
729 g_free (object->name_prefix);
730 object->name_prefix = g_strdup (name_prefix); /* NULL gives NULL */
731 GST_OBJECT_UNLOCK (object);
735 * gst_object_get_name_prefix:
736 * @object: a #GstObject
738 * Returns a copy of the name prefix of @object.
739 * Caller should g_free() the return value after usage.
740 * For a prefixless object, this returns NULL, which you can safely g_free()
743 * Returns: the name prefix of @object. g_free() after usage.
745 * MT safe. This function grabs and releases @object's LOCK.
748 gst_object_get_name_prefix (GstObject * object)
750 gchar *result = NULL;
752 g_return_val_if_fail (GST_IS_OBJECT (object), NULL);
754 GST_OBJECT_LOCK (object);
755 result = g_strdup (object->name_prefix);
756 GST_OBJECT_UNLOCK (object);
762 * gst_object_set_parent:
763 * @object: a #GstObject
764 * @parent: new parent of object
766 * Sets the parent of @object to @parent. The object's reference count will
767 * be incremented, and any floating reference will be removed (see gst_object_sink()).
769 * This function causes the parent-set signal to be emitted when the parent
770 * was successfully set.
772 * Returns: TRUE if @parent could be set or FALSE when @object
773 * already had a parent or @object and @parent are the same.
775 * MT safe. Grabs and releases @object's LOCK.
778 gst_object_set_parent (GstObject * object, GstObject * parent)
780 g_return_val_if_fail (GST_IS_OBJECT (object), FALSE);
781 g_return_val_if_fail (GST_IS_OBJECT (parent), FALSE);
782 g_return_val_if_fail (object != parent, FALSE);
784 GST_CAT_DEBUG_OBJECT (GST_CAT_REFCOUNTING, object,
785 "set parent (ref and sink)");
787 GST_OBJECT_LOCK (object);
788 if (G_UNLIKELY (object->parent != NULL))
791 /* sink object, we don't call our own function because we don't
792 * need to release/acquire the lock needlessly or touch the refcount
793 * in the floating case. */
794 object->parent = parent;
795 if (G_LIKELY (GST_OBJECT_IS_FLOATING (object))) {
796 GST_CAT_LOG_OBJECT (GST_CAT_REFCOUNTING, object, "unsetting floating flag");
797 GST_OBJECT_FLAG_UNSET (object, GST_OBJECT_FLOATING);
798 GST_OBJECT_UNLOCK (object);
800 GST_OBJECT_UNLOCK (object);
801 gst_object_ref (object);
804 g_signal_emit (G_OBJECT (object), gst_object_signals[PARENT_SET], 0, parent);
811 GST_OBJECT_UNLOCK (object);
817 * gst_object_get_parent:
818 * @object: a #GstObject
820 * Returns the parent of @object. This function increases the refcount
821 * of the parent object so you should gst_object_unref() it after usage.
823 * Returns: parent of @object, this can be NULL if @object has no
824 * parent. unref after usage.
826 * MT safe. Grabs and releases @object's LOCK.
829 gst_object_get_parent (GstObject * object)
831 GstObject *result = NULL;
833 g_return_val_if_fail (GST_IS_OBJECT (object), NULL);
835 GST_OBJECT_LOCK (object);
836 result = object->parent;
837 if (G_LIKELY (result))
838 gst_object_ref (result);
839 GST_OBJECT_UNLOCK (object);
845 * gst_object_unparent:
846 * @object: a #GstObject to unparent
848 * Clear the parent of @object, removing the associated reference.
849 * This function decreases the refcount of @object.
851 * MT safe. Grabs and releases @object's lock.
854 gst_object_unparent (GstObject * object)
858 g_return_if_fail (GST_IS_OBJECT (object));
860 GST_OBJECT_LOCK (object);
861 parent = object->parent;
863 if (G_LIKELY (parent != NULL)) {
864 GST_CAT_LOG_OBJECT (GST_CAT_REFCOUNTING, object, "unparent");
865 object->parent = NULL;
866 GST_OBJECT_UNLOCK (object);
868 g_signal_emit (G_OBJECT (object), gst_object_signals[PARENT_UNSET], 0,
871 gst_object_unref (object);
873 GST_OBJECT_UNLOCK (object);
878 * gst_object_has_ancestor:
879 * @object: a #GstObject to check
880 * @ancestor: a #GstObject to check as ancestor
882 * Check if @object has an ancestor @ancestor somewhere up in
885 * Returns: TRUE if @ancestor is an ancestor of @object.
887 * MT safe. Grabs and releases @object's locks.
890 gst_object_has_ancestor (GstObject * object, GstObject * ancestor)
893 gboolean result = FALSE;
898 if (object == ancestor)
901 parent = gst_object_get_parent (object);
902 result = gst_object_has_ancestor (parent, ancestor);
904 gst_object_unref (parent);
910 * gst_object_check_uniqueness:
911 * @list: a list of #GstObject to check through
912 * @name: the name to search for
914 * Checks to see if there is any object named @name in @list. This function
915 * does not do any locking of any kind. You might want to protect the
916 * provided list with the lock of the owner of the list. This function
917 * will lock each #GstObject in the list to compare the name, so be
918 * carefull when passing a list with a locked object.
920 * Returns: TRUE if a #GstObject named @name does not appear in @list,
923 * MT safe. Grabs and releases the LOCK of each object in the list.
926 gst_object_check_uniqueness (GList * list, const gchar * name)
928 gboolean result = TRUE;
930 g_return_val_if_fail (name != NULL, FALSE);
932 for (; list; list = g_list_next (list)) {
936 child = GST_OBJECT (list->data);
938 GST_OBJECT_LOCK (child);
939 eq = strcmp (GST_OBJECT_NAME (child), name) == 0;
940 GST_OBJECT_UNLOCK (child);
942 if (G_UNLIKELY (eq)) {
951 #ifndef GST_DISABLE_LOADSAVE_REGISTRY
953 * gst_object_save_thyself:
954 * @object: a #GstObject to save
955 * @parent: The parent XML node to save @object into
957 * Saves @object into the parent XML node.
959 * Returns: the new xmlNodePtr with the saved object
962 gst_object_save_thyself (GstObject * object, xmlNodePtr parent)
964 GstObjectClass *oclass;
966 g_return_val_if_fail (GST_IS_OBJECT (object), parent);
967 g_return_val_if_fail (parent != NULL, parent);
969 oclass = GST_OBJECT_GET_CLASS (object);
971 if (oclass->save_thyself)
972 oclass->save_thyself (object, parent);
974 g_signal_emit (G_OBJECT (object), gst_object_signals[OBJECT_SAVED], 0,
981 * gst_object_restore_thyself:
982 * @object: a #GstObject to load into
983 * @self: The XML node to load @object from
985 * Restores @object with the data from the parent XML node.
988 gst_object_restore_thyself (GstObject * object, xmlNodePtr self)
990 GstObjectClass *oclass;
992 g_return_if_fail (GST_IS_OBJECT (object));
993 g_return_if_fail (self != NULL);
995 oclass = GST_OBJECT_GET_CLASS (object);
997 if (oclass->restore_thyself)
998 oclass->restore_thyself (object, self);
1002 gst_object_real_restore_thyself (GstObject * object, xmlNodePtr self)
1004 g_return_if_fail (GST_IS_OBJECT (object));
1005 g_return_if_fail (self != NULL);
1007 gst_class_signal_emit_by_name (object, "object_loaded", self);
1009 #endif /* GST_DISABLE_LOADSAVE_REGISTRY */
1012 gst_object_set_property (GObject * object, guint prop_id,
1013 const GValue * value, GParamSpec * pspec)
1015 GstObject *gstobject;
1017 gstobject = GST_OBJECT (object);
1021 gst_object_set_name (gstobject, g_value_get_string (value));
1024 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1030 gst_object_get_property (GObject * object, guint prop_id,
1031 GValue * value, GParamSpec * pspec)
1033 GstObject *gstobject;
1035 gstobject = GST_OBJECT (object);
1039 g_value_take_string (value, gst_object_get_name (gstobject));
1042 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1048 * gst_object_get_path_string:
1049 * @object: a #GstObject
1051 * Generates a string describing the path of @object in
1052 * the object hierarchy. Only useful (or used) for debugging.
1054 * Returns: a string describing the path of @object. You must
1055 * g_free() the string after usage.
1057 * MT safe. Grabs and releases the #GstObject's LOCK for all objects
1061 gst_object_get_path_string (GstObject * object)
1066 gchar *prevpath, *path;
1070 /* ref object before adding to list */
1071 gst_object_ref (object);
1072 parentage = g_slist_prepend (NULL, object);
1074 path = g_strdup ("");
1076 /* first walk the object hierarchy to build a list of the parents,
1077 * be carefull here with refcounting. */
1079 if (GST_IS_OBJECT (object)) {
1080 parent = gst_object_get_parent (object);
1081 /* add parents to list, refcount remains increased while
1082 * we handle the object */
1084 parentage = g_slist_prepend (parentage, parent);
1089 } while (object != NULL);
1091 /* then walk the parent list and print them out. we need to
1092 * decrease the refcounting on each element after we handled
1094 for (parents = parentage; parents; parents = g_slist_next (parents)) {
1095 if (GST_IS_OBJECT (parents->data)) {
1096 GstObject *item = GST_OBJECT_CAST (parents->data);
1097 GstObjectClass *oclass = GST_OBJECT_GET_CLASS (item);
1099 component = gst_object_get_name (item);
1100 separator = oclass->path_string_separator;
1102 gst_object_unref (item);
1104 component = g_strdup_printf ("%p", parents->data);
1109 path = g_strjoin (separator, prevpath, component, NULL);
1114 g_slist_free (parentage);
1120 struct _GstSignalObject
1125 struct _GstSignalObjectClass
1127 GObjectClass parent_class;
1130 #ifndef GST_DISABLE_LOADSAVE_REGISTRY
1131 void (*object_loaded) (GstSignalObject * object, GstObject * new,
1133 #endif /* GST_DISABLE_LOADSAVE_REGISTRY */
1137 gst_signal_object_get_type (void)
1139 static GType signal_object_type = 0;
1141 if (!signal_object_type) {
1142 static const GTypeInfo signal_object_info = {
1143 sizeof (GstSignalObjectClass),
1146 (GClassInitFunc) gst_signal_object_class_init,
1149 sizeof (GstSignalObject),
1151 (GInstanceInitFunc) gst_signal_object_init,
1155 signal_object_type =
1156 g_type_register_static (G_TYPE_OBJECT, "GstSignalObject",
1157 &signal_object_info, 0);
1159 return signal_object_type;
1163 gst_signal_object_class_init (GstSignalObjectClass * klass)
1165 GObjectClass *gobject_class;
1167 gobject_class = (GObjectClass *) klass;
1169 parent_class = g_type_class_peek_parent (klass);
1171 #ifndef GST_DISABLE_LOADSAVE_REGISTRY
1172 gst_signal_object_signals[SO_OBJECT_LOADED] =
1173 g_signal_new ("object-loaded", G_TYPE_FROM_CLASS (klass),
1174 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstSignalObjectClass, object_loaded),
1175 NULL, NULL, gst_marshal_VOID__OBJECT_POINTER, G_TYPE_NONE, 2,
1176 G_TYPE_OBJECT, G_TYPE_POINTER);
1181 gst_signal_object_init (GstSignalObject * object)
1186 * gst_class_signal_connect
1187 * @klass: a #GstObjectClass to attach the signal to
1188 * @name: the name of the signal to attach to
1189 * @func: the signal function
1190 * @func_data: a pointer to user data
1192 * Connect to a class signal.
1194 * Returns: the signal id.
1197 gst_class_signal_connect (GstObjectClass * klass,
1198 const gchar * name, gpointer func, gpointer func_data)
1200 return g_signal_connect (klass->signal_object, name, func, func_data);
1203 #ifndef GST_DISABLE_LOADSAVE_REGISTRY
1205 * gst_class_signal_emit_by_name:
1206 * @object: a #GstObject that emits the signal
1207 * @name: the name of the signal to emit
1208 * @self: data for the signal
1210 * emits the named class signal.
1213 gst_class_signal_emit_by_name (GstObject * object,
1214 const gchar * name, xmlNodePtr self)
1216 GstObjectClass *oclass;
1218 oclass = GST_OBJECT_GET_CLASS (object);
1220 g_signal_emit_by_name (oclass->signal_object, name, object, self);
1223 #endif /* GST_DISABLE_LOADSAVE_REGISTRY */