Fix FSF address
[platform/upstream/gstreamer.git] / gst / gstobject.h
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *                    2000 Wim Taymans <wtay@chello.be>
4  *                    2005 Wim Taymans <wim@fluendo.com>
5  *
6  * gstobject.h: Header for base GstObject
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public
19  * License along with this library; if not, write to the
20  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
21  * Boston, MA 02110-1301, USA.
22  */
23
24 #ifndef __GST_OBJECT_H__
25 #define __GST_OBJECT_H__
26
27 #include <gst/gstconfig.h>
28
29 #include <glib-object.h>
30
31 G_BEGIN_DECLS
32
33 #define GST_TYPE_OBJECT                 (gst_object_get_type ())
34 #define GST_IS_OBJECT(obj)              (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_OBJECT))
35 #define GST_IS_OBJECT_CLASS(klass)      (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_OBJECT))
36 #define GST_OBJECT_GET_CLASS(obj)       (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_OBJECT, GstObjectClass))
37 #define GST_OBJECT(obj)                 (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_OBJECT, GstObject))
38 #define GST_OBJECT_CLASS(klass)         (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_OBJECT, GstObjectClass))
39 #define GST_OBJECT_CAST(obj)            ((GstObject*)(obj))
40 #define GST_OBJECT_CLASS_CAST(klass)    ((GstObjectClass*)(klass))
41
42 /**
43  * GstObjectFlags:
44  * @GST_OBJECT_FLAG_LAST: subclasses can add additional flags starting from this flag
45  *
46  * The standard flags that an gstobject may have.
47  */
48 typedef enum
49 {
50   /* padding */
51   GST_OBJECT_FLAG_LAST = (1<<4)
52 } GstObjectFlags;
53
54 /**
55  * GST_OBJECT_REFCOUNT:
56  * @obj: a #GstObject
57  *
58  * Get access to the reference count field of the object.
59  */
60 #define GST_OBJECT_REFCOUNT(obj)                (((GObject*)(obj))->ref_count)
61 /**
62  * GST_OBJECT_REFCOUNT_VALUE:
63  * @obj: a #GstObject
64  *
65  * Get the reference count value of the object.
66  */
67 #define GST_OBJECT_REFCOUNT_VALUE(obj)          g_atomic_int_get ((gint *) &GST_OBJECT_REFCOUNT(obj))
68
69 /* we do a GST_OBJECT_CAST to avoid type checking, better call these
70  * function with a valid object! */
71
72 /**
73  * GST_OBJECT_GET_LOCK:
74  * @obj: a #GstObject
75  *
76  * Acquire a reference to the mutex of this object.
77  */
78 #define GST_OBJECT_GET_LOCK(obj)               (&GST_OBJECT_CAST(obj)->lock)
79 /**
80  * GST_OBJECT_LOCK:
81  * @obj: a #GstObject to lock
82  *
83  * This macro will obtain a lock on the object, making serialization possible.
84  * It blocks until the lock can be obtained.
85  */
86 #define GST_OBJECT_LOCK(obj)                   g_mutex_lock(GST_OBJECT_GET_LOCK(obj))
87 /**
88  * GST_OBJECT_TRYLOCK:
89  * @obj: a #GstObject.
90  *
91  * This macro will try to obtain a lock on the object, but will return with
92  * FALSE if it can't get it immediately.
93  */
94 #define GST_OBJECT_TRYLOCK(obj)                g_mutex_trylock(GST_OBJECT_GET_LOCK(obj))
95 /**
96  * GST_OBJECT_UNLOCK:
97  * @obj: a #GstObject to unlock.
98  *
99  * This macro releases a lock on the object.
100  */
101 #define GST_OBJECT_UNLOCK(obj)                 g_mutex_unlock(GST_OBJECT_GET_LOCK(obj))
102
103
104 /**
105  * GST_OBJECT_NAME:
106  * @obj: a #GstObject
107  *
108  * Get the name of this object
109  */
110 #define GST_OBJECT_NAME(obj)            (GST_OBJECT_CAST(obj)->name)
111 /**
112  * GST_OBJECT_PARENT:
113  * @obj: a #GstObject
114  *
115  * Get the parent of this object
116  */
117 #define GST_OBJECT_PARENT(obj)          (GST_OBJECT_CAST(obj)->parent)
118
119
120 /**
121  * GST_OBJECT_FLAGS:
122  * @obj: a #GstObject
123  *
124  * This macro returns the entire set of flags for the object.
125  */
126 #define GST_OBJECT_FLAGS(obj)                  (GST_OBJECT_CAST (obj)->flags)
127 /**
128  * GST_OBJECT_FLAG_IS_SET:
129  * @obj: a #GstObject
130  * @flag: Flag to check for
131  *
132  * This macro checks to see if the given flag is set.
133  */
134 #define GST_OBJECT_FLAG_IS_SET(obj,flag)       ((GST_OBJECT_FLAGS (obj) & (flag)) == (flag))
135 /**
136  * GST_OBJECT_FLAG_SET:
137  * @obj: a #GstObject
138  * @flag: Flag to set
139  *
140  * This macro sets the given bits.
141  */
142 #define GST_OBJECT_FLAG_SET(obj,flag)          (GST_OBJECT_FLAGS (obj) |= (flag))
143 /**
144  * GST_OBJECT_FLAG_UNSET:
145  * @obj: a #GstObject
146  * @flag: Flag to set
147  *
148  * This macro usets the given bits.
149  */
150 #define GST_OBJECT_FLAG_UNSET(obj,flag)        (GST_OBJECT_FLAGS (obj) &= ~(flag))
151
152 typedef struct _GstObject GstObject;
153 typedef struct _GstObjectClass GstObjectClass;
154
155 /**
156  * GstObject:
157  * @lock: object LOCK
158  * @name: The name of the object
159  * @parent: this object's parent, weak ref
160  * @flags: flags for this object
161  *
162  * GStreamer base object class.
163  */
164 struct _GstObject {
165   GInitiallyUnowned object;
166
167   /*< public >*/ /* with LOCK */
168   GMutex         lock;        /* object LOCK */
169   gchar         *name;        /* object name */
170   GstObject     *parent;      /* this object's parent, weak ref */
171   guint32        flags;
172
173   /*< private >*/
174   GList         *control_bindings;  /* List of GstControlBinding */
175   guint64        control_rate;
176   guint64        last_sync;
177
178   gpointer _gst_reserved;
179 };
180
181 /**
182  * GstObjectClass:
183  * @parent_class: parent
184  * @path_string_separator: separator used by gst_object_get_path_string()
185  * @deep_notify: default signal handler
186  *
187  * GStreamer base object class.
188  */
189 struct _GstObjectClass {
190   GInitiallyUnownedClass parent_class;
191
192   const gchar   *path_string_separator;
193
194   /* signals */
195   void          (*deep_notify)      (GstObject * object, GstObject * orig, GParamSpec * pspec);
196
197   /*< public >*/
198   /* virtual methods for subclasses */
199
200   /*< private >*/
201   gpointer _gst_reserved[GST_PADDING];
202 };
203
204 /* normal GObject stuff */
205 GType           gst_object_get_type             (void);
206
207 /* name routines */
208 gboolean        gst_object_set_name             (GstObject *object, const gchar *name);
209 gchar*          gst_object_get_name             (GstObject *object);
210
211 /* parentage routines */
212 gboolean        gst_object_set_parent           (GstObject *object, GstObject *parent);
213 GstObject*      gst_object_get_parent           (GstObject *object);
214 void            gst_object_unparent             (GstObject *object);
215 gboolean        gst_object_has_ancestor         (GstObject *object, GstObject *ancestor);
216
217 void            gst_object_default_deep_notify  (GObject *object, GstObject *orig,
218                                                  GParamSpec *pspec, gchar **excluded_props);
219
220 /* refcounting + life cycle */
221 gpointer        gst_object_ref                  (gpointer object);
222 void            gst_object_unref                (gpointer object);
223 gpointer        gst_object_ref_sink             (gpointer object);
224
225 /* replace object pointer */
226 gboolean        gst_object_replace              (GstObject **oldobj, GstObject *newobj);
227
228 /* printing out the 'path' of the object */
229 gchar *         gst_object_get_path_string      (GstObject *object);
230
231 /* misc utils */
232 gboolean        gst_object_check_uniqueness     (GList *list, const gchar *name);
233
234 /* controller functions */
235 #include <gst/gstcontrolbinding.h>
236 #include <gst/gstcontrolsource.h>
237
238 GstClockTime    gst_object_suggest_next_sync      (GstObject * object);
239 gboolean        gst_object_sync_values            (GstObject * object, GstClockTime timestamp);
240
241 gboolean        gst_object_has_active_control_bindings   (GstObject *object);
242 void            gst_object_set_control_bindings_disabled (GstObject *object, gboolean disabled);
243 void            gst_object_set_control_binding_disabled  (GstObject *object,
244                                                           const gchar * property_name,
245                                                           gboolean disabled);
246
247 gboolean        gst_object_add_control_binding    (GstObject * object, GstControlBinding * binding);
248 GstControlBinding *
249                 gst_object_get_control_binding    (GstObject *object, const gchar * property_name);
250 gboolean        gst_object_remove_control_binding (GstObject * object, GstControlBinding * binding);
251
252 GValue *        gst_object_get_value              (GstObject * object, const gchar * property_name,
253                                                    GstClockTime timestamp);
254 gboolean        gst_object_get_value_array        (GstObject * object, const gchar * property_name,
255                                                    GstClockTime timestamp, GstClockTime interval,
256                                                    guint n_values, gpointer values);
257 gboolean        gst_object_get_g_value_array      (GstObject * object, const gchar * property_name,
258                                                    GstClockTime timestamp, GstClockTime interval,
259                                                    guint n_values, GValue *values);
260
261 GstClockTime    gst_object_get_control_rate       (GstObject * object);
262 void            gst_object_set_control_rate       (GstObject * object, GstClockTime control_rate);
263
264 G_END_DECLS
265
266 #endif /* __GST_OBJECT_H__ */
267