.
[coreutils.git] / src / tac.c
blob54c10d0b4db073dad7b697c2ab10c0e0ee1db3a8
1 /* tac - concatenate and print files in reverse
2 Copyright (C) 1988, 1989, 1990, 1991, 1995 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 2, or (at your option)
7 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, write to the Free Software
16 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
18 /* Written by Jay Lepreau (lepreau@cs.utah.edu).
19 GNU enhancements by David MacKenzie (djm@gnu.ai.mit.edu). */
21 /* Copy each FILE, or the standard input if none are given or when a
22 FILE name of "-" is encountered, to the standard output with the
23 order of the records reversed. The records are separated by
24 instances of a string, or a newline if none is given. By default, the
25 separator string is attached to the end of the record that it
26 follows in the file.
28 Options:
29 -b, --before The separator is attached to the beginning
30 of the record that it precedes in the file.
31 -r, --regex The separator is a regular expression.
32 -s, --separator=separator Use SEPARATOR as the record separator.
34 To reverse a file byte by byte, use (in bash, ksh, or sh):
35 tac -r -s '.\|
36 ' file */
38 #include <config.h>
40 #include <stdio.h>
41 #include <getopt.h>
42 #include <sys/types.h>
43 #include <signal.h>
44 #if WITH_REGEX
45 # include <regex.h>
46 #else
47 # include <rx.h>
48 #endif
49 #include "system.h"
50 #include "version.h"
51 #include "error.h"
53 #ifndef STDC_HEADERS
54 char *malloc ();
55 char *realloc ();
56 #endif
58 #ifndef DEFAULT_TMPDIR
59 #define DEFAULT_TMPDIR "/tmp"
60 #endif
62 /* The number of bytes per atomic read. */
63 #define INITIAL_READSIZE 8192
65 /* The number of bytes per atomic write. */
66 #define WRITESIZE 8192
68 char *mktemp ();
70 int full_write ();
71 int safe_read ();
73 /* The name this program was run with. */
74 char *program_name;
76 /* The string that separates the records of the file. */
77 static char *separator;
79 /* If nonzero, print `separator' along with the record preceding it
80 in the file; otherwise with the record following it. */
81 static int separator_ends_record;
83 /* 0 if `separator' is to be matched as a regular expression;
84 otherwise, the length of `separator', used as a sentinel to
85 stop the search. */
86 static int sentinel_length;
88 /* The length of a match with `separator'. If `sentinel_length' is 0,
89 `match_length' is computed every time a match succeeds;
90 otherwise, it is simply the length of `separator'. */
91 static int match_length;
93 /* The input buffer. */
94 static char *buffer;
96 /* The number of bytes to read at once into `buffer'. */
97 static unsigned read_size;
99 /* The size of `buffer'. This is read_size * 2 + sentinel_length + 2.
100 The extra 2 bytes allow `past_end' to have a value beyond the
101 end of `buffer' and `match_start' to run off the front of `buffer'. */
102 static unsigned buffer_size;
104 /* The compiled regular expression representing `separator'. */
105 static struct re_pattern_buffer compiled_separator;
107 /* The name of a temporary file containing a copy of pipe input. */
108 static char *tempfile;
110 /* If nonzero, display usage information and exit. */
111 static int show_help;
113 /* If nonzero, print the version on standard output then exit. */
114 static int show_version;
116 static struct option const longopts[] =
118 {"before", no_argument, &separator_ends_record, 0},
119 {"regex", no_argument, &sentinel_length, 0},
120 {"separator", required_argument, NULL, 's'},
121 {"help", no_argument, &show_help, 1},
122 {"version", no_argument, &show_version, 1},
123 {NULL, 0, NULL, 0}
126 static void
127 usage (int status)
129 if (status != 0)
130 fprintf (stderr, _("Try `%s --help' for more information.\n"),
131 program_name);
132 else
134 printf (_("\
135 Usage: %s [OPTION]... [FILE]...\n\
137 program_name);
138 printf (_("\
139 Write each FILE to standard output, last line first.\n\
140 With no FILE, or when FILE is -, read standard input.\n\
142 -b, --before attach the separator before instead of after\n\
143 -r, --regex interpret the separator as a regular expression\n\
144 -s, --separator=STRING use STRING as the separator instead of newline\n\
145 --help display this help and exit\n\
146 --version output version information and exit\n\
147 "));
149 exit (status);
152 static void
153 cleanup (void)
155 unlink (tempfile);
158 static void
159 cleanup_fatal (void)
161 cleanup ();
162 exit (1);
165 static RETSIGTYPE
166 sighandler (int sig)
168 #ifdef SA_INTERRUPT
169 struct sigaction sigact;
171 sigact.sa_handler = SIG_DFL;
172 sigemptyset (&sigact.sa_mask);
173 sigact.sa_flags = 0;
174 sigaction (sig, &sigact, NULL);
175 #else /* !SA_INTERRUPT */
176 signal (sig, SIG_DFL);
177 #endif /* SA_INTERRUPT */
178 cleanup ();
179 kill (getpid (), sig);
182 /* Allocate N bytes of memory dynamically, with error checking. */
184 static char *
185 xmalloc (unsigned int n)
187 char *p;
189 p = malloc (n);
190 if (p == 0)
192 error (0, 0, _("virtual memory exhausted"));
193 cleanup_fatal ();
195 return p;
198 /* Change the size of memory area P to N bytes, with error checking. */
200 static char *
201 xrealloc (char *p, unsigned int n)
203 p = realloc (p, n);
204 if (p == 0)
206 error (0, 0, _("virtual memory exhausted"));
207 cleanup_fatal ();
209 return p;
212 static void
213 xwrite (int desc, const char *buffer, int size)
215 if (full_write (desc, buffer, size) < 0)
217 error (0, errno, _("write error"));
218 cleanup_fatal ();
222 /* Print the characters from START to PAST_END - 1.
223 If START is NULL, just flush the buffer. */
225 static void
226 output (const char *start, const char *past_end)
228 static char buffer[WRITESIZE];
229 static int bytes_in_buffer = 0;
230 int bytes_to_add = past_end - start;
231 int bytes_available = WRITESIZE - bytes_in_buffer;
233 if (start == 0)
235 xwrite (STDOUT_FILENO, buffer, bytes_in_buffer);
236 bytes_in_buffer = 0;
237 return;
240 /* Write out as many full buffers as possible. */
241 while (bytes_to_add >= bytes_available)
243 memcpy (buffer + bytes_in_buffer, start, bytes_available);
244 bytes_to_add -= bytes_available;
245 start += bytes_available;
246 xwrite (STDOUT_FILENO, buffer, WRITESIZE);
247 bytes_in_buffer = 0;
248 bytes_available = WRITESIZE;
251 memcpy (buffer + bytes_in_buffer, start, bytes_to_add);
252 bytes_in_buffer += bytes_to_add;
255 /* Print in reverse the file open on descriptor FD for reading FILE.
256 Return 0 if ok, 1 if an error occurs. */
258 static int
259 tac (int fd, const char *file)
261 /* Pointer to the location in `buffer' where the search for
262 the next separator will begin. */
263 char *match_start;
264 /* Pointer to one past the rightmost character in `buffer' that
265 has not been printed yet. */
266 char *past_end;
267 unsigned saved_record_size; /* Length of the record growing in `buffer'. */
268 off_t file_pos; /* Offset in the file of the next read. */
269 /* Nonzero if `output' has not been called yet for any file.
270 Only used when the separator is attached to the preceding record. */
271 int first_time = 1;
272 char first_char = *separator; /* Speed optimization, non-regexp. */
273 char *separator1 = separator + 1; /* Speed optimization, non-regexp. */
274 int match_length1 = match_length - 1; /* Speed optimization, non-regexp. */
275 struct re_registers regs;
277 /* Find the size of the input file. */
278 file_pos = lseek (fd, (off_t) 0, SEEK_END);
279 if (file_pos < 1)
280 return 0; /* It's an empty file. */
282 /* Arrange for the first read to lop off enough to leave the rest of the
283 file a multiple of `read_size'. Since `read_size' can change, this may
284 not always hold during the program run, but since it usually will, leave
285 it here for i/o efficiency (page/sector boundaries and all that).
286 Note: the efficiency gain has not been verified. */
287 saved_record_size = file_pos % read_size;
288 if (saved_record_size == 0)
289 saved_record_size = read_size;
290 file_pos -= saved_record_size;
291 /* `file_pos' now points to the start of the last (probably partial) block
292 in the input file. */
294 lseek (fd, file_pos, SEEK_SET);
295 if (safe_read (fd, buffer, saved_record_size) != saved_record_size)
297 error (0, errno, "%s", file);
298 return 1;
301 match_start = past_end = buffer + saved_record_size;
302 /* For non-regexp search, move past impossible positions for a match. */
303 if (sentinel_length)
304 match_start -= match_length1;
306 for (;;)
308 /* Search backward from `match_start' - 1 to `buffer' for a match
309 with `separator'; for speed, use strncmp if `separator' contains no
310 metacharacters.
311 If the match succeeds, set `match_start' to point to the start of
312 the match and `match_length' to the length of the match.
313 Otherwise, make `match_start' < `buffer'. */
314 if (sentinel_length == 0)
316 int i = match_start - buffer;
317 int ret;
319 ret = re_search (&compiled_separator, buffer, i, i - 1, -i, &regs);
320 if (ret == -1)
321 match_start = buffer - 1;
322 else if (ret == -2)
324 error (0, 0, _("error in regular expression search"));
325 cleanup_fatal ();
327 else
329 match_start = buffer + regs.start[0];
330 match_length = regs.end[0] - regs.start[0];
333 else
335 /* `match_length' is constant for non-regexp boundaries. */
336 while (*--match_start != first_char
337 || (match_length1 && strncmp (match_start + 1, separator1,
338 match_length1)))
339 /* Do nothing. */ ;
342 /* Check whether we backed off the front of `buffer' without finding
343 a match for `separator'. */
344 if (match_start < buffer)
346 if (file_pos == 0)
348 /* Hit the beginning of the file; print the remaining record. */
349 output (buffer, past_end);
350 return 0;
353 saved_record_size = past_end - buffer;
354 if (saved_record_size > read_size)
356 /* `buffer_size' is about twice `read_size', so since
357 we want to read in another `read_size' bytes before
358 the data already in `buffer', we need to increase
359 `buffer_size'. */
360 char *newbuffer;
361 int offset = sentinel_length ? sentinel_length : 1;
363 read_size *= 2;
364 buffer_size = read_size * 2 + sentinel_length + 2;
365 newbuffer = xrealloc (buffer - offset, buffer_size) + offset;
366 /* Adjust the pointers for the new buffer location. */
367 match_start += newbuffer - buffer;
368 past_end += newbuffer - buffer;
369 buffer = newbuffer;
372 /* Back up to the start of the next bufferfull of the file. */
373 if (file_pos >= read_size)
374 file_pos -= read_size;
375 else
377 read_size = file_pos;
378 file_pos = 0;
380 lseek (fd, file_pos, SEEK_SET);
382 /* Shift the pending record data right to make room for the new.
383 The source and destination regions probably overlap. */
384 memmove (buffer + read_size, buffer, saved_record_size);
385 past_end = buffer + read_size + saved_record_size;
386 /* For non-regexp searches, avoid unneccessary scanning. */
387 if (sentinel_length)
388 match_start = buffer + read_size;
389 else
390 match_start = past_end;
392 if (safe_read (fd, buffer, read_size) != read_size)
394 error (0, errno, "%s", file);
395 return 1;
398 else
400 /* Found a match of `separator'. */
401 if (separator_ends_record)
403 char *match_end = match_start + match_length;
405 /* If this match of `separator' isn't at the end of the
406 file, print the record. */
407 if (first_time == 0 || match_end != past_end)
408 output (match_end, past_end);
409 past_end = match_end;
410 first_time = 0;
412 else
414 output (match_start, past_end);
415 past_end = match_start;
417 match_start -= match_length - 1;
422 /* Print FILE in reverse.
423 Return 0 if ok, 1 if an error occurs. */
425 static int
426 tac_file (const char *file)
428 int fd, errors;
430 fd = open (file, O_RDONLY);
431 if (fd == -1)
433 error (0, errno, "%s", file);
434 return 1;
436 errors = tac (fd, file);
437 if (close (fd) < 0)
439 error (0, errno, "%s", file);
440 return 1;
442 return errors;
445 /* Make a copy of the standard input in `tempfile'. */
447 static void
448 save_stdin (void)
450 static char *template = NULL;
451 static char *tempdir;
452 int fd;
453 int bytes_read;
455 if (template == NULL)
457 tempdir = getenv ("TMPDIR");
458 if (tempdir == NULL)
459 tempdir = DEFAULT_TMPDIR;
460 template = xmalloc (strlen (tempdir) + 11);
462 sprintf (template, "%s/tacXXXXXX", tempdir);
463 tempfile = mktemp (template);
465 fd = creat (tempfile, 0600);
466 if (fd == -1)
468 error (0, errno, "%s", tempfile);
469 cleanup_fatal ();
471 while ((bytes_read = safe_read (0, buffer, read_size)) > 0)
472 if (full_write (fd, buffer, bytes_read) < 0)
474 error (0, errno, "%s", tempfile);
475 cleanup_fatal ();
477 if (close (fd) < 0)
479 error (0, errno, "%s", tempfile);
480 cleanup_fatal ();
482 if (bytes_read == -1)
484 error (0, errno, _("read error"));
485 cleanup_fatal ();
489 /* Print the standard input in reverse, saving it to temporary
490 file `tempfile' first if it is a pipe.
491 Return 0 if ok, 1 if an error occurs. */
493 static int
494 tac_stdin (void)
496 /* Previous values of signal handlers. */
497 RETSIGTYPE (*sigint) (), (*sighup) (), (*sigpipe) (), (*sigterm) ();
498 int errors;
499 struct stat stats;
500 #ifdef SA_INTERRUPT
501 struct sigaction oldact, newact;
502 #endif /* SA_INTERRUPT */
504 /* No tempfile is needed for "tac < file".
505 Use fstat instead of checking for errno == ESPIPE because
506 lseek doesn't work on some special files but doesn't return an
507 error, either. */
508 if (fstat (0, &stats))
510 error (0, errno, _("standard input"));
511 return 1;
513 if (S_ISREG (stats.st_mode))
514 return tac (0, _("standard input"));
516 #ifdef SA_INTERRUPT
517 newact.sa_handler = sighandler;
518 sigemptyset (&newact.sa_mask);
519 newact.sa_flags = 0;
521 sigaction (SIGINT, NULL, &oldact);
522 sigint = oldact.sa_handler;
523 if (sigint != SIG_IGN)
524 sigaction (SIGINT, &newact, NULL);
526 sigaction (SIGHUP, NULL, &oldact);
527 sighup = oldact.sa_handler;
528 if (sighup != SIG_IGN)
529 sigaction (SIGHUP, &newact, NULL);
531 sigaction (SIGPIPE, NULL, &oldact);
532 sigpipe = oldact.sa_handler;
533 if (sigpipe != SIG_IGN)
534 sigaction (SIGPIPE, &newact, NULL);
536 sigaction (SIGTERM, NULL, &oldact);
537 sigterm = oldact.sa_handler;
538 if (sigterm != SIG_IGN)
539 sigaction (SIGTERM, &newact, NULL);
540 #else /* !SA_INTERRUPT */
541 sigint = signal (SIGINT, SIG_IGN);
542 if (sigint != SIG_IGN)
543 signal (SIGINT, sighandler);
545 sighup = signal (SIGHUP, SIG_IGN);
546 if (sighup != SIG_IGN)
547 signal (SIGHUP, sighandler);
549 sigpipe = signal (SIGPIPE, SIG_IGN);
550 if (sigpipe != SIG_IGN)
551 signal (SIGPIPE, sighandler);
553 sigterm = signal (SIGTERM, SIG_IGN);
554 if (sigterm != SIG_IGN)
555 signal (SIGTERM, sighandler);
556 #endif /* SA_INTERRUPT */
558 save_stdin ();
560 errors = tac_file (tempfile);
562 unlink (tempfile);
564 #ifdef SA_INTERRUPT
565 newact.sa_handler = sigint;
566 sigaction (SIGINT, &newact, NULL);
567 newact.sa_handler = sighup;
568 sigaction (SIGHUP, &newact, NULL);
569 newact.sa_handler = sigterm;
570 sigaction (SIGTERM, &newact, NULL);
571 newact.sa_handler = sigpipe;
572 sigaction (SIGPIPE, &newact, NULL);
573 #else /* !SA_INTERRUPT */
574 signal (SIGINT, sigint);
575 signal (SIGHUP, sighup);
576 signal (SIGTERM, sigterm);
577 signal (SIGPIPE, sigpipe);
578 #endif /* SA_INTERRUPT */
580 return errors;
583 void
584 main (int argc, char **argv)
586 const char *error_message; /* Return value from re_compile_pattern. */
587 int optc, errors;
588 int have_read_stdin = 0;
590 program_name = argv[0];
591 setlocale (LC_ALL, "");
592 bindtextdomain (PACKAGE, LOCALEDIR);
593 textdomain (PACKAGE);
595 errors = 0;
596 separator = "\n";
597 sentinel_length = 1;
598 separator_ends_record = 1;
600 while ((optc = getopt_long (argc, argv, "brs:", longopts, (int *) 0))
601 != EOF)
603 switch (optc)
605 case 0:
606 break;
607 case 'b':
608 separator_ends_record = 0;
609 break;
610 case 'r':
611 sentinel_length = 0;
612 break;
613 case 's':
614 separator = optarg;
615 if (*separator == 0)
616 error (1, 0, _("separator cannot be empty"));
617 break;
618 default:
619 usage (1);
623 if (show_version)
625 printf ("tac - %s\n", version_string);
626 exit (0);
629 if (show_help)
630 usage (0);
632 if (sentinel_length == 0)
634 compiled_separator.allocated = 100;
635 compiled_separator.buffer = (unsigned char *)
636 xmalloc (compiled_separator.allocated);
637 compiled_separator.fastmap = xmalloc (256);
638 compiled_separator.translate = 0;
639 error_message = re_compile_pattern (separator, strlen (separator),
640 &compiled_separator);
641 if (error_message)
642 error (1, 0, "%s", error_message);
644 else
645 match_length = sentinel_length = strlen (separator);
647 read_size = INITIAL_READSIZE;
648 /* A precaution that will probably never be needed. */
649 while (sentinel_length * 2 >= read_size)
650 read_size *= 2;
651 buffer_size = read_size * 2 + sentinel_length + 2;
652 buffer = xmalloc (buffer_size);
653 if (sentinel_length)
655 strcpy (buffer, separator);
656 buffer += sentinel_length;
658 else
659 ++buffer;
661 if (optind == argc)
663 have_read_stdin = 1;
664 errors = tac_stdin ();
666 else
667 for (; optind < argc; ++optind)
669 if (strcmp (argv[optind], "-") == 0)
671 have_read_stdin = 1;
672 errors |= tac_stdin ();
674 else
675 errors |= tac_file (argv[optind]);
678 /* Flush the output buffer. */
679 output ((char *) NULL, (char *) NULL);
681 if (have_read_stdin && close (0) < 0)
682 error (1, errno, "-");
683 if (close (1) < 0)
684 error (1, errno, _("write error"));
685 exit (errors);