2 * Copyright (C) 2005 David Schleef <ds@schleef.org>
4 * gstminiobject.h: Header for GstMiniObject
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Library General Public License for more details.
16 * You should have received a copy of the GNU Library General Public
17 * License along with this library; if not, write to the
18 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 * Boston, MA 02111-1307, USA.
23 #ifndef __GST_MINI_OBJECT_H__
24 #define __GST_MINI_OBJECT_H__
26 #include <gst/gstconfig.h>
28 #include <glib-object.h>
32 #define GST_IS_MINI_OBJECT_TYPE(obj,type) ((obj) && GST_MINI_OBJECT_TYPE(obj) == (type))
33 #define GST_MINI_OBJECT_CAST(obj) ((GstMiniObject*)(obj))
34 #define GST_MINI_OBJECT_CONST_CAST(obj) ((const GstMiniObject*)(obj))
35 #define GST_MINI_OBJECT(obj) (GST_MINI_OBJECT_CAST(obj))
37 typedef struct _GstMiniObject GstMiniObject;
40 * GstMiniObjectCopyFunction:
41 * @obj: MiniObject to copy
43 * Function prototype for methods to create copies of instances.
45 * Returns: reference to cloned instance.
47 typedef GstMiniObject * (*GstMiniObjectCopyFunction) (const GstMiniObject *obj);
49 * GstMiniObjectDisposeFunction:
50 * @obj: MiniObject to dispose
52 * Function prototype for when a miniobject has lost its last refcount.
53 * Implementation of the mini object are allowed to revive the
54 * passed object by doing a gst_mini_object_ref(). If the object is not
55 * revived after the dispose function, the memory associated with the
58 typedef void (*GstMiniObjectDisposeFunction) (GstMiniObject *obj);
60 * GstMiniObjectFreeFunction:
61 * @obj: MiniObject to free
63 * Virtual function prototype for methods to free ressources used by
66 typedef void (*GstMiniObjectFreeFunction) (GstMiniObject *obj);
69 * GST_MINI_OBJECT_FLAGS:
70 * @obj: MiniObject to return flags for.
72 * This macro returns the entire set of flags for the mini-object.
74 #define GST_MINI_OBJECT_TYPE(obj) (GST_MINI_OBJECT_CAST(obj)->type)
76 * GST_MINI_OBJECT_FLAGS:
77 * @obj: MiniObject to return flags for.
79 * This macro returns the entire set of flags for the mini-object.
81 #define GST_MINI_OBJECT_FLAGS(obj) (GST_MINI_OBJECT_CAST(obj)->flags)
83 * GST_MINI_OBJECT_FLAG_IS_SET:
84 * @obj: MiniObject to check for flags.
85 * @flag: Flag to check for
87 * This macro checks to see if the given flag is set.
89 #define GST_MINI_OBJECT_FLAG_IS_SET(obj,flag) !!(GST_MINI_OBJECT_FLAGS (obj) & (flag))
91 * GST_MINI_OBJECT_FLAG_SET:
92 * @obj: MiniObject to set flag in.
93 * @flag: Flag to set, can by any number of bits in guint32.
95 * This macro sets the given bits.
97 #define GST_MINI_OBJECT_FLAG_SET(obj,flag) (GST_MINI_OBJECT_FLAGS (obj) |= (flag))
99 * GST_MINI_OBJECT_FLAG_UNSET:
100 * @obj: MiniObject to unset flag in.
101 * @flag: Flag to set, must be a single bit in guint32.
103 * This macro usets the given bits.
105 #define GST_MINI_OBJECT_FLAG_UNSET(obj,flag) (GST_MINI_OBJECT_FLAGS (obj) &= ~(flag))
108 * GstMiniObjectFlags:
109 * @GST_MINI_OBJECT_FLAG_LAST: first flag that can be used by subclasses.
111 * Flags for the mini object
116 GST_MINI_OBJECT_FLAG_LAST = (1<<4)
117 } GstMiniObjectFlags;
120 * GST_MINI_OBJECT_REFCOUNT:
121 * @obj: a #GstMiniObject
123 * Get access to the reference count field of the mini-object.
125 #define GST_MINI_OBJECT_REFCOUNT(obj) ((GST_MINI_OBJECT_CAST(obj))->refcount)
127 * GST_MINI_OBJECT_REFCOUNT_VALUE:
128 * @obj: a #GstMiniObject
130 * Get the reference count value of the mini-object.
132 #define GST_MINI_OBJECT_REFCOUNT_VALUE(obj) (g_atomic_int_get (&(GST_MINI_OBJECT_CAST(obj))->refcount))
135 * GST_MINI_OBJECT_SIZE:
136 * @obj: a #GstMiniObject
138 * Get the allocated size of @obj.
140 #define GST_MINI_OBJECT_SIZE(obj) ((GST_MINI_OBJECT_CAST(obj))->size)
144 * @instance: type instance
145 * @refcount: atomic refcount
146 * @flags: extra flags.
147 * @copy: a copy function
148 * @dispose: a dispose function
149 * @free: the free function
151 * Base class for refcounted lightweight objects.
152 * Ref Func: gst_mini_object_ref
153 * Unref Func: gst_mini_object_unref
154 * Set Value Func: g_value_set_boxed
155 * Get Value Func: g_value_get_boxed
157 struct _GstMiniObject {
160 /*< public >*/ /* with COW */
165 GstMiniObjectCopyFunction copy;
166 GstMiniObjectDisposeFunction dispose;
167 GstMiniObjectFreeFunction free;
170 GType gst_mini_object_register (const gchar *name);
172 void gst_mini_object_init (GstMiniObject *mini_object,
173 GType type, gsize size);
175 GstMiniObject* gst_mini_object_copy (const GstMiniObject *mini_object);
176 gboolean gst_mini_object_is_writable (const GstMiniObject *mini_object);
177 GstMiniObject* gst_mini_object_make_writable (GstMiniObject *mini_object);
180 GstMiniObject* gst_mini_object_ref (GstMiniObject *mini_object);
181 void gst_mini_object_unref (GstMiniObject *mini_object);
183 void gst_mini_object_replace (GstMiniObject **olddata, GstMiniObject *newdata);