Update contrib.
2 * Portions copyright (c) 2006-2009 Nokia Corporation. All rights reserved.
4 #undef G_DISABLE_ASSERT
12 #define DEBUG_MSG(args)
13 /* #define DEBUG_MSG(args) g_printerr args ; g_printerr ("\n"); */
14 #define PRINT_MSG(args)
15 /* #define PRINT_MSG(args) g_print args ; g_print ("\n"); */
17 #define MAX_THREADS 50
18 #define MAX_SORTS 5 /* only applies if
19 ASYC_QUEUE_DO_SORT is set to 1 */
20 #define MAX_TIME 20 /* seconds */
21 #define MIN_TIME 5 /* seconds */
23 #define SORT_QUEUE_AFTER 1
24 #define SORT_QUEUE_ON_PUSH 1 /* if this is done, the
25 SORT_QUEUE_AFTER is ignored */
26 #define QUIT_WHEN_DONE 1
29 #if SORT_QUEUE_ON_PUSH == 1
30 # undef SORT_QUEUE_AFTER
31 # define SORT_QUEUE_AFTER 0
35 #include "mrt2_glib2_test.h"
36 #endif /*__SYMBIAN32__*/
39 static GMainLoop *main_loop = NULL;
40 static GThreadPool *thread_pool = NULL;
41 static GAsyncQueue *async_queue = NULL;
45 sort_compare (gconstpointer p1, gconstpointer p2, gpointer user_data)
50 id1 = GPOINTER_TO_INT (p1);
51 id2 = GPOINTER_TO_INT (p2);
53 DEBUG_MSG (("comparing #1:%d and #2:%d, returning %d",
54 id1, id2, (id1 > id2 ? +1 : id1 == id2 ? 0 : -1)));
56 return (id1 > id2 ? +1 : id1 == id2 ? 0 : -1);
60 sort_queue (gpointer user_data)
62 static gint sorts = 0;
63 static gpointer last_p = NULL;
65 gboolean can_quit = FALSE;
70 sort_multiplier = GPOINTER_TO_INT (user_data);
72 if (SORT_QUEUE_AFTER) {
73 PRINT_MSG (("sorting async queue..."));
74 g_async_queue_sort (async_queue, sort_compare, NULL);
78 if (sorts >= sort_multiplier) {
82 g_async_queue_sort (async_queue, sort_compare, NULL);
83 len = g_async_queue_length (async_queue);
85 PRINT_MSG (("sorted queue (for %d/%d times, size:%d)...", sorts, MAX_SORTS, len));
88 len = g_async_queue_length (async_queue);
89 DEBUG_MSG (("printing queue (size:%d)...", len));
92 for (i = 0, last_p = NULL; i < len; i++) {
93 p = g_async_queue_pop (async_queue);
94 DEBUG_MSG (("item %d ---> %d", i, GPOINTER_TO_INT (p)));
97 g_assert (GPOINTER_TO_INT (last_p) <= GPOINTER_TO_INT (p));
103 if (can_quit && QUIT_WHEN_DONE) {
104 g_main_loop_quit (main_loop);
111 enter_thread (gpointer data, gpointer user_data)
117 id = GPOINTER_TO_INT (data);
119 ms = g_random_int_range (MIN_TIME * 1000, MAX_TIME * 1000);
120 DEBUG_MSG (("entered thread with id:%d, adding to queue in:%ld ms", id, ms));
122 g_usleep (ms * 1000);
124 if (SORT_QUEUE_ON_PUSH) {
125 g_async_queue_push_sorted (async_queue, GINT_TO_POINTER (id), sort_compare, NULL);
127 g_async_queue_push (async_queue, GINT_TO_POINTER (id));
130 len = g_async_queue_length (async_queue);
132 DEBUG_MSG (("thread id:%d added to async queue (size:%d)",
137 main (int argc, char *argv[])
139 #if defined(G_THREADS_ENABLED) && ! defined(G_THREADS_IMPL_NONE)
141 gint max_threads = MAX_THREADS;
142 gint max_unused_threads = MAX_THREADS;
143 gint sort_multiplier = MAX_SORTS;
148 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);
149 g_set_print_handler(mrtPrintHandler);
150 #endif /*__SYMBIAN32__*/
151 g_thread_init (NULL);
153 PRINT_MSG (("creating async queue..."));
154 async_queue = g_async_queue_new ();
156 g_return_val_if_fail (async_queue != NULL, EXIT_FAILURE);
158 PRINT_MSG (("creating thread pool with max threads:%d, max unused threads:%d...",
159 max_threads, max_unused_threads));
160 thread_pool = g_thread_pool_new (enter_thread,
166 g_return_val_if_fail (thread_pool != NULL, EXIT_FAILURE);
168 g_thread_pool_set_max_unused_threads (max_unused_threads);
170 PRINT_MSG (("creating threads..."));
171 for (i = 1; i <= max_threads; i++) {
172 GError *error = NULL;
174 g_thread_pool_push (thread_pool, GINT_TO_POINTER (i), &error);
176 g_assert_no_error (error);
179 if (!SORT_QUEUE_AFTER) {
183 sort_interval = ((MAX_TIME / sort_multiplier) + 2) * 1000;
184 g_timeout_add (sort_interval, sort_queue, GINT_TO_POINTER (sort_multiplier));
186 if (SORT_QUEUE_ON_PUSH) {
187 msg = "sorting when pushing into the queue, checking queue is sorted";
192 PRINT_MSG (("%s %d %s %d ms",
195 sort_multiplier == 1 ? "time in" : "times, once every",
198 DEBUG_MSG (("entering main event loop"));
200 main_loop = g_main_loop_new (NULL, FALSE);
201 g_main_loop_run (main_loop);
205 testResultXml("asyncqueue-test");
206 #endif /* EMULATOR */