blob: 841e283211d1c6f1971c9016acc460ddd3bef974 [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 Andersen7ab9c7e2000-05-12 19:41:47 +000037static 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"
40#endif
41 ;
Eric Andersencc8ed391999-10-05 16:24:54 +000042
Erik Andersen1d1d9502000-04-21 01:26:49 +000043/* ED: sparc termios is broken: revert back to old termio handling. */
Eric Andersen50d63601999-11-09 01:47:36 +000044#ifdef BB_FEATURE_USE_TERMIOS
Mark Whitley4fa84e62000-06-21 22:53:16 +000045# if #cpu(sparc)
46# include <termio.h>
47# define termios termio
48# define setTermSettings(fd,argp) ioctl(fd,TCSETAF,argp)
49# define getTermSettings(fd,argp) ioctl(fd,TCGETA,argp)
50# else
51# include <termios.h>
52# define setTermSettings(fd,argp) tcsetattr(fd,TCSANOW,argp)
53# define getTermSettings(fd,argp) tcgetattr(fd, argp);
54# endif
Eric Andersen3cf52d11999-10-12 22:26:06 +000055
Erik Andersene49d5ec2000-02-08 19:58:47 +000056FILE *cin;
Erik Andersen4f3f7572000-04-28 00:18:56 +000057
Erik Andersen1d1d9502000-04-21 01:26:49 +000058struct termios initial_settings, new_settings;
Eric Andersen3cf52d11999-10-12 22:26:06 +000059
Erik Andersene49d5ec2000-02-08 19:58:47 +000060void gotsig(int sig)
61{
Erik Andersen1d1d9502000-04-21 01:26:49 +000062 setTermSettings(fileno(cin), &initial_settings);
Erik Andersene49d5ec2000-02-08 19:58:47 +000063 fprintf(stdout, "\n");
64 exit(TRUE);
65}
Mark Whitley4fa84e62000-06-21 22:53:16 +000066#endif /* BB_FEATURE_USE_TERMIOS */
Eric Andersencc8ed391999-10-05 16:24:54 +000067
Eric Andersen50d63601999-11-09 01:47:36 +000068
Mark Whitley4fa84e62000-06-21 22:53:16 +000069static int terminal_width = 79; /* not 80 in case terminal has linefold bug */
70static int terminal_height = 24;
Eric Andersen50d63601999-11-09 01:47:36 +000071
72
Eric Andersen4bea32a1999-10-06 00:30:51 +000073extern int more_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +000074{
Erik Andersene49d5ec2000-02-08 19:58:47 +000075 int c, lines = 0, input = 0;
Mark Whitleyb9913952000-06-16 00:26:51 +000076 int please_display_more_prompt = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +000077 struct stat st;
78 FILE *file;
79
Erik Andersen4f3f7572000-04-28 00:18:56 +000080#if defined BB_FEATURE_AUTOWIDTH && defined BB_FEATURE_USE_TERMIOS
Erik Andersene49d5ec2000-02-08 19:58:47 +000081 struct winsize win = { 0, 0 };
Eric Andersen50d63601999-11-09 01:47:36 +000082#endif
Eric Andersen4bea32a1999-10-06 00:30:51 +000083
Erik Andersene49d5ec2000-02-08 19:58:47 +000084 argc--;
Eric Andersen4bea32a1999-10-06 00:30:51 +000085 argv++;
Eric Andersen4bea32a1999-10-06 00:30:51 +000086
Erik Andersene49d5ec2000-02-08 19:58:47 +000087 if (argc > 0
Erik Andersen7ab9c7e2000-05-12 19:41:47 +000088 && (strcmp(*argv, dash_dash_help) == 0 || strcmp(*argv, "-h") == 0)) {
Erik Andersene49d5ec2000-02-08 19:58:47 +000089 usage(more_usage);
90 }
91 do {
92 if (argc == 0) {
93 file = stdin;
94 } else
95 file = fopen(*argv, "r");
96
97 if (file == NULL) {
98 perror(*argv);
99 exit(FALSE);
100 }
101 fstat(fileno(file), &st);
102
103#ifdef BB_FEATURE_USE_TERMIOS
104 cin = fopen("/dev/tty", "r");
105 if (!cin)
106 cin = fopen("/dev/console", "r");
Erik Andersen1d1d9502000-04-21 01:26:49 +0000107 getTermSettings(fileno(cin), &initial_settings);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000108 new_settings = initial_settings;
Erik Andersene90f4042000-04-21 21:53:58 +0000109 new_settings.c_cc[VMIN] = 1;
110 new_settings.c_cc[VTIME] = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000111 new_settings.c_lflag &= ~ICANON;
112 new_settings.c_lflag &= ~ECHO;
Erik Andersen1d1d9502000-04-21 01:26:49 +0000113 setTermSettings(fileno(cin), &new_settings);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000114
Mark Whitley4fa84e62000-06-21 22:53:16 +0000115# ifdef BB_FEATURE_AUTOWIDTH
Erik Andersene49d5ec2000-02-08 19:58:47 +0000116 ioctl(fileno(stdout), TIOCGWINSZ, &win);
117 if (win.ws_row > 4)
118 terminal_height = win.ws_row - 2;
119 if (win.ws_col > 0)
120 terminal_width = win.ws_col - 1;
Mark Whitley4fa84e62000-06-21 22:53:16 +0000121# endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000122
123 (void) signal(SIGINT, gotsig);
124 (void) signal(SIGQUIT, gotsig);
125 (void) signal(SIGTERM, gotsig);
126
127#endif
128 while ((c = getc(file)) != EOF) {
Mark Whitleyb9913952000-06-16 00:26:51 +0000129 if (please_display_more_prompt) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000130 int len = 0;
131
Mark Whitleyb9913952000-06-16 00:26:51 +0000132 please_display_more_prompt = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000133 lines = 0;
134 len = fprintf(stdout, "--More-- ");
135 if (file != stdin) {
136 len += fprintf(stdout, "(%d%% of %ld bytes)",
137 (int) (100 *
138 ((double) ftell(file) /
139 (double) st.st_size)),
140 st.st_size);
141 }
142 len += fprintf(stdout, "%s",
143#ifdef BB_FEATURE_USE_TERMIOS
144 ""
145#else
146 "\n"
147#endif
148 );
149
150 fflush(stdout);
Mark Whitleyb9913952000-06-16 00:26:51 +0000151
152 /*
153 * We've just displayed the "--More--" prompt, so now we need
154 * to get input from the user.
155 */
Erik Andersen4f3f7572000-04-28 00:18:56 +0000156#ifdef BB_FEATURE_USE_TERMIOS
Erik Andersene49d5ec2000-02-08 19:58:47 +0000157 input = getc(cin);
Erik Andersen4f3f7572000-04-28 00:18:56 +0000158#else
159 input = getc(stdin);
160#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000161
162#ifdef BB_FEATURE_USE_TERMIOS
163 /* Erase the "More" message */
164 while (--len >= 0)
165 putc('\b', stdout);
166 while (++len <= terminal_width)
167 putc(' ', stdout);
168 while (--len >= 0)
169 putc('\b', stdout);
170 fflush(stdout);
171#endif
172
173 }
Mark Whitleyb9913952000-06-16 00:26:51 +0000174
175 /*
176 * There are two input streams to worry about here:
177 *
178 * c : the character we are reading from the file being "mored"
179 * input : a character received from the keyboard
180 *
181 * If we hit a newline in the _file_ stream, we want to test and
182 * see if any characters have been hit in the _input_ stream. This
183 * allows the user to quit while in the middle of a file.
184 */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000185 if (c == '\n') {
186 switch (input) {
187 case 'q':
188 goto end;
189 case '\n':
190 /* increment by just one line if we are at
191 * the end of this line*/
Mark Whitleyb9913952000-06-16 00:26:51 +0000192 please_display_more_prompt = 1;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000193 break;
194 }
195 if (++lines == terminal_height)
Mark Whitleyb9913952000-06-16 00:26:51 +0000196 please_display_more_prompt = 1;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000197 }
Mark Whitley4fa84e62000-06-21 22:53:16 +0000198 /*
199 * If we just read a newline from the file being 'mored' and any
200 * key other than a return is hit, scroll by one page
201 */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000202 putc(c, stdout);
203 }
204 fclose(file);
205 fflush(stdout);
206
207 argv++;
208 } while (--argc > 0);
209 end:
210#ifdef BB_FEATURE_USE_TERMIOS
211 gotsig(0);
212#endif
Eric Andersenb6106152000-06-19 17:25:40 +0000213 return(TRUE);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000214}