Update contrib.
1 /* Portion Copyright © 2008-09 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.*/
2 #undef G_DISABLE_ASSERT
7 #include <glib_global.h>
8 #include "mrt2_glib2_test.h"
9 #endif /*__SYMBIAN32__*/
14 static GMutex* test_g_mutex_mutex = NULL;
15 static guint test_g_mutex_int = 0;
16 static gboolean test_g_mutex_thread_ready;
17 G_LOCK_DEFINE_STATIC (test_g_mutex);
20 test_g_mutex_thread (gpointer data)
22 g_assert (GPOINTER_TO_INT (data) == 42);
23 g_assert (g_mutex_trylock (test_g_mutex_mutex) == FALSE);
24 g_assert (G_TRYLOCK (test_g_mutex) == FALSE);
25 test_g_mutex_thread_ready = TRUE;
26 g_mutex_lock (test_g_mutex_mutex);
27 g_assert (test_g_mutex_int == 42);
28 g_mutex_unlock (test_g_mutex_mutex);
30 return GINT_TO_POINTER (41);
37 test_g_mutex_mutex = g_mutex_new ();
39 g_assert (g_mutex_trylock (test_g_mutex_mutex));
40 g_assert (G_TRYLOCK (test_g_mutex));
41 test_g_mutex_thread_ready = FALSE;
42 thread = g_thread_create (test_g_mutex_thread, GINT_TO_POINTER (42),
44 /* This busy wait is only for testing purposes and not an example of
46 while (!test_g_mutex_thread_ready)
47 g_usleep (G_USEC_PER_SEC / 5);
48 test_g_mutex_int = 42;
49 G_UNLOCK (test_g_mutex);
50 g_mutex_unlock (test_g_mutex_mutex);
51 g_assert (GPOINTER_TO_INT (g_thread_join (thread)) == 41);
52 g_mutex_free (test_g_mutex_mutex);
57 static GStaticRecMutex test_g_static_rec_mutex_mutex = G_STATIC_REC_MUTEX_INIT;
58 static guint test_g_static_rec_mutex_int = 0;
59 static gboolean test_g_static_rec_mutex_thread_ready;
62 test_g_static_rec_mutex_thread (gpointer data)
64 g_assert (GPOINTER_TO_INT (data) == 42);
65 g_assert (g_static_rec_mutex_trylock (&test_g_static_rec_mutex_mutex)
67 test_g_static_rec_mutex_thread_ready = TRUE;
68 g_static_rec_mutex_lock (&test_g_static_rec_mutex_mutex);
69 g_static_rec_mutex_lock (&test_g_static_rec_mutex_mutex);
70 g_assert (test_g_static_rec_mutex_int == 42);
71 test_g_static_rec_mutex_thread_ready = FALSE;
72 g_static_rec_mutex_unlock (&test_g_static_rec_mutex_mutex);
73 g_static_rec_mutex_unlock (&test_g_static_rec_mutex_mutex);
75 g_thread_exit (GINT_TO_POINTER (43));
77 g_assert_not_reached ();
82 test_g_static_rec_mutex (void)
86 g_assert (g_static_rec_mutex_trylock (&test_g_static_rec_mutex_mutex));
87 test_g_static_rec_mutex_thread_ready = FALSE;
88 thread = g_thread_create (test_g_static_rec_mutex_thread,
89 GINT_TO_POINTER (42), TRUE, NULL);
90 /* This busy wait is only for testing purposes and not an example of
92 while (!test_g_static_rec_mutex_thread_ready)
93 g_usleep (G_USEC_PER_SEC / 5);
95 g_assert (g_static_rec_mutex_trylock (&test_g_static_rec_mutex_mutex));
96 test_g_static_rec_mutex_int = 41;
97 g_static_rec_mutex_unlock (&test_g_static_rec_mutex_mutex);
98 test_g_static_rec_mutex_int = 42;
99 g_static_rec_mutex_unlock (&test_g_static_rec_mutex_mutex);
101 /* This busy wait is only for testing purposes and not an example of
103 while (test_g_static_rec_mutex_thread_ready)
104 g_usleep (G_USEC_PER_SEC / 5);
106 g_static_rec_mutex_lock (&test_g_static_rec_mutex_mutex);
107 test_g_static_rec_mutex_int = 0;
108 g_static_rec_mutex_unlock (&test_g_static_rec_mutex_mutex);
110 g_assert (GPOINTER_TO_INT (g_thread_join (thread)) == 43);
117 static GStaticPrivate test_g_static_private_private1 = G_STATIC_PRIVATE_INIT;
118 static GStaticPrivate test_g_static_private_private2 = G_STATIC_PRIVATE_INIT;
119 static GStaticMutex test_g_static_private_mutex = G_STATIC_MUTEX_INIT;
120 static guint test_g_static_private_counter = 0;
121 static guint test_g_static_private_ready = 0;
124 test_g_static_private_constructor (void)
126 g_static_mutex_lock (&test_g_static_private_mutex);
127 test_g_static_private_counter++;
128 g_static_mutex_unlock (&test_g_static_private_mutex);
129 return g_new (guint,1);
133 test_g_static_private_destructor (gpointer data)
135 g_static_mutex_lock (&test_g_static_private_mutex);
136 test_g_static_private_counter--;
137 g_static_mutex_unlock (&test_g_static_private_mutex);
143 test_g_static_private_thread (gpointer data)
145 guint number = GPOINTER_TO_INT (data);
147 guint *private1, *private2;
148 for (i = 0; i < 10; i++)
150 number = number * 11 + 1; /* A very simple and bad RNG ;-) */
151 private1 = g_static_private_get (&test_g_static_private_private1);
152 if (!private1 || number % 7 > 3)
154 private1 = test_g_static_private_constructor ();
155 g_static_private_set (&test_g_static_private_private1, private1,
156 test_g_static_private_destructor);
159 private2 = g_static_private_get (&test_g_static_private_private2);
160 if (!private2 || number % 13 > 5)
162 private2 = test_g_static_private_constructor ();
163 g_static_private_set (&test_g_static_private_private2, private2,
164 test_g_static_private_destructor);
166 *private2 = number * 2;
167 g_usleep (G_USEC_PER_SEC / 5);
168 g_assert (number == *private1);
169 g_assert (number * 2 == *private2);
171 g_static_mutex_lock (&test_g_static_private_mutex);
172 test_g_static_private_ready++;
173 g_static_mutex_unlock (&test_g_static_private_mutex);
175 /* Busy wait is not nice but that's just a test */
176 while (test_g_static_private_ready != 0)
177 g_usleep (G_USEC_PER_SEC / 5);
179 for (i = 0; i < 10; i++)
181 private2 = g_static_private_get (&test_g_static_private_private2);
182 number = number * 11 + 1; /* A very simple and bad RNG ;-) */
183 if (!private2 || number % 13 > 5)
185 private2 = test_g_static_private_constructor ();
186 g_static_private_set (&test_g_static_private_private2, private2,
187 test_g_static_private_destructor);
189 *private2 = number * 2;
190 g_usleep (G_USEC_PER_SEC / 5);
191 g_assert (number * 2 == *private2);
194 return GINT_TO_POINTER (GPOINTER_TO_INT (data) * 3);
198 test_g_static_private (void)
200 GThread *threads[THREADS];
203 test_g_static_private_ready = 0;
205 for (i = 0; i < THREADS; i++)
207 threads[i] = g_thread_create (test_g_static_private_thread,
208 GINT_TO_POINTER (i), TRUE, NULL);
211 /* Busy wait is not nice but that's just a test */
212 while (test_g_static_private_ready != THREADS)
213 g_usleep (G_USEC_PER_SEC / 5);
215 /* Reuse the static private */
216 g_static_private_free (&test_g_static_private_private2);
217 g_static_private_init (&test_g_static_private_private2);
219 test_g_static_private_ready = 0;
221 for (i = 0; i < THREADS; i++)
222 g_assert (GPOINTER_TO_INT (g_thread_join (threads[i])) == i * 3);
224 g_assert (test_g_static_private_counter == 0);
229 /* -1 = writing; >0 = # of readers */
230 static gint test_g_static_rw_lock_state = 0;
231 G_LOCK_DEFINE (test_g_static_rw_lock_state);
233 static gboolean test_g_static_rw_lock_run = TRUE;
234 static GStaticRWLock test_g_static_rw_lock_lock = G_STATIC_RW_LOCK_INIT;
237 test_g_static_rw_lock_thread (gpointer data)
239 while (test_g_static_rw_lock_run)
241 if (g_random_double() > .2) /* I'm a reader */
244 if (g_random_double() > .2) /* I'll block */
245 g_static_rw_lock_reader_lock (&test_g_static_rw_lock_lock);
246 else /* I'll only try */
247 if (!g_static_rw_lock_reader_trylock (&test_g_static_rw_lock_lock))
249 G_LOCK (test_g_static_rw_lock_state);
250 g_assert (test_g_static_rw_lock_state >= 0);
251 test_g_static_rw_lock_state++;
252 G_UNLOCK (test_g_static_rw_lock_state);
254 g_usleep (g_random_int_range (20,1000));
256 G_LOCK (test_g_static_rw_lock_state);
257 test_g_static_rw_lock_state--;
258 G_UNLOCK (test_g_static_rw_lock_state);
260 g_static_rw_lock_reader_unlock (&test_g_static_rw_lock_lock);
262 else /* I'm a writer */
265 if (g_random_double() > .2) /* I'll block */
266 g_static_rw_lock_writer_lock (&test_g_static_rw_lock_lock);
267 else /* I'll only try */
268 if (!g_static_rw_lock_writer_trylock (&test_g_static_rw_lock_lock))
270 G_LOCK (test_g_static_rw_lock_state);
271 g_assert (test_g_static_rw_lock_state == 0);
272 test_g_static_rw_lock_state = -1;
273 G_UNLOCK (test_g_static_rw_lock_state);
275 g_usleep (g_random_int_range (20,1000));
277 G_LOCK (test_g_static_rw_lock_state);
278 test_g_static_rw_lock_state = 0;
279 G_UNLOCK (test_g_static_rw_lock_state);
281 g_static_rw_lock_writer_unlock (&test_g_static_rw_lock_lock);
288 test_g_static_rw_lock ()
290 GThread *threads[THREADS];
292 for (i = 0; i < THREADS; i++)
294 threads[i] = g_thread_create (test_g_static_rw_lock_thread,
297 g_usleep (G_USEC_PER_SEC * 5);
298 test_g_static_rw_lock_run = FALSE;
299 for (i = 0; i < THREADS; i++)
301 g_thread_join (threads[i]);
303 g_assert (test_g_static_rw_lock_state == 0);
306 #define G_ONCE_SIZE 100
307 #define G_ONCE_THREADS 10
309 G_LOCK_DEFINE (test_g_once);
310 static guint test_g_once_guint_array[G_ONCE_SIZE];
311 static GOnce test_g_once_array[G_ONCE_SIZE];
314 test_g_once_init_func(gpointer arg)
317 g_usleep (g_random_int_range (20,1000));
319 g_usleep (g_random_int_range (20,1000));
324 test_g_once_thread (gpointer ignore)
327 G_LOCK (test_g_once);
328 /* Don't start before all threads are created */
329 G_UNLOCK (test_g_once);
330 for (i = 0; i < 1000; i++)
332 guint pos = g_random_int_range (0, G_ONCE_SIZE);
333 gpointer ret = g_once (test_g_once_array + pos, test_g_once_init_func,
334 test_g_once_guint_array + pos);
335 g_assert (ret == test_g_once_guint_array + pos);
338 /* Make sure, that all counters are touched at least once */
339 for (i = 0; i < G_ONCE_SIZE; i++)
341 gpointer ret = g_once (test_g_once_array + i, test_g_once_init_func,
342 test_g_once_guint_array + i);
343 g_assert (ret == test_g_once_guint_array + i);
350 test_g_thread_once (void)
352 static GOnce once_init = G_ONCE_INIT;
353 GThread *threads[G_ONCE_THREADS];
355 for (i = 0; i < G_ONCE_SIZE; i++)
357 test_g_once_array[i] = once_init;
358 test_g_once_guint_array[i] = i;
360 G_LOCK (test_g_once);
361 for (i = 0; i < G_ONCE_THREADS; i++)
363 threads[i] = g_thread_create (test_g_once_thread, GUINT_TO_POINTER(i%2),
366 G_UNLOCK (test_g_once);
367 for (i = 0; i < G_ONCE_THREADS; i++)
369 g_thread_join (threads[i]);
372 for (i = 0; i < G_ONCE_SIZE; i++)
374 g_assert (test_g_once_guint_array[i] == i + 1);
378 /* run all the tests */
383 test_g_static_rec_mutex ();
384 test_g_static_private ();
385 test_g_static_rw_lock ();
386 test_g_thread_once ();
395 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);
396 g_set_print_handler(mrtPrintHandler);
397 #endif /*__SYMBIAN32__*/
400 /* Only run the test, if threads are enabled and a default thread
401 implementation is available */
402 #if defined(G_THREADS_ENABLED) && ! defined(G_THREADS_IMPL_NONE)
403 g_thread_init (NULL);
406 /* Now we rerun all tests, but this time we fool the system into
407 * thinking, that the available thread system is not native, but
410 g_thread_use_default_impl = FALSE;
416 testResultXml("thread-test");
417 #endif /* EMULATOR */