blob: 669aae8193eb276dfd7e7eead3ae9049948b9926 [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 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02007 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
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
Dan Fandrich2d1a78b2010-09-30 14:31:12 -070016/* This is a NOEXEC applet. Be very careful! */
17
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000018static const char head_opts[] ALIGN1 =
Manuel Novoa III cad53642003-03-19 09:13:01 +000019 "n:"
Bernhard Reutner-Fischer5816ccb2005-12-13 10:48:45 +000020#if ENABLE_FEATURE_FANCY_HEAD
Manuel Novoa III cad53642003-03-19 09:13:01 +000021 "c:qv"
22#endif
23 ;
John Beppu3157b1f1999-12-10 07:42:50 +000024
"Vladimir N. Oleynik"e75b41d2006-01-30 11:15:11 +000025static const struct suffix_mult head_suffixes[] = {
26 { "b", 512 },
27 { "k", 1024 },
28 { "m", 1024*1024 },
Denys Vlasenko043b1e52009-09-06 12:47:55 +020029 { "", 0 }
"Vladimir N. Oleynik"e75b41d2006-01-30 11:15:11 +000030};
Denis Vlasenko9213a9e2006-09-17 16:28:10 +000031
Denys Vlasenkoea8b2522010-06-02 12:57:26 +020032#define header_fmt_str "\n==> %s <==\n"
John Beppu3157b1f1999-12-10 07:42:50 +000033
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000034int head_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Erik Andersene49d5ec2000-02-08 19:58:47 +000035int head_main(int argc, char **argv)
John Beppu3157b1f1999-12-10 07:42:50 +000036{
Manuel Novoa III cad53642003-03-19 09:13:01 +000037 unsigned long count = 10;
38 unsigned long i;
Bernhard Reutner-Fischer5816ccb2005-12-13 10:48:45 +000039#if ENABLE_FEATURE_FANCY_HEAD
Manuel Novoa III cad53642003-03-19 09:13:01 +000040 int count_bytes = 0;
41 int header_threshhold = 1;
42#endif
Matt Kraaic0321f92000-09-27 04:09:22 +000043 FILE *fp;
Manuel Novoa III cad53642003-03-19 09:13:01 +000044 const char *fmt;
45 char *p;
46 int opt;
47 int c;
48 int retval = EXIT_SUCCESS;
John Beppu3157b1f1999-12-10 07:42:50 +000049
Denis Vlasenko08492072006-12-22 13:56:36 +000050#if ENABLE_INCLUDE_SUSv2 || ENABLE_FEATURE_FANCY_HEAD
Manuel Novoa III cad53642003-03-19 09:13:01 +000051 /* Allow legacy syntax of an initial numeric option without -n. */
Denis Vlasenko0d873672008-11-11 22:43:10 +000052 if (argv[1] && argv[1][0] == '-'
Denis Vlasenko459903b2006-11-27 14:44:18 +000053 && isdigit(argv[1][1])
Manuel Novoa III cad53642003-03-19 09:13:01 +000054 ) {
55 --argc;
56 ++argv;
57 p = (*argv) + 1;
58 goto GET_COUNT;
Robert Griebl13c26fc2002-05-17 22:18:04 +000059 }
Glenn L McGrath0bd02572005-12-11 03:09:05 +000060#endif
Robert Griebl13c26fc2002-05-17 22:18:04 +000061
Denis Vlasenko67b23e62006-10-03 21:00:06 +000062 /* No size benefit in converting this to getopt32 */
Manuel Novoa III cad53642003-03-19 09:13:01 +000063 while ((opt = getopt(argc, argv, head_opts)) > 0) {
Denis Vlasenkoc16bd212006-09-27 19:51:06 +000064 switch (opt) {
Bernhard Reutner-Fischer5816ccb2005-12-13 10:48:45 +000065#if ENABLE_FEATURE_FANCY_HEAD
Denis Vlasenko13858992006-10-08 12:49:22 +000066 case 'q':
67 header_threshhold = INT_MAX;
68 break;
69 case 'v':
70 header_threshhold = -1;
71 break;
72 case 'c':
73 count_bytes = 1;
74 /* fall through */
Manuel Novoa III cad53642003-03-19 09:13:01 +000075#endif
Denis Vlasenko13858992006-10-08 12:49:22 +000076 case 'n':
77 p = optarg;
Denis Vlasenko08492072006-12-22 13:56:36 +000078#if ENABLE_INCLUDE_SUSv2 || ENABLE_FEATURE_FANCY_HEAD
79 GET_COUNT:
Bernhard Reutner-Fischer5816ccb2005-12-13 10:48:45 +000080#endif
Denis Vlasenko13858992006-10-08 12:49:22 +000081 count = xatoul_sfx(p, head_suffixes);
Denis Vlasenko13858992006-10-08 12:49:22 +000082 break;
83 default:
84 bb_show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +000085 }
86 }
87
Denis Vlasenko62a90cd2008-03-17 09:07:36 +000088 argc -= optind;
Manuel Novoa III cad53642003-03-19 09:13:01 +000089 argv += optind;
Denis Vlasenko62a90cd2008-03-17 09:07:36 +000090 if (!*argv)
Denis Vlasenkoa41fdf32007-01-29 22:51:00 +000091 *--argv = (char*)"-";
John Beppu3157b1f1999-12-10 07:42:50 +000092
Manuel Novoa III cad53642003-03-19 09:13:01 +000093 fmt = header_fmt_str + 1;
Bernhard Reutner-Fischer5816ccb2005-12-13 10:48:45 +000094#if ENABLE_FEATURE_FANCY_HEAD
Denis Vlasenko62a90cd2008-03-17 09:07:36 +000095 if (argc <= header_threshhold) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000096 header_threshhold = 0;
97 }
98#else
Denis Vlasenko62a90cd2008-03-17 09:07:36 +000099 if (argc <= 1) {
100 fmt += 11; /* "" */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000101 }
102 /* Now define some things here to avoid #ifdefs in the code below.
103 * These should optimize out of the if conditions below. */
104#define header_threshhold 1
105#define count_bytes 0
106#endif
107
108 do {
Denis Vlasenkoddec5af2006-10-26 23:25:17 +0000109 fp = fopen_or_warn_stdin(*argv);
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000110 if (fp) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000111 if (fp == stdin) {
112 *argv = (char *) bb_msg_standard_input;
113 }
114 if (header_threshhold) {
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000115 printf(fmt, *argv);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000116 }
117 i = count;
118 while (i && ((c = getc(fp)) != EOF)) {
119 if (count_bytes || (c == '\n')) {
120 --i;
121 }
122 putchar(c);
123 }
Denis Vlasenkoddec5af2006-10-26 23:25:17 +0000124 if (fclose_if_not_stdin(fp)) {
Denis Vlasenko0d873672008-11-11 22:43:10 +0000125 bb_simple_perror_msg(*argv);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000126 retval = EXIT_FAILURE;
127 }
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000128 die_if_ferror_stdout();
Denis Vlasenko0d873672008-11-11 22:43:10 +0000129 } else {
130 retval = EXIT_FAILURE;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000131 }
132 fmt = header_fmt_str;
133 } while (*++argv);
134
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000135 fflush_stdout_and_exit(retval);
Matt Kraaic0321f92000-09-27 04:09:22 +0000136}