blob: d7b7ce22f13306973d5d7f88de1e704431c5f719 [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 Andersenc7bda1c2004-03-15 08:29:22 +00006 * Copyright (C) 1999-2004 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 Andersenc7bda1c2004-03-15 08:29:22 +00009 * based on the original more implementation by Bruce, and code from the
Eric Andersen96bcfd31999-11-12 01:30:18 +000010 * 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;
Glenn L McGrath78b0e372001-06-26 02:06:08 +000087 new_settings.c_cc[VMIN] = 1;
88 new_settings.c_cc[VTIME] = 0;
Glenn L McGrath78b0e372001-06-26 02:06:08 +000089 setTermSettings(fileno(cin), &new_settings);
90 atexit(set_tty_to_initial_mode);
91 (void) signal(SIGINT, gotsig);
92 (void) signal(SIGQUIT, gotsig);
93 (void) signal(SIGTERM, gotsig);
94#endif
95 }
96
Erik Andersene49d5ec2000-02-08 19:58:47 +000097 do {
98 if (argc == 0) {
99 file = stdin;
100 } else
Manuel Novoa III cad53642003-03-19 09:13:01 +0000101 file = bb_wfopen(*argv, "r");
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000102 if(file==0)
103 goto loop;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000104
Eric Andersen0ee0a8d2001-12-06 07:24:29 +0000105 st.st_size = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000106 fstat(fileno(file), &st);
107
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000108 if(please_display_more_prompt>0)
109 please_display_more_prompt = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000110
Eric Andersen8efe9672003-09-15 08:33:45 +0000111 get_terminal_width_height(0, &terminal_width, &terminal_height);
112 if (terminal_height > 4)
113 terminal_height -= 2;
114 if (terminal_width > 0)
115 terminal_width -= 1;
116
Eric Andersen57239342001-02-23 01:39:26 +0000117 len=0;
118 lines = 0;
Eric Andersenffc40bf2001-02-22 21:49:32 +0000119 page_height = terminal_height;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000120 while ((c = getc(file)) != EOF) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000121
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000122 if (please_display_more_prompt>0) {
Matt Kraai12f417e2001-01-18 02:57:08 +0000123 len = printf("--More-- ");
Eric Andersen0ee0a8d2001-12-06 07:24:29 +0000124 if (file != stdin && st.st_size > 0) {
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000125#if _FILE_OFFSET_BITS == 64
Matt Kraai12f417e2001-01-18 02:57:08 +0000126 len += printf("(%d%% of %lld bytes)",
Eric Andersen250a2212001-04-05 23:26:44 +0000127 (int) (100 * ((double) ftell(file) /
128 (double) st.st_size)), (long long)st.st_size);
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000129#else
Matt Kraai12f417e2001-01-18 02:57:08 +0000130 len += printf("(%d%% of %ld bytes)",
Eric Andersen250a2212001-04-05 23:26:44 +0000131 (int) (100 * ((double) ftell(file) /
132 (double) st.st_size)), (long)st.st_size);
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000133#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000134 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000135
136 fflush(stdout);
Mark Whitleyb9913952000-06-16 00:26:51 +0000137
138 /*
139 * We've just displayed the "--More--" prompt, so now we need
140 * to get input from the user.
141 */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000142 input = getc(cin);
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000143#ifndef CONFIG_FEATURE_USE_TERMIOS
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000144 printf("\033[A"); /* up cursor */
Erik Andersen4f3f7572000-04-28 00:18:56 +0000145#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000146 /* Erase the "More" message */
Eric Andersenaa21e0f2001-04-06 16:02:22 +0000147 putc('\r', stdout);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000148 while (--len >= 0)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000149 putc(' ', stdout);
Eric Andersenaa21e0f2001-04-06 16:02:22 +0000150 putc('\r', stdout);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000151 fflush(stdout);
Eric Andersenbe30a6b2001-02-22 00:22:46 +0000152 len=0;
Eric Andersen57239342001-02-23 01:39:26 +0000153 lines = 0;
Eric Andersenffc40bf2001-02-22 21:49:32 +0000154 page_height = terminal_height;
Eric Andersen57239342001-02-23 01:39:26 +0000155 please_display_more_prompt = 0;
Matt Kraaid6cde0b2001-04-12 20:51:01 +0000156
157 if (input == 'q')
158 goto end;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000159 }
Mark Whitleyb9913952000-06-16 00:26:51 +0000160
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000161 /*
Mark Whitleyb9913952000-06-16 00:26:51 +0000162 * There are two input streams to worry about here:
163 *
Eric Andersen57239342001-02-23 01:39:26 +0000164 * c : the character we are reading from the file being "mored"
Mark Whitleyb9913952000-06-16 00:26:51 +0000165 * input : a character received from the keyboard
166 *
167 * If we hit a newline in the _file_ stream, we want to test and
168 * see if any characters have been hit in the _input_ stream. This
169 * allows the user to quit while in the middle of a file.
170 */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000171 if (c == '\n') {
Matt Kraaid6cde0b2001-04-12 20:51:01 +0000172 /* increment by just one line if we are at
173 * the end of this line */
174 if (input == '\n')
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000175 if(please_display_more_prompt==0)
Mark Whitleyb9913952000-06-16 00:26:51 +0000176 please_display_more_prompt = 1;
Eric Andersenbe30a6b2001-02-22 00:22:46 +0000177 /* Adjust the terminal height for any overlap, so that
178 * no lines get lost off the top. */
Eric Andersen57239342001-02-23 01:39:26 +0000179 if (len >= terminal_width) {
Eric Andersen2439a592001-05-16 18:53:34 +0000180 int quot, rem;
181 quot = len / terminal_width;
182 rem = len - (quot * terminal_width);
183 if (quot) {
184 if (rem)
185 page_height-=quot;
Eric Andersenffc40bf2001-02-22 21:49:32 +0000186 else
Eric Andersen2439a592001-05-16 18:53:34 +0000187 page_height-=(quot-1);
Eric Andersenffc40bf2001-02-22 21:49:32 +0000188 }
Eric Andersenbe30a6b2001-02-22 00:22:46 +0000189 }
Eric Andersen57239342001-02-23 01:39:26 +0000190 if (++lines >= page_height) {
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000191 if(please_display_more_prompt==0)
Mark Whitleyb9913952000-06-16 00:26:51 +0000192 please_display_more_prompt = 1;
Eric Andersenbe30a6b2001-02-22 00:22:46 +0000193 }
194 len=0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000195 }
Mark Whitley4fa84e62000-06-21 22:53:16 +0000196 /*
197 * If we just read a newline from the file being 'mored' and any
198 * key other than a return is hit, scroll by one page
199 */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000200 putc(c, stdout);
Eric Andersenbe30a6b2001-02-22 00:22:46 +0000201 len++;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000202 }
203 fclose(file);
204 fflush(stdout);
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000205loop:
Erik Andersene49d5ec2000-02-08 19:58:47 +0000206 argv++;
207 } while (--argc > 0);
208 end:
Matt Kraaid6cde0b2001-04-12 20:51:01 +0000209 return 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000210}