blob: 772d51b18f8f7ee7ad0a33676c6db19aafd48a4b [file] [log] [blame]
Eric Andersen4bea32a1999-10-06 00:30:51 +00001/*
2 * Mini more implementation for busybox
3 *
4 * Copyright (C) 1998 by Erik Andersen <andersee@debian.org>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 *
20 */
21
Eric Andersen3cf52d11999-10-12 22:26:06 +000022
23/* Turning this off makes things a bit smaller (and less pretty) */
24#define BB_MORE_TERM
25
26
27
Eric Andersencc8ed391999-10-05 16:24:54 +000028#include "internal.h"
29#include <stdio.h>
Eric Andersen4bea32a1999-10-06 00:30:51 +000030#include <signal.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000031
Eric Andersen3cf52d11999-10-12 22:26:06 +000032
Eric Andersene77ae3a1999-10-19 20:03:34 +000033static const char more_usage[] = "[file ...]";
Eric Andersencc8ed391999-10-05 16:24:54 +000034
Eric Andersen3cf52d11999-10-12 22:26:06 +000035
36#ifdef BB_MORE_TERM
37 #include <termios.h>
38 #include <signal.h>
39 #include <sys/ioctl.h>
40
41 FILE *cin;
42 struct termios initial_settings, new_settings;
43
44 void gotsig(int sig) {
45 tcsetattr(fileno(cin), TCSANOW, &initial_settings);
46 exit( TRUE);
47 }
48#endif
Eric Andersencc8ed391999-10-05 16:24:54 +000049
Eric Andersen4bea32a1999-10-06 00:30:51 +000050extern int more_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +000051{
Eric Andersen21943ce1999-10-13 18:04:51 +000052 int c, lines=0, input=0;
Eric Andersen9d3aba71999-10-06 09:04:55 +000053 int next_page=0, rows = 24;
Eric Andersen3cf52d11999-10-12 22:26:06 +000054#ifdef BB_MORE_TERM
Eric Andersen21943ce1999-10-13 18:04:51 +000055 int cols=79;
Eric Andersen3cf52d11999-10-12 22:26:06 +000056 struct winsize win;
Eric Andersen9d3aba71999-10-06 09:04:55 +000057#endif
Eric Andersen4bea32a1999-10-06 00:30:51 +000058 struct stat st;
59 FILE *file = stdin;
60
61 if ( strcmp(*argv,"--help")==0 || strcmp(*argv,"-h")==0 ) {
Eric Andersenb0e9a701999-10-18 22:28:26 +000062 usage (more_usage);
Eric Andersen4bea32a1999-10-06 00:30:51 +000063 }
64 argc--;
65 argv++;
66
67 while (argc-- > 0) {
Eric Andersen9d3aba71999-10-06 09:04:55 +000068 file = fopen(*argv, "r");
Eric Andersen4bea32a1999-10-06 00:30:51 +000069 if (file == NULL) {
Eric Andersen9d3aba71999-10-06 09:04:55 +000070 perror("Can't open file");
Eric Andersen3cf52d11999-10-12 22:26:06 +000071 exit(FALSE);
Eric Andersencc8ed391999-10-05 16:24:54 +000072 }
Eric Andersen4bea32a1999-10-06 00:30:51 +000073 fstat(fileno(file), &st);
Eric Andersen9d3aba71999-10-06 09:04:55 +000074 fprintf(stderr, "hi\n");
Eric Andersencc8ed391999-10-05 16:24:54 +000075
Eric Andersen3cf52d11999-10-12 22:26:06 +000076#ifdef BB_MORE_TERM
77 cin = fopen("/dev/tty", "r");
78 tcgetattr(fileno(cin),&initial_settings);
79 new_settings = initial_settings;
80 new_settings.c_lflag &= ~ICANON;
81 new_settings.c_lflag &= ~ECHO;
82 tcsetattr(fileno(cin), TCSANOW, &new_settings);
83
84 (void) signal(SIGINT, gotsig);
85
86 ioctl(STDOUT_FILENO, TIOCGWINSZ, &win);
87 if (win.ws_row > 4) rows = win.ws_row - 2;
88 if (win.ws_col > 0) cols = win.ws_col - 1;
89
90
91#endif
Eric Andersen4bea32a1999-10-06 00:30:51 +000092 while ((c = getc(file)) != EOF) {
93 if ( next_page ) {
94 int len=0;
95 next_page = 0;
96 lines=0;
Eric Andersen3cf52d11999-10-12 22:26:06 +000097 len = fprintf(stdout, "--More-- (%d%% of %ld bytes)%s",
Eric Andersen4bea32a1999-10-06 00:30:51 +000098 (int) (100*( (double) ftell(file) / (double) st.st_size )),
Eric Andersen3cf52d11999-10-12 22:26:06 +000099 st.st_size,
100#ifdef BB_MORE_TERM
101 ""
102#else
103 "\n"
104#endif
105 );
106
Eric Andersen4bea32a1999-10-06 00:30:51 +0000107 fflush(stdout);
Eric Andersen3cf52d11999-10-12 22:26:06 +0000108 input = getc( stdin);
109
110#ifdef BB_MORE_TERM
111 /* Erase the "More" message */
Eric Andersen4bea32a1999-10-06 00:30:51 +0000112 while(len-- > 0)
113 putc('\b', stdout);
114 while(len++ < cols)
Eric Andersen9d3aba71999-10-06 09:04:55 +0000115 putc(' ', stdout);
Eric Andersen4bea32a1999-10-06 00:30:51 +0000116 while(len-- > 0)
117 putc('\b', stdout);
118 fflush(stdout);
Eric Andersencc8ed391999-10-05 16:24:54 +0000119#endif
Eric Andersen3cf52d11999-10-12 22:26:06 +0000120
Eric Andersen4bea32a1999-10-06 00:30:51 +0000121 }
Eric Andersen3cf52d11999-10-12 22:26:06 +0000122 if (input=='q')
123 goto end;
124 if (input==' ' && c == '\n' )
125 next_page = 1;
Eric Andersen4bea32a1999-10-06 00:30:51 +0000126 if ( c == '\n' && ++lines == (rows + 1) )
127 next_page = 1;
128 putc(c, stdout);
Eric Andersencc8ed391999-10-05 16:24:54 +0000129 }
Eric Andersen4bea32a1999-10-06 00:30:51 +0000130 fclose(file);
131 fflush(stdout);
132
133 argc--;
134 argv++;
135 }
Eric Andersen3cf52d11999-10-12 22:26:06 +0000136end:
137#ifdef BB_MORE_TERM
138 gotsig(0);
139#endif
140 exit(TRUE);
Eric Andersencc8ed391999-10-05 16:24:54 +0000141}
Eric Andersen4bea32a1999-10-06 00:30:51 +0000142