os/ossrv/glib/tests/child-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) 1995-1997  Peter Mattis, Spencer Kimball and Josh MacDonald
sl@0
     3
 *
sl@0
     4
 * Portions copyright (c) 2009 Nokia Corporation.  All rights reserved.
sl@0
     5
 * This library is free software; you can redistribute it and/or
sl@0
     6
 * modify it under the terms of the GNU Lesser General Public
sl@0
     7
 * License as published by the Free Software Foundation; either
sl@0
     8
 * version 2 of the License, or (at your option) any later version.
sl@0
     9
 *
sl@0
    10
 * This library is distributed in the hope that it will be useful,
sl@0
    11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
sl@0
    12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
sl@0
    13
 * Lesser General Public License for more details.
sl@0
    14
 *
sl@0
    15
 * You should have received a copy of the GNU Lesser General Public
sl@0
    16
 * License along with this library; if not, write to the
sl@0
    17
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
sl@0
    18
 * Boston, MA 02111-1307, USA.
sl@0
    19
 */
sl@0
    20
sl@0
    21
/*
sl@0
    22
 * Modified by the GLib Team and others 1997-2000.  See the AUTHORS
sl@0
    23
 * file for a list of people on the GLib Team.  See the ChangeLog
sl@0
    24
 * files for a list of changes.  These files are distributed with
sl@0
    25
 * GLib at ftp://ftp.gtk.org/pub/gtk/. 
sl@0
    26
 */
sl@0
    27
sl@0
    28
#include "config.h"
sl@0
    29
sl@0
    30
#include <sys/types.h>
sl@0
    31
#ifdef HAVE_UNISTD_H
sl@0
    32
#include <unistd.h>
sl@0
    33
#endif
sl@0
    34
#include <stdlib.h>
sl@0
    35
#include <spawn.h>
sl@0
    36
#include <sys/wait.h>
sl@0
    37
#include <glib.h>
sl@0
    38
sl@0
    39
#ifdef __SYMBIAN32__
sl@0
    40
#include "mrt2_glib2_test.h"
sl@0
    41
#endif /*__SYMBIAN32__*/
sl@0
    42
sl@0
    43
#ifdef G_OS_WIN32
sl@0
    44
#include <windows.h>
sl@0
    45
#endif
sl@0
    46
sl@0
    47
#ifdef G_OS_WIN32
sl@0
    48
#define GPID_FORMAT "%p"
sl@0
    49
#else
sl@0
    50
#define GPID_FORMAT "%d"
sl@0
    51
#endif
sl@0
    52
sl@0
    53
GMainLoop *main_loop;
sl@0
    54
gint alive;
sl@0
    55
sl@0
    56
#ifdef G_OS_WIN32
sl@0
    57
char *argv0;
sl@0
    58
#endif
sl@0
    59
sl@0
    60
GPid
sl@0
    61
get_a_child (gint ttl)
sl@0
    62
{
sl@0
    63
  GPid pid;
sl@0
    64
#ifdef __SYMBIAN32__  
sl@0
    65
  gboolean retval;
sl@0
    66
  char **argv = NULL;
sl@0
    67
  GError *error = NULL;
sl@0
    68
#endif//__SYMBIAN32__  
sl@0
    69
#ifdef G_OS_WIN32
sl@0
    70
  STARTUPINFO si;
sl@0
    71
  PROCESS_INFORMATION pi;
sl@0
    72
  gchar *cmdline;
sl@0
    73
sl@0
    74
  memset (&si, 0, sizeof (si));
sl@0
    75
  si.cb = sizeof (&si);
sl@0
    76
  memset (&pi, 0, sizeof (pi));
sl@0
    77
sl@0
    78
  cmdline = g_strdup_printf( "child-test -c%d", ttl);
sl@0
    79
sl@0
    80
  if (!CreateProcess (argv0, cmdline, NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi))
sl@0
    81
    g_error ("CreateProcess failed: %s\n", g_win32_error_message (GetLastError ()));
sl@0
    82
sl@0
    83
  g_free(cmdline);
sl@0
    84
sl@0
    85
  CloseHandle (pi.hThread);
sl@0
    86
  pid = pi.hProcess;
sl@0
    87
sl@0
    88
  return pid;
sl@0
    89
#endif //G_OS_WIN32
sl@0
    90
#ifndef __SYMBIAN32__
sl@0
    91
  pid = fork ();
sl@0
    92
#else  
sl@0
    93
  argv = (char **)malloc(3*sizeof(char *));    
sl@0
    94
  argv[0] = "Helloworld.exe"; // wrong exe name. Should cause g_spawn_async to fail
sl@0
    95
  argv[1] = NULL;
sl@0
    96
  retval = g_spawn_async(NULL, argv, NULL, G_SPAWN_DO_NOT_REAP_CHILD | G_SPAWN_SEARCH_PATH, NULL, "1234", &pid, &error);
sl@0
    97
  if (pid < 0)
sl@0
    98
    exit (1);
sl@0
    99
sl@0
   100
  if (pid > 0)
sl@0
   101
    return pid;
sl@0
   102
sl@0
   103
  sleep (ttl);
sl@0
   104
  _exit (0);
sl@0
   105
#endif /*__SYMBIAN32__*/
sl@0
   106
}
sl@0
   107
sl@0
   108
gboolean
sl@0
   109
