blob: f8938743680d82e29952c23d097e981da7c80d9b [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 Andersen4bea32a1999-10-06 00:30:51 +000033const 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 Andersen3cf52d11999-10-12 22:26:06 +000052 int c, lines=0, input;
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
55 int cols;
56 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 ) {
62 fprintf(stderr, "Usage: %s %s", *argv, more_usage);
Eric Andersen3cf52d11999-10-12 22:26:06 +000063 exit(FALSE);
Eric Andersen4bea32a1999-10-06 00:30:51 +000064 }
65 argc--;
66 argv++;
67
68 while (argc-- > 0) {
Eric Andersen9d3aba71999-10-06 09:04:55 +000069 file = fopen(*argv, "r");
Eric Andersen4bea32a1999-10-06 00:30:51 +000070 if (file == NULL) {
Eric Andersen9d3aba71999-10-06 09:04:55 +000071 perror("Can't open file");
Eric Andersen3cf52d11999-10-12 22:26:06 +000072 exit(FALSE);
Eric Andersencc8ed391999-10-05 16:24:54 +000073 }
Eric Andersen4bea32a1999-10-06 00:30:51 +000074 fstat(fileno(file), &st);
Eric Andersen9d3aba71999-10-06 09:04:55 +000075 fprintf(stderr, "hi\n");
Eric Andersencc8ed391999-10-05 16:24:54 +000076
Eric Andersen3cf52d11999-10-12 22:26:06 +000077#ifdef BB_MORE_TERM
78 cin = fopen("/dev/tty", "r");
79 tcgetattr(fileno(cin),&initial_settings);
80 new_settings = initial_settings;
81 new_settings.c_lflag &= ~ICANON;
82 new_settings.c_lflag &= ~ECHO;
83 tcsetattr(fileno(cin), TCSANOW, &new_settings);
84
85 (void) signal(SIGINT, gotsig);
86
87 ioctl(STDOUT_FILENO, TIOCGWINSZ, &win);
88 if (win.ws_row > 4) rows = win.ws_row - 2;
89 if (win.ws_col > 0) cols = win.ws_col - 1;
90
91
92#endif
Eric Andersen4bea32a1999-10-06 00:30:51 +000093 while ((c = getc(file)) != EOF) {
94 if ( next_page ) {
95 int len=0;
96 next_page = 0;
97 lines=0;
Eric Andersen3cf52d11999-10-12 22:26:06 +000098 len = fprintf(stdout, "--More-- (%d%% of %ld bytes)%s",
Eric Andersen4bea32a1999-10-06 00:30:51 +000099 (int) (100*( (double) ftell(file) / (double) st.st_size )),
Eric Andersen3cf52d11999-10-12 22:26:06 +0000100 st.st_size,
101#ifdef BB_MORE_TERM
102 ""
103#else
104 "\n"
105#endif
106 );
107
Eric Andersen4bea32a1999-10-06 00:30:51 +0000108 fflush(stdout);
Eric Andersen3cf52d11999-10-12 22:26:06 +0000109 input = getc( stdin);
110
111#ifdef BB_MORE_TERM
112 /* Erase the "More" message */
Eric Andersen4bea32a1999-10-06 00:30:51 +0000113 while(len-- > 0)
114 putc('\b', stdout);
115 while(len++ < cols)
Eric Andersen9d3aba71999-10-06 09:04:55 +0000116 putc(' ', stdout);
Eric Andersen4bea32a1999-10-06 00:30:51 +0000117 while(len-- > 0)
118 putc('\b', stdout);
119 fflush(stdout);
Eric Andersencc8ed391999-10-05 16:24:54 +0000120#endif
Eric Andersen3cf52d11999-10-12 22:26:06 +0000121
Eric Andersen4bea32a1999-10-06 00:30:51 +0000122 }
Eric Andersen3cf52d11999-10-12 22:26:06 +0000123 if (input=='q')
124 goto end;
125 if (input==' ' && c == '\n' )
126 next_page = 1;
Eric Andersen4bea32a1999-10-06 00:30:51 +0000127 if ( c == '\n' && ++lines == (rows + 1) )
128 next_page = 1;
129 putc(c, stdout);
Eric Andersencc8ed391999-10-05 16:24:54 +0000130 }
Eric Andersen4bea32a1999-10-06 00:30:51 +0000131 fclose(file);
132 fflush(stdout);
133
134 argc--;
135 argv++;
136 }
Eric Andersen3cf52d11999-10-12 22:26:06 +0000137end:
138#ifdef BB_MORE_TERM
139 gotsig(0);
140#endif
141 exit(TRUE);
Eric Andersencc8ed391999-10-05 16:24:54 +0000142}
Eric Andersen4bea32a1999-10-06 00:30:51 +0000143