]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - games/random/random.c
This commit was generated by cvs2svn to compensate for changes in r156230,
[FreeBSD/FreeBSD.git] / games / random / random.c
1 /*
2  * Copyright (c) 1994
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * Guy Harris at Network Appliance Corp.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. All advertising materials mentioning features or use of this software
17  *    must display the following acknowledgement:
18  *      This product includes software developed by the University of
19  *      California, Berkeley and its contributors.
20  * 4. Neither the name of the University nor the names of its contributors
21  *    may be used to endorse or promote products derived from this software
22  *    without specific prior written permission.
23  *
24  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34  * SUCH DAMAGE.
35  */
36
37 #if 0
38 #ifndef lint
39 static const char copyright[] =
40 "@(#) Copyright (c) 1994\n\
41         The Regents of the University of California.  All rights reserved.\n";
42 #endif /* not lint */
43
44 #ifndef lint
45 static const char sccsid[] = "@(#)random.c      8.5 (Berkeley) 4/5/94";
46 #endif /* not lint */
47 #endif
48 #include <sys/cdefs.h>
49 __FBSDID("$FreeBSD$");
50
51 #include <sys/types.h>
52
53 #include <err.h>
54 #include <errno.h>
55 #include <fcntl.h>
56 #include <limits.h>
57 #include <stdio.h>
58 #include <stdlib.h>
59 #include <string.h>
60 #include <time.h>
61 #include <unistd.h>
62
63 #include "randomize_fd.h"
64
65 /*
66  * The random() function is defined to return values between 0 and
67  * 2^31 - 1 inclusive in random(3).
68  */
69 #define RANDOM_MAX      0x7fffffffL
70
71 static void usage(void);
72
73 int
74 main(int argc, char *argv[])
75 {
76         double denom;
77         int ch, fd, random_exit, randomize_lines, random_type, ret,
78                 selected, unique_output, unbuffer_output;
79         char *ep;
80         const char *filename;
81
82         denom = 0;
83         filename = "/dev/fd/0";
84         random_type = RANDOM_TYPE_UNSET;
85         random_exit = randomize_lines = random_type = unbuffer_output = 0;
86         unique_output = 1;
87         while ((ch = getopt(argc, argv, "ef:hlruUw")) != -1)
88                 switch (ch) {
89                 case 'e':
90                         random_exit = 1;
91                         break;
92                 case 'f':
93                         randomize_lines = 1;
94                         if (strcmp(optarg, "-") != 0)
95                                 filename = optarg;
96                         break;
97                 case 'l':
98                         randomize_lines = 1;
99                         random_type = RANDOM_TYPE_LINES;
100                         break;
101                 case 'r':
102                         unbuffer_output = 1;
103                         break;
104                 case 'u':
105                         randomize_lines = 1;
106                         unique_output = 1;
107                         break;
108                 case 'U':
109                         randomize_lines = 1;
110                         unique_output = 0;
111                         break;
112                 case 'w':
113                         randomize_lines = 1;
114                         random_type = RANDOM_TYPE_WORDS;
115                         break;
116                 default:
117                 case '?':
118                         usage();
119                         /* NOTREACHED */
120                 }
121
122         argc -= optind;
123         argv += optind;
124
125         switch (argc) {
126         case 0:
127                 denom = (randomize_lines ? 1 : 2);
128                 break;
129         case 1:
130                 errno = 0;
131                 denom = strtod(*argv, &ep);
132                 if (errno == ERANGE)
133                         err(1, "%s", *argv);
134                 if (denom <= 0 || *ep != '\0')
135                         errx(1, "denominator is not valid.");
136                 if (random_exit && denom > 255)
137                         errx(1, "denominator must be <= 255 for random exit.");
138                 break;
139         default:
140                 usage();
141                 /* NOTREACHED */
142         }
143
144         srandomdev();
145
146         /*
147          * Act as a filter, randomly choosing lines of the standard input
148          * to write to the standard output.
149          */
150         if (unbuffer_output)
151                 setbuf(stdout, NULL);
152
153         /*
154          * Act as a filter, randomizing lines read in from a given file
155          * descriptor and write the output to standard output.
156          */
157         if (randomize_lines) {
158                 if ((fd = open(filename, O_RDONLY, 0)) < 0)
159                         err(1, "%s", filename);
160                 ret = randomize_fd(fd, random_type, unique_output, denom);
161                 if (!random_exit)
162                         return(ret);
163         }
164
165         /* Compute a random exit status between 0 and denom - 1. */
166         if (random_exit)
167                 return (int)((denom * random()) / RANDOM_MAX);
168
169         /*
170          * Select whether to print the first line.  (Prime the pump.)
171          * We find a random number between 0 and denom - 1 and, if it's
172          * 0 (which has a 1 / denom chance of being true), we select the
173          * line.
174          */
175         selected = (int)(denom * random() / RANDOM_MAX) == 0;
176         while ((ch = getchar()) != EOF) {
177                 if (selected)
178                         (void)putchar(ch);
179                 if (ch == '\n') {
180                         /* End of that line.  See if we got an error. */
181                         if (ferror(stdout))
182                                 err(2, "stdout");
183
184                         /* Now see if the next line is to be printed. */
185                         selected = (int)(denom * random() / RANDOM_MAX) == 0;
186                 }
187         }
188         if (ferror(stdin))
189                 err(2, "stdin");
190         exit (0);
191 }
192
193 static void
194 usage(void)
195 {
196
197         fprintf(stderr, "usage: random [-elrUuw] [-f filename] [denominator]\n");
198         exit(1);
199 }