os/ossrv/glib/tests/mapping-test.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/* GLIB - Library of useful routines for C programming
sl@0
     2
 * Copyright (C) 2005 Matthias Clasen
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
#include "config.h"
sl@0
    20
sl@0
    21
#include <stdlib.h>
sl@0
    22
#include <string.h>
sl@0
    23
#ifdef HAVE_UNISTD_H
sl@0
    24
#include <unistd.h>
sl@0
    25
#endif
sl@0
    26
#include <sys/types.h>
sl@0
    27
#include <signal.h>
sl@0
    28
sl@0
    29
#include "glib.h"
sl@0
    30
#include "gstdio.h"
sl@0
    31
sl@0
    32
#ifdef __SYMBIAN32__
sl@0
    33
#include "mrt2_glib2_test.h"
sl@0
    34
#endif /*__SYMBIAN32__*/
sl@0
    35
sl@0
    36
sl@0
    37
static gchar *dir, *filename, *displayname, *childname;
sl@0
    38
sl@0
    39
static gboolean stop = FALSE;
sl@0
    40
sl@0
    41
#ifndef G_OS_WIN32
sl@0
    42
sl@0
    43
static void
sl@0
    44
handle_usr1 (int signum)
sl@0
    45
{
sl@0
    46
  stop = TRUE;
sl@0
    47
}
sl@0
    48
sl@0
    49
#endif
sl@0
    50
sl@0
    51
static gboolean
sl@0
    52
check_stop (gpointer data)
sl@0
    53
{
sl@0
    54
  GMainLoop *loop = data;
sl@0
    55
sl@0
    56
#ifdef G_OS_WIN32
sl@0
    57
  stop = g_file_test ("STOP", G_FILE_TEST_EXISTS);
sl@0
    58
#endif
sl@0
    59
sl@0
    60
  if (stop)
sl@0
    61
    g_main_loop_quit (loop);
sl@0
    62
sl@0
    63
  return TRUE;
sl@0
    64
}
sl@0
    65
sl@0
    66
static void
sl@0
    67
write_or_die (const gchar *filename,
sl@0
    68
	      const gchar *contents,
sl@0
    69
	      gssize       length)
sl@0
    70
{
sl@0
    71
  GError *error = NULL;
sl@0
    72
  gchar *displayname;    
sl@0
    73
sl@0
    74
  if (!g_file_set_contents (filename, contents, length, &error)) 
sl@0
    75
    {
sl@0
    76
      displayname = g_filename_display_name (childname);
sl@0
    77
      g_print ("failed to write '%s': %s\n", 
sl@0
    78
	       displayname, error->message);
sl@0
    79
	    
sl@0
    80
	  g_assert(FALSE && "mapping-test failed");
sl@0
    81
	  
sl@0
    82
	  #ifdef __SYMBIAN32__
sl@0
    83
  	  testResultXml("mapping-test");
sl@0
    84
  	  #endif /* EMULATOR */
sl@0
    85
      exit (1);
sl@0
    86
    }
sl@0
    87
}
sl@0
    88
sl@0
    89
static GMappedFile *
sl@0
    90
map_or_die (const gchar *filename,
sl@0
    91
	    gboolean     writable)
sl@0
    92
{
sl@0
    93
  GError *error = NULL;
sl@0
    94
  GMappedFile *map;
sl@0
    95
  gchar *displayname;
sl@0
    96
sl@0
    97
  map = g_mapped_file_new (filename, writable, &error);
sl@0
    98
  if (!map)
sl@0
    99
    {
sl@0
   100
      displayname = g_filename_display_name (childname);
sl@0
   101
      g_print ("failed to map '%s' non-writable, shared: %s\n", 
sl@0
   102
	       displayname, error->message);
sl@0
   103
	       
sl@0
   104
	  g_assert(FALSE && "mapping-test failed");
sl@0
   105
	  
sl@0
   106
	  #ifdef __SYMBIAN32__
sl@0
   107
  	  testResultXml("mapping-test");
sl@0
   108
  	  #endif /* EMULATOR */
sl@0
   109
      exit (1);
sl@0
   110
    }
sl@0
   111
sl@0
   112
  return map;
sl@0
   113
}
sl@0
   114
	    
sl@0
   115
static int
sl@0
   116
