5401e319be20b79d721225d8bd340cafbe060f62
[gapil.git] / sources / ForkTest.c
1 /* ForkTest.c
2  * 
3  * Copyright (C) 2001 Simone Piccardi
4  * 
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or (at
8  * your option) any later version.
9  * 
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  * 
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  */
19 /****************************************************************
20  *
21  * Program ForkTest.c: 
22  * Program to test process creation
23  *
24  * Author: Simone Piccardi
25  * Sep. 2001
26  *
27  * Usage: forktest -h give all info's
28  *
29  * $Id: ForkTest.c,v 1.5 2001/09/19 17:10:49 piccardi Exp $
30  *
31  ****************************************************************/
32 /* 
33  * Include needed headers
34  */
35 #include <errno.h>       /* error definitions and routines */ 
36 #include <stdlib.h>      /* C standard library */
37 #include <unistd.h>      /* unix standard library */
38 #include <stdio.h>       /* standard I/O library */
39 #include <string.h>      /* string functions */
40
41 /* Help printing routine */
42 void usage(void);
43
44 int main(int argc, char *argv[])
45 {
46 /* 
47  * Variables definition  
48  */
49     int nchild, i;
50     pid_t pid;
51     int wait_child  = 0;
52     int wait_parent = 0;
53     int wait_end    = 0;
54     /*
55      * Input section: decode command line parameters 
56      * Use getopt function
57      */
58     opterr = 0;  /* don't want writing to stderr */
59     while ( (i = getopt(argc, argv, "hp:c:e:")) != -1) {
60         switch (i) {
61         /* 
62          * Handling options 
63          */ 
64         case 'h':   /* help option */
65             printf("Wrong -h option use\n");
66             usage();
67             return -1;
68             break;
69         case 'c':   /* take wait time for childen */
70             wait_child = strtol(optarg, NULL, 10);    /* convert input */
71             break;
72         case 'p':   /* take wait time for childen */
73             wait_parent = strtol(optarg, NULL, 10);   /* convert input */
74             break;
75         case 'e':   /* take wait before parent exit */
76             wait_end = strtol(optarg, NULL, 10);      /* convert input */
77             break;
78         case '?':   /* unrecognized options */
79             printf("Unrecognized options -%c\n",optopt);
80             usage();
81         default:    /* should not reached */
82             usage();
83         }
84     }
85     /* ***********************************************************
86      * 
87      *           Options processing completed
88      *
89      *                Main code beginning
90      * 
91      * ***********************************************************/
92     /* There must be remaing parameters */
93     if (optind == argc) {
94         usage();
95     }
96     nchild = atoi(argv[optind]);
97     printf("Test for forking %d child\n", nchild);
98     /* loop to fork children */
99     for (i=0; i<nchild; i++) {
100         if ( (pid = fork()) < 0) { 
101             /* on error exit */ 
102             printf("Error on %d child creation, %s\n", i+1, strerror(errno));
103             exit(-1); 
104         }
105         if (pid == 0) {   /* child */
106             printf("Child %d successfully executing\n", ++i);
107             if (wait_child) sleep(wait_child);
108             printf("Child %d, parent %d, exiting\n", i, getppid());
109             exit(0);
110         } else {          /* parent */
111             printf("Spawned %d child, pid %d \n", i+1, pid);
112             if (wait_parent) sleep(wait_parent);
113             printf("Go to next child \n");
114         }
115     }
116     /* normal exit */
117     if (wait_end) sleep(wait_end);
118     return 0;
119 }
120 /*
121  * routine to print usage info and exit
122  */
123 void usage(void) {
124     printf("Program forktest: fork a given number of child \n");
125     printf("Usage:\n");
126     printf("  forktest [-h] [-p sec] [-c sec] [-e sec] child to fork \n");
127     printf("  -h           print this help\n");
128     printf("  -p sec       wait sec seconds before next fork\n");
129     printf("  -c sec       wait sec seconds before child termination\n");
130     printf("  -e sec       wait sec seconds before parent return\n");
131     
132     exit(1);
133 }