Update contrib.
1 /* GLIB - Library of useful routines for C programming
2 * Copyright (C) 2000 Tor Lillqvist
3 * Portion Copyright © 2008-09 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
20 /* A test program for the main loop and IO channel code.
21 * Just run it. Optional parameter is number of sub-processes.
24 #undef G_DISABLE_ASSERT
39 #include "mrt2_glib2_test.h"
40 void *child_function(void*);
41 gboolean child_terminated = FALSE;
42 int from_descriptor, to_descriptor;
43 #endif /*__SYMBIAN32__*/
50 #define pipe(fds) _pipe(fds, 4096, _O_BINARY)
58 static GMainLoop *main_loop;
60 #define BUFSIZE 5000 /* Larger than the circular buffer in
61 * giowin32.c on purpose.
80 GIOError error = G_IO_ERROR_NONE;
83 g_print ("gio-test: ...entering read_all()");
86 /* g_io_channel_read() doesn't necessarily return all the
87 * data we want at once.
92 error = g_io_channel_read (channel, bufp, left, &nb);
94 if (error != G_IO_ERROR_NONE)
96 g_print ("gio-test: ...from %d: G_IO_ERROR_%s\n", fd,
97 (error == G_IO_ERROR_AGAIN ? "AGAIN" :
98 (error == G_IO_ERROR_INVAL ? "INVAL" :
99 (error == G_IO_ERROR_UNKNOWN ? "UNKNOWN" : "???"))));
100 if (error == G_IO_ERROR_AGAIN)
114 shutdown_source (gpointer data)
117 g_print ("gio-test: ...entering shutdown_source()");
120 if (g_source_remove (*(guint *) data))
124 g_main_loop_quit (main_loop);
129 recv_message (GIOChannel *channel,
133 gint fd = g_io_channel_unix_get_fd (channel);
134 gboolean retval = TRUE;
137 g_print ("gio-test: ...entering recv_message()");
138 g_print ("gio-test: ...from %d:%s%s%s%s\n", fd,
139 (cond & G_IO_ERR) ? " ERR" : "",
140 (cond & G_IO_HUP) ? " HUP" : "",
141 (cond & G_IO_IN) ? " IN" : "",
142 (cond & G_IO_PRI) ? " PRI" : "");
145 if (cond & (G_IO_ERR | G_IO_HUP))
147 shutdown_source (data);
159 error = read_all (fd, channel, (gchar *) &seq, sizeof (seq), &nb);
160 if (error == G_IO_ERROR_NONE)
165 g_print ("gio-test: ...from %d: EOF\n", fd);
167 shutdown_source (data);
171 g_assert (nb == sizeof (nbytes));
173 for (i = 0; i < nkiddies; i++)
174 if (seqtab[i].fd == fd)
176 if (seq != seqtab[i].seq)
178 g_print ("gio-test: ...from %d: invalid sequence number %d, expected %d\n",
179 fd, seq, seqtab[i].seq);
180 g_assert_not_reached ();
182 g_assert(FALSE && "gio-test failed");
188 error = read_all (fd, channel, (gchar *) &nbytes, sizeof (nbytes), &nb);
191 if (error != G_IO_ERROR_NONE)
197 g_print ("gio-test: ...from %d: EOF\n", fd);
199 shutdown_source (data);
203 g_assert (nb == sizeof (nbytes));
205 if (nbytes >= BUFSIZE)
207 g_print ("gio-test: ...from %d: nbytes = %d (%#x)!\n", fd, nbytes, nbytes);
208 g_assert_not_reached ();
209 g_assert(FALSE && "gio-test failed");
211 g_assert (nbytes >= 0 && nbytes < BUFSIZE);
213 g_print ("gio-test: ...from %d: %d bytes\n", fd, nbytes);
217 error = read_all (fd, channel, buf, nbytes, &nb);
219 shutdown_source (data);
222 if (error != G_IO_ERROR_NONE)
228 g_print ("gio-test: ...from %d: EOF\n", fd);
230 shutdown_source (data);
234 for (j = 0; j < nbytes; j++)
235 if (buf[j] != ' ' + ((nbytes + j) % 95))
237 g_print ("gio-test: ...from %d: buf[%d] == '%c', should be '%c'\n",
238 fd, j, buf[j], 'a' + ((nbytes + j) % 32));
239 g_assert_not_reached ();
240 g_assert(FALSE && "gio-test failed");
243 g_print ("gio-test: ...from %d: OK\n", fd);
253 recv_windows_message (GIOChannel *channel,
263 error = g_io_channel_read (channel, &msg, sizeof (MSG), &nb);
265 if (error != G_IO_ERROR_NONE)
267 g_print ("gio-test: ...reading Windows message: G_IO_ERROR_%s\n",
268 (error == G_IO_ERROR_AGAIN ? "AGAIN" :
269 (error == G_IO_ERROR_INVAL ? "INVAL" :
270 (error == G_IO_ERROR_UNKNOWN ? "UNKNOWN" : "???"))));
271 if (error == G_IO_ERROR_AGAIN)
277 g_print ("gio-test: ...Windows message for %#x: %d,%d,%d\n",
278 msg.hwnd, msg.message, msg.wParam, msg.lParam);
284 window_procedure (HWND hwnd,
289 g_print ("gio-test: window_procedure for %#x: %d,%d,%d\n",
290 hwnd, message, wparam, lparam);
291 return DefWindowProc (hwnd, message, wparam, lparam);
303 pthread_t thread_child;
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);
306 g_set_print_handler(mrtPrintHandler);
307 #endif /*__SYMBIAN32__*/
310 printf("started tests\n");
316 GIOChannel *my_read_channel;
327 GIOChannel *windows_messages_channel;
330 nkiddies = (argc == 1 ? 1 : atoi(argv[1]));
331 seqtab = g_malloc (nkiddies * 2 * sizeof (int));
335 wcl.lpfnWndProc = window_procedure;
338 wcl.hInstance = GetModuleHandle (NULL);
341 wcl.hbrBackground = NULL;
342 wcl.lpszMenuName = NULL;
343 wcl.lpszClassName = "gio-test";
345 klass = RegisterClass (&wcl);
349 g_print ("gio-test: RegisterClass failed\n");
353 hwnd = CreateWindow (MAKEINTATOM(klass), "gio-test", 0, 0, 0, 10, 10,
354 NULL, NULL, wcl.hInstance, NULL);
357 g_print ("gio-test: CreateWindow failed\n");
361 windows_messages_channel = g_io_channel_win32_new_messages ((guint)hwnd);
362 g_io_add_watch (windows_messages_channel, G_IO_IN, recv_windows_message, 0);
365 for (i = 0; i < nkiddies; i++)
367 int pipe_to_sub[2], pipe_from_sub[2];
369 if (pipe (pipe_to_sub) == -1 ||
370 pipe (pipe_from_sub) == -1)
371 perror ("pipe"), exit (1);
373 seqtab[i].fd = pipe_from_sub[0];
376 my_read_channel = g_io_channel_unix_new (pipe_from_sub[0]);
378 id = g_new (guint, 1);
380 g_io_add_watch (my_read_channel,
381 G_IO_IN | G_IO_PRI | G_IO_ERR | G_IO_HUP,
388 cmdline = g_strdup_printf ("%d:%d:%d",
392 _spawnl (_P_NOWAIT, argv[0], argv[0], "--child", cmdline, NULL);
394 cmdline = g_strdup_printf ("%s --child %d:%d &", argv[0],
395 pipe_to_sub[0], pipe_from_sub[1]);
397 #ifndef __SYMBIAN32__
400 from_descriptor = pipe_to_sub[0];
401 to_descriptor = pipe_from_sub[1];
402 rc = pthread_create(&thread_child,NULL,child_function,NULL);
407 g_print("Failed to create thread.\n");
410 #endif /*__SYMBIAN32__*/
414 #ifndef __SYMBIAN32__
415 close (pipe_to_sub[0]);
416 close (pipe_from_sub [1]);
420 g_get_current_time (&start);
421 g_io_channel_win32_make_pollfd (my_read_channel, G_IO_IN, &pollfd);
422 pollresult = g_io_channel_win32_poll (&pollfd, 1, 100);
423 g_get_current_time (&end);
424 if (end.tv_usec < start.tv_usec)
425 end.tv_sec--, end.tv_usec += 1000000;
426 g_print ("gio-test: had to wait %ld.%03ld s, result:%d\n",
427 end.tv_sec - start.tv_sec,
428 (end.tv_usec - start.tv_usec) / 1000,
433 main_loop = g_main_loop_new (NULL, FALSE);
435 g_main_loop_run (main_loop);
451 g_get_current_time (&tv);
453 sscanf (argv[2], "%d:%d%n", &readfd, &writefd, &n);
456 sscanf (argv[2] + n, ":%d", &hwnd);
459 srand (tv.tv_sec ^ (tv.tv_usec / 1000) ^ readfd ^ (writefd << 4));
461 for (i = 0; i < 20 + rand() % 20; i++)
463 g_usleep (100 + (rand() % 10) * 5000);
464 buflen = rand() % BUFSIZE;
465 for (j = 0; j < buflen; j++)
466 buf[j] = ' ' + ((buflen + j) % 95);
468 g_print ("gio-test: child writing %d+%d bytes to %d\n",
469 (int)(sizeof(i) + sizeof(buflen)), buflen, writefd);
471 write (writefd, &i, sizeof (i));
472 write (writefd, &buflen, sizeof (buflen));
473 write (writefd, buf, buflen);
476 if (rand() % 100 < 5)
478 int msg = WM_USER + (rand() % 100);
479 WPARAM wparam = rand ();
480 LPARAM lparam = rand ();
481 g_print ("gio-test: child posting message %d,%d,%d to %#x\n",
482 msg, wparam, lparam, hwnd);
483 PostMessage (hwnd, msg, wparam, lparam);
488 g_print ("gio-test: child exiting, closing %d\n", writefd);
497 close(from_descriptor);
498 close(to_descriptor);
502 testResultXml("gio-test");
503 #endif /* EMULATOR */
506 printf("Completed tests\n");
513 void *child_function(void* t)
523 g_print ("gio-test: ...entering child_function()");
525 g_get_current_time (&tv);
528 readfd=from_descriptor;
529 writefd=to_descriptor;
531 srand (tv.tv_sec ^ (tv.tv_usec / 1000) ^ readfd ^ (writefd << 4));
533 for (i = 0; i < 5; i++)
536 child_terminated = TRUE;
537 g_usleep (100 + (rand() % 10) * 5000);
538 buflen = rand() % BUFSIZE;
539 for (j = 0; j < buflen; j++)
540 buf[j] = ' ' + ((buflen + j) % 95);
542 g_print ("gio-test: child writing %d+%d bytes to %d\n",
543 (int)(sizeof(i) + sizeof(buflen)), buflen, writefd);
545 write (writefd, &i, sizeof (i));
546 write (writefd, &buflen, sizeof (buflen));
547 write (writefd, buf, buflen);
550 g_print ("gio-test: child exiting, closing %d\n", writefd);