child_main (int argc, char *argv[])
sl@0
   117
{
sl@0
   118
  GMappedFile *map;
sl@0
   119
  GMainLoop *loop;
sl@0
   120
sl@0
   121
  map = map_or_die (filename, FALSE);
sl@0
   122
  
sl@0
   123
  loop = g_main_loop_new (NULL, FALSE);
sl@0
   124
sl@0
   125
#if !defined(G_OS_WIN32) && defined(SYMBIAN_OE_POSIX_SIGNALS) && defined(__SYMBIAN32__)
sl@0
   126
  signal (SIGUSR1, handle_usr1);
sl@0
   127
#endif
sl@0
   128
  g_idle_add (check_stop, loop);
sl@0
   129
  g_main_loop_run (loop);
sl@0
   130
sl@0
   131
  write_or_die (childname, 
sl@0
   132
		g_mapped_file_get_contents (map),
sl@0
   133
		g_mapped_file_get_length (map));
sl@0
   134
sl@0
   135
  return 0;
sl@0
   136
}
sl@0
   137
sl@0
   138
static void
sl@0
   139
test_mapping (void)
sl@0
   140
{
sl@0
   141
  GMappedFile *map;
sl@0
   142
sl@0
   143
  write_or_die (filename, "ABC", -1);
sl@0
   144
sl@0
   145
  map = map_or_die (filename, FALSE);
sl@0
   146
  g_assert (g_mapped_file_get_length (map) == 3);
sl@0
   147
  g_mapped_file_free (map);
sl@0
   148
sl@0
   149
  map = map_or_die (filename, TRUE);
sl@0
   150
  g_assert (g_mapped_file_get_length (map) == 3);
sl@0
   151
  g_mapped_file_free (map);
sl@0
   152
}
sl@0
   153
sl@0
   154
static void 
sl@0
   155
test_private (void)
sl@0
   156
{
sl@0
   157
  GError *error = NULL;
sl@0
   158
  GMappedFile *map;
sl@0
   159
  gchar *buffer;
sl@0
   160
  gsize len;
sl@0
   161
sl@0
   162
  write_or_die (filename, "ABC", -1);
sl@0
   163
  map = map_or_die (filename, TRUE);
sl@0
   164
sl@0
   165
  buffer = (gchar *)g_mapped_file_get_contents (map);
sl@0
   166
  buffer[0] = '1';
sl@0
   167
  buffer[1] = '2';
sl@0
   168
  buffer[2] = '3';
sl@0
   169
  g_mapped_file_free (map);
sl@0
   170
sl@0
   171
  if (!g_file_get_contents (filename, &buffer, &len, &error))
sl@0
   172
    {
sl@0
   173
      g_print ("failed to read '%s': %s\n", 
sl@0
   174
	       displayname, error->message);
sl@0
   175
	       
sl@0
   176
	  g_assert(FALSE && "mapping-test failed");
sl@0
   177
	  
sl@0
   178
	  #ifdef __SYMBIAN32__
sl@0
   179
  	  testResultXml("mapping-test");
sl@0
   180
  	  #endif /* EMULATOR */
sl@0
   181
      exit (1);
sl@0
   182
      
sl@0
   183
    }
sl@0
   184
  g_assert (len == 3);
sl@0
   185
  g_assert (strcmp (buffer, "ABC") == 0);
sl@0
   186
  g_free (buffer);
sl@0
   187
sl@0
   188
}
sl@0
   189
sl@0
   190
static void
sl@0
   191
