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 | * |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 14 | * Licensed under GPLv2 or later, see file License in this tarball for details. |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 15 | */ |
| 16 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 17 | #include "libbb.h" |
Erik Andersen | 4f3f757 | 2000-04-28 00:18:56 +0000 | [diff] [blame] | 18 | |
Denis Vlasenko | b15b7f7 | 2006-12-10 01:57:29 +0000 | [diff] [blame] | 19 | #if ENABLE_FEATURE_USE_TERMIOS |
Denis Vlasenko | c2f011a | 2007-05-31 21:31:56 +0000 | [diff] [blame] | 20 | |
| 21 | struct globals { |
| 22 | int cin_fileno; |
| 23 | struct termios initial_settings; |
| 24 | struct termios new_settings; |
| 25 | }; |
| 26 | #define G (*(struct globals*)bb_common_bufsiz1) |
Denis Vlasenko | 033e592 | 2007-08-15 20:42:52 +0000 | [diff] [blame] | 27 | #define INIT_G() ((void)0) |
Denis Vlasenko | c2f011a | 2007-05-31 21:31:56 +0000 | [diff] [blame] | 28 | #define initial_settings (G.initial_settings) |
| 29 | #define new_settings (G.new_settings ) |
| 30 | #define cin_fileno (G.cin_fileno ) |
Denis Vlasenko | c2f011a | 2007-05-31 21:31:56 +0000 | [diff] [blame] | 31 | |
Denis Vlasenko | b15b7f7 | 2006-12-10 01:57:29 +0000 | [diff] [blame] | 32 | #define setTermSettings(fd, argp) tcsetattr(fd, TCSANOW, argp) |
Denis Vlasenko | c2f011a | 2007-05-31 21:31:56 +0000 | [diff] [blame] | 33 | #define getTermSettings(fd, argp) tcgetattr(fd, argp) |
Glenn L McGrath | 78b0e37 | 2001-06-26 02:06:08 +0000 | [diff] [blame] | 34 | |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 35 | static void gotsig(int sig UNUSED_PARAM) |
Glenn L McGrath | 78b0e37 | 2001-06-26 02:06:08 +0000 | [diff] [blame] | 36 | { |
Denis Vlasenko | 4daad90 | 2007-09-27 10:20:47 +0000 | [diff] [blame] | 37 | bb_putchar('\n'); |
Denis Vlasenko | c2f011a | 2007-05-31 21:31:56 +0000 | [diff] [blame] | 38 | setTermSettings(cin_fileno, &initial_settings); |
Matt Kraai | 12f417e | 2001-01-18 02:57:08 +0000 | [diff] [blame] | 39 | exit(EXIT_FAILURE); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 40 | } |
Denis Vlasenko | c2f011a | 2007-05-31 21:31:56 +0000 | [diff] [blame] | 41 | |
| 42 | #else /* !FEATURE_USE_TERMIOS */ |
| 43 | #define INIT_G() ((void)0) |
| 44 | #define setTermSettings(fd, argp) ((void)0) |
Denis Vlasenko | b15b7f7 | 2006-12-10 01:57:29 +0000 | [diff] [blame] | 45 | #endif /* FEATURE_USE_TERMIOS */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 46 | |
Denis Vlasenko | 033e592 | 2007-08-15 20:42:52 +0000 | [diff] [blame] | 47 | #define CONVERTED_TAB_SIZE 8 |
Eric Andersen | 50d6360 | 1999-11-09 01:47:36 +0000 | [diff] [blame] | 48 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 49 | int more_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 50 | int more_main(int argc UNUSED_PARAM, char **argv) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 51 | { |
Denis Vlasenko | 033e592 | 2007-08-15 20:42:52 +0000 | [diff] [blame] | 52 | int c = c; /* for gcc */ |
| 53 | int lines; |
| 54 | int input = 0; |
| 55 | int spaces = 0; |
| 56 | int please_display_more_prompt; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 57 | struct stat st; |
| 58 | FILE *file; |
Eric Andersen | edd580a | 2004-03-27 09:49:57 +0000 | [diff] [blame] | 59 | FILE *cin; |
Denis Vlasenko | 033e592 | 2007-08-15 20:42:52 +0000 | [diff] [blame] | 60 | int len; |
Denis Vlasenko | 5599502 | 2008-05-18 22:28:26 +0000 | [diff] [blame] | 61 | unsigned terminal_width; |
| 62 | unsigned terminal_height; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 63 | |
Denis Vlasenko | c2f011a | 2007-05-31 21:31:56 +0000 | [diff] [blame] | 64 | INIT_G(); |
| 65 | |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 66 | argv++; |
Denis Vlasenko | 4eb8b93 | 2007-03-10 16:32:14 +0000 | [diff] [blame] | 67 | /* Another popular pager, most, detects when stdout |
| 68 | * is not a tty and turns into cat. This makes sense. */ |
| 69 | if (!isatty(STDOUT_FILENO)) |
| 70 | return bb_cat(argv); |
Denis Vlasenko | 5415c85 | 2008-07-21 23:05:26 +0000 | [diff] [blame] | 71 | cin = fopen_for_read(CURRENT_TTY); |
Denis Vlasenko | 4eb8b93 | 2007-03-10 16:32:14 +0000 | [diff] [blame] | 72 | if (!cin) |
| 73 | return bb_cat(argv); |
Eric Andersen | 4bea32a | 1999-10-06 00:30:51 +0000 | [diff] [blame] | 74 | |
Denis Vlasenko | b15b7f7 | 2006-12-10 01:57:29 +0000 | [diff] [blame] | 75 | #if ENABLE_FEATURE_USE_TERMIOS |
Denis Vlasenko | 4eb8b93 | 2007-03-10 16:32:14 +0000 | [diff] [blame] | 76 | cin_fileno = fileno(cin); |
| 77 | getTermSettings(cin_fileno, &initial_settings); |
| 78 | new_settings = initial_settings; |
| 79 | new_settings.c_lflag &= ~ICANON; |
| 80 | new_settings.c_lflag &= ~ECHO; |
| 81 | new_settings.c_cc[VMIN] = 1; |
| 82 | new_settings.c_cc[VTIME] = 0; |
| 83 | setTermSettings(cin_fileno, &new_settings); |
Denis Vlasenko | 25591c3 | 2008-02-16 22:58:56 +0000 | [diff] [blame] | 84 | bb_signals(0 |
| 85 | + (1 << SIGINT) |
| 86 | + (1 << SIGQUIT) |
| 87 | + (1 << SIGTERM) |
| 88 | , gotsig); |
Glenn L McGrath | 78b0e37 | 2001-06-26 02:06:08 +0000 | [diff] [blame] | 89 | #endif |
Glenn L McGrath | 78b0e37 | 2001-06-26 02:06:08 +0000 | [diff] [blame] | 90 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 91 | do { |
Denis Vlasenko | b15b7f7 | 2006-12-10 01:57:29 +0000 | [diff] [blame] | 92 | file = stdin; |
Denis Vlasenko | 4eb8b93 | 2007-03-10 16:32:14 +0000 | [diff] [blame] | 93 | if (*argv) { |
Denis Vlasenko | ddec5af | 2006-10-26 23:25:17 +0000 | [diff] [blame] | 94 | file = fopen_or_warn(*argv, "r"); |
Denis Vlasenko | b15b7f7 | 2006-12-10 01:57:29 +0000 | [diff] [blame] | 95 | if (!file) |
Denis Vlasenko | 4eb8b93 | 2007-03-10 16:32:14 +0000 | [diff] [blame] | 96 | continue; |
Denis Vlasenko | b15b7f7 | 2006-12-10 01:57:29 +0000 | [diff] [blame] | 97 | } |
Eric Andersen | 0ee0a8d | 2001-12-06 07:24:29 +0000 | [diff] [blame] | 98 | st.st_size = 0; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 99 | fstat(fileno(file), &st); |
| 100 | |
Denis Vlasenko | 033e592 | 2007-08-15 20:42:52 +0000 | [diff] [blame] | 101 | please_display_more_prompt = 0; |
Denis Vlasenko | 4eb8b93 | 2007-03-10 16:32:14 +0000 | [diff] [blame] | 102 | /* never returns w, h <= 1 */ |
Rob Landley | c44bc98 | 2006-05-28 01:19:06 +0000 | [diff] [blame] | 103 | get_terminal_width_height(fileno(cin), &terminal_width, &terminal_height); |
Denis Vlasenko | 4eb8b93 | 2007-03-10 16:32:14 +0000 | [diff] [blame] | 104 | terminal_height -= 1; |
Eric Andersen | 8efe967 | 2003-09-15 08:33:45 +0000 | [diff] [blame] | 105 | |
Denis Vlasenko | b15b7f7 | 2006-12-10 01:57:29 +0000 | [diff] [blame] | 106 | len = 0; |
Eric Andersen | 5723934 | 2001-02-23 01:39:26 +0000 | [diff] [blame] | 107 | lines = 0; |
Denis Vlasenko | 033e592 | 2007-08-15 20:42:52 +0000 | [diff] [blame] | 108 | while (spaces || (c = getc(file)) != EOF) { |
| 109 | int wrap; |
| 110 | if (spaces) |
| 111 | spaces--; |
| 112 | loop_top: |
| 113 | if (input != 'r' && please_display_more_prompt) { |
Matt Kraai | 12f417e | 2001-01-18 02:57:08 +0000 | [diff] [blame] | 114 | len = printf("--More-- "); |
Denis Vlasenko | 033e592 | 2007-08-15 20:42:52 +0000 | [diff] [blame] | 115 | if (st.st_size > 0) { |
Denis Vlasenko | b15b7f7 | 2006-12-10 01:57:29 +0000 | [diff] [blame] | 116 | len += printf("(%d%% of %"OFF_FMT"d bytes)", |
| 117 | (int) (ftello(file)*100 / st.st_size), |
| 118 | st.st_size); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 119 | } |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 120 | fflush(stdout); |
Mark Whitley | b991395 | 2000-06-16 00:26:51 +0000 | [diff] [blame] | 121 | |
| 122 | /* |
| 123 | * We've just displayed the "--More--" prompt, so now we need |
| 124 | * to get input from the user. |
| 125 | */ |
Denis Vlasenko | 033e592 | 2007-08-15 20:42:52 +0000 | [diff] [blame] | 126 | for (;;) { |
| 127 | input = getc(cin); |
| 128 | input = tolower(input); |
Denis Vlasenko | b15b7f7 | 2006-12-10 01:57:29 +0000 | [diff] [blame] | 129 | #if !ENABLE_FEATURE_USE_TERMIOS |
Denis Vlasenko | 033e592 | 2007-08-15 20:42:52 +0000 | [diff] [blame] | 130 | printf("\033[A"); /* up cursor */ |
Erik Andersen | 4f3f757 | 2000-04-28 00:18:56 +0000 | [diff] [blame] | 131 | #endif |
Denis Vlasenko | 033e592 | 2007-08-15 20:42:52 +0000 | [diff] [blame] | 132 | /* Erase the last message */ |
| 133 | printf("\r%*s\r", len, ""); |
| 134 | |
| 135 | /* Due to various multibyte escape |
| 136 | * sequences, it's not ok to accept |
| 137 | * any input as a command to scroll |
| 138 | * the screen. We only allow known |
| 139 | * commands, else we show help msg. */ |
| 140 | if (input == ' ' || input == '\n' || input == 'q' || input == 'r') |
| 141 | break; |
| 142 | len = printf("(Enter:next line Space:next page Q:quit R:show the rest)"); |
| 143 | } |
Denis Vlasenko | b15b7f7 | 2006-12-10 01:57:29 +0000 | [diff] [blame] | 144 | len = 0; |
Eric Andersen | 5723934 | 2001-02-23 01:39:26 +0000 | [diff] [blame] | 145 | lines = 0; |
Denis Vlasenko | 033e592 | 2007-08-15 20:42:52 +0000 | [diff] [blame] | 146 | please_display_more_prompt = 0; |
Matt Kraai | d6cde0b | 2001-04-12 20:51:01 +0000 | [diff] [blame] | 147 | |
| 148 | if (input == 'q') |
| 149 | goto end; |
Denis Vlasenko | 033e592 | 2007-08-15 20:42:52 +0000 | [diff] [blame] | 150 | |
| 151 | /* The user may have resized the terminal. |
| 152 | * Re-read the dimensions. */ |
Denis Vlasenko | 856be77 | 2007-08-17 08:29:48 +0000 | [diff] [blame] | 153 | #if ENABLE_FEATURE_USE_TERMIOS |
Denis Vlasenko | 033e592 | 2007-08-15 20:42:52 +0000 | [diff] [blame] | 154 | get_terminal_width_height(cin_fileno, &terminal_width, &terminal_height); |
| 155 | terminal_height -= 1; |
Denis Vlasenko | 856be77 | 2007-08-17 08:29:48 +0000 | [diff] [blame] | 156 | #endif |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 157 | } |
Mark Whitley | b991395 | 2000-06-16 00:26:51 +0000 | [diff] [blame] | 158 | |
Denis Vlasenko | 033e592 | 2007-08-15 20:42:52 +0000 | [diff] [blame] | 159 | /* Crudely convert tabs into spaces, which are |
| 160 | * a bajillion times easier to deal with. */ |
| 161 | if (c == '\t') { |
| 162 | spaces = CONVERTED_TAB_SIZE - 1; |
| 163 | c = ' '; |
Denis Vlasenko | f7be20e | 2007-12-24 14:09:19 +0000 | [diff] [blame] | 164 | } |
Denis Vlasenko | 033e592 | 2007-08-15 20:42:52 +0000 | [diff] [blame] | 165 | |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 166 | /* |
Mark Whitley | b991395 | 2000-06-16 00:26:51 +0000 | [diff] [blame] | 167 | * There are two input streams to worry about here: |
| 168 | * |
Denis Vlasenko | c2f011a | 2007-05-31 21:31:56 +0000 | [diff] [blame] | 169 | * c : the character we are reading from the file being "mored" |
| 170 | * input: a character received from the keyboard |
Mark Whitley | b991395 | 2000-06-16 00:26:51 +0000 | [diff] [blame] | 171 | * |
| 172 | * If we hit a newline in the _file_ stream, we want to test and |
| 173 | * see if any characters have been hit in the _input_ stream. This |
| 174 | * allows the user to quit while in the middle of a file. |
| 175 | */ |
Denis Vlasenko | 033e592 | 2007-08-15 20:42:52 +0000 | [diff] [blame] | 176 | wrap = (++len > terminal_width); |
| 177 | if (c == '\n' || wrap) { |
| 178 | /* Then outputting this character |
| 179 | * will move us to a new line. */ |
| 180 | if (++lines >= terminal_height || input == '\n') |
| 181 | please_display_more_prompt = 1; |
Denis Vlasenko | b15b7f7 | 2006-12-10 01:57:29 +0000 | [diff] [blame] | 182 | len = 0; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 183 | } |
Denis Vlasenko | 033e592 | 2007-08-15 20:42:52 +0000 | [diff] [blame] | 184 | if (c != '\n' && wrap) { |
| 185 | /* Then outputting this will also put a character on |
| 186 | * the beginning of that new line. Thus we first want to |
| 187 | * display the prompt (if any), so we skip the putchar() |
| 188 | * and go back to the top of the loop, without reading |
| 189 | * a new character. */ |
| 190 | goto loop_top; |
| 191 | } |
| 192 | /* My small mind cannot fathom backspaces and UTF-8 */ |
| 193 | putchar(c); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 194 | } |
| 195 | fclose(file); |
| 196 | fflush(stdout); |
Denis Vlasenko | 4eb8b93 | 2007-03-10 16:32:14 +0000 | [diff] [blame] | 197 | } while (*argv && *++argv); |
Denis Vlasenko | b15b7f7 | 2006-12-10 01:57:29 +0000 | [diff] [blame] | 198 | end: |
Denis Vlasenko | c2f011a | 2007-05-31 21:31:56 +0000 | [diff] [blame] | 199 | setTermSettings(cin_fileno, &initial_settings); |
Matt Kraai | d6cde0b | 2001-04-12 20:51:01 +0000 | [diff] [blame] | 200 | return 0; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 201 | } |