2000-12-28 22:12:02 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
* 2000 Wim Taymans <wtay@chello.be>
|
2005-03-07 18:27:42 +00:00
|
|
|
* 2005 Wim Taymans <wim@fluendo.com>
|
2000-12-28 22:12:02 +00:00
|
|
|
*
|
|
|
|
* gstobject.c: Fundamental class used for all of GStreamer
|
2000-01-30 09:03:00 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
2005-10-15 16:01:57 +00:00
|
|
|
|
2005-09-23 14:31:21 +00:00
|
|
|
/**
|
|
|
|
* SECTION:gstobject
|
|
|
|
* @short_description: Base class for the GStreamer object hierarchy
|
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* #GstObject provides a root for the object hierarchy tree filed in by the
|
|
|
|
* GStreamer library. It is currently a thin wrapper on top of
|
2005-09-23 14:31:21 +00:00
|
|
|
* #GObject. It is an abstract class that is not very usable on its own.
|
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* #GstObject gives us basic refcounting, parenting functionality and locking.
|
|
|
|
* Most of the function are just extended for special GStreamer needs and can be
|
|
|
|
* found under the same name in the base class of #GstObject which is #GObject
|
2005-09-23 14:31:21 +00:00
|
|
|
* (e.g. g_object_ref() becomes gst_object_ref()).
|
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* The most interesting difference between #GstObject and #GObject is the
|
|
|
|
* "floating" reference count. A #GObject is created with a reference count of
|
|
|
|
* 1, owned by the creator of the #GObject. (The owner of a reference is the
|
2005-10-15 16:01:57 +00:00
|
|
|
* code section that has the right to call gst_object_unref() in order to
|
2005-11-09 17:32:10 +00:00
|
|
|
* remove that reference.) A #GstObject is created with a reference count of 1
|
|
|
|
* also, but it isn't owned by anyone; Instead, the initial reference count
|
|
|
|
* of a #GstObject is "floating". The floating reference can be removed by
|
2005-10-15 16:01:57 +00:00
|
|
|
* anyone at any time, by calling gst_object_sink(). gst_object_sink() does
|
|
|
|
* nothing if an object is already sunk (has no floating reference).
|
2005-10-15 15:30:24 +00:00
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* When you add a #GstElement to its parent container, the parent container will
|
2005-10-15 16:01:57 +00:00
|
|
|
* do this:
|
2005-09-23 14:31:21 +00:00
|
|
|
* <informalexample>
|
|
|
|
* <programlisting>
|
|
|
|
* gst_object_ref (GST_OBJECT (child_element));
|
|
|
|
* gst_object_sink (GST_OBJECT (child_element));
|
|
|
|
* </programlisting>
|
|
|
|
* </informalexample>
|
2005-10-15 16:01:57 +00:00
|
|
|
* This means that the container now owns a reference to the child element
|
|
|
|
* (since it called gst_object_ref()), and the child element has no floating
|
|
|
|
* reference.
|
2005-09-23 14:31:21 +00:00
|
|
|
*
|
2005-10-15 16:01:57 +00:00
|
|
|
* The purpose of the floating reference is to keep the child element alive
|
2005-11-09 17:32:10 +00:00
|
|
|
* until you add it to a parent container, which then manages the lifetime of
|
|
|
|
* the object itself:
|
2005-09-23 14:31:21 +00:00
|
|
|
* <informalexample>
|
|
|
|
* <programlisting>
|
|
|
|
* element = gst_element_factory_make (factoryname, name);
|
|
|
|
* // element has one floating reference to keep it alive
|
|
|
|
* gst_bin_add (GST_BIN (bin), element);
|
|
|
|
* // element has one non-floating reference owned by the container
|
|
|
|
* </programlisting>
|
|
|
|
* </informalexample>
|
|
|
|
*
|
2005-10-15 16:01:57 +00:00
|
|
|
* Another effect of this is, that calling gst_object_unref() on a bin object,
|
2005-11-09 17:32:10 +00:00
|
|
|
* will also destoy all the #GstElement objects in it. The same is true for
|
2005-10-15 16:01:57 +00:00
|
|
|
* calling gst_bin_remove().
|
2005-10-15 15:30:24 +00:00
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* Special care has to be taken for all methods that gst_object_sink() an object
|
|
|
|
* since if the caller of those functions had a floating reference to the object,
|
|
|
|
* the object reference is now invalid.
|
|
|
|
*
|
|
|
|
* In contrast to #GObject instances, #GstObject adds a name property. The functions
|
2005-09-23 14:31:21 +00:00
|
|
|
* gst_object_set_name() and gst_object_get_name() are used to set/get the name
|
|
|
|
* of the object.
|
2005-11-09 17:32:10 +00:00
|
|
|
*
|
|
|
|
* Last reviewed on 2005-11-09 (0.9.4)
|
2005-09-23 14:31:21 +00:00
|
|
|
*/
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2000-12-28 22:12:02 +00:00
|
|
|
#include "gst_private.h"
|
|
|
|
|
2000-12-15 01:57:34 +00:00
|
|
|
#include "gstobject.h"
|
2004-02-03 03:31:26 +00:00
|
|
|
#include "gstmarshal.h"
|
2003-06-29 14:05:49 +00:00
|
|
|
#include "gstinfo.h"
|
2005-04-24 22:49:45 +00:00
|
|
|
#include "gstutils.h"
|
2003-06-29 14:05:49 +00:00
|
|
|
|
2003-05-10 12:42:02 +00:00
|
|
|
#ifndef GST_DISABLE_TRACE
|
|
|
|
#include "gsttrace.h"
|
gst/: Avoid excessive typechecking in macros.
Original commit message from CVS:
* gst/base/gstbasesink.c: (gst_base_sink_preroll_queue_empty),
(gst_base_sink_do_sync), (gst_base_sink_handle_event),
(gst_base_sink_chain), (gst_base_sink_change_state):
* gst/base/gstbasesink.h:
* gst/base/gstbasesrc.h:
* gst/gstelement.h:
* gst/gstevent.h:
Avoid excessive typechecking in macros.
* gst/gstminiobject.c: (gst_mini_object_get_type),
(gst_mini_object_init), (gst_mini_object_new),
(gst_mini_object_free):
* gst/gstobject.c: (gst_object_class_init), (gst_object_init),
(gst_object_finalize):
Remove cruft code, optimize alloc_trace.
2005-11-08 11:13:07 +00:00
|
|
|
static GstAllocTrace *_gst_object_trace;
|
2003-05-10 12:42:02 +00:00
|
|
|
#endif
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
#define DEBUG_REFCOUNT
|
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
/* Object signals and args */
|
2009-03-10 19:03:44 +00:00
|
|
|
/* FIXME-0.11: have a read-only parent property instead of the two signals
|
|
|
|
* then we get notify::parent for free */
|
2004-03-13 15:27:01 +00:00
|
|
|
enum
|
|
|
|
{
|
2000-01-30 09:03:00 +00:00
|
|
|
PARENT_SET,
|
2002-07-24 20:42:13 +00:00
|
|
|
PARENT_UNSET,
|
2007-04-20 08:39:35 +00:00
|
|
|
#ifndef GST_DISABLE_LOADSAVE
|
2001-01-30 23:53:04 +00:00
|
|
|
OBJECT_SAVED,
|
2001-06-24 21:18:28 +00:00
|
|
|
#endif
|
2002-11-02 13:19:30 +00:00
|
|
|
DEEP_NOTIFY,
|
2000-01-30 09:03:00 +00:00
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
enum
|
|
|
|
{
|
2000-01-30 09:03:00 +00:00
|
|
|
ARG_0,
|
2004-01-30 20:48:13 +00:00
|
|
|
ARG_NAME
|
2004-03-13 15:27:01 +00:00
|
|
|
/* FILL ME */
|
2000-01-30 09:03:00 +00:00
|
|
|
};
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
enum
|
|
|
|
{
|
2001-01-30 23:53:04 +00:00
|
|
|
SO_OBJECT_LOADED,
|
|
|
|
SO_LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
2006-07-07 17:16:26 +00:00
|
|
|
/* maps type name quark => count */
|
|
|
|
static GData *object_name_counts = NULL;
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2002-02-20 21:31:16 +00:00
|
|
|
G_LOCK_DEFINE_STATIC (object_name_mutex);
|
2001-10-17 10:21:27 +00:00
|
|
|
|
2001-01-30 23:53:04 +00:00
|
|
|
typedef struct _GstSignalObject GstSignalObject;
|
|
|
|
typedef struct _GstSignalObjectClass GstSignalObjectClass;
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
static GType gst_signal_object_get_type (void);
|
|
|
|
static void gst_signal_object_class_init (GstSignalObjectClass * klass);
|
|
|
|
static void gst_signal_object_init (GstSignalObject * object);
|
2001-01-30 23:53:04 +00:00
|
|
|
|
2007-04-20 08:39:35 +00:00
|
|
|
#ifndef GST_DISABLE_LOADSAVE
|
2001-01-30 23:53:04 +00:00
|
|
|
static guint gst_signal_object_signals[SO_LAST_SIGNAL] = { 0 };
|
2003-02-10 20:37:21 +00:00
|
|
|
#endif
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
static void gst_object_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec);
|
|
|
|
static void gst_object_get_property (GObject * object, guint prop_id,
|
|
|
|
GValue * value, GParamSpec * pspec);
|
|
|
|
static void gst_object_dispatch_properties_changed (GObject * object,
|
|
|
|
guint n_pspecs, GParamSpec ** pspecs);
|
2001-10-24 19:11:11 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
static void gst_object_dispose (GObject * object);
|
|
|
|
static void gst_object_finalize (GObject * object);
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2006-07-07 17:16:26 +00:00
|
|
|
static gboolean gst_object_set_name_default (GstObject * object);
|
2005-02-19 13:02:45 +00:00
|
|
|
|
2007-04-20 08:39:35 +00:00
|
|
|
#ifndef GST_DISABLE_LOADSAVE
|
2004-03-13 15:27:01 +00:00
|
|
|
static void gst_object_real_restore_thyself (GstObject * object,
|
|
|
|
xmlNodePtr self);
|
2002-01-11 15:49:47 +00:00
|
|
|
#endif
|
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
static GObjectClass *parent_class = NULL;
|
2000-01-30 09:03:00 +00:00
|
|
|
static guint gst_object_signals[LAST_SIGNAL] = { 0 };
|
|
|
|
|
2009-04-04 08:20:36 +00:00
|
|
|
G_DEFINE_ABSTRACT_TYPE (GstObject, gst_object, G_TYPE_OBJECT);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-01-29 00:06:02 +00:00
|
|
|
static void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_object_class_init (GstObjectClass * klass)
|
2001-01-29 00:06:02 +00:00
|
|
|
{
|
2009-04-04 08:20:36 +00:00
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2006-04-08 20:57:31 +00:00
|
|
|
parent_class = g_type_class_peek_parent (klass);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
gst/: Avoid excessive typechecking in macros.
Original commit message from CVS:
* gst/base/gstbasesink.c: (gst_base_sink_preroll_queue_empty),
(gst_base_sink_do_sync), (gst_base_sink_handle_event),
(gst_base_sink_chain), (gst_base_sink_change_state):
* gst/base/gstbasesink.h:
* gst/base/gstbasesrc.h:
* gst/gstelement.h:
* gst/gstevent.h:
Avoid excessive typechecking in macros.
* gst/gstminiobject.c: (gst_mini_object_get_type),
(gst_mini_object_init), (gst_mini_object_new),
(gst_mini_object_free):
* gst/gstobject.c: (gst_object_class_init), (gst_object_init),
(gst_object_finalize):
Remove cruft code, optimize alloc_trace.
2005-11-08 11:13:07 +00:00
|
|
|
#ifndef GST_DISABLE_TRACE
|
|
|
|
_gst_object_trace = gst_alloc_trace_register (g_type_name (GST_TYPE_OBJECT));
|
|
|
|
#endif
|
|
|
|
|
2001-10-25 21:24:09 +00:00
|
|
|
gobject_class->set_property = GST_DEBUG_FUNCPTR (gst_object_set_property);
|
|
|
|
gobject_class->get_property = GST_DEBUG_FUNCPTR (gst_object_get_property);
|
2002-04-12 09:38:47 +00:00
|
|
|
|
2006-05-11 18:10:34 +00:00
|
|
|
g_object_class_install_property (gobject_class, ARG_NAME,
|
2004-03-13 15:27:01 +00:00
|
|
|
g_param_spec_string ("name", "Name", "The name of the object",
|
2008-03-22 14:56:17 +00:00
|
|
|
NULL,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS));
|
2001-10-24 19:11:11 +00:00
|
|
|
|
2005-09-23 14:31:21 +00:00
|
|
|
/**
|
|
|
|
* GstObject::parent-set:
|
2005-11-09 17:32:10 +00:00
|
|
|
* @gstobject: a #GstObject
|
2005-09-23 14:31:21 +00:00
|
|
|
* @parent: the new parent
|
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* Emitted when the parent of an object is set.
|
2005-09-23 14:31:21 +00:00
|
|
|
*/
|
2000-01-30 09:03:00 +00:00
|
|
|
gst_object_signals[PARENT_SET] =
|
2004-03-13 15:27:01 +00:00
|
|
|
g_signal_new ("parent-set", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
|
|
|
|
G_STRUCT_OFFSET (GstObjectClass, parent_set), NULL, NULL,
|
2007-11-04 10:13:33 +00:00
|
|
|
g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1, GST_TYPE_OBJECT);
|
2005-09-23 14:31:21 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GstObject::parent-unset:
|
2005-11-09 17:32:10 +00:00
|
|
|
* @gstobject: a #GstObject
|
2005-09-23 14:31:21 +00:00
|
|
|
* @parent: the old parent
|
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* Emitted when the parent of an object is unset.
|
2005-09-23 14:31:21 +00:00
|
|
|
*/
|
2002-07-24 20:42:13 +00:00
|
|
|
gst_object_signals[PARENT_UNSET] =
|
2004-03-13 15:27:01 +00:00
|
|
|
g_signal_new ("parent-unset", G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstObjectClass, parent_unset), NULL,
|
2007-11-04 10:13:33 +00:00
|
|
|
NULL, g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1, GST_TYPE_OBJECT);
|
2005-09-23 14:31:21 +00:00
|
|
|
|
2007-04-20 08:39:35 +00:00
|
|
|
#ifndef GST_DISABLE_LOADSAVE
|
2005-09-23 14:31:21 +00:00
|
|
|
/**
|
|
|
|
* GstObject::object-saved:
|
2005-11-09 17:32:10 +00:00
|
|
|
* @gstobject: a #GstObject
|
2005-09-23 14:31:21 +00:00
|
|
|
* @xml_node: the xmlNodePtr of the parent node
|
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* Trigered whenever a new object is saved to XML. You can connect to this
|
2005-09-23 14:31:21 +00:00
|
|
|
* signal to insert custom XML tags into the core XML.
|
|
|
|
*/
|
|
|
|
/* FIXME This should be the GType of xmlNodePtr instead of G_TYPE_POINTER
|
|
|
|
* (if libxml would use GObject)
|
|
|
|
*/
|
2001-01-30 23:53:04 +00:00
|
|
|
gst_object_signals[OBJECT_SAVED] =
|
2004-03-13 15:27:01 +00:00
|
|
|
g_signal_new ("object-saved", G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstObjectClass, object_saved), NULL,
|
|
|
|
NULL, g_cclosure_marshal_VOID__POINTER, G_TYPE_NONE, 1, G_TYPE_POINTER);
|
|
|
|
|
2002-01-11 15:49:47 +00:00
|
|
|
klass->restore_thyself = gst_object_real_restore_thyself;
|
2001-06-24 21:18:28 +00:00
|
|
|
#endif
|
2005-09-23 14:31:21 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GstObject::deep-notify:
|
2005-11-09 17:32:10 +00:00
|
|
|
* @gstobject: a #GstObject
|
2005-09-23 14:31:21 +00:00
|
|
|
* @prop_object: the object that originated the signal
|
|
|
|
* @prop: the property that changed
|
|
|
|
*
|
|
|
|
* The deep notify signal is used to be notified of property changes. It is
|
|
|
|
* typically attached to the toplevel bin to receive notifications from all
|
|
|
|
* the elements contained in that bin.
|
|
|
|
*/
|
2002-11-02 13:19:30 +00:00
|
|
|
gst_object_signals[DEEP_NOTIFY] =
|
2004-03-13 15:27:01 +00:00
|
|
|
g_signal_new ("deep-notify", G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_FIRST | G_SIGNAL_NO_RECURSE | G_SIGNAL_DETAILED |
|
|
|
|
G_SIGNAL_NO_HOOKS, G_STRUCT_OFFSET (GstObjectClass, deep_notify), NULL,
|
2007-06-05 16:25:06 +00:00
|
|
|
NULL, gst_marshal_VOID__OBJECT_PARAM, G_TYPE_NONE, 2, GST_TYPE_OBJECT,
|
2004-03-13 15:27:01 +00:00
|
|
|
G_TYPE_PARAM);
|
2001-01-29 00:06:02 +00:00
|
|
|
|
|
|
|
klass->path_string_separator = "/";
|
2005-06-23 15:04:48 +00:00
|
|
|
klass->lock = g_new0 (GStaticRecMutex, 1);
|
|
|
|
g_static_rec_mutex_init (klass->lock);
|
2002-01-11 15:49:47 +00:00
|
|
|
|
|
|
|
klass->signal_object = g_object_new (gst_signal_object_get_type (), NULL);
|
2002-11-02 13:19:30 +00:00
|
|
|
|
2003-06-16 15:08:34 +00:00
|
|
|
/* see the comments at gst_object_dispatch_properties_changed */
|
2002-11-02 13:19:30 +00:00
|
|
|
gobject_class->dispatch_properties_changed
|
2004-03-13 15:27:01 +00:00
|
|
|
= GST_DEBUG_FUNCPTR (gst_object_dispatch_properties_changed);
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2001-09-28 19:16:02 +00:00
|
|
|
gobject_class->dispose = gst_object_dispose;
|
2001-06-25 01:20:11 +00:00
|
|
|
gobject_class->finalize = gst_object_finalize;
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2001-01-29 00:06:02 +00:00
|
|
|
static void
|
2009-04-04 08:20:36 +00:00
|
|
|
gst_object_init (GstObject * object)
|
2001-01-29 00:06:02 +00:00
|
|
|
{
|
2004-03-13 15:27:01 +00:00
|
|
|
object->lock = g_mutex_new ();
|
2000-01-30 09:03:00 +00:00
|
|
|
object->parent = NULL;
|
2001-10-24 19:20:58 +00:00
|
|
|
object->name = NULL;
|
gst/: Fix name lookup in GstBin.
Original commit message from CVS:
* gst/gstbin.c: (gst_bin_send_event), (compare_name),
(gst_bin_get_by_name):
* gst/gstbuffer.h:
* gst/gstclock.c: (gst_clock_entry_new), (gst_clock_class_init),
(gst_clock_finalize):
* gst/gstdata.c: (gst_data_replace):
* gst/gstdata.h:
* gst/gstelement.c: (gst_element_request_pad),
(gst_element_pads_activate):
* gst/gstobject.c: (gst_object_init), (gst_object_ref),
(gst_object_unref):
* gst/gstpad.c: (gst_pad_set_active), (gst_pad_peer_set_active),
(gst_pad_set_checkgetrange_function),
(gst_pad_link_check_compatible_unlocked), (gst_pad_set_caps),
(gst_pad_check_pull_range), (gst_pad_pull_range),
(gst_static_pad_template_get_caps), (gst_pad_start_task),
(gst_pad_pause_task), (gst_pad_stop_task):
* gst/gstutils.c: (gst_element_get_compatible_pad_template),
(gst_element_request_pad), (gst_pad_proxy_getcaps):
Fix name lookup in GstBin.
Added _data_replace() function and _buffer_replace()
Use finalize method to clean up clock.
Fix refcounting on request pads.
Fix pad schedule mode error.
Some more object refcounting debug info,
2005-05-05 09:28:01 +00:00
|
|
|
GST_CAT_LOG_OBJECT (GST_CAT_REFCOUNTING, object, "%p new", object);
|
2001-05-25 21:00:07 +00:00
|
|
|
|
gst/: Avoid excessive typechecking in macros.
Original commit message from CVS:
* gst/base/gstbasesink.c: (gst_base_sink_preroll_queue_empty),
(gst_base_sink_do_sync), (gst_base_sink_handle_event),
(gst_base_sink_chain), (gst_base_sink_change_state):
* gst/base/gstbasesink.h:
* gst/base/gstbasesrc.h:
* gst/gstelement.h:
* gst/gstevent.h:
Avoid excessive typechecking in macros.
* gst/gstminiobject.c: (gst_mini_object_get_type),
(gst_mini_object_init), (gst_mini_object_new),
(gst_mini_object_free):
* gst/gstobject.c: (gst_object_class_init), (gst_object_init),
(gst_object_finalize):
Remove cruft code, optimize alloc_trace.
2005-11-08 11:13:07 +00:00
|
|
|
#ifndef GST_DISABLE_TRACE
|
|
|
|
gst_alloc_trace_new (_gst_object_trace, object);
|
|
|
|
#endif
|
|
|
|
|
2001-05-25 21:00:07 +00:00
|
|
|
object->flags = 0;
|
renamed GST_FLAGS macros to GST_OBJECT_FLAGS moved bitshift from macro to enum definition
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
* docs/gst/gstreamer-sections.txt:
* gst/base/gstbasesink.c: (gst_base_sink_init):
* gst/base/gstbasesrc.c: (gst_base_src_init),
(gst_base_src_get_range), (gst_base_src_check_get_range),
(gst_base_src_start), (gst_base_src_stop):
* gst/base/gstbasesrc.h:
* gst/elements/gstfakesrc.c: (gst_fake_src_set_property):
* gst/gstbin.c: (gst_bin_add_func), (gst_bin_remove_func),
(bin_element_is_sink), (reset_degree), (gst_bin_element_set_state),
(bin_bus_handler):
* gst/gstbin.h:
* gst/gstbuffer.h:
* gst/gstbus.c: (gst_bus_post), (gst_bus_set_flushing):
* gst/gstbus.h:
* gst/gstelement.c: (gst_element_is_locked_state),
(gst_element_set_locked_state), (gst_element_commit_state),
(gst_element_set_state):
* gst/gstelement.h:
* gst/gstindex.c: (gst_index_init):
* gst/gstindex.h:
* gst/gstminiobject.h:
* gst/gstobject.c: (gst_object_init), (gst_object_sink),
(gst_object_set_parent):
* gst/gstobject.h:
* gst/gstpad.c: (gst_pad_set_blocked_async), (gst_pad_is_blocked),
(gst_pad_get_caps_unlocked), (gst_pad_set_caps):
* gst/gstpad.h:
* gst/gstpadtemplate.h:
* gst/gstpipeline.c: (gst_pipeline_provide_clock_func),
(gst_pipeline_use_clock), (gst_pipeline_auto_clock):
* gst/gstpipeline.h:
* gst/indexers/gstfileindex.c: (gst_file_index_load),
(gst_file_index_commit):
* testsuite/bytestream/filepadsink.c: (gst_fp_sink_init):
* testsuite/pad/link.c: (gst_test_src_init),
(gst_test_filter_init), (gst_test_sink_init):
* testsuite/states/locked.c: (main):
renamed GST_FLAGS macros to GST_OBJECT_FLAGS
moved bitshift from macro to enum definition
2005-10-12 14:28:39 +00:00
|
|
|
GST_OBJECT_FLAG_SET (object, GST_OBJECT_FLOATING);
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2001-05-25 21:00:07 +00:00
|
|
|
/**
|
|
|
|
* gst_object_ref:
|
2005-11-09 17:32:10 +00:00
|
|
|
* @object: a #GstObject to reference
|
2001-05-25 21:00:07 +00:00
|
|
|
*
|
2007-12-22 12:48:26 +00:00
|
|
|
* Increments the reference count on @object. This function
|
2005-11-09 17:32:10 +00:00
|
|
|
* does not take the lock on @object because it relies on
|
2005-03-07 18:27:42 +00:00
|
|
|
* atomic refcounting.
|
|
|
|
*
|
|
|
|
* This object returns the input parameter to ease writing
|
|
|
|
* constructs like :
|
|
|
|
* result = gst_object_ref (object->parent);
|
2001-05-27 14:37:29 +00:00
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* Returns: A pointer to @object
|
2001-05-25 21:00:07 +00:00
|
|
|
*/
|
2005-06-28 09:17:14 +00:00
|
|
|
gpointer
|
|
|
|
gst_object_ref (gpointer object)
|
2001-05-25 21:00:07 +00:00
|
|
|
{
|
2006-06-12 09:06:01 +00:00
|
|
|
g_return_val_if_fail (object != NULL, NULL);
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2006-05-05 08:17:22 +00:00
|
|
|
#ifdef DEBUG_REFCOUNT
|
gst/: Fix name lookup in GstBin.
Original commit message from CVS:
* gst/gstbin.c: (gst_bin_send_event), (compare_name),
(gst_bin_get_by_name):
* gst/gstbuffer.h:
* gst/gstclock.c: (gst_clock_entry_new), (gst_clock_class_init),
(gst_clock_finalize):
* gst/gstdata.c: (gst_data_replace):
* gst/gstdata.h:
* gst/gstelement.c: (gst_element_request_pad),
(gst_element_pads_activate):
* gst/gstobject.c: (gst_object_init), (gst_object_ref),
(gst_object_unref):
* gst/gstpad.c: (gst_pad_set_active), (gst_pad_peer_set_active),
(gst_pad_set_checkgetrange_function),
(gst_pad_link_check_compatible_unlocked), (gst_pad_set_caps),
(gst_pad_check_pull_range), (gst_pad_pull_range),
(gst_static_pad_template_get_caps), (gst_pad_start_task),
(gst_pad_pause_task), (gst_pad_stop_task):
* gst/gstutils.c: (gst_element_get_compatible_pad_template),
(gst_element_request_pad), (gst_pad_proxy_getcaps):
Fix name lookup in GstBin.
Added _data_replace() function and _buffer_replace()
Use finalize method to clean up clock.
Fix refcounting on request pads.
Fix pad schedule mode error.
Some more object refcounting debug info,
2005-05-05 09:28:01 +00:00
|
|
|
GST_CAT_LOG_OBJECT (GST_CAT_REFCOUNTING, object, "%p ref %d->%d",
|
|
|
|
object,
|
2005-03-07 18:27:42 +00:00
|
|
|
((GObject *) object)->ref_count, ((GObject *) object)->ref_count + 1);
|
|
|
|
#endif
|
2006-05-05 08:17:22 +00:00
|
|
|
g_object_ref (object);
|
2001-05-25 21:00:07 +00:00
|
|
|
|
|
|
|
return object;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_object_unref:
|
2005-11-09 17:32:10 +00:00
|
|
|
* @object: a #GstObject to unreference
|
2001-05-25 21:00:07 +00:00
|
|
|
*
|
2007-12-22 12:48:26 +00:00
|
|
|
* Decrements the reference count on @object. If reference count hits
|
2005-11-09 17:32:10 +00:00
|
|
|
* zero, destroy @object. This function does not take the lock
|
|
|
|
* on @object as it relies on atomic refcounting.
|
2005-03-07 18:27:42 +00:00
|
|
|
*
|
|
|
|
* The unref method should never be called with the LOCK held since
|
|
|
|
* this might deadlock the dispose function.
|
2001-05-25 21:00:07 +00:00
|
|
|
*/
|
2005-06-28 09:17:14 +00:00
|
|
|
void
|
|
|
|
gst_object_unref (gpointer object)
|
2001-05-25 21:00:07 +00:00
|
|
|
{
|
2006-06-12 09:06:01 +00:00
|
|
|
g_return_if_fail (object != NULL);
|
2005-09-29 18:35:38 +00:00
|
|
|
g_return_if_fail (((GObject *) object)->ref_count > 0);
|
|
|
|
|
|
|
|
#ifdef DEBUG_REFCOUNT
|
|
|
|
GST_CAT_LOG_OBJECT (GST_CAT_REFCOUNTING, object, "%p unref %d->%d",
|
|
|
|
object,
|
|
|
|
((GObject *) object)->ref_count, ((GObject *) object)->ref_count - 1);
|
|
|
|
#endif
|
2005-03-07 18:27:42 +00:00
|
|
|
g_object_unref (object);
|
2001-05-25 21:00:07 +00:00
|
|
|
}
|
|
|
|
|
2009-05-02 12:33:01 +00:00
|
|
|
/**
|
|
|
|
* gst_object_ref_sink:
|
|
|
|
* @object: a #GstObject to sink
|
|
|
|
*
|
|
|
|
* Increase the reference count of @object, and possibly remove the floating
|
|
|
|
* reference, if @object has a floating reference.
|
|
|
|
*
|
|
|
|
* In other words, if the object is floating, then this call "assumes ownership"
|
|
|
|
* of the floating reference, converting it to a normal reference by clearing
|
|
|
|
* the floating flag while leaving the reference count unchanged. If the object
|
|
|
|
* is not floating, then this call adds a new normal reference increasing the
|
|
|
|
* reference count by one.
|
|
|
|
*
|
|
|
|
* MT safe. This function grabs and releases @object lock.
|
|
|
|
*
|
|
|
|
* Since: 0.10.24
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_object_ref_sink (gpointer object)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GST_IS_OBJECT (object));
|
|
|
|
|
|
|
|
GST_OBJECT_LOCK (object);
|
|
|
|
if (G_LIKELY (GST_OBJECT_IS_FLOATING (object))) {
|
|
|
|
GST_CAT_LOG_OBJECT (GST_CAT_REFCOUNTING, object, "unsetting floating flag");
|
|
|
|
GST_OBJECT_FLAG_UNSET (object, GST_OBJECT_FLOATING);
|
|
|
|
GST_OBJECT_UNLOCK (object);
|
|
|
|
} else {
|
|
|
|
GST_OBJECT_UNLOCK (object);
|
|
|
|
gst_object_ref (object);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-05-25 21:00:07 +00:00
|
|
|
/**
|
|
|
|
* gst_object_sink:
|
2005-11-09 17:32:10 +00:00
|
|
|
* @object: a #GstObject to sink
|
|
|
|
*
|
2007-04-20 08:39:35 +00:00
|
|
|
* If @object was floating, the #GST_OBJECT_FLOATING flag is removed
|
2005-11-09 17:32:10 +00:00
|
|
|
* and @object is unreffed. When @object was not floating,
|
|
|
|
* this function does nothing.
|
2001-05-25 21:00:07 +00:00
|
|
|
*
|
2007-04-20 08:39:35 +00:00
|
|
|
* Any newly created object has a refcount of 1 and is floating.
|
|
|
|
* This function should be used when creating a new object to
|
2005-11-09 17:32:10 +00:00
|
|
|
* symbolically 'take ownership' of @object. This done by first doing a
|
|
|
|
* gst_object_ref() to keep a reference to @object and then gst_object_sink()
|
|
|
|
* to remove and unref any floating references to @object.
|
|
|
|
* Use gst_object_set_parent() to have this done for you.
|
2005-03-07 18:27:42 +00:00
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* MT safe. This function grabs and releases @object lock.
|
2001-05-25 21:00:07 +00:00
|
|
|
*/
|
|
|
|
void
|
2005-06-28 09:17:14 +00:00
|
|
|
gst_object_sink (gpointer object)
|
2001-05-25 21:00:07 +00:00
|
|
|
{
|
|
|
|
g_return_if_fail (GST_IS_OBJECT (object));
|
|
|
|
|
2003-06-29 14:05:49 +00:00
|
|
|
GST_CAT_LOG_OBJECT (GST_CAT_REFCOUNTING, object, "sink");
|
2003-01-17 18:48:17 +00:00
|
|
|
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_LOCK (object);
|
2005-03-07 18:27:42 +00:00
|
|
|
if (G_LIKELY (GST_OBJECT_IS_FLOATING (object))) {
|
2007-02-28 16:43:43 +00:00
|
|
|
GST_CAT_LOG_OBJECT (GST_CAT_REFCOUNTING, object, "clear floating flag");
|
renamed GST_FLAGS macros to GST_OBJECT_FLAGS moved bitshift from macro to enum definition
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
* docs/gst/gstreamer-sections.txt:
* gst/base/gstbasesink.c: (gst_base_sink_init):
* gst/base/gstbasesrc.c: (gst_base_src_init),
(gst_base_src_get_range), (gst_base_src_check_get_range),
(gst_base_src_start), (gst_base_src_stop):
* gst/base/gstbasesrc.h:
* gst/elements/gstfakesrc.c: (gst_fake_src_set_property):
* gst/gstbin.c: (gst_bin_add_func), (gst_bin_remove_func),
(bin_element_is_sink), (reset_degree), (gst_bin_element_set_state),
(bin_bus_handler):
* gst/gstbin.h:
* gst/gstbuffer.h:
* gst/gstbus.c: (gst_bus_post), (gst_bus_set_flushing):
* gst/gstbus.h:
* gst/gstelement.c: (gst_element_is_locked_state),
(gst_element_set_locked_state), (gst_element_commit_state),
(gst_element_set_state):
* gst/gstelement.h:
* gst/gstindex.c: (gst_index_init):
* gst/gstindex.h:
* gst/gstminiobject.h:
* gst/gstobject.c: (gst_object_init), (gst_object_sink),
(gst_object_set_parent):
* gst/gstobject.h:
* gst/gstpad.c: (gst_pad_set_blocked_async), (gst_pad_is_blocked),
(gst_pad_get_caps_unlocked), (gst_pad_set_caps):
* gst/gstpad.h:
* gst/gstpadtemplate.h:
* gst/gstpipeline.c: (gst_pipeline_provide_clock_func),
(gst_pipeline_use_clock), (gst_pipeline_auto_clock):
* gst/gstpipeline.h:
* gst/indexers/gstfileindex.c: (gst_file_index_load),
(gst_file_index_commit):
* testsuite/bytestream/filepadsink.c: (gst_fp_sink_init):
* testsuite/pad/link.c: (gst_test_src_init),
(gst_test_filter_init), (gst_test_sink_init):
* testsuite/states/locked.c: (main):
renamed GST_FLAGS macros to GST_OBJECT_FLAGS
moved bitshift from macro to enum definition
2005-10-12 14:28:39 +00:00
|
|
|
GST_OBJECT_FLAG_UNSET (object, GST_OBJECT_FLOATING);
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (object);
|
2001-05-25 21:00:07 +00:00
|
|
|
gst_object_unref (object);
|
2005-03-07 18:27:42 +00:00
|
|
|
} else {
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (object);
|
2001-05-25 21:00:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-01-17 17:44:07 +00:00
|
|
|
/**
|
2003-02-02 19:49:29 +00:00
|
|
|
* gst_object_replace:
|
2005-11-09 17:32:10 +00:00
|
|
|
* @oldobj: pointer to a place of a #GstObject to replace
|
|
|
|
* @newobj: a new #GstObject
|
2003-01-17 17:44:07 +00:00
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* Unrefs the #GstObject pointed to by @oldobj, refs @newobj and
|
|
|
|
* puts @newobj in *@oldobj. Be carefull when calling this
|
2005-03-07 18:27:42 +00:00
|
|
|
* function, it does not take any locks. You might want to lock
|
2005-11-09 17:32:10 +00:00
|
|
|
* the object owning @oldobj pointer before calling this
|
2005-03-07 18:27:42 +00:00
|
|
|
* function.
|
Docs updates, clean up some headers.
Original commit message from CVS:
* docs/design/part-MT-refcounting.txt:
* docs/design/part-conventions.txt:
* docs/design/part-gstobject.txt:
* docs/design/part-relations.txt:
* docs/design/part-standards.txt:
* gst/gstbin.c: (gst_bin_add_func), (gst_bin_add),
(gst_bin_remove_func), (gst_bin_remove), (gst_bin_iterate_recurse),
(gst_bin_get_by_name), (gst_bin_get_by_interface),
(gst_bin_iterate_all_by_interface):
* gst/gstbuffer.h:
* gst/gstclock.h:
* gst/gstelement.c: (gst_element_class_init),
(gst_element_change_state), (gst_element_set_loop_function):
* gst/gstelement.h:
* gst/gstiterator.c:
* gst/gstobject.c: (gst_object_class_init), (gst_object_ref),
(gst_object_unref), (gst_object_sink), (gst_object_dispose),
(gst_object_dispatch_properties_changed), (gst_object_set_name),
(gst_object_set_parent), (gst_object_unparent),
(gst_object_check_uniqueness):
* gst/gstobject.h:
Docs updates, clean up some headers.
Free iterators in GstBin.
GstObject is now looking good.
2005-03-08 14:38:06 +00:00
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* Make sure not to LOCK @oldobj because it might be unreffed
|
Docs updates, clean up some headers.
Original commit message from CVS:
* docs/design/part-MT-refcounting.txt:
* docs/design/part-conventions.txt:
* docs/design/part-gstobject.txt:
* docs/design/part-relations.txt:
* docs/design/part-standards.txt:
* gst/gstbin.c: (gst_bin_add_func), (gst_bin_add),
(gst_bin_remove_func), (gst_bin_remove), (gst_bin_iterate_recurse),
(gst_bin_get_by_name), (gst_bin_get_by_interface),
(gst_bin_iterate_all_by_interface):
* gst/gstbuffer.h:
* gst/gstclock.h:
* gst/gstelement.c: (gst_element_class_init),
(gst_element_change_state), (gst_element_set_loop_function):
* gst/gstelement.h:
* gst/gstiterator.c:
* gst/gstobject.c: (gst_object_class_init), (gst_object_ref),
(gst_object_unref), (gst_object_sink), (gst_object_dispose),
(gst_object_dispatch_properties_changed), (gst_object_set_name),
(gst_object_set_parent), (gst_object_unparent),
(gst_object_check_uniqueness):
* gst/gstobject.h:
Docs updates, clean up some headers.
Free iterators in GstBin.
GstObject is now looking good.
2005-03-08 14:38:06 +00:00
|
|
|
* which could cause a deadlock when it is disposed.
|
2003-01-17 17:44:07 +00:00
|
|
|
*/
|
|
|
|
void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_object_replace (GstObject ** oldobj, GstObject * newobj)
|
2003-01-17 17:44:07 +00:00
|
|
|
{
|
2003-06-29 14:05:49 +00:00
|
|
|
g_return_if_fail (oldobj != NULL);
|
|
|
|
g_return_if_fail (*oldobj == NULL || GST_IS_OBJECT (*oldobj));
|
|
|
|
g_return_if_fail (newobj == NULL || GST_IS_OBJECT (newobj));
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
#ifdef DEBUG_REFCOUNT
|
2009-06-23 11:34:35 +00:00
|
|
|
GST_CAT_LOG (GST_CAT_REFCOUNTING, "replace %p %s (%d) with %p %s (%d)",
|
|
|
|
*oldobj, *oldobj ? GST_STR_NULL (GST_OBJECT_NAME (*oldobj)) : "(NONE)",
|
2004-07-06 11:21:34 +00:00
|
|
|
*oldobj ? G_OBJECT (*oldobj)->ref_count : 0,
|
2009-06-23 11:34:35 +00:00
|
|
|
newobj, newobj ? GST_STR_NULL (GST_OBJECT_NAME (newobj)) : "(NONE)",
|
2004-07-06 11:21:34 +00:00
|
|
|
newobj ? G_OBJECT (newobj)->ref_count : 0);
|
2005-03-07 18:27:42 +00:00
|
|
|
#endif
|
2003-03-25 19:42:19 +00:00
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
if (G_LIKELY (*oldobj != newobj)) {
|
2004-03-13 15:27:01 +00:00
|
|
|
if (newobj)
|
|
|
|
gst_object_ref (newobj);
|
|
|
|
if (*oldobj)
|
|
|
|
gst_object_unref (*oldobj);
|
2003-01-17 17:44:07 +00:00
|
|
|
|
|
|
|
*oldobj = newobj;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
/* dispose is called when the object has to release all links
|
|
|
|
* to other objects */
|
2001-05-25 21:00:07 +00:00
|
|
|
static void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_object_dispose (GObject * object)
|
2001-05-25 21:00:07 +00:00
|
|
|
{
|
2006-03-22 13:10:16 +00:00
|
|
|
GstObject *parent;
|
|
|
|
|
2003-06-29 14:05:49 +00:00
|
|
|
GST_CAT_LOG_OBJECT (GST_CAT_REFCOUNTING, object, "dispose");
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_LOCK (object);
|
2006-03-22 13:10:16 +00:00
|
|
|
if ((parent = GST_OBJECT_PARENT (object)))
|
|
|
|
goto have_parent;
|
2001-09-28 19:16:02 +00:00
|
|
|
GST_OBJECT_PARENT (object) = NULL;
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (object);
|
2005-03-07 18:27:42 +00:00
|
|
|
|
2005-09-18 21:24:55 +00:00
|
|
|
parent_class->dispose (object);
|
2006-03-22 13:10:16 +00:00
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* ERRORS */
|
|
|
|
have_parent:
|
|
|
|
{
|
|
|
|
g_critical ("\nTrying to dispose object \"%s\", but it still has a "
|
|
|
|
"parent \"%s\".\nYou need to let the parent manage the "
|
|
|
|
"object instead of unreffing the object directly.\n",
|
|
|
|
GST_OBJECT_NAME (object), GST_OBJECT_NAME (parent));
|
|
|
|
GST_OBJECT_UNLOCK (object);
|
2006-05-05 08:17:22 +00:00
|
|
|
/* ref the object again to revive it in this error case */
|
2009-10-08 06:53:26 +00:00
|
|
|
gst_object_ref (object);
|
2006-03-22 13:10:16 +00:00
|
|
|
return;
|
|
|
|
}
|
2001-05-25 21:00:07 +00:00
|
|
|
}
|
|
|
|
|
gst/gstpad.c (gst_pad_custom_new): Add a FIXME, this is a hacky way to do inheritance.
Original commit message from CVS:
2004-02-10 Andy Wingo <wingo@pobox.com>
* gst/gstpad.c (gst_pad_custom_new): Add a FIXME, this is a hacky
way to do inheritance.
(gst_pad_get_event_masks, gst_pad_get_event_masks_default)
(gst_pad_get_query_types, gst_pad_get_query_types_default):
Routine docs.
(gst_pad_set_link_function, gst_pad_set_fixate_function)
(gst_pad_set_getcaps_function): Doc from Dave's negotation random
doc.
(gst_pad_unlink, gst_pad_is_linked): Docs.
(gst_pad_renegotiate): A brief description of capsnego.
(gst_pad_try_set_caps): Document.
(gst_pad_try_set_caps_nonfixed): Document.
(gst_pad_can_link_filtered, gst_pad_link_filtered): Doc fixes.
(gst_pad_set_parent): Deprecated (although not out of the API).
(gst_pad_get_parent): Deprecated, although many plugins use this.
(gst_pad_add_ghost_pad, gst_pad_remove_ghost_pad): Doc that these
are private and will go away in 0.9.
(gst_pad_perform_negotiate): Doc.
(gst_pad_link_unnegotiate): I think this is meant to be static.
(gst_pad_get_negotiated_caps, gst_pad_get_pad_template_caps)
(gst_pad_template_get_caps_by_name, gst_pad_check_compatibility)
(gst_pad_get_peer): Doc updates.
(gst_pad_caps_change_notify): Doc.
(gst_pad_alloc_buffer, gst_pad_push, gst_static_pad_template_get)
(gst_ghost_pad_new): Doc fixes.
* gst/gstobject.c (gst_object_get_parent, gst_object_unparent)
(gst_object_check_uniqueness):
* gst/gstelement.c (gst_element_add_pad)
(gst_element_add_ghost_pad, gst_element_remove_pad)
(gst_element_remove_ghost_pad, gst_element_get_pad)
(gst_element_get_static_pad, gst_element_get_pad_list)
(gst_element_class_get_pad_template_list)
(gst_element_class_get_pad_template): Work on the docs.
(gst_element_get_pad_template_list): Uses the class method.
(gst_element_get_compatible_pad_template): Docs, and consolidate
some test conditions.
(gst_element_get_pad_from_template): New static function.
(gst_element_request_compatible_pad): Docs, and work with
non-request compatible templates.
(gst_element_get_compatible_pad_filtered): Docs and remove
redundant checks.
(gst_element_get_compatible_pad, gst_element_link_pads_filtered)
(gst_element_link_filtered, gst_element_link_many)
(gst_element_link, gst_element_link_pads)
(gst_element_unlink_many): Docs.
2004-02-05 Andy Wingo <wingo@pobox.com>
* gst/gstpad.c (_gst_real_pad_fixate_accumulator):
s/pointer/boxed/.
* gst/gstmarshal.list (VOID:BOXED, BOXED:BOXED): New marshallers.
* gst/gstpad.c (gst_real_pad_class_init): Use a BOXED:BOXED
marshaller for ::fixate, and VOID:BOXED for ::caps-nego-failed,
with the type=GST_TYPE_CAPS. This allows language bindings to know
what kind of data they're dealing with.
* gst/gstcaps.c (_gst_caps_value_init): GBoxed values initialize
to NULL when g_value_init is called. GstCaps, which rolls its own
type implementation, now does the same instead of allocating empty
caps.
(_gst_caps_initialize, _gst_caps_collect_value,
_gst_caps_lcopy_value): Provide collect_value and lcopy_value type
table methods. This allows G_VALUE_COLLECT to work.
2004-02-05 Andy Wingo <wingo@pobox.com>
* configure.ac:
* testsuite/Makefile.am (SUBDIRS):
* testsuite/ghostpads/Makefile.am:
* testsuite/ghostpads/ghostpads.c: A new test for ghost pads.
* gst/gstpad.c (gst_pad_add_ghost_pad, gst_pad_remove_ghost_pad):
These two routines are the only ones that set
GST_GPAD_REALPAD(gpad), the ghost pad list, and the ghost pad's
pad template. They should be made static, depending on ABI needs.
(gst_real_pad_dispose): Handle the case of ghost pads without a
parent. Assert after dealing with ghost pads that the ghost pad
list is empty.
(gst_ghost_pad_class_init): New property added, ::real-pad. Can be
set after creation.
(gst_ghost_pad_dispose): Set ::real-pad to NULL.
(gst_ghost_pad_set_property, gst_ghost_pad_get_property): New
functions. set_property will call add_ghost_pad/remove_ghost_pad
as appropriate.
(gst_ghost_pad_new): All the work is offloaded to g_object_new.
* gst/gstelement.c (gst_element_add_pad): Handle ghost pads as well.
(gst_element_add_ghost_pad): Remove code duplicated from _add_pad.
(gst_element_remove_pad): Handle ghost pads as well.
(gst_element_remove_ghost_pad): Deprecated (could be removed,
depending on API-stability needs).
2004-02-05 Andy Wingo <wingo@pobox.com>
* gst/gstbin.[ch]: (gst_bin_get_by_interface): GTypes are scalars,
of course they're const
2004-02-11 13:26:04 +00:00
|
|
|
/* finalize is called when the object has to free its resources */
|
2001-05-25 21:00:07 +00:00
|
|
|
static void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_object_finalize (GObject * object)
|
2001-05-25 21:00:07 +00:00
|
|
|
{
|
2001-12-15 22:37:35 +00:00
|
|
|
GstObject *gstobject = GST_OBJECT (object);
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2003-06-29 14:05:49 +00:00
|
|
|
GST_CAT_LOG_OBJECT (GST_CAT_REFCOUNTING, object, "finalize");
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2001-12-15 22:37:35 +00:00
|
|
|
g_signal_handlers_destroy (object);
|
|
|
|
|
2003-05-02 20:07:45 +00:00
|
|
|
g_free (gstobject->name);
|
2001-06-25 01:20:11 +00:00
|
|
|
g_mutex_free (gstobject->lock);
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2003-05-10 12:42:02 +00:00
|
|
|
#ifndef GST_DISABLE_TRACE
|
gst/: Avoid excessive typechecking in macros.
Original commit message from CVS:
* gst/base/gstbasesink.c: (gst_base_sink_preroll_queue_empty),
(gst_base_sink_do_sync), (gst_base_sink_handle_event),
(gst_base_sink_chain), (gst_base_sink_change_state):
* gst/base/gstbasesink.h:
* gst/base/gstbasesrc.h:
* gst/gstelement.h:
* gst/gstevent.h:
Avoid excessive typechecking in macros.
* gst/gstminiobject.c: (gst_mini_object_get_type),
(gst_mini_object_init), (gst_mini_object_new),
(gst_mini_object_free):
* gst/gstobject.c: (gst_object_class_init), (gst_object_init),
(gst_object_finalize):
Remove cruft code, optimize alloc_trace.
2005-11-08 11:13:07 +00:00
|
|
|
gst_alloc_trace_free (_gst_object_trace, object);
|
2003-05-10 12:42:02 +00:00
|
|
|
#endif
|
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
parent_class->finalize (object);
|
2001-05-25 21:00:07 +00:00
|
|
|
}
|
|
|
|
|
2003-06-16 15:08:34 +00:00
|
|
|
/* Changing a GObject property of a GstObject will result in "deep_notify"
|
|
|
|
* signals being emitted by the object itself, as well as in each parent
|
|
|
|
* object. This is so that an application can connect a listener to the
|
2002-11-02 13:19:30 +00:00
|
|
|
* top-level bin to catch property-change notifications for all contained
|
2005-10-15 15:30:24 +00:00
|
|
|
* elements.
|
2005-03-07 18:27:42 +00:00
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* This function is not MT safe in glib < 2.8 so we need to lock it with a
|
|
|
|
* classwide mutex in that case.
|
2005-03-07 18:27:42 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*/
|
2002-11-02 13:19:30 +00:00
|
|
|
static void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_object_dispatch_properties_changed (GObject * object,
|
|
|
|
guint n_pspecs, GParamSpec ** pspecs)
|
2002-11-02 13:19:30 +00:00
|
|
|
{
|
2005-03-07 18:27:42 +00:00
|
|
|
GstObject *gst_object, *parent, *old_parent;
|
2002-11-02 13:19:30 +00:00
|
|
|
guint i;
|
2005-03-07 18:27:42 +00:00
|
|
|
gchar *name, *debug_name;
|
|
|
|
|
2002-11-02 13:19:30 +00:00
|
|
|
/* do the standard dispatching */
|
2009-05-02 11:06:10 +00:00
|
|
|
parent_class->dispatch_properties_changed (object, n_pspecs, pspecs);
|
2005-03-07 18:27:42 +00:00
|
|
|
|
|
|
|
gst_object = GST_OBJECT_CAST (object);
|
|
|
|
name = gst_object_get_name (gst_object);
|
|
|
|
debug_name = GST_STR_NULL (name);
|
2002-11-02 13:19:30 +00:00
|
|
|
|
|
|
|
/* now let the parent dispatch those, too */
|
2005-03-07 18:27:42 +00:00
|
|
|
parent = gst_object_get_parent (gst_object);
|
|
|
|
while (parent) {
|
2002-11-02 13:19:30 +00:00
|
|
|
for (i = 0; i < n_pspecs; i++) {
|
2009-01-03 18:10:08 +00:00
|
|
|
GST_CAT_LOG_OBJECT (GST_CAT_PROPERTIES, parent,
|
|
|
|
"deep notification from %s (%s)", debug_name, pspecs[i]->name);
|
2005-03-07 18:27:42 +00:00
|
|
|
|
|
|
|
g_signal_emit (parent, gst_object_signals[DEEP_NOTIFY],
|
2009-05-02 11:06:10 +00:00
|
|
|
g_quark_from_string (pspecs[i]->name), gst_object, pspecs[i]);
|
2002-11-02 13:19:30 +00:00
|
|
|
}
|
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
old_parent = parent;
|
|
|
|
parent = gst_object_get_parent (old_parent);
|
|
|
|
gst_object_unref (old_parent);
|
2002-11-02 13:19:30 +00:00
|
|
|
}
|
2005-03-07 18:27:42 +00:00
|
|
|
g_free (name);
|
2002-11-02 13:19:30 +00:00
|
|
|
}
|
|
|
|
|
2005-10-15 15:30:24 +00:00
|
|
|
/**
|
2002-11-02 13:19:30 +00:00
|
|
|
* gst_object_default_deep_notify:
|
|
|
|
* @object: the #GObject that signalled the notify.
|
|
|
|
* @orig: a #GstObject that initiated the notify.
|
|
|
|
* @pspec: a #GParamSpec of the property.
|
2002-12-14 13:02:16 +00:00
|
|
|
* @excluded_props: a set of user-specified properties to exclude or
|
|
|
|
* NULL to show all changes.
|
2002-11-02 13:19:30 +00:00
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* A default deep_notify signal callback for an object. The user data
|
2005-10-15 15:30:24 +00:00
|
|
|
* should contain a pointer to an array of strings that should be excluded
|
|
|
|
* from the notify. The default handler will print the new value of the property
|
2002-11-02 13:19:30 +00:00
|
|
|
* using g_print.
|
2005-03-07 18:27:42 +00:00
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* MT safe. This function grabs and releases @object's LOCK for getting its
|
|
|
|
* path string.
|
2002-11-02 13:19:30 +00:00
|
|
|
*/
|
|
|
|
void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_object_default_deep_notify (GObject * object, GstObject * orig,
|
|
|
|
GParamSpec * pspec, gchar ** excluded_props)
|
2002-11-02 13:19:30 +00:00
|
|
|
{
|
2004-03-15 19:27:17 +00:00
|
|
|
GValue value = { 0, }; /* the important thing is that value.type = 0 */
|
gst/: Aplied part of patch #157127: Cleanup of issues reported by sparse.
Original commit message from CVS:
reviewed by: Wim Taymans, Ronald Bultje.
* gst/cothreads.c: (cothread_create):
* gst/gstbin.c: (gst_bin_add_func), (gst_bin_remove_func),
(gst_bin_child_state_change_func):
* gst/gstbuffer.c: (gst_buffer_span):
* gst/gstelement.c: (gst_element_get_index),
(gst_element_get_event_masks), (gst_element_get_query_types),
(gst_element_get_formats):
* gst/gsterror.c: (_gst_core_errors_init),
(_gst_library_errors_init), (_gst_resource_errors_init),
(_gst_stream_errors_init):
* gst/gstobject.c: (gst_object_default_deep_notify):
* gst/gstpad.c: (gst_pad_get_event_masks),
(gst_pad_get_internal_links_default):
* gst/gstplugin.c: (gst_plugin_register_func),
(gst_plugin_get_module):
* gst/gststructure.c: (gst_structure_get_string),
(gst_structure_get_abbrs), (gst_structure_from_abbr),
(gst_structure_to_abbr):
* gst/gstutils.c: (gst_print_element_args):
* gst/schedulers/gstoptimalscheduler.c: (add_to_group),
(setup_group_scheduler), (gst_opt_scheduler_iterate):
Aplied part of patch #157127: Cleanup of issues reported by
sparse.
Also do not try to use cothreads when there is no cothread
context yet.
2004-11-02 15:02:12 +00:00
|
|
|
gchar *str = NULL;
|
2002-11-20 21:13:07 +00:00
|
|
|
gchar *name = NULL;
|
2002-11-02 13:19:30 +00:00
|
|
|
|
|
|
|
if (pspec->flags & G_PARAM_READABLE) {
|
|
|
|
/* let's not print these out for excluded properties... */
|
|
|
|
while (excluded_props != NULL && *excluded_props != NULL) {
|
|
|
|
if (strcmp (pspec->name, *excluded_props) == 0)
|
2004-03-15 19:27:17 +00:00
|
|
|
return;
|
2002-11-02 13:19:30 +00:00
|
|
|
excluded_props++;
|
|
|
|
}
|
|
|
|
g_value_init (&value, G_PARAM_SPEC_VALUE_TYPE (pspec));
|
|
|
|
g_object_get_property (G_OBJECT (orig), pspec->name, &value);
|
|
|
|
|
2008-08-27 07:18:37 +00:00
|
|
|
/* FIXME: handle flags */
|
2002-11-02 13:19:30 +00:00
|
|
|
if (G_IS_PARAM_SPEC_ENUM (pspec)) {
|
|
|
|
GEnumValue *enum_value;
|
2008-11-19 12:20:03 +00:00
|
|
|
GEnumClass *klass = G_ENUM_CLASS (g_type_class_ref (pspec->value_type));
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2008-11-19 12:20:03 +00:00
|
|
|
enum_value = g_enum_get_value (klass, g_value_get_enum (&value));
|
2002-11-02 13:19:30 +00:00
|
|
|
|
|
|
|
str = g_strdup_printf ("%s (%d)", enum_value->value_nick,
|
2004-03-15 19:27:17 +00:00
|
|
|
enum_value->value);
|
2008-11-19 12:20:03 +00:00
|
|
|
g_type_class_unref (klass);
|
2004-03-13 15:27:01 +00:00
|
|
|
} else {
|
2002-11-02 13:19:30 +00:00
|
|
|
str = g_strdup_value_contents (&value);
|
|
|
|
}
|
2002-11-20 21:13:07 +00:00
|
|
|
name = gst_object_get_path_string (orig);
|
|
|
|
g_print ("%s: %s = %s\n", name, pspec->name, str);
|
|
|
|
g_free (name);
|
2002-11-02 13:19:30 +00:00
|
|
|
g_free (str);
|
|
|
|
g_value_unset (&value);
|
|
|
|
} else {
|
2002-11-20 21:13:07 +00:00
|
|
|
name = gst_object_get_path_string (orig);
|
2004-03-13 15:27:01 +00:00
|
|
|
g_warning ("Parameter %s not readable in %s.", pspec->name, name);
|
2002-11-20 21:13:07 +00:00
|
|
|
g_free (name);
|
2002-11-02 13:19:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
static gboolean
|
2006-07-07 17:16:26 +00:00
|
|
|
gst_object_set_name_default (GstObject * object)
|
2002-02-20 21:31:16 +00:00
|
|
|
{
|
2006-07-07 17:16:26 +00:00
|
|
|
const gchar *type_name;
|
2002-02-20 21:31:16 +00:00
|
|
|
gint count;
|
2002-03-03 00:44:41 +00:00
|
|
|
gchar *name, *tmp;
|
2005-03-07 18:27:42 +00:00
|
|
|
gboolean result;
|
2006-07-07 17:16:26 +00:00
|
|
|
GQuark q;
|
2002-02-20 21:31:16 +00:00
|
|
|
|
2002-08-28 10:45:57 +00:00
|
|
|
/* to ensure guaranteed uniqueness across threads, only one thread
|
|
|
|
* may ever assign a name */
|
2002-02-20 21:31:16 +00:00
|
|
|
G_LOCK (object_name_mutex);
|
|
|
|
|
2004-02-11 20:16:33 +00:00
|
|
|
if (!object_name_counts) {
|
2006-07-07 17:16:26 +00:00
|
|
|
g_datalist_init (&object_name_counts);
|
2004-02-11 20:16:33 +00:00
|
|
|
}
|
2002-02-20 21:31:16 +00:00
|
|
|
|
2006-07-07 17:16:26 +00:00
|
|
|
q = g_type_qname (G_OBJECT_TYPE (object));
|
|
|
|
count = GPOINTER_TO_INT (g_datalist_id_get_data (&object_name_counts, q));
|
|
|
|
g_datalist_id_set_data (&object_name_counts, q, GINT_TO_POINTER (count + 1));
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2002-02-20 21:31:16 +00:00
|
|
|
G_UNLOCK (object_name_mutex);
|
|
|
|
|
2002-03-03 00:44:41 +00:00
|
|
|
/* GstFooSink -> foosinkN */
|
2006-07-07 17:16:26 +00:00
|
|
|
type_name = g_quark_to_string (q);
|
2002-03-03 00:44:41 +00:00
|
|
|
if (strncmp (type_name, "Gst", 3) == 0)
|
|
|
|
type_name += 3;
|
|
|
|
tmp = g_strdup_printf ("%s%d", type_name, count);
|
gst/gstcaps.c: Callgrind micro optimisations.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_copy), (_gst_caps_free),
(gst_caps_merge_structure), (gst_caps_get_structure),
(gst_caps_copy_nth), (gst_caps_set_simple),
(gst_caps_set_simple_valist), (gst_caps_is_fixed),
(gst_caps_is_equal_fixed), (gst_caps_intersect),
(gst_caps_subtract), (gst_caps_normalize), (gst_caps_do_simplify),
(gst_caps_to_string):
Callgrind micro optimisations.
Avoid array bounds checks and force inline of trivial function.
* gst/gstobject.c: (gst_object_set_name_default):
-1 is equivalent to letting glib to the strlen but then there is more
room for optimisations and it's not our fault.
* gst/gststructure.c: (gst_structure_id_empty_new_with_size):
no need to clear the array, we're cool.
* gst/gstvalue.c: (gst_type_is_fixed), (gst_value_is_fixed):
The most common _is_fixed() check is done on fundamental glib base
types so we check this first instead of doing a huge amount of
useless GST_TYPE_ARRAY calls.
2008-11-06 15:09:34 +00:00
|
|
|
name = g_ascii_strdown (tmp, -1);
|
2002-03-03 00:44:41 +00:00
|
|
|
g_free (tmp);
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
result = gst_object_set_name (object, name);
|
2002-02-20 21:31:16 +00:00
|
|
|
g_free (name);
|
2005-03-07 18:27:42 +00:00
|
|
|
|
|
|
|
return result;
|
2002-02-20 21:31:16 +00:00
|
|
|
}
|
|
|
|
|
2001-01-29 00:06:02 +00:00
|
|
|
/**
|
|
|
|
* gst_object_set_name:
|
2007-04-20 08:39:35 +00:00
|
|
|
* @object: a #GstObject
|
2005-03-07 18:27:42 +00:00
|
|
|
* @name: new name of object
|
2001-01-29 00:06:02 +00:00
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* Sets the name of @object, or gives @object a guaranteed unique
|
2002-08-28 10:45:57 +00:00
|
|
|
* name (if @name is NULL).
|
2005-03-07 18:27:42 +00:00
|
|
|
* This function makes a copy of the provided name, so the caller
|
|
|
|
* retains ownership of the name it sent.
|
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* Returns: TRUE if the name could be set. Since Objects that have
|
|
|
|
* a parent cannot be renamed, this function returns FALSE in those
|
|
|
|
* cases.
|
2005-03-07 18:27:42 +00:00
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* MT safe. This function grabs and releases @object's LOCK.
|
2001-01-29 00:06:02 +00:00
|
|
|
*/
|
2005-03-07 18:27:42 +00:00
|
|
|
gboolean
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_object_set_name (GstObject * object, const gchar * name)
|
2001-01-29 00:06:02 +00:00
|
|
|
{
|
2005-03-07 18:27:42 +00:00
|
|
|
gboolean result;
|
2001-01-29 00:06:02 +00:00
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
g_return_val_if_fail (GST_IS_OBJECT (object), FALSE);
|
|
|
|
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_LOCK (object);
|
2001-01-29 00:06:02 +00:00
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
/* parented objects cannot be renamed */
|
|
|
|
if (G_UNLIKELY (object->parent != NULL))
|
|
|
|
goto had_parent;
|
|
|
|
|
|
|
|
if (name != NULL) {
|
|
|
|
g_free (object->name);
|
2002-02-20 21:31:16 +00:00
|
|
|
object->name = g_strdup (name);
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (object);
|
2005-03-07 18:27:42 +00:00
|
|
|
result = TRUE;
|
|
|
|
} else {
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (object);
|
2006-07-07 17:16:26 +00:00
|
|
|
result = gst_object_set_name_default (object);
|
2005-03-07 18:27:42 +00:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
|
|
|
|
/* error */
|
|
|
|
had_parent:
|
|
|
|
{
|
2007-03-13 14:53:21 +00:00
|
|
|
GST_WARNING ("parented objects can't be renamed");
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (object);
|
2005-03-07 18:27:42 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2001-01-29 00:06:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_object_get_name:
|
2005-11-09 17:32:10 +00:00
|
|
|
* @object: a #GstObject
|
2005-03-07 18:27:42 +00:00
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* Returns a copy of the name of @object.
|
2005-03-07 18:27:42 +00:00
|
|
|
* Caller should g_free() the return value after usage.
|
|
|
|
* For a nameless object, this returns NULL, which you can safely g_free()
|
|
|
|
* as well.
|
2001-01-29 00:06:02 +00:00
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* Returns: the name of @object. g_free() after usage.
|
2001-01-29 00:06:02 +00:00
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* MT safe. This function grabs and releases @object's LOCK.
|
2001-01-29 00:06:02 +00:00
|
|
|
*/
|
2005-03-07 18:27:42 +00:00
|
|
|
gchar *
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_object_get_name (GstObject * object)
|
2001-01-29 00:06:02 +00:00
|
|
|
{
|
2005-03-07 18:27:42 +00:00
|
|
|
gchar *result = NULL;
|
|
|
|
|
2001-01-29 00:06:02 +00:00
|
|
|
g_return_val_if_fail (GST_IS_OBJECT (object), NULL);
|
|
|
|
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_LOCK (object);
|
2005-03-07 18:27:42 +00:00
|
|
|
result = g_strdup (object->name);
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (object);
|
2005-03-07 18:27:42 +00:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_object_set_name_prefix:
|
2007-04-20 08:39:35 +00:00
|
|
|
* @object: a #GstObject
|
2005-11-09 17:32:10 +00:00
|
|
|
* @name_prefix: new name prefix of @object
|
2005-03-07 18:27:42 +00:00
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* Sets the name prefix of @object to @name_prefix.
|
2005-03-07 18:27:42 +00:00
|
|
|
* This function makes a copy of the provided name prefix, so the caller
|
|
|
|
* retains ownership of the name prefix it sent.
|
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* MT safe. This function grabs and releases @object's LOCK.
|
2005-03-07 18:27:42 +00:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_object_set_name_prefix (GstObject * object, const gchar * name_prefix)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GST_IS_OBJECT (object));
|
|
|
|
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_LOCK (object);
|
2005-03-07 18:27:42 +00:00
|
|
|
g_free (object->name_prefix);
|
|
|
|
object->name_prefix = g_strdup (name_prefix); /* NULL gives NULL */
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (object);
|
2005-03-07 18:27:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_object_get_name_prefix:
|
2007-04-20 08:39:35 +00:00
|
|
|
* @object: a #GstObject
|
2005-03-07 18:27:42 +00:00
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* Returns a copy of the name prefix of @object.
|
2005-03-07 18:27:42 +00:00
|
|
|
* Caller should g_free() the return value after usage.
|
|
|
|
* For a prefixless object, this returns NULL, which you can safely g_free()
|
|
|
|
* as well.
|
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* Returns: the name prefix of @object. g_free() after usage.
|
2005-03-07 18:27:42 +00:00
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* MT safe. This function grabs and releases @object's LOCK.
|
2005-03-07 18:27:42 +00:00
|
|
|
*/
|
|
|
|
gchar *
|
|
|
|
gst_object_get_name_prefix (GstObject * object)
|
|
|
|
{
|
|
|
|
gchar *result = NULL;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GST_IS_OBJECT (object), NULL);
|
|
|
|
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_LOCK (object);
|
2005-03-07 18:27:42 +00:00
|
|
|
result = g_strdup (object->name_prefix);
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (object);
|
2005-03-07 18:27:42 +00:00
|
|
|
|
|
|
|
return result;
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_object_set_parent:
|
2007-04-20 08:39:35 +00:00
|
|
|
* @object: a #GstObject
|
2000-01-30 09:03:00 +00:00
|
|
|
* @parent: new parent of object
|
|
|
|
*
|
2007-04-20 08:39:35 +00:00
|
|
|
* Sets the parent of @object to @parent. The object's reference count will
|
2005-11-09 17:32:10 +00:00
|
|
|
* be incremented, and any floating reference will be removed (see gst_object_sink()).
|
gst/gstpad.c (gst_pad_custom_new): Add a FIXME, this is a hacky way to do inheritance.
Original commit message from CVS:
2004-02-10 Andy Wingo <wingo@pobox.com>
* gst/gstpad.c (gst_pad_custom_new): Add a FIXME, this is a hacky
way to do inheritance.
(gst_pad_get_event_masks, gst_pad_get_event_masks_default)
(gst_pad_get_query_types, gst_pad_get_query_types_default):
Routine docs.
(gst_pad_set_link_function, gst_pad_set_fixate_function)
(gst_pad_set_getcaps_function): Doc from Dave's negotation random
doc.
(gst_pad_unlink, gst_pad_is_linked): Docs.
(gst_pad_renegotiate): A brief description of capsnego.
(gst_pad_try_set_caps): Document.
(gst_pad_try_set_caps_nonfixed): Document.
(gst_pad_can_link_filtered, gst_pad_link_filtered): Doc fixes.
(gst_pad_set_parent): Deprecated (although not out of the API).
(gst_pad_get_parent): Deprecated, although many plugins use this.
(gst_pad_add_ghost_pad, gst_pad_remove_ghost_pad): Doc that these
are private and will go away in 0.9.
(gst_pad_perform_negotiate): Doc.
(gst_pad_link_unnegotiate): I think this is meant to be static.
(gst_pad_get_negotiated_caps, gst_pad_get_pad_template_caps)
(gst_pad_template_get_caps_by_name, gst_pad_check_compatibility)
(gst_pad_get_peer): Doc updates.
(gst_pad_caps_change_notify): Doc.
(gst_pad_alloc_buffer, gst_pad_push, gst_static_pad_template_get)
(gst_ghost_pad_new): Doc fixes.
* gst/gstobject.c (gst_object_get_parent, gst_object_unparent)
(gst_object_check_uniqueness):
* gst/gstelement.c (gst_element_add_pad)
(gst_element_add_ghost_pad, gst_element_remove_pad)
(gst_element_remove_ghost_pad, gst_element_get_pad)
(gst_element_get_static_pad, gst_element_get_pad_list)
(gst_element_class_get_pad_template_list)
(gst_element_class_get_pad_template): Work on the docs.
(gst_element_get_pad_template_list): Uses the class method.
(gst_element_get_compatible_pad_template): Docs, and consolidate
some test conditions.
(gst_element_get_pad_from_template): New static function.
(gst_element_request_compatible_pad): Docs, and work with
non-request compatible templates.
(gst_element_get_compatible_pad_filtered): Docs and remove
redundant checks.
(gst_element_get_compatible_pad, gst_element_link_pads_filtered)
(gst_element_link_filtered, gst_element_link_many)
(gst_element_link, gst_element_link_pads)
(gst_element_unlink_many): Docs.
2004-02-05 Andy Wingo <wingo@pobox.com>
* gst/gstpad.c (_gst_real_pad_fixate_accumulator):
s/pointer/boxed/.
* gst/gstmarshal.list (VOID:BOXED, BOXED:BOXED): New marshallers.
* gst/gstpad.c (gst_real_pad_class_init): Use a BOXED:BOXED
marshaller for ::fixate, and VOID:BOXED for ::caps-nego-failed,
with the type=GST_TYPE_CAPS. This allows language bindings to know
what kind of data they're dealing with.
* gst/gstcaps.c (_gst_caps_value_init): GBoxed values initialize
to NULL when g_value_init is called. GstCaps, which rolls its own
type implementation, now does the same instead of allocating empty
caps.
(_gst_caps_initialize, _gst_caps_collect_value,
_gst_caps_lcopy_value): Provide collect_value and lcopy_value type
table methods. This allows G_VALUE_COLLECT to work.
2004-02-05 Andy Wingo <wingo@pobox.com>
* configure.ac:
* testsuite/Makefile.am (SUBDIRS):
* testsuite/ghostpads/Makefile.am:
* testsuite/ghostpads/ghostpads.c: A new test for ghost pads.
* gst/gstpad.c (gst_pad_add_ghost_pad, gst_pad_remove_ghost_pad):
These two routines are the only ones that set
GST_GPAD_REALPAD(gpad), the ghost pad list, and the ghost pad's
pad template. They should be made static, depending on ABI needs.
(gst_real_pad_dispose): Handle the case of ghost pads without a
parent. Assert after dealing with ghost pads that the ghost pad
list is empty.
(gst_ghost_pad_class_init): New property added, ::real-pad. Can be
set after creation.
(gst_ghost_pad_dispose): Set ::real-pad to NULL.
(gst_ghost_pad_set_property, gst_ghost_pad_get_property): New
functions. set_property will call add_ghost_pad/remove_ghost_pad
as appropriate.
(gst_ghost_pad_new): All the work is offloaded to g_object_new.
* gst/gstelement.c (gst_element_add_pad): Handle ghost pads as well.
(gst_element_add_ghost_pad): Remove code duplicated from _add_pad.
(gst_element_remove_pad): Handle ghost pads as well.
(gst_element_remove_ghost_pad): Deprecated (could be removed,
depending on API-stability needs).
2004-02-05 Andy Wingo <wingo@pobox.com>
* gst/gstbin.[ch]: (gst_bin_get_by_interface): GTypes are scalars,
of course they're const
2004-02-11 13:26:04 +00:00
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* This function causes the parent-set signal to be emitted when the parent
|
|
|
|
* was successfully set.
|
2005-03-07 18:27:42 +00:00
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* Returns: TRUE if @parent could be set or FALSE when @object
|
|
|
|
* already had a parent or @object and @parent are the same.
|
2005-03-07 18:27:42 +00:00
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* MT safe. Grabs and releases @object's LOCK.
|
2000-01-30 09:03:00 +00:00
|
|
|
*/
|
2005-03-07 18:27:42 +00:00
|
|
|
gboolean
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_object_set_parent (GstObject * object, GstObject * parent)
|
2001-01-29 00:06:02 +00:00
|
|
|
{
|
2005-03-07 18:27:42 +00:00
|
|
|
g_return_val_if_fail (GST_IS_OBJECT (object), FALSE);
|
|
|
|
g_return_val_if_fail (GST_IS_OBJECT (parent), FALSE);
|
|
|
|
g_return_val_if_fail (object != parent, FALSE);
|
2000-12-29 10:02:17 +00:00
|
|
|
|
2005-09-27 18:33:48 +00:00
|
|
|
GST_CAT_DEBUG_OBJECT (GST_CAT_REFCOUNTING, object,
|
|
|
|
"set parent (ref and sink)");
|
2005-03-07 18:27:42 +00:00
|
|
|
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_LOCK (object);
|
2005-03-07 18:27:42 +00:00
|
|
|
if (G_UNLIKELY (object->parent != NULL))
|
|
|
|
goto had_parent;
|
|
|
|
|
|
|
|
/* sink object, we don't call our own function because we don't
|
|
|
|
* need to release/acquire the lock needlessly or touch the refcount
|
|
|
|
* in the floating case. */
|
2000-01-30 09:03:00 +00:00
|
|
|
object->parent = parent;
|
2005-03-07 18:27:42 +00:00
|
|
|
if (G_LIKELY (GST_OBJECT_IS_FLOATING (object))) {
|
2005-10-17 14:37:06 +00:00
|
|
|
GST_CAT_LOG_OBJECT (GST_CAT_REFCOUNTING, object, "unsetting floating flag");
|
renamed GST_FLAGS macros to GST_OBJECT_FLAGS moved bitshift from macro to enum definition
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
* docs/gst/gstreamer-sections.txt:
* gst/base/gstbasesink.c: (gst_base_sink_init):
* gst/base/gstbasesrc.c: (gst_base_src_init),
(gst_base_src_get_range), (gst_base_src_check_get_range),
(gst_base_src_start), (gst_base_src_stop):
* gst/base/gstbasesrc.h:
* gst/elements/gstfakesrc.c: (gst_fake_src_set_property):
* gst/gstbin.c: (gst_bin_add_func), (gst_bin_remove_func),
(bin_element_is_sink), (reset_degree), (gst_bin_element_set_state),
(bin_bus_handler):
* gst/gstbin.h:
* gst/gstbuffer.h:
* gst/gstbus.c: (gst_bus_post), (gst_bus_set_flushing):
* gst/gstbus.h:
* gst/gstelement.c: (gst_element_is_locked_state),
(gst_element_set_locked_state), (gst_element_commit_state),
(gst_element_set_state):
* gst/gstelement.h:
* gst/gstindex.c: (gst_index_init):
* gst/gstindex.h:
* gst/gstminiobject.h:
* gst/gstobject.c: (gst_object_init), (gst_object_sink),
(gst_object_set_parent):
* gst/gstobject.h:
* gst/gstpad.c: (gst_pad_set_blocked_async), (gst_pad_is_blocked),
(gst_pad_get_caps_unlocked), (gst_pad_set_caps):
* gst/gstpad.h:
* gst/gstpadtemplate.h:
* gst/gstpipeline.c: (gst_pipeline_provide_clock_func),
(gst_pipeline_use_clock), (gst_pipeline_auto_clock):
* gst/gstpipeline.h:
* gst/indexers/gstfileindex.c: (gst_file_index_load),
(gst_file_index_commit):
* testsuite/bytestream/filepadsink.c: (gst_fp_sink_init):
* testsuite/pad/link.c: (gst_test_src_init),
(gst_test_filter_init), (gst_test_sink_init):
* testsuite/states/locked.c: (main):
renamed GST_FLAGS macros to GST_OBJECT_FLAGS
moved bitshift from macro to enum definition
2005-10-12 14:28:39 +00:00
|
|
|
GST_OBJECT_FLAG_UNSET (object, GST_OBJECT_FLOATING);
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (object);
|
2005-03-07 18:27:42 +00:00
|
|
|
} else {
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (object);
|
2005-03-07 18:27:42 +00:00
|
|
|
gst_object_ref (object);
|
|
|
|
}
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2009-05-02 12:43:11 +00:00
|
|
|
g_signal_emit (object, gst_object_signals[PARENT_SET], 0, parent);
|
Docs updates, clean up some headers.
Original commit message from CVS:
* docs/design/part-MT-refcounting.txt:
* docs/design/part-conventions.txt:
* docs/design/part-gstobject.txt:
* docs/design/part-relations.txt:
* docs/design/part-standards.txt:
* gst/gstbin.c: (gst_bin_add_func), (gst_bin_add),
(gst_bin_remove_func), (gst_bin_remove), (gst_bin_iterate_recurse),
(gst_bin_get_by_name), (gst_bin_get_by_interface),
(gst_bin_iterate_all_by_interface):
* gst/gstbuffer.h:
* gst/gstclock.h:
* gst/gstelement.c: (gst_element_class_init),
(gst_element_change_state), (gst_element_set_loop_function):
* gst/gstelement.h:
* gst/gstiterator.c:
* gst/gstobject.c: (gst_object_class_init), (gst_object_ref),
(gst_object_unref), (gst_object_sink), (gst_object_dispose),
(gst_object_dispatch_properties_changed), (gst_object_set_name),
(gst_object_set_parent), (gst_object_unparent),
(gst_object_check_uniqueness):
* gst/gstobject.h:
Docs updates, clean up some headers.
Free iterators in GstBin.
GstObject is now looking good.
2005-03-08 14:38:06 +00:00
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
return TRUE;
|
|
|
|
|
Docs updates, clean up some headers.
Original commit message from CVS:
* docs/design/part-MT-refcounting.txt:
* docs/design/part-conventions.txt:
* docs/design/part-gstobject.txt:
* docs/design/part-relations.txt:
* docs/design/part-standards.txt:
* gst/gstbin.c: (gst_bin_add_func), (gst_bin_add),
(gst_bin_remove_func), (gst_bin_remove), (gst_bin_iterate_recurse),
(gst_bin_get_by_name), (gst_bin_get_by_interface),
(gst_bin_iterate_all_by_interface):
* gst/gstbuffer.h:
* gst/gstclock.h:
* gst/gstelement.c: (gst_element_class_init),
(gst_element_change_state), (gst_element_set_loop_function):
* gst/gstelement.h:
* gst/gstiterator.c:
* gst/gstobject.c: (gst_object_class_init), (gst_object_ref),
(gst_object_unref), (gst_object_sink), (gst_object_dispose),
(gst_object_dispatch_properties_changed), (gst_object_set_name),
(gst_object_set_parent), (gst_object_unparent),
(gst_object_check_uniqueness):
* gst/gstobject.h:
Docs updates, clean up some headers.
Free iterators in GstBin.
GstObject is now looking good.
2005-03-08 14:38:06 +00:00
|
|
|
/* ERROR handling */
|
2005-03-07 18:27:42 +00:00
|
|
|
had_parent:
|
|
|
|
{
|
2006-09-15 08:43:44 +00:00
|
|
|
GST_CAT_DEBUG_OBJECT (GST_CAT_REFCOUNTING, object,
|
|
|
|
"set parent failed, object already had a parent");
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (object);
|
2005-03-07 18:27:42 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_object_get_parent:
|
2007-04-20 08:39:35 +00:00
|
|
|
* @object: a #GstObject
|
2000-01-30 09:03:00 +00:00
|
|
|
*
|
2005-03-07 18:27:42 +00:00
|
|
|
* Returns the parent of @object. This function increases the refcount
|
|
|
|
* of the parent object so you should gst_object_unref() it after usage.
|
2000-01-30 09:03:00 +00:00
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* Returns: parent of @object, this can be NULL if @object has no
|
2005-03-07 18:27:42 +00:00
|
|
|
* parent. unref after usage.
|
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* MT safe. Grabs and releases @object's LOCK.
|
2000-01-30 09:03:00 +00:00
|
|
|
*/
|
2004-03-13 15:27:01 +00:00
|
|
|
GstObject *
|
|
|
|
gst_object_get_parent (GstObject * object)
|
2001-01-29 00:06:02 +00:00
|
|
|
{
|
2005-03-07 18:27:42 +00:00
|
|
|
GstObject *result = NULL;
|
|
|
|
|
2001-01-29 00:06:02 +00:00
|
|
|
g_return_val_if_fail (GST_IS_OBJECT (object), NULL);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_LOCK (object);
|
2005-03-07 18:27:42 +00:00
|
|
|
result = object->parent;
|
|
|
|
if (G_LIKELY (result))
|
|
|
|
gst_object_ref (result);
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (object);
|
2005-03-07 18:27:42 +00:00
|
|
|
|
|
|
|
return result;
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_object_unparent:
|
2005-11-09 17:32:10 +00:00
|
|
|
* @object: a #GstObject to unparent
|
2000-01-30 09:03:00 +00:00
|
|
|
*
|
gst/gstpad.c (gst_pad_custom_new): Add a FIXME, this is a hacky way to do inheritance.
Original commit message from CVS:
2004-02-10 Andy Wingo <wingo@pobox.com>
* gst/gstpad.c (gst_pad_custom_new): Add a FIXME, this is a hacky
way to do inheritance.
(gst_pad_get_event_masks, gst_pad_get_event_masks_default)
(gst_pad_get_query_types, gst_pad_get_query_types_default):
Routine docs.
(gst_pad_set_link_function, gst_pad_set_fixate_function)
(gst_pad_set_getcaps_function): Doc from Dave's negotation random
doc.
(gst_pad_unlink, gst_pad_is_linked): Docs.
(gst_pad_renegotiate): A brief description of capsnego.
(gst_pad_try_set_caps): Document.
(gst_pad_try_set_caps_nonfixed): Document.
(gst_pad_can_link_filtered, gst_pad_link_filtered): Doc fixes.
(gst_pad_set_parent): Deprecated (although not out of the API).
(gst_pad_get_parent): Deprecated, although many plugins use this.
(gst_pad_add_ghost_pad, gst_pad_remove_ghost_pad): Doc that these
are private and will go away in 0.9.
(gst_pad_perform_negotiate): Doc.
(gst_pad_link_unnegotiate): I think this is meant to be static.
(gst_pad_get_negotiated_caps, gst_pad_get_pad_template_caps)
(gst_pad_template_get_caps_by_name, gst_pad_check_compatibility)
(gst_pad_get_peer): Doc updates.
(gst_pad_caps_change_notify): Doc.
(gst_pad_alloc_buffer, gst_pad_push, gst_static_pad_template_get)
(gst_ghost_pad_new): Doc fixes.
* gst/gstobject.c (gst_object_get_parent, gst_object_unparent)
(gst_object_check_uniqueness):
* gst/gstelement.c (gst_element_add_pad)
(gst_element_add_ghost_pad, gst_element_remove_pad)
(gst_element_remove_ghost_pad, gst_element_get_pad)
(gst_element_get_static_pad, gst_element_get_pad_list)
(gst_element_class_get_pad_template_list)
(gst_element_class_get_pad_template): Work on the docs.
(gst_element_get_pad_template_list): Uses the class method.
(gst_element_get_compatible_pad_template): Docs, and consolidate
some test conditions.
(gst_element_get_pad_from_template): New static function.
(gst_element_request_compatible_pad): Docs, and work with
non-request compatible templates.
(gst_element_get_compatible_pad_filtered): Docs and remove
redundant checks.
(gst_element_get_compatible_pad, gst_element_link_pads_filtered)
(gst_element_link_filtered, gst_element_link_many)
(gst_element_link, gst_element_link_pads)
(gst_element_unlink_many): Docs.
2004-02-05 Andy Wingo <wingo@pobox.com>
* gst/gstpad.c (_gst_real_pad_fixate_accumulator):
s/pointer/boxed/.
* gst/gstmarshal.list (VOID:BOXED, BOXED:BOXED): New marshallers.
* gst/gstpad.c (gst_real_pad_class_init): Use a BOXED:BOXED
marshaller for ::fixate, and VOID:BOXED for ::caps-nego-failed,
with the type=GST_TYPE_CAPS. This allows language bindings to know
what kind of data they're dealing with.
* gst/gstcaps.c (_gst_caps_value_init): GBoxed values initialize
to NULL when g_value_init is called. GstCaps, which rolls its own
type implementation, now does the same instead of allocating empty
caps.
(_gst_caps_initialize, _gst_caps_collect_value,
_gst_caps_lcopy_value): Provide collect_value and lcopy_value type
table methods. This allows G_VALUE_COLLECT to work.
2004-02-05 Andy Wingo <wingo@pobox.com>
* configure.ac:
* testsuite/Makefile.am (SUBDIRS):
* testsuite/ghostpads/Makefile.am:
* testsuite/ghostpads/ghostpads.c: A new test for ghost pads.
* gst/gstpad.c (gst_pad_add_ghost_pad, gst_pad_remove_ghost_pad):
These two routines are the only ones that set
GST_GPAD_REALPAD(gpad), the ghost pad list, and the ghost pad's
pad template. They should be made static, depending on ABI needs.
(gst_real_pad_dispose): Handle the case of ghost pads without a
parent. Assert after dealing with ghost pads that the ghost pad
list is empty.
(gst_ghost_pad_class_init): New property added, ::real-pad. Can be
set after creation.
(gst_ghost_pad_dispose): Set ::real-pad to NULL.
(gst_ghost_pad_set_property, gst_ghost_pad_get_property): New
functions. set_property will call add_ghost_pad/remove_ghost_pad
as appropriate.
(gst_ghost_pad_new): All the work is offloaded to g_object_new.
* gst/gstelement.c (gst_element_add_pad): Handle ghost pads as well.
(gst_element_add_ghost_pad): Remove code duplicated from _add_pad.
(gst_element_remove_pad): Handle ghost pads as well.
(gst_element_remove_ghost_pad): Deprecated (could be removed,
depending on API-stability needs).
2004-02-05 Andy Wingo <wingo@pobox.com>
* gst/gstbin.[ch]: (gst_bin_get_by_interface): GTypes are scalars,
of course they're const
2004-02-11 13:26:04 +00:00
|
|
|
* Clear the parent of @object, removing the associated reference.
|
2005-11-09 17:32:10 +00:00
|
|
|
* This function decreases the refcount of @object.
|
2005-03-07 18:27:42 +00:00
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* MT safe. Grabs and releases @object's lock.
|
2000-01-30 09:03:00 +00:00
|
|
|
*/
|
2001-01-29 00:06:02 +00:00
|
|
|
void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_object_unparent (GstObject * object)
|
2001-01-29 00:06:02 +00:00
|
|
|
{
|
2005-03-07 18:27:42 +00:00
|
|
|
GstObject *parent;
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
g_return_if_fail (GST_IS_OBJECT (object));
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_LOCK (object);
|
2005-03-07 18:27:42 +00:00
|
|
|
parent = object->parent;
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
if (G_LIKELY (parent != NULL)) {
|
|
|
|
GST_CAT_LOG_OBJECT (GST_CAT_REFCOUNTING, object, "unparent");
|
|
|
|
object->parent = NULL;
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (object);
|
2002-07-24 20:42:13 +00:00
|
|
|
|
2009-05-02 12:43:11 +00:00
|
|
|
g_signal_emit (object, gst_object_signals[PARENT_UNSET], 0, parent);
|
2005-03-07 18:27:42 +00:00
|
|
|
|
|
|
|
gst_object_unref (object);
|
|
|
|
} else {
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (object);
|
2005-03-07 18:27:42 +00:00
|
|
|
}
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2005-09-27 09:57:20 +00:00
|
|
|
/**
|
|
|
|
* gst_object_has_ancestor:
|
2005-11-09 17:32:10 +00:00
|
|
|
* @object: a #GstObject to check
|
|
|
|
* @ancestor: a #GstObject to check as ancestor
|
2005-09-27 09:57:20 +00:00
|
|
|
*
|
|
|
|
* Check if @object has an ancestor @ancestor somewhere up in
|
|
|
|
* the hierarchy.
|
|
|
|
*
|
|
|
|
* Returns: TRUE if @ancestor is an ancestor of @object.
|
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* MT safe. Grabs and releases @object's locks.
|
2005-09-27 09:57:20 +00:00
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gst_object_has_ancestor (GstObject * object, GstObject * ancestor)
|
|
|
|
{
|
2009-10-14 06:30:07 +00:00
|
|
|
GstObject *parent, *tmp;
|
2005-09-27 09:57:20 +00:00
|
|
|
|
2009-10-14 06:30:07 +00:00
|
|
|
if (!ancestor || !object)
|
2005-09-27 09:57:20 +00:00
|
|
|
return FALSE;
|
|
|
|
|
2009-10-14 06:30:07 +00:00
|
|
|
parent = gst_object_ref (object);
|
|
|
|
do {
|
|
|
|
if (parent == ancestor) {
|
|
|
|
gst_object_unref (parent);
|
|
|
|
return TRUE;
|
|
|
|
}
|
2005-09-27 09:57:20 +00:00
|
|
|
|
2009-10-14 06:30:07 +00:00
|
|
|
tmp = gst_object_get_parent (parent);
|
2005-09-27 09:57:20 +00:00
|
|
|
gst_object_unref (parent);
|
2009-10-14 06:30:07 +00:00
|
|
|
parent = tmp;
|
|
|
|
} while (parent);
|
2005-09-27 09:57:20 +00:00
|
|
|
|
2009-10-14 06:30:07 +00:00
|
|
|
return FALSE;
|
2005-09-27 09:57:20 +00:00
|
|
|
}
|
|
|
|
|
2000-02-02 06:26:44 +00:00
|
|
|
/**
|
2001-05-25 21:00:07 +00:00
|
|
|
* gst_object_check_uniqueness:
|
|
|
|
* @list: a list of #GstObject to check through
|
|
|
|
* @name: the name to search for
|
2000-02-02 06:26:44 +00:00
|
|
|
*
|
2005-03-07 18:27:42 +00:00
|
|
|
* Checks to see if there is any object named @name in @list. This function
|
|
|
|
* does not do any locking of any kind. You might want to protect the
|
|
|
|
* provided list with the lock of the owner of the list. This function
|
2005-11-09 17:32:10 +00:00
|
|
|
* will lock each #GstObject in the list to compare the name, so be
|
2005-03-07 18:27:42 +00:00
|
|
|
* carefull when passing a list with a locked object.
|
2001-05-25 21:00:07 +00:00
|
|
|
*
|
2007-04-20 08:39:35 +00:00
|
|
|
* Returns: TRUE if a #GstObject named @name does not appear in @list,
|
2005-11-09 17:32:10 +00:00
|
|
|
* FALSE if it does.
|
2005-03-07 18:27:42 +00:00
|
|
|
*
|
Docs updates, clean up some headers.
Original commit message from CVS:
* docs/design/part-MT-refcounting.txt:
* docs/design/part-conventions.txt:
* docs/design/part-gstobject.txt:
* docs/design/part-relations.txt:
* docs/design/part-standards.txt:
* gst/gstbin.c: (gst_bin_add_func), (gst_bin_add),
(gst_bin_remove_func), (gst_bin_remove), (gst_bin_iterate_recurse),
(gst_bin_get_by_name), (gst_bin_get_by_interface),
(gst_bin_iterate_all_by_interface):
* gst/gstbuffer.h:
* gst/gstclock.h:
* gst/gstelement.c: (gst_element_class_init),
(gst_element_change_state), (gst_element_set_loop_function):
* gst/gstelement.h:
* gst/gstiterator.c:
* gst/gstobject.c: (gst_object_class_init), (gst_object_ref),
(gst_object_unref), (gst_object_sink), (gst_object_dispose),
(gst_object_dispatch_properties_changed), (gst_object_set_name),
(gst_object_set_parent), (gst_object_unparent),
(gst_object_check_uniqueness):
* gst/gstobject.h:
Docs updates, clean up some headers.
Free iterators in GstBin.
GstObject is now looking good.
2005-03-08 14:38:06 +00:00
|
|
|
* MT safe. Grabs and releases the LOCK of each object in the list.
|
2000-02-02 06:26:44 +00:00
|
|
|
*/
|
2001-05-25 21:00:07 +00:00
|
|
|
gboolean
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_object_check_uniqueness (GList * list, const gchar * name)
|
2001-01-29 00:06:02 +00:00
|
|
|
{
|
2005-03-07 18:27:42 +00:00
|
|
|
gboolean result = TRUE;
|
|
|
|
|
2001-08-21 20:16:48 +00:00
|
|
|
g_return_val_if_fail (name != NULL, FALSE);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
for (; list; list = g_list_next (list)) {
|
|
|
|
GstObject *child;
|
|
|
|
gboolean eq;
|
2001-08-21 20:16:48 +00:00
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
child = GST_OBJECT (list->data);
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_LOCK (child);
|
2005-03-07 18:27:42 +00:00
|
|
|
eq = strcmp (GST_OBJECT_NAME (child), name) == 0;
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (child);
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
if (G_UNLIKELY (eq)) {
|
|
|
|
result = FALSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2007-04-20 08:39:35 +00:00
|
|
|
#ifndef GST_DISABLE_LOADSAVE
|
2001-04-17 21:14:55 +00:00
|
|
|
/**
|
|
|
|
* gst_object_save_thyself:
|
2005-11-09 17:32:10 +00:00
|
|
|
* @object: a #GstObject to save
|
|
|
|
* @parent: The parent XML node to save @object into
|
2001-04-17 21:14:55 +00:00
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* Saves @object into the parent XML node.
|
2001-04-17 21:14:55 +00:00
|
|
|
*
|
|
|
|
* Returns: the new xmlNodePtr with the saved object
|
|
|
|
*/
|
2001-01-29 00:06:02 +00:00
|
|
|
xmlNodePtr
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_object_save_thyself (GstObject * object, xmlNodePtr parent)
|
2001-01-29 00:06:02 +00:00
|
|
|
{
|
|
|
|
GstObjectClass *oclass;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GST_IS_OBJECT (object), parent);
|
|
|
|
g_return_val_if_fail (parent != NULL, parent);
|
|
|
|
|
2002-12-19 21:31:03 +00:00
|
|
|
oclass = GST_OBJECT_GET_CLASS (object);
|
|
|
|
|
2001-01-29 00:06:02 +00:00
|
|
|
if (oclass->save_thyself)
|
|
|
|
oclass->save_thyself (object, parent);
|
|
|
|
|
2009-05-02 12:43:11 +00:00
|
|
|
g_signal_emit (object, gst_object_signals[OBJECT_SAVED], 0, parent);
|
2001-01-29 00:06:02 +00:00
|
|
|
|
2001-01-30 23:53:04 +00:00
|
|
|
return parent;
|
2001-01-29 00:06:02 +00:00
|
|
|
}
|
2000-12-29 10:02:17 +00:00
|
|
|
|
2001-08-21 20:16:48 +00:00
|
|
|
/**
|
2001-10-21 18:00:31 +00:00
|
|
|
* gst_object_restore_thyself:
|
2005-11-09 17:32:10 +00:00
|
|
|
* @object: a #GstObject to load into
|
|
|
|
* @self: The XML node to load @object from
|
2001-08-21 20:16:48 +00:00
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* Restores @object with the data from the parent XML node.
|
2001-08-21 20:16:48 +00:00
|
|
|
*/
|
|
|
|
void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_object_restore_thyself (GstObject * object, xmlNodePtr self)
|
2001-08-21 20:16:48 +00:00
|
|
|
{
|
|
|
|
GstObjectClass *oclass;
|
|
|
|
|
|
|
|
g_return_if_fail (GST_IS_OBJECT (object));
|
2002-01-11 15:49:47 +00:00
|
|
|
g_return_if_fail (self != NULL);
|
2001-08-21 20:16:48 +00:00
|
|
|
|
2002-12-19 21:31:03 +00:00
|
|
|
oclass = GST_OBJECT_GET_CLASS (object);
|
|
|
|
|
2001-08-21 20:16:48 +00:00
|
|
|
if (oclass->restore_thyself)
|
2002-01-11 15:49:47 +00:00
|
|
|
oclass->restore_thyself (object, self);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_object_real_restore_thyself (GstObject * object, xmlNodePtr self)
|
2002-01-11 15:49:47 +00:00
|
|
|
{
|
|
|
|
g_return_if_fail (GST_IS_OBJECT (object));
|
|
|
|
g_return_if_fail (self != NULL);
|
2004-03-13 15:27:01 +00:00
|
|
|
|
|
|
|
gst_class_signal_emit_by_name (object, "object_loaded", self);
|
2001-08-21 20:16:48 +00:00
|
|
|
}
|
2007-04-20 08:39:35 +00:00
|
|
|
#endif /* GST_DISABLE_LOADSAVE */
|
2001-06-24 21:18:28 +00:00
|
|
|
|
2001-10-24 19:11:11 +00:00
|
|
|
static void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_object_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec)
|
2001-10-24 19:11:11 +00:00
|
|
|
{
|
|
|
|
GstObject *gstobject;
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2001-10-24 19:11:11 +00:00
|
|
|
gstobject = GST_OBJECT (object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case ARG_NAME:
|
|
|
|
gst_object_set_name (gstobject, g_value_get_string (value));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_object_get_property (GObject * object, guint prop_id,
|
|
|
|
GValue * value, GParamSpec * pspec)
|
2001-10-24 19:11:11 +00:00
|
|
|
{
|
|
|
|
GstObject *gstobject;
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2001-10-24 19:11:11 +00:00
|
|
|
gstobject = GST_OBJECT (object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case ARG_NAME:
|
2005-03-07 18:27:42 +00:00
|
|
|
g_value_take_string (value, gst_object_get_name (gstobject));
|
2001-10-24 19:11:11 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2002-04-12 09:38:47 +00:00
|
|
|
|
2000-12-30 16:13:17 +00:00
|
|
|
/**
|
|
|
|
* gst_object_get_path_string:
|
2005-11-09 17:32:10 +00:00
|
|
|
* @object: a #GstObject
|
2000-12-30 16:13:17 +00:00
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* Generates a string describing the path of @object in
|
gst/gstpad.c (gst_pad_custom_new): Add a FIXME, this is a hacky way to do inheritance.
Original commit message from CVS:
2004-02-10 Andy Wingo <wingo@pobox.com>
* gst/gstpad.c (gst_pad_custom_new): Add a FIXME, this is a hacky
way to do inheritance.
(gst_pad_get_event_masks, gst_pad_get_event_masks_default)
(gst_pad_get_query_types, gst_pad_get_query_types_default):
Routine docs.
(gst_pad_set_link_function, gst_pad_set_fixate_function)
(gst_pad_set_getcaps_function): Doc from Dave's negotation random
doc.
(gst_pad_unlink, gst_pad_is_linked): Docs.
(gst_pad_renegotiate): A brief description of capsnego.
(gst_pad_try_set_caps): Document.
(gst_pad_try_set_caps_nonfixed): Document.
(gst_pad_can_link_filtered, gst_pad_link_filtered): Doc fixes.
(gst_pad_set_parent): Deprecated (although not out of the API).
(gst_pad_get_parent): Deprecated, although many plugins use this.
(gst_pad_add_ghost_pad, gst_pad_remove_ghost_pad): Doc that these
are private and will go away in 0.9.
(gst_pad_perform_negotiate): Doc.
(gst_pad_link_unnegotiate): I think this is meant to be static.
(gst_pad_get_negotiated_caps, gst_pad_get_pad_template_caps)
(gst_pad_template_get_caps_by_name, gst_pad_check_compatibility)
(gst_pad_get_peer): Doc updates.
(gst_pad_caps_change_notify): Doc.
(gst_pad_alloc_buffer, gst_pad_push, gst_static_pad_template_get)
(gst_ghost_pad_new): Doc fixes.
* gst/gstobject.c (gst_object_get_parent, gst_object_unparent)
(gst_object_check_uniqueness):
* gst/gstelement.c (gst_element_add_pad)
(gst_element_add_ghost_pad, gst_element_remove_pad)
(gst_element_remove_ghost_pad, gst_element_get_pad)
(gst_element_get_static_pad, gst_element_get_pad_list)
(gst_element_class_get_pad_template_list)
(gst_element_class_get_pad_template): Work on the docs.
(gst_element_get_pad_template_list): Uses the class method.
(gst_element_get_compatible_pad_template): Docs, and consolidate
some test conditions.
(gst_element_get_pad_from_template): New static function.
(gst_element_request_compatible_pad): Docs, and work with
non-request compatible templates.
(gst_element_get_compatible_pad_filtered): Docs and remove
redundant checks.
(gst_element_get_compatible_pad, gst_element_link_pads_filtered)
(gst_element_link_filtered, gst_element_link_many)
(gst_element_link, gst_element_link_pads)
(gst_element_unlink_many): Docs.
2004-02-05 Andy Wingo <wingo@pobox.com>
* gst/gstpad.c (_gst_real_pad_fixate_accumulator):
s/pointer/boxed/.
* gst/gstmarshal.list (VOID:BOXED, BOXED:BOXED): New marshallers.
* gst/gstpad.c (gst_real_pad_class_init): Use a BOXED:BOXED
marshaller for ::fixate, and VOID:BOXED for ::caps-nego-failed,
with the type=GST_TYPE_CAPS. This allows language bindings to know
what kind of data they're dealing with.
* gst/gstcaps.c (_gst_caps_value_init): GBoxed values initialize
to NULL when g_value_init is called. GstCaps, which rolls its own
type implementation, now does the same instead of allocating empty
caps.
(_gst_caps_initialize, _gst_caps_collect_value,
_gst_caps_lcopy_value): Provide collect_value and lcopy_value type
table methods. This allows G_VALUE_COLLECT to work.
2004-02-05 Andy Wingo <wingo@pobox.com>
* configure.ac:
* testsuite/Makefile.am (SUBDIRS):
* testsuite/ghostpads/Makefile.am:
* testsuite/ghostpads/ghostpads.c: A new test for ghost pads.
* gst/gstpad.c (gst_pad_add_ghost_pad, gst_pad_remove_ghost_pad):
These two routines are the only ones that set
GST_GPAD_REALPAD(gpad), the ghost pad list, and the ghost pad's
pad template. They should be made static, depending on ABI needs.
(gst_real_pad_dispose): Handle the case of ghost pads without a
parent. Assert after dealing with ghost pads that the ghost pad
list is empty.
(gst_ghost_pad_class_init): New property added, ::real-pad. Can be
set after creation.
(gst_ghost_pad_dispose): Set ::real-pad to NULL.
(gst_ghost_pad_set_property, gst_ghost_pad_get_property): New
functions. set_property will call add_ghost_pad/remove_ghost_pad
as appropriate.
(gst_ghost_pad_new): All the work is offloaded to g_object_new.
* gst/gstelement.c (gst_element_add_pad): Handle ghost pads as well.
(gst_element_add_ghost_pad): Remove code duplicated from _add_pad.
(gst_element_remove_pad): Handle ghost pads as well.
(gst_element_remove_ghost_pad): Deprecated (could be removed,
depending on API-stability needs).
2004-02-05 Andy Wingo <wingo@pobox.com>
* gst/gstbin.[ch]: (gst_bin_get_by_interface): GTypes are scalars,
of course they're const
2004-02-11 13:26:04 +00:00
|
|
|
* the object hierarchy. Only useful (or used) for debugging.
|
2001-01-29 00:06:02 +00:00
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* Returns: a string describing the path of @object. You must
|
2005-10-15 15:30:24 +00:00
|
|
|
* g_free() the string after usage.
|
2005-03-07 18:27:42 +00:00
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* MT safe. Grabs and releases the #GstObject's LOCK for all objects
|
Docs updates, clean up some headers.
Original commit message from CVS:
* docs/design/part-MT-refcounting.txt:
* docs/design/part-conventions.txt:
* docs/design/part-gstobject.txt:
* docs/design/part-relations.txt:
* docs/design/part-standards.txt:
* gst/gstbin.c: (gst_bin_add_func), (gst_bin_add),
(gst_bin_remove_func), (gst_bin_remove), (gst_bin_iterate_recurse),
(gst_bin_get_by_name), (gst_bin_get_by_interface),
(gst_bin_iterate_all_by_interface):
* gst/gstbuffer.h:
* gst/gstclock.h:
* gst/gstelement.c: (gst_element_class_init),
(gst_element_change_state), (gst_element_set_loop_function):
* gst/gstelement.h:
* gst/gstiterator.c:
* gst/gstobject.c: (gst_object_class_init), (gst_object_ref),
(gst_object_unref), (gst_object_sink), (gst_object_dispose),
(gst_object_dispatch_properties_changed), (gst_object_set_name),
(gst_object_set_parent), (gst_object_unparent),
(gst_object_check_uniqueness):
* gst/gstobject.h:
Docs updates, clean up some headers.
Free iterators in GstBin.
GstObject is now looking good.
2005-03-08 14:38:06 +00:00
|
|
|
* in the hierarchy.
|
2000-12-30 16:13:17 +00:00
|
|
|
*/
|
2004-03-13 15:27:01 +00:00
|
|
|
gchar *
|
|
|
|
gst_object_get_path_string (GstObject * object)
|
2000-12-30 16:13:17 +00:00
|
|
|
{
|
2005-03-07 18:27:42 +00:00
|
|
|
GSList *parentage;
|
2000-12-29 10:02:17 +00:00
|
|
|
GSList *parents;
|
|
|
|
void *parent;
|
2001-03-07 21:52:56 +00:00
|
|
|
gchar *prevpath, *path;
|
2008-08-27 07:18:37 +00:00
|
|
|
const gchar *typename;
|
2005-03-07 18:27:42 +00:00
|
|
|
gchar *component;
|
|
|
|
gchar *separator;
|
2000-12-29 10:02:17 +00:00
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
/* ref object before adding to list */
|
|
|
|
gst_object_ref (object);
|
2000-12-29 10:02:17 +00:00
|
|
|
parentage = g_slist_prepend (NULL, object);
|
2001-01-29 00:06:02 +00:00
|
|
|
|
2001-03-07 21:52:56 +00:00
|
|
|
path = g_strdup ("");
|
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
/* first walk the object hierarchy to build a list of the parents,
|
|
|
|
* be carefull here with refcounting. */
|
2000-12-29 10:02:17 +00:00
|
|
|
do {
|
2001-01-29 00:06:02 +00:00
|
|
|
if (GST_IS_OBJECT (object)) {
|
|
|
|
parent = gst_object_get_parent (object);
|
2005-03-07 18:27:42 +00:00
|
|
|
/* add parents to list, refcount remains increased while
|
|
|
|
* we handle the object */
|
|
|
|
if (parent)
|
|
|
|
parentage = g_slist_prepend (parentage, parent);
|
2000-12-29 10:02:17 +00:00
|
|
|
} else {
|
2005-03-07 18:27:42 +00:00
|
|
|
break;
|
2000-12-29 10:02:17 +00:00
|
|
|
}
|
|
|
|
object = parent;
|
|
|
|
} while (object != NULL);
|
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
/* then walk the parent list and print them out. we need to
|
|
|
|
* decrease the refcounting on each element after we handled
|
|
|
|
* it. */
|
|
|
|
for (parents = parentage; parents; parents = g_slist_next (parents)) {
|
2008-08-27 07:18:37 +00:00
|
|
|
if (G_IS_OBJECT (parents->data)) {
|
|
|
|
typename = G_OBJECT_TYPE_NAME (parents->data);
|
|
|
|
} else {
|
|
|
|
typename = NULL;
|
|
|
|
}
|
2001-01-29 00:06:02 +00:00
|
|
|
if (GST_IS_OBJECT (parents->data)) {
|
2005-03-07 18:27:42 +00:00
|
|
|
GstObject *item = GST_OBJECT_CAST (parents->data);
|
|
|
|
GstObjectClass *oclass = GST_OBJECT_GET_CLASS (item);
|
2008-08-28 20:12:54 +00:00
|
|
|
gchar *objname = gst_object_get_name (item);
|
2001-01-29 00:06:02 +00:00
|
|
|
|
2008-08-28 20:12:54 +00:00
|
|
|
component = g_strdup_printf ("%s:%s", typename, objname);
|
2001-01-29 00:06:02 +00:00
|
|
|
separator = oclass->path_string_separator;
|
2005-03-07 18:27:42 +00:00
|
|
|
/* and unref now */
|
|
|
|
gst_object_unref (item);
|
2008-08-28 20:12:54 +00:00
|
|
|
g_free (objname);
|
2000-12-29 10:02:17 +00:00
|
|
|
} else {
|
2008-08-27 07:18:37 +00:00
|
|
|
if (typename) {
|
|
|
|
component = g_strdup_printf ("%s:%p", typename, parents->data);
|
|
|
|
} else {
|
|
|
|
component = g_strdup_printf ("%p", parents->data);
|
|
|
|
}
|
2000-12-29 10:02:17 +00:00
|
|
|
separator = "/";
|
|
|
|
}
|
2001-01-29 00:06:02 +00:00
|
|
|
|
2000-12-29 10:02:17 +00:00
|
|
|
prevpath = path;
|
2001-01-29 00:06:02 +00:00
|
|
|
path = g_strjoin (separator, prevpath, component, NULL);
|
2004-03-13 15:27:01 +00:00
|
|
|
g_free (prevpath);
|
2005-03-07 18:27:42 +00:00
|
|
|
g_free (component);
|
2000-12-29 10:02:17 +00:00
|
|
|
}
|
2001-01-29 00:06:02 +00:00
|
|
|
|
|
|
|
g_slist_free (parentage);
|
|
|
|
|
2000-12-29 10:02:17 +00:00
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
2006-04-08 20:57:31 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
struct _GstSignalObject
|
|
|
|
{
|
2001-06-25 01:20:11 +00:00
|
|
|
GObject object;
|
2001-01-30 23:53:04 +00:00
|
|
|
};
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
struct _GstSignalObjectClass
|
|
|
|
{
|
|
|
|
GObjectClass parent_class;
|
2001-01-30 23:53:04 +00:00
|
|
|
|
|
|
|
/* signals */
|
2007-04-20 08:39:35 +00:00
|
|
|
#ifndef GST_DISABLE_LOADSAVE
|
2004-03-13 15:27:01 +00:00
|
|
|
void (*object_loaded) (GstSignalObject * object, GstObject * new,
|
|
|
|
xmlNodePtr self);
|
2007-04-20 08:39:35 +00:00
|
|
|
#endif
|
2001-01-30 23:53:04 +00:00
|
|
|
};
|
|
|
|
|
2009-04-04 08:20:36 +00:00
|
|
|
G_DEFINE_TYPE (GstSignalObject, gst_signal_object, G_TYPE_OBJECT);
|
2001-01-30 23:53:04 +00:00
|
|
|
|
|
|
|
static void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_signal_object_class_init (GstSignalObjectClass * klass)
|
2001-01-30 23:53:04 +00:00
|
|
|
{
|
2006-04-08 20:57:31 +00:00
|
|
|
parent_class = g_type_class_peek_parent (klass);
|
2001-01-30 23:53:04 +00:00
|
|
|
|
2007-04-20 08:39:35 +00:00
|
|
|
#ifndef GST_DISABLE_LOADSAVE
|
2001-01-30 23:53:04 +00:00
|
|
|
gst_signal_object_signals[SO_OBJECT_LOADED] =
|
2004-03-13 15:27:01 +00:00
|
|
|
g_signal_new ("object-loaded", G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstSignalObjectClass, object_loaded),
|
|
|
|
NULL, NULL, gst_marshal_VOID__OBJECT_POINTER, G_TYPE_NONE, 2,
|
|
|
|
G_TYPE_OBJECT, G_TYPE_POINTER);
|
2001-06-24 21:18:28 +00:00
|
|
|
#endif
|
2001-01-30 23:53:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_signal_object_init (GstSignalObject * object)
|
2001-01-30 23:53:04 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2001-01-31 20:27:00 +00:00
|
|
|
/**
|
|
|
|
* gst_class_signal_connect
|
2005-11-09 17:32:10 +00:00
|
|
|
* @klass: a #GstObjectClass to attach the signal to
|
2001-01-31 20:27:00 +00:00
|
|
|
* @name: the name of the signal to attach to
|
|
|
|
* @func: the signal function
|
|
|
|
* @func_data: a pointer to user data
|
|
|
|
*
|
|
|
|
* Connect to a class signal.
|
|
|
|
*
|
|
|
|
* Returns: the signal id.
|
|
|
|
*/
|
2001-01-30 23:53:04 +00:00
|
|
|
guint
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_class_signal_connect (GstObjectClass * klass,
|
|
|
|
const gchar * name, gpointer func, gpointer func_data)
|
2001-01-30 23:53:04 +00:00
|
|
|
{
|
2006-10-06 14:46:04 +00:00
|
|
|
/* [0.11] func parameter needs to be changed to a GCallback *
|
|
|
|
* doing so now would be an API break. */
|
|
|
|
return g_signal_connect (klass->signal_object, name, G_CALLBACK (func),
|
|
|
|
func_data);
|
2001-01-30 23:53:04 +00:00
|
|
|
}
|
|
|
|
|
2007-04-20 08:39:35 +00:00
|
|
|
#ifndef GST_DISABLE_LOADSAVE
|
2001-01-31 20:27:00 +00:00
|
|
|
/**
|
|
|
|
* gst_class_signal_emit_by_name:
|
2005-11-09 17:32:10 +00:00
|
|
|
* @object: a #GstObject that emits the signal
|
2001-01-31 20:27:00 +00:00
|
|
|
* @name: the name of the signal to emit
|
|
|
|
* @self: data for the signal
|
|
|
|
*
|
|
|
|
* emits the named class signal.
|
|
|
|
*/
|
2001-01-30 23:53:04 +00:00
|
|
|
void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_class_signal_emit_by_name (GstObject * object,
|
|
|
|
const gchar * name, xmlNodePtr self)
|
2001-01-30 23:53:04 +00:00
|
|
|
{
|
|
|
|
GstObjectClass *oclass;
|
|
|
|
|
2002-12-19 21:31:03 +00:00
|
|
|
oclass = GST_OBJECT_GET_CLASS (object);
|
2001-01-30 23:53:04 +00:00
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
g_signal_emit_by_name (oclass->signal_object, name, object, self);
|
2001-01-30 23:53:04 +00:00
|
|
|
}
|
2001-06-24 21:18:28 +00:00
|
|
|
|
2007-04-20 08:39:35 +00:00
|
|
|
#endif /* GST_DISABLE_LOADSAVE */
|