a3d2495c8cd74f1b50e72da148f3d8646883c859
[platform/upstream/gstreamer.git] / gst / gstdata.h
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *                    2000 Wim Taymans <wim.taymans@chello.be>
4  *
5  * gstdata.h: Header for GstData objects (used for data passing)
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23
24 #ifndef __GST_DATA_H__
25 #define __GST_DATA_H__
26
27 #include <glib-object.h>
28 #include <gst/gstatomic.h>
29
30 G_BEGIN_DECLS
31
32 /* type */
33 #define GST_DATA(data)          ((GstData*)(data))
34 #define GST_DATA_TYPE(data)     (GST_DATA(data)->type)
35
36 /* flags */
37 #define GST_DATA_FLAGS(data)            (GST_DATA(data)->flags)
38 #define GST_DATA_FLAG_SHIFT(flag)       (1<<(flag))
39 #define GST_DATA_FLAG_IS_SET(data,flag) (GST_DATA_FLAGS(data) & (1<<(flag)))
40 #define GST_DATA_FLAG_SET(data,flag)    G_STMT_START{ (GST_DATA_FLAGS(data) |= (1<<(flag))); }G_STMT_END
41 #define GST_DATA_FLAG_UNSET(data,flag)  G_STMT_START{ (GST_DATA_FLAGS(data) &= ~(1<<(flag))); }G_STMT_END
42
43 typedef struct _GstData GstData;
44
45 typedef void            (*GstDataFreeFunction)          (GstData *data);
46 typedef GstData*        (*GstDataCopyFunction)          (const GstData *data);
47
48 typedef enum
49 {
50   GST_DATA_READONLY     = 1,
51
52   /* insert more */
53   GST_DATA_FLAG_LAST    = 8
54 } GstDataFlags;
55
56 /* refcount */
57 #define GST_DATA_REFCOUNT(data)                 ((GST_DATA(data))->refcount)
58 #define GST_DATA_REFCOUNT_VALUE(data)           (gst_atomic_int_read (&(GST_DATA(data))->refcount))
59
60 /* copy/free functions */
61 #define GST_DATA_COPY_FUNC(data)                (GST_DATA(data)->copy)
62 #define GST_DATA_FREE_FUNC(data)                (GST_DATA(data)->free)
63
64
65 struct _GstData {
66   GType                  type;
67
68   /* refcounting */
69   GstAtomicInt           refcount;
70
71   guint16                flags;
72  
73   /* utility function pointers, can override default */
74   GstDataFreeFunction    free;          /* free the data */
75   GstDataCopyFunction    copy;          /* copy the data */
76 };
77
78 /* function used by subclasses only */
79 void                    gst_data_init                   (GstData *data, GType type, guint16 flags,
80                                                          GstDataFreeFunction free,
81                                                          GstDataCopyFunction copy);
82 void                    gst_data_dispose                (GstData *data);
83 void                    gst_data_copy_into              (const GstData *data, GstData *target);
84
85 /* basic operations on data */
86 GstData*                gst_data_copy                   (const GstData *data);
87 gboolean                gst_data_is_writable            (GstData *data);
88 GstData*                gst_data_copy_on_write          (GstData *data);
89 void                    gst_data_free                   (GstData *data);
90
91 /* reference counting */
92 GstData*                gst_data_ref                    (GstData* data);
93 GstData*                gst_data_ref_by_count           (GstData* data, gint count);
94 void                    gst_data_unref                  (GstData* data);
95
96 G_END_DECLS
97
98 #endif /* __GST_DATA_H__ */