Update contrib.
1 /* Portion Copyright © 2008-09 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.*/
2 #undef G_DISABLE_ASSERT
7 #if (defined G_OS_UNIX)||(defined __SYMBIAN32__)
14 #include <fcntl.h> /* For _O_BINARY used by pipe() macro */
15 #include <io.h> /* for _pipe() */
16 #define pipe(fds) _pipe(fds, 4096, _O_BINARY)
22 #include <glib_global.h>
23 #include "mrt2_glib2_test.h"
24 #endif /*__SYMBIAN32__*/
34 #define CRAWLER_TIMEOUT_RANGE 40
35 #define RECURSER_TIMEOUT 50
37 /* The partial ordering between the context array mutex and
38 * crawler array mutex is that the crawler array mutex cannot
39 * be locked while the context array mutex is locked
41 GPtrArray *context_array;
42 GMutex *context_array_mutex;
43 GCond *context_array_cond;
47 G_LOCK_DEFINE_STATIC (crawler_array_lock);
48 GPtrArray *crawler_array;
50 typedef struct _AddrData AddrData;
51 typedef struct _TestData TestData;
67 static void cleanup_crawlers (GMainContext *context);
70 read_all (GIOChannel *channel, char *buf, gsize len)
76 while (bytes_read < len)
78 err = g_io_channel_read (channel, buf + bytes_read, len - bytes_read, &count);
81 if (err != G_IO_ERROR_AGAIN)
94 write_all (GIOChannel *channel, char *buf, gsize len)
96 gsize bytes_written = 0;
100 while (bytes_written < len)
102 err = g_io_channel_write (channel, buf + bytes_written, len - bytes_written, &count);
103 if (err && err != G_IO_ERROR_AGAIN)
106 bytes_written += count;
113 adder_callback (GIOChannel *source,
114 GIOCondition condition,
122 AddrData *addr_data = data;
124 if (!read_all (source, buf1, 32) ||
125 !read_all (source, buf2, 32))
127 g_main_loop_quit (addr_data->loop);
131 sprintf (result, "%d", atoi(buf1) + atoi(buf2));
132 write_all (addr_data->dest, result, 32);
138 timeout_callback (gpointer data)
140 AddrData *addr_data = data;
148 adder_thread (gpointer data)
150 GMainContext *context;
151 GSource *adder_source;
152 GSource *timeout_source;
154 GIOChannel **channels = data;
157 context = g_main_context_new ();
159 g_mutex_lock (context_array_mutex);
161 g_ptr_array_add (context_array, context);
163 if (context_array->len == NTHREADS)
164 g_cond_broadcast (context_array_cond);
166 g_mutex_unlock (context_array_mutex);
168 addr_data.dest = channels[1];
169 addr_data.loop = g_main_loop_new (context, FALSE);
172 adder_source = g_io_create_watch (channels[0], G_IO_IN | G_IO_HUP | G_IO_PRI);
173 g_source_set_callback (adder_source, (GSourceFunc)adder_callback, &addr_data, NULL);
174 g_source_attach (adder_source, context);
175 g_source_unref (adder_source);
177 timeout_source = g_timeout_source_new (10);
178 g_source_set_callback (timeout_source, (GSourceFunc)timeout_callback, &addr_data, NULL);
179 g_source_set_priority (timeout_source, G_PRIORITY_HIGH);
180 g_source_attach (timeout_source, context);
181 g_source_unref (timeout_source);
183 g_main_loop_run (addr_data.loop);
185 g_io_channel_unref (channels[0]);
186 g_io_channel_unref (channels[1]);
190 g_main_loop_unref (addr_data.loop);
193 g_print ("Timeout run %d times\n", addr_data.count);
196 g_mutex_lock (context_array_mutex);
197 g_ptr_array_remove (context_array, context);
198 if (context_array->len == 0)
199 g_main_loop_quit (main_loop);
200 g_mutex_unlock (context_array_mutex);
202 cleanup_crawlers (context);
208 io_pipe (GIOChannel **channels)
214 g_warning ("Cannot create pipe %s\n", g_strerror (errno));
218 channels[0] = g_io_channel_unix_new (fds[0]);
219 channels[1] = g_io_channel_unix_new (fds[1]);
221 g_io_channel_set_close_on_unref (channels[0], TRUE);
222 g_io_channel_set_close_on_unref (channels[1], TRUE);
226 do_add (GIOChannel *in, gint a, gint b)
231 sprintf (buf1, "%d", a);
232 sprintf (buf2, "%d", b);
234 write_all (in, buf1, 32);
235 write_all (in, buf2, 32);
239 adder_response (GIOChannel *source,
240 GIOCondition condition,
244 TestData *test_data = data;
246 if (!read_all (source, result, 32))
249 test_data->current_val = atoi (result);
252 if (test_data->iters == 0)
254 if (test_data->current_val != ITERS * INCREMENT)
256 g_print ("Addition failed: %d != %d\n",
257 test_data->current_val, ITERS * INCREMENT);
261 g_io_channel_unref (source);
262 g_io_channel_unref (test_data->in);
269 do_add (test_data->in, test_data->current_val, INCREMENT);
275 create_adder_thread (void)
280 GIOChannel *in_channels[2];
281 GIOChannel *out_channels[2];
283 GIOChannel **sub_channels;
285 sub_channels = g_new (GIOChannel *, 2);
287 io_pipe (in_channels);
288 io_pipe (out_channels);
290 sub_channels[0] = in_channels[0];
291 sub_channels[1] = out_channels[1];
293 g_thread_create (adder_thread, sub_channels, FALSE, &err);
297 g_warning ("Cannot create thread: %s", err->message);
301 test_data = g_new (TestData, 1);
302 test_data->in = in_channels[1];
303 test_data->current_val = 0;
304 test_data->iters = ITERS;
306 g_io_add_watch (out_channels[0], G_IO_IN | G_IO_HUP | G_IO_PRI,
307 adder_response, test_data);
309 do_add (test_data->in, test_data->current_val, INCREMENT);
312 static void create_crawler (void);
315 remove_crawler (void)
317 GSource *other_source;
319 if (crawler_array->len > 0)
321 other_source = crawler_array->pdata[g_random_int_range (0, crawler_array->len)];
322 g_source_destroy (other_source);
323 g_assert (g_ptr_array_remove_fast (crawler_array, other_source));
328 crawler_callback (gpointer data)
330 GSource *source = data;
332 G_LOCK (crawler_array_lock);
334 if (!g_ptr_array_remove_fast (crawler_array, source))
338 G_UNLOCK (crawler_array_lock);
347 create_crawler (void)
349 GSource *source = g_timeout_source_new (g_random_int_range (0, CRAWLER_TIMEOUT_RANGE));
350 g_source_set_callback (source, (GSourceFunc)crawler_callback, source, NULL);
352 G_LOCK (crawler_array_lock);
353 g_ptr_array_add (crawler_array, source);
355 g_mutex_lock (context_array_mutex);
356 g_source_attach (source, context_array->pdata[g_random_int_range (0, context_array->len)]);
357 g_source_unref (source);
358 g_mutex_unlock (context_array_mutex);
360 G_UNLOCK (crawler_array_lock);
364 cleanup_crawlers (GMainContext *context)
368 G_LOCK (crawler_array_lock);
369 for (i=0; i < crawler_array->len; i++)
371 if (g_source_get_context (crawler_array->pdata[i]) == context)
373 g_source_destroy (g_ptr_array_remove_index (crawler_array, i));
377 G_UNLOCK (crawler_array_lock);
381 recurser_idle (gpointer data)
383 GMainContext *context = data;
386 for (i = 0; i < 10; i++)
387 g_main_context_iteration (context, FALSE);
393 recurser_start (gpointer data)
395 GMainContext *context;
398 g_mutex_lock (context_array_mutex);
399 context = context_array->pdata[g_random_int_range (0, context_array->len)];
400 source = g_idle_source_new ();
401 g_source_set_callback (source, recurser_idle, context, NULL);
402 g_source_attach (source, context);
403 g_source_unref (source);
404 g_mutex_unlock (context_array_mutex);
413 /* Only run the test, if threads are enabled and a default thread
414 implementation is available */
415 #if defined(G_THREADS_ENABLED) && ! defined(G_THREADS_IMPL_NONE)
419 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);
420 g_set_print_handler(mrtPrintHandler);
421 #endif /*__SYMBIAN32__*/
422 g_thread_init (NULL);
424 context_array = g_ptr_array_new ();
425 context_array_mutex = g_mutex_new ();
426 context_array_cond = g_cond_new ();
428 crawler_array = g_ptr_array_new ();
430 main_loop = g_main_loop_new (NULL, FALSE);
432 for (i = 0; i < NTHREADS; i++)
433 create_adder_thread ();
435 /* Wait for all threads to start
437 g_mutex_lock (context_array_mutex);
439 if (context_array->len < NTHREADS)
440 g_cond_wait (context_array_cond, context_array_mutex);
442 g_mutex_unlock (context_array_mutex);
444 for (i = 0; i < NCRAWLERS; i++)
447 g_timeout_add (RECURSER_TIMEOUT, recurser_start, NULL);
449 g_main_loop_run (main_loop);
450 g_main_loop_unref (main_loop);
454 testResultXml("mainloop-test");
455 #endif /* EMULATOR */