Update contrib.
1 /* GLIB - Library of useful routines for C programming
2 * Copyright (C) 2005 Matthias Clasen
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.
26 #include <sys/types.h>
33 #include "mrt2_glib2_test.h"
34 #endif /*__SYMBIAN32__*/
37 static gchar *dir, *filename, *displayname, *childname;
39 static gboolean stop = FALSE;
44 handle_usr1 (int signum)
52 check_stop (gpointer data)
54 GMainLoop *loop = data;
57 stop = g_file_test ("STOP", G_FILE_TEST_EXISTS);
61 g_main_loop_quit (loop);
67 write_or_die (const gchar *filename,
68 const gchar *contents,
74 if (!g_file_set_contents (filename, contents, length, &error))
76 displayname = g_filename_display_name (childname);
77 g_print ("failed to write '%s': %s\n",
78 displayname, error->message);
80 g_assert(FALSE && "mapping-test failed");
83 testResultXml("mapping-test");
90 map_or_die (const gchar *filename,
97 map = g_mapped_file_new (filename, writable, &error);
100 displayname = g_filename_display_name (childname);
101 g_print ("failed to map '%s' non-writable, shared: %s\n",
102 displayname, error->message);
104 g_assert(FALSE && "mapping-test failed");
107 testResultXml("mapping-test");
108 #endif /* EMULATOR */
116 child_main (int argc, char *argv[])
121 map = map_or_die (filename, FALSE);
123 loop = g_main_loop_new (NULL, FALSE);
125 #if !defined(G_OS_WIN32) && defined(SYMBIAN_OE_POSIX_SIGNALS) && defined(__SYMBIAN32__)
126 signal (SIGUSR1, handle_usr1);
128 g_idle_add (check_stop, loop);
129 g_main_loop_run (loop);
131 write_or_die (childname,
132 g_mapped_file_get_contents (map),
133 g_mapped_file_get_length (map));
143 write_or_die (filename, "ABC", -1);
145 map = map_or_die (filename, FALSE);
146 g_assert (g_mapped_file_get_length (map) == 3);
147 g_mapped_file_free (map);
149 map = map_or_die (filename, TRUE);
150 g_assert (g_mapped_file_get_length (map) == 3);
151 g_mapped_file_free (map);
157 GError *error = NULL;
162 write_or_die (filename, "ABC", -1);
163 map = map_or_die (filename, TRUE);
165 buffer = (gchar *)g_mapped_file_get_contents (map);
169 g_mapped_file_free (map);
171 if (!g_file_get_contents (filename, &buffer, &len, &error))
173 g_print ("failed to read '%s': %s\n",
174 displayname, error->message);
176 g_assert(FALSE && "mapping-test failed");
179 testResultXml("mapping-test");
180 #endif /* EMULATOR */
185 g_assert (strcmp (buffer, "ABC") == 0);
191 test_child_private (gchar *argv0)
193 GError *error = NULL;
197 gchar *child_argv[3];
202 g_assert (!g_file_test ("STOP", G_FILE_TEST_EXISTS));
205 write_or_die (filename, "ABC", -1);
206 map = map_or_die (filename, TRUE);
207 link(filename, "c:\\mapchild");
208 child_argv[0] = argv0;
209 child_argv[1] = "c:\\mapchild";
210 child_argv[2] = NULL;
211 if (!g_spawn_async (dir, child_argv, NULL,
212 0, NULL, NULL, &child_pid, &error))
214 g_print ("failed to spawn child: %s\n",
219 /* give the child some time to set up its mapping */
222 buffer = (gchar *)g_mapped_file_get_contents (map);
226 g_mapped_file_free (map);
228 #if !defined(G_OS_WIN32) && defined(SYMBIAN_OE_POSIX_SIGNALS) && defined(__SYMBIAN32__)
229 kill (child_pid, SIGUSR1);
231 g_file_set_contents ("STOP", "Hey there\n", -1, NULL);
234 /* give the child some time to write the file */
237 if (!g_file_get_contents (childname, &buffer, &len, &error))
241 name = g_filename_display_name (childname);
242 g_print ("failed to read '%s': %s\n", name, error->message);
244 g_assert(FALSE && "mapping-test failed");
247 testResultXml("mapping-test");
248 #endif /* EMULATOR */
252 g_assert (strcmp (buffer, "ABC") == 0);
257 parent_main (int argc,
260 /* test mapping with various flag combinations */
263 /* test private modification */
266 /* test multiple clients, non-shared */
267 test_child_private (argv[0]);
278 dir = g_get_current_dir ();
279 filename = g_build_filename (dir, "maptest", NULL);
280 displayname = g_filename_display_name (filename);
281 childname = g_build_filename (dir, "mapchild", NULL);
284 g_set_print_handler(mrtPrintHandler);
287 return child_main (argc, argv);
289 retval = parent_main (argc, argv);
292 testResultXml("mapping-test");
293 #endif /* EMULATOR */