blob: 45b7c1274aa65f4f59f583c0ee5aa674dd937ad9 [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Eric Andersen4bea32a1999-10-06 00:30:51 +00002/*
3 * Mini more implementation for busybox
4 *
Eric Andersenc4996011999-10-20 22:08:37 +00005 *
Eric Andersen96bcfd31999-11-12 01:30:18 +00006 * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>.
7 *
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.
Eric Andersen4bea32a1999-10-06 00:30:51 +000011 *
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.
16 *
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.
21 *
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
25 *
26 */
27
Eric Andersencc8ed391999-10-05 16:24:54 +000028#include "internal.h"
29#include <stdio.h>
Eric Andersenf5a38381999-10-19 22:26:25 +000030#include <fcntl.h>
Eric Andersen4bea32a1999-10-06 00:30:51 +000031#include <signal.h>
Eric Andersen50d63601999-11-09 01:47:36 +000032#include <sys/ioctl.h>
Erik Andersen7ab9c7e2000-05-12 19:41:47 +000033#define BB_DECLARE_EXTERN
34#define bb_need_help
35#include "messages.c"
Eric Andersen3cf52d11999-10-12 22:26:06 +000036
Erik Andersen1d1d9502000-04-21 01:26:49 +000037/* ED: sparc termios is broken: revert back to old termio handling. */
Eric Andersen50d63601999-11-09 01:47:36 +000038#ifdef BB_FEATURE_USE_TERMIOS
Mark Whitley4fa84e62000-06-21 22:53:16 +000039# if #cpu(sparc)
40# include <termio.h>
41# define termios termio
42# define setTermSettings(fd,argp) ioctl(fd,TCSETAF,argp)
43# define getTermSettings(fd,argp) ioctl(fd,TCGETA,argp)
44# else
45# include <termios.h>
46# define setTermSettings(fd,argp) tcsetattr(fd,TCSANOW,argp)
47# define getTermSettings(fd,argp) tcgetattr(fd, argp);
48# endif
Eric Andersen3cf52d11999-10-12 22:26:06 +000049
Erik Andersene49d5ec2000-02-08 19:58:47 +000050FILE *cin;
Erik Andersen4f3f7572000-04-28 00:18:56 +000051
Erik Andersen1d1d9502000-04-21 01:26:49 +000052struct termios initial_settings, new_settings;
Eric Andersen3cf52d11999-10-12 22:26:06 +000053
Erik Andersene49d5ec2000-02-08 19:58:47 +000054void gotsig(int sig)
55{
Erik Andersen1d1d9502000-04-21 01:26:49 +000056 setTermSettings(fileno(cin), &initial_settings);
Erik Andersene49d5ec2000-02-08 19:58:47 +000057 fprintf(stdout, "\n");
58 exit(TRUE);
59}
Mark Whitley4fa84e62000-06-21 22:53:16 +000060#endif /* BB_FEATURE_USE_TERMIOS */
Eric Andersencc8ed391999-10-05 16:24:54 +000061
Eric Andersen50d63601999-11-09 01:47:36 +000062
Mark Whitley4fa84e62000-06-21 22:53:16 +000063static int terminal_width = 79; /* not 80 in case terminal has linefold bug */
64static int terminal_height = 24;
Eric Andersen50d63601999-11-09 01:47:36 +000065
66
Eric Andersen4bea32a1999-10-06 00:30:51 +000067extern int more_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +000068{
Erik Andersene49d5ec2000-02-08 19:58:47 +000069 int c, lines = 0, input = 0;
Mark Whitleyb9913952000-06-16 00:26:51 +000070 int please_display_more_prompt = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +000071 struct stat st;
72 FILE *file;
73
Erik Andersen4f3f7572000-04-28 00:18:56 +000074#if defined BB_FEATURE_AUTOWIDTH && defined BB_FEATURE_USE_TERMIOS
Pavel Roskinf626dcb2000-07-14 15:55:41 +000075 struct winsize win = { 0, 0, 0, 0 };
Eric Andersen50d63601999-11-09 01:47:36 +000076#endif
Eric Andersen4bea32a1999-10-06 00:30:51 +000077
Erik Andersene49d5ec2000-02-08 19:58:47 +000078 argc--;
Eric Andersen4bea32a1999-10-06 00:30:51 +000079 argv++;
Eric Andersen4bea32a1999-10-06 00:30:51 +000080
Erik Andersene49d5ec2000-02-08 19:58:47 +000081 do {
82 if (argc == 0) {
83 file = stdin;
84 } else
85 file = fopen(*argv, "r");
86
87 if (file == NULL) {
88 perror(*argv);
89 exit(FALSE);
90 }
91 fstat(fileno(file), &st);
92
93#ifdef BB_FEATURE_USE_TERMIOS
94 cin = fopen("/dev/tty", "r");
95 if (!cin)
96 cin = fopen("/dev/console", "r");
Erik Andersen1d1d9502000-04-21 01:26:49 +000097 getTermSettings(fileno(cin), &initial_settings);
Erik Andersene49d5ec2000-02-08 19:58:47 +000098 new_settings = initial_settings;
Erik Andersene90f4042000-04-21 21:53:58 +000099 new_settings.c_cc[VMIN] = 1;
100 new_settings.c_cc[VTIME] = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000101 new_settings.c_lflag &= ~ICANON;
102 new_settings.c_lflag &= ~ECHO;
Erik Andersen1d1d9502000-04-21 01:26:49 +0000103 setTermSettings(fileno(cin), &new_settings);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000104
Mark Whitley4fa84e62000-06-21 22:53:16 +0000105# ifdef BB_FEATURE_AUTOWIDTH
Erik Andersene49d5ec2000-02-08 19:58:47 +0000106 ioctl(fileno(stdout), TIOCGWINSZ, &win);
107 if (win.ws_row > 4)
108 terminal_height = win.ws_row - 2;
109 if (win.ws_col > 0)
110 terminal_width = win.ws_col - 1;
Mark Whitley4fa84e62000-06-21 22:53:16 +0000111# endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000112
113 (void) signal(SIGINT, gotsig);
114 (void) signal(SIGQUIT, gotsig);
115 (void) signal(SIGTERM, gotsig);
116
117#endif
118 while ((c = getc(file)) != EOF) {
Mark Whitleyb9913952000-06-16 00:26:51 +0000119 if (please_display_more_prompt) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000120 int len = 0;
121
Mark Whitleyb9913952000-06-16 00:26:51 +0000122 please_display_more_prompt = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000123 lines = 0;
124 len = fprintf(stdout, "--More-- ");
125 if (file != stdin) {
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000126#if _FILE_OFFSET_BITS == 64
127 len += fprintf(stdout, "(%d%% of %lld bytes)",
128#else
Erik Andersene49d5ec2000-02-08 19:58:47 +0000129 len += fprintf(stdout, "(%d%% of %ld bytes)",
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000130#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000131 (int) (100 *
132 ((double) ftell(file) /
133 (double) st.st_size)),
134 st.st_size);
135 }
136 len += fprintf(stdout, "%s",
137#ifdef BB_FEATURE_USE_TERMIOS
138 ""
139#else
140 "\n"
141#endif
142 );
143
144 fflush(stdout);
Mark Whitleyb9913952000-06-16 00:26:51 +0000145
146 /*
147 * We've just displayed the "--More--" prompt, so now we need
148 * to get input from the user.
149 */
Erik Andersen4f3f7572000-04-28 00:18:56 +0000150#ifdef BB_FEATURE_USE_TERMIOS
Erik Andersene49d5ec2000-02-08 19:58:47 +0000151 input = getc(cin);
Erik Andersen4f3f7572000-04-28 00:18:56 +0000152#else
153 input = getc(stdin);
154#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000155
156#ifdef BB_FEATURE_USE_TERMIOS
157 /* Erase the "More" message */
158 while (--len >= 0)
159 putc('\b', stdout);
160 while (++len <= terminal_width)
161 putc(' ', stdout);
162 while (--len >= 0)
163 putc('\b', stdout);
164 fflush(stdout);
165#endif
166
167 }
Mark Whitleyb9913952000-06-16 00:26:51 +0000168
169 /*
170 * There are two input streams to worry about here:
171 *
172 * c : the character we are reading from the file being "mored"
173 * input : a character received from the keyboard
174 *
175 * If we hit a newline in the _file_ stream, we want to test and
176 * see if any characters have been hit in the _input_ stream. This
177 * allows the user to quit while in the middle of a file.
178 */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000179 if (c == '\n') {
180 switch (input) {
181 case 'q':
182 goto end;
183 case '\n':
184 /* increment by just one line if we are at
185 * the end of this line*/
Mark Whitleyb9913952000-06-16 00:26:51 +0000186 please_display_more_prompt = 1;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000187 break;
188 }
189 if (++lines == terminal_height)
Mark Whitleyb9913952000-06-16 00:26:51 +0000190 please_display_more_prompt = 1;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000191 }
Mark Whitley4fa84e62000-06-21 22:53:16 +0000192 /*
193 * If we just read a newline from the file being 'mored' and any
194 * key other than a return is hit, scroll by one page
195 */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000196 putc(c, stdout);
197 }
198 fclose(file);
199 fflush(stdout);
200
201 argv++;
202 } while (--argc > 0);
203 end:
204#ifdef BB_FEATURE_USE_TERMIOS
205 gotsig(0);
206#endif
Eric Andersenb6106152000-06-19 17:25:40 +0000207 return(TRUE);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000208}