1 /* vi: set sw=4 ts=4: */
3 * Mini more implementation for busybox
6 * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>.
8 * Latest version blended together by Erik Andersen <andersen@lineo.com>,
9 * based on the original more implementation by Bruce, and code from the
10 * Debian boot-floppies team.
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
32 #include <sys/ioctl.h>
33 #define BB_DECLARE_EXTERN
37 static const char more_usage[] = "more [FILE ...]\n"
38 #ifndef BB_FEATURE_TRIVIAL_HELP
39 "\nMore is a filter for viewing FILE one screenful at a time.\n"
43 /* ED: sparc termios is broken: revert back to old termio handling. */
44 #ifdef BB_FEATURE_USE_TERMIOS
48 # define termios termio
49 # define setTermSettings(fd,argp) ioctl(fd,TCSETAF,argp)
50 # define getTermSettings(fd,argp) ioctl(fd,TCGETA,argp)
53 # define setTermSettings(fd,argp) tcsetattr(fd,TCSANOW,argp)
54 # define getTermSettings(fd,argp) tcgetattr(fd, argp);
59 struct termios initial_settings, new_settings;
63 setTermSettings(fileno(cin), &initial_settings);
64 fprintf(stdout, "\n");
71 #define TERMINAL_WIDTH 79 /* not 80 in case terminal has linefold bug */
72 #define TERMINAL_HEIGHT 24
75 #if defined BB_FEATURE_AUTOWIDTH
76 #ifdef BB_FEATURE_USE_TERMIOS
77 static int terminal_width = TERMINAL_WIDTH;
79 static int terminal_height = TERMINAL_HEIGHT;
81 #define terminal_width TERMINAL_WIDTH
82 #define terminal_height TERMINAL_HEIGHT
87 extern int more_main(int argc, char **argv)
89 int c, lines = 0, input = 0;
94 #if defined BB_FEATURE_AUTOWIDTH && defined BB_FEATURE_USE_TERMIOS
95 struct winsize win = { 0, 0 };
102 && (strcmp(*argv, dash_dash_help) == 0 || strcmp(*argv, "-h") == 0)) {
109 file = fopen(*argv, "r");
115 fstat(fileno(file), &st);
117 #ifdef BB_FEATURE_USE_TERMIOS
118 cin = fopen("/dev/tty", "r");
120 cin = fopen("/dev/console", "r");
121 getTermSettings(fileno(cin), &initial_settings);
122 new_settings = initial_settings;
123 new_settings.c_cc[VMIN] = 1;
124 new_settings.c_cc[VTIME] = 0;
125 new_settings.c_lflag &= ~ICANON;
126 new_settings.c_lflag &= ~ECHO;
127 setTermSettings(fileno(cin), &new_settings);
129 #ifdef BB_FEATURE_AUTOWIDTH
130 ioctl(fileno(stdout), TIOCGWINSZ, &win);
132 terminal_height = win.ws_row - 2;
134 terminal_width = win.ws_col - 1;
137 (void) signal(SIGINT, gotsig);
138 (void) signal(SIGQUIT, gotsig);
139 (void) signal(SIGTERM, gotsig);
142 while ((c = getc(file)) != EOF) {
148 len = fprintf(stdout, "--More-- ");
150 len += fprintf(stdout, "(%d%% of %ld bytes)",
152 ((double) ftell(file) /
153 (double) st.st_size)),
156 len += fprintf(stdout, "%s",
157 #ifdef BB_FEATURE_USE_TERMIOS
165 #ifdef BB_FEATURE_USE_TERMIOS
171 #ifdef BB_FEATURE_USE_TERMIOS
172 /* Erase the "More" message */
175 while (++len <= terminal_width)
188 /* increment by just one line if we are at
189 * the end of this line*/
193 if (++lines == terminal_height)
202 } while (--argc > 0);
204 #ifdef BB_FEATURE_USE_TERMIOS