Add g_value_take_variant
[platform/upstream/glib.git] / tests / gobject / dynamictype.c
1 /* GObject - GLib Type, Object, Parameter and Signal Library
2  * Copyright (C) 2001, 2003 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
20 #undef  G_LOG_DOMAIN
21 #define G_LOG_DOMAIN "TestDynamicType"
22
23 #undef G_DISABLE_ASSERT
24 #undef G_DISABLE_CHECKS
25 #undef G_DISABLE_CAST_CHECKS
26
27 #include <glib-object.h>
28
29 #include "testcommon.h"
30 #include "testmodule.h"
31
32 /* This test tests the macros for defining dynamic types.
33  */
34
35 static gboolean loaded = FALSE;
36
37 struct _TestIfaceClass
38 {
39   GTypeInterface base_iface;
40   guint val;
41 };
42
43 #define TEST_TYPE_IFACE           (test_iface_get_type ())
44 #define TEST_IFACE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), TEST_TYPE_IFACE, TestIfaceClass))
45 typedef struct _TestIface      TestIface;
46 typedef struct _TestIfaceClass TestIfaceClass;
47
48 static void test_iface_base_init    (TestIfaceClass *iface);
49 static void test_iface_default_init (TestIfaceClass *iface, gpointer class_data);
50
51 static DEFINE_IFACE(TestIface, test_iface, test_iface_base_init, test_iface_default_init)
52
53 static void
54 test_iface_default_init (TestIfaceClass *iface,
55                          gpointer        class_data)
56 {
57 }
58
59 static void
60 test_iface_base_init (TestIfaceClass *iface)
61 {
62 }
63
64 #define DYNAMIC_OBJECT_TYPE (dynamic_object_get_type ())
65
66 typedef GObject DynamicObject;
67 typedef struct _DynamicObjectClass DynamicObjectClass;
68
69 struct _DynamicObjectClass
70 {
71   GObjectClass parent_class;
72   guint val;
73 };
74
75 static void dynamic_object_iface_init (TestIface *iface);
76
77 G_DEFINE_DYNAMIC_TYPE_EXTENDED(DynamicObject, dynamic_object, G_TYPE_OBJECT, 0,
78                                G_IMPLEMENT_INTERFACE_DYNAMIC (TEST_TYPE_IFACE,
79                                                               dynamic_object_iface_init));
80
81 static void 
82 dynamic_object_class_init (DynamicObjectClass *class)
83 {
84   class->val = 42;
85   loaded = TRUE;
86 }
87
88 static void
89 dynamic_object_class_finalize (DynamicObjectClass *class)
90 {
91   loaded = FALSE;
92 }
93
94 static void
95 dynamic_object_iface_init (TestIface *iface)
96 {
97 }
98
99 static void
100 dynamic_object_init (DynamicObject *dynamic_object)
101 {
102 }
103
104 static void
105 module_register (GTypeModule *module)
106 {
107   dynamic_object_register_type (module);
108 }
109
110 static void
111 test_dynamic_type (void)
112 {
113   GTypeModule *module;
114   DynamicObjectClass *class;
115
116   module = test_module_new (module_register);
117
118   /* Not loaded until we call ref for the first time */
119   class = g_type_class_peek (DYNAMIC_OBJECT_TYPE);
120   g_assert (class == NULL);
121   g_assert (!loaded);
122
123   /* Make sure interfaces work */
124   g_assert (g_type_is_a (DYNAMIC_OBJECT_TYPE,
125                          TEST_TYPE_IFACE));
126
127   /* Ref loads */
128   class = g_type_class_ref (DYNAMIC_OBJECT_TYPE);
129   g_assert (class && class->val == 42);
130   g_assert (loaded);
131
132   /* Peek then works */
133   class = g_type_class_peek (DYNAMIC_OBJECT_TYPE);
134   g_assert (class && class->val == 42);
135   g_assert (loaded);
136
137   /* Make sure interfaces still work */
138   g_assert (g_type_is_a (DYNAMIC_OBJECT_TYPE,
139                          TEST_TYPE_IFACE));
140
141   /* Unref causes finalize */
142   g_type_class_unref (class);
143
144   /* Peek returns NULL */
145   class = g_type_class_peek (DYNAMIC_OBJECT_TYPE);
146   g_assert (!class);
147   g_assert (!loaded);
148   
149   /* Ref reloads */
150   class = g_type_class_ref (DYNAMIC_OBJECT_TYPE);
151   g_assert (class && class->val == 42);
152   g_assert (loaded);
153
154   /* And Unref causes finalize once more*/
155   g_type_class_unref (class);
156   class = g_type_class_peek (DYNAMIC_OBJECT_TYPE);
157   g_assert (!class);
158   g_assert (!loaded);
159 }
160
161 int
162 main (int   argc,
163       char *argv[])
164 {
165   g_log_set_always_fatal (g_log_set_always_fatal (G_LOG_FATAL_MASK) |
166                           G_LOG_LEVEL_WARNING |
167                           G_LOG_LEVEL_CRITICAL);
168   g_type_init ();
169
170   test_dynamic_type ();
171   
172   return 0;
173 }