Add new symbols.
[glib.git] / tests / timeloop.c
blob4f0a5351d5e63747b284a1fad90efa990f46b389
1 #undef G_DISABLE_ASSERT
2 #undef G_LOG_DOMAIN
4 #include <errno.h>
5 #include <stdlib.h>
6 #include <unistd.h>
7 #include <stdio.h>
8 #include <sys/time.h>
9 #include <sys/resource.h>
11 #include <glib.h>
13 static int n_children = 3;
14 static int n_active_children;
15 static int n_iters = 10000;
16 static GMainLoop *loop;
18 static void
19 io_pipe (GIOChannel **channels)
21 int fds[2];
23 if (pipe(fds) < 0)
25 fprintf (stderr, "Cannot create pipe %s\n", g_strerror (errno));
26 exit (1);
29 channels[0] = g_io_channel_unix_new (fds[0]);
30 channels[1] = g_io_channel_unix_new (fds[1]);
33 static gboolean
34 read_all (GIOChannel *channel, char *buf, int len)
36 gsize bytes_read = 0;
37 gsize count;
38 GIOError err;
40 while (bytes_read < len)
42 err = g_io_channel_read (channel, buf + bytes_read, len - bytes_read, &count);
43 if (err)
45 if (err != G_IO_ERROR_AGAIN)
46 return FALSE;
48 else if (count == 0)
49 return FALSE;
51 bytes_read += count;
54 return TRUE;
57 static gboolean
58 write_all (GIOChannel *channel, char *buf, int len)
60 gsize bytes_written = 0;
61 gsize count;
62 GIOError err;
64 while (bytes_written < len)
66 err = g_io_channel_write (channel, buf + bytes_written, len - bytes_written, &count);
67 if (err && err != G_IO_ERROR_AGAIN)
68 return FALSE;
70 bytes_written += count;
73 return TRUE;
76 static void
77 run_child (GIOChannel *in_channel, GIOChannel *out_channel)
79 int i;
80 int val = 1;
81 GTimer *timer = g_timer_new();
83 for (i = 0; i < n_iters; i++)
85 write_all (out_channel, (char *)&val, sizeof (val));
86 read_all (in_channel, (char *)&val, sizeof (val));
89 val = 0;
90 write_all (out_channel, (char *)&val, sizeof (val));
92 val = g_timer_elapsed (timer, NULL) * 1000;
94 write_all (out_channel, (char *)&val, sizeof (val));
95 g_timer_destroy (timer);
97 exit (0);
100 static gboolean
101 input_callback (GIOChannel *source,
102 GIOCondition condition,
103 gpointer data)
105 int val;
106 GIOChannel *dest = (GIOChannel *)data;
108 if (!read_all (source, (char *)&val, sizeof(val)))
110 fprintf (stderr, "Unexpected EOF\n");
111 exit (1);
114 if (val)
116 write_all (dest, (char *)&val, sizeof(val));
118 return TRUE;
120 else
122 g_io_channel_close (source);
123 g_io_channel_close (dest);
125 g_io_channel_unref (source);
126 g_io_channel_unref (dest);
128 n_active_children--;
129 if (n_active_children == 0)
130 g_main_loop_quit (loop);
132 return FALSE;
136 static void
137 create_child ()
139 int pid;
140 GIOChannel *in_channels[2];
141 GIOChannel *out_channels[2];
143 io_pipe (in_channels);
144 io_pipe (out_channels);
146 pid = fork ();
148 if (pid > 0) /* Parent */
150 g_io_channel_close (in_channels[0]);
151 g_io_channel_close (out_channels[1]);
153 g_io_add_watch (out_channels[0], G_IO_IN | G_IO_HUP,
154 input_callback, in_channels[1]);
156 else if (pid == 0) /* Child */
158 g_io_channel_close (in_channels[1]);
159 g_io_channel_close (out_channels[0]);
161 setsid ();
163 run_child (in_channels[0], out_channels[1]);
165 else /* Error */
167 fprintf (stderr, "Cannot fork: %s\n", g_strerror (errno));
168 exit (1);
172 static double
173 difftimeval (struct timeval *old, struct timeval *new)
175 return
176 (new->tv_sec - old->tv_sec) * 1000. + (new->tv_usec - old->tv_usec) / 1000;
179 int
180 main (int argc, char **argv)
182 int i;
183 struct rusage old_usage;
184 struct rusage new_usage;
186 if (argc > 1)
187 n_children = atoi(argv[1]);
189 if (argc > 2)
190 n_iters = atoi(argv[2]);
192 printf ("Children: %d Iters: %d\n", n_children, n_iters);
194 n_active_children = n_children;
195 for (i = 0; i < n_children; i++)
196 create_child ();
198 getrusage (RUSAGE_SELF, &old_usage);
199 loop = g_main_loop_new (NULL, FALSE);
200 g_main_loop_run (loop);
201 getrusage (RUSAGE_SELF, &new_usage);
203 printf ("Elapsed user: %g\n",
204 difftimeval (&old_usage.ru_utime, &new_usage.ru_utime));
205 printf ("Elapsed system: %g\n",
206 difftimeval (&old_usage.ru_stime, &new_usage.ru_stime));
207 printf ("Elapsed total: %g\n",
208 difftimeval (&old_usage.ru_utime, &new_usage.ru_utime) +
209 difftimeval (&old_usage.ru_stime, &new_usage.ru_stime));
210 printf ("total / iteration: %g\n",
211 (difftimeval (&old_usage.ru_utime, &new_usage.ru_utime) +
212 difftimeval (&old_usage.ru_stime, &new_usage.ru_stime)) /
213 (n_iters * n_children));
215 return 0;