4a29e4c43b17f99fdf766700d91c51d007102b02
[platform/upstream/glib.git] / gobject / gtype.h
1 /* GObject - GLib Type, Object, Parameter and Signal Library
2  * Copyright (C) 1998, 1999, 2000 Tim Janik and Red Hat, Inc.
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General
15  * Public License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19 #ifndef __G_TYPE_H__
20 #define __G_TYPE_H__
21
22 extern const char *g_log_domain_gruntime;
23 #include        <glib.h>
24
25
26 #ifdef __cplusplus
27 extern "C" {
28 #endif /* __cplusplus */
29
30
31 /* Basic Type Macros
32  */
33 #define G_TYPE_FUNDAMENTAL(type)                ((type) & 0xff)
34 #define G_TYPE_FUNDAMENTAL_MAX                  (0xff)
35 #define G_TYPE_DERIVE_ID(ptype, branch_seqno)   (G_TYPE_FUNDAMENTAL (ptype) | ((branch_seqno) << 8))
36 #define G_TYPE_BRANCH_SEQNO(type)               ((type) >> 8)
37 #define G_TYPE_FUNDAMENTAL_LAST                 ((GType) g_type_fundamental_last ())
38
39
40 /* predefined fundamental and derived types
41  */
42 typedef enum    /*< skip >*/
43 {
44   /* standard types, introduced by g_type_init() */
45   G_TYPE_INVALID,
46   G_TYPE_NONE,
47   G_TYPE_INTERFACE,
48
49   /* GLib type ids */
50   G_TYPE_CHAR,
51   G_TYPE_UCHAR,
52   G_TYPE_BOOLEAN,
53   G_TYPE_INT,
54   G_TYPE_UINT,
55   G_TYPE_LONG,
56   G_TYPE_ULONG,
57   G_TYPE_ENUM,
58   G_TYPE_FLAGS,
59   G_TYPE_FLOAT,
60   G_TYPE_DOUBLE,
61   G_TYPE_STRING,
62   G_TYPE_PARAM,
63   G_TYPE_BOXED,
64   G_TYPE_POINTER,
65   G_TYPE_CCALLBACK,
66   G_TYPE_OBJECT,
67
68   /* the following reserved ids should vanish soon */
69   G_TYPE_GTK_SIGNAL,
70
71   /* reserved fundamental type ids,
72    * mail gtk-devel-list@redhat.com for reservations
73    */
74   G_TYPE_BSE_PROCEDURE,
75   G_TYPE_BSE_TIME,
76   G_TYPE_BSE_NOTE,
77   G_TYPE_BSE_DOTS,
78   G_TYPE_GLE_GOBJECT,
79
80   G_TYPE_LAST_RESERVED_FUNDAMENTAL,
81
82   /* derived type ids */
83   G_TYPE_PARAM_CHAR             = G_TYPE_DERIVE_ID (G_TYPE_PARAM, 1),
84   G_TYPE_PARAM_UCHAR            = G_TYPE_DERIVE_ID (G_TYPE_PARAM, 2),
85   G_TYPE_PARAM_BOOLEAN          = G_TYPE_DERIVE_ID (G_TYPE_PARAM, 3),
86   G_TYPE_PARAM_INT              = G_TYPE_DERIVE_ID (G_TYPE_PARAM, 4),
87   G_TYPE_PARAM_UINT             = G_TYPE_DERIVE_ID (G_TYPE_PARAM, 5),
88   G_TYPE_PARAM_LONG             = G_TYPE_DERIVE_ID (G_TYPE_PARAM, 6),
89   G_TYPE_PARAM_ULONG            = G_TYPE_DERIVE_ID (G_TYPE_PARAM, 7),
90   G_TYPE_PARAM_ENUM             = G_TYPE_DERIVE_ID (G_TYPE_PARAM, 8),
91   G_TYPE_PARAM_FLAGS            = G_TYPE_DERIVE_ID (G_TYPE_PARAM, 9),
92   G_TYPE_PARAM_FLOAT            = G_TYPE_DERIVE_ID (G_TYPE_PARAM, 10),
93   G_TYPE_PARAM_DOUBLE           = G_TYPE_DERIVE_ID (G_TYPE_PARAM, 11),
94   G_TYPE_PARAM_STRING           = G_TYPE_DERIVE_ID (G_TYPE_PARAM, 12),
95   G_TYPE_PARAM_PARAM            = G_TYPE_DERIVE_ID (G_TYPE_PARAM, 13),
96   G_TYPE_PARAM_POINTER          = G_TYPE_DERIVE_ID (G_TYPE_PARAM, 14),
97   G_TYPE_PARAM_CCALLBACK        = G_TYPE_DERIVE_ID (G_TYPE_PARAM, 15),
98   G_TYPE_PARAM_BOXED            = G_TYPE_DERIVE_ID (G_TYPE_PARAM, 16),
99   G_TYPE_PARAM_OBJECT           = G_TYPE_DERIVE_ID (G_TYPE_PARAM, 17)
100 } GTypeFundamentals;
101
102
103 /* Type Checking Macros
104  */
105 #define G_TYPE_IS_FUNDAMENTAL(type)             (G_TYPE_BRANCH_SEQNO (type) == 0)
106 #define G_TYPE_IS_DERIVED(type)                 (G_TYPE_BRANCH_SEQNO (type) > 0)
107 #define G_TYPE_IS_INTERFACE(type)               (G_TYPE_FUNDAMENTAL (type) == G_TYPE_INTERFACE)
108 #define G_TYPE_IS_CLASSED(type)                 (g_type_check_flags ((type), G_TYPE_FLAG_CLASSED))
109 #define G_TYPE_IS_INSTANTIATABLE(type)          (g_type_check_flags ((type), G_TYPE_FLAG_INSTANTIATABLE))
110 #define G_TYPE_IS_DERIVABLE(type)               (g_type_check_flags ((type), G_TYPE_FLAG_DERIVABLE))
111 #define G_TYPE_IS_DEEP_DERIVABLE(type)          (g_type_check_flags ((type), G_TYPE_FLAG_DEEP_DERIVABLE))
112 #define G_TYPE_IS_ABSTRACT(type)                (g_type_check_flags ((type), G_TYPE_FLAG_ABSTRACT))
113 #define G_TYPE_IS_PARAM(type)                   (G_TYPE_FUNDAMENTAL (type) == G_TYPE_PARAM)
114 #define G_TYPE_IS_VALUE_TYPE(type)              (g_type_value_table_peek (type) != NULL)
115
116
117 /* Typedefs
118  */
119 typedef guint32                         GType;
120 typedef struct _GValue                  GValue;
121 typedef union  _GTypeCValue             GTypeCValue;
122 typedef struct _GTypePlugin             GTypePlugin;
123 typedef struct _GTypeClass              GTypeClass;
124 typedef struct _GTypeInterface          GTypeInterface;
125 typedef struct _GTypeInstance           GTypeInstance;
126 typedef struct _GTypeInfo               GTypeInfo;
127 typedef struct _GTypeFundamentalInfo    GTypeFundamentalInfo;
128 typedef struct _GInterfaceInfo          GInterfaceInfo;
129 typedef struct _GTypeValueTable         GTypeValueTable;
130
131
132 /* Basic Type Structures
133  */
134 struct _GTypeClass
135 {
136   /*< private >*/
137   GType g_type;
138 };
139 struct _GTypeInstance
140 {
141   /*< private >*/
142   GTypeClass *g_class;
143 };
144 struct _GTypeInterface
145 {
146   /*< private >*/
147   GType g_type;         /* iface type */
148   GType g_instance_type;
149 };
150
151
152 /* Casts, checks and accessors for structured types
153  * usage of these macros is reserved to type implementations only
154  * 
155  */
156 /*< protected >*/
157 #define G_TYPE_CHECK_INSTANCE(instance)                         (_G_TYPE_CHI ((GTypeInstance*) (instance)))
158 #define G_TYPE_CHECK_INSTANCE_CAST(instance, g_type, c_type)    (_G_TYPE_CIC ((instance), (g_type), c_type))
159 #define G_TYPE_CHECK_INSTANCE_TYPE(instance, g_type)            (_G_TYPE_CIT ((instance), (g_type)))
160 #define G_TYPE_INSTANCE_GET_CLASS(instance, g_type, c_type)     (_G_TYPE_IGC ((instance), (g_type), c_type))
161 #define G_TYPE_INSTANCE_GET_INTERFACE(instance, g_type, c_type) (_G_TYPE_IGI ((instance), (g_type), c_type))
162 #define G_TYPE_CHECK_CLASS_CAST(g_class, g_type, c_type)        (_G_TYPE_CCC ((g_class), (g_type), c_type))
163 #define G_TYPE_CHECK_CLASS_TYPE(g_class, g_type)                (_G_TYPE_CCT ((g_class), (g_type)))
164 #define G_TYPE_CHECK_VALUE(value)                               (_G_TYPE_CHV ((value)))
165 #define G_TYPE_CHECK_VALUE_TYPE(value, g_type)                  (_G_TYPE_CVT ((value), (g_type)))
166 #define G_TYPE_FROM_INSTANCE(instance)                          (G_TYPE_FROM_CLASS (((GTypeInstance*) (instance))->g_class))
167 #define G_TYPE_FROM_CLASS(g_class)                              (((GTypeClass*) (g_class))->g_type)
168 #define G_TYPE_FROM_INTERFACE(g_iface)                          (((GTypeInterface*) (g_iface))->g_type)
169
170
171 /* debug flags for g_type_init() */
172 typedef enum    /*< skip >*/
173 {
174   G_TYPE_DEBUG_NONE     = 0,
175   G_TYPE_DEBUG_OBJECTS  = 1 << 0,
176   G_TYPE_DEBUG_SIGNALS  = 1 << 1,
177   G_TYPE_DEBUG_MASK     = 0x03
178 } GTypeDebugFlags;
179
180
181 /* --- prototypes --- */
182 void     g_type_init                    (GTypeDebugFlags         debug_flags);
183 gchar*   g_type_name                    (GType                   type);
184 GQuark   g_type_qname                   (GType                   type);
185 GType    g_type_from_name               (const gchar            *name);
186 GType    g_type_parent                  (GType                   type);
187 GType    g_type_next_base               (GType                   type,
188                                          GType                   base_type);
189 gboolean g_type_is_a                    (GType                   type,
190                                          GType                   is_a_type);
191 guint    g_type_fundamental_branch_last (GType                   type);
192 gpointer g_type_class_ref               (GType                   type);
193 gpointer g_type_class_peek              (GType                   type);
194 void     g_type_class_unref             (gpointer                g_class);
195 gpointer g_type_class_peek_parent       (gpointer                g_class);
196 gpointer g_type_interface_peek          (gpointer                instance_class,
197                                          GType                   iface_type);
198 /* g_free() the returned arrays */
199 GType*   g_type_children                (GType                   type,
200                                          guint                  *n_children);
201 GType*   g_type_interfaces              (GType                   type,
202                                          guint                  *n_interfaces);
203 /* per-type _static_ data */
204 void     g_type_set_qdata               (GType                   type,
205                                          GQuark                  quark,
206                                          gpointer                data);
207 gpointer g_type_get_qdata               (GType                   type,
208                                          GQuark                  quark);
209                                           
210
211 /* --- type registration --- */
212 typedef void   (*GBaseInitFunc)              (gpointer         g_class);
213 typedef void   (*GBaseFinalizeFunc)          (gpointer         g_class);
214 typedef void   (*GClassInitFunc)             (gpointer         g_class,
215                                               gpointer         class_data);
216 typedef void   (*GClassFinalizeFunc)         (gpointer         g_class,
217                                               gpointer         class_data);
218 typedef void   (*GInstanceInitFunc)          (GTypeInstance   *instance,
219                                               gpointer         g_class);
220 typedef void   (*GInterfaceInitFunc)         (gpointer         g_iface,
221                                               gpointer         iface_data);
222 typedef void   (*GInterfaceFinalizeFunc)     (gpointer         g_iface,
223                                               gpointer         iface_data);
224 typedef gboolean (*GTypeClassCacheFunc)      (gpointer         cache_data,
225                                               GTypeClass      *g_class);
226 typedef enum    /*< skip >*/
227 {
228   G_TYPE_FLAG_CLASSED           = (1 << 0),
229   G_TYPE_FLAG_INSTANTIATABLE    = (1 << 1),
230   G_TYPE_FLAG_DERIVABLE         = (1 << 2),
231   G_TYPE_FLAG_DEEP_DERIVABLE    = (1 << 3)
232 } GTypeFundamentalFlags;
233 typedef enum    /*< skip >*/
234 {
235   G_TYPE_FLAG_ABSTRACT          = (1 << 4)
236 } GTypeFlags;
237 struct _GTypeInfo
238 {
239   /* interface types, classed types, instantiated types */
240   guint16                class_size;
241
242   GBaseInitFunc          base_init;
243   GBaseFinalizeFunc      base_finalize;
244
245   /* classed types, instantiated types */
246   GClassInitFunc         class_init;
247   GClassFinalizeFunc     class_finalize;
248   gconstpointer          class_data;
249
250   /* instantiated types */
251   guint16                instance_size;
252   guint16                n_preallocs;
253   GInstanceInitFunc      instance_init;
254
255   /* value handling */
256   const GTypeValueTable *value_table;
257 };
258 struct _GTypeFundamentalInfo
259 {
260   GTypeFundamentalFlags  type_flags;
261 };
262 struct _GInterfaceInfo
263 {
264   GInterfaceInitFunc     interface_init;
265   GInterfaceFinalizeFunc interface_finalize;
266   gpointer               interface_data;
267 };
268 struct _GTypeValueTable
269 {
270   void     (*value_init)         (GValue       *value);
271   void     (*value_free)         (GValue       *value);
272   void     (*value_copy)         (const GValue *src_value,
273                                   GValue       *dest_value);
274   /* varargs functionality (optional) */
275   gpointer (*value_peek_pointer) (const GValue *value);
276   guint      collect_type;
277   gchar*   (*collect_value)      (GValue       *value,
278                                   guint         nth_value,
279                                   GType        *collect_type,
280                                   GTypeCValue  *collect_value);
281   guint      lcopy_type;
282   gchar*   (*lcopy_value)        (const GValue *value,
283                                   guint         nth_value,
284                                   GType        *collect_type,
285                                   GTypeCValue  *collect_value);
286 };
287 GType g_type_register_static       (GType                       parent_type,
288                                     const gchar                *type_name,
289                                     const GTypeInfo            *info,
290                                     GTypeFlags                  flags);
291 GType g_type_register_dynamic      (GType                       parent_type,
292                                     const gchar                *type_name,
293                                     GTypePlugin                *plugin,
294                                     GTypeFlags                  flags);
295 GType g_type_register_fundamental  (GType                       type_id,
296                                     const gchar                *type_name,
297                                     const GTypeInfo            *info,
298                                     const GTypeFundamentalInfo *finfo,
299                                     GTypeFlags                  flags);
300 void  g_type_add_interface_static  (GType                       instance_type,
301                                     GType                       interface_type,
302                                     const GInterfaceInfo       *info);
303 void  g_type_add_interface_dynamic (GType                       instance_type,
304                                     GType                       interface_type,
305                                     GTypePlugin                *plugin);
306
307
308 /* --- protected (for fundamental type implementations) --- */
309 GTypePlugin*     g_type_get_plugin              (GType               type);
310 GTypePlugin*     g_type_interface_get_plugin    (GType               instance_type,
311                                                  GType               implementation_type);
312
313 GType            g_type_fundamental_last        (void);
314 gboolean         g_type_check_flags             (GType               type,
315                                                  guint               flags);
316 GTypeInstance*   g_type_create_instance         (GType               type);
317 void             g_type_free_instance           (GTypeInstance      *instance);
318 void             g_type_add_class_cache_func    (gpointer            cache_data,
319                                                  GTypeClassCacheFunc cache_func);
320 void             g_type_remove_class_cache_func (gpointer            cache_data,
321                                                  GTypeClassCacheFunc cache_func);
322 void             g_type_class_unref_uncached    (gpointer            g_class);
323
324
325 /*< private >*/
326 gboolean         g_type_check_instance          (GTypeInstance      *instance);
327 GTypeInstance*   g_type_check_instance_cast     (GTypeInstance      *instance,
328                                                  GType               iface_type);
329 gboolean         g_type_instance_is_a           (GTypeInstance      *instance,
330                                                  GType               iface_type);
331 GTypeClass*      g_type_check_class_cast        (GTypeClass         *g_class,
332                                                  GType               is_a_type);
333 gboolean         g_type_class_is_a              (GTypeClass         *g_class,
334                                                  GType               is_a_type);
335 gboolean         g_type_check_value             (GValue             *value);
336 gboolean         g_type_value_is_a              (GValue             *value,
337                                                  GType               type);
338 GTypeValueTable* g_type_value_table_peek        (GType               type);
339
340
341 /* --- implementation bits --- */
342 #ifndef G_DISABLE_CAST_CHECKS
343 #  define _G_TYPE_CIC(ip, gt, ct) \
344     ((ct*) g_type_check_instance_cast ((GTypeInstance*) ip, gt))
345 #  define _G_TYPE_CCC(cp, gt, ct) \
346     ((ct*) g_type_check_class_cast ((GTypeClass*) cp, gt))
347 #else /* G_DISABLE_CAST_CHECKS */
348 #  define _G_TYPE_CIC(ip, gt, ct)       ((ct*) ip)
349 #  define _G_TYPE_CCC(cp, gt, ct)       ((ct*) cp)
350 #endif /* G_DISABLE_CAST_CHECKS */
351 #define _G_TYPE_CHI(ip)                 (g_type_check_instance ((GTypeInstance*) ip))
352 #define _G_TYPE_CIT(ip, gt)             (g_type_instance_is_a ((GTypeInstance*) ip, gt))
353 #define _G_TYPE_CCT(cp, gt)             (g_type_class_is_a ((GTypeClass*) cp, gt))
354 #define _G_TYPE_CVT(vl, gt)             (g_type_value_is_a ((GValue*) vl, gt))
355 #define _G_TYPE_CHV(vl)                 (g_type_check_value ((GValue*) vl))
356 #define _G_TYPE_IGC(ip, gt, ct)         ((ct*) (((GTypeInstance*) ip)->g_class))
357 #define _G_TYPE_IGI(ip, gt, ct)         ((ct*) g_type_interface_peek (((GTypeInstance*) ip)->g_class, gt))
358 #define G_TYPE_FLAG_RESERVED_ID_BIT     (1 << 30)
359 extern GTypeDebugFlags                  _g_type_debug_flags;
360
361
362 #ifdef __cplusplus
363 }
364 #endif /* __cplusplus */
365
366 #endif /* __G_TYPE_H__ */