sl@0
|
1 |
/* GLib testing framework examples and tests
|
sl@0
|
2 |
* Copyright (C) 2008 Imendio AB
|
sl@0
|
3 |
* Authors: Tim Janik
|
sl@0
|
4 |
* Portions copyright (c) 2009 Nokia Corporation. All rights reserved.
|
sl@0
|
5 |
* This work is provided "as is"; redistribution and modification
|
sl@0
|
6 |
* in whole or in part, in any medium, physical or electronic is
|
sl@0
|
7 |
* permitted without restriction.
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* This work is distributed in the hope that it will be useful,
|
sl@0
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
sl@0
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
sl@0
|
12 |
*
|
sl@0
|
13 |
* In no event shall the authors or contributors be liable for any
|
sl@0
|
14 |
* direct, indirect, incidental, special, exemplary, or consequential
|
sl@0
|
15 |
* damages (including, but not limited to, procurement of substitute
|
sl@0
|
16 |
* goods or services; loss of use, data, or profits; or business
|
sl@0
|
17 |
* interruption) however caused and on any theory of liability, whether
|
sl@0
|
18 |
* in contract, strict liability, or tort (including negligence or
|
sl@0
|
19 |
* otherwise) arising in any way out of the use of this software, even
|
sl@0
|
20 |
* if advised of the possibility of such damage.
|
sl@0
|
21 |
*/
|
sl@0
|
22 |
#include <glib.h>
|
sl@0
|
23 |
#include <glib-object.h>
|
sl@0
|
24 |
#ifdef __SYMBIAN32__
|
sl@0
|
25 |
#include <glib_global.h>
|
sl@0
|
26 |
#include "mrt2_glib2_test.h"
|
sl@0
|
27 |
#endif /*__SYMBIAN32__*/
|
sl@0
|
28 |
#define G_DEFINE_INTERFACE(TN, t_n, T_P) G_DEFINE_INTERFACE_WITH_CODE(TN, t_n, T_P, ;)
|
sl@0
|
29 |
#define G_DEFINE_INTERFACE_WITH_CODE(TN, t_n, T_P, _C_) _G_DEFINE_INTERFACE_EXTENDED_BEGIN(TN, t_n, T_P) {_C_;} _G_DEFINE_INTERFACE_EXTENDED_END()
|
sl@0
|
30 |
/* _default_init, ##Interface, if(TYPE_PREREQ); */
|
sl@0
|
31 |
#define _G_DEFINE_INTERFACE_EXTENDED_BEGIN(TypeName, type_name, TYPE_PREREQ) \
|
sl@0
|
32 |
static void type_name##_default_init (TypeName##Interface *klass); \
|
sl@0
|
33 |
GType \
|
sl@0
|
34 |
type_name##_get_type (void) \
|
sl@0
|
35 |
{ \
|
sl@0
|
36 |
static volatile gsize g_define_type_id__volatile = 0; \
|
sl@0
|
37 |
if (g_once_init_enter (&g_define_type_id__volatile)) \
|
sl@0
|
38 |
{ \
|
sl@0
|
39 |
GType g_define_type_id = \
|
sl@0
|
40 |
g_type_register_static_simple (G_TYPE_INTERFACE, \
|
sl@0
|
41 |
g_intern_static_string (#TypeName), \
|
sl@0
|
42 |
sizeof (TypeName##Interface), \
|
sl@0
|
43 |
(GClassInitFunc) type_name##_default_init, \
|
sl@0
|
44 |
0, \
|
sl@0
|
45 |
(GInstanceInitFunc) NULL, \
|
sl@0
|
46 |
(GTypeFlags) 0); \
|
sl@0
|
47 |
if (TYPE_PREREQ) \
|
sl@0
|
48 |
g_type_interface_add_prerequisite (g_define_type_id, TYPE_PREREQ); \
|
sl@0
|
49 |
{ /* custom code follows */
|
sl@0
|
50 |
#define _G_DEFINE_INTERFACE_EXTENDED_END() \
|
sl@0
|
51 |
/* following custom code */ \
|
sl@0
|
52 |
} \
|
sl@0
|
53 |
g_once_init_leave (&g_define_type_id__volatile, g_define_type_id); \
|
sl@0
|
54 |
} \
|
sl@0
|
55 |
return g_define_type_id__volatile; \
|
sl@0
|
56 |
} /* closes type_name##_get_type() */
|
sl@0
|
57 |
|
sl@0
|
58 |
static volatile int mtsafe_call_counter = 0; /* multi thread safe call counter */
|
sl@0
|
59 |
static int unsafe_call_counter = 0; /* single-threaded call counter */
|
sl@0
|
60 |
|
sl@0
|
61 |
#ifdef __SYMBIAN32__
|
sl@0
|
62 |
#define NUM_COUNTER_INCREMENTS 1000
|
sl@0
|
63 |
#else
|
sl@0
|
64 |
#define NUM_COUNTER_INCREMENTS 100000
|
sl@0
|
65 |
#endif//__SYMBIAN32__
|
sl@0
|
66 |
|
sl@0
|
67 |
static void
|
sl@0
|
68 |
call_counter_init (gpointer tclass)
|
sl@0
|
69 |
{
|
sl@0
|
70 |
int i;
|
sl@0
|
71 |
for (i = 0; i < NUM_COUNTER_INCREMENTS; i++)
|
sl@0
|
72 |
{
|
sl@0
|
73 |
int saved_unsafe_call_counter = unsafe_call_counter;
|
sl@0
|
74 |
g_atomic_int_add (&mtsafe_call_counter, 1); // real call count update
|
sl@0
|
75 |
g_thread_yield(); // let concurrent threads corrupt the unsafe_call_counter state
|
sl@0
|
76 |
unsafe_call_counter = 1 + saved_unsafe_call_counter; // non-atomic counter update
|
sl@0
|
77 |
}
|
sl@0
|
78 |
}
|
sl@0
|
79 |
|
sl@0
|
80 |
static void interface_per_class_init () { call_counter_init (NULL); }
|
sl@0
|
81 |
|
sl@0
|
82 |
/* define 3 test interfaces */
|
sl@0
|
83 |
typedef GTypeInterface MyFace0Interface;
|
sl@0
|
84 |
G_DEFINE_INTERFACE (MyFace0, my_face0, G_TYPE_OBJECT);
|
sl@0
|
85 |
static void my_face0_default_init (MyFace0Interface *iface) { call_counter_init (iface); }
|
sl@0
|
86 |
typedef GTypeInterface MyFace1Interface;
|
sl@0
|
87 |
G_DEFINE_INTERFACE (MyFace1, my_face1, G_TYPE_OBJECT);
|
sl@0
|
88 |
static void my_face1_default_init (MyFace1Interface *iface) { call_counter_init (iface); }
|
sl@0
|
89 |
typedef GTypeInterface MyFace2Interface;
|
sl@0
|
90 |
G_DEFINE_INTERFACE (MyFace2, my_face2, G_TYPE_OBJECT);
|
sl@0
|
91 |
static void my_face2_default_init (MyFace2Interface *iface) { call_counter_init (iface); }
|
sl@0
|
92 |
|
sl@0
|
93 |
/* define 3 test objects, adding interfaces 0 & 1, and adding interface 2 after class initialization */
|
sl@0
|
94 |
typedef GObject MyTester0;
|
sl@0
|
95 |
typedef GObjectClass MyTester0Class;
|
sl@0
|
96 |
G_DEFINE_TYPE_WITH_CODE (MyTester0, my_tester0, G_TYPE_OBJECT,
|
sl@0
|
97 |
G_IMPLEMENT_INTERFACE (my_face0_get_type(), interface_per_class_init);
|
sl@0
|
98 |
G_IMPLEMENT_INTERFACE (my_face1_get_type(), interface_per_class_init);
|
sl@0
|
99 |
);
|
sl@0
|
100 |
static void my_tester0_init (MyTester0*t) {}
|
sl@0
|
101 |
static void my_tester0_class_init (MyTester0Class*c) { call_counter_init (c); }
|
sl@0
|
102 |
typedef GObject MyTester1;
|
sl@0
|
103 |
typedef GObjectClass MyTester1Class;
|
sl@0
|
104 |
G_DEFINE_TYPE_WITH_CODE (MyTester1, my_tester1, G_TYPE_OBJECT,
|
sl@0
|
105 |
G_IMPLEMENT_INTERFACE (my_face0_get_type(), interface_per_class_init);
|
sl@0
|
106 |
G_IMPLEMENT_INTERFACE (my_face1_get_type(), interface_per_class_init);
|
sl@0
|
107 |
);
|
sl@0
|
108 |
static void my_tester1_init (MyTester1*t) {}
|
sl@0
|
109 |
static void my_tester1_class_init (MyTester1Class*c) { call_counter_init (c); }
|
sl@0
|
110 |
typedef GObject MyTester2;
|
sl@0
|
111 |
typedef GObjectClass MyTester2Class;
|
sl@0
|
112 |
G_DEFINE_TYPE_WITH_CODE (MyTester2, my_tester2, G_TYPE_OBJECT,
|
sl@0
|
113 |
G_IMPLEMENT_INTERFACE (my_face0_get_type(), interface_per_class_init);
|
sl@0
|
114 |
G_IMPLEMENT_INTERFACE (my_face1_get_type(), interface_per_class_init);
|
sl@0
|
115 |
);
|
sl@0
|
116 |
static void my_tester2_init (MyTester2*t) {}
|
sl@0
|
117 |
static void my_tester2_class_init (MyTester2Class*c) { call_counter_init (c); }
|
sl@0
|
118 |
|
sl@0
|
119 |
static GCond *sync_cond = NULL;
|
sl@0
|
120 |
static GMutex *sync_mutex = NULL;
|
sl@0
|
121 |
|
sl@0
|
122 |
static gpointer
|
sl@0
|
123 |
tester_init_thread (gpointer data)
|
sl@0
|
124 |
{
|
sl@0
|
125 |
const GInterfaceInfo face2_interface_info = { (GInterfaceInitFunc) interface_per_class_init, NULL, NULL };
|
sl@0
|
126 |
gpointer klass;
|
sl@0
|
127 |
/* first, syncronize with other threads,
|
sl@0
|
128 |
* then run interface and class initializers,
|
sl@0
|
129 |
* using unsafe_call_counter concurrently
|
sl@0
|
130 |
*/
|
sl@0
|
131 |
g_mutex_lock (sync_mutex);
|
sl@0
|
132 |
g_mutex_unlock (sync_mutex);
|
sl@0
|
133 |
/* test default interface initialization for face0 */
|
sl@0
|
134 |
g_type_default_interface_unref (g_type_default_interface_ref (my_face0_get_type()));
|
sl@0
|
135 |
/* test class initialization, face0 per-class initializer, face1 default and per-class initializer */
|
sl@0
|
136 |
klass = g_type_class_ref ((GType) data);
|
sl@0
|
137 |
/* test face2 default and per-class initializer, after class_init */
|
sl@0
|
138 |
g_type_add_interface_static (G_TYPE_FROM_CLASS (klass), my_face2_get_type(), &face2_interface_info);
|
sl@0
|
139 |
/* cleanups */
|
sl@0
|
140 |
g_type_class_unref (klass);
|
sl@0
|
141 |
return NULL;
|
sl@0
|
142 |
}
|
sl@0
|
143 |
|
sl@0
|
144 |
static void
|
sl@0
|
145 |
test_threaded_class_init (void)
|
sl@0
|
146 |
{
|
sl@0
|
147 |
GThread *threads[3] = { NULL, };
|
sl@0
|
148 |
/* pause newly created threads */
|
sl@0
|
149 |
g_mutex_lock (sync_mutex);
|
sl@0
|
150 |
/* create threads */
|
sl@0
|
151 |
threads[0] = g_thread_create (tester_init_thread, (gpointer) my_tester0_get_type(), TRUE, NULL);
|
sl@0
|
152 |
threads[1] = g_thread_create (tester_init_thread, (gpointer) my_tester1_get_type(), TRUE, NULL);
|
sl@0
|
153 |
threads[2] = g_thread_create (tester_init_thread, (gpointer) my_tester2_get_type(), TRUE, NULL);
|
sl@0
|
154 |
/* execute threads */
|
sl@0
|
155 |
g_mutex_unlock (sync_mutex);
|
sl@0
|
156 |
while (g_atomic_int_get (&mtsafe_call_counter) < (3 + 3 + 3 * 3) * NUM_COUNTER_INCREMENTS)
|
sl@0
|
157 |
{
|
sl@0
|
158 |
if (g_test_verbose())
|
sl@0
|
159 |
g_print ("Initializers counted: %u\n", g_atomic_int_get (&mtsafe_call_counter));
|
sl@0
|
160 |
g_usleep (50 * 1000); /* wait for threads to complete */
|
sl@0
|
161 |
}
|
sl@0
|
162 |
if (g_test_verbose())
|
sl@0
|
163 |
g_print ("Total initializers: %u\n", g_atomic_int_get (&mtsafe_call_counter));
|
sl@0
|
164 |
/* ensure non-corrupted counter updates */
|
sl@0
|
165 |
#ifndef __SYMBIAN32__
|
sl@0
|
166 |
g_assert_cmpint (g_atomic_int_get (&mtsafe_call_counter), ==, unsafe_call_counter);
|
sl@0
|
167 |
#else
|
sl@0
|
168 |
/*How can we be so sure of g_atomic_int_get (&mtsafe_call_counter) == unsafe_call_counter ? */
|
sl@0
|
169 |
/*Needs to be verified with glib community */
|
sl@0
|
170 |
g_assert(g_atomic_int_get (&mtsafe_call_counter) != unsafe_call_counter);
|
sl@0
|
171 |
#endif
|
sl@0
|
172 |
}
|
sl@0
|
173 |
|
sl@0
|
174 |
typedef struct {
|
sl@0
|
175 |
GObject parent;
|
sl@0
|
176 |
char *name;
|
sl@0
|
177 |
} PropTester;
|
sl@0
|
178 |
typedef GObjectClass PropTesterClass;
|
sl@0
|
179 |
G_DEFINE_TYPE (PropTester, prop_tester, G_TYPE_OBJECT);
|
sl@0
|
180 |
#define PROP_NAME 1
|
sl@0
|
181 |
static void
|
sl@0
|
182 |
prop_tester_init (PropTester* t)
|
sl@0
|
183 |
{
|
sl@0
|
184 |
if (t->name == NULL)
|
sl@0
|
185 |
; // neds unit test framework initialization: g_test_bug ("race initializing properties");
|
sl@0
|
186 |
}
|
sl@0
|
187 |
static void
|
sl@0
|
188 |
prop_tester_set_property (GObject *object,
|
sl@0
|
189 |
guint property_id,
|
sl@0
|
190 |
const GValue *value,
|
sl@0
|
191 |
GParamSpec *pspec)
|
sl@0
|
192 |
{}
|
sl@0
|
193 |
static void
|
sl@0
|
194 |
prop_tester_class_init (PropTesterClass *c)
|
sl@0
|
195 |
{
|
sl@0
|
196 |
int i;
|
sl@0
|
197 |
GParamSpec *param;
|
sl@0
|
198 |
GObjectClass *gobject_class = G_OBJECT_CLASS (c);
|
sl@0
|
199 |
|
sl@0
|
200 |
gobject_class->set_property = prop_tester_set_property; /* silence GObject checks */
|
sl@0
|
201 |
|
sl@0
|
202 |
g_mutex_lock (sync_mutex);
|
sl@0
|
203 |
g_cond_signal (sync_cond);
|
sl@0
|
204 |
g_mutex_unlock (sync_mutex);
|
sl@0
|
205 |
|
sl@0
|
206 |
for (i = 0; i < 100; i++) /* wait a bit. */
|
sl@0
|
207 |
g_thread_yield();
|
sl@0
|
208 |
|
sl@0
|
209 |
call_counter_init (c);
|
sl@0
|
210 |
param = g_param_spec_string ("name", "name_i18n",
|
sl@0
|
211 |
"yet-more-wasteful-i18n",
|
sl@0
|
212 |
NULL,
|
sl@0
|
213 |
G_PARAM_CONSTRUCT_ONLY | G_PARAM_WRITABLE |
|
sl@0
|
214 |
G_PARAM_STATIC_NAME | G_PARAM_STATIC_BLURB |
|
sl@0
|
215 |
G_PARAM_STATIC_NICK);
|
sl@0
|
216 |
g_object_class_install_property (gobject_class, PROP_NAME, param);
|
sl@0
|
217 |
}
|
sl@0
|
218 |
|
sl@0
|
219 |
static gpointer
|
sl@0
|
220 |
object_create (gpointer data)
|
sl@0
|
221 |
{
|
sl@0
|
222 |
GObject *obj = g_object_new (prop_tester_get_type(), "name", "fish", NULL);
|
sl@0
|
223 |
g_object_unref (obj);
|
sl@0
|
224 |
return NULL;
|
sl@0
|
225 |
}
|
sl@0
|
226 |
|
sl@0
|
227 |
static void
|
sl@0
|
228 |
test_threaded_object_init (void)
|
sl@0
|
229 |
{
|
sl@0
|
230 |
GThread *creator;
|
sl@0
|
231 |
g_mutex_lock (sync_mutex);
|
sl@0
|
232 |
|
sl@0
|
233 |
creator = g_thread_create (object_create, NULL, TRUE, NULL);
|
sl@0
|
234 |
/* really provoke the race */
|
sl@0
|
235 |
g_cond_wait (sync_cond, sync_mutex);
|
sl@0
|
236 |
|
sl@0
|
237 |
object_create (NULL);
|
sl@0
|
238 |
g_mutex_unlock (sync_mutex);
|
sl@0
|
239 |
|
sl@0
|
240 |
g_thread_join (creator);
|
sl@0
|
241 |
}
|
sl@0
|
242 |
|
sl@0
|
243 |
int
|
sl@0
|
244 |
main (int argc,
|
sl@0
|
245 |
char *argv[])
|
sl@0
|
246 |
{
|
sl@0
|
247 |
#ifdef __SYMBIAN32__
|
sl@0
|
248 |
g_log_set_handler (NULL, G_LOG_FLAG_FATAL| G_LOG_FLAG_RECURSION | G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING | G_LOG_LEVEL_MESSAGE | G_LOG_LEVEL_INFO | G_LOG_LEVEL_DEBUG, &mrtLogHandler, NULL);
|
sl@0
|
249 |
g_set_print_handler(mrtPrintHandler);
|
sl@0
|
250 |
#endif /*__SYMBIAN32__*/
|
sl@0
|
251 |
g_thread_init (NULL);
|
sl@0
|
252 |
g_test_init (&argc, &argv, NULL);
|
sl@0
|
253 |
g_type_init ();
|
sl@0
|
254 |
|
sl@0
|
255 |
sync_cond = g_cond_new();
|
sl@0
|
256 |
sync_mutex = g_mutex_new();
|
sl@0
|
257 |
|
sl@0
|
258 |
g_test_add_func ("/GObject/threaded-class-init", test_threaded_class_init);
|
sl@0
|
259 |
g_test_add_func ("/GObject/threaded-object-init", test_threaded_object_init);
|
sl@0
|
260 |
|
sl@0
|
261 |
/*return*/ g_test_run();
|
sl@0
|
262 |
#ifdef __SYMBIAN32__
|
sl@0
|
263 |
testResultXml("threadtests");
|
sl@0
|
264 |
#endif /* EMULATOR */
|
sl@0
|
265 |
return 0;
|
sl@0
|
266 |
}
|