Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 1 | /* |
| 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 Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame] | 22 | |
| 23 | /* Turning this off makes things a bit smaller (and less pretty) */ |
| 24 | #define BB_MORE_TERM |
| 25 | |
| 26 | |
| 27 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 28 | #include "internal.h" |
| 29 | #include <stdio.h> |
Eric Andersen | f5a3838 | 1999-10-19 22:26:25 +0000 | [diff] [blame] | 30 | #include <fcntl.h> |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 31 | #include <signal.h> |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 32 | |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame] | 33 | |
Eric Andersen | e77ae3a | 1999-10-19 20:03:34 +0000 | [diff] [blame] | 34 | static const char more_usage[] = "[file ...]"; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 35 | |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame] | 36 | |
Eric Andersen | f5a3838 | 1999-10-19 22:26:25 +0000 | [diff] [blame] | 37 | /* ED: sparc termios is broken: revert back to old termio handling. */ |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame] | 38 | #ifdef BB_MORE_TERM |
Eric Andersen | f5a3838 | 1999-10-19 22:26:25 +0000 | [diff] [blame] | 39 | |
| 40 | |
| 41 | #if defined (__sparc__) |
| 42 | # define USE_OLD_TERMIO |
| 43 | # include <termio.h> |
| 44 | # include <sys/ioctl.h> |
| 45 | # define termios termio |
| 46 | # define stty(fd,argp) ioctl(fd,TCSETAF,argp) |
| 47 | #else |
| 48 | # include <termios.h> |
| 49 | # define stty(fd,argp) tcsetattr(fd,TCSANOW,argp) |
| 50 | #endif |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame] | 51 | |
| 52 | FILE *cin; |
| 53 | struct termios initial_settings, new_settings; |
| 54 | |
| 55 | void gotsig(int sig) { |
Eric Andersen | f5a3838 | 1999-10-19 22:26:25 +0000 | [diff] [blame] | 56 | stty(fileno(cin), &initial_settings); |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame] | 57 | exit( TRUE); |
| 58 | } |
| 59 | #endif |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 60 | |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 61 | extern int more_main(int argc, char **argv) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 62 | { |
Eric Andersen | 21943ce | 1999-10-13 18:04:51 +0000 | [diff] [blame] | 63 | int c, lines=0, input=0; |
Eric Andersen | f5a3838 | 1999-10-19 22:26:25 +0000 | [diff] [blame] | 64 | int next_page=0; |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 65 | struct stat st; |
Eric Andersen | f5a3838 | 1999-10-19 22:26:25 +0000 | [diff] [blame] | 66 | FILE *file; |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 67 | |
| 68 | if ( strcmp(*argv,"--help")==0 || strcmp(*argv,"-h")==0 ) { |
Eric Andersen | b0e9a70 | 1999-10-18 22:28:26 +0000 | [diff] [blame] | 69 | usage (more_usage); |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 70 | } |
| 71 | argc--; |
| 72 | argv++; |
| 73 | |
Eric Andersen | f5a3838 | 1999-10-19 22:26:25 +0000 | [diff] [blame] | 74 | while (argc >= 0) { |
| 75 | if (argc==0) { |
| 76 | file = stdin; |
| 77 | } |
| 78 | else |
Eric Andersen | 9d3aba7 | 1999-10-06 09:04:55 +0000 | [diff] [blame] | 79 | file = fopen(*argv, "r"); |
Eric Andersen | f5a3838 | 1999-10-19 22:26:25 +0000 | [diff] [blame] | 80 | |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 81 | if (file == NULL) { |
Eric Andersen | ef8b6c7 | 1999-10-20 08:05:35 +0000 | [diff] [blame] | 82 | perror(*argv); |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame] | 83 | exit(FALSE); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 84 | } |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 85 | fstat(fileno(file), &st); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 86 | |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame] | 87 | #ifdef BB_MORE_TERM |
| 88 | cin = fopen("/dev/tty", "r"); |
Eric Andersen | f5a3838 | 1999-10-19 22:26:25 +0000 | [diff] [blame] | 89 | if (!cin) |
| 90 | cin = fopen("/dev/console", "r"); |
| 91 | #ifdef USE_OLD_TERMIO |
| 92 | ioctl(fileno(cin),TCGETA,&initial_settings); |
| 93 | #else |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame] | 94 | tcgetattr(fileno(cin),&initial_settings); |
Eric Andersen | f5a3838 | 1999-10-19 22:26:25 +0000 | [diff] [blame] | 95 | #endif |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame] | 96 | new_settings = initial_settings; |
| 97 | new_settings.c_lflag &= ~ICANON; |
| 98 | new_settings.c_lflag &= ~ECHO; |
Eric Andersen | f5a3838 | 1999-10-19 22:26:25 +0000 | [diff] [blame] | 99 | stty(fileno(cin), &new_settings); |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame] | 100 | |
| 101 | (void) signal(SIGINT, gotsig); |
| 102 | |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame] | 103 | #endif |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 104 | while ((c = getc(file)) != EOF) { |
| 105 | if ( next_page ) { |
| 106 | int len=0; |
| 107 | next_page = 0; |
| 108 | lines=0; |
Eric Andersen | f5a3838 | 1999-10-19 22:26:25 +0000 | [diff] [blame] | 109 | len = fprintf(stdout, "--More-- "); |
| 110 | if (file != stdin) { |
| 111 | len += fprintf(stdout, "(%d%% of %ld bytes)", |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 112 | (int) (100*( (double) ftell(file) / (double) st.st_size )), |
Eric Andersen | f5a3838 | 1999-10-19 22:26:25 +0000 | [diff] [blame] | 113 | st.st_size); |
| 114 | } |
| 115 | len += fprintf(stdout, "%s", |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame] | 116 | #ifdef BB_MORE_TERM |
| 117 | "" |
| 118 | #else |
| 119 | "\n" |
| 120 | #endif |
| 121 | ); |
| 122 | |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 123 | fflush(stdout); |
Eric Andersen | f5a3838 | 1999-10-19 22:26:25 +0000 | [diff] [blame] | 124 | input = getc( cin); |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame] | 125 | |
| 126 | #ifdef BB_MORE_TERM |
| 127 | /* Erase the "More" message */ |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 128 | while(len-- > 0) |
| 129 | putc('\b', stdout); |
Eric Andersen | f5a3838 | 1999-10-19 22:26:25 +0000 | [diff] [blame] | 130 | while(len++ < 79) |
Eric Andersen | 9d3aba7 | 1999-10-06 09:04:55 +0000 | [diff] [blame] | 131 | putc(' ', stdout); |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 132 | while(len-- > 0) |
| 133 | putc('\b', stdout); |
| 134 | fflush(stdout); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 135 | #endif |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame] | 136 | |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 137 | } |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame] | 138 | if (input=='q') |
| 139 | goto end; |
| 140 | if (input==' ' && c == '\n' ) |
| 141 | next_page = 1; |
Eric Andersen | f5a3838 | 1999-10-19 22:26:25 +0000 | [diff] [blame] | 142 | if ( c == '\n' && ++lines == 24 ) |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 143 | next_page = 1; |
| 144 | putc(c, stdout); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 145 | } |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 146 | fclose(file); |
| 147 | fflush(stdout); |
| 148 | |
| 149 | argc--; |
| 150 | argv++; |
| 151 | } |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame] | 152 | end: |
| 153 | #ifdef BB_MORE_TERM |
| 154 | gotsig(0); |
| 155 | #endif |
| 156 | exit(TRUE); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 157 | } |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 158 | |