test_child_private (gchar *argv0)
sl@0
   192
{
sl@0
   193
  GError *error = NULL;
sl@0
   194
  GMappedFile *map;
sl@0
   195
  gchar *buffer;
sl@0
   196
  gsize len;
sl@0
   197
  gchar *child_argv[3];
sl@0
   198
  GPid  child_pid;
sl@0
   199
  
sl@0
   200
#ifdef G_OS_WIN32
sl@0
   201
  g_remove ("STOP");
sl@0
   202
  g_assert (!g_file_test ("STOP", G_FILE_TEST_EXISTS));
sl@0
   203
#endif
sl@0
   204
sl@0
   205
  write_or_die (filename, "ABC", -1);
sl@0
   206
  map = map_or_die (filename, TRUE);
sl@0
   207
  link(filename, "c:\\mapchild");
sl@0
   208
  child_argv[0] = argv0;
sl@0
   209
  child_argv[1] = "c:\\mapchild";
sl@0
   210
  child_argv[2] = NULL;
sl@0
   211
  if (!g_spawn_async (dir, child_argv, NULL,
sl@0
   212
		      0, NULL, NULL, &child_pid, &error))
sl@0
   213
    {
sl@0
   214
      g_print ("failed to spawn child: %s\n", 
sl@0
   215
	       error->message);
sl@0
   216
      exit (1);            
sl@0
   217
    }
sl@0
   218
sl@0
   219
  /* give the child some time to set up its mapping */
sl@0
   220
  g_usleep (2000000);
sl@0
   221
sl@0
   222
  buffer = (gchar *)g_mapped_file_get_contents (map);
sl@0
   223
  buffer[0] = '1';
sl@0
   224
  buffer[1] = '2';
sl@0
   225
  buffer[2] = '3';
sl@0
   226
  g_mapped_file_free (map);
sl@0
   227
sl@0
   228
#if !defined(G_OS_WIN32) && defined(SYMBIAN_OE_POSIX_SIGNALS) && defined(__SYMBIAN32__)
sl@0
   229
  kill (child_pid, SIGUSR1);
sl@0
   230
#else
sl@0
   231
  g_file_set_contents ("STOP", "Hey there\n", -1, NULL);
sl@0
   232
#endif
sl@0
   233
sl@0
   234
  /* give the child some time to write the file */
sl@0
   235
  g_usleep (2000000);
sl@0
   236
sl@0
   237
  if (!g_file_get_contents (childname, &buffer, &len, &error))
sl@0
   238
    {
sl@0
   239
      gchar *name;
sl@0
   240
sl@0
   241
      name = g_filename_display_name (childname);
sl@0
   242
      g_print ("failed to read '%s': %s\n", name, error->message);
sl@0
   243
      
sl@0
   244
      g_assert(FALSE && "mapping-test failed");
sl@0
   245
	  
sl@0
   246
	  #ifdef __SYMBIAN32__
sl@0
   247
  	  testResultXml("mapping-test");
sl@0
   248
  	  #endif /* EMULATOR */
sl@0
   249
      exit (1);      
sl@0
   250
    }
sl@0
   251
  g_assert (len == 3);
sl@0
   252
  g_assert (strcmp (buffer, "ABC") == 0);
sl@0
   253
  g_free (buffer);
sl@0
   254
}
sl@0
   255
sl@0
   256
static int 
sl@0
   257
parent_main (int   argc,
sl@0
   258
	     char *argv[])
sl@0
   259
{
sl@0
   260
  /* test mapping with various flag combinations */
sl@0
   261
  test_mapping ();
sl@0
   262
sl@0
   263
  /* test private modification */
sl@0
   264
  test_private ();
sl@0
   265
sl@0
   266
  /* test multiple clients, non-shared */
sl@0
   267
  test_child_private (argv[0]);
sl@0
   268
sl@0
   269
  return 0;
sl@0
   270
}
sl@0
   271
sl@0
   272
int
sl@0
   273
main (int argc, 
sl@0
   274
      char *argv[])
sl@0
   275
{
sl@0
   276
  int retval;
sl@0
   277
  chdir("c:\\");
sl@0
   278
  dir = g_get_current_dir ();
sl@0
   279
  filename = g_build_filename (dir, "maptest", NULL);
sl@0
   280
  displayname = g_filename_display_name (filename);
sl@0
   281
  childname = g_build_filename (dir, "mapchild", NULL);
sl@0
   282
sl@0
   283
  #ifdef __SYMBIAN32__
sl@0
   284
  g_set_print_handler(mrtPrintHandler);
sl@0
   285
  #endif
sl@0
   286
  if (argc > 1)
sl@0
   287
    return child_main (argc, argv);
sl@0
   288
  else 
sl@0
   289
  retval = parent_main (argc, argv);
sl@0
   290
  
sl@0
   291
  #ifdef __SYMBIAN32__
sl@0
   292
  testResultXml("mapping-test");
sl@0
   293
  #endif /* EMULATOR */
sl@0
   294
  
sl@0
   295
  return retval;
sl@0
   296
}