blob: 974149177ad19372fdc68d45f991471115807f2a [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
Eric Andersenf5a38381999-10-19 22:26:25 +000045
Erik Andersen1d1d9502000-04-21 01:26:49 +000046#if #cpu(sparc)
47# include <termio.h>
48# define termios termio
49# define setTermSettings(fd,argp) ioctl(fd,TCSETAF,argp)
50# define getTermSettings(fd,argp) ioctl(fd,TCGETA,argp)
51#else
52# include <termios.h>
53# define setTermSettings(fd,argp) tcsetattr(fd,TCSANOW,argp)
54# define getTermSettings(fd,argp) tcgetattr(fd, argp);
55#endif
Eric Andersen3cf52d11999-10-12 22:26:06 +000056
Erik Andersene49d5ec2000-02-08 19:58:47 +000057FILE *cin;
Erik Andersen4f3f7572000-04-28 00:18:56 +000058
Erik Andersen1d1d9502000-04-21 01:26:49 +000059struct termios initial_settings, new_settings;
Eric Andersen3cf52d11999-10-12 22:26:06 +000060
Erik Andersene49d5ec2000-02-08 19:58:47 +000061void gotsig(int sig)
62{
Erik Andersen1d1d9502000-04-21 01:26:49 +000063 setTermSettings(fileno(cin), &initial_settings);
Erik Andersene49d5ec2000-02-08 19:58:47 +000064 fprintf(stdout, "\n");
65 exit(TRUE);
66}
Eric Andersen3cf52d11999-10-12 22:26:06 +000067#endif
Eric Andersencc8ed391999-10-05 16:24:54 +000068
Eric Andersen50d63601999-11-09 01:47:36 +000069
70
Erik Andersene49d5ec2000-02-08 19:58:47 +000071#define TERMINAL_WIDTH 79 /* not 80 in case terminal has linefold bug */
Eric Andersen50d63601999-11-09 01:47:36 +000072#define TERMINAL_HEIGHT 24
73
74
Eric Andersen96bcfd31999-11-12 01:30:18 +000075#if defined BB_FEATURE_AUTOWIDTH
Erik Andersen4f3f7572000-04-28 00:18:56 +000076#ifdef BB_FEATURE_USE_TERMIOS
Eric Andersen86ab8a32000-06-02 03:21:42 +000077static int terminal_width = TERMINAL_WIDTH;
Erik Andersen4f3f7572000-04-28 00:18:56 +000078#endif
Eric Andersen86ab8a32000-06-02 03:21:42 +000079static int terminal_height = TERMINAL_HEIGHT;
Eric Andersen50d63601999-11-09 01:47:36 +000080#else
81#define terminal_width TERMINAL_WIDTH
82#define terminal_height TERMINAL_HEIGHT
83#endif
84
85
86
Eric Andersen4bea32a1999-10-06 00:30:51 +000087extern int more_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +000088{
Erik Andersene49d5ec2000-02-08 19:58:47 +000089 int c, lines = 0, input = 0;
90 int next_page = 0;
91 struct stat st;
92 FILE *file;
93
Erik Andersen4f3f7572000-04-28 00:18:56 +000094#if defined BB_FEATURE_AUTOWIDTH && defined BB_FEATURE_USE_TERMIOS
Erik Andersene49d5ec2000-02-08 19:58:47 +000095 struct winsize win = { 0, 0 };
Eric Andersen50d63601999-11-09 01:47:36 +000096#endif
Eric Andersen4bea32a1999-10-06 00:30:51 +000097
Erik Andersene49d5ec2000-02-08 19:58:47 +000098 argc--;
Eric Andersen4bea32a1999-10-06 00:30:51 +000099 argv++;
Eric Andersen4bea32a1999-10-06 00:30:51 +0000100
Erik Andersene49d5ec2000-02-08 19:58:47 +0000101 if (argc > 0
Erik Andersen7ab9c7e2000-05-12 19:41:47 +0000102 && (strcmp(*argv, dash_dash_help) == 0 || strcmp(*argv, "-h") == 0)) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000103 usage(more_usage);
104 }
105 do {
106 if (argc == 0) {
107 file = stdin;
108 } else
109 file = fopen(*argv, "r");
110
111 if (file == NULL) {
112 perror(*argv);
113 exit(FALSE);
114 }
115 fstat(fileno(file), &st);
116
117#ifdef BB_FEATURE_USE_TERMIOS
118 cin = fopen("/dev/tty", "r");
119 if (!cin)
120 cin = fopen("/dev/console", "r");
Erik Andersen1d1d9502000-04-21 01:26:49 +0000121 getTermSettings(fileno(cin), &initial_settings);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000122 new_settings = initial_settings;
Erik Andersene90f4042000-04-21 21:53:58 +0000123 new_settings.c_cc[VMIN] = 1;
124 new_settings.c_cc[VTIME] = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000125 new_settings.c_lflag &= ~ICANON;
126 new_settings.c_lflag &= ~ECHO;
Erik Andersen1d1d9502000-04-21 01:26:49 +0000127 setTermSettings(fileno(cin), &new_settings);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000128
129#ifdef BB_FEATURE_AUTOWIDTH
130 ioctl(fileno(stdout), TIOCGWINSZ, &win);
131 if (win.ws_row > 4)
132 terminal_height = win.ws_row - 2;
133 if (win.ws_col > 0)
134 terminal_width = win.ws_col - 1;
135#endif
136
137 (void) signal(SIGINT, gotsig);
138 (void) signal(SIGQUIT, gotsig);
139 (void) signal(SIGTERM, gotsig);
140
141#endif
142 while ((c = getc(file)) != EOF) {
143 if (next_page) {
144 int len = 0;
145
146 next_page = 0;
147 lines = 0;
148 len = fprintf(stdout, "--More-- ");
149 if (file != stdin) {
150 len += fprintf(stdout, "(%d%% of %ld bytes)",
151 (int) (100 *
152 ((double) ftell(file) /
153 (double) st.st_size)),
154 st.st_size);
155 }
156 len += fprintf(stdout, "%s",
157#ifdef BB_FEATURE_USE_TERMIOS
158 ""
159#else
160 "\n"
161#endif
162 );
163
164 fflush(stdout);
Erik Andersen4f3f7572000-04-28 00:18:56 +0000165#ifdef BB_FEATURE_USE_TERMIOS
Erik Andersene49d5ec2000-02-08 19:58:47 +0000166 input = getc(cin);
Erik Andersen4f3f7572000-04-28 00:18:56 +0000167#else
168 input = getc(stdin);
169#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000170
171#ifdef BB_FEATURE_USE_TERMIOS
172 /* Erase the "More" message */
173 while (--len >= 0)
174 putc('\b', stdout);
175 while (++len <= terminal_width)
176 putc(' ', stdout);
177 while (--len >= 0)
178 putc('\b', stdout);
179 fflush(stdout);
180#endif
181
182 }
183 if (c == '\n') {
184 switch (input) {
185 case 'q':
186 goto end;
187 case '\n':
188 /* increment by just one line if we are at
189 * the end of this line*/
190 next_page = 1;
191 break;
192 }
193 if (++lines == terminal_height)
194 next_page = 1;
195 }
196 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
207 exit(TRUE);
208}