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 | 96bcfd3 | 1999-11-12 01:30:18 +0000 | [diff] [blame] | 5 | * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>. |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 6 | * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org> |
Eric Andersen | 96bcfd3 | 1999-11-12 01:30:18 +0000 | [diff] [blame] | 7 | * |
Eric Andersen | cb81e64 | 2003-07-14 21:21:08 +0000 | [diff] [blame] | 8 | * Latest version blended together by Erik Andersen <andersen@codepoet.org>, |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 9 | * based on the original more implementation by Bruce, and code from the |
Eric Andersen | 96bcfd3 | 1999-11-12 01:30:18 +0000 | [diff] [blame] | 10 | * Debian boot-floppies team. |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 11 | * |
Glenn L McGrath | b4a1baa | 2003-01-13 22:09:50 +0000 | [diff] [blame] | 12 | * Termios corrects by Vladimir Oleynik <dzo@simtreas.ru> |
Glenn L McGrath | 78b0e37 | 2001-06-26 02:06:08 +0000 | [diff] [blame] | 13 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 14 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 15 | */ |
Denys Vlasenko | dd898c9 | 2016-11-23 11:46:32 +0100 | [diff] [blame] | 16 | //config:config MORE |
| 17 | //config: bool "more" |
| 18 | //config: default y |
| 19 | //config: help |
| 20 | //config: more is a simple utility which allows you to read text one screen |
| 21 | //config: sized page at a time. If you want to read text that is larger than |
| 22 | //config: the screen, and you are using anything faster than a 300 baud modem, |
| 23 | //config: you will probably find this utility very helpful. If you don't have |
| 24 | //config: any need to reading text files, you can leave this disabled. |
| 25 | |
| 26 | //applet:IF_MORE(APPLET(more, BB_DIR_BIN, BB_SUID_DROP)) |
| 27 | |
| 28 | //kbuild:lib-$(CONFIG_MORE) += more.o |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 29 | |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 30 | //usage:#define more_trivial_usage |
| 31 | //usage: "[FILE]..." |
| 32 | //usage:#define more_full_usage "\n\n" |
| 33 | //usage: "View FILE (or stdin) one screenful at a time" |
| 34 | //usage: |
| 35 | //usage:#define more_example_usage |
| 36 | //usage: "$ dmesg | more\n" |
| 37 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 38 | #include "libbb.h" |
Denys Vlasenko | e6a2f4c | 2016-04-21 16:26:30 +0200 | [diff] [blame] | 39 | #include "common_bufsiz.h" |
Erik Andersen | 4f3f757 | 2000-04-28 00:18:56 +0000 | [diff] [blame] | 40 | |
Denis Vlasenko | c2f011a | 2007-05-31 21:31:56 +0000 | [diff] [blame] | 41 | struct globals { |
Denys Vlasenko | c5891fe | 2017-01-11 10:38:52 +0100 | [diff] [blame^] | 42 | int tty_fileno; |
| 43 | unsigned terminal_width; |
| 44 | unsigned terminal_height; |
Denis Vlasenko | c2f011a | 2007-05-31 21:31:56 +0000 | [diff] [blame] | 45 | struct termios initial_settings; |
| 46 | struct termios new_settings; |
Denys Vlasenko | 98a4c7c | 2010-02-04 15:00:15 +0100 | [diff] [blame] | 47 | } FIX_ALIASING; |
Denis Vlasenko | c2f011a | 2007-05-31 21:31:56 +0000 | [diff] [blame] | 48 | #define G (*(struct globals*)bb_common_bufsiz1) |
Denys Vlasenko | 47cfbf3 | 2016-04-21 18:18:48 +0200 | [diff] [blame] | 49 | #define INIT_G() do { setup_common_bufsiz(); } while (0) |
Denis Vlasenko | c2f011a | 2007-05-31 21:31:56 +0000 | [diff] [blame] | 50 | |
Denys Vlasenko | c5891fe | 2017-01-11 10:38:52 +0100 | [diff] [blame^] | 51 | static void get_wh(void) |
| 52 | { |
| 53 | /* never returns w, h <= 1 */ |
| 54 | get_terminal_width_height(G.tty_fileno, &G.terminal_width, &G.terminal_height); |
| 55 | G.terminal_height -= 1; |
| 56 | } |
| 57 | |
| 58 | static void tcsetattr_tty_TCSANOW(struct termios *settings) |
| 59 | { |
| 60 | tcsetattr(G.tty_fileno, TCSANOW, settings); |
| 61 | } |
Glenn L McGrath | 78b0e37 | 2001-06-26 02:06:08 +0000 | [diff] [blame] | 62 | |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 63 | static void gotsig(int sig UNUSED_PARAM) |
Glenn L McGrath | 78b0e37 | 2001-06-26 02:06:08 +0000 | [diff] [blame] | 64 | { |
Marek Polacek | 7b18107 | 2010-10-28 21:34:56 +0200 | [diff] [blame] | 65 | /* bb_putchar_stderr doesn't use stdio buffering, |
| 66 | * therefore it is safe in signal handler */ |
| 67 | bb_putchar_stderr('\n'); |
Denys Vlasenko | c5891fe | 2017-01-11 10:38:52 +0100 | [diff] [blame^] | 68 | tcsetattr_tty_TCSANOW(&G.initial_settings); |
Marek Polacek | 7b18107 | 2010-10-28 21:34:56 +0200 | [diff] [blame] | 69 | _exit(EXIT_FAILURE); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 70 | } |
Denis Vlasenko | c2f011a | 2007-05-31 21:31:56 +0000 | [diff] [blame] | 71 | |
Denis Vlasenko | 033e592 | 2007-08-15 20:42:52 +0000 | [diff] [blame] | 72 | #define CONVERTED_TAB_SIZE 8 |
Eric Andersen | 50d6360 | 1999-11-09 01:47:36 +0000 | [diff] [blame] | 73 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 74 | int more_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 75 | int more_main(int argc UNUSED_PARAM, char **argv) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 76 | { |
Denys Vlasenko | d8b989f | 2010-07-12 03:14:17 +0200 | [diff] [blame] | 77 | int c = c; /* for compiler */ |
Denis Vlasenko | 033e592 | 2007-08-15 20:42:52 +0000 | [diff] [blame] | 78 | int input = 0; |
| 79 | int spaces = 0; |
| 80 | int please_display_more_prompt; |
Denys Vlasenko | c5891fe | 2017-01-11 10:38:52 +0100 | [diff] [blame^] | 81 | FILE *tty; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 82 | |
Denis Vlasenko | c2f011a | 2007-05-31 21:31:56 +0000 | [diff] [blame] | 83 | INIT_G(); |
| 84 | |
Denys Vlasenko | 713b513 | 2016-10-11 15:29:38 +0200 | [diff] [blame] | 85 | /* Parse options */ |
| 86 | /* Accepted but ignored: */ |
Denys Vlasenko | c5891fe | 2017-01-11 10:38:52 +0100 | [diff] [blame^] | 87 | /* -d Display help instead of ringing bell */ |
Denys Vlasenko | 713b513 | 2016-10-11 15:29:38 +0200 | [diff] [blame] | 88 | /* -f Count logical lines (IOW: long lines are not folded) */ |
| 89 | /* -l Do not pause after any line containing a ^L (form feed) */ |
| 90 | /* -s Squeeze blank lines into one */ |
| 91 | /* -u Suppress underlining */ |
| 92 | getopt32(argv, "dflsu"); |
| 93 | argv += optind; |
| 94 | |
Denis Vlasenko | 4eb8b93 | 2007-03-10 16:32:14 +0000 | [diff] [blame] | 95 | /* Another popular pager, most, detects when stdout |
| 96 | * is not a tty and turns into cat. This makes sense. */ |
| 97 | if (!isatty(STDOUT_FILENO)) |
| 98 | return bb_cat(argv); |
Denys Vlasenko | c5891fe | 2017-01-11 10:38:52 +0100 | [diff] [blame^] | 99 | tty = fopen_for_read(CURRENT_TTY); |
| 100 | if (!tty) |
Denis Vlasenko | 4eb8b93 | 2007-03-10 16:32:14 +0000 | [diff] [blame] | 101 | return bb_cat(argv); |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 102 | |
Denys Vlasenko | c5891fe | 2017-01-11 10:38:52 +0100 | [diff] [blame^] | 103 | G.tty_fileno = fileno(tty); |
| 104 | tcgetattr(G.tty_fileno, &G.initial_settings); |
| 105 | G.new_settings = G.initial_settings; |
| 106 | G.new_settings.c_lflag &= ~(ICANON | ECHO); |
| 107 | G.new_settings.c_cc[VMIN] = 1; |
| 108 | G.new_settings.c_cc[VTIME] = 0; |
| 109 | tcsetattr_tty_TCSANOW(&G.new_settings); |
| 110 | bb_signals(BB_FATAL_SIGS, gotsig); |
Glenn L McGrath | 78b0e37 | 2001-06-26 02:06:08 +0000 | [diff] [blame] | 111 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 112 | do { |
Denys Vlasenko | c5891fe | 2017-01-11 10:38:52 +0100 | [diff] [blame^] | 113 | struct stat st; |
| 114 | FILE *file; |
| 115 | int len; |
| 116 | int lines; |
| 117 | |
Denis Vlasenko | b15b7f7 | 2006-12-10 01:57:29 +0000 | [diff] [blame] | 118 | file = stdin; |
Denis Vlasenko | 4eb8b93 | 2007-03-10 16:32:14 +0000 | [diff] [blame] | 119 | if (*argv) { |
Denis Vlasenko | ddec5af | 2006-10-26 23:25:17 +0000 | [diff] [blame] | 120 | file = fopen_or_warn(*argv, "r"); |
Denis Vlasenko | b15b7f7 | 2006-12-10 01:57:29 +0000 | [diff] [blame] | 121 | if (!file) |
Denis Vlasenko | 4eb8b93 | 2007-03-10 16:32:14 +0000 | [diff] [blame] | 122 | continue; |
Denis Vlasenko | b15b7f7 | 2006-12-10 01:57:29 +0000 | [diff] [blame] | 123 | } |
Eric Andersen | 0ee0a8d | 2001-12-06 07:24:29 +0000 | [diff] [blame] | 124 | st.st_size = 0; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 125 | fstat(fileno(file), &st); |
| 126 | |
Denys Vlasenko | c5891fe | 2017-01-11 10:38:52 +0100 | [diff] [blame^] | 127 | get_wh(); |
Eric Andersen | 8efe967 | 2003-09-15 08:33:45 +0000 | [diff] [blame] | 128 | |
Denys Vlasenko | c5891fe | 2017-01-11 10:38:52 +0100 | [diff] [blame^] | 129 | please_display_more_prompt = 0; |
Denis Vlasenko | b15b7f7 | 2006-12-10 01:57:29 +0000 | [diff] [blame] | 130 | len = 0; |
Eric Andersen | 5723934 | 2001-02-23 01:39:26 +0000 | [diff] [blame] | 131 | lines = 0; |
Denys Vlasenko | c5891fe | 2017-01-11 10:38:52 +0100 | [diff] [blame^] | 132 | for (;;) { |
Denis Vlasenko | 033e592 | 2007-08-15 20:42:52 +0000 | [diff] [blame] | 133 | int wrap; |
Denys Vlasenko | c5891fe | 2017-01-11 10:38:52 +0100 | [diff] [blame^] | 134 | |
Denis Vlasenko | 033e592 | 2007-08-15 20:42:52 +0000 | [diff] [blame] | 135 | if (spaces) |
| 136 | spaces--; |
Denys Vlasenko | c5891fe | 2017-01-11 10:38:52 +0100 | [diff] [blame^] | 137 | else { |
| 138 | c = getc(file); |
| 139 | if (c == EOF) break; |
| 140 | } |
Denis Vlasenko | 033e592 | 2007-08-15 20:42:52 +0000 | [diff] [blame] | 141 | loop_top: |
| 142 | if (input != 'r' && please_display_more_prompt) { |
Matt Kraai | 12f417e | 2001-01-18 02:57:08 +0000 | [diff] [blame] | 143 | len = printf("--More-- "); |
Denys Vlasenko | 82e785c | 2011-03-07 02:01:52 +0100 | [diff] [blame] | 144 | if (st.st_size != 0) { |
| 145 | uoff_t d = (uoff_t)st.st_size / 100; |
| 146 | if (d == 0) |
| 147 | d = 1; |
Denys Vlasenko | a3aa3e3 | 2009-12-11 12:36:10 +0100 | [diff] [blame] | 148 | len += printf("(%u%% of %"OFF_FMT"u bytes)", |
Denys Vlasenko | 82e785c | 2011-03-07 02:01:52 +0100 | [diff] [blame] | 149 | (int) ((uoff_t)ftello(file) / d), |
Denis Vlasenko | b15b7f7 | 2006-12-10 01:57:29 +0000 | [diff] [blame] | 150 | st.st_size); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 151 | } |
Mark Whitley | b991395 | 2000-06-16 00:26:51 +0000 | [diff] [blame] | 152 | |
| 153 | /* |
| 154 | * We've just displayed the "--More--" prompt, so now we need |
| 155 | * to get input from the user. |
| 156 | */ |
Denis Vlasenko | 033e592 | 2007-08-15 20:42:52 +0000 | [diff] [blame] | 157 | for (;;) { |
Denys Vlasenko | c5891fe | 2017-01-11 10:38:52 +0100 | [diff] [blame^] | 158 | fflush_all(); |
| 159 | input = getc(tty); |
Denis Vlasenko | 033e592 | 2007-08-15 20:42:52 +0000 | [diff] [blame] | 160 | input = tolower(input); |
Denis Vlasenko | 033e592 | 2007-08-15 20:42:52 +0000 | [diff] [blame] | 161 | /* Erase the last message */ |
| 162 | printf("\r%*s\r", len, ""); |
| 163 | |
Denys Vlasenko | c5891fe | 2017-01-11 10:38:52 +0100 | [diff] [blame^] | 164 | if (input == 'q') |
| 165 | goto end; |
Denis Vlasenko | 033e592 | 2007-08-15 20:42:52 +0000 | [diff] [blame] | 166 | /* Due to various multibyte escape |
| 167 | * sequences, it's not ok to accept |
| 168 | * any input as a command to scroll |
| 169 | * the screen. We only allow known |
| 170 | * commands, else we show help msg. */ |
Denys Vlasenko | c5891fe | 2017-01-11 10:38:52 +0100 | [diff] [blame^] | 171 | if (input == ' ' || input == '\n' || input == 'r') |
Denis Vlasenko | 033e592 | 2007-08-15 20:42:52 +0000 | [diff] [blame] | 172 | break; |
| 173 | len = printf("(Enter:next line Space:next page Q:quit R:show the rest)"); |
| 174 | } |
Denis Vlasenko | b15b7f7 | 2006-12-10 01:57:29 +0000 | [diff] [blame] | 175 | len = 0; |
Eric Andersen | 5723934 | 2001-02-23 01:39:26 +0000 | [diff] [blame] | 176 | lines = 0; |
Denis Vlasenko | 033e592 | 2007-08-15 20:42:52 +0000 | [diff] [blame] | 177 | please_display_more_prompt = 0; |
Matt Kraai | d6cde0b | 2001-04-12 20:51:01 +0000 | [diff] [blame] | 178 | |
Denis Vlasenko | 033e592 | 2007-08-15 20:42:52 +0000 | [diff] [blame] | 179 | /* The user may have resized the terminal. |
| 180 | * Re-read the dimensions. */ |
Denys Vlasenko | c5891fe | 2017-01-11 10:38:52 +0100 | [diff] [blame^] | 181 | get_wh(); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 182 | } |
Mark Whitley | b991395 | 2000-06-16 00:26:51 +0000 | [diff] [blame] | 183 | |
Denis Vlasenko | 033e592 | 2007-08-15 20:42:52 +0000 | [diff] [blame] | 184 | /* Crudely convert tabs into spaces, which are |
| 185 | * a bajillion times easier to deal with. */ |
| 186 | if (c == '\t') { |
Denys Vlasenko | 82e785c | 2011-03-07 02:01:52 +0100 | [diff] [blame] | 187 | spaces = ((unsigned)~len) % CONVERTED_TAB_SIZE; |
Denis Vlasenko | 033e592 | 2007-08-15 20:42:52 +0000 | [diff] [blame] | 188 | c = ' '; |
Denis Vlasenko | f7be20e | 2007-12-24 14:09:19 +0000 | [diff] [blame] | 189 | } |
Denis Vlasenko | 033e592 | 2007-08-15 20:42:52 +0000 | [diff] [blame] | 190 | |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 191 | /* |
Mark Whitley | b991395 | 2000-06-16 00:26:51 +0000 | [diff] [blame] | 192 | * There are two input streams to worry about here: |
| 193 | * |
Denis Vlasenko | c2f011a | 2007-05-31 21:31:56 +0000 | [diff] [blame] | 194 | * c : the character we are reading from the file being "mored" |
| 195 | * input: a character received from the keyboard |
Mark Whitley | b991395 | 2000-06-16 00:26:51 +0000 | [diff] [blame] | 196 | * |
| 197 | * If we hit a newline in the _file_ stream, we want to test and |
| 198 | * see if any characters have been hit in the _input_ stream. This |
| 199 | * allows the user to quit while in the middle of a file. |
| 200 | */ |
Denys Vlasenko | c5891fe | 2017-01-11 10:38:52 +0100 | [diff] [blame^] | 201 | wrap = (++len > G.terminal_width); |
Denis Vlasenko | 033e592 | 2007-08-15 20:42:52 +0000 | [diff] [blame] | 202 | if (c == '\n' || wrap) { |
| 203 | /* Then outputting this character |
| 204 | * will move us to a new line. */ |
Denys Vlasenko | c5891fe | 2017-01-11 10:38:52 +0100 | [diff] [blame^] | 205 | if (++lines >= G.terminal_height || input == '\n') |
Denis Vlasenko | 033e592 | 2007-08-15 20:42:52 +0000 | [diff] [blame] | 206 | please_display_more_prompt = 1; |
Denis Vlasenko | b15b7f7 | 2006-12-10 01:57:29 +0000 | [diff] [blame] | 207 | len = 0; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 208 | } |
Denis Vlasenko | 033e592 | 2007-08-15 20:42:52 +0000 | [diff] [blame] | 209 | if (c != '\n' && wrap) { |
| 210 | /* Then outputting this will also put a character on |
| 211 | * the beginning of that new line. Thus we first want to |
| 212 | * display the prompt (if any), so we skip the putchar() |
| 213 | * and go back to the top of the loop, without reading |
| 214 | * a new character. */ |
| 215 | goto loop_top; |
| 216 | } |
| 217 | /* My small mind cannot fathom backspaces and UTF-8 */ |
| 218 | putchar(c); |
Denys Vlasenko | 0d1d0f6 | 2010-12-13 14:31:59 +0100 | [diff] [blame] | 219 | die_if_ferror_stdout(); /* if tty was destroyed (closed xterm, etc) */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 220 | } |
| 221 | fclose(file); |
Denys Vlasenko | 8131eea | 2009-11-02 14:19:51 +0100 | [diff] [blame] | 222 | fflush_all(); |
Denis Vlasenko | 4eb8b93 | 2007-03-10 16:32:14 +0000 | [diff] [blame] | 223 | } while (*argv && *++argv); |
Denis Vlasenko | b15b7f7 | 2006-12-10 01:57:29 +0000 | [diff] [blame] | 224 | end: |
Denys Vlasenko | c5891fe | 2017-01-11 10:38:52 +0100 | [diff] [blame^] | 225 | tcsetattr_tty_TCSANOW(&G.initial_settings); |
Matt Kraai | d6cde0b | 2001-04-12 20:51:01 +0000 | [diff] [blame] | 226 | return 0; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 227 | } |