blob: 75189eda8b25ec60286b346fecfbf1bbae8322b7 [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
John Beppu3157b1f1999-12-10 07:42:50 +00002/*
Manuel Novoa III cad53642003-03-19 09:13:01 +00003 * head implementation for busybox
John Beppu3157b1f1999-12-10 07:42:50 +00004 *
Manuel Novoa III cad53642003-03-19 09:13:01 +00005 * Copyright (C) 2003 Manuel Novoa III <mjn3@codepoet.org>
John Beppu3157b1f1999-12-10 07:42:50 +00006 *
Rob Landleyf8fd4db2006-01-30 01:30:39 +00007 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
John Beppu3157b1f1999-12-10 07:42:50 +00008 */
9
Manuel Novoa III cad53642003-03-19 09:13:01 +000010/* BB_AUDIT SUSv3 compliant */
11/* BB_AUDIT GNU compatible -c, -q, and -v options in 'fancy' configuration. */
12/* http://www.opengroup.org/onlinepubs/007904975/utilities/head.html */
13
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000014#include "libbb.h"
John Beppu3157b1f1999-12-10 07:42:50 +000015
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000016static const char head_opts[] ALIGN1 =
Manuel Novoa III cad53642003-03-19 09:13:01 +000017 "n:"
Bernhard Reutner-Fischer5816ccb2005-12-13 10:48:45 +000018#if ENABLE_FEATURE_FANCY_HEAD
Manuel Novoa III cad53642003-03-19 09:13:01 +000019 "c:qv"
20#endif
21 ;
John Beppu3157b1f1999-12-10 07:42:50 +000022
"Vladimir N. Oleynik"e75b41d2006-01-30 11:15:11 +000023static const struct suffix_mult head_suffixes[] = {
24 { "b", 512 },
25 { "k", 1024 },
26 { "m", 1024*1024 },
Denys Vlasenko043b1e52009-09-06 12:47:55 +020027 { "", 0 }
"Vladimir N. Oleynik"e75b41d2006-01-30 11:15:11 +000028};
Denis Vlasenko9213a9e2006-09-17 16:28:10 +000029
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000030static const char header_fmt_str[] ALIGN1 = "\n==> %s <==\n";
John Beppu3157b1f1999-12-10 07:42:50 +000031
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000032int head_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Erik Andersene49d5ec2000-02-08 19:58:47 +000033int head_main(int argc, char **argv)
John Beppu3157b1f1999-12-10 07:42:50 +000034{
Manuel Novoa III cad53642003-03-19 09:13:01 +000035 unsigned long count = 10;
36 unsigned long i;
Bernhard Reutner-Fischer5816ccb2005-12-13 10:48:45 +000037#if ENABLE_FEATURE_FANCY_HEAD
Manuel Novoa III cad53642003-03-19 09:13:01 +000038 int count_bytes = 0;
39 int header_threshhold = 1;
40#endif
Matt Kraaic0321f92000-09-27 04:09:22 +000041 FILE *fp;
Manuel Novoa III cad53642003-03-19 09:13:01 +000042 const char *fmt;
43 char *p;
44 int opt;
45 int c;
46 int retval = EXIT_SUCCESS;
John Beppu3157b1f1999-12-10 07:42:50 +000047
Denis Vlasenko08492072006-12-22 13:56:36 +000048#if ENABLE_INCLUDE_SUSv2 || ENABLE_FEATURE_FANCY_HEAD
Manuel Novoa III cad53642003-03-19 09:13:01 +000049 /* Allow legacy syntax of an initial numeric option without -n. */
Denis Vlasenko0d873672008-11-11 22:43:10 +000050 if (argv[1] && argv[1][0] == '-'
Denis Vlasenko459903b2006-11-27 14:44:18 +000051 && isdigit(argv[1][1])
Manuel Novoa III cad53642003-03-19 09:13:01 +000052 ) {
53 --argc;
54 ++argv;
55 p = (*argv) + 1;
56 goto GET_COUNT;
Robert Griebl13c26fc2002-05-17 22:18:04 +000057 }
Glenn L McGrath0bd02572005-12-11 03:09:05 +000058#endif
Robert Griebl13c26fc2002-05-17 22:18:04 +000059
Denis Vlasenko67b23e62006-10-03 21:00:06 +000060 /* No size benefit in converting this to getopt32 */
Manuel Novoa III cad53642003-03-19 09:13:01 +000061 while ((opt = getopt(argc, argv, head_opts)) > 0) {
Denis Vlasenkoc16bd212006-09-27 19:51:06 +000062 switch (opt) {
Bernhard Reutner-Fischer5816ccb2005-12-13 10:48:45 +000063#if ENABLE_FEATURE_FANCY_HEAD
Denis Vlasenko13858992006-10-08 12:49:22 +000064 case 'q':
65 header_threshhold = INT_MAX;
66 break;
67 case 'v':
68 header_threshhold = -1;
69 break;
70 case 'c':
71 count_bytes = 1;
72 /* fall through */
Manuel Novoa III cad53642003-03-19 09:13:01 +000073#endif
Denis Vlasenko13858992006-10-08 12:49:22 +000074 case 'n':
75 p = optarg;
Denis Vlasenko08492072006-12-22 13:56:36 +000076#if ENABLE_INCLUDE_SUSv2 || ENABLE_FEATURE_FANCY_HEAD
77 GET_COUNT:
Bernhard Reutner-Fischer5816ccb2005-12-13 10:48:45 +000078#endif
Denis Vlasenko13858992006-10-08 12:49:22 +000079 count = xatoul_sfx(p, head_suffixes);
Denis Vlasenko13858992006-10-08 12:49:22 +000080 break;
81 default:
82 bb_show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +000083 }
84 }
85
Denis Vlasenko62a90cd2008-03-17 09:07:36 +000086 argc -= optind;
Manuel Novoa III cad53642003-03-19 09:13:01 +000087 argv += optind;
Denis Vlasenko62a90cd2008-03-17 09:07:36 +000088 if (!*argv)
Denis Vlasenkoa41fdf32007-01-29 22:51:00 +000089 *--argv = (char*)"-";
John Beppu3157b1f1999-12-10 07:42:50 +000090
Manuel Novoa III cad53642003-03-19 09:13:01 +000091 fmt = header_fmt_str + 1;
Bernhard Reutner-Fischer5816ccb2005-12-13 10:48:45 +000092#if ENABLE_FEATURE_FANCY_HEAD
Denis Vlasenko62a90cd2008-03-17 09:07:36 +000093 if (argc <= header_threshhold) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000094 header_threshhold = 0;
95 }
96#else
Denis Vlasenko62a90cd2008-03-17 09:07:36 +000097 if (argc <= 1) {
98 fmt += 11; /* "" */
Manuel Novoa III cad53642003-03-19 09:13:01 +000099 }
100 /* Now define some things here to avoid #ifdefs in the code below.
101 * These should optimize out of the if conditions below. */
102#define header_threshhold 1
103#define count_bytes 0
104#endif
105
106 do {
Denis Vlasenkoddec5af2006-10-26 23:25:17 +0000107 fp = fopen_or_warn_stdin(*argv);
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000108 if (fp) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000109 if (fp == stdin) {
110 *argv = (char *) bb_msg_standard_input;
111 }
112 if (header_threshhold) {
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000113 printf(fmt, *argv);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000114 }
115 i = count;
116 while (i && ((c = getc(fp)) != EOF)) {
117 if (count_bytes || (c == '\n')) {
118 --i;
119 }
120 putchar(c);
121 }
Denis Vlasenkoddec5af2006-10-26 23:25:17 +0000122 if (fclose_if_not_stdin(fp)) {
Denis Vlasenko0d873672008-11-11 22:43:10 +0000123 bb_simple_perror_msg(*argv);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000124 retval = EXIT_FAILURE;
125 }
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000126 die_if_ferror_stdout();
Denis Vlasenko0d873672008-11-11 22:43:10 +0000127 } else {
128 retval = EXIT_FAILURE;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000129 }
130 fmt = header_fmt_str;
131 } while (*++argv);
132
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000133 fflush_stdout_and_exit(retval);
Matt Kraaic0321f92000-09-27 04:09:22 +0000134}