sl@0
|
1 |
/* GLIB - Library of useful routines for C programming
|
sl@0
|
2 |
* Copyright (C) 2000 Tor Lillqvist
|
sl@0
|
3 |
* Portion Copyright © 2008-09 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
|
sl@0
|
4 |
* This library is free software; you can redistribute it and/or
|
sl@0
|
5 |
* modify it under the terms of the GNU Lesser General Public
|
sl@0
|
6 |
* License as published by the Free Software Foundation; either
|
sl@0
|
7 |
* version 2 of the License, or (at your option) any later version.
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* This library is distributed in the hope that it will be useful,
|
sl@0
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
sl@0
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
sl@0
|
12 |
* Lesser General Public License for more details.
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* You should have received a copy of the GNU Lesser General Public
|
sl@0
|
15 |
* License along with this library; if not, write to the
|
sl@0
|
16 |
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
sl@0
|
17 |
* Boston, MA 02111-1307, USA.
|
sl@0
|
18 |
*/
|
sl@0
|
19 |
|
sl@0
|
20 |
/* A test program for the main loop and IO channel code.
|
sl@0
|
21 |
* Just run it. Optional parameter is number of sub-processes.
|
sl@0
|
22 |
*/
|
sl@0
|
23 |
|
sl@0
|
24 |
#undef G_DISABLE_ASSERT
|
sl@0
|
25 |
#undef G_LOG_DOMAIN
|
sl@0
|
26 |
|
sl@0
|
27 |
#include "config.h"
|
sl@0
|
28 |
|
sl@0
|
29 |
#include <glib.h>
|
sl@0
|
30 |
|
sl@0
|
31 |
#include <stdio.h>
|
sl@0
|
32 |
#include <stdlib.h>
|
sl@0
|
33 |
#include <math.h>
|
sl@0
|
34 |
#include <time.h>
|
sl@0
|
35 |
|
sl@0
|
36 |
#ifdef __SYMBIAN32__
|
sl@0
|
37 |
// #define VERBOSE
|
sl@0
|
38 |
#include <pthread.h>
|
sl@0
|
39 |
#include "mrt2_glib2_test.h"
|
sl@0
|
40 |
void *child_function(void*);
|
sl@0
|
41 |
gboolean child_terminated = FALSE;
|
sl@0
|
42 |
int from_descriptor, to_descriptor;
|
sl@0
|
43 |
#endif /*__SYMBIAN32__*/
|
sl@0
|
44 |
#ifdef G_OS_WIN32
|
sl@0
|
45 |
#include <io.h>
|
sl@0
|
46 |
#include <fcntl.h>
|
sl@0
|
47 |
#include <process.h>
|
sl@0
|
48 |
#define STRICT
|
sl@0
|
49 |
#include <windows.h>
|
sl@0
|
50 |
#define pipe(fds) _pipe(fds, 4096, _O_BINARY)
|
sl@0
|
51 |
#else
|
sl@0
|
52 |
#ifdef HAVE_UNISTD_H
|
sl@0
|
53 |
#include <unistd.h>
|
sl@0
|
54 |
#endif
|
sl@0
|
55 |
#endif
|
sl@0
|
56 |
|
sl@0
|
57 |
static int nrunning;
|
sl@0
|
58 |
static GMainLoop *main_loop;
|
sl@0
|
59 |
|
sl@0
|
60 |
#define BUFSIZE 5000 /* Larger than the circular buffer in
|
sl@0
|
61 |
* giowin32.c on purpose.
|
sl@0
|
62 |
*/
|
sl@0
|
63 |
|
sl@0
|
64 |
static int nkiddies;
|
sl@0
|
65 |
|
sl@0
|
66 |
static struct {
|
sl@0
|
67 |
int fd;
|
sl@0
|
68 |
int seq;
|
sl@0
|
69 |
} *seqtab;
|
sl@0
|
70 |
|
sl@0
|
71 |
static GIOError
|
sl@0
|
72 |
read_all (int fd,
|
sl@0
|
73 |
GIOChannel *channel,
|
sl@0
|
74 |
char *buffer,
|
sl@0
|
75 |
guint nbytes,
|
sl@0
|
76 |
guint *bytes_read)
|
sl@0
|
77 |
{
|
sl@0
|
78 |
guint left = nbytes;
|
sl@0
|
79 |
gsize nb;
|
sl@0
|
80 |
GIOError error = G_IO_ERROR_NONE;
|
sl@0
|
81 |
char *bufp = buffer;
|
sl@0
|
82 |
#ifdef VERBOSE
|
sl@0
|
83 |
g_print ("gio-test: ...entering read_all()");
|
sl@0
|
84 |
#endif
|
sl@0
|
85 |
|
sl@0
|
86 |
/* g_io_channel_read() doesn't necessarily return all the
|
sl@0
|
87 |
* data we want at once.
|
sl@0
|
88 |
*/
|
sl@0
|
89 |
*bytes_read = 0;
|
sl@0
|
90 |
while (left)
|
sl@0
|
91 |
{
|
sl@0
|
92 |
error = g_io_channel_read (channel, bufp, left, &nb);
|
sl@0
|
93 |
|
sl@0
|
94 |
if (error != G_IO_ERROR_NONE)
|
sl@0
|
95 |
{
|
sl@0
|
96 |
g_print ("gio-test: ...from %d: G_IO_ERROR_%s\n", fd,
|
sl@0
|
97 |
(error == G_IO_ERROR_AGAIN ? "AGAIN" :
|
sl@0
|
98 |
(error == G_IO_ERROR_INVAL ? "INVAL" :
|
sl@0
|
99 |
(error == G_IO_ERROR_UNKNOWN ? "UNKNOWN" : "???"))));
|
sl@0
|
100 |
if (error == G_IO_ERROR_AGAIN)
|
sl@0
|
101 |
continue;
|
sl@0
|
102 |
break;
|
sl@0
|
103 |
}
|
sl@0
|
104 |
if (nb == 0)
|
sl@0
|
105 |
return error;
|
sl@0
|
106 |
left -= nb;
|
sl@0
|
107 |
bufp += nb;
|
sl@0
|
108 |
*bytes_read += nb;
|
sl@0
|
109 |
}
|
sl@0
|
110 |
return error;
|
sl@0
|
111 |
}
|
sl@0
|
112 |
|
sl@0
|
113 |
static void
|
sl@0
|
114 |
shutdown_source (gpointer data)
|
sl@0
|
115 |
{
|
sl@0
|
116 |
#ifdef VERBOSE
|
sl@0
|
117 |
g_print ("gio-test: ...entering shutdown_source()");
|
sl@0
|
118 |
#endif
|
sl@0
|
119 |
|
sl@0
|
120 |
if (g_source_remove (*(guint *) data))
|
sl@0
|
121 |
{
|
sl@0
|
122 |
nrunning--;
|
sl@0
|
123 |
if (nrunning == 0)
|
sl@0
|
124 |
g_main_loop_quit (main_loop);
|
sl@0
|
125 |
}
|
sl@0
|
126 |
}
|
sl@0
|
127 |
|
sl@0
|
128 |
static gboolean
|
sl@0
|
129 |
recv_message (GIOChannel *channel,
|
sl@0
|
130 |
GIOCondition cond,
|
sl@0
|
131 |
gpointer data)
|
sl@0
|
132 |
{
|
sl@0
|
133 |
gint fd = g_io_channel_unix_get_fd (channel);
|
sl@0
|
134 |
gboolean retval = TRUE;
|
sl@0
|
135 |
|
sl@0
|
136 |
#ifdef VERBOSE
|
sl@0
|
137 |
g_print ("gio-test: ...entering recv_message()");
|
sl@0
|
138 |
g_print ("gio-test: ...from %d:%s%s%s%s\n", fd,
|
sl@0
|
139 |
(cond & G_IO_ERR) ? " ERR" : "",
|
sl@0
|
140 |
(cond & G_IO_HUP) ? " HUP" : "",
|
sl@0
|
141 |
(cond & G_IO_IN) ? " IN" : "",
|
sl@0
|
142 |
(cond & G_IO_PRI) ? " PRI" : "");
|
sl@0
|
143 |
#endif
|
sl@0
|
144 |
|
sl@0
|
145 |
if (cond & (G_IO_ERR | G_IO_HUP))
|
sl@0
|
146 |
{
|
sl@0
|
147 |
shutdown_source (data);
|
sl@0
|
148 |
retval = FALSE;
|
sl@0
|
149 |
}
|
sl@0
|
150 |
|
sl@0
|
151 |
if (cond & G_IO_IN)
|
sl@0
|
152 |
{
|
sl@0
|
153 |
char buf[BUFSIZE];
|
sl@0
|
154 |
guint nbytes;
|
sl@0
|
155 |
guint nb;
|
sl@0
|
156 |
int i, j, seq;
|
sl@0
|
157 |
GIOError error;
|
sl@0
|
158 |
|
sl@0
|
159 |
error = read_all (fd, channel, (gchar *) &seq, sizeof (seq), &nb);
|
sl@0
|
160 |
if (error == G_IO_ERROR_NONE)
|
sl@0
|
161 |
{
|
sl@0
|
162 |
if (nb == 0)
|
sl@0
|
163 |
{
|
sl@0
|
164 |
#ifdef VERBOSE
|
sl@0
|
165 |
g_print ("gio-test: ...from %d: EOF\n", fd);
|
sl@0
|
166 |
#endif
|
sl@0
|
167 |
shutdown_source (data);
|
sl@0
|
168 |
return FALSE;
|
sl@0
|
169 |
}
|
sl@0
|
170 |
|
sl@0
|
171 |
g_assert (nb == sizeof (nbytes));
|
sl@0
|
172 |
|
sl@0
|
173 |
for (i = 0; i < nkiddies; i++)
|
sl@0
|
174 |
if (seqtab[i].fd == fd)
|
sl@0
|
175 |
{
|
sl@0
|
176 |
if (seq != seqtab[i].seq)
|
sl@0
|
177 |
{
|
sl@0
|
178 |
g_print ("gio-test: ...from %d: invalid sequence number %d, expected %d\n",
|
sl@0
|
179 |
fd, seq, seqtab[i].seq);
|
sl@0
|
180 |
g_assert_not_reached ();
|
sl@0
|
181 |
|
sl@0
|
182 |
g_assert(FALSE && "gio-test failed");
|
sl@0
|
183 |
}
|
sl@0
|
184 |
seqtab[i].seq++;
|
sl@0
|
185 |
break;
|
sl@0
|
186 |
}
|
sl@0
|
187 |
|
sl@0
|
188 |
error = read_all (fd, channel, (gchar *) &nbytes, sizeof (nbytes), &nb);
|
sl@0
|
189 |
}
|
sl@0
|
190 |
|
sl@0
|
191 |
if (error != G_IO_ERROR_NONE)
|
sl@0
|
192 |
return FALSE;
|
sl@0
|
193 |
|
sl@0
|
194 |
if (nb == 0)
|
sl@0
|
195 |
{
|
sl@0
|
196 |
#ifdef VERBOSE
|
sl@0
|
197 |
g_print ("gio-test: ...from %d: EOF\n", fd);
|
sl@0
|
198 |
#endif
|
sl@0
|
199 |
shutdown_source (data);
|
sl@0
|
200 |
return FALSE;
|
sl@0
|
201 |
}
|
sl@0
|
202 |
|
sl@0
|
203 |
g_assert (nb == sizeof (nbytes));
|
sl@0
|
204 |
|
sl@0
|
205 |
if (nbytes >= BUFSIZE)
|
sl@0
|
206 |
{
|
sl@0
|
207 |
g_print ("gio-test: ...from %d: nbytes = %d (%#x)!\n", fd, nbytes, nbytes);
|
sl@0
|
208 |
g_assert_not_reached ();
|
sl@0
|
209 |
g_assert(FALSE && "gio-test failed");
|
sl@0
|
210 |
}
|
sl@0
|
211 |
g_assert (nbytes >= 0 && nbytes < BUFSIZE);
|
sl@0
|
212 |
#ifdef VERBOSE
|
sl@0
|
213 |
g_print ("gio-test: ...from %d: %d bytes\n", fd, nbytes);
|
sl@0
|
214 |
#endif
|
sl@0
|
215 |
if (nbytes > 0)
|
sl@0
|
216 |
{
|
sl@0
|
217 |
error = read_all (fd, channel, buf, nbytes, &nb);
|
sl@0
|
218 |
if(child_terminated)
|
sl@0
|
219 |
shutdown_source (data);
|
sl@0
|
220 |
|
sl@0
|
221 |
|
sl@0
|
222 |
if (error != G_IO_ERROR_NONE)
|
sl@0
|
223 |
return FALSE;
|
sl@0
|
224 |
|
sl@0
|
225 |
if (nb == 0)
|
sl@0
|
226 |
{
|
sl@0
|
227 |
#ifdef VERBOSE
|
sl@0
|
228 |
g_print ("gio-test: ...from %d: EOF\n", fd);
|
sl@0
|
229 |
#endif
|
sl@0
|
230 |
shutdown_source (data);
|
sl@0
|
231 |
return FALSE;
|
sl@0
|
232 |
}
|
sl@0
|
233 |
|
sl@0
|
234 |
for (j = 0; j < nbytes; j++)
|
sl@0
|
235 |
if (buf[j] != ' ' + ((nbytes + j) % 95))
|
sl@0
|
236 |
{
|
sl@0
|
237 |
g_print ("gio-test: ...from %d: buf[%d] == '%c', should be '%c'\n",
|
sl@0
|
238 |
fd, j, buf[j], 'a' + ((nbytes + j) % 32));
|
sl@0
|
239 |
g_assert_not_reached ();
|
sl@0
|
240 |
g_assert(FALSE && "gio-test failed");
|
sl@0
|
241 |
}
|
sl@0
|
242 |
#ifdef VERBOSE
|
sl@0
|
243 |
g_print ("gio-test: ...from %d: OK\n", fd);
|
sl@0
|
244 |
#endif
|
sl@0
|
245 |
}
|
sl@0
|
246 |
}
|
sl@0
|
247 |
return retval;
|
sl@0
|
248 |
}
|
sl@0
|
249 |
|
sl@0
|
250 |
#ifdef G_OS_WIN32
|
sl@0
|
251 |
|
sl@0
|
252 |
static gboolean
|
sl@0
|
253 |
recv_windows_message (GIOChannel *channel,
|
sl@0
|
254 |
GIOCondition cond,
|
sl@0
|
255 |
gpointer data)
|
sl@0
|
256 |
{
|
sl@0
|
257 |
GIOError error;
|
sl@0
|
258 |
MSG msg;
|
sl@0
|
259 |
guint nb;
|
sl@0
|
260 |
|
sl@0
|
261 |
while (1)
|
sl@0
|
262 |
{
|
sl@0
|
263 |
error = g_io_channel_read (channel, &msg, sizeof (MSG), &nb);
|
sl@0
|
264 |
|
sl@0
|
265 |
if (error != G_IO_ERROR_NONE)
|
sl@0
|
266 |
{
|
sl@0
|
267 |
g_print ("gio-test: ...reading Windows message: G_IO_ERROR_%s\n",
|
sl@0
|
268 |
(error == G_IO_ERROR_AGAIN ? "AGAIN" :
|
sl@0
|
269 |
(error == G_IO_ERROR_INVAL ? "INVAL" :
|
sl@0
|
270 |
(error == G_IO_ERROR_UNKNOWN ? "UNKNOWN" : "???"))));
|
sl@0
|
271 |
if (error == G_IO_ERROR_AGAIN)
|
sl@0
|
272 |
continue;
|
sl@0
|
273 |
}
|
sl@0
|
274 |
break;
|
sl@0
|
275 |
}
|
sl@0
|
276 |
|
sl@0
|
277 |
g_print ("gio-test: ...Windows message for %#x: %d,%d,%d\n",
|
sl@0
|
278 |
msg.hwnd, msg.message, msg.wParam, msg.lParam);
|
sl@0
|
279 |
|
sl@0
|
280 |
return TRUE;
|
sl@0
|
281 |
}
|
sl@0
|
282 |
|
sl@0
|
283 |
LRESULT CALLBACK
|
sl@0
|
284 |
window_procedure (HWND hwnd,
|
sl@0
|
285 |
UINT message,
|
sl@0
|
286 |
WPARAM wparam,
|
sl@0
|
287 |
LPARAM lparam)
|
sl@0
|
288 |
{
|
sl@0
|
289 |
g_print ("gio-test: window_procedure for %#x: %d,%d,%d\n",
|
sl@0
|
290 |
hwnd, message, wparam, lparam);
|
sl@0
|
291 |
return DefWindowProc (hwnd, message, wparam, lparam);
|
sl@0
|
292 |
}
|
sl@0
|
293 |
|
sl@0
|
294 |
#endif
|
sl@0
|
295 |
|
sl@0
|
296 |
int
|
sl@0
|
297 |
main (int argc,
|
sl@0
|
298 |
char **argv)
|
sl@0
|
299 |
{
|
sl@0
|
300 |
|
sl@0
|
301 |
#ifdef __SYMBIAN32__
|
sl@0
|
302 |
/*GLIB_INIT();*/
|
sl@0
|
303 |
pthread_t thread_child;
|
sl@0
|
304 |
int rc,t;
|
sl@0
|
305 |
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
|
306 |
g_set_print_handler(mrtPrintHandler);
|
sl@0
|
307 |
#endif /*__SYMBIAN32__*/
|
sl@0
|
308 |
|
sl@0
|
309 |
#ifdef VERBOSE
|
sl@0
|
310 |
printf("started tests\n");
|
sl@0
|
311 |
#endif
|
sl@0
|
312 |
if (argc < 3)
|
sl@0
|
313 |
{
|
sl@0
|
314 |
/* Parent */
|
sl@0
|
315 |
|
sl@0
|
316 |
GIOChannel *my_read_channel;
|
sl@0
|
317 |
gchar *cmdline;
|
sl@0
|
318 |
guint *id;
|
sl@0
|
319 |
int i;
|
sl@0
|
320 |
#ifdef G_OS_WIN32
|
sl@0
|
321 |
GTimeVal start, end;
|
sl@0
|
322 |
GPollFD pollfd;
|
sl@0
|
323 |
int pollresult;
|
sl@0
|
324 |
ATOM klass;
|
sl@0
|
325 |
static WNDCLASS wcl;
|
sl@0
|
326 |
HWND hwnd;
|
sl@0
|
327 |
GIOChannel *windows_messages_channel;
|
sl@0
|
328 |
#endif
|
sl@0
|
329 |
|
sl@0
|
330 |
nkiddies = (argc == 1 ? 1 : atoi(argv[1]));
|
sl@0
|
331 |
seqtab = g_malloc (nkiddies * 2 * sizeof (int));
|
sl@0
|
332 |
|
sl@0
|
333 |
#ifdef G_OS_WIN32
|
sl@0
|
334 |
wcl.style = 0;
|
sl@0
|
335 |
wcl.lpfnWndProc = window_procedure;
|
sl@0
|
336 |
wcl.cbClsExtra = 0;
|
sl@0
|
337 |
wcl.cbWndExtra = 0;
|
sl@0
|
338 |
wcl.hInstance = GetModuleHandle (NULL);
|
sl@0
|
339 |
wcl.hIcon = NULL;
|
sl@0
|
340 |
wcl.hCursor = NULL;
|
sl@0
|
341 |
wcl.hbrBackground = NULL;
|
sl@0
|
342 |
wcl.lpszMenuName = NULL;
|
sl@0
|
343 |
wcl.lpszClassName = "gio-test";
|
sl@0
|
344 |
|
sl@0
|
345 |
klass = RegisterClass (&wcl);
|
sl@0
|
346 |
|
sl@0
|
347 |
if (!klass)
|
sl@0
|
348 |
{
|
sl@0
|
349 |
g_print ("gio-test: RegisterClass failed\n");
|
sl@0
|
350 |
exit (1);
|
sl@0
|
351 |
}
|
sl@0
|
352 |
|
sl@0
|
353 |
hwnd = CreateWindow (MAKEINTATOM(klass), "gio-test", 0, 0, 0, 10, 10,
|
sl@0
|
354 |
NULL, NULL, wcl.hInstance, NULL);
|
sl@0
|
355 |
if (!hwnd)
|
sl@0
|
356 |
{
|
sl@0
|
357 |
g_print ("gio-test: CreateWindow failed\n");
|
sl@0
|
358 |
exit (1);
|
sl@0
|
359 |
}
|
sl@0
|
360 |
|
sl@0
|
361 |
windows_messages_channel = g_io_channel_win32_new_messages ((guint)hwnd);
|
sl@0
|
362 |
g_io_add_watch (windows_messages_channel, G_IO_IN, recv_windows_message, 0);
|
sl@0
|
363 |
#endif
|
sl@0
|
364 |
|
sl@0
|
365 |
for (i = 0; i < nkiddies; i++)
|
sl@0
|
366 |
{
|
sl@0
|
367 |
int pipe_to_sub[2], pipe_from_sub[2];
|
sl@0
|
368 |
|
sl@0
|
369 |
if (pipe (pipe_to_sub) == -1 ||
|
sl@0
|
370 |
pipe (pipe_from_sub) == -1)
|
sl@0
|
371 |
perror ("pipe"), exit (1);
|
sl@0
|
372 |
|
sl@0
|
373 |
seqtab[i].fd = pipe_from_sub[0];
|
sl@0
|
374 |
seqtab[i].seq = 0;
|
sl@0
|
375 |
|
sl@0
|
376 |
my_read_channel = g_io_channel_unix_new (pipe_from_sub[0]);
|
sl@0
|
377 |
|
sl@0
|
378 |
id = g_new (guint, 1);
|
sl@0
|
379 |
*id =
|
sl@0
|
380 |
g_io_add_watch (my_read_channel,
|
sl@0
|
381 |
G_IO_IN | G_IO_PRI | G_IO_ERR | G_IO_HUP,
|
sl@0
|
382 |
recv_message,
|
sl@0
|
383 |
id);
|
sl@0
|
384 |
|
sl@0
|
385 |
nrunning++;
|
sl@0
|
386 |
|
sl@0
|
387 |
#ifdef G_OS_WIN32
|
sl@0
|
388 |
cmdline = g_strdup_printf ("%d:%d:%d",
|
sl@0
|
389 |
pipe_to_sub[0],
|
sl@0
|
390 |
pipe_from_sub[1],
|
sl@0
|
391 |
hwnd);
|
sl@0
|
392 |
_spawnl (_P_NOWAIT, argv[0], argv[0], "--child", cmdline, NULL);
|
sl@0
|
393 |
#else
|
sl@0
|
394 |
cmdline = g_strdup_printf ("%s --child %d:%d &", argv[0],
|
sl@0
|
395 |
pipe_to_sub[0], pipe_from_sub[1]);
|
sl@0
|
396 |
|
sl@0
|
397 |
#ifndef __SYMBIAN32__
|
sl@0
|
398 |
system (cmdline);
|
sl@0
|
399 |
#else
|
sl@0
|
400 |
from_descriptor = pipe_to_sub[0];
|
sl@0
|
401 |
to_descriptor = pipe_from_sub[1];
|
sl@0
|
402 |
rc = pthread_create(&thread_child,NULL,child_function,NULL);
|
sl@0
|
403 |
|
sl@0
|
404 |
|
sl@0
|
405 |
if(rc)
|
sl@0
|
406 |
{
|
sl@0
|
407 |
g_print("Failed to create thread.\n");
|
sl@0
|
408 |
exit(1);
|
sl@0
|
409 |
}
|
sl@0
|
410 |
#endif /*__SYMBIAN32__*/
|
sl@0
|
411 |
|
sl@0
|
412 |
#endif
|
sl@0
|
413 |
|
sl@0
|
414 |
#ifndef __SYMBIAN32__
|
sl@0
|
415 |
close (pipe_to_sub[0]);
|
sl@0
|
416 |
close (pipe_from_sub [1]);
|
sl@0
|
417 |
#endif
|
sl@0
|
418 |
|
sl@0
|
419 |
#ifdef G_OS_WIN32
|
sl@0
|
420 |
g_get_current_time (&start);
|
sl@0
|
421 |
g_io_channel_win32_make_pollfd (my_read_channel, G_IO_IN, &pollfd);
|
sl@0
|
422 |
pollresult = g_io_channel_win32_poll (&pollfd, 1, 100);
|
sl@0
|
423 |
g_get_current_time (&end);
|
sl@0
|
424 |
if (end.tv_usec < start.tv_usec)
|
sl@0
|
425 |
end.tv_sec--, end.tv_usec += 1000000;
|
sl@0
|
426 |
g_print ("gio-test: had to wait %ld.%03ld s, result:%d\n",
|
sl@0
|
427 |
end.tv_sec - start.tv_sec,
|
sl@0
|
428 |
(end.tv_usec - start.tv_usec) / 1000,
|
sl@0
|
429 |
pollresult);
|
sl@0
|
430 |
#endif
|
sl@0
|
431 |
}
|
sl@0
|
432 |
|
sl@0
|
433 |
main_loop = g_main_loop_new (NULL, FALSE);
|
sl@0
|
434 |
|
sl@0
|
435 |
g_main_loop_run (main_loop);
|
sl@0
|
436 |
}
|
sl@0
|
437 |
else if (argc == 3)
|
sl@0
|
438 |
{
|
sl@0
|
439 |
/* Child */
|
sl@0
|
440 |
|
sl@0
|
441 |
int readfd, writefd;
|
sl@0
|
442 |
#ifdef G_OS_WIN32
|
sl@0
|
443 |
HWND hwnd;
|
sl@0
|
444 |
#endif
|
sl@0
|
445 |
int i, j;
|
sl@0
|
446 |
char buf[BUFSIZE];
|
sl@0
|
447 |
int buflen;
|
sl@0
|
448 |
GTimeVal tv;
|
sl@0
|
449 |
int n;
|
sl@0
|
450 |
|
sl@0
|
451 |
g_get_current_time (&tv);
|
sl@0
|
452 |
|
sl@0
|
453 |
sscanf (argv[2], "%d:%d%n", &readfd, &writefd, &n);
|
sl@0
|
454 |
|
sl@0
|
455 |
#ifdef G_OS_WIN32
|
sl@0
|
456 |
sscanf (argv[2] + n, ":%d", &hwnd);
|
sl@0
|
457 |
#endif
|
sl@0
|
458 |
|
sl@0
|
459 |
srand (tv.tv_sec ^ (tv.tv_usec / 1000) ^ readfd ^ (writefd << 4));
|
sl@0
|
460 |
|
sl@0
|
461 |
for (i = 0; i < 20 + rand() % 20; i++)
|
sl@0
|
462 |
{
|
sl@0
|
463 |
g_usleep (100 + (rand() % 10) * 5000);
|
sl@0
|
464 |
buflen = rand() % BUFSIZE;
|
sl@0
|
465 |
for (j = 0; j < buflen; j++)
|
sl@0
|
466 |
buf[j] = ' ' + ((buflen + j) % 95);
|
sl@0
|
467 |
#ifdef VERBOSE
|
sl@0
|
468 |
g_print ("gio-test: child writing %d+%d bytes to %d\n",
|
sl@0
|
469 |
(int)(sizeof(i) + sizeof(buflen)), buflen, writefd);
|
sl@0
|
470 |
#endif
|
sl@0
|
471 |
write (writefd, &i, sizeof (i));
|
sl@0
|
472 |
write (writefd, &buflen, sizeof (buflen));
|
sl@0
|
473 |
write (writefd, buf, buflen);
|
sl@0
|
474 |
|
sl@0
|
475 |
#ifdef G_OS_WIN32
|
sl@0
|
476 |
if (rand() % 100 < 5)
|
sl@0
|
477 |
{
|
sl@0
|
478 |
int msg = WM_USER + (rand() % 100);
|
sl@0
|
479 |
WPARAM wparam = rand ();
|
sl@0
|
480 |
LPARAM lparam = rand ();
|
sl@0
|
481 |
g_print ("gio-test: child posting message %d,%d,%d to %#x\n",
|
sl@0
|
482 |
msg, wparam, lparam, hwnd);
|
sl@0
|
483 |
PostMessage (hwnd, msg, wparam, lparam);
|
sl@0
|
484 |
}
|
sl@0
|
485 |
#endif
|
sl@0
|
486 |
}
|
sl@0
|
487 |
#ifdef VERBOSE
|
sl@0
|
488 |
g_print ("gio-test: child exiting, closing %d\n", writefd);
|
sl@0
|
489 |
#endif
|
sl@0
|
490 |
close (writefd);
|
sl@0
|
491 |
}
|
sl@0
|
492 |
else
|
sl@0
|
493 |
g_print ("Huh?\n");
|
sl@0
|
494 |
|
sl@0
|
495 |
|
sl@0
|
496 |
#ifdef __SYMBIAN32__
|
sl@0
|
497 |
close(from_descriptor);
|
sl@0
|
498 |
close(to_descriptor);
|
sl@0
|
499 |
#endif
|
sl@0
|
500 |
|
sl@0
|
501 |
#if __SYMBIAN32__
|
sl@0
|
502 |
testResultXml("gio-test");
|
sl@0
|
503 |
#endif /* EMULATOR */
|
sl@0
|
504 |
|
sl@0
|
505 |
#ifdef VERBOSE
|
sl@0
|
506 |
printf("Completed tests\n");
|
sl@0
|
507 |
#endif
|
sl@0
|
508 |
|
sl@0
|
509 |
return 0;
|
sl@0
|
510 |
}
|
sl@0
|
511 |
|
sl@0
|
512 |
#ifdef __SYMBIAN32__
|
sl@0
|
513 |
void *child_function(void* t)
|
sl@0
|
514 |
{
|
sl@0
|
515 |
int readfd, writefd;
|
sl@0
|
516 |
|
sl@0
|
517 |
int i, j;
|
sl@0
|
518 |
char buf[BUFSIZE];
|
sl@0
|
519 |
int buflen;
|
sl@0
|
520 |
GTimeVal tv;
|
sl@0
|
521 |
int n;
|
sl@0
|
522 |
#ifdef VERBOSE
|
sl@0
|
523 |
g_print ("gio-test: ...entering child_function()");
|
sl@0
|
524 |
#endif
|
sl@0
|
525 |
g_get_current_time (&tv);
|
sl@0
|
526 |
|
sl@0
|
527 |
|
sl@0
|
528 |
readfd=from_descriptor;
|
sl@0
|
529 |
writefd=to_descriptor;
|
sl@0
|
530 |
|
sl@0
|
531 |
srand (tv.tv_sec ^ (tv.tv_usec / 1000) ^ readfd ^ (writefd << 4));
|
sl@0
|
532 |
|
sl@0
|
533 |
for (i = 0; i < 5; i++)
|
sl@0
|
534 |
{
|
sl@0
|
535 |
if(i==4)
|
sl@0
|
536 |
child_terminated = TRUE;
|
sl@0
|
537 |
g_usleep (100 + (rand() % 10) * 5000);
|
sl@0
|
538 |
buflen = rand() % BUFSIZE;
|
sl@0
|
539 |
for (j = 0; j < buflen; j++)
|
sl@0
|
540 |
buf[j] = ' ' + ((buflen + j) % 95);
|
sl@0
|
541 |
#ifdef VERBOSE
|
sl@0
|
542 |
g_print ("gio-test: child writing %d+%d bytes to %d\n",
|
sl@0
|
543 |
(int)(sizeof(i) + sizeof(buflen)), buflen, writefd);
|
sl@0
|
544 |
#endif
|
sl@0
|
545 |
write (writefd, &i, sizeof (i));
|
sl@0
|
546 |
write (writefd, &buflen, sizeof (buflen));
|
sl@0
|
547 |
write (writefd, buf, buflen);
|
sl@0
|
548 |
}
|
sl@0
|
549 |
#ifdef VERBOSE
|
sl@0
|
550 |
g_print ("gio-test: child exiting, closing %d\n", writefd);
|
sl@0
|
551 |
#endif
|
sl@0
|
552 |
close (writefd);
|
sl@0
|
553 |
|
sl@0
|
554 |
}
|
sl@0
|
555 |
#endif
|