Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Mini more implementation for busybox |
| 4 | * |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 5 | * |
Eric Andersen | 96bcfd3 | 1999-11-12 01:30:18 +0000 | [diff] [blame] | 6 | * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>. |
| 7 | * |
| 8 | * Latest version blended together by Erik Andersen <andersen@lineo.com>, |
| 9 | * based on the original more implementation by Bruce, and code from the |
| 10 | * Debian boot-floppies team. |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 11 | * |
| 12 | * This program is free software; you can redistribute it and/or modify |
| 13 | * it under the terms of the GNU General Public License as published by |
| 14 | * the Free Software Foundation; either version 2 of the License, or |
| 15 | * (at your option) any later version. |
| 16 | * |
| 17 | * This program is distributed in the hope that it will be useful, |
| 18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 20 | * General Public License for more details. |
| 21 | * |
| 22 | * You should have received a copy of the GNU General Public License |
| 23 | * along with this program; if not, write to the Free Software |
| 24 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 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 | 50d6360 | 1999-11-09 01:47:36 +0000 | [diff] [blame] | 32 | #include <sys/ioctl.h> |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame] | 33 | |
Eric Andersen | d73dc5b | 1999-11-10 23:13:02 +0000 | [diff] [blame] | 34 | static const char more_usage[] = "more [file ...]\n"; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 35 | |
Erik Andersen | 1d1d950 | 2000-04-21 01:26:49 +0000 | [diff] [blame] | 36 | /* ED: sparc termios is broken: revert back to old termio handling. */ |
Eric Andersen | 50d6360 | 1999-11-09 01:47:36 +0000 | [diff] [blame] | 37 | #ifdef BB_FEATURE_USE_TERMIOS |
Eric Andersen | f5a3838 | 1999-10-19 22:26:25 +0000 | [diff] [blame] | 38 | |
Erik Andersen | 1d1d950 | 2000-04-21 01:26:49 +0000 | [diff] [blame] | 39 | #if #cpu(sparc) |
| 40 | # include <termio.h> |
| 41 | # define termios termio |
| 42 | # define setTermSettings(fd,argp) ioctl(fd,TCSETAF,argp) |
| 43 | # define getTermSettings(fd,argp) ioctl(fd,TCGETA,argp) |
| 44 | #else |
| 45 | # include <termios.h> |
| 46 | # define setTermSettings(fd,argp) tcsetattr(fd,TCSANOW,argp) |
| 47 | # define getTermSettings(fd,argp) tcgetattr(fd, argp); |
| 48 | #endif |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame] | 49 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 50 | FILE *cin; |
Erik Andersen | 4f3f757 | 2000-04-28 00:18:56 +0000 | [diff] [blame^] | 51 | |
Erik Andersen | 1d1d950 | 2000-04-21 01:26:49 +0000 | [diff] [blame] | 52 | struct termios initial_settings, new_settings; |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame] | 53 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 54 | void gotsig(int sig) |
| 55 | { |
Erik Andersen | 1d1d950 | 2000-04-21 01:26:49 +0000 | [diff] [blame] | 56 | setTermSettings(fileno(cin), &initial_settings); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 57 | fprintf(stdout, "\n"); |
| 58 | exit(TRUE); |
| 59 | } |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame] | 60 | #endif |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 61 | |
Eric Andersen | 50d6360 | 1999-11-09 01:47:36 +0000 | [diff] [blame] | 62 | |
| 63 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 64 | #define TERMINAL_WIDTH 79 /* not 80 in case terminal has linefold bug */ |
Eric Andersen | 50d6360 | 1999-11-09 01:47:36 +0000 | [diff] [blame] | 65 | #define TERMINAL_HEIGHT 24 |
| 66 | |
| 67 | |
Eric Andersen | 96bcfd3 | 1999-11-12 01:30:18 +0000 | [diff] [blame] | 68 | #if defined BB_FEATURE_AUTOWIDTH |
Erik Andersen | 4f3f757 | 2000-04-28 00:18:56 +0000 | [diff] [blame^] | 69 | #ifdef BB_FEATURE_USE_TERMIOS |
| 70 | static int terminal_width = 0; |
| 71 | #endif |
| 72 | static int terminal_height = 0; |
Eric Andersen | 50d6360 | 1999-11-09 01:47:36 +0000 | [diff] [blame] | 73 | #else |
| 74 | #define terminal_width TERMINAL_WIDTH |
| 75 | #define terminal_height TERMINAL_HEIGHT |
| 76 | #endif |
| 77 | |
| 78 | |
| 79 | |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 80 | extern int more_main(int argc, char **argv) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 81 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 82 | int c, lines = 0, input = 0; |
| 83 | int next_page = 0; |
| 84 | struct stat st; |
| 85 | FILE *file; |
| 86 | |
Erik Andersen | 4f3f757 | 2000-04-28 00:18:56 +0000 | [diff] [blame^] | 87 | #if defined BB_FEATURE_AUTOWIDTH && defined BB_FEATURE_USE_TERMIOS |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 88 | struct winsize win = { 0, 0 }; |
Eric Andersen | 50d6360 | 1999-11-09 01:47:36 +0000 | [diff] [blame] | 89 | #endif |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 90 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 91 | argc--; |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 92 | argv++; |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 93 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 94 | if (argc > 0 |
| 95 | && (strcmp(*argv, "--help") == 0 || strcmp(*argv, "-h") == 0)) { |
| 96 | usage(more_usage); |
| 97 | } |
| 98 | do { |
| 99 | if (argc == 0) { |
| 100 | file = stdin; |
| 101 | } else |
| 102 | file = fopen(*argv, "r"); |
| 103 | |
| 104 | if (file == NULL) { |
| 105 | perror(*argv); |
| 106 | exit(FALSE); |
| 107 | } |
| 108 | fstat(fileno(file), &st); |
| 109 | |
| 110 | #ifdef BB_FEATURE_USE_TERMIOS |
| 111 | cin = fopen("/dev/tty", "r"); |
| 112 | if (!cin) |
| 113 | cin = fopen("/dev/console", "r"); |
Erik Andersen | 1d1d950 | 2000-04-21 01:26:49 +0000 | [diff] [blame] | 114 | getTermSettings(fileno(cin), &initial_settings); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 115 | new_settings = initial_settings; |
Erik Andersen | e90f404 | 2000-04-21 21:53:58 +0000 | [diff] [blame] | 116 | new_settings.c_cc[VMIN] = 1; |
| 117 | new_settings.c_cc[VTIME] = 0; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 118 | new_settings.c_lflag &= ~ICANON; |
| 119 | new_settings.c_lflag &= ~ECHO; |
Erik Andersen | 1d1d950 | 2000-04-21 01:26:49 +0000 | [diff] [blame] | 120 | setTermSettings(fileno(cin), &new_settings); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 121 | |
| 122 | #ifdef BB_FEATURE_AUTOWIDTH |
| 123 | ioctl(fileno(stdout), TIOCGWINSZ, &win); |
| 124 | if (win.ws_row > 4) |
| 125 | terminal_height = win.ws_row - 2; |
| 126 | if (win.ws_col > 0) |
| 127 | terminal_width = win.ws_col - 1; |
| 128 | #endif |
| 129 | |
| 130 | (void) signal(SIGINT, gotsig); |
| 131 | (void) signal(SIGQUIT, gotsig); |
| 132 | (void) signal(SIGTERM, gotsig); |
| 133 | |
| 134 | #endif |
| 135 | while ((c = getc(file)) != EOF) { |
| 136 | if (next_page) { |
| 137 | int len = 0; |
| 138 | |
| 139 | next_page = 0; |
| 140 | lines = 0; |
| 141 | len = fprintf(stdout, "--More-- "); |
| 142 | if (file != stdin) { |
| 143 | len += fprintf(stdout, "(%d%% of %ld bytes)", |
| 144 | (int) (100 * |
| 145 | ((double) ftell(file) / |
| 146 | (double) st.st_size)), |
| 147 | st.st_size); |
| 148 | } |
| 149 | len += fprintf(stdout, "%s", |
| 150 | #ifdef BB_FEATURE_USE_TERMIOS |
| 151 | "" |
| 152 | #else |
| 153 | "\n" |
| 154 | #endif |
| 155 | ); |
| 156 | |
| 157 | fflush(stdout); |
Erik Andersen | 4f3f757 | 2000-04-28 00:18:56 +0000 | [diff] [blame^] | 158 | #ifdef BB_FEATURE_USE_TERMIOS |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 159 | input = getc(cin); |
Erik Andersen | 4f3f757 | 2000-04-28 00:18:56 +0000 | [diff] [blame^] | 160 | #else |
| 161 | input = getc(stdin); |
| 162 | #endif |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 163 | |
| 164 | #ifdef BB_FEATURE_USE_TERMIOS |
| 165 | /* Erase the "More" message */ |
| 166 | while (--len >= 0) |
| 167 | putc('\b', stdout); |
| 168 | while (++len <= terminal_width) |
| 169 | putc(' ', stdout); |
| 170 | while (--len >= 0) |
| 171 | putc('\b', stdout); |
| 172 | fflush(stdout); |
| 173 | #endif |
| 174 | |
| 175 | } |
| 176 | if (c == '\n') { |
| 177 | switch (input) { |
| 178 | case 'q': |
| 179 | goto end; |
| 180 | case '\n': |
| 181 | /* increment by just one line if we are at |
| 182 | * the end of this line*/ |
| 183 | next_page = 1; |
| 184 | break; |
| 185 | } |
| 186 | if (++lines == terminal_height) |
| 187 | next_page = 1; |
| 188 | } |
| 189 | putc(c, stdout); |
| 190 | } |
| 191 | fclose(file); |
| 192 | fflush(stdout); |
| 193 | |
| 194 | argv++; |
| 195 | } while (--argc > 0); |
| 196 | end: |
| 197 | #ifdef BB_FEATURE_USE_TERMIOS |
| 198 | gotsig(0); |
| 199 | #endif |
| 200 | exit(TRUE); |
| 201 | } |