Update contrib.
1 /* Portion Copyright © 2008-09 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.*/
2 #undef G_DISABLE_ASSERT
10 #include <sys/resource.h>
13 #include <glib-object.h>
16 #include "mrt2_glib2_test.h"
17 #endif /*__SYMBIAN32__*/
20 static int n_children = 3;
21 static int n_active_children;
22 static int n_iters = 10000;
23 static GMainLoop *loop;
26 io_pipe (GIOChannel **channels)
32 fprintf (stderr, "Cannot create pipe %s\n", g_strerror (errno));
36 channels[0] = g_io_channel_unix_new (fds[0]);
37 channels[1] = g_io_channel_unix_new (fds[1]);
41 read_all (GIOChannel *channel, char *buf, int len)
47 while (bytes_read < len)
49 err = g_io_channel_read (channel, buf + bytes_read, len - bytes_read, &count);
52 if (err != G_IO_ERROR_AGAIN)
65 write_all (GIOChannel *channel, char *buf, int len)
67 gsize bytes_written = 0;
71 while (bytes_written < len)
73 err = g_io_channel_write (channel, buf + bytes_written, len - bytes_written, &count);
74 if (err && err != G_IO_ERROR_AGAIN)
77 bytes_written += count;
85 run_child (GIOChannel *in_channel, GIOChannel *out_channel)
88 run_child (gpointer data)
94 GIOChannel *in_channel,*out_channel;
96 GTimer *timer = g_timer_new();
98 GIOChannel **channels = data;
100 in_channel = channels[0];
101 out_channel = channels[1];
102 #endif//__SYMBIAN32__
103 for (i = 0; i < n_iters; i++)
105 write_all (out_channel, (char *)&val, sizeof (val));
106 read_all (in_channel, (char *)&val, sizeof (val));
110 write_all (out_channel, (char *)&val, sizeof (val));
112 val = g_timer_elapsed (timer, NULL) * 1000;
114 write_all (out_channel, (char *)&val, sizeof (val));
115 g_timer_destroy (timer);
116 #ifndef __SYMBIAN32__
120 #endif//__SYMBIAN32__
124 input_callback (GIOChannel *source,
125 GIOCondition condition,
129 GIOChannel *dest = (GIOChannel *)data;
131 if (!read_all (source, (char *)&val, sizeof(val)))
133 fprintf (stderr, "Unexpected EOF\n");
139 write_all (dest, (char *)&val, sizeof(val));
145 g_io_channel_close (source);
146 g_io_channel_close (dest);
148 g_io_channel_unref (source);
149 g_io_channel_unref (dest);
152 if (n_active_children == 0)
153 g_main_loop_quit (loop);
163 GIOChannel *in_channels[2];
164 GIOChannel *out_channels[2];
165 GIOChannel **sub_channels;
168 sub_channels = g_new (GIOChannel *, 2);
170 io_pipe (in_channels);
171 io_pipe (out_channels);
173 sub_channels[0] = in_channels[0];
174 sub_channels[1] = out_channels[1];
176 source = g_io_create_watch (out_channels[0], G_IO_IN | G_IO_HUP);
177 g_assert(source != NULL);
178 g_source_set_closure (source,
179 g_cclosure_new (G_CALLBACK (input_callback), in_channels[1], NULL));
180 g_source_attach (source, NULL);
182 g_thread_create(run_child,sub_channels,FALSE,&err);
187 difftimeval (struct timeval *old, struct timeval *new)
190 (new->tv_sec - old->tv_sec) * 1000. + (new->tv_usec - old->tv_usec) / 1000;
194 main (int argc, char **argv)
199 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);
200 g_set_print_handler(mrtPrintHandler);
201 #endif /*__SYMBIAN32__*/
208 n_children = atoi(argv[1]);
211 n_iters = atoi(argv[2]);
213 printf ("Children: %d Iters: %d\n", n_children, n_iters);
215 n_active_children = n_children;
216 for (i = 0; i < n_children; i++)
219 loop = g_main_loop_new (NULL, FALSE);
221 g_assert(loop != NULL);
223 g_main_loop_run (loop);
225 g_assert(n_active_children == 0);
229 testResultXml("timeloop-closure");
230 #endif /* EMULATOR */