1 /* yes - output a string repeatedly until killed
2 Copyright (C) 1991-2022 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
17 /* David MacKenzie <djm@gnu.ai.mit.edu> */
21 #include <sys/types.h>
26 #include "full-write.h"
27 #include "long-options.h"
29 /* The official name of this program (e.g., no 'g' prefix). */
30 #define PROGRAM_NAME "yes"
32 #define AUTHORS proper_name ("David MacKenzie")
37 if (status
!= EXIT_SUCCESS
)
42 Usage: %s [STRING]...\n\
45 program_name
, program_name
);
48 Repeatedly output a line with all specified STRING(s), or 'y'.\n\
51 fputs (HELP_OPTION_DESCRIPTION
, stdout
);
52 fputs (VERSION_OPTION_DESCRIPTION
, stdout
);
53 emit_ancillary_info (PROGRAM_NAME
);
59 main (int argc
, char **argv
)
61 initialize_main (&argc
, &argv
);
62 set_program_name (argv
[0]);
63 setlocale (LC_ALL
, "");
64 bindtextdomain (PACKAGE
, LOCALEDIR
);
67 atexit (close_stdout
);
69 parse_gnu_standard_options_only (argc
, argv
, PROGRAM_NAME
, PACKAGE_NAME
,
70 Version
, true, usage
, AUTHORS
,
73 char **operands
= argv
+ optind
;
74 char **operand_lim
= argv
+ argc
;
76 *operand_lim
++ = bad_cast ("y");
78 /* Buffer data locally once, rather than having the
79 large overhead of stdio buffering each item. */
81 bool reuse_operand_strings
= true;
82 char **operandp
= operands
;
85 size_t operand_len
= strlen (*operandp
);
86 bufalloc
+= operand_len
+ 1;
87 if (operandp
+ 1 < operand_lim
88 && *operandp
+ operand_len
+ 1 != operandp
[1])
89 reuse_operand_strings
= false;
91 while (++operandp
< operand_lim
);
93 /* Improve performance by using a buffer size greater than BUFSIZ / 2. */
94 if (bufalloc
<= BUFSIZ
/ 2)
97 reuse_operand_strings
= false;
100 /* Fill the buffer with one copy of the output. If possible, reuse
101 the operands strings; this wins when the buffer would be large. */
102 char *buf
= reuse_operand_strings
? *operands
: xmalloc (bufalloc
);
107 size_t operand_len
= strlen (*operandp
);
108 if (! reuse_operand_strings
)
109 memcpy (buf
+ bufused
, *operandp
, operand_len
);
110 bufused
+= operand_len
;
111 buf
[bufused
++] = ' ';
113 while (++operandp
< operand_lim
);
114 buf
[bufused
- 1] = '\n';
116 /* If a larger buffer was allocated, fill it by repeating the buffer
118 size_t copysize
= bufused
;
119 for (size_t copies
= bufalloc
/ copysize
; --copies
; )
121 memcpy (buf
+ bufused
, buf
, copysize
);
125 /* Repeatedly output the buffer until there is a write error; then fail. */
126 while (full_write (STDOUT_FILENO
, buf
, bufused
) == bufused
)
128 error (0, errno
, _("standard output"));