Update contrib.
1 /* Portion Copyright © 2008-09 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.*/
2 #undef G_DISABLE_ASSERT
10 #include <glib_global.h>
11 #include "mrt2_glib2_test.h"
12 #endif /*__SYMBIAN32__*/
14 /* #define DEBUG_MSG(args) g_printerr args ; g_printerr ("\n"); */
16 #define WAIT 5 /* seconds */
17 #define MAX_THREADS 10
19 /* if > 0 the test will run continously (since the test ends when
20 * thread count is 0), if -1 it means no limit to unused threads
21 * if 0 then no unused threads are possible */
22 #define MAX_UNUSED_THREADS -1
24 G_LOCK_DEFINE_STATIC (thread_counter_pools);
26 static gulong abs_thread_counter = 0;
27 static gulong running_thread_counter = 0;
28 static gulong leftover_task_counter = 0;
30 G_LOCK_DEFINE_STATIC (last_thread);
32 static guint last_thread_id = 0;
34 G_LOCK_DEFINE_STATIC (thread_counter_sort);
36 static gulong sort_thread_counter = 0;
38 static GThreadPool *idle_pool = NULL;
40 static GMainLoop *main_loop = NULL;
43 test_thread_functions (void)
45 gint max_unused_threads;
48 /* This function attempts to call functions which don't need a
49 * threadpool to operate to make sure no uninitialised pointers
50 * accessed and no errors occur.
53 max_unused_threads = 3;
55 DEBUG_MSG (("[funcs] Setting max unused threads to %d",
57 g_thread_pool_set_max_unused_threads (max_unused_threads);
59 DEBUG_MSG (("[funcs] Getting max unused threads = %d",
60 g_thread_pool_get_max_unused_threads ()));
61 g_assert (g_thread_pool_get_max_unused_threads() == max_unused_threads);
63 DEBUG_MSG (("[funcs] Getting num unused threads = %d",
64 g_thread_pool_get_num_unused_threads ()));
65 g_assert (g_thread_pool_get_num_unused_threads () == 0);
67 DEBUG_MSG (("[funcs] Stopping unused threads"));
68 g_thread_pool_stop_unused_threads ();
70 max_idle_time = 10 * G_USEC_PER_SEC;
72 DEBUG_MSG (("[funcs] Setting max idle time to %d",
74 g_thread_pool_set_max_idle_time (max_idle_time);
76 DEBUG_MSG (("[funcs] Getting max idle time = %d",
77 g_thread_pool_get_max_idle_time ()));
78 g_assert (g_thread_pool_get_max_idle_time () == max_idle_time);
80 DEBUG_MSG (("[funcs] Setting max idle time to 0"));
81 g_thread_pool_set_max_idle_time (0);
83 DEBUG_MSG (("[funcs] Getting max idle time = %d",
84 g_thread_pool_get_max_idle_time ()));
85 g_assert (g_thread_pool_get_max_idle_time () == 0);
89 test_count_threads_foreach (GThread *thread,
96 test_count_threads (void)
100 g_thread_foreach ((GFunc) test_count_threads_foreach, &count);
102 /* Exclude main thread */
107 test_thread_stop_unused (void)
113 /* Spawn a few threads. */
114 g_thread_pool_set_max_unused_threads (-1);
115 pool = g_thread_pool_new ((GFunc) g_usleep, NULL, -1, FALSE, NULL);
117 for (i = 0; i < limit; i++)
118 g_thread_pool_push (pool, GUINT_TO_POINTER (1000), NULL);
120 DEBUG_MSG (("[unused] ===> pushed %d threads onto the idle pool",
123 /* Wait for the threads to migrate. */
124 g_usleep (G_USEC_PER_SEC);
126 DEBUG_MSG (("[unused] current threads %d",
127 test_count_threads()));
129 DEBUG_MSG (("[unused] stopping unused threads"));
130 g_thread_pool_stop_unused_threads ();
132 DEBUG_MSG (("[unused] waiting ONE second for threads to die"));
134 /* Some time for threads to die. */
135 g_usleep (G_USEC_PER_SEC);
137 DEBUG_MSG (("[unused] stopped idle threads, %d remain, %d threads still exist",
138 g_thread_pool_get_num_unused_threads (),
139 test_count_threads ()));
141 g_assert (g_thread_pool_get_num_unused_threads () == test_count_threads ());
142 g_assert (g_thread_pool_get_num_unused_threads () == 0);
144 g_thread_pool_set_max_unused_threads (MAX_THREADS);
146 DEBUG_MSG (("[unused] cleaning up thread pool"));
147 g_thread_pool_free (pool, FALSE, TRUE);
151 test_thread_pools_entry_func (gpointer data, gpointer user_data)
155 id = GPOINTER_TO_UINT (data);
157 DEBUG_MSG (("[pool] ---> [%3.3d] entered thread.", id));
159 G_LOCK (thread_counter_pools);
160 abs_thread_counter++;
161 running_thread_counter++;
162 G_UNLOCK (thread_counter_pools);
164 g_usleep (g_random_int_range (0, 4000));
166 G_LOCK (thread_counter_pools);
167 running_thread_counter--;
168 leftover_task_counter--;
170 DEBUG_MSG (("[pool] ---> [%3.3d] exiting thread (abs count:%ld, "
171 "running count:%ld, left over:%ld)",
172 id, abs_thread_counter,
173 running_thread_counter, leftover_task_counter));
174 G_UNLOCK (thread_counter_pools);
178 test_thread_pools (void)
180 GThreadPool *pool1, *pool2, *pool3;
184 pool1 = g_thread_pool_new ((GFunc)test_thread_pools_entry_func, NULL, 3, FALSE, NULL);
185 pool2 = g_thread_pool_new ((GFunc)test_thread_pools_entry_func, NULL, 5, TRUE, NULL);
186 pool3 = g_thread_pool_new ((GFunc)test_thread_pools_entry_func, NULL, 7, TRUE, NULL);
189 for (i = 0; i < runs; i++)
191 g_thread_pool_push (pool1, GUINT_TO_POINTER (i + 1), NULL);
192 g_thread_pool_push (pool2, GUINT_TO_POINTER (i + 1), NULL);
193 g_thread_pool_push (pool3, GUINT_TO_POINTER (i + 1), NULL);
195 G_LOCK (thread_counter_pools);
196 leftover_task_counter += 3;
197 G_UNLOCK (thread_counter_pools);
200 g_thread_pool_free (pool1, TRUE, TRUE);
201 g_thread_pool_free (pool2, FALSE, TRUE);
202 g_thread_pool_free (pool3, FALSE, TRUE);
204 g_assert (runs * 3 == abs_thread_counter + leftover_task_counter);
205 g_assert (running_thread_counter == 0);
209 test_thread_sort_compare_func (gconstpointer a, gconstpointer b, gpointer user_data)
213 id1 = GPOINTER_TO_UINT (a);
214 id2 = GPOINTER_TO_UINT (b);
216 return (id1 > id2 ? +1 : id1 == id2 ? 0 : -1);
220 test_thread_sort_entry_func (gpointer data, gpointer user_data)
225 G_LOCK (last_thread);
227 thread_id = GPOINTER_TO_UINT (data);
228 is_sorted = GPOINTER_TO_INT (user_data);
230 DEBUG_MSG (("%s ---> entered thread:%2.2d, last thread:%2.2d",
231 is_sorted ? "[ sorted]" : "[unsorted]",
232 thread_id, last_thread_id));
235 static gboolean last_failed = FALSE;
237 if (last_thread_id > thread_id) {
239 g_assert (last_thread_id <= thread_id);
242 /* Here we remember one fail and if it concurrently fails, it
243 * can not be sorted. the last thread id might be < this thread
244 * id if something is added to the queue since threads were
252 last_thread_id = thread_id;
255 G_UNLOCK (last_thread);
257 g_usleep (WAIT * 1000);
261 test_thread_sort (gboolean sort)
268 limit = MAX_THREADS * 10;
273 max_threads = MAX_THREADS;
276 /* It is important that we only have a maximum of 1 thread for this
277 * test since the results can not be guranteed to be sorted if > 1.
279 * Threads are scheduled by the operating system and are executed at
280 * random. It cannot be assumed that threads are executed in the
281 * order they are created. This was discussed in bug #334943.
284 pool = g_thread_pool_new (test_thread_sort_entry_func,
285 GINT_TO_POINTER (sort),
290 g_thread_pool_set_max_unused_threads (MAX_UNUSED_THREADS);
293 g_thread_pool_set_sort_function (pool,
294 test_thread_sort_compare_func,
295 GUINT_TO_POINTER (69));
298 for (i = 0; i < limit; i++) {
301 id = g_random_int_range (1, limit) + 1;
302 g_thread_pool_push (pool, GUINT_TO_POINTER (id), NULL);
303 DEBUG_MSG (("%s ===> pushed new thread with id:%d, number "
304 "of threads:%d, unprocessed:%d",
305 sort ? "[ sorted]" : "[unsorted]",
307 g_thread_pool_get_num_threads (pool),
308 g_thread_pool_unprocessed (pool)));
311 g_assert (g_thread_pool_get_max_threads (pool) == max_threads);
312 g_assert (g_thread_pool_get_num_threads (pool) == g_thread_pool_get_max_threads (pool));
316 test_thread_idle_time_entry_func (gpointer data, gpointer user_data)
320 thread_id = GPOINTER_TO_UINT (data);
322 DEBUG_MSG (("[idle] ---> entered thread:%2.2d", thread_id));
324 g_usleep (WAIT * 1000);
326 DEBUG_MSG (("[idle] <--- exiting thread:%2.2d", thread_id));
330 test_thread_idle_timeout (gpointer data)
335 interval = GPOINTER_TO_UINT (data);
337 for (i = 0; i < 2; i++) {
338 g_thread_pool_push (idle_pool, GUINT_TO_POINTER (100 + i), NULL);
339 DEBUG_MSG (("[idle] ===> pushed new thread with id:%d, number "
340 "of threads:%d, unprocessed:%d",
342 g_thread_pool_get_num_threads (idle_pool),
343 g_thread_pool_unprocessed (idle_pool)));
351 test_thread_idle_time ()
354 guint interval = 10000;
357 idle_pool = g_thread_pool_new (test_thread_idle_time_entry_func,
363 g_thread_pool_set_max_unused_threads (MAX_UNUSED_THREADS);
364 g_thread_pool_set_max_idle_time (interval);
366 g_assert (g_thread_pool_get_max_unused_threads () == MAX_UNUSED_THREADS);
367 g_assert (g_thread_pool_get_max_idle_time () == interval);
369 for (i = 0; i < limit; i++) {
370 g_thread_pool_push (idle_pool, GUINT_TO_POINTER (i + 1), NULL);
371 DEBUG_MSG (("[idle] ===> pushed new thread with id:%d, "
372 "number of threads:%d, unprocessed:%d",
374 g_thread_pool_get_num_threads (idle_pool),
375 g_thread_pool_unprocessed (idle_pool)));
378 g_timeout_add ((interval - 1000),
379 test_thread_idle_timeout,
380 GUINT_TO_POINTER (interval));
384 test_check_start_and_stop (gpointer user_data)
386 static guint test_number = 0;
387 static gboolean run_next = FALSE;
388 gboolean continue_timeout = TRUE;
389 gboolean quit = TRUE;
391 if (test_number == 0) {
393 DEBUG_MSG (("***** RUNNING TEST %2.2d *****", test_number));
399 switch (test_number) {
401 test_thread_functions ();
404 test_thread_stop_unused ();
407 test_thread_pools ();
410 test_thread_sort (FALSE);
413 test_thread_sort (TRUE);
416 test_thread_stop_unused ();
419 test_thread_idle_time ();
422 DEBUG_MSG (("***** END OF TESTS *****"));
423 g_main_loop_quit (main_loop);
424 continue_timeout = FALSE;
432 if (test_number == 3) {
433 G_LOCK (thread_counter_pools);
434 quit &= running_thread_counter <= 0;
435 DEBUG_MSG (("***** POOL RUNNING THREAD COUNT:%ld",
436 running_thread_counter));
437 G_UNLOCK (thread_counter_pools);
440 if (test_number == 4 || test_number == 5) {
441 G_LOCK (thread_counter_sort);
442 quit &= sort_thread_counter <= 0;
443 DEBUG_MSG (("***** POOL SORT THREAD COUNT:%ld",
444 sort_thread_counter));
445 G_UNLOCK (thread_counter_sort);
448 if (test_number == 7) {
451 idle = g_thread_pool_get_num_unused_threads ();
453 DEBUG_MSG (("***** POOL IDLE THREAD COUNT:%d, UNPROCESSED JOBS:%d",
454 idle, g_thread_pool_unprocessed (idle_pool)));
461 return continue_timeout;
465 main (int argc, char *argv[])
467 /* Only run the test, if threads are enabled and a default thread
468 implementation is available */
470 guint g_thread_pool_unprocessed_op = -1;
472 #endif //__SYMBIAN32__
474 #if defined(G_THREADS_ENABLED) && ! defined(G_THREADS_IMPL_NONE)
475 g_thread_init (NULL);
477 DEBUG_MSG (("Starting... (in one second)"));
478 g_timeout_add (1000, test_check_start_and_stop, NULL);
480 main_loop = g_main_loop_new (NULL, FALSE);
481 g_main_loop_run (main_loop);
484 testResultXml("threadpool-test");
485 #endif /* EMULATOR */