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>
15 #include <glib_global.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 g_print ("Cannot create pipe %s\n", g_strerror (errno));
33 g_assert(FALSE && "timeloop failed");
35 testResultXml("timeloop");
40 channels[0] = g_io_channel_unix_new (fds[0]);
41 channels[1] = g_io_channel_unix_new (fds[1]);
45 read_all (GIOChannel *channel, char *buf, int len)
51 while (bytes_read < len)
53 err = g_io_channel_read (channel, buf + bytes_read, len - bytes_read, &count);
56 if (err != G_IO_ERROR_AGAIN)
58 g_assert(FALSE && "timeloop failed");
72 write_all (GIOChannel *channel, char *buf, int len)
74 gsize bytes_written = 0;
78 while (bytes_written < len)
80 err = g_io_channel_write (channel, buf + bytes_written, len - bytes_written, &count);
81 if (err && err != G_IO_ERROR_AGAIN)
84 bytes_written += count;
92 run_child (GIOChannel *in_channel, GIOChannel *out_channel)
95 run_child (gpointer data)
101 GIOChannel *in_channel,*out_channel;
102 #endif//__SYMBIAN32__
103 GTimer *timer = g_timer_new();
105 GIOChannel **channels = data;
106 in_channel = channels[0];
107 out_channel = channels[1];
108 #endif//__SYMBIAN32__
109 for (i = 0; i < n_iters; i++)
111 write_all (out_channel, (char *)&val, sizeof (val));
112 read_all (in_channel, (char *)&val, sizeof (val));
116 write_all (out_channel, (char *)&val, sizeof (val));
118 val = g_timer_elapsed (timer, NULL) * 1000;
120 write_all (out_channel, (char *)&val, sizeof (val));
121 g_timer_destroy (timer);
122 #ifndef __SYMBIAN32__
126 #endif//__SYMBIAN32__
130 input_callback (GIOChannel *source,
131 GIOCondition condition,
135 GIOChannel *dest = (GIOChannel *)data;
137 if (!read_all (source, (char *)&val, sizeof(val)))
139 g_print("Unexpected EOF\n");
140 g_assert(FALSE && "timeloop failed");
142 testResultXml("timeloop");
143 #endif /* EMULATOR */
149 write_all (dest, (char *)&val, sizeof(val));
155 g_io_channel_close (source);
156 g_io_channel_close (dest);
158 g_io_channel_unref (source);
159 g_io_channel_unref (dest);
162 if (n_active_children == 0)
163 g_main_loop_quit (loop);
172 #ifndef __SYMBIAN32__
176 #endif//__SYMBIAN32__
177 GIOChannel *in_channels[2];
178 GIOChannel *out_channels[2];
180 GIOChannel **sub_channels;
182 sub_channels = g_new (GIOChannel *, 2);
184 io_pipe (in_channels);
185 io_pipe (out_channels);
186 sub_channels[0] = in_channels[0];
187 sub_channels[1] = out_channels[1];
189 g_io_add_watch (out_channels[0], G_IO_IN | G_IO_HUP,
190 input_callback, in_channels[1]);
192 g_thread_create(run_child,sub_channels,FALSE,&err);
196 if (pid > 0) /* Parent */
198 g_io_channel_close (in_channels[0]);
199 g_io_channel_close (out_channels[1]);
201 g_io_add_watch (out_channels[0], G_IO_IN | G_IO_HUP,
202 input_callback, in_channels[1]);
204 else if (pid == 0) /* Child */
206 g_io_channel_close (in_channels[1]);
207 g_io_channel_close (out_channels[0]);
211 run_child (in_channels[0], out_channels[1]);
215 fprintf (stderr, "Cannot fork: %s\n", g_strerror (errno));
218 #endif//__SYMBIAN32__
222 difftimeval (struct timeval *old, struct timeval *new)
225 (new->tv_sec - old->tv_sec) * 1000. + (new->tv_usec - old->tv_usec) / 1000;
229 main (int argc, char **argv)
234 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);
235 g_set_print_handler(mrtPrintHandler);
237 #endif /*__SYMBIAN32__*/
241 n_children = atoi(argv[1]);
244 n_iters = atoi(argv[2]);
246 printf ("Children: %d Iters: %d\n", n_children, n_iters);
248 n_active_children = n_children;
249 for (i = 0; i < n_children; i++)
251 #ifndef __SYMBIAN32__
252 getrusage (RUSAGE_SELF, &old_usage);
254 loop = g_main_loop_new (NULL, FALSE);
255 g_main_loop_run (loop);
256 #ifndef __SYMBIAN32__
257 getrusage (RUSAGE_SELF, &new_usage);
259 printf ("Elapsed user: %g\n",
260 difftimeval (&old_usage.ru_utime, &new_usage.ru_utime));
261 printf ("Elapsed system: %g\n",
262 difftimeval (&old_usage.ru_stime, &new_usage.ru_stime));
263 printf ("Elapsed total: %g\n",
264 difftimeval (&old_usage.ru_utime, &new_usage.ru_utime) +
265 difftimeval (&old_usage.ru_stime, &new_usage.ru_stime));
266 printf ("total / iteration: %g\n",
267 (difftimeval (&old_usage.ru_utime, &new_usage.ru_utime) +
268 difftimeval (&old_usage.ru_stime, &new_usage.ru_stime)) /
269 (n_iters * n_children));
272 testResultXml("timeloop");
273 #endif /* EMULATOR */