1 /* Shuffle lines of text.
3 Copyright (C) 2006-2016 Free Software Foundation, Inc.
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 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
18 Written by Paul Eggert. */
22 #include <sys/types.h>
29 #include "linebuffer.h"
33 #include "read-file.h"
35 #include "xdectoint.h"
38 /* The official name of this program (e.g., no 'g' prefix). */
39 #define PROGRAM_NAME "shuf"
41 #define AUTHORS proper_name ("Paul Eggert")
43 /* For reservoir-sampling, allocate the reservoir lines in batches. */
44 enum { RESERVOIR_LINES_INCREMENT
= 1024 };
46 /* reservoir-sampling introduces CPU overhead for small inputs.
47 So only enable it for inputs >= this limit.
48 This limit was determined using these commands:
49 $ for p in $(seq 7); do src/seq $((10**$p)) > 10p$p.in; done
50 $ for p in $(seq 7); do time shuf-nores -n10 10p$p.in >/dev/null; done
51 $ for p in $(seq 7); do time shuf -n10 10p$p.in >/dev/null; done .*/
52 enum { RESERVOIR_MIN_INPUT
= 8192 * 1024 };
58 if (status
!= EXIT_SUCCESS
)
63 Usage: %s [OPTION]... [FILE]\n\
64 or: %s -e [OPTION]... [ARG]...\n\
65 or: %s -i LO-HI [OPTION]...\n\
67 program_name
, program_name
, program_name
);
69 Write a random permutation of the input lines to standard output.\n\
73 emit_mandatory_arg_note ();
76 -e, --echo treat each ARG as an input line\n\
77 -i, --input-range=LO-HI treat each number LO through HI as an input line\n\
78 -n, --head-count=COUNT output at most COUNT lines\n\
79 -o, --output=FILE write result to FILE instead of standard output\n\
80 --random-source=FILE get random bytes from FILE\n\
81 -r, --repeat output lines can be repeated\n\
84 -z, --zero-terminated line delimiter is NUL, not newline\n\
86 fputs (HELP_OPTION_DESCRIPTION
, stdout
);
87 fputs (VERSION_OPTION_DESCRIPTION
, stdout
);
88 emit_ancillary_info (PROGRAM_NAME
);
94 /* For long options that have no equivalent short option, use a
95 non-character as a pseudo short option, starting with CHAR_MAX + 1. */
98 RANDOM_SOURCE_OPTION
= CHAR_MAX
+ 1
101 static struct option
const long_opts
[] =
103 {"echo", no_argument
, NULL
, 'e'},
104 {"input-range", required_argument
, NULL
, 'i'},
105 {"head-count", required_argument
, NULL
, 'n'},
106 {"output", required_argument
, NULL
, 'o'},
107 {"random-source", required_argument
, NULL
, RANDOM_SOURCE_OPTION
},
108 {"repeat", no_argument
, NULL
, 'r'},
109 {"zero-terminated", no_argument
, NULL
, 'z'},
110 {GETOPT_HELP_OPTION_DECL
},
111 {GETOPT_VERSION_OPTION_DECL
},
116 input_from_argv (char **operand
, int n_operands
, char eolbyte
)
119 size_t size
= n_operands
;
122 for (i
= 0; i
< n_operands
; i
++)
123 size
+= strlen (operand
[i
]);
126 for (i
= 0; i
< n_operands
; i
++)
128 char *p1
= stpcpy (p
, operand
[i
]);
134 operand
[n_operands
] = p
;
137 /* Return the start of the next line after LINE. The current line
138 ends in EOLBYTE, and is guaranteed to end before LINE + N. */
141 next_line (char *line
, char eolbyte
, size_t n
)
143 char *p
= memchr (line
, eolbyte
, n
);
147 /* Return the size of the input if possible or OFF_T_MAX if not. */
154 struct stat stat_buf
;
155 if (fstat (STDIN_FILENO
, &stat_buf
) != 0)
157 if (usable_st_size (&stat_buf
))
158 file_size
= stat_buf
.st_size
;
162 off_t input_offset
= lseek (STDIN_FILENO
, 0, SEEK_CUR
);
163 if (input_offset
< 0)
166 file_size
-= input_offset
;
171 /* Read all lines and store up to K permuted lines in *OUT_RSRV.
172 Return the number of lines read, up to a maximum of K. */
175 read_input_reservoir_sampling (FILE *in
, char eolbyte
, size_t k
,
176 struct randint_source
*s
,
177 struct linebuffer
**out_rsrv
)
180 size_t n_alloc_lines
= MIN (k
, RESERVOIR_LINES_INCREMENT
);
181 struct linebuffer
*line
= NULL
;
182 struct linebuffer
*rsrv
;
184 rsrv
= xcalloc (n_alloc_lines
, sizeof (struct linebuffer
));
186 /* Fill the first K lines, directly into the reservoir. */
189 readlinebuffer_delim (&rsrv
[n_lines
], in
, eolbyte
)) != NULL
)
193 /* Enlarge reservoir. */
194 if (n_lines
>= n_alloc_lines
)
196 n_alloc_lines
+= RESERVOIR_LINES_INCREMENT
;
197 rsrv
= xnrealloc (rsrv
, n_alloc_lines
, sizeof (struct linebuffer
));
198 memset (&rsrv
[n_lines
], 0,
199 RESERVOIR_LINES_INCREMENT
* sizeof (struct linebuffer
));
203 /* last line wasn't NULL - so there may be more lines to read. */
206 struct linebuffer dummy
;
207 initbuffer (&dummy
); /* space for lines not put in reservoir. */
209 /* Choose the fate of the next line, with decreasing probability (as
210 n_lines increases in size).
212 If the line will be used, store it directly in the reservoir.
213 Otherwise, store it in dummy space.
215 With 'struct linebuffer', storing into existing buffer will reduce
216 re-allocations (will only re-allocate if the new line is longer than
217 the currently allocated space). */
220 randint j
= randint_choose (s
, n_lines
+ 1); /* 0 .. n_lines. */
221 line
= (j
< k
) ? (&rsrv
[j
]) : (&dummy
);
223 while (readlinebuffer_delim (line
, in
, eolbyte
) != NULL
&& n_lines
++);
226 die (EXIT_FAILURE
, EOVERFLOW
, _("too many input lines"));
231 /* no more input lines, or an input error. */
233 die (EXIT_FAILURE
, errno
, _("read error"));
236 return MIN (k
, n_lines
);
240 write_permuted_output_reservoir (size_t n_lines
, struct linebuffer
*lines
,
241 size_t const *permutation
)
245 for (i
= 0; i
< n_lines
; i
++)
247 const struct linebuffer
*p
= &lines
[permutation
[i
]];
248 if (fwrite (p
->buffer
, sizeof (char), p
->length
, stdout
) != p
->length
)
255 /* Read data from file IN. Input lines are delimited by EOLBYTE;
256 silently append a trailing EOLBYTE if the file ends in some other
257 byte. Store a pointer to the resulting array of lines into *PLINE.
258 Return the number of lines read. Report an error and exit on
262 read_input (FILE *in
, char eolbyte
, char ***pline
)
272 /* TODO: We should limit the amount of data read here,
273 to less than RESERVOIR_MIN_INPUT. I.e., adjust fread_file() to support
274 taking a byte limit. We'd then need to ensure we handle a line spanning
275 this boundary. With that in place we could set use_reservoir_sampling
276 when used==RESERVOIR_MIN_INPUT, and have read_input_reservoir_sampling()
277 call a wrapper function to populate a linebuffer from the internal pline
278 or if none left, stdin. Doing that would give better performance by
279 avoiding the reservoir CPU overhead when reading < RESERVOIR_MIN_INPUT
280 from a pipe, and allow us to dispense with the input_size() function. */
281 if (!(buf
= fread_file (in
, &used
)))
282 die (EXIT_FAILURE
, errno
, _("read error"));
284 if (used
&& buf
[used
- 1] != eolbyte
)
285 buf
[used
++] = eolbyte
;
290 for (p
= buf
; p
< lim
; p
= next_line (p
, eolbyte
, lim
- p
))
293 *pline
= line
= xnmalloc (n_lines
+ 1, sizeof *line
);
296 for (i
= 1; i
<= n_lines
; i
++)
297 line
[i
] = p
= next_line (p
, eolbyte
, lim
- p
);
302 /* Output N_LINES lines to stdout from LINE array,
303 chosen by the indices in PERMUTATION.
304 PERMUTATION and LINE must have at least N_LINES elements.
305 Strings in LINE must include the line-terminator character. */
307 write_permuted_lines (size_t n_lines
, char *const *line
,
308 size_t const *permutation
)
312 for (i
= 0; i
< n_lines
; i
++)
314 char *const *p
= line
+ permutation
[i
];
315 size_t len
= p
[1] - p
[0];
316 if (fwrite (p
[0], sizeof *p
[0], len
, stdout
) != len
)
323 /* Output N_LINES of numbers to stdout, from PERMUTATION array.
324 PERMUTATION must have at least N_LINES elements. */
326 write_permuted_numbers (size_t n_lines
, size_t lo_input
,
327 size_t const *permutation
, char eolbyte
)
331 for (i
= 0; i
< n_lines
; i
++)
333 unsigned long int n
= lo_input
+ permutation
[i
];
334 if (printf ("%lu%c", n
, eolbyte
) < 0)
341 /* Output COUNT numbers to stdout, chosen randomly from range
342 LO_INPUT through HI_INPUT. */
344 write_random_numbers (struct randint_source
*s
, size_t count
,
345 size_t lo_input
, size_t hi_input
, char eolbyte
)
348 const randint range
= hi_input
- lo_input
+ 1;
350 for (i
= 0; i
< count
; i
++)
352 unsigned long int j
= lo_input
+ randint_choose (s
, range
);
353 if (printf ("%lu%c", j
, eolbyte
) < 0)
360 /* Output COUNT lines to stdout from LINES array.
361 LINES must have at least N_LINES elements in it.
362 Strings in LINES_ must include the line-terminator character. */
364 write_random_lines (struct randint_source
*s
, size_t count
,
365 char *const *lines
, size_t n_lines
)
369 for (i
= 0; i
< count
; i
++)
371 const randint j
= randint_choose (s
, n_lines
);
372 char *const *p
= lines
+ j
;
373 size_t len
= p
[1] - p
[0];
374 if (fwrite (p
[0], sizeof *p
[0], len
, stdout
) != len
)
382 main (int argc
, char **argv
)
385 bool input_range
= false;
386 size_t lo_input
= SIZE_MAX
;
388 size_t head_lines
= SIZE_MAX
;
389 char const *outfile
= NULL
;
390 char *random_source
= NULL
;
392 char **input_lines
= NULL
;
393 bool use_reservoir_sampling
= false;
401 struct linebuffer
*reservoir
= NULL
;
402 struct randint_source
*randint_source
;
403 size_t *permutation
= NULL
;
406 initialize_main (&argc
, &argv
);
407 set_program_name (argv
[0]);
408 setlocale (LC_ALL
, "");
409 bindtextdomain (PACKAGE
, LOCALEDIR
);
410 textdomain (PACKAGE
);
412 atexit (close_stdout
);
414 while ((optc
= getopt_long (argc
, argv
, "ei:n:o:rz", long_opts
, NULL
)) != -1)
423 char *p
= strchr (optarg
, '-');
424 char const *hi_optarg
= optarg
;
428 die (EXIT_FAILURE
, 0, _("multiple -i options specified"));
434 lo_input
= xdectoumax (optarg
, 0, SIZE_MAX
, "",
435 _("invalid input range"), 0);
440 hi_input
= xdectoumax (hi_optarg
, 0, SIZE_MAX
, "",
441 _("invalid input range"), 0);
443 n_lines
= hi_input
- lo_input
+ 1;
444 invalid
|= ((lo_input
<= hi_input
) == (n_lines
== 0));
446 die (EXIT_FAILURE
, errno
, "%s: %s", _("invalid input range"),
453 unsigned long int argval
;
454 strtol_error e
= xstrtoul (optarg
, NULL
, 10, &argval
, NULL
);
457 head_lines
= MIN (head_lines
, argval
);
458 else if (e
!= LONGINT_OVERFLOW
)
459 die (EXIT_FAILURE
, 0, _("invalid line count: %s"),
465 if (outfile
&& !STREQ (outfile
, optarg
))
466 die (EXIT_FAILURE
, 0, _("multiple output files specified"));
470 case RANDOM_SOURCE_OPTION
:
471 if (random_source
&& !STREQ (random_source
, optarg
))
472 die (EXIT_FAILURE
, 0, _("multiple random sources specified"));
473 random_source
= optarg
;
484 case_GETOPT_HELP_CHAR
;
485 case_GETOPT_VERSION_CHAR (PROGRAM_NAME
, AUTHORS
);
487 usage (EXIT_FAILURE
);
490 n_operands
= argc
- optind
;
491 operand
= argv
+ optind
;
493 /* Check invalid usage. */
494 if (echo
&& input_range
)
496 error (0, 0, _("cannot combine -e and -i options"));
497 usage (EXIT_FAILURE
);
499 if (input_range
? 0 < n_operands
: !echo
&& 1 < n_operands
)
501 error (0, 0, _("extra operand %s"), quote (operand
[!input_range
]));
502 usage (EXIT_FAILURE
);
508 input_from_argv (operand
, n_operands
, eolbyte
);
509 n_lines
= n_operands
;
512 else if (input_range
)
514 n_lines
= hi_input
- lo_input
+ 1;
519 /* If an input file is specified, re-open it as stdin. */
521 if (! (STREQ (operand
[0], "-") || ! head_lines
522 || freopen (operand
[0], "r", stdin
)))
523 die (EXIT_FAILURE
, errno
, "%s", quotef (operand
[0]));
525 fadvise (stdin
, FADVISE_SEQUENTIAL
);
527 if (! repeat
&& head_lines
!= SIZE_MAX
528 && (! head_lines
|| input_size () > RESERVOIR_MIN_INPUT
))
530 use_reservoir_sampling
= true;
531 n_lines
= SIZE_MAX
; /* unknown number of input lines, for now. */
535 n_lines
= read_input (stdin
, eolbyte
, &input_lines
);
541 head_lines
= MIN (head_lines
, n_lines
);
543 randint_source
= randint_all_new (random_source
,
544 (use_reservoir_sampling
|| repeat
546 : randperm_bound (head_lines
, n_lines
)));
547 if (! randint_source
)
548 die (EXIT_FAILURE
, errno
, "%s", quotef (random_source
));
550 if (use_reservoir_sampling
)
552 /* Instead of reading the entire file into 'line',
553 use reservoir-sampling to store just "head_lines" random lines. */
554 n_lines
= read_input_reservoir_sampling (stdin
, eolbyte
, head_lines
,
555 randint_source
, &reservoir
);
556 head_lines
= n_lines
;
559 /* Close stdin now, rather than earlier, so that randint_all_new
560 doesn't have to worry about opening something other than
562 if (! (echo
|| input_range
)
563 && (fclose (stdin
) != 0))
564 die (EXIT_FAILURE
, errno
, _("read error"));
567 permutation
= randperm_new (randint_source
, head_lines
, n_lines
);
569 if (outfile
&& ! freopen (outfile
, "w", stdout
))
570 die (EXIT_FAILURE
, errno
, "%s", quotef (outfile
));
572 /* Generate output according to requested method */
580 die (EXIT_FAILURE
, 0, _("no lines to repeat"));
582 i
= write_random_numbers (randint_source
, head_lines
,
583 lo_input
, hi_input
, eolbyte
);
585 i
= write_random_lines (randint_source
, head_lines
, line
, n_lines
);
590 if (use_reservoir_sampling
)
591 i
= write_permuted_output_reservoir (n_lines
, reservoir
, permutation
);
592 else if (input_range
)
593 i
= write_permuted_numbers (head_lines
, lo_input
,
594 permutation
, eolbyte
);
596 i
= write_permuted_lines (head_lines
, line
, permutation
);
600 die (EXIT_FAILURE
, errno
, _("write error"));
604 randint_all_free (randint_source
);
607 free (input_lines
[0]);
613 for (j
= 0; j
< n_lines
; ++j
)
614 freebuffer (&reservoir
[j
]);