]> git.ipfire.org Git - thirdparty/util-linux.git/blame - text-utils/rev.c
misc: cosmetics, remove argument from usage(FILE*)
[thirdparty/util-linux.git] / text-utils / rev.c
CommitLineData
6dbe3af9
KZ
1/*-
2 * Copyright (c) 1987, 1992 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * Modified for Linux by Charles Hannum (mycroft@gnu.ai.mit.edu)
34 * and Brian Koehmstedt (bpk@gnu.ai.mit.edu)
35 *
36 * Wed Sep 14 22:26:00 1994: Patch from bjdouma <bjdouma@xs4all.nl> to handle
37 * last line that has no newline correctly.
2b6fc908 38 * 3-Jun-1998: Patched by Nicolai Langfeldt to work better on Linux:
06eee0d8 39 * Handle any-length-lines. Code copied from util-linux' setpwnam.c
b50945d4 40 * 1999-02-22 Arkadiusz Miƛkiewicz <misiek@pld.ORG.PL>
06eee0d8 41 * added Native Language Support
eb63b9b8 42 * 1999-09-19 Bruno Haible <haible@clisp.cons.org>
06eee0d8
DB
43 * modified to work correctly in multi-byte locales
44 * July 2010 - Davidlohr Bueso <dave@gnu.org>
45 * Fixed memory leaks (including Linux signal handling)
46 * Added some memory allocation error handling
47 * Lowered the default buffer size to 256, instead of 512 bytes
48 * Changed tab indentation to 8 chars for better reading the code
6dbe3af9
KZ
49 */
50
22853e4a 51#include <stdarg.h>
6dbe3af9
KZ
52#include <sys/types.h>
53#include <errno.h>
54#include <stdio.h>
55#include <stdlib.h>
56#include <string.h>
6dbe3af9 57#include <unistd.h>
06eee0d8 58#include <signal.h>
ca96c6ac 59#include <getopt.h>
6dbe3af9 60
fffe3905 61#include "nls.h"
3924d0f1 62#include "xalloc.h"
eb63b9b8 63#include "widechar.h"
eb76ca98 64#include "c.h"
b87cbe84 65#include "closestream.h"
eb63b9b8 66
2ba641e5 67static wchar_t *buf;
6dbe3af9 68
66b0b03e 69static void sig_handler(int signo __attribute__ ((__unused__)))
6dbe3af9 70{
50644ff4 71 _exit(EXIT_SUCCESS);
6dbe3af9
KZ
72}
73
86be6a32 74static void __attribute__((__noreturn__)) usage(void)
6dbe3af9 75{
86be6a32 76 FILE *out = stdout;
ca96c6ac
SK
77 fprintf(out, _("Usage: %s [options] [file ...]\n"),
78 program_invocation_short_name);
451dbcfa
BS
79
80 fputs(USAGE_SEPARATOR, out);
81 fputs(_("Reverse lines characterwise.\n"), out);
82
db433bf7
SK
83 fputs(USAGE_OPTIONS, out);
84 fputs(USAGE_HELP, out);
85 fputs(USAGE_VERSION, out);
a587cc55 86 fprintf(out, USAGE_MAN_TAIL("rev(1)"));
06eee0d8 87
86be6a32 88 exit(EXIT_SUCCESS);
6dbe3af9 89}
06eee0d8 90
4b4eb340
SK
91static void reverse_str(wchar_t *str, size_t n)
92{
93 size_t i;
94
95 for (i = 0; i < n / 2; ++i) {
96 wchar_t tmp = str[i];
97 str[i] = str[n - 1 - i];
98 str[n - 1 - i] = tmp;
99 }
100}
101
06eee0d8
DB
102int main(int argc, char *argv[])
103{
104 char *filename = "stdin";
06eee0d8
DB
105 size_t len, bufsiz = BUFSIZ;
106 FILE *fp = stdin;
107 int ch, rval = EXIT_SUCCESS;
108
3acc206d 109 static const struct option longopts[] = {
87918040
SK
110 { "version", no_argument, NULL, 'V' },
111 { "help", no_argument, NULL, 'h' },
112 { NULL, 0, NULL, 0 }
3acc206d
SK
113 };
114
06eee0d8
DB
115 setlocale(LC_ALL, "");
116 bindtextdomain(PACKAGE, LOCALEDIR);
117 textdomain(PACKAGE);
b87cbe84 118 atexit(close_stdout);
06eee0d8
DB
119
120 signal(SIGINT, sig_handler);
121 signal(SIGTERM, sig_handler);
122
ca96c6ac 123 while ((ch = getopt_long(argc, argv, "Vh", longopts, NULL)) != -1)
06eee0d8 124 switch(ch) {
ca96c6ac 125 case 'V':
f6277500 126 printf(UTIL_LINUX_VERSION);
ca96c6ac 127 exit(EXIT_SUCCESS);
06eee0d8 128 case 'h':
86be6a32 129 usage();
06eee0d8 130 default:
677ec86c 131 errtryhelp(EXIT_FAILURE);
06eee0d8
DB
132 }
133
134 argc -= optind;
135 argv += optind;
136
2226064c
SK
137 buf = xmalloc(bufsiz * sizeof(wchar_t));
138
06eee0d8
DB
139 do {
140 if (*argv) {
141 if ((fp = fopen(*argv, "r")) == NULL) {
289dcc90 142 warn(_("cannot open %s"), *argv );
06eee0d8
DB
143 rval = EXIT_FAILURE;
144 ++argv;
145 continue;
146 }
147 filename = *argv++;
148 }
149
06eee0d8
DB
150 while (fgetws(buf, bufsiz, fp)) {
151 len = wcslen(buf);
152
b56b1368
TS
153 if (len == 0)
154 continue;
155
06eee0d8
DB
156 /* This is my hack from setpwnam.c -janl */
157 while (buf[len-1] != '\n' && !feof(fp)) {
06eee0d8 158 /* Extend input buffer if it failed getting the whole line */
06eee0d8
DB
159 /* So now we double the buffer size */
160 bufsiz *= 2;
161
099bce7f 162 buf = xrealloc(buf, bufsiz * sizeof(wchar_t));
06eee0d8
DB
163
164 /* And fill the rest of the buffer */
165 if (!fgetws(&buf[len], bufsiz/2, fp))
166 break;
167
168 len = wcslen(buf);
169 }
d267fdb8
SK
170 if (buf[len - 1] == '\n')
171 buf[len--] = '\0';
172 reverse_str(buf, len);
4b4eb340 173 fputws(buf, stdout);
06eee0d8 174 }
06eee0d8
DB
175 if (ferror(fp)) {
176 warn("%s", filename);
177 rval = EXIT_FAILURE;
178 }
67c47dff 179 fclose(fp);
06eee0d8
DB
180 } while(*argv);
181
182 free(buf);
183 return rval;
184}
185