sl@0
|
1 |
/*
|
sl@0
|
2 |
* Portions copyright (c) 2006-2009 Nokia Corporation. All rights reserved.
|
sl@0
|
3 |
*/
|
sl@0
|
4 |
#undef G_DISABLE_ASSERT
|
sl@0
|
5 |
#undef G_LOG_DOMAIN
|
sl@0
|
6 |
|
sl@0
|
7 |
#include <time.h>
|
sl@0
|
8 |
#include <stdlib.h>
|
sl@0
|
9 |
|
sl@0
|
10 |
#include <glib.h>
|
sl@0
|
11 |
|
sl@0
|
12 |
#define DEBUG_MSG(args)
|
sl@0
|
13 |
/* #define DEBUG_MSG(args) g_printerr args ; g_printerr ("\n"); */
|
sl@0
|
14 |
#define PRINT_MSG(args)
|
sl@0
|
15 |
/* #define PRINT_MSG(args) g_print args ; g_print ("\n"); */
|
sl@0
|
16 |
|
sl@0
|
17 |
#define MAX_THREADS 50
|
sl@0
|
18 |
#define MAX_SORTS 5 /* only applies if
|
sl@0
|
19 |
ASYC_QUEUE_DO_SORT is set to 1 */
|
sl@0
|
20 |
#define MAX_TIME 20 /* seconds */
|
sl@0
|
21 |
#define MIN_TIME 5 /* seconds */
|
sl@0
|
22 |
|
sl@0
|
23 |
#define SORT_QUEUE_AFTER 1
|
sl@0
|
24 |
#define SORT_QUEUE_ON_PUSH 1 /* if this is done, the
|
sl@0
|
25 |
SORT_QUEUE_AFTER is ignored */
|
sl@0
|
26 |
#define QUIT_WHEN_DONE 1
|
sl@0
|
27 |
|
sl@0
|
28 |
|
sl@0
|
29 |
#if SORT_QUEUE_ON_PUSH == 1
|
sl@0
|
30 |
# undef SORT_QUEUE_AFTER
|
sl@0
|
31 |
# define SORT_QUEUE_AFTER 0
|
sl@0
|
32 |
#endif
|
sl@0
|
33 |
|
sl@0
|
34 |
#ifdef __SYMBIAN32__
|
sl@0
|
35 |
#include "mrt2_glib2_test.h"
|
sl@0
|
36 |
#endif /*__SYMBIAN32__*/
|
sl@0
|
37 |
|
sl@0
|
38 |
|
sl@0
|
39 |
static GMainLoop *main_loop = NULL;
|
sl@0
|
40 |
static GThreadPool *thread_pool = NULL;
|
sl@0
|
41 |
static GAsyncQueue *async_queue = NULL;
|
sl@0
|
42 |
|
sl@0
|
43 |
|
sl@0
|
44 |
static gint
|
sl@0
|
45 |
sort_compare (gconstpointer p1, gconstpointer p2, gpointer user_data)
|
sl@0
|
46 |
{
|
sl@0
|
47 |
gint32 id1;
|
sl@0
|
48 |
gint32 id2;
|
sl@0
|
49 |
|
sl@0
|
50 |
id1 = GPOINTER_TO_INT (p1);
|
sl@0
|
51 |
id2 = GPOINTER_TO_INT (p2);
|
sl@0
|
52 |
|
sl@0
|
53 |
DEBUG_MSG (("comparing #1:%d and #2:%d, returning %d",
|
sl@0
|
54 |
id1, id2, (id1 > id2 ? +1 : id1 == id2 ? 0 : -1)));
|
sl@0
|
55 |
|
sl@0
|
56 |
return (id1 > id2 ? +1 : id1 == id2 ? 0 : -1);
|
sl@0
|
57 |
}
|
sl@0
|
58 |
|
sl@0
|
59 |
static gboolean
|
sl@0
|
60 |
sort_queue (gpointer user_data)
|
sl@0
|
61 |
{
|
sl@0
|
62 |
static gint sorts = 0;
|
sl@0
|
63 |
static gpointer last_p = NULL;
|
sl@0
|
64 |
gpointer p;
|
sl@0
|
65 |
gboolean can_quit = FALSE;
|
sl@0
|
66 |
gint sort_multiplier;
|
sl@0
|
67 |
gint len;
|
sl@0
|
68 |
gint i;
|
sl@0
|
69 |
|
sl@0
|
70 |
sort_multiplier = GPOINTER_TO_INT (user_data);
|
sl@0
|
71 |
|
sl@0
|
72 |
if (SORT_QUEUE_AFTER) {
|
sl@0
|
73 |
PRINT_MSG (("sorting async queue..."));
|
sl@0
|
74 |
g_async_queue_sort (async_queue, sort_compare, NULL);
|
sl@0
|
75 |
|
sl@0
|
76 |
sorts++;
|
sl@0
|
77 |
|
sl@0
|
78 |
if (sorts >= sort_multiplier) {
|
sl@0
|
79 |
can_quit = TRUE;
|
sl@0
|
80 |
}
|
sl@0
|
81 |
|
sl@0
|
82 |
g_async_queue_sort (async_queue, sort_compare, NULL);
|
sl@0
|
83 |
len = g_async_queue_length (async_queue);
|
sl@0
|
84 |
|
sl@0
|
85 |
PRINT_MSG (("sorted queue (for %d/%d times, size:%d)...", sorts, MAX_SORTS, len));
|
sl@0
|
86 |
} else {
|
sl@0
|
87 |
can_quit = TRUE;
|
sl@0
|
88 |
len = g_async_queue_length (async_queue);
|
sl@0
|
89 |
DEBUG_MSG (("printing queue (size:%d)...", len));
|
sl@0
|
90 |
}
|
sl@0
|
91 |
|
sl@0
|
92 |
for (i = 0, last_p = NULL; i < len; i++) {
|
sl@0
|
93 |
p = g_async_queue_pop (async_queue);
|
sl@0
|
94 |
DEBUG_MSG (("item %d ---> %d", i, GPOINTER_TO_INT (p)));
|
sl@0
|
95 |
|
sl@0
|
96 |
if (last_p) {
|
sl@0
|
97 |
g_assert (GPOINTER_TO_INT (last_p) <= GPOINTER_TO_INT (p));
|
sl@0
|
98 |
}
|
sl@0
|
99 |
|
sl@0
|
100 |
last_p = p;
|
sl@0
|
101 |
}
|
sl@0
|
102 |
|
sl@0
|
103 |
if (can_quit && QUIT_WHEN_DONE) {
|
sl@0
|
104 |
g_main_loop_quit (main_loop);
|
sl@0
|
105 |
}
|
sl@0
|
106 |
|
sl@0
|
107 |
return !can_quit;
|
sl@0
|
108 |
}
|
sl@0
|
109 |
|
sl@0
|
110 |
static void
|
sl@0
|
111 |
enter_thread (gpointer data, gpointer user_data)
|
sl@0
|
112 |
{
|
sl@0
|
113 |
gint len;
|
sl@0
|
114 |
gint id;
|
sl@0
|
115 |
gulong ms;
|
sl@0
|
116 |
|
sl@0
|
117 |
id = GPOINTER_TO_INT (data);
|
sl@0
|
118 |
|
sl@0
|
119 |
ms = g_random_int_range (MIN_TIME * 1000, MAX_TIME * 1000);
|
sl@0
|
120 |
DEBUG_MSG (("entered thread with id:%d, adding to queue in:%ld ms", id, ms));
|
sl@0
|
121 |
|
sl@0
|
122 |
g_usleep (ms * 1000);
|
sl@0
|
123 |
|
sl@0
|
124 |
if (SORT_QUEUE_ON_PUSH) {
|
sl@0
|
125 |
g_async_queue_push_sorted (async_queue, GINT_TO_POINTER (id), sort_compare, NULL);
|
sl@0
|
126 |
} else {
|
sl@0
|
127 |
g_async_queue_push (async_queue, GINT_TO_POINTER (id));
|
sl@0
|
128 |
}
|
sl@0
|
129 |
|
sl@0
|
130 |
len = g_async_queue_length (async_queue);
|
sl@0
|
131 |
|
sl@0
|
132 |
DEBUG_MSG (("thread id:%d added to async queue (size:%d)",
|
sl@0
|
133 |
id, len));
|
sl@0
|
134 |
}
|
sl@0
|
135 |
|
sl@0
|
136 |
int
|
sl@0
|
137 |
main (int argc, char *argv[])
|
sl@0
|
138 |
{
|
sl@0
|
139 |
#if defined(G_THREADS_ENABLED) && ! defined(G_THREADS_IMPL_NONE)
|
sl@0
|
140 |
gint i;
|
sl@0
|
141 |
gint max_threads = MAX_THREADS;
|
sl@0
|
142 |
gint max_unused_threads = MAX_THREADS;
|
sl@0
|
143 |
gint sort_multiplier = MAX_SORTS;
|
sl@0
|
144 |
gint sort_interval;
|
sl@0
|
145 |
gchar *msg;
|
sl@0
|
146 |
|
sl@0
|
147 |
#ifdef __SYMBIAN32__
|
sl@0
|
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);
|
sl@0
|
149 |
g_set_print_handler(mrtPrintHandler);
|
sl@0
|
150 |
#endif /*__SYMBIAN32__*/
|
sl@0
|
151 |
g_thread_init (NULL);
|
sl@0
|
152 |
|
sl@0
|
153 |
PRINT_MSG (("creating async queue..."));
|
sl@0
|
154 |
async_queue = g_async_queue_new ();
|
sl@0
|
155 |
|
sl@0
|
156 |
g_return_val_if_fail (async_queue != NULL, EXIT_FAILURE);
|
sl@0
|
157 |
|
sl@0
|
158 |
PRINT_MSG (("creating thread pool with max threads:%d, max unused threads:%d...",
|
sl@0
|
159 |
max_threads, max_unused_threads));
|
sl@0
|
160 |
thread_pool = g_thread_pool_new (enter_thread,
|
sl@0
|
161 |
async_queue,
|
sl@0
|
162 |
max_threads,
|
sl@0
|
163 |
FALSE,
|
sl@0
|
164 |
NULL);
|
sl@0
|
165 |
|
sl@0
|
166 |
g_return_val_if_fail (thread_pool != NULL, EXIT_FAILURE);
|
sl@0
|
167 |
|
sl@0
|
168 |
g_thread_pool_set_max_unused_threads (max_unused_threads);
|
sl@0
|
169 |
|
sl@0
|
170 |
PRINT_MSG (("creating threads..."));
|
sl@0
|
171 |
for (i = 1; i <= max_threads; i++) {
|
sl@0
|
172 |
GError *error = NULL;
|
sl@0
|
173 |
|
sl@0
|
174 |
g_thread_pool_push (thread_pool, GINT_TO_POINTER (i), &error);
|
sl@0
|
175 |
|
sl@0
|
176 |
g_assert_no_error (error);
|
sl@0
|
177 |
}
|
sl@0
|
178 |
|
sl@0
|
179 |
if (!SORT_QUEUE_AFTER) {
|
sl@0
|
180 |
sort_multiplier = 1;
|
sl@0
|
181 |
}
|
sl@0
|
182 |
|
sl@0
|
183 |
sort_interval = ((MAX_TIME / sort_multiplier) + 2) * 1000;
|
sl@0
|
184 |
g_timeout_add (sort_interval, sort_queue, GINT_TO_POINTER (sort_multiplier));
|
sl@0
|
185 |
|
sl@0
|
186 |
if (SORT_QUEUE_ON_PUSH) {
|
sl@0
|
187 |
msg = "sorting when pushing into the queue, checking queue is sorted";
|
sl@0
|
188 |
} else {
|
sl@0
|
189 |
msg = "sorting";
|
sl@0
|
190 |
}
|
sl@0
|
191 |
|
sl@0
|
192 |
PRINT_MSG (("%s %d %s %d ms",
|
sl@0
|
193 |
msg,
|
sl@0
|
194 |
sort_multiplier,
|
sl@0
|
195 |
sort_multiplier == 1 ? "time in" : "times, once every",
|
sl@0
|
196 |
sort_interval));
|
sl@0
|
197 |
|
sl@0
|
198 |
DEBUG_MSG (("entering main event loop"));
|
sl@0
|
199 |
|
sl@0
|
200 |
main_loop = g_main_loop_new (NULL, FALSE);
|
sl@0
|
201 |
g_main_loop_run (main_loop);
|
sl@0
|
202 |
#endif
|
sl@0
|
203 |
|
sl@0
|
204 |
#if __SYMBIAN32__
|
sl@0
|
205 |
testResultXml("asyncqueue-test");
|
sl@0
|
206 |
#endif /* EMULATOR */
|
sl@0
|
207 |
|
sl@0
|
208 |
return EXIT_SUCCESS;
|
sl@0
|
209 |
}
|