child_watch_callback (GPid pid, gint status, gpointer data)
sl@0
   110
{
sl@0
   111
#ifdef VERBOSE
sl@0
   112
  gint ttl = GPOINTER_TO_INT (data);
sl@0
   113
sl@0
   114
  g_print ("child " GPID_FORMAT " (ttl %d) exited, status %d\n", pid, ttl, status);
sl@0
   115
#endif
sl@0
   116
sl@0
   117
  g_spawn_close_pid (pid);
sl@0
   118
sl@0
   119
  if (--alive == 0)
sl@0
   120
    g_main_loop_quit (main_loop);
sl@0
   121
sl@0
   122
  return TRUE;
sl@0
   123
}
sl@0
   124
sl@0
   125
static gboolean
sl@0
   126
quit_loop (gpointer data)
sl@0
   127
{
sl@0
   128
  GMainLoop *main_loop = data;
sl@0
   129
sl@0
   130
  g_main_loop_quit (main_loop);
sl@0
   131
sl@0
   132
  return TRUE;
sl@0
   133
}
sl@0
   134
sl@0
   135
#ifdef TEST_THREAD
sl@0
   136
static gpointer
sl@0
   137
test_thread (gpointer data)
sl@0
   138
{
sl@0
   139
  GMainLoop *new_main_loop;
sl@0
   140
  GSource *source;
sl@0
   141
  GPid pid;
sl@0
   142
  gint ttl = GPOINTER_TO_INT (data);
sl@0
   143
sl@0
   144
  new_main_loop = g_main_loop_new (NULL, FALSE);
sl@0
   145
sl@0
   146
  pid = get_a_child (ttl);
sl@0
   147
  source = g_child_watch_source_new (pid);
sl@0
   148
  g_source_set_callback (source, (GSourceFunc) child_watch_callback, data, NULL);
sl@0
   149
  g_source_attach (source, g_main_loop_get_context (new_main_loop));
sl@0
   150
  g_source_unref (source);
sl@0
   151
sl@0
   152
#ifdef VERBOSE
sl@0
   153
  g_print ("whee! created pid: " GPID_FORMAT " (ttl %d)\n", pid, ttl);
sl@0
   154
#endif
sl@0
   155
sl@0
   156
  g_main_loop_run (new_main_loop);
sl@0
   157
sl@0
   158
  return NULL;
sl@0
   159
}
sl@0
   160
#endif
sl@0
   161
sl@0
   162
int
sl@0
   163
main (int argc, char *argv[])
sl@0
   164
{
sl@0
   165
#ifndef TEST_THREAD
sl@0
   166
  GPid pid;
sl@0
   167
#endif
sl@0
   168
#ifdef G_OS_WIN32
sl@0
   169
  argv0 = argv[0];
sl@0
   170
  if (argc > 1 && argv[1][0] == '-' && argv[1][1] == 'c')
sl@0
   171
    {
sl@0
   172
      int ttl = atoi (argv[1] + 2);
sl@0
   173
      Sleep (ttl * 1000);
sl@0
   174
      /* Exit on purpose with STILL_ACTIVE (which isn't a very common
sl@0
   175
       * exit status) to verify that g_child_watch_check() in gmain.c
sl@0
   176
       * doesn't believe a child still to be active if it happens to
sl@0
   177
       * exit with that status.
sl@0
   178
       */
sl@0
   179
      exit (STILL_ACTIVE);
sl@0
   180
    }
sl@0
   181
#endif
sl@0
   182
sl@0
   183
	#ifdef __SYMBIAN32__
sl@0
   184
	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
   185
	g_set_print_handler(mrtPrintHandler);
sl@0
   186
	#endif /*__SYMBIAN32__*/
sl@0
   187
sl@0
   188
  /* Only run the test, if threads are enabled and a default thread
sl@0
   189
   * implementation is available.
sl@0
   190
   */
sl@0
   191
#if defined(G_THREADS_ENABLED) && ! defined(G_THREADS_IMPL_NONE)
sl@0
   192
#ifdef TEST_THREAD
sl@0
   193
  g_thread_init (NULL);
sl@0
   194
#endif
sl@0
   195
  main_loop = g_main_loop_new (NULL, FALSE);
sl@0
   196
sl@0
   197
#ifdef G_OS_WIN32
sl@0
   198
  system ("ipconfig /all");
sl@0
   199
#else
sl@0
   200
  system ("/bin/true");
sl@0
   201
#endif
sl@0
   202
sl@0
   203
  alive = 2;
sl@0
   204
  g_timeout_add (30000, quit_loop, main_loop);
sl@0
   205
sl@0
   206
#ifdef TEST_THREAD
sl@0
   207
  g_thread_create (test_thread, GINT_TO_POINTER (10), FALSE, NULL);
sl@0
   208
  g_thread_create (test_thread, GINT_TO_POINTER (20), FALSE, NULL);
sl@0
   209
#else
sl@0
   210
  pid = get_a_child (10);
sl@0
   211
  g_child_watch_add (pid, (GChildWatchFunc) child_watch_callback,
sl@0
   212
		     GINT_TO_POINTER (10));
sl@0
   213
  pid = get_a_child (20);
sl@0
   214
  g_child_watch_add (pid, (GChildWatchFunc) child_watch_callback,
sl@0
   215
		     GINT_TO_POINTER (20));
sl@0
   216
#endif
sl@0
   217
  
sl@0
   218
  g_main_loop_run (main_loop);
sl@0
   219
sl@0
   220
  if (alive > 0)
sl@0
   221
    {
sl@0
   222
      g_warning ("%d children still alive\n", alive);
sl@0
   223
      return 1;
sl@0
   224
    }
sl@0
   225
    
sl@0
   226
#endif
sl@0
   227
sl@0
   228
   #if __SYMBIAN32__
sl@0
   229
   testResultXml("child-test1");
sl@0
   230
   #endif
sl@0
   231
   
sl@0
   232
   return 0;
sl@0
   233
}