2000-02-09 01:28:47 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-12-10 13:12:50 +05:30
|
|
|
/*
|
2003-03-19 14:43:01 +05:30
|
|
|
* head implementation for busybox
|
1999-12-10 13:12:50 +05:30
|
|
|
*
|
2003-03-19 14:43:01 +05:30
|
|
|
* Copyright (C) 2003 Manuel Novoa III <mjn3@codepoet.org>
|
1999-12-10 13:12:50 +05:30
|
|
|
*
|
2006-01-30 07:00:39 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
1999-12-10 13:12:50 +05:30
|
|
|
*/
|
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
/* BB_AUDIT SUSv3 compliant */
|
|
|
|
/* BB_AUDIT GNU compatible -c, -q, and -v options in 'fancy' configuration. */
|
|
|
|
/* http://www.opengroup.org/onlinepubs/007904975/utilities/head.html */
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
1999-12-10 13:12:50 +05:30
|
|
|
|
2007-08-13 02:28:27 +05:30
|
|
|
static const char head_opts[] ALIGN1 =
|
2003-03-19 14:43:01 +05:30
|
|
|
"n:"
|
2005-12-13 16:18:45 +05:30
|
|
|
#if ENABLE_FEATURE_FANCY_HEAD
|
2003-03-19 14:43:01 +05:30
|
|
|
"c:qv"
|
|
|
|
#endif
|
|
|
|
;
|
1999-12-10 13:12:50 +05:30
|
|
|
|
2006-01-30 16:45:11 +05:30
|
|
|
static const struct suffix_mult head_suffixes[] = {
|
|
|
|
{ "b", 512 },
|
|
|
|
{ "k", 1024 },
|
|
|
|
{ "m", 1024*1024 },
|
2009-09-06 16:17:55 +05:30
|
|
|
{ "", 0 }
|
2006-01-30 16:45:11 +05:30
|
|
|
};
|
2006-09-17 21:58:10 +05:30
|
|
|
|
2007-08-13 02:28:27 +05:30
|
|
|
static const char header_fmt_str[] ALIGN1 = "\n==> %s <==\n";
|
1999-12-10 13:12:50 +05:30
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int head_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2000-02-09 01:28:47 +05:30
|
|
|
int head_main(int argc, char **argv)
|
1999-12-10 13:12:50 +05:30
|
|
|
{
|
2003-03-19 14:43:01 +05:30
|
|
|
unsigned long count = 10;
|
|
|
|
unsigned long i;
|
2005-12-13 16:18:45 +05:30
|
|
|
#if ENABLE_FEATURE_FANCY_HEAD
|
2003-03-19 14:43:01 +05:30
|
|
|
int count_bytes = 0;
|
|
|
|
int header_threshhold = 1;
|
|
|
|
#endif
|
2000-09-27 09:39:22 +05:30
|
|
|
FILE *fp;
|
2003-03-19 14:43:01 +05:30
|
|
|
const char *fmt;
|
|
|
|
char *p;
|
|
|
|
int opt;
|
|
|
|
int c;
|
|
|
|
int retval = EXIT_SUCCESS;
|
1999-12-10 13:12:50 +05:30
|
|
|
|
2006-12-22 19:26:36 +05:30
|
|
|
#if ENABLE_INCLUDE_SUSv2 || ENABLE_FEATURE_FANCY_HEAD
|
2003-03-19 14:43:01 +05:30
|
|
|
/* Allow legacy syntax of an initial numeric option without -n. */
|
2008-11-12 04:13:10 +05:30
|
|
|
if (argv[1] && argv[1][0] == '-'
|
2006-11-27 20:14:18 +05:30
|
|
|
&& isdigit(argv[1][1])
|
2003-03-19 14:43:01 +05:30
|
|
|
) {
|
|
|
|
--argc;
|
|
|
|
++argv;
|
|
|
|
p = (*argv) + 1;
|
|
|
|
goto GET_COUNT;
|
2002-05-18 03:48:04 +05:30
|
|
|
}
|
2005-12-11 08:39:05 +05:30
|
|
|
#endif
|
2002-05-18 03:48:04 +05:30
|
|
|
|
2006-10-04 02:30:06 +05:30
|
|
|
/* No size benefit in converting this to getopt32 */
|
2003-03-19 14:43:01 +05:30
|
|
|
while ((opt = getopt(argc, argv, head_opts)) > 0) {
|
2006-09-28 01:21:06 +05:30
|
|
|
switch (opt) {
|
2005-12-13 16:18:45 +05:30
|
|
|
#if ENABLE_FEATURE_FANCY_HEAD
|
2006-10-08 18:19:22 +05:30
|
|
|
case 'q':
|
|
|
|
header_threshhold = INT_MAX;
|
|
|
|
break;
|
|
|
|
case 'v':
|
|
|
|
header_threshhold = -1;
|
|
|
|
break;
|
|
|
|
case 'c':
|
|
|
|
count_bytes = 1;
|
|
|
|
/* fall through */
|
2003-03-19 14:43:01 +05:30
|
|
|
#endif
|
2006-10-08 18:19:22 +05:30
|
|
|
case 'n':
|
|
|
|
p = optarg;
|
2006-12-22 19:26:36 +05:30
|
|
|
#if ENABLE_INCLUDE_SUSv2 || ENABLE_FEATURE_FANCY_HEAD
|
|
|
|
GET_COUNT:
|
2005-12-13 16:18:45 +05:30
|
|
|
#endif
|
2006-10-08 18:19:22 +05:30
|
|
|
count = xatoul_sfx(p, head_suffixes);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
bb_show_usage();
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
1999-12-10 13:12:50 +05:30
|
|
|
}
|
|
|
|
|
2008-03-17 14:37:36 +05:30
|
|
|
argc -= optind;
|
2003-03-19 14:43:01 +05:30
|
|
|
argv += optind;
|
2008-03-17 14:37:36 +05:30
|
|
|
if (!*argv)
|
2007-01-30 04:21:00 +05:30
|
|
|
*--argv = (char*)"-";
|
1999-12-10 13:12:50 +05:30
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
fmt = header_fmt_str + 1;
|
2005-12-13 16:18:45 +05:30
|
|
|
#if ENABLE_FEATURE_FANCY_HEAD
|
2008-03-17 14:37:36 +05:30
|
|
|
if (argc <= header_threshhold) {
|
2003-03-19 14:43:01 +05:30
|
|
|
header_threshhold = 0;
|
|
|
|
}
|
|
|
|
#else
|
2008-03-17 14:37:36 +05:30
|
|
|
if (argc <= 1) {
|
|
|
|
fmt += 11; /* "" */
|
2003-03-19 14:43:01 +05:30
|
|
|
}
|
|
|
|
/* Now define some things here to avoid #ifdefs in the code below.
|
|
|
|
* These should optimize out of the if conditions below. */
|
|
|
|
#define header_threshhold 1
|
|
|
|
#define count_bytes 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
do {
|
2006-10-27 04:55:17 +05:30
|
|
|
fp = fopen_or_warn_stdin(*argv);
|
2006-10-27 04:51:47 +05:30
|
|
|
if (fp) {
|
2003-03-19 14:43:01 +05:30
|
|
|
if (fp == stdin) {
|
|
|
|
*argv = (char *) bb_msg_standard_input;
|
2000-09-27 09:39:22 +05:30
|
|
|
}
|
2003-03-19 14:43:01 +05:30
|
|
|
if (header_threshhold) {
|
2006-10-27 04:51:47 +05:30
|
|
|
printf(fmt, *argv);
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
2003-03-19 14:43:01 +05:30
|
|
|
i = count;
|
|
|
|
while (i && ((c = getc(fp)) != EOF)) {
|
|
|
|
if (count_bytes || (c == '\n')) {
|
|
|
|
--i;
|
|
|
|
}
|
|
|
|
putchar(c);
|
|
|
|
}
|
2006-10-27 04:55:17 +05:30
|
|
|
if (fclose_if_not_stdin(fp)) {
|
2008-11-12 04:13:10 +05:30
|
|
|
bb_simple_perror_msg(*argv);
|
2003-03-19 14:43:01 +05:30
|
|
|
retval = EXIT_FAILURE;
|
|
|
|
}
|
2006-10-27 04:51:47 +05:30
|
|
|
die_if_ferror_stdout();
|
2008-11-12 04:13:10 +05:30
|
|
|
} else {
|
|
|
|
retval = EXIT_FAILURE;
|
1999-12-10 13:12:50 +05:30
|
|
|
}
|
2003-03-19 14:43:01 +05:30
|
|
|
fmt = header_fmt_str;
|
|
|
|
} while (*++argv);
|
1999-12-10 13:12:50 +05:30
|
|
|
|
2006-10-27 04:51:47 +05:30
|
|
|
fflush_stdout_and_exit(retval);
|
2000-09-27 09:39:22 +05:30
|
|
|
}
|