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>.
|
2003-07-15 02:51:08 +05:30
|
|
|
* Copyright (C) 1999-2003 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>,
|
1999-11-12 07:00:18 +05:30
|
|
|
* based on the original more implementation by Bruce, and code from the
|
|
|
|
* 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
|
|
|
*
|
1999-10-06 06:00:51 +05:30
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1999-10-05 21:54:54 +05:30
|
|
|
#include <stdio.h>
|
1999-10-20 03:56:25 +05:30
|
|
|
#include <fcntl.h>
|
1999-10-06 06:00:51 +05:30
|
|
|
#include <signal.h>
|
2001-01-27 13:54:39 +05:30
|
|
|
#include <stdlib.h>
|
2001-06-26 07:36:08 +05:30
|
|
|
#include <unistd.h>
|
1999-11-09 07:17:36 +05:30
|
|
|
#include <sys/ioctl.h>
|
2001-02-20 11:44:08 +05:30
|
|
|
#include "busybox.h"
|
1999-10-13 03:56:06 +05:30
|
|
|
|
2001-01-26 12:20:46 +05:30
|
|
|
static FILE *cin;
|
2000-04-28 05:48:56 +05:30
|
|
|
|
2001-10-24 10:30:29 +05:30
|
|
|
#ifdef CONFIG_FEATURE_USE_TERMIOS
|
2001-06-26 07:36:08 +05:30
|
|
|
#include <termios.h>
|
|
|
|
#define setTermSettings(fd,argp) tcsetattr(fd,TCSANOW,argp)
|
|
|
|
#define getTermSettings(fd,argp) tcgetattr(fd, argp);
|
|
|
|
|
2000-11-07 12:22:13 +05:30
|
|
|
static struct termios initial_settings, new_settings;
|
1999-10-13 03:56:06 +05:30
|
|
|
|
2001-06-26 07:36:08 +05:30
|
|
|
static void set_tty_to_initial_mode(void)
|
2000-02-09 01:28:47 +05:30
|
|
|
{
|
2000-04-21 06:56:49 +05:30
|
|
|
setTermSettings(fileno(cin), &initial_settings);
|
2001-06-26 07:36:08 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
static void gotsig(int sig)
|
|
|
|
{
|
2001-01-18 08:27:08 +05:30
|
|
|
putchar('\n');
|
|
|
|
exit(EXIT_FAILURE);
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
2001-10-24 10:30:29 +05:30
|
|
|
#endif /* CONFIG_FEATURE_USE_TERMIOS */
|
1999-11-09 07:17:36 +05:30
|
|
|
|
|
|
|
|
2000-06-22 04:23:16 +05:30
|
|
|
static int terminal_width = 79; /* not 80 in case terminal has linefold bug */
|
|
|
|
static int terminal_height = 24;
|
1999-11-09 07:17:36 +05:30
|
|
|
|
|
|
|
|
1999-10-06 06:00:51 +05:30
|
|
|
extern int more_main(int argc, char **argv)
|
1999-10-05 21:54:54 +05:30
|
|
|
{
|
2001-02-23 07:09:26 +05:30
|
|
|
int c, lines, input = 0;
|
2001-06-26 07:36:08 +05:30
|
|
|
int please_display_more_prompt = -1;
|
2000-02-09 01:28:47 +05:30
|
|
|
struct stat st;
|
|
|
|
FILE *file;
|
2001-02-23 03:19:32 +05:30
|
|
|
int len, page_height;
|
2000-02-09 01:28:47 +05:30
|
|
|
|
|
|
|
argc--;
|
|
|
|
argv++;
|
1999-10-20 03:56:25 +05:30
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
|
2001-06-26 07:36:08 +05:30
|
|
|
/* not use inputing from terminal if usage: more > outfile */
|
|
|
|
if(isatty(fileno(stdout))) {
|
2001-07-23 20:22:08 +05:30
|
|
|
cin = fopen(CURRENT_TTY, "r");
|
2000-02-09 01:28:47 +05:30
|
|
|
if (!cin)
|
2003-03-19 14:43:01 +05:30
|
|
|
cin = bb_xfopen(CONSOLE_DEV, "r");
|
2001-06-26 07:36:08 +05:30
|
|
|
please_display_more_prompt = 0;
|
2001-10-24 10:30:29 +05:30
|
|
|
#ifdef CONFIG_FEATURE_USE_TERMIOS
|
2000-04-21 06:56:49 +05:30
|
|
|
getTermSettings(fileno(cin), &initial_settings);
|
2000-02-09 01:28:47 +05:30
|
|
|
new_settings = initial_settings;
|
|
|
|
new_settings.c_lflag &= ~ICANON;
|
|
|
|
new_settings.c_lflag &= ~ECHO;
|
2001-06-26 07:36:08 +05:30
|
|
|
#ifndef linux
|
|
|
|
/* Hmm, in linux c_cc[] not parsed if set ~ICANON */
|
|
|
|
new_settings.c_cc[VMIN] = 1;
|
|
|
|
new_settings.c_cc[VTIME] = 0;
|
|
|
|
#endif
|
2000-04-21 06:56:49 +05:30
|
|
|
setTermSettings(fileno(cin), &new_settings);
|
2001-06-26 07:36:08 +05:30
|
|
|
atexit(set_tty_to_initial_mode);
|
|
|
|
(void) signal(SIGINT, gotsig);
|
|
|
|
(void) signal(SIGQUIT, gotsig);
|
|
|
|
(void) signal(SIGTERM, gotsig);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
do {
|
|
|
|
if (argc == 0) {
|
|
|
|
file = stdin;
|
|
|
|
} else
|
2003-03-19 14:43:01 +05:30
|
|
|
file = bb_wfopen(*argv, "r");
|
2001-06-26 07:36:08 +05:30
|
|
|
if(file==0)
|
|
|
|
goto loop;
|
|
|
|
|
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
|
|
|
|
2001-06-26 07:36:08 +05:30
|
|
|
if(please_display_more_prompt>0)
|
|
|
|
please_display_more_prompt = 0;
|
|
|
|
|
2003-09-15 14:03:45 +05:30
|
|
|
get_terminal_width_height(0, &terminal_width, &terminal_height);
|
|
|
|
if (terminal_height > 4)
|
|
|
|
terminal_height -= 2;
|
|
|
|
if (terminal_width > 0)
|
|
|
|
terminal_width -= 1;
|
|
|
|
|
2001-02-23 07:09:26 +05:30
|
|
|
len=0;
|
|
|
|
lines = 0;
|
2001-02-23 03:19:32 +05:30
|
|
|
page_height = terminal_height;
|
2000-02-09 01:28:47 +05:30
|
|
|
while ((c = getc(file)) != EOF) {
|
|
|
|
|
2001-06-26 07:36:08 +05:30
|
|
|
if (please_display_more_prompt>0) {
|
2001-01-18 08:27:08 +05:30
|
|
|
len = printf("--More-- ");
|
2001-12-06 12:54:29 +05:30
|
|
|
if (file != stdin && st.st_size > 0) {
|
2000-09-21 07:53:30 +05:30
|
|
|
#if _FILE_OFFSET_BITS == 64
|
2001-01-18 08:27:08 +05:30
|
|
|
len += printf("(%d%% of %lld bytes)",
|
2001-04-06 04:56:44 +05:30
|
|
|
(int) (100 * ((double) ftell(file) /
|
|
|
|
(double) st.st_size)), (long long)st.st_size);
|
2000-09-21 07:53:30 +05:30
|
|
|
#else
|
2001-01-18 08:27:08 +05:30
|
|
|
len += printf("(%d%% of %ld bytes)",
|
2001-04-06 04:56:44 +05:30
|
|
|
(int) (100 * ((double) ftell(file) /
|
|
|
|
(double) st.st_size)), (long)st.st_size);
|
2000-09-21 07:53:30 +05:30
|
|
|
#endif
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
1999-10-13 03:56:06 +05:30
|
|
|
|
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.
|
|
|
|
*/
|
2000-02-09 01:28:47 +05:30
|
|
|
input = getc(cin);
|
2001-10-24 10:30:29 +05:30
|
|
|
#ifndef CONFIG_FEATURE_USE_TERMIOS
|
2001-06-26 07:36:08 +05:30
|
|
|
printf("\033[A"); /* up cursor */
|
2000-04-28 05:48:56 +05:30
|
|
|
#endif
|
2000-02-09 01:28:47 +05:30
|
|
|
/* Erase the "More" message */
|
2001-04-06 21:32:22 +05:30
|
|
|
putc('\r', stdout);
|
2000-02-09 01:28:47 +05:30
|
|
|
while (--len >= 0)
|
|
|
|
putc(' ', stdout);
|
2001-04-06 21:32:22 +05:30
|
|
|
putc('\r', stdout);
|
2000-02-09 01:28:47 +05:30
|
|
|
fflush(stdout);
|
2001-02-22 05:52:46 +05:30
|
|
|
len=0;
|
2001-02-23 07:09:26 +05:30
|
|
|
lines = 0;
|
2001-02-23 03:19:32 +05:30
|
|
|
page_height = terminal_height;
|
2001-02-23 07:09:26 +05:30
|
|
|
please_display_more_prompt = 0;
|
2001-04-13 02:21:01 +05:30
|
|
|
|
|
|
|
if (input == 'q')
|
|
|
|
goto end;
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
2000-06-16 05:56:51 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* There are two input streams to worry about here:
|
|
|
|
*
|
2001-02-23 07:09:26 +05:30
|
|
|
* c : the character we are reading from the file being "mored"
|
2000-06-16 05:56:51 +05:30
|
|
|
* input : a character received from the keyboard
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2000-02-09 01:28:47 +05:30
|
|
|
if (c == '\n') {
|
2001-04-13 02:21:01 +05:30
|
|
|
/* increment by just one line if we are at
|
|
|
|
* the end of this line */
|
|
|
|
if (input == '\n')
|
2001-06-26 07:36:08 +05:30
|
|
|
if(please_display_more_prompt==0)
|
2000-06-16 05:56:51 +05:30
|
|
|
please_display_more_prompt = 1;
|
2001-02-22 05:52:46 +05:30
|
|
|
/* Adjust the terminal height for any overlap, so that
|
|
|
|
* no lines get lost off the top. */
|
2001-02-23 07:09:26 +05:30
|
|
|
if (len >= terminal_width) {
|
2001-05-17 00:23:34 +05:30
|
|
|
int quot, rem;
|
|
|
|
quot = len / terminal_width;
|
|
|
|
rem = len - (quot * terminal_width);
|
|
|
|
if (quot) {
|
|
|
|
if (rem)
|
|
|
|
page_height-=quot;
|
2001-02-23 03:19:32 +05:30
|
|
|
else
|
2001-05-17 00:23:34 +05:30
|
|
|
page_height-=(quot-1);
|
2001-02-23 03:19:32 +05:30
|
|
|
}
|
2001-02-22 05:52:46 +05:30
|
|
|
}
|
2001-02-23 07:09:26 +05:30
|
|
|
if (++lines >= page_height) {
|
2001-06-26 07:36:08 +05:30
|
|
|
if(please_display_more_prompt==0)
|
2000-06-16 05:56:51 +05:30
|
|
|
please_display_more_prompt = 1;
|
2001-02-22 05:52:46 +05:30
|
|
|
}
|
|
|
|
len=0;
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
2000-06-22 04:23:16 +05:30
|
|
|
/*
|
|
|
|
* If we just read a newline from the file being 'mored' and any
|
|
|
|
* key other than a return is hit, scroll by one page
|
|
|
|
*/
|
2000-02-09 01:28:47 +05:30
|
|
|
putc(c, stdout);
|
2001-02-22 05:52:46 +05:30
|
|
|
len++;
|
1999-11-09 07:17:36 +05:30
|
|
|
}
|
2000-02-09 01:28:47 +05:30
|
|
|
fclose(file);
|
|
|
|
fflush(stdout);
|
2001-06-26 07:36:08 +05:30
|
|
|
loop:
|
2000-02-09 01:28:47 +05:30
|
|
|
argv++;
|
|
|
|
} while (--argc > 0);
|
|
|
|
end:
|
2001-04-13 02:21:01 +05:30
|
|
|
return 0;
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|