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> |
Erik Andersen | 7ab9c7e | 2000-05-12 19:41:47 +0000 | [diff] [blame] | 33 | #define BB_DECLARE_EXTERN |
| 34 | #define bb_need_help |
| 35 | #include "messages.c" |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame] | 36 | |
Erik Andersen | 7ab9c7e | 2000-05-12 19:41:47 +0000 | [diff] [blame] | 37 | static const char more_usage[] = "more [FILE ...]\n" |
| 38 | #ifndef BB_FEATURE_TRIVIAL_HELP |
| 39 | "\nMore is a filter for viewing FILE one screenful at a time.\n" |
| 40 | #endif |
| 41 | ; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 42 | |
Erik Andersen | 1d1d950 | 2000-04-21 01:26:49 +0000 | [diff] [blame] | 43 | /* ED: sparc termios is broken: revert back to old termio handling. */ |
Eric Andersen | 50d6360 | 1999-11-09 01:47:36 +0000 | [diff] [blame] | 44 | #ifdef BB_FEATURE_USE_TERMIOS |
Mark Whitley | 4fa84e6 | 2000-06-21 22:53:16 +0000 | [diff] [blame] | 45 | # if #cpu(sparc) |
| 46 | # include <termio.h> |
| 47 | # define termios termio |
| 48 | # define setTermSettings(fd,argp) ioctl(fd,TCSETAF,argp) |
| 49 | # define getTermSettings(fd,argp) ioctl(fd,TCGETA,argp) |
| 50 | # else |
| 51 | # include <termios.h> |
| 52 | # define setTermSettings(fd,argp) tcsetattr(fd,TCSANOW,argp) |
| 53 | # define getTermSettings(fd,argp) tcgetattr(fd, argp); |
| 54 | # endif |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame] | 55 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 56 | FILE *cin; |
Erik Andersen | 4f3f757 | 2000-04-28 00:18:56 +0000 | [diff] [blame] | 57 | |
Erik Andersen | 1d1d950 | 2000-04-21 01:26:49 +0000 | [diff] [blame] | 58 | struct termios initial_settings, new_settings; |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame] | 59 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 60 | void gotsig(int sig) |
| 61 | { |
Erik Andersen | 1d1d950 | 2000-04-21 01:26:49 +0000 | [diff] [blame] | 62 | setTermSettings(fileno(cin), &initial_settings); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 63 | fprintf(stdout, "\n"); |
| 64 | exit(TRUE); |
| 65 | } |
Mark Whitley | 4fa84e6 | 2000-06-21 22:53:16 +0000 | [diff] [blame] | 66 | #endif /* BB_FEATURE_USE_TERMIOS */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 67 | |
Eric Andersen | 50d6360 | 1999-11-09 01:47:36 +0000 | [diff] [blame] | 68 | |
Mark Whitley | 4fa84e6 | 2000-06-21 22:53:16 +0000 | [diff] [blame] | 69 | static int terminal_width = 79; /* not 80 in case terminal has linefold bug */ |
| 70 | static int terminal_height = 24; |
Eric Andersen | 50d6360 | 1999-11-09 01:47:36 +0000 | [diff] [blame] | 71 | |
| 72 | |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 73 | extern int more_main(int argc, char **argv) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 74 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 75 | int c, lines = 0, input = 0; |
Mark Whitley | b991395 | 2000-06-16 00:26:51 +0000 | [diff] [blame] | 76 | int please_display_more_prompt = 0; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 77 | struct stat st; |
| 78 | FILE *file; |
| 79 | |
Erik Andersen | 4f3f757 | 2000-04-28 00:18:56 +0000 | [diff] [blame] | 80 | #if defined BB_FEATURE_AUTOWIDTH && defined BB_FEATURE_USE_TERMIOS |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 81 | struct winsize win = { 0, 0 }; |
Eric Andersen | 50d6360 | 1999-11-09 01:47:36 +0000 | [diff] [blame] | 82 | #endif |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 83 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 84 | argc--; |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 85 | argv++; |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 86 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 87 | if (argc > 0 |
Erik Andersen | 7ab9c7e | 2000-05-12 19:41:47 +0000 | [diff] [blame] | 88 | && (strcmp(*argv, dash_dash_help) == 0 || strcmp(*argv, "-h") == 0)) { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 89 | usage(more_usage); |
| 90 | } |
| 91 | do { |
| 92 | if (argc == 0) { |
| 93 | file = stdin; |
| 94 | } else |
| 95 | file = fopen(*argv, "r"); |
| 96 | |
| 97 | if (file == NULL) { |
| 98 | perror(*argv); |
| 99 | exit(FALSE); |
| 100 | } |
| 101 | fstat(fileno(file), &st); |
| 102 | |
| 103 | #ifdef BB_FEATURE_USE_TERMIOS |
| 104 | cin = fopen("/dev/tty", "r"); |
| 105 | if (!cin) |
| 106 | cin = fopen("/dev/console", "r"); |
Erik Andersen | 1d1d950 | 2000-04-21 01:26:49 +0000 | [diff] [blame] | 107 | getTermSettings(fileno(cin), &initial_settings); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 108 | new_settings = initial_settings; |
Erik Andersen | e90f404 | 2000-04-21 21:53:58 +0000 | [diff] [blame] | 109 | new_settings.c_cc[VMIN] = 1; |
| 110 | new_settings.c_cc[VTIME] = 0; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 111 | new_settings.c_lflag &= ~ICANON; |
| 112 | new_settings.c_lflag &= ~ECHO; |
Erik Andersen | 1d1d950 | 2000-04-21 01:26:49 +0000 | [diff] [blame] | 113 | setTermSettings(fileno(cin), &new_settings); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 114 | |
Mark Whitley | 4fa84e6 | 2000-06-21 22:53:16 +0000 | [diff] [blame] | 115 | # ifdef BB_FEATURE_AUTOWIDTH |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 116 | ioctl(fileno(stdout), TIOCGWINSZ, &win); |
| 117 | if (win.ws_row > 4) |
| 118 | terminal_height = win.ws_row - 2; |
| 119 | if (win.ws_col > 0) |
| 120 | terminal_width = win.ws_col - 1; |
Mark Whitley | 4fa84e6 | 2000-06-21 22:53:16 +0000 | [diff] [blame] | 121 | # endif |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 122 | |
| 123 | (void) signal(SIGINT, gotsig); |
| 124 | (void) signal(SIGQUIT, gotsig); |
| 125 | (void) signal(SIGTERM, gotsig); |
| 126 | |
| 127 | #endif |
| 128 | while ((c = getc(file)) != EOF) { |
Mark Whitley | b991395 | 2000-06-16 00:26:51 +0000 | [diff] [blame] | 129 | if (please_display_more_prompt) { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 130 | int len = 0; |
| 131 | |
Mark Whitley | b991395 | 2000-06-16 00:26:51 +0000 | [diff] [blame] | 132 | please_display_more_prompt = 0; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 133 | lines = 0; |
| 134 | len = fprintf(stdout, "--More-- "); |
| 135 | if (file != stdin) { |
| 136 | len += fprintf(stdout, "(%d%% of %ld bytes)", |
| 137 | (int) (100 * |
| 138 | ((double) ftell(file) / |
| 139 | (double) st.st_size)), |
| 140 | st.st_size); |
| 141 | } |
| 142 | len += fprintf(stdout, "%s", |
| 143 | #ifdef BB_FEATURE_USE_TERMIOS |
| 144 | "" |
| 145 | #else |
| 146 | "\n" |
| 147 | #endif |
| 148 | ); |
| 149 | |
| 150 | fflush(stdout); |
Mark Whitley | b991395 | 2000-06-16 00:26:51 +0000 | [diff] [blame] | 151 | |
| 152 | /* |
| 153 | * We've just displayed the "--More--" prompt, so now we need |
| 154 | * to get input from the user. |
| 155 | */ |
Erik Andersen | 4f3f757 | 2000-04-28 00:18:56 +0000 | [diff] [blame] | 156 | #ifdef BB_FEATURE_USE_TERMIOS |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 157 | input = getc(cin); |
Erik Andersen | 4f3f757 | 2000-04-28 00:18:56 +0000 | [diff] [blame] | 158 | #else |
| 159 | input = getc(stdin); |
| 160 | #endif |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 161 | |
| 162 | #ifdef BB_FEATURE_USE_TERMIOS |
| 163 | /* Erase the "More" message */ |
| 164 | while (--len >= 0) |
| 165 | putc('\b', stdout); |
| 166 | while (++len <= terminal_width) |
| 167 | putc(' ', stdout); |
| 168 | while (--len >= 0) |
| 169 | putc('\b', stdout); |
| 170 | fflush(stdout); |
| 171 | #endif |
| 172 | |
| 173 | } |
Mark Whitley | b991395 | 2000-06-16 00:26:51 +0000 | [diff] [blame] | 174 | |
| 175 | /* |
| 176 | * There are two input streams to worry about here: |
| 177 | * |
| 178 | * c : the character we are reading from the file being "mored" |
| 179 | * input : a character received from the keyboard |
| 180 | * |
| 181 | * If we hit a newline in the _file_ stream, we want to test and |
| 182 | * see if any characters have been hit in the _input_ stream. This |
| 183 | * allows the user to quit while in the middle of a file. |
| 184 | */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 185 | if (c == '\n') { |
| 186 | switch (input) { |
| 187 | case 'q': |
| 188 | goto end; |
| 189 | case '\n': |
| 190 | /* increment by just one line if we are at |
| 191 | * the end of this line*/ |
Mark Whitley | b991395 | 2000-06-16 00:26:51 +0000 | [diff] [blame] | 192 | please_display_more_prompt = 1; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 193 | break; |
| 194 | } |
| 195 | if (++lines == terminal_height) |
Mark Whitley | b991395 | 2000-06-16 00:26:51 +0000 | [diff] [blame] | 196 | please_display_more_prompt = 1; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 197 | } |
Mark Whitley | 4fa84e6 | 2000-06-21 22:53:16 +0000 | [diff] [blame] | 198 | /* |
| 199 | * If we just read a newline from the file being 'mored' and any |
| 200 | * key other than a return is hit, scroll by one page |
| 201 | */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 202 | putc(c, stdout); |
| 203 | } |
| 204 | fclose(file); |
| 205 | fflush(stdout); |
| 206 | |
| 207 | argv++; |
| 208 | } while (--argc > 0); |
| 209 | end: |
| 210 | #ifdef BB_FEATURE_USE_TERMIOS |
| 211 | gotsig(0); |
| 212 | #endif |
Eric Andersen | b610615 | 2000-06-19 17:25:40 +0000 | [diff] [blame] | 213 | return(TRUE); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 214 | } |