shred: increase I/O block size for periodic pattern case
[coreutils.git] / src / head.c
blob5411a3c0e036654e8fb3ee11b2eb763bffee64d6
1 /* head -- output first part of file(s)
2 Copyright (C) 1989-2013 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 <http://www.gnu.org/licenses/>. */
17 /* Options: (see usage)
18 Reads from standard input if no files are given or when a filename of
19 ''-'' is encountered.
20 By default, filename headers are printed only if more than one file
21 is given.
22 By default, prints the first 10 lines (head -n 10).
24 David MacKenzie <djm@gnu.ai.mit.edu> */
26 #include <config.h>
28 #include <stdio.h>
29 #include <getopt.h>
30 #include <sys/types.h>
32 #include "system.h"
34 #include "error.h"
35 #include "full-read.h"
36 #include "quote.h"
37 #include "safe-read.h"
38 #include "xfreopen.h"
39 #include "xstrtol.h"
41 /* The official name of this program (e.g., no 'g' prefix). */
42 #define PROGRAM_NAME "head"
44 #define AUTHORS \
45 proper_name ("David MacKenzie"), \
46 proper_name ("Jim Meyering")
48 /* Number of lines/chars/blocks to head. */
49 #define DEFAULT_NUMBER 10
51 /* Useful only when eliding tail bytes or lines.
52 If true, skip the is-regular-file test used to determine whether
53 to use the lseek optimization. Instead, use the more general (and
54 more expensive) code unconditionally. Intended solely for testing. */
55 static bool presume_input_pipe;
57 /* If true, print filename headers. */
58 static bool print_headers;
60 /* When to print the filename banners. */
61 enum header_mode
63 multiple_files, always, never
66 /* Have we ever read standard input? */
67 static bool have_read_stdin;
69 enum Copy_fd_status
71 COPY_FD_OK = 0,
72 COPY_FD_READ_ERROR,
73 COPY_FD_WRITE_ERROR,
74 COPY_FD_UNEXPECTED_EOF
77 /* For long options that have no equivalent short option, use a
78 non-character as a pseudo short option, starting with CHAR_MAX + 1. */
79 enum
81 PRESUME_INPUT_PIPE_OPTION = CHAR_MAX + 1
84 static struct option const long_options[] =
86 {"bytes", required_argument, NULL, 'c'},
87 {"lines", required_argument, NULL, 'n'},
88 {"-presume-input-pipe", no_argument, NULL,
89 PRESUME_INPUT_PIPE_OPTION}, /* do not document */
90 {"quiet", no_argument, NULL, 'q'},
91 {"silent", no_argument, NULL, 'q'},
92 {"verbose", no_argument, NULL, 'v'},
93 {GETOPT_HELP_OPTION_DECL},
94 {GETOPT_VERSION_OPTION_DECL},
95 {NULL, 0, NULL, 0}
98 void
99 usage (int status)
101 if (status != EXIT_SUCCESS)
102 emit_try_help ();
103 else
105 printf (_("\
106 Usage: %s [OPTION]... [FILE]...\n\
108 program_name);
109 fputs (_("\
110 Print the first 10 lines of each FILE to standard output.\n\
111 With more than one FILE, precede each with a header giving the file name.\n\
112 With no FILE, or when FILE is -, read standard input.\n\
113 "), stdout);
115 emit_mandatory_arg_note ();
117 fputs (_("\
118 -c, --bytes=[-]K print the first K bytes of each file;\n\
119 with the leading '-', print all but the last\n\
120 K bytes of each file\n\
121 -n, --lines=[-]K print the first K lines instead of the first 10;\n\
122 with the leading '-', print all but the last\n\
123 K lines of each file\n\
124 "), stdout);
125 fputs (_("\
126 -q, --quiet, --silent never print headers giving file names\n\
127 -v, --verbose always print headers giving file names\n\
128 "), stdout);
129 fputs (HELP_OPTION_DESCRIPTION, stdout);
130 fputs (VERSION_OPTION_DESCRIPTION, stdout);
131 fputs (_("\
133 K may have a multiplier suffix:\n\
134 b 512, kB 1000, K 1024, MB 1000*1000, M 1024*1024,\n\
135 GB 1000*1000*1000, G 1024*1024*1024, and so on for T, P, E, Z, Y.\n\
136 "), stdout);
137 emit_ancillary_info ();
139 exit (status);
142 static void
143 diagnose_copy_fd_failure (enum Copy_fd_status err, char const *filename)
145 switch (err)
147 case COPY_FD_READ_ERROR:
148 error (0, errno, _("error reading %s"), quote (filename));
149 break;
150 case COPY_FD_WRITE_ERROR:
151 error (0, errno, _("error writing %s"), quote (filename));
152 break;
153 case COPY_FD_UNEXPECTED_EOF:
154 error (0, errno, _("%s: file has shrunk too much"), quote (filename));
155 break;
156 default:
157 abort ();
161 static void
162 write_header (const char *filename)
164 static bool first_file = true;
166 printf ("%s==> %s <==\n", (first_file ? "" : "\n"), filename);
167 first_file = false;
170 /* Copy no more than N_BYTES from file descriptor SRC_FD to O_STREAM.
171 Return an appropriate indication of success or failure. */
173 static enum Copy_fd_status
174 copy_fd (int src_fd, FILE *o_stream, uintmax_t n_bytes)
176 char buf[BUFSIZ];
177 const size_t buf_size = sizeof (buf);
179 /* Copy the file contents. */
180 while (0 < n_bytes)
182 size_t n_to_read = MIN (buf_size, n_bytes);
183 size_t n_read = safe_read (src_fd, buf, n_to_read);
184 if (n_read == SAFE_READ_ERROR)
185 return COPY_FD_READ_ERROR;
187 n_bytes -= n_read;
189 if (n_read == 0 && n_bytes != 0)
190 return COPY_FD_UNEXPECTED_EOF;
192 if (fwrite (buf, 1, n_read, o_stream) < n_read)
193 return COPY_FD_WRITE_ERROR;
196 return COPY_FD_OK;
199 /* Print all but the last N_ELIDE bytes from the input available via
200 the non-seekable file descriptor FD. Return true upon success.
201 Give a diagnostic and return false upon error. */
202 static bool
203 elide_tail_bytes_pipe (const char *filename, int fd, uintmax_t n_elide_0)
205 size_t n_elide = n_elide_0;
207 #ifndef HEAD_TAIL_PIPE_READ_BUFSIZE
208 # define HEAD_TAIL_PIPE_READ_BUFSIZE BUFSIZ
209 #endif
210 #define READ_BUFSIZE HEAD_TAIL_PIPE_READ_BUFSIZE
212 /* If we're eliding no more than this many bytes, then it's ok to allocate
213 more memory in order to use a more time-efficient algorithm.
214 FIXME: use a fraction of available memory instead, as in sort.
215 FIXME: is this even worthwhile? */
216 #ifndef HEAD_TAIL_PIPE_BYTECOUNT_THRESHOLD
217 # define HEAD_TAIL_PIPE_BYTECOUNT_THRESHOLD 1024 * 1024
218 #endif
220 #if HEAD_TAIL_PIPE_BYTECOUNT_THRESHOLD < 2 * READ_BUFSIZE
221 "HEAD_TAIL_PIPE_BYTECOUNT_THRESHOLD must be at least 2 * READ_BUFSIZE"
222 #endif
224 if (SIZE_MAX < n_elide_0 + READ_BUFSIZE)
226 char umax_buf[INT_BUFSIZE_BOUND (n_elide_0)];
227 error (EXIT_FAILURE, 0, _("%s: number of bytes is too large"),
228 umaxtostr (n_elide_0, umax_buf));
231 /* Two cases to consider...
232 1) n_elide is small enough that we can afford to double-buffer:
233 allocate 2 * (READ_BUFSIZE + n_elide) bytes
234 2) n_elide is too big for that, so we allocate only
235 (READ_BUFSIZE + n_elide) bytes
237 FIXME: profile, to see if double-buffering is worthwhile
239 CAUTION: do not fail (out of memory) when asked to elide
240 a ridiculous amount, but when given only a small input. */
242 if (n_elide <= HEAD_TAIL_PIPE_BYTECOUNT_THRESHOLD)
244 bool ok = true;
245 bool first = true;
246 bool eof = false;
247 size_t n_to_read = READ_BUFSIZE + n_elide;
248 bool i;
249 char *b[2];
250 b[0] = xnmalloc (2, n_to_read);
251 b[1] = b[0] + n_to_read;
253 for (i = false; ! eof ; i = !i)
255 size_t n_read = full_read (fd, b[i], n_to_read);
256 size_t delta = 0;
257 if (n_read < n_to_read)
259 if (errno != 0)
261 error (0, errno, _("error reading %s"), quote (filename));
262 ok = false;
263 break;
266 /* reached EOF */
267 if (n_read <= n_elide)
269 if (first)
271 /* The input is no larger than the number of bytes
272 to elide. So there's nothing to output, and
273 we're done. */
275 else
277 delta = n_elide - n_read;
280 eof = true;
283 /* Output any (but maybe just part of the) elided data from
284 the previous round. */
285 if ( ! first)
287 /* Don't bother checking for errors here.
288 If there's a failure, the test of the following
289 fwrite or in close_stdout will catch it. */
290 fwrite (b[!i] + READ_BUFSIZE, 1, n_elide - delta, stdout);
292 first = false;
294 if (n_elide < n_read
295 && fwrite (b[i], 1, n_read - n_elide, stdout) < n_read - n_elide)
297 error (0, errno, _("write error"));
298 ok = false;
299 break;
303 free (b[0]);
304 return ok;
306 else
308 /* Read blocks of size READ_BUFSIZE, until we've read at least n_elide
309 bytes. Then, for each new buffer we read, also write an old one. */
311 bool ok = true;
312 bool eof = false;
313 size_t n_read;
314 bool buffered_enough;
315 size_t i, i_next;
316 char **b = NULL;
317 /* Round n_elide up to a multiple of READ_BUFSIZE. */
318 size_t rem = READ_BUFSIZE - (n_elide % READ_BUFSIZE);
319 size_t n_elide_round = n_elide + rem;
320 size_t n_bufs = n_elide_round / READ_BUFSIZE + 1;
321 size_t n_alloc = 0;
322 size_t n_array_alloc = 0;
324 buffered_enough = false;
325 for (i = 0, i_next = 1; !eof; i = i_next, i_next = (i_next + 1) % n_bufs)
327 if (n_array_alloc == i)
329 /* reallocate between 16 and n_bufs entries. */
330 if (n_array_alloc == 0)
331 n_array_alloc = MIN (n_bufs, 16);
332 else if (n_array_alloc <= n_bufs / 2)
333 n_array_alloc *= 2;
334 else
335 n_array_alloc = n_bufs;
336 b = xnrealloc (b, n_array_alloc, sizeof *b);
339 if (! buffered_enough)
341 b[i] = xmalloc (READ_BUFSIZE);
342 n_alloc = i + 1;
344 n_read = full_read (fd, b[i], READ_BUFSIZE);
345 if (n_read < READ_BUFSIZE)
347 if (errno != 0)
349 error (0, errno, _("error reading %s"), quote (filename));
350 ok = false;
351 goto free_mem;
353 eof = true;
356 if (i + 1 == n_bufs)
357 buffered_enough = true;
359 if (buffered_enough)
361 if (fwrite (b[i_next], 1, n_read, stdout) < n_read)
363 error (0, errno, _("write error"));
364 ok = false;
365 goto free_mem;
370 /* Output any remainder: rem bytes from b[i] + n_read. */
371 if (rem)
373 if (buffered_enough)
375 size_t n_bytes_left_in_b_i = READ_BUFSIZE - n_read;
376 if (rem < n_bytes_left_in_b_i)
378 fwrite (b[i] + n_read, 1, rem, stdout);
380 else
382 fwrite (b[i] + n_read, 1, n_bytes_left_in_b_i, stdout);
383 fwrite (b[i_next], 1, rem - n_bytes_left_in_b_i, stdout);
386 else if (i + 1 == n_bufs)
388 /* This happens when n_elide < file_size < n_elide_round.
390 |READ_BUF.|
391 | | rem |
392 |---------!---------!---------!---------|
393 |---- n_elide ---------|
394 | | x |
395 | |y |
396 |---- file size -----------|
397 | |n_read|
398 |---- n_elide_round ----------|
400 size_t y = READ_BUFSIZE - rem;
401 size_t x = n_read - y;
402 fwrite (b[i_next], 1, x, stdout);
406 free_mem:
407 for (i = 0; i < n_alloc; i++)
408 free (b[i]);
409 free (b);
411 return ok;
415 /* Print all but the last N_ELIDE lines from the input available
416 via file descriptor FD. Return true upon success.
417 Give a diagnostic and return false upon error. */
419 /* NOTE: if the input file shrinks by more than N_ELIDE bytes between
420 the length determination and the actual reading, then head fails. */
422 static bool
423 elide_tail_bytes_file (const char *filename, int fd, uintmax_t n_elide)
425 struct stat stats;
427 if (presume_input_pipe || fstat (fd, &stats) || ! S_ISREG (stats.st_mode))
429 return elide_tail_bytes_pipe (filename, fd, n_elide);
431 else
433 off_t current_pos, end_pos;
434 uintmax_t bytes_remaining;
435 off_t diff;
436 enum Copy_fd_status err;
438 if ((current_pos = lseek (fd, 0, SEEK_CUR)) == -1
439 || (end_pos = lseek (fd, 0, SEEK_END)) == -1)
441 error (0, errno, _("cannot lseek %s"), quote (filename));
442 return false;
445 /* Be careful here. The current position may actually be
446 beyond the end of the file. */
447 bytes_remaining = (diff = end_pos - current_pos) < 0 ? 0 : diff;
449 if (bytes_remaining <= n_elide)
450 return true;
452 /* Seek back to 'current' position, then copy the required
453 number of bytes from fd. */
454 if (lseek (fd, 0, current_pos) == -1)
456 error (0, errno, _("%s: cannot lseek back to original position"),
457 quote (filename));
458 return false;
461 err = copy_fd (fd, stdout, bytes_remaining - n_elide);
462 if (err == COPY_FD_OK)
463 return true;
465 diagnose_copy_fd_failure (err, filename);
466 return false;
470 /* Print all but the last N_ELIDE lines from the input stream
471 open for reading via file descriptor FD.
472 Buffer the specified number of lines as a linked list of LBUFFERs,
473 adding them as needed. Return true if successful. */
475 static bool
476 elide_tail_lines_pipe (const char *filename, int fd, uintmax_t n_elide)
478 struct linebuffer
480 char buffer[BUFSIZ];
481 size_t nbytes;
482 size_t nlines;
483 struct linebuffer *next;
485 typedef struct linebuffer LBUFFER;
486 LBUFFER *first, *last, *tmp;
487 size_t total_lines = 0; /* Total number of newlines in all buffers. */
488 bool ok = true;
489 size_t n_read; /* Size in bytes of most recent read */
491 first = last = xmalloc (sizeof (LBUFFER));
492 first->nbytes = first->nlines = 0;
493 first->next = NULL;
494 tmp = xmalloc (sizeof (LBUFFER));
496 /* Always read into a fresh buffer.
497 Read, (producing no output) until we've accumulated at least
498 n_elide newlines, or until EOF, whichever comes first. */
499 while (1)
501 n_read = safe_read (fd, tmp->buffer, BUFSIZ);
502 if (n_read == 0 || n_read == SAFE_READ_ERROR)
503 break;
504 tmp->nbytes = n_read;
505 tmp->nlines = 0;
506 tmp->next = NULL;
508 /* Count the number of newlines just read. */
510 char const *buffer_end = tmp->buffer + n_read;
511 char const *p = tmp->buffer;
512 while ((p = memchr (p, '\n', buffer_end - p)))
514 ++p;
515 ++tmp->nlines;
518 total_lines += tmp->nlines;
520 /* If there is enough room in the last buffer read, just append the new
521 one to it. This is because when reading from a pipe, 'n_read' can
522 often be very small. */
523 if (tmp->nbytes + last->nbytes < BUFSIZ)
525 memcpy (&last->buffer[last->nbytes], tmp->buffer, tmp->nbytes);
526 last->nbytes += tmp->nbytes;
527 last->nlines += tmp->nlines;
529 else
531 /* If there's not enough room, link the new buffer onto the end of
532 the list, then either free up the oldest buffer for the next
533 read if that would leave enough lines, or else malloc a new one.
534 Some compaction mechanism is possible but probably not
535 worthwhile. */
536 last = last->next = tmp;
537 if (n_elide < total_lines - first->nlines)
539 fwrite (first->buffer, 1, first->nbytes, stdout);
540 tmp = first;
541 total_lines -= first->nlines;
542 first = first->next;
544 else
545 tmp = xmalloc (sizeof (LBUFFER));
549 free (tmp);
551 if (n_read == SAFE_READ_ERROR)
553 error (0, errno, _("error reading %s"), quote (filename));
554 ok = false;
555 goto free_lbuffers;
558 /* If we read any bytes at all, count the incomplete line
559 on files that don't end with a newline. */
560 if (last->nbytes && last->buffer[last->nbytes - 1] != '\n')
562 ++last->nlines;
563 ++total_lines;
566 for (tmp = first; n_elide < total_lines - tmp->nlines; tmp = tmp->next)
568 fwrite (tmp->buffer, 1, tmp->nbytes, stdout);
569 total_lines -= tmp->nlines;
572 /* Print the first 'total_lines - n_elide' lines of tmp->buffer. */
573 if (n_elide < total_lines)
575 size_t n = total_lines - n_elide;
576 char const *buffer_end = tmp->buffer + tmp->nbytes;
577 char const *p = tmp->buffer;
578 while (n && (p = memchr (p, '\n', buffer_end - p)))
580 ++p;
581 ++tmp->nlines;
582 --n;
584 fwrite (tmp->buffer, 1, p - tmp->buffer, stdout);
587 free_lbuffers:
588 while (first)
590 tmp = first->next;
591 free (first);
592 first = tmp;
594 return ok;
597 /* Output all but the last N_LINES lines of the input stream defined by
598 FD, START_POS, and END_POS.
599 START_POS is the starting position of the read pointer for the file
600 associated with FD (may be nonzero).
601 END_POS is the file offset of EOF (one larger than offset of last byte).
602 Return true upon success.
603 Give a diagnostic and return false upon error.
605 NOTE: this code is very similar to that of tail.c's file_lines function.
606 Unfortunately, factoring out some common core looks like it'd result
607 in a less efficient implementation or a messy interface. */
608 static bool
609 elide_tail_lines_seekable (const char *pretty_filename, int fd,
610 uintmax_t n_lines,
611 off_t start_pos, off_t end_pos)
613 char buffer[BUFSIZ];
614 size_t bytes_read;
615 off_t pos = end_pos;
617 /* Set 'bytes_read' to the size of the last, probably partial, buffer;
618 0 < 'bytes_read' <= 'BUFSIZ'. */
619 bytes_read = (pos - start_pos) % BUFSIZ;
620 if (bytes_read == 0)
621 bytes_read = BUFSIZ;
622 /* Make 'pos' a multiple of 'BUFSIZ' (0 if the file is short), so that all
623 reads will be on block boundaries, which might increase efficiency. */
624 pos -= bytes_read;
625 if (lseek (fd, pos, SEEK_SET) < 0)
627 char offset_buf[INT_BUFSIZE_BOUND (pos)];
628 error (0, errno, _("%s: cannot seek to offset %s"),
629 pretty_filename, offtostr (pos, offset_buf));
630 return false;
632 bytes_read = safe_read (fd, buffer, bytes_read);
633 if (bytes_read == SAFE_READ_ERROR)
635 error (0, errno, _("error reading %s"), quote (pretty_filename));
636 return false;
639 /* Count the incomplete line on files that don't end with a newline. */
640 if (bytes_read && buffer[bytes_read - 1] != '\n')
641 --n_lines;
643 while (1)
645 /* Scan backward, counting the newlines in this bufferfull. */
647 size_t n = bytes_read;
648 while (n)
650 char const *nl;
651 nl = memrchr (buffer, '\n', n);
652 if (nl == NULL)
653 break;
654 n = nl - buffer;
655 if (n_lines-- == 0)
657 /* Found it. */
658 /* If necessary, restore the file pointer and copy
659 input to output up to position, POS. */
660 if (start_pos < pos)
662 enum Copy_fd_status err;
663 if (lseek (fd, start_pos, SEEK_SET) < 0)
665 /* Failed to reposition file pointer. */
666 error (0, errno,
667 "%s: unable to restore file pointer to initial offset",
668 quote (pretty_filename));
669 return false;
672 err = copy_fd (fd, stdout, pos - start_pos);
673 if (err != COPY_FD_OK)
675 diagnose_copy_fd_failure (err, pretty_filename);
676 return false;
680 /* Output the initial portion of the buffer
681 in which we found the desired newline byte.
682 Don't bother testing for failure for such a small amount.
683 Any failure will be detected upon close. */
684 fwrite (buffer, 1, n + 1, stdout);
686 /* Set file pointer to the byte after what we've output. */
687 if (lseek (fd, pos + n + 1, SEEK_SET) < 0)
689 error (0, errno, _("%s: failed to reset file pointer"),
690 quote (pretty_filename));
691 return false;
693 return true;
697 /* Not enough newlines in that bufferfull. */
698 if (pos == start_pos)
700 /* Not enough lines in the file. */
701 return true;
703 pos -= BUFSIZ;
704 if (lseek (fd, pos, SEEK_SET) < 0)
706 char offset_buf[INT_BUFSIZE_BOUND (pos)];
707 error (0, errno, _("%s: cannot seek to offset %s"),
708 pretty_filename, offtostr (pos, offset_buf));
709 return false;
712 bytes_read = safe_read (fd, buffer, BUFSIZ);
713 if (bytes_read == SAFE_READ_ERROR)
715 error (0, errno, _("error reading %s"), quote (pretty_filename));
716 return false;
719 /* FIXME: is this dead code?
720 Consider the test, pos == start_pos, above. */
721 if (bytes_read == 0)
722 return true;
726 /* Print all but the last N_ELIDE lines from the input available
727 via file descriptor FD. Return true upon success.
728 Give a diagnostic and return nonzero upon error. */
730 static bool
731 elide_tail_lines_file (const char *filename, int fd, uintmax_t n_elide)
733 if (!presume_input_pipe)
735 /* Find the offset, OFF, of the Nth newline from the end,
736 but not counting the last byte of the file.
737 If found, write from current position to OFF, inclusive.
738 Otherwise, just return true. */
740 off_t start_pos = lseek (fd, 0, SEEK_CUR);
741 off_t end_pos = lseek (fd, 0, SEEK_END);
742 if (0 <= start_pos && 0 <= end_pos)
744 /* If no data to read we're done. */
745 if (start_pos >= end_pos)
746 return true;
748 return elide_tail_lines_seekable (filename, fd, n_elide,
749 start_pos, end_pos);
752 /* lseek failed, Fall through... */
755 return elide_tail_lines_pipe (filename, fd, n_elide);
758 static bool
759 head_bytes (const char *filename, int fd, uintmax_t bytes_to_write)
761 char buffer[BUFSIZ];
762 size_t bytes_to_read = BUFSIZ;
764 while (bytes_to_write)
766 size_t bytes_read;
767 if (bytes_to_write < bytes_to_read)
768 bytes_to_read = bytes_to_write;
769 bytes_read = safe_read (fd, buffer, bytes_to_read);
770 if (bytes_read == SAFE_READ_ERROR)
772 error (0, errno, _("error reading %s"), quote (filename));
773 return false;
775 if (bytes_read == 0)
776 break;
777 if (fwrite (buffer, 1, bytes_read, stdout) < bytes_read)
778 error (EXIT_FAILURE, errno, _("write error"));
779 bytes_to_write -= bytes_read;
781 return true;
784 static bool
785 head_lines (const char *filename, int fd, uintmax_t lines_to_write)
787 char buffer[BUFSIZ];
789 while (lines_to_write)
791 size_t bytes_read = safe_read (fd, buffer, BUFSIZ);
792 size_t bytes_to_write = 0;
794 if (bytes_read == SAFE_READ_ERROR)
796 error (0, errno, _("error reading %s"), quote (filename));
797 return false;
799 if (bytes_read == 0)
800 break;
801 while (bytes_to_write < bytes_read)
802 if (buffer[bytes_to_write++] == '\n' && --lines_to_write == 0)
804 off_t n_bytes_past_EOL = bytes_read - bytes_to_write;
805 /* If we have read more data than that on the specified number
806 of lines, try to seek back to the position we would have
807 gotten to had we been reading one byte at a time. */
808 if (lseek (fd, -n_bytes_past_EOL, SEEK_CUR) < 0)
810 int e = errno;
811 struct stat st;
812 if (fstat (fd, &st) != 0 || S_ISREG (st.st_mode))
813 error (0, e, _("cannot reposition file pointer for %s"),
814 quote (filename));
816 break;
818 if (fwrite (buffer, 1, bytes_to_write, stdout) < bytes_to_write)
819 error (EXIT_FAILURE, errno, _("write error"));
821 return true;
824 static bool
825 head (const char *filename, int fd, uintmax_t n_units, bool count_lines,
826 bool elide_from_end)
828 if (print_headers)
829 write_header (filename);
831 if (elide_from_end)
833 if (count_lines)
835 return elide_tail_lines_file (filename, fd, n_units);
837 else
839 return elide_tail_bytes_file (filename, fd, n_units);
842 if (count_lines)
843 return head_lines (filename, fd, n_units);
844 else
845 return head_bytes (filename, fd, n_units);
848 static bool
849 head_file (const char *filename, uintmax_t n_units, bool count_lines,
850 bool elide_from_end)
852 int fd;
853 bool ok;
854 bool is_stdin = STREQ (filename, "-");
856 if (is_stdin)
858 have_read_stdin = true;
859 fd = STDIN_FILENO;
860 filename = _("standard input");
861 if (O_BINARY && ! isatty (STDIN_FILENO))
862 xfreopen (NULL, "rb", stdin);
864 else
866 fd = open (filename, O_RDONLY | O_BINARY);
867 if (fd < 0)
869 error (0, errno, _("cannot open %s for reading"), quote (filename));
870 return false;
874 ok = head (filename, fd, n_units, count_lines, elide_from_end);
875 if (!is_stdin && close (fd) != 0)
877 error (0, errno, _("failed to close %s"), quote (filename));
878 return false;
880 return ok;
883 /* Convert a string of decimal digits, N_STRING, with an optional suffinx
884 to an integral value. Upon successful conversion,
885 return that value. If it cannot be converted, give a diagnostic and exit.
886 COUNT_LINES indicates whether N_STRING is a number of bytes or a number
887 of lines. It is used solely to give a more specific diagnostic. */
889 static uintmax_t
890 string_to_integer (bool count_lines, const char *n_string)
892 strtol_error s_err;
893 uintmax_t n;
895 s_err = xstrtoumax (n_string, NULL, 10, &n, "bkKmMGTPEZY0");
897 if (s_err == LONGINT_OVERFLOW)
899 error (EXIT_FAILURE, 0,
900 _("%s: %s is so large that it is not representable"), n_string,
901 count_lines ? _("number of lines") : _("number of bytes"));
904 if (s_err != LONGINT_OK)
906 error (EXIT_FAILURE, 0, "%s: %s", n_string,
907 (count_lines
908 ? _("invalid number of lines")
909 : _("invalid number of bytes")));
912 return n;
916 main (int argc, char **argv)
918 enum header_mode header_mode = multiple_files;
919 bool ok = true;
920 int c;
921 size_t i;
923 /* Number of items to print. */
924 uintmax_t n_units = DEFAULT_NUMBER;
926 /* If true, interpret the numeric argument as the number of lines.
927 Otherwise, interpret it as the number of bytes. */
928 bool count_lines = true;
930 /* Elide the specified number of lines or bytes, counting from
931 the end of the file. */
932 bool elide_from_end = false;
934 /* Initializer for file_list if no file-arguments
935 were specified on the command line. */
936 static char const *const default_file_list[] = {"-", NULL};
937 char const *const *file_list;
939 initialize_main (&argc, &argv);
940 set_program_name (argv[0]);
941 setlocale (LC_ALL, "");
942 bindtextdomain (PACKAGE, LOCALEDIR);
943 textdomain (PACKAGE);
945 atexit (close_stdout);
947 have_read_stdin = false;
949 print_headers = false;
951 if (1 < argc && argv[1][0] == '-' && ISDIGIT (argv[1][1]))
953 char *a = argv[1];
954 char *n_string = ++a;
955 char *end_n_string;
956 char multiplier_char = 0;
958 /* Old option syntax; a dash, one or more digits, and one or
959 more option letters. Move past the number. */
960 do ++a;
961 while (ISDIGIT (*a));
963 /* Pointer to the byte after the last digit. */
964 end_n_string = a;
966 /* Parse any appended option letters. */
967 for (; *a; a++)
969 switch (*a)
971 case 'c':
972 count_lines = false;
973 multiplier_char = 0;
974 break;
976 case 'b':
977 case 'k':
978 case 'm':
979 count_lines = false;
980 multiplier_char = *a;
981 break;
983 case 'l':
984 count_lines = true;
985 break;
987 case 'q':
988 header_mode = never;
989 break;
991 case 'v':
992 header_mode = always;
993 break;
995 default:
996 error (0, 0, _("invalid trailing option -- %c"), *a);
997 usage (EXIT_FAILURE);
1001 /* Append the multiplier character (if any) onto the end of
1002 the digit string. Then add NUL byte if necessary. */
1003 *end_n_string = multiplier_char;
1004 if (multiplier_char)
1005 *(++end_n_string) = 0;
1007 n_units = string_to_integer (count_lines, n_string);
1009 /* Make the options we just parsed invisible to getopt. */
1010 argv[1] = argv[0];
1011 argv++;
1012 argc--;
1015 while ((c = getopt_long (argc, argv, "c:n:qv0123456789", long_options, NULL))
1016 != -1)
1018 switch (c)
1020 case PRESUME_INPUT_PIPE_OPTION:
1021 presume_input_pipe = true;
1022 break;
1024 case 'c':
1025 count_lines = false;
1026 elide_from_end = (*optarg == '-');
1027 if (elide_from_end)
1028 ++optarg;
1029 n_units = string_to_integer (count_lines, optarg);
1030 break;
1032 case 'n':
1033 count_lines = true;
1034 elide_from_end = (*optarg == '-');
1035 if (elide_from_end)
1036 ++optarg;
1037 n_units = string_to_integer (count_lines, optarg);
1038 break;
1040 case 'q':
1041 header_mode = never;
1042 break;
1044 case 'v':
1045 header_mode = always;
1046 break;
1048 case_GETOPT_HELP_CHAR;
1050 case_GETOPT_VERSION_CHAR (PROGRAM_NAME, AUTHORS);
1052 default:
1053 if (ISDIGIT (c))
1054 error (0, 0, _("invalid trailing option -- %c"), c);
1055 usage (EXIT_FAILURE);
1059 if (header_mode == always
1060 || (header_mode == multiple_files && optind < argc - 1))
1061 print_headers = true;
1063 if ( ! count_lines && elide_from_end && OFF_T_MAX < n_units)
1065 char umax_buf[INT_BUFSIZE_BOUND (n_units)];
1066 error (EXIT_FAILURE, 0, _("%s: number of bytes is too large"),
1067 umaxtostr (n_units, umax_buf));
1070 file_list = (optind < argc
1071 ? (char const *const *) &argv[optind]
1072 : default_file_list);
1074 if (O_BINARY && ! isatty (STDOUT_FILENO))
1075 xfreopen (NULL, "wb", stdout);
1077 for (i = 0; file_list[i]; ++i)
1078 ok &= head_file (file_list[i], n_units, count_lines, elide_from_end);
1080 if (have_read_stdin && close (STDIN_FILENO) < 0)
1081 error (EXIT_FAILURE, errno, "-");
1083 exit (ok ? EXIT_SUCCESS : EXIT_FAILURE);