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>
|
|
|
|
*
|
|
|
|
* gstobject.h: Header for base GstObject
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __GST_OBJECT_H__
|
|
|
|
#define __GST_OBJECT_H__
|
|
|
|
|
2001-10-17 10:21:27 +00:00
|
|
|
#include <gst/gstconfig.h>
|
2001-06-25 01:20:11 +00:00
|
|
|
|
2001-12-15 18:15:13 +00:00
|
|
|
#include <glib-object.h> /* note that this gets wrapped in __GST_OBJECT_H__ */
|
2001-06-25 01:20:11 +00:00
|
|
|
|
2001-10-17 10:21:27 +00:00
|
|
|
#include <gst/gsttypes.h>
|
|
|
|
|
2004-03-15 14:43:35 +00:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2004-06-13 10:04:12 +00:00
|
|
|
GST_EXPORT GType _gst_object_type;
|
2001-10-17 10:21:27 +00:00
|
|
|
|
2003-12-13 16:58:29 +00:00
|
|
|
#define GST_TYPE_OBJECT (_gst_object_type)
|
|
|
|
#define GST_IS_OBJECT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_OBJECT))
|
|
|
|
#define GST_IS_OBJECT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_OBJECT))
|
|
|
|
#define GST_OBJECT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_OBJECT, GstObjectClass))
|
|
|
|
#define GST_OBJECT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_OBJECT, GstObject))
|
|
|
|
#define GST_OBJECT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_OBJECT, GstObjectClass))
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2003-02-10 20:32:32 +00:00
|
|
|
/* make sure we don't change the object size but stil make it compile
|
|
|
|
* without libxml */
|
|
|
|
#ifdef GST_DISABLE_LOADSAVE_REGISTRY
|
|
|
|
#define xmlNodePtr gpointer
|
|
|
|
#endif
|
|
|
|
|
2001-05-25 21:00:07 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
2004-03-15 14:43:35 +00:00
|
|
|
GST_DESTROYED = 0,
|
2001-05-25 21:00:07 +00:00
|
|
|
GST_FLOATING,
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2004-03-15 14:43:35 +00:00
|
|
|
GST_OBJECT_FLAG_LAST = 4
|
|
|
|
} GstObjectFlags;
|
2000-12-15 01:57:34 +00:00
|
|
|
|
2004-03-15 14:43:35 +00:00
|
|
|
struct _GstObject {
|
|
|
|
GObject object;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2004-03-15 14:43:35 +00:00
|
|
|
gchar *name;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2002-07-08 19:07:30 +00:00
|
|
|
/* locking for all sorts of things */
|
2004-03-15 14:43:35 +00:00
|
|
|
GMutex *lock;
|
2002-05-26 03:23:25 +00:00
|
|
|
/* this object's parent */
|
2004-03-15 14:43:35 +00:00
|
|
|
GstObject *parent;
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2004-03-15 14:43:35 +00:00
|
|
|
guint32 flags;
|
2003-10-07 21:58:42 +00:00
|
|
|
|
2003-12-09 02:39:31 +00:00
|
|
|
gpointer _gst_reserved[GST_PADDING];
|
2000-01-30 09:03:00 +00:00
|
|
|
};
|
|
|
|
|
2002-04-12 09:38:47 +00:00
|
|
|
/* signal_object is used to signal to the whole class */
|
2004-03-15 14:43:35 +00:00
|
|
|
struct _GstObjectClass {
|
|
|
|
GObjectClass parent_class;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2004-03-15 14:43:35 +00:00
|
|
|
gchar *path_string_separator;
|
|
|
|
GObject *signal_object;
|
2001-01-29 00:06:02 +00:00
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
/* signals */
|
2004-03-15 14:43:35 +00:00
|
|
|
void (*parent_set) (GstObject *object, GstObject *parent);
|
|
|
|
void (*parent_unset) (GstObject *object, GstObject *parent);
|
|
|
|
void (*object_saved) (GstObject *object, xmlNodePtr parent);
|
|
|
|
void (*deep_notify) (GstObject *object, GstObject *orig, GParamSpec *pspec);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
/* functions go here */
|
2004-03-15 14:43:35 +00:00
|
|
|
void (*destroy) (GstObject *object);
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2004-03-15 14:43:35 +00:00
|
|
|
xmlNodePtr (*save_thyself) (GstObject *object, xmlNodePtr parent);
|
|
|
|
void (*restore_thyself) (GstObject *object, xmlNodePtr self);
|
2002-12-19 21:31:03 +00:00
|
|
|
|
2003-12-09 02:39:31 +00:00
|
|
|
gpointer _gst_reserved[GST_PADDING];
|
2000-01-30 09:03:00 +00:00
|
|
|
};
|
|
|
|
|
2003-12-13 16:58:29 +00:00
|
|
|
#define GST_FLAGS(obj) (GST_OBJECT (obj)->flags)
|
2000-12-15 01:57:34 +00:00
|
|
|
#define GST_FLAG_IS_SET(obj,flag) (GST_FLAGS (obj) & (1<<(flag)))
|
|
|
|
#define GST_FLAG_SET(obj,flag) G_STMT_START{ (GST_FLAGS (obj) |= (1<<(flag))); }G_STMT_END
|
|
|
|
#define GST_FLAG_UNSET(obj,flag) G_STMT_START{ (GST_FLAGS (obj) &= ~(1<<(flag))); }G_STMT_END
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-05-25 21:00:07 +00:00
|
|
|
#define GST_OBJECT_NAME(obj) (const gchar*)(((GstObject *)(obj))->name)
|
|
|
|
#define GST_OBJECT_PARENT(obj) (((GstObject *)(obj))->parent)
|
|
|
|
|
|
|
|
#define GST_OBJECT_DESTROYED(obj) (GST_FLAG_IS_SET (obj, GST_DESTROYED))
|
|
|
|
#define GST_OBJECT_FLOATING(obj) (GST_FLAG_IS_SET (obj, GST_FLOATING))
|
|
|
|
|
2002-04-12 09:38:47 +00:00
|
|
|
/* CR1: object locking - GObject 2.0 doesn't have threadsafe locking */
|
2003-12-13 16:58:29 +00:00
|
|
|
#define GST_LOCK(obj) (g_mutex_lock(GST_OBJECT(obj)->lock))
|
|
|
|
#define GST_TRYLOCK(obj) (g_mutex_trylock(GST_OBJECT(obj)->lock))
|
|
|
|
#define GST_UNLOCK(obj) (g_mutex_unlock(GST_OBJECT(obj)->lock))
|
|
|
|
#define GST_GET_LOCK(obj) (GST_OBJECT(obj)->lock)
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
/* normal GObject stuff */
|
2004-03-15 14:43:35 +00:00
|
|
|
GType gst_object_get_type (void);
|
2001-01-29 00:06:02 +00:00
|
|
|
|
|
|
|
/* name routines */
|
2004-03-15 14:43:35 +00:00
|
|
|
void gst_object_set_name (GstObject *object, const gchar *name);
|
|
|
|
G_CONST_RETURN gchar*
|
|
|
|
gst_object_get_name (GstObject *object);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
/* parentage routines */
|
2004-03-15 14:43:35 +00:00
|
|
|
void gst_object_set_parent (GstObject *object, GstObject *parent);
|
|
|
|
GstObject* gst_object_get_parent (GstObject *object);
|
|
|
|
void gst_object_unparent (GstObject *object);
|
2001-01-29 00:06:02 +00:00
|
|
|
|
2004-03-15 14:43:35 +00:00
|
|
|
void 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 14:43:35 +00:00
|
|
|
gboolean gst_object_check_uniqueness (GList *list, const gchar *name);
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2001-10-17 10:21:27 +00:00
|
|
|
#ifndef GST_DISABLE_LOADSAVE_REGISTRY
|
2004-03-15 14:43:35 +00:00
|
|
|
xmlNodePtr gst_object_save_thyself (GstObject *object, xmlNodePtr parent);
|
|
|
|
void gst_object_restore_thyself (GstObject *object, xmlNodePtr self);
|
2001-06-25 06:45:56 +00:00
|
|
|
#else
|
2004-07-03 04:59:12 +00:00
|
|
|
#if defined _GNUC_ && _GNUC_ >= 3
|
2001-06-25 06:45:56 +00:00
|
|
|
#pragma GCC poison gst_object_save_thyself
|
2001-10-17 10:21:27 +00:00
|
|
|
#pragma GCC poison gst_object_restore_thyself
|
2001-06-24 21:18:28 +00:00
|
|
|
#endif
|
2004-07-03 04:59:12 +00:00
|
|
|
#endif
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2003-02-02 19:49:29 +00:00
|
|
|
/* refcounting + life cycle */
|
2004-03-15 14:43:35 +00:00
|
|
|
GstObject * gst_object_ref (GstObject *object);
|
|
|
|
void gst_object_unref (GstObject *object);
|
|
|
|
void gst_object_sink (GstObject *object);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2003-02-02 19:49:29 +00:00
|
|
|
/* replace object pointer */
|
2004-03-15 14:43:35 +00:00
|
|
|
void gst_object_replace (GstObject **oldobj, GstObject *newobj);
|
2003-02-02 19:49:29 +00:00
|
|
|
|
2000-12-29 10:02:17 +00:00
|
|
|
/* printing out the 'path' of the object */
|
2004-03-15 14:43:35 +00:00
|
|
|
gchar * gst_object_get_path_string (GstObject *object);
|
2000-12-29 10:02:17 +00:00
|
|
|
|
2004-03-15 14:43:35 +00:00
|
|
|
guint gst_class_signal_connect (GstObjectClass *klass,
|
|
|
|
const gchar *name,
|
|
|
|
gpointer func,
|
|
|
|
gpointer func_data);
|
2001-01-30 23:53:04 +00:00
|
|
|
|
2001-10-17 10:21:27 +00:00
|
|
|
#ifndef GST_DISABLE_LOADSAVE_REGISTRY
|
2004-03-15 14:43:35 +00:00
|
|
|
void gst_class_signal_emit_by_name (GstObject *object,
|
|
|
|
const gchar *name,
|
|
|
|
xmlNodePtr self);
|
2001-06-25 17:17:30 +00:00
|
|
|
#else
|
2004-07-03 04:59:12 +00:00
|
|
|
#if defined _GNUC_ && _GNUC_ >= 3
|
2001-06-25 06:45:56 +00:00
|
|
|
#pragma GCC poison gst_class_signal_emit_by_name
|
2001-06-24 21:18:28 +00:00
|
|
|
#endif
|
2004-07-03 04:59:12 +00:00
|
|
|
#endif
|
2001-01-30 23:53:04 +00:00
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2002-07-08 19:07:30 +00:00
|
|
|
G_END_DECLS
|
2004-03-15 14:43:35 +00:00
|
|
|
|
2001-01-29 00:06:02 +00:00
|
|
|
#endif /* __GST_OBJECT_H__ */
|
2004-03-15 14:43:35 +00:00
|
|
|
|