Add myself to the DOAP for GLib
[glib.git] / gobject / tests / private.c
blobecf5e7b71cf77df7a16a6fc8fb14805d29666a14
1 #include <glib-object.h>
3 typedef struct {
4 GObject parent_instance;
5 } TestObject;
7 typedef struct {
8 int dummy_0;
9 float dummy_1;
10 } TestObjectPrivate;
12 typedef struct {
13 GObjectClass parent_class;
14 } TestObjectClass;
16 GType test_object_get_type (void);
18 G_DEFINE_TYPE_WITH_CODE (TestObject, test_object, G_TYPE_OBJECT,
19 G_ADD_PRIVATE (TestObject))
21 static void
22 test_object_class_init (TestObjectClass *klass)
26 static void
27 test_object_init (TestObject *self)
29 TestObjectPrivate *priv = test_object_get_instance_private (self);
31 if (g_test_verbose ())
32 g_printerr ("Offset of %sPrivate for type '%s': %d\n",
33 G_OBJECT_TYPE_NAME (self),
34 G_OBJECT_TYPE_NAME (self),
35 TestObject_private_offset);
37 priv->dummy_0 = 42;
38 priv->dummy_1 = 3.14159f;
41 static int
42 test_object_get_dummy_0 (TestObject *self)
44 TestObjectPrivate *priv = test_object_get_instance_private (self);
46 return priv->dummy_0;
49 static float
50 test_object_get_dummy_1 (TestObject *self)
52 TestObjectPrivate *priv = test_object_get_instance_private (self);
54 return priv->dummy_1;
57 typedef struct {
58 TestObject parent_instance;
59 } TestDerived;
61 typedef struct {
62 char *dummy_2;
63 } TestDerivedPrivate;
65 typedef struct {
66 TestObjectClass parent_class;
67 } TestDerivedClass;
69 GType test_derived_get_type (void);
71 G_DEFINE_TYPE_WITH_CODE (TestDerived, test_derived, test_object_get_type (),
72 G_ADD_PRIVATE (TestDerived))
74 static void
75 test_derived_finalize (GObject *obj)
77 TestDerivedPrivate *priv = test_derived_get_instance_private ((TestDerived *) obj);
79 g_free (priv->dummy_2);
81 G_OBJECT_CLASS (test_derived_parent_class)->finalize (obj);
84 static void
85 test_derived_class_init (TestDerivedClass *klass)
87 G_OBJECT_CLASS (klass)->finalize = test_derived_finalize;
90 static void
91 test_derived_init (TestDerived *self)
93 TestDerivedPrivate *priv = test_derived_get_instance_private (self);
95 if (g_test_verbose ())
96 g_printerr ("Offset of %sPrivate for type '%s': %d\n",
97 G_OBJECT_TYPE_NAME (self),
98 G_OBJECT_TYPE_NAME (self),
99 TestDerived_private_offset);
101 priv->dummy_2 = g_strdup ("Hello");
104 static const char *
105 test_derived_get_dummy_2 (TestDerived *self)
107 TestDerivedPrivate *priv = test_derived_get_instance_private (self);
109 return priv->dummy_2;
112 typedef struct {
113 TestObject parent_instance;
114 } TestMixed;
116 typedef struct {
117 gint dummy_3;
118 } TestMixedPrivate;
120 typedef struct {
121 TestObjectClass parent_class;
122 } TestMixedClass;
124 GType test_mixed_get_type (void);
126 G_DEFINE_TYPE (TestMixed, test_mixed, test_object_get_type ())
128 static void
129 test_mixed_class_init (TestMixedClass *klass)
131 g_type_class_add_private (klass, sizeof (TestMixedPrivate));
134 static void
135 test_mixed_init (TestMixed *self)
137 TestMixedPrivate *priv = G_TYPE_INSTANCE_GET_PRIVATE (self, test_mixed_get_type (), TestMixedPrivate);
139 if (g_test_verbose ())
140 g_printerr ("Offset of %sPrivate for type '%s': %d\n",
141 G_OBJECT_TYPE_NAME (self),
142 G_OBJECT_TYPE_NAME (self),
143 TestMixed_private_offset);
145 priv->dummy_3 = 47;
148 static gint
149 test_mixed_get_dummy_3 (TestMixed *self)
151 TestMixedPrivate *priv = G_TYPE_INSTANCE_GET_PRIVATE (self, test_mixed_get_type (), TestMixedPrivate);
153 return priv->dummy_3;
156 typedef struct {
157 TestMixed parent_instance;
158 } TestMixedDerived;
160 typedef struct {
161 gint64 dummy_4;
162 } TestMixedDerivedPrivate;
164 typedef struct {
165 TestMixedClass parent_class;
166 } TestMixedDerivedClass;
168 GType test_mixed_derived_get_type (void);
170 G_DEFINE_TYPE_WITH_CODE (TestMixedDerived, test_mixed_derived, test_mixed_get_type (),
171 G_ADD_PRIVATE (TestMixedDerived))
173 static void
174 test_mixed_derived_class_init (TestMixedDerivedClass *klass)
178 static void
179 test_mixed_derived_init (TestMixedDerived *self)
181 TestMixedDerivedPrivate *priv = test_mixed_derived_get_instance_private (self);
183 if (g_test_verbose ())
184 g_printerr ("Offset of %sPrivate for type '%s': %d\n",
185 G_OBJECT_TYPE_NAME (self),
186 G_OBJECT_TYPE_NAME (self),
187 TestMixedDerived_private_offset);
189 priv->dummy_4 = g_get_monotonic_time ();
192 static gint64
193 test_mixed_derived_get_dummy_4 (TestMixedDerived *self)
195 TestMixedDerivedPrivate *priv = test_mixed_derived_get_instance_private (self);
197 return priv->dummy_4;
200 static void
201 private_instance (void)
203 TestObject *obj = g_object_new (test_object_get_type (), NULL);
204 gpointer class;
205 gint offset;
207 g_assert_cmpint (test_object_get_dummy_0 (obj), ==, 42);
208 g_assert_cmpfloat (test_object_get_dummy_1 (obj), ==, 3.14159f);
210 class = g_type_class_ref (test_object_get_type ());
211 offset = g_type_class_get_instance_private_offset (class);
212 g_type_class_unref (class);
214 g_assert (offset == TestObject_private_offset);
216 g_object_unref (obj);
219 static void
220 private_derived_instance (void)
222 TestDerived *obj = g_object_new (test_derived_get_type (), NULL);
224 g_assert_cmpstr (test_derived_get_dummy_2 (obj), ==, "Hello");
225 g_assert_cmpint (test_object_get_dummy_0 ((TestObject *) obj), ==, 42);
227 g_object_unref (obj);
230 static void
231 private_mixed_derived_instance (void)
233 TestMixedDerived *derived = g_object_new (test_mixed_derived_get_type (), NULL);
234 TestMixed *mixed = g_object_new (test_mixed_get_type (), NULL);
236 g_assert_cmpint (test_mixed_get_dummy_3 (mixed), ==, 47);
237 g_assert (test_mixed_derived_get_dummy_4 (derived) <= g_get_monotonic_time ());
239 g_object_unref (derived);
240 g_object_unref (mixed);
244 main (int argc,
245 char *argv[])
247 g_test_init (&argc, &argv, NULL);
249 g_test_add_func ("/private/instance", private_instance);
250 g_test_add_func ("/private/derived-instance", private_derived_instance);
251 g_test_add_func ("/private/mixed-derived-instance", private_mixed_derived_instance);
253 return g_test_run ();