2000-02-09 01:28:47 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-10-06 06:00:51 +05:30
|
|
|
/*
|
|
|
|
* Mini more implementation for busybox
|
|
|
|
*
|
1999-11-12 07:00:18 +05:30
|
|
|
* Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>.
|
2004-03-15 13:59:22 +05:30
|
|
|
* Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
|
1999-11-12 07:00:18 +05:30
|
|
|
*
|
2003-07-15 02:51:08 +05:30
|
|
|
* Latest version blended together by Erik Andersen <andersen@codepoet.org>,
|
2004-03-15 13:59:22 +05:30
|
|
|
* based on the original more implementation by Bruce, and code from the
|
1999-11-12 07:00:18 +05:30
|
|
|
* Debian boot-floppies team.
|
1999-10-06 06:00:51 +05:30
|
|
|
*
|
2003-01-14 03:39:50 +05:30
|
|
|
* Termios corrects by Vladimir Oleynik <dzo@simtreas.ru>
|
2001-06-26 07:36:08 +05:30
|
|
|
*
|
2006-08-03 21:11:12 +05:30
|
|
|
* Licensed under GPLv2 or later, see file License in this tarball for details.
|
1999-10-06 06:00:51 +05:30
|
|
|
*/
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2000-04-28 05:48:56 +05:30
|
|
|
|
2006-12-10 07:27:29 +05:30
|
|
|
#if ENABLE_FEATURE_USE_TERMIOS
|
2001-06-26 07:36:08 +05:30
|
|
|
|
2007-06-01 03:01:56 +05:30
|
|
|
struct globals {
|
|
|
|
int cin_fileno;
|
|
|
|
struct termios initial_settings;
|
|
|
|
struct termios new_settings;
|
|
|
|
};
|
|
|
|
#define G (*(struct globals*)bb_common_bufsiz1)
|
2007-08-16 02:12:52 +05:30
|
|
|
#define INIT_G() ((void)0)
|
2007-06-01 03:01:56 +05:30
|
|
|
#define initial_settings (G.initial_settings)
|
|
|
|
#define new_settings (G.new_settings )
|
|
|
|
#define cin_fileno (G.cin_fileno )
|
1999-10-13 03:56:06 +05:30
|
|
|
|
2007-06-01 03:01:56 +05:30
|
|
|
#define setTermSettings(fd, argp) tcsetattr(fd, TCSANOW, argp)
|
|
|
|
#define getTermSettings(fd, argp) tcgetattr(fd, argp)
|
2001-06-26 07:36:08 +05:30
|
|
|
|
2008-07-05 14:48:54 +05:30
|
|
|
static void gotsig(int sig UNUSED_PARAM)
|
2001-06-26 07:36:08 +05:30
|
|
|
{
|
2007-09-27 15:50:47 +05:30
|
|
|
bb_putchar('\n');
|
2007-06-01 03:01:56 +05:30
|
|
|
setTermSettings(cin_fileno, &initial_settings);
|
2001-01-18 08:27:08 +05:30
|
|
|
exit(EXIT_FAILURE);
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
2007-06-01 03:01:56 +05:30
|
|
|
|
|
|
|
#else /* !FEATURE_USE_TERMIOS */
|
|
|
|
#define INIT_G() ((void)0)
|
|
|
|
#define setTermSettings(fd, argp) ((void)0)
|
2006-12-10 07:27:29 +05:30
|
|
|
#endif /* FEATURE_USE_TERMIOS */
|
1999-11-09 07:17:36 +05:30
|
|
|
|
2007-08-16 02:12:52 +05:30
|
|
|
#define CONVERTED_TAB_SIZE 8
|
1999-11-09 07:17:36 +05:30
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int more_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 14:48:54 +05:30
|
|
|
int more_main(int argc UNUSED_PARAM, char **argv)
|
1999-10-05 21:54:54 +05:30
|
|
|
{
|
2007-08-16 02:12:52 +05:30
|
|
|
int c = c; /* for gcc */
|
|
|
|
int lines;
|
|
|
|
int input = 0;
|
|
|
|
int spaces = 0;
|
|
|
|
int please_display_more_prompt;
|
2000-02-09 01:28:47 +05:30
|
|
|
struct stat st;
|
|
|
|
FILE *file;
|
2004-03-27 15:19:57 +05:30
|
|
|
FILE *cin;
|
2007-08-16 02:12:52 +05:30
|
|
|
int len;
|
2008-05-19 03:58:26 +05:30
|
|
|
unsigned terminal_width;
|
|
|
|
unsigned terminal_height;
|
2000-02-09 01:28:47 +05:30
|
|
|
|
2007-06-01 03:01:56 +05:30
|
|
|
INIT_G();
|
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
argv++;
|
2007-03-10 22:02:14 +05:30
|
|
|
/* Another popular pager, most, detects when stdout
|
|
|
|
* is not a tty and turns into cat. This makes sense. */
|
|
|
|
if (!isatty(STDOUT_FILENO))
|
|
|
|
return bb_cat(argv);
|
2008-07-22 04:35:26 +05:30
|
|
|
cin = fopen_for_read(CURRENT_TTY);
|
2007-03-10 22:02:14 +05:30
|
|
|
if (!cin)
|
|
|
|
return bb_cat(argv);
|
1999-10-20 03:56:25 +05:30
|
|
|
|
2006-12-10 07:27:29 +05:30
|
|
|
#if ENABLE_FEATURE_USE_TERMIOS
|
2007-03-10 22:02:14 +05:30
|
|
|
cin_fileno = fileno(cin);
|
|
|
|
getTermSettings(cin_fileno, &initial_settings);
|
|
|
|
new_settings = initial_settings;
|
|
|
|
new_settings.c_lflag &= ~ICANON;
|
|
|
|
new_settings.c_lflag &= ~ECHO;
|
|
|
|
new_settings.c_cc[VMIN] = 1;
|
|
|
|
new_settings.c_cc[VTIME] = 0;
|
|
|
|
setTermSettings(cin_fileno, &new_settings);
|
2008-02-17 04:28:56 +05:30
|
|
|
bb_signals(0
|
|
|
|
+ (1 << SIGINT)
|
|
|
|
+ (1 << SIGQUIT)
|
|
|
|
+ (1 << SIGTERM)
|
|
|
|
, gotsig);
|
2001-06-26 07:36:08 +05:30
|
|
|
#endif
|
|
|
|
|
|
|
|
do {
|
2006-12-10 07:27:29 +05:30
|
|
|
file = stdin;
|
2007-03-10 22:02:14 +05:30
|
|
|
if (*argv) {
|
2006-10-27 04:55:17 +05:30
|
|
|
file = fopen_or_warn(*argv, "r");
|
2006-12-10 07:27:29 +05:30
|
|
|
if (!file)
|
2007-03-10 22:02:14 +05:30
|
|
|
continue;
|
2006-12-10 07:27:29 +05:30
|
|
|
}
|
2001-12-06 12:54:29 +05:30
|
|
|
st.st_size = 0;
|
2001-06-26 07:36:08 +05:30
|
|
|
fstat(fileno(file), &st);
|
2000-02-09 01:28:47 +05:30
|
|
|
|
2007-08-16 02:12:52 +05:30
|
|
|
please_display_more_prompt = 0;
|
2007-03-10 22:02:14 +05:30
|
|
|
/* never returns w, h <= 1 */
|
2006-05-28 06:49:06 +05:30
|
|
|
get_terminal_width_height(fileno(cin), &terminal_width, &terminal_height);
|
2007-03-10 22:02:14 +05:30
|
|
|
terminal_height -= 1;
|
2003-09-15 14:03:45 +05:30
|
|
|
|
2006-12-10 07:27:29 +05:30
|
|
|
len = 0;
|
2001-02-23 07:09:26 +05:30
|
|
|
lines = 0;
|
2007-08-16 02:12:52 +05:30
|
|
|
while (spaces || (c = getc(file)) != EOF) {
|
|
|
|
int wrap;
|
|
|
|
if (spaces)
|
|
|
|
spaces--;
|
|
|
|
loop_top:
|
|
|
|
if (input != 'r' && please_display_more_prompt) {
|
2001-01-18 08:27:08 +05:30
|
|
|
len = printf("--More-- ");
|
2007-08-16 02:12:52 +05:30
|
|
|
if (st.st_size > 0) {
|
2006-12-10 07:27:29 +05:30
|
|
|
len += printf("(%d%% of %"OFF_FMT"d bytes)",
|
|
|
|
(int) (ftello(file)*100 / st.st_size),
|
|
|
|
st.st_size);
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
|
|
|
fflush(stdout);
|
2000-06-16 05:56:51 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* We've just displayed the "--More--" prompt, so now we need
|
|
|
|
* to get input from the user.
|
|
|
|
*/
|
2007-08-16 02:12:52 +05:30
|
|
|
for (;;) {
|
|
|
|
input = getc(cin);
|
|
|
|
input = tolower(input);
|
2006-12-10 07:27:29 +05:30
|
|
|
#if !ENABLE_FEATURE_USE_TERMIOS
|
2007-08-16 02:12:52 +05:30
|
|
|
printf("\033[A"); /* up cursor */
|
2000-04-28 05:48:56 +05:30
|
|
|
#endif
|
2007-08-16 02:12:52 +05:30
|
|
|
/* Erase the last message */
|
|
|
|
printf("\r%*s\r", len, "");
|
|
|
|
|
|
|
|
/* Due to various multibyte escape
|
|
|
|
* sequences, it's not ok to accept
|
|
|
|
* any input as a command to scroll
|
|
|
|
* the screen. We only allow known
|
|
|
|
* commands, else we show help msg. */
|
|
|
|
if (input == ' ' || input == '\n' || input == 'q' || input == 'r')
|
|
|
|
break;
|
|
|
|
len = printf("(Enter:next line Space:next page Q:quit R:show the rest)");
|
|
|
|
}
|
2006-12-10 07:27:29 +05:30
|
|
|
len = 0;
|
2001-02-23 07:09:26 +05:30
|
|
|
lines = 0;
|
2007-08-16 02:12:52 +05:30
|
|
|
please_display_more_prompt = 0;
|
2001-04-13 02:21:01 +05:30
|
|
|
|
|
|
|
if (input == 'q')
|
|
|
|
goto end;
|
2007-08-16 02:12:52 +05:30
|
|
|
|
|
|
|
/* The user may have resized the terminal.
|
|
|
|
* Re-read the dimensions. */
|
2007-08-17 13:59:48 +05:30
|
|
|
#if ENABLE_FEATURE_USE_TERMIOS
|
2007-08-16 02:12:52 +05:30
|
|
|
get_terminal_width_height(cin_fileno, &terminal_width, &terminal_height);
|
|
|
|
terminal_height -= 1;
|
2007-08-17 13:59:48 +05:30
|
|
|
#endif
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
2000-06-16 05:56:51 +05:30
|
|
|
|
2007-08-16 02:12:52 +05:30
|
|
|
/* Crudely convert tabs into spaces, which are
|
|
|
|
* a bajillion times easier to deal with. */
|
|
|
|
if (c == '\t') {
|
|
|
|
spaces = CONVERTED_TAB_SIZE - 1;
|
|
|
|
c = ' ';
|
2007-12-24 19:39:19 +05:30
|
|
|
}
|
2007-08-16 02:12:52 +05:30
|
|
|
|
2004-03-15 13:59:22 +05:30
|
|
|
/*
|
2000-06-16 05:56:51 +05:30
|
|
|
* There are two input streams to worry about here:
|
|
|
|
*
|
2007-06-01 03:01:56 +05:30
|
|
|
* c : the character we are reading from the file being "mored"
|
|
|
|
* input: a character received from the keyboard
|
2000-06-16 05:56:51 +05:30
|
|
|
*
|
|
|
|
* If we hit a newline in the _file_ stream, we want to test and
|
|
|
|
* see if any characters have been hit in the _input_ stream. This
|
|
|
|
* allows the user to quit while in the middle of a file.
|
|
|
|
*/
|
2007-08-16 02:12:52 +05:30
|
|
|
wrap = (++len > terminal_width);
|
|
|
|
if (c == '\n' || wrap) {
|
|
|
|
/* Then outputting this character
|
|
|
|
* will move us to a new line. */
|
|
|
|
if (++lines >= terminal_height || input == '\n')
|
|
|
|
please_display_more_prompt = 1;
|
2006-12-10 07:27:29 +05:30
|
|
|
len = 0;
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
2007-08-16 02:12:52 +05:30
|
|
|
if (c != '\n' && wrap) {
|
|
|
|
/* Then outputting this will also put a character on
|
|
|
|
* the beginning of that new line. Thus we first want to
|
|
|
|
* display the prompt (if any), so we skip the putchar()
|
|
|
|
* and go back to the top of the loop, without reading
|
|
|
|
* a new character. */
|
|
|
|
goto loop_top;
|
|
|
|
}
|
|
|
|
/* My small mind cannot fathom backspaces and UTF-8 */
|
|
|
|
putchar(c);
|
1999-11-09 07:17:36 +05:30
|
|
|
}
|
2000-02-09 01:28:47 +05:30
|
|
|
fclose(file);
|
|
|
|
fflush(stdout);
|
2007-03-10 22:02:14 +05:30
|
|
|
} while (*argv && *++argv);
|
2006-12-10 07:27:29 +05:30
|
|
|
end:
|
2007-06-01 03:01:56 +05:30
|
|
|
setTermSettings(cin_fileno, &initial_settings);
|
2001-04-13 02:21:01 +05:30
|
|
|
return 0;
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|