1 /* Shuffle lines of text.
3 Copyright (C) 2006-2022 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 <https://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, which is guaranteed
138 to end in EOLBYTE. */
141 next_line (char *line
, char eolbyte
)
143 char *p
= rawmemchr (line
, eolbyte
);
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
)
243 for (size_t i
= 0; i
< n_lines
; i
++)
245 const struct linebuffer
*p
= &lines
[permutation
[i
]];
246 if (fwrite (p
->buffer
, sizeof (char), p
->length
, stdout
) != p
->length
)
253 /* Read data from file IN. Input lines are delimited by EOLBYTE;
254 silently append a trailing EOLBYTE if the file ends in some other
255 byte. Store a pointer to the resulting array of lines into *PLINE.
256 Return the number of lines read. Report an error and exit on
260 read_input (FILE *in
, char eolbyte
, char ***pline
)
269 /* TODO: We should limit the amount of data read here,
270 to less than RESERVOIR_MIN_INPUT. I.e., adjust fread_file() to support
271 taking a byte limit. We'd then need to ensure we handle a line spanning
272 this boundary. With that in place we could set use_reservoir_sampling
273 when used==RESERVOIR_MIN_INPUT, and have read_input_reservoir_sampling()
274 call a wrapper function to populate a linebuffer from the internal pline
275 or if none left, stdin. Doing that would give better performance by
276 avoiding the reservoir CPU overhead when reading < RESERVOIR_MIN_INPUT
277 from a pipe, and allow us to dispense with the input_size() function. */
278 if (!(buf
= fread_file (in
, 0, &used
)))
279 die (EXIT_FAILURE
, errno
, _("read error"));
281 if (used
&& buf
[used
- 1] != eolbyte
)
282 buf
[used
++] = eolbyte
;
287 for (p
= buf
; p
< lim
; p
= next_line (p
, eolbyte
))
290 *pline
= line
= xnmalloc (n_lines
+ 1, sizeof *line
);
293 for (size_t i
= 1; i
<= n_lines
; i
++)
294 line
[i
] = p
= next_line (p
, eolbyte
);
299 /* Output N_LINES lines to stdout from LINE array,
300 chosen by the indices in PERMUTATION.
301 PERMUTATION and LINE must have at least N_LINES elements.
302 Strings in LINE must include the line-terminator character. */
304 write_permuted_lines (size_t n_lines
, char *const *line
,
305 size_t const *permutation
)
307 for (size_t i
= 0; i
< n_lines
; i
++)
309 char *const *p
= line
+ permutation
[i
];
310 size_t len
= p
[1] - p
[0];
311 if (fwrite (p
[0], sizeof *p
[0], len
, stdout
) != len
)
318 /* Output N_LINES of numbers to stdout, from PERMUTATION array.
319 PERMUTATION must have at least N_LINES elements. */
321 write_permuted_numbers (size_t n_lines
, size_t lo_input
,
322 size_t const *permutation
, char eolbyte
)
324 for (size_t i
= 0; i
< n_lines
; i
++)
326 unsigned long int n
= lo_input
+ permutation
[i
];
327 if (printf ("%lu%c", n
, eolbyte
) < 0)
334 /* Output COUNT numbers to stdout, chosen randomly from range
335 LO_INPUT through HI_INPUT. */
337 write_random_numbers (struct randint_source
*s
, size_t count
,
338 size_t lo_input
, size_t hi_input
, char eolbyte
)
340 const randint range
= hi_input
- lo_input
+ 1;
342 for (size_t i
= 0; i
< count
; i
++)
344 unsigned long int j
= lo_input
+ randint_choose (s
, range
);
345 if (printf ("%lu%c", j
, eolbyte
) < 0)
352 /* Output COUNT lines to stdout from LINES array.
353 LINES must have at least N_LINES elements in it.
354 Strings in LINES_ must include the line-terminator character. */
356 write_random_lines (struct randint_source
*s
, size_t count
,
357 char *const *lines
, size_t n_lines
)
359 for (size_t i
= 0; i
< count
; i
++)
361 const randint j
= randint_choose (s
, n_lines
);
362 char *const *p
= lines
+ j
;
363 size_t len
= p
[1] - p
[0];
364 if (fwrite (p
[0], sizeof *p
[0], len
, stdout
) != len
)
372 main (int argc
, char **argv
)
375 bool input_range
= false;
376 size_t lo_input
= SIZE_MAX
;
378 size_t head_lines
= SIZE_MAX
;
379 char const *outfile
= NULL
;
380 char *random_source
= NULL
;
382 char **input_lines
= NULL
;
383 bool use_reservoir_sampling
= false;
391 struct linebuffer
*reservoir
= NULL
;
392 struct randint_source
*randint_source
;
393 size_t *permutation
= NULL
;
396 initialize_main (&argc
, &argv
);
397 set_program_name (argv
[0]);
398 setlocale (LC_ALL
, "");
399 bindtextdomain (PACKAGE
, LOCALEDIR
);
400 textdomain (PACKAGE
);
402 atexit (close_stdout
);
404 while ((optc
= getopt_long (argc
, argv
, "ei:n:o:rz", long_opts
, NULL
)) != -1)
413 char *p
= strchr (optarg
, '-');
414 char const *hi_optarg
= optarg
;
418 die (EXIT_FAILURE
, 0, _("multiple -i options specified"));
424 lo_input
= xdectoumax (optarg
, 0, SIZE_MAX
, "",
425 _("invalid input range"), 0);
430 hi_input
= xdectoumax (hi_optarg
, 0, SIZE_MAX
, "",
431 _("invalid input range"), 0);
433 n_lines
= hi_input
- lo_input
+ 1;
434 invalid
|= ((lo_input
<= hi_input
) == (n_lines
== 0));
436 die (EXIT_FAILURE
, errno
, "%s: %s", _("invalid input range"),
444 strtol_error e
= xstrtoumax (optarg
, NULL
, 10, &argval
, "");
447 head_lines
= MIN (head_lines
, argval
);
448 else if (e
!= LONGINT_OVERFLOW
)
449 die (EXIT_FAILURE
, 0, _("invalid line count: %s"),
455 if (outfile
&& !STREQ (outfile
, optarg
))
456 die (EXIT_FAILURE
, 0, _("multiple output files specified"));
460 case RANDOM_SOURCE_OPTION
:
461 if (random_source
&& !STREQ (random_source
, optarg
))
462 die (EXIT_FAILURE
, 0, _("multiple random sources specified"));
463 random_source
= optarg
;
474 case_GETOPT_HELP_CHAR
;
475 case_GETOPT_VERSION_CHAR (PROGRAM_NAME
, AUTHORS
);
477 usage (EXIT_FAILURE
);
480 n_operands
= argc
- optind
;
481 operand
= argv
+ optind
;
483 /* Check invalid usage. */
484 if (echo
&& input_range
)
486 error (0, 0, _("cannot combine -e and -i options"));
487 usage (EXIT_FAILURE
);
489 if (input_range
? 0 < n_operands
: !echo
&& 1 < n_operands
)
491 error (0, 0, _("extra operand %s"), quote (operand
[!input_range
]));
492 usage (EXIT_FAILURE
);
503 input_from_argv (operand
, n_operands
, eolbyte
);
504 n_lines
= n_operands
;
507 else if (input_range
)
509 n_lines
= hi_input
- lo_input
+ 1;
514 /* If an input file is specified, re-open it as stdin. */
516 && ! (STREQ (operand
[0], "-")
517 || freopen (operand
[0], "r", stdin
)))
518 die (EXIT_FAILURE
, errno
, "%s", quotef (operand
[0]));
520 fadvise (stdin
, FADVISE_SEQUENTIAL
);
522 if (repeat
|| head_lines
== SIZE_MAX
523 || input_size () <= RESERVOIR_MIN_INPUT
)
525 n_lines
= read_input (stdin
, eolbyte
, &input_lines
);
530 use_reservoir_sampling
= true;
531 n_lines
= SIZE_MAX
; /* unknown number of input lines, for now. */
535 /* The adjusted head line count; can be less than HEAD_LINES if the
536 input is small and if not repeating. */
537 size_t ahead_lines
= repeat
|| head_lines
< n_lines
? head_lines
: n_lines
;
539 randint_source
= randint_all_new (random_source
,
540 (use_reservoir_sampling
|| repeat
542 : randperm_bound (ahead_lines
, n_lines
)));
543 if (! randint_source
)
544 die (EXIT_FAILURE
, errno
, "%s",
545 quotef (random_source
? random_source
: "getrandom"));
547 if (use_reservoir_sampling
)
549 /* Instead of reading the entire file into 'line',
550 use reservoir-sampling to store just AHEAD_LINES random lines. */
551 n_lines
= read_input_reservoir_sampling (stdin
, eolbyte
, ahead_lines
,
552 randint_source
, &reservoir
);
553 ahead_lines
= n_lines
;
556 /* Close stdin now, rather than earlier, so that randint_all_new
557 doesn't have to worry about opening something other than
559 if (! (head_lines
== 0 || echo
|| input_range
|| fclose (stdin
) == 0))
560 die (EXIT_FAILURE
, errno
, _("read error"));
563 permutation
= randperm_new (randint_source
, ahead_lines
, n_lines
);
565 if (outfile
&& ! freopen (outfile
, "w", stdout
))
566 die (EXIT_FAILURE
, errno
, "%s", quotef (outfile
));
568 /* Generate output according to requested method */
576 die (EXIT_FAILURE
, 0, _("no lines to repeat"));
578 i
= write_random_numbers (randint_source
, ahead_lines
,
579 lo_input
, hi_input
, eolbyte
);
581 i
= write_random_lines (randint_source
, ahead_lines
, line
, n_lines
);
586 if (use_reservoir_sampling
)
587 i
= write_permuted_output_reservoir (n_lines
, reservoir
, permutation
);
588 else if (input_range
)
589 i
= write_permuted_numbers (ahead_lines
, lo_input
,
590 permutation
, eolbyte
);
592 i
= write_permuted_lines (ahead_lines
, line
, permutation
);
596 die (EXIT_FAILURE
, errno
, _("write error"));
600 randint_all_free (randint_source
);
603 free (input_lines
[0]);
609 for (j
= 0; j
< n_lines
; ++j
)
610 freebuffer (&reservoir
[j
]);