1 /* Shuffle lines of text.
3 Copyright (C) 2006-2024 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>
27 #include "linebuffer.h"
31 #include "read-file.h"
35 /* The official name of this program (e.g., no 'g' prefix). */
36 #define PROGRAM_NAME "shuf"
38 #define AUTHORS proper_name ("Paul Eggert")
40 /* For reservoir-sampling, allocate the reservoir lines in batches. */
41 enum { RESERVOIR_LINES_INCREMENT
= 1024 };
43 /* reservoir-sampling introduces CPU overhead for small inputs.
44 So only enable it for inputs >= this limit.
45 This limit was determined using these commands:
46 $ for p in $(seq 7); do src/seq $((10**$p)) > 10p$p.in; done
47 $ for p in $(seq 7); do time shuf-nores -n10 10p$p.in >/dev/null; done
48 $ for p in $(seq 7); do time shuf -n10 10p$p.in >/dev/null; done .*/
49 enum { RESERVOIR_MIN_INPUT
= 8192 * 1024 };
55 if (status
!= EXIT_SUCCESS
)
60 Usage: %s [OPTION]... [FILE]\n\
61 or: %s -e [OPTION]... [ARG]...\n\
62 or: %s -i LO-HI [OPTION]...\n\
64 program_name
, program_name
, program_name
);
66 Write a random permutation of the input lines to standard output.\n\
70 emit_mandatory_arg_note ();
73 -e, --echo treat each ARG as an input line\n\
74 -i, --input-range=LO-HI treat each number LO through HI as an input line\n\
75 -n, --head-count=COUNT output at most COUNT lines\n\
76 -o, --output=FILE write result to FILE instead of standard output\n\
77 --random-source=FILE get random bytes from FILE\n\
78 -r, --repeat output lines can be repeated\n\
81 -z, --zero-terminated line delimiter is NUL, not newline\n\
83 fputs (HELP_OPTION_DESCRIPTION
, stdout
);
84 fputs (VERSION_OPTION_DESCRIPTION
, stdout
);
85 emit_ancillary_info (PROGRAM_NAME
);
91 /* For long options that have no equivalent short option, use a
92 non-character as a pseudo short option, starting with CHAR_MAX + 1. */
95 RANDOM_SOURCE_OPTION
= CHAR_MAX
+ 1
98 static struct option
const long_opts
[] =
100 {"echo", no_argument
, nullptr, 'e'},
101 {"input-range", required_argument
, nullptr, 'i'},
102 {"head-count", required_argument
, nullptr, 'n'},
103 {"output", required_argument
, nullptr, 'o'},
104 {"random-source", required_argument
, nullptr, RANDOM_SOURCE_OPTION
},
105 {"repeat", no_argument
, nullptr, 'r'},
106 {"zero-terminated", no_argument
, nullptr, 'z'},
107 {GETOPT_HELP_OPTION_DECL
},
108 {GETOPT_VERSION_OPTION_DECL
},
113 input_from_argv (char **operand
, int n_operands
, char eolbyte
)
116 size_t size
= n_operands
;
119 for (i
= 0; i
< n_operands
; i
++)
120 size
+= strlen (operand
[i
]);
123 for (i
= 0; i
< n_operands
; i
++)
125 char *p1
= stpcpy (p
, operand
[i
]);
131 operand
[n_operands
] = p
;
134 /* Return the start of the next line after LINE, which is guaranteed
135 to end in EOLBYTE. */
138 next_line (char *line
, char eolbyte
)
140 char *p
= rawmemchr (line
, eolbyte
);
144 /* Return the size of the input if possible or OFF_T_MAX if not. */
151 struct stat stat_buf
;
152 if (fstat (STDIN_FILENO
, &stat_buf
) != 0)
154 if (usable_st_size (&stat_buf
))
155 file_size
= stat_buf
.st_size
;
159 off_t input_offset
= lseek (STDIN_FILENO
, 0, SEEK_CUR
);
160 if (input_offset
< 0)
163 file_size
-= input_offset
;
168 /* Read all lines and store up to K permuted lines in *OUT_RSRV.
169 Return the number of lines read, up to a maximum of K. */
172 read_input_reservoir_sampling (FILE *in
, char eolbyte
, size_t k
,
173 struct randint_source
*s
,
174 struct linebuffer
**out_rsrv
)
177 size_t n_alloc_lines
= MIN (k
, RESERVOIR_LINES_INCREMENT
);
178 struct linebuffer
*line
= nullptr;
179 struct linebuffer
*rsrv
;
181 rsrv
= xcalloc (n_alloc_lines
, sizeof (struct linebuffer
));
183 /* Fill the first K lines, directly into the reservoir. */
186 readlinebuffer_delim (&rsrv
[n_lines
], in
, eolbyte
)) != nullptr)
190 /* Enlarge reservoir. */
191 if (n_lines
>= n_alloc_lines
)
193 n_alloc_lines
+= RESERVOIR_LINES_INCREMENT
;
194 rsrv
= xnrealloc (rsrv
, n_alloc_lines
, sizeof (struct linebuffer
));
195 memset (&rsrv
[n_lines
], 0,
196 RESERVOIR_LINES_INCREMENT
* sizeof (struct linebuffer
));
200 /* last line wasn't null - so there may be more lines to read. */
203 struct linebuffer dummy
;
204 initbuffer (&dummy
); /* space for lines not put in reservoir. */
206 /* Choose the fate of the next line, with decreasing probability (as
207 n_lines increases in size).
209 If the line will be used, store it directly in the reservoir.
210 Otherwise, store it in dummy space.
212 With 'struct linebuffer', storing into existing buffer will reduce
213 re-allocations (will only re-allocate if the new line is longer than
214 the currently allocated space). */
217 randint j
= randint_choose (s
, n_lines
+ 1); /* 0 .. n_lines. */
218 line
= (j
< k
) ? (&rsrv
[j
]) : (&dummy
);
220 while (readlinebuffer_delim (line
, in
, eolbyte
) != nullptr && n_lines
++);
223 error (EXIT_FAILURE
, EOVERFLOW
, _("too many input lines"));
228 /* no more input lines, or an input error. */
230 error (EXIT_FAILURE
, errno
, _("read error"));
233 return MIN (k
, n_lines
);
237 write_permuted_output_reservoir (size_t n_lines
, struct linebuffer
*lines
,
238 size_t const *permutation
)
240 for (size_t i
= 0; i
< n_lines
; i
++)
242 const struct linebuffer
*p
= &lines
[permutation
[i
]];
243 if (fwrite (p
->buffer
, sizeof (char), p
->length
, stdout
) != p
->length
)
250 /* Read data from file IN. Input lines are delimited by EOLBYTE;
251 silently append a trailing EOLBYTE if the file ends in some other
252 byte. Store a pointer to the resulting array of lines into *PLINE.
253 Return the number of lines read. Report an error and exit on
257 read_input (FILE *in
, char eolbyte
, char ***pline
)
266 /* TODO: We should limit the amount of data read here,
267 to less than RESERVOIR_MIN_INPUT. I.e., adjust fread_file() to support
268 taking a byte limit. We'd then need to ensure we handle a line spanning
269 this boundary. With that in place we could set use_reservoir_sampling
270 when used==RESERVOIR_MIN_INPUT, and have read_input_reservoir_sampling()
271 call a wrapper function to populate a linebuffer from the internal pline
272 or if none left, stdin. Doing that would give better performance by
273 avoiding the reservoir CPU overhead when reading < RESERVOIR_MIN_INPUT
274 from a pipe, and allow us to dispense with the input_size() function. */
275 if (!(buf
= fread_file (in
, 0, &used
)))
276 error (EXIT_FAILURE
, errno
, _("read error"));
278 if (used
&& buf
[used
- 1] != eolbyte
)
279 buf
[used
++] = eolbyte
;
284 for (p
= buf
; p
< lim
; p
= next_line (p
, eolbyte
))
287 *pline
= line
= xnmalloc (n_lines
+ 1, sizeof *line
);
290 for (size_t i
= 1; i
<= n_lines
; i
++)
291 line
[i
] = p
= next_line (p
, eolbyte
);
296 /* Output N_LINES lines to stdout from LINE array,
297 chosen by the indices in PERMUTATION.
298 PERMUTATION and LINE must have at least N_LINES elements.
299 Strings in LINE must include the line-terminator character. */
301 write_permuted_lines (size_t n_lines
, char *const *line
,
302 size_t const *permutation
)
304 for (size_t i
= 0; i
< n_lines
; i
++)
306 char *const *p
= line
+ permutation
[i
];
307 size_t len
= p
[1] - p
[0];
308 if (fwrite (p
[0], sizeof *p
[0], len
, stdout
) != len
)
315 /* Output N_LINES of numbers to stdout, from PERMUTATION array.
316 PERMUTATION must have at least N_LINES elements. */
318 write_permuted_numbers (size_t n_lines
, size_t lo_input
,
319 size_t const *permutation
, char eolbyte
)
321 for (size_t i
= 0; i
< n_lines
; i
++)
323 unsigned long int n
= lo_input
+ permutation
[i
];
324 if (printf ("%lu%c", n
, eolbyte
) < 0)
331 /* Output COUNT numbers to stdout, chosen randomly from range
332 LO_INPUT through HI_INPUT. */
334 write_random_numbers (struct randint_source
*s
, size_t count
,
335 size_t lo_input
, size_t hi_input
, char eolbyte
)
337 const randint range
= hi_input
- lo_input
+ 1;
339 for (size_t i
= 0; i
< count
; i
++)
341 unsigned long int j
= lo_input
+ randint_choose (s
, range
);
342 if (printf ("%lu%c", j
, eolbyte
) < 0)
349 /* Output COUNT lines to stdout from LINES array.
350 LINES must have at least N_LINES elements in it.
351 Strings in LINES_ must include the line-terminator character. */
353 write_random_lines (struct randint_source
*s
, size_t count
,
354 char *const *lines
, size_t n_lines
)
356 for (size_t i
= 0; i
< count
; i
++)
358 const randint j
= randint_choose (s
, n_lines
);
359 char *const *p
= lines
+ j
;
360 size_t len
= p
[1] - p
[0];
361 if (fwrite (p
[0], sizeof *p
[0], len
, stdout
) != len
)
369 main (int argc
, char **argv
)
372 bool input_range
= false;
373 size_t lo_input
= SIZE_MAX
;
375 size_t head_lines
= SIZE_MAX
;
376 char const *outfile
= nullptr;
377 char *random_source
= nullptr;
379 char **input_lines
= nullptr;
380 bool use_reservoir_sampling
= false;
387 char **line
= nullptr;
388 struct linebuffer
*reservoir
= nullptr;
389 struct randint_source
*randint_source
;
390 size_t *permutation
= nullptr;
393 initialize_main (&argc
, &argv
);
394 set_program_name (argv
[0]);
395 setlocale (LC_ALL
, "");
396 bindtextdomain (PACKAGE
, LOCALEDIR
);
397 textdomain (PACKAGE
);
399 atexit (close_stdout
);
401 while ((optc
= getopt_long (argc
, argv
, "ei:n:o:rz", long_opts
, nullptr))
412 error (EXIT_FAILURE
, 0, _("multiple -i options specified"));
417 strtol_error err
= xstrtoumax (optarg
, &lo_end
, 10, &u
, nullptr);
418 if (err
== LONGINT_OK
)
422 err
= LONGINT_OVERFLOW
;
423 else if (*lo_end
!= '-')
424 err
= LONGINT_INVALID
;
427 err
= xstrtoumax (lo_end
+ 1, nullptr, 10, &u
, "");
428 if (err
== LONGINT_OK
)
432 err
= LONGINT_OVERFLOW
;
437 n_lines
= hi_input
- lo_input
+ 1;
439 if (err
!= LONGINT_OK
|| (lo_input
<= hi_input
) == (n_lines
== 0))
440 error (EXIT_FAILURE
, err
== LONGINT_OVERFLOW
? EOVERFLOW
: 0,
441 "%s: %s", _("invalid input range"), quote (optarg
));
448 strtol_error e
= xstrtoumax (optarg
, nullptr, 10, &argval
, "");
451 head_lines
= MIN (head_lines
, argval
);
452 else if (e
!= LONGINT_OVERFLOW
)
453 error (EXIT_FAILURE
, 0, _("invalid line count: %s"),
459 if (outfile
&& !STREQ (outfile
, optarg
))
460 error (EXIT_FAILURE
, 0, _("multiple output files specified"));
464 case RANDOM_SOURCE_OPTION
:
465 if (random_source
&& !STREQ (random_source
, optarg
))
466 error (EXIT_FAILURE
, 0, _("multiple random sources specified"));
467 random_source
= optarg
;
478 case_GETOPT_HELP_CHAR
;
479 case_GETOPT_VERSION_CHAR (PROGRAM_NAME
, AUTHORS
);
481 usage (EXIT_FAILURE
);
484 n_operands
= argc
- optind
;
485 operand
= argv
+ optind
;
487 /* Check invalid usage. */
488 if (echo
&& input_range
)
490 error (0, 0, _("cannot combine -e and -i options"));
491 usage (EXIT_FAILURE
);
493 if (input_range
? 0 < n_operands
: !echo
&& 1 < n_operands
)
495 error (0, 0, _("extra operand %s"), quote (operand
[!input_range
]));
496 usage (EXIT_FAILURE
);
507 input_from_argv (operand
, n_operands
, eolbyte
);
508 n_lines
= n_operands
;
511 else if (input_range
)
513 IF_LINT (n_lines
= hi_input
- lo_input
+ 1); /* Avoid GCC 10 warning. */
518 /* If an input file is specified, re-open it as stdin. */
520 && ! (STREQ (operand
[0], "-")
521 || freopen (operand
[0], "r", stdin
)))
522 error (EXIT_FAILURE
, errno
, "%s", quotef (operand
[0]));
524 fadvise (stdin
, FADVISE_SEQUENTIAL
);
526 if (repeat
|| head_lines
== SIZE_MAX
527 || input_size () <= RESERVOIR_MIN_INPUT
)
529 n_lines
= read_input (stdin
, eolbyte
, &input_lines
);
534 use_reservoir_sampling
= true;
535 n_lines
= SIZE_MAX
; /* unknown number of input lines, for now. */
539 /* The adjusted head line count; can be less than HEAD_LINES if the
540 input is small and if not repeating. */
541 size_t ahead_lines
= repeat
|| head_lines
< n_lines
? head_lines
: n_lines
;
543 randint_source
= randint_all_new (random_source
,
544 (use_reservoir_sampling
|| repeat
546 : randperm_bound (ahead_lines
, n_lines
)));
547 if (! randint_source
)
548 error (EXIT_FAILURE
, errno
, "%s",
549 quotef (random_source
? random_source
: "getrandom"));
551 if (use_reservoir_sampling
)
553 /* Instead of reading the entire file into 'line',
554 use reservoir-sampling to store just AHEAD_LINES random lines. */
555 n_lines
= read_input_reservoir_sampling (stdin
, eolbyte
, ahead_lines
,
556 randint_source
, &reservoir
);
557 ahead_lines
= n_lines
;
560 /* Close stdin now, rather than earlier, so that randint_all_new
561 doesn't have to worry about opening something other than
563 if (! (head_lines
== 0 || echo
|| input_range
|| fclose (stdin
) == 0))
564 error (EXIT_FAILURE
, errno
, _("read error"));
567 permutation
= randperm_new (randint_source
, ahead_lines
, n_lines
);
569 if (outfile
&& ! freopen (outfile
, "w", stdout
))
570 error (EXIT_FAILURE
, errno
, "%s", quotef (outfile
));
572 /* Generate output according to requested method */
580 error (EXIT_FAILURE
, 0, _("no lines to repeat"));
582 i
= write_random_numbers (randint_source
, ahead_lines
,
583 lo_input
, hi_input
, eolbyte
);
585 i
= write_random_lines (randint_source
, ahead_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 (ahead_lines
, lo_input
,
594 permutation
, eolbyte
);
596 i
= write_permuted_lines (ahead_lines
, line
, permutation
);
602 main_exit (EXIT_SUCCESS
);