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 | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 30 | #include <signal.h> |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 31 | |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame^] | 32 | |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 33 | const char more_usage[] = "[file ...]"; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 34 | |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame^] | 35 | |
| 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 Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 49 | |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 50 | extern int more_main(int argc, char **argv) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 51 | { |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame^] | 52 | int c, lines=0, input; |
Eric Andersen | 9d3aba7 | 1999-10-06 09:04:55 +0000 | [diff] [blame] | 53 | int next_page=0, rows = 24; |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame^] | 54 | #ifdef BB_MORE_TERM |
| 55 | int cols; |
| 56 | struct winsize win; |
Eric Andersen | 9d3aba7 | 1999-10-06 09:04:55 +0000 | [diff] [blame] | 57 | #endif |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 58 | 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 Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame^] | 63 | exit(FALSE); |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 64 | } |
| 65 | argc--; |
| 66 | argv++; |
| 67 | |
| 68 | while (argc-- > 0) { |
Eric Andersen | 9d3aba7 | 1999-10-06 09:04:55 +0000 | [diff] [blame] | 69 | file = fopen(*argv, "r"); |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 70 | if (file == NULL) { |
Eric Andersen | 9d3aba7 | 1999-10-06 09:04:55 +0000 | [diff] [blame] | 71 | perror("Can't open file"); |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame^] | 72 | exit(FALSE); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 73 | } |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 74 | fstat(fileno(file), &st); |
Eric Andersen | 9d3aba7 | 1999-10-06 09:04:55 +0000 | [diff] [blame] | 75 | fprintf(stderr, "hi\n"); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 76 | |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame^] | 77 | #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 Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 93 | while ((c = getc(file)) != EOF) { |
| 94 | if ( next_page ) { |
| 95 | int len=0; |
| 96 | next_page = 0; |
| 97 | lines=0; |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame^] | 98 | len = fprintf(stdout, "--More-- (%d%% of %ld bytes)%s", |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 99 | (int) (100*( (double) ftell(file) / (double) st.st_size )), |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame^] | 100 | st.st_size, |
| 101 | #ifdef BB_MORE_TERM |
| 102 | "" |
| 103 | #else |
| 104 | "\n" |
| 105 | #endif |
| 106 | ); |
| 107 | |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 108 | fflush(stdout); |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame^] | 109 | input = getc( stdin); |
| 110 | |
| 111 | #ifdef BB_MORE_TERM |
| 112 | /* Erase the "More" message */ |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 113 | while(len-- > 0) |
| 114 | putc('\b', stdout); |
| 115 | while(len++ < cols) |
Eric Andersen | 9d3aba7 | 1999-10-06 09:04:55 +0000 | [diff] [blame] | 116 | putc(' ', stdout); |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 117 | while(len-- > 0) |
| 118 | putc('\b', stdout); |
| 119 | fflush(stdout); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 120 | #endif |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame^] | 121 | |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 122 | } |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame^] | 123 | if (input=='q') |
| 124 | goto end; |
| 125 | if (input==' ' && c == '\n' ) |
| 126 | next_page = 1; |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 127 | if ( c == '\n' && ++lines == (rows + 1) ) |
| 128 | next_page = 1; |
| 129 | putc(c, stdout); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 130 | } |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 131 | fclose(file); |
| 132 | fflush(stdout); |
| 133 | |
| 134 | argc--; |
| 135 | argv++; |
| 136 | } |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame^] | 137 | end: |
| 138 | #ifdef BB_MORE_TERM |
| 139 | gotsig(0); |
| 140 | #endif |
| 141 | exit(TRUE); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 142 | } |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 143 | |