blob: f4018f5d188aba1f112c9bf5bad96212e1882978 [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 Andersen96bcfd31999-11-12 01:30:18 +00005 * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>.
Eric Andersencb81e642003-07-14 21:21:08 +00006 * Copyright (C) 1999-2003 by Erik Andersen <andersen@codepoet.org>
Eric Andersen96bcfd31999-11-12 01:30:18 +00007 *
Eric Andersencb81e642003-07-14 21:21:08 +00008 * Latest version blended together by Erik Andersen <andersen@codepoet.org>,
Eric Andersen96bcfd31999-11-12 01:30:18 +00009 * 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 *
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +000012 * Termios corrects by Vladimir Oleynik <dzo@simtreas.ru>
Glenn L McGrath78b0e372001-06-26 02:06:08 +000013 *
Eric Andersen4bea32a1999-10-06 00:30:51 +000014 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
18 *
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 * General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 *
28 */
29
Eric Andersencc8ed391999-10-05 16:24:54 +000030#include <stdio.h>
Eric Andersenf5a38381999-10-19 22:26:25 +000031#include <fcntl.h>
Eric Andersen4bea32a1999-10-06 00:30:51 +000032#include <signal.h>
Eric Andersened3ef502001-01-27 08:24:39 +000033#include <stdlib.h>
Glenn L McGrath78b0e372001-06-26 02:06:08 +000034#include <unistd.h>
Eric Andersen50d63601999-11-09 01:47:36 +000035#include <sys/ioctl.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000036#include "busybox.h"
Eric Andersen3cf52d11999-10-12 22:26:06 +000037
Eric Andersen5c9c8b42001-01-26 06:50:46 +000038static FILE *cin;
Erik Andersen4f3f7572000-04-28 00:18:56 +000039
Eric Andersenbdfd0d72001-10-24 05:00:29 +000040#ifdef CONFIG_FEATURE_USE_TERMIOS
Glenn L McGrath78b0e372001-06-26 02:06:08 +000041#include <termios.h>
42#define setTermSettings(fd,argp) tcsetattr(fd,TCSANOW,argp)
43#define getTermSettings(fd,argp) tcgetattr(fd, argp);
44
Eric Andersen63a86222000-11-07 06:52:13 +000045static struct termios initial_settings, new_settings;
Eric Andersen3cf52d11999-10-12 22:26:06 +000046
Glenn L McGrath78b0e372001-06-26 02:06:08 +000047static void set_tty_to_initial_mode(void)
Erik Andersene49d5ec2000-02-08 19:58:47 +000048{
Erik Andersen1d1d9502000-04-21 01:26:49 +000049 setTermSettings(fileno(cin), &initial_settings);
Glenn L McGrath78b0e372001-06-26 02:06:08 +000050}
51
52static void gotsig(int sig)
53{
Matt Kraai12f417e2001-01-18 02:57:08 +000054 putchar('\n');
55 exit(EXIT_FAILURE);
Erik Andersene49d5ec2000-02-08 19:58:47 +000056}
Eric Andersenbdfd0d72001-10-24 05:00:29 +000057#endif /* CONFIG_FEATURE_USE_TERMIOS */
Eric Andersencc8ed391999-10-05 16:24:54 +000058
Eric Andersen50d63601999-11-09 01:47:36 +000059
Mark Whitley4fa84e62000-06-21 22:53:16 +000060static int terminal_width = 79; /* not 80 in case terminal has linefold bug */
61static int terminal_height = 24;
Eric Andersen50d63601999-11-09 01:47:36 +000062
63
Eric Andersen4bea32a1999-10-06 00:30:51 +000064extern int more_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +000065{
Eric Andersen57239342001-02-23 01:39:26 +000066 int c, lines, input = 0;
Glenn L McGrath78b0e372001-06-26 02:06:08 +000067 int please_display_more_prompt = -1;
Erik Andersene49d5ec2000-02-08 19:58:47 +000068 struct stat st;
69 FILE *file;
Eric Andersenffc40bf2001-02-22 21:49:32 +000070 int len, page_height;
Erik Andersene49d5ec2000-02-08 19:58:47 +000071
Erik Andersene49d5ec2000-02-08 19:58:47 +000072 argc--;
Eric Andersen4bea32a1999-10-06 00:30:51 +000073 argv++;
Eric Andersen4bea32a1999-10-06 00:30:51 +000074
Glenn L McGrath78b0e372001-06-26 02:06:08 +000075
76 /* not use inputing from terminal if usage: more > outfile */
77 if(isatty(fileno(stdout))) {
Matt Kraai439e3df2001-07-23 14:52:08 +000078 cin = fopen(CURRENT_TTY, "r");
Glenn L McGrath78b0e372001-06-26 02:06:08 +000079 if (!cin)
Manuel Novoa III cad53642003-03-19 09:13:01 +000080 cin = bb_xfopen(CONSOLE_DEV, "r");
Glenn L McGrath78b0e372001-06-26 02:06:08 +000081 please_display_more_prompt = 0;
Eric Andersenbdfd0d72001-10-24 05:00:29 +000082#ifdef CONFIG_FEATURE_USE_TERMIOS
Glenn L McGrath78b0e372001-06-26 02:06:08 +000083 getTermSettings(fileno(cin), &initial_settings);
84 new_settings = initial_settings;
85 new_settings.c_lflag &= ~ICANON;
86 new_settings.c_lflag &= ~ECHO;
87#ifndef linux
88 /* Hmm, in linux c_cc[] not parsed if set ~ICANON */
89 new_settings.c_cc[VMIN] = 1;
90 new_settings.c_cc[VTIME] = 0;
91#endif
92 setTermSettings(fileno(cin), &new_settings);
93 atexit(set_tty_to_initial_mode);
94 (void) signal(SIGINT, gotsig);
95 (void) signal(SIGQUIT, gotsig);
96 (void) signal(SIGTERM, gotsig);
97#endif
98 }
99
Erik Andersene49d5ec2000-02-08 19:58:47 +0000100 do {
101 if (argc == 0) {
102 file = stdin;
103 } else
Manuel Novoa III cad53642003-03-19 09:13:01 +0000104 file = bb_wfopen(*argv, "r");
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000105 if(file==0)
106 goto loop;
107
Eric Andersen0ee0a8d2001-12-06 07:24:29 +0000108 st.st_size = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000109 fstat(fileno(file), &st);
110
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000111 if(please_display_more_prompt>0)
112 please_display_more_prompt = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000113
Eric Andersen8efe9672003-09-15 08:33:45 +0000114 get_terminal_width_height(0, &terminal_width, &terminal_height);
115 if (terminal_height > 4)
116 terminal_height -= 2;
117 if (terminal_width > 0)
118 terminal_width -= 1;
119
Eric Andersen57239342001-02-23 01:39:26 +0000120 len=0;
121 lines = 0;
Eric Andersenffc40bf2001-02-22 21:49:32 +0000122 page_height = terminal_height;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000123 while ((c = getc(file)) != EOF) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000124
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000125 if (please_display_more_prompt>0) {
Matt Kraai12f417e2001-01-18 02:57:08 +0000126 len = printf("--More-- ");
Eric Andersen0ee0a8d2001-12-06 07:24:29 +0000127 if (file != stdin && st.st_size > 0) {
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000128#if _FILE_OFFSET_BITS == 64
Matt Kraai12f417e2001-01-18 02:57:08 +0000129 len += printf("(%d%% of %lld bytes)",
Eric Andersen250a2212001-04-05 23:26:44 +0000130 (int) (100 * ((double) ftell(file) /
131 (double) st.st_size)), (long long)st.st_size);
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000132#else
Matt Kraai12f417e2001-01-18 02:57:08 +0000133 len += printf("(%d%% of %ld bytes)",
Eric Andersen250a2212001-04-05 23:26:44 +0000134 (int) (100 * ((double) ftell(file) /
135 (double) st.st_size)), (long)st.st_size);
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000136#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000137 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000138
139 fflush(stdout);
Mark Whitleyb9913952000-06-16 00:26:51 +0000140
141 /*
142 * We've just displayed the "--More--" prompt, so now we need
143 * to get input from the user.
144 */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000145 input = getc(cin);
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000146#ifndef CONFIG_FEATURE_USE_TERMIOS
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000147 printf("\033[A"); /* up cursor */
Erik Andersen4f3f7572000-04-28 00:18:56 +0000148#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000149 /* Erase the "More" message */
Eric Andersenaa21e0f2001-04-06 16:02:22 +0000150 putc('\r', stdout);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000151 while (--len >= 0)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000152 putc(' ', stdout);
Eric Andersenaa21e0f2001-04-06 16:02:22 +0000153 putc('\r', stdout);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000154 fflush(stdout);
Eric Andersenbe30a6b2001-02-22 00:22:46 +0000155 len=0;
Eric Andersen57239342001-02-23 01:39:26 +0000156 lines = 0;
Eric Andersenffc40bf2001-02-22 21:49:32 +0000157 page_height = terminal_height;
Eric Andersen57239342001-02-23 01:39:26 +0000158 please_display_more_prompt = 0;
Matt Kraaid6cde0b2001-04-12 20:51:01 +0000159
160 if (input == 'q')
161 goto end;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000162 }
Mark Whitleyb9913952000-06-16 00:26:51 +0000163
164 /*
165 * There are two input streams to worry about here:
166 *
Eric Andersen57239342001-02-23 01:39:26 +0000167 * c : the character we are reading from the file being "mored"
Mark Whitleyb9913952000-06-16 00:26:51 +0000168 * input : a character received from the keyboard
169 *
170 * If we hit a newline in the _file_ stream, we want to test and
171 * see if any characters have been hit in the _input_ stream. This
172 * allows the user to quit while in the middle of a file.
173 */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000174 if (c == '\n') {
Matt Kraaid6cde0b2001-04-12 20:51:01 +0000175 /* increment by just one line if we are at
176 * the end of this line */
177 if (input == '\n')
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000178 if(please_display_more_prompt==0)
Mark Whitleyb9913952000-06-16 00:26:51 +0000179 please_display_more_prompt = 1;
Eric Andersenbe30a6b2001-02-22 00:22:46 +0000180 /* Adjust the terminal height for any overlap, so that
181 * no lines get lost off the top. */
Eric Andersen57239342001-02-23 01:39:26 +0000182 if (len >= terminal_width) {
Eric Andersen2439a592001-05-16 18:53:34 +0000183 int quot, rem;
184 quot = len / terminal_width;
185 rem = len - (quot * terminal_width);
186 if (quot) {
187 if (rem)
188 page_height-=quot;
Eric Andersenffc40bf2001-02-22 21:49:32 +0000189 else
Eric Andersen2439a592001-05-16 18:53:34 +0000190 page_height-=(quot-1);
Eric Andersenffc40bf2001-02-22 21:49:32 +0000191 }
Eric Andersenbe30a6b2001-02-22 00:22:46 +0000192 }
Eric Andersen57239342001-02-23 01:39:26 +0000193 if (++lines >= page_height) {
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000194 if(please_display_more_prompt==0)
Mark Whitleyb9913952000-06-16 00:26:51 +0000195 please_display_more_prompt = 1;
Eric Andersenbe30a6b2001-02-22 00:22:46 +0000196 }
197 len=0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000198 }
Mark Whitley4fa84e62000-06-21 22:53:16 +0000199 /*
200 * If we just read a newline from the file being 'mored' and any
201 * key other than a return is hit, scroll by one page
202 */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000203 putc(c, stdout);
Eric Andersenbe30a6b2001-02-22 00:22:46 +0000204 len++;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000205 }
206 fclose(file);
207 fflush(stdout);
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000208loop:
Erik Andersene49d5ec2000-02-08 19:58:47 +0000209 argv++;
210 } while (--argc > 0);
211 end:
Matt Kraaid6cde0b2001-04-12 20:51:01 +0000212 return 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000213}