Bernhard Reutner-Fischer | e63a0de | 2006-10-25 15:07:56 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
| 3 | * resize - set terminal width and height. |
| 4 | * |
Bernhard Reutner-Fischer | 6c4dade | 2008-09-25 12:13:34 +0000 | [diff] [blame] | 5 | * Copyright 2006 Bernhard Reutner-Fischer |
Bernhard Reutner-Fischer | e63a0de | 2006-10-25 15:07:56 +0000 | [diff] [blame] | 6 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 7 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Bernhard Reutner-Fischer | e63a0de | 2006-10-25 15:07:56 +0000 | [diff] [blame] | 8 | */ |
Denys Vlasenko | 6d93299 | 2016-11-23 10:39:27 +0100 | [diff] [blame] | 9 | //config:config RESIZE |
Denys Vlasenko | 4eed2c6 | 2017-07-18 22:01:24 +0200 | [diff] [blame] | 10 | //config: bool "resize (756 bytes)" |
Denys Vlasenko | 6d93299 | 2016-11-23 10:39:27 +0100 | [diff] [blame] | 11 | //config: default y |
| 12 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 13 | //config: This program is used to (re)set the width and height of your current |
| 14 | //config: terminal. |
Denys Vlasenko | 6d93299 | 2016-11-23 10:39:27 +0100 | [diff] [blame] | 15 | //config: |
| 16 | //config:config FEATURE_RESIZE_PRINT |
| 17 | //config: bool "Print environment variables" |
| 18 | //config: default y |
| 19 | //config: depends on RESIZE |
| 20 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 21 | //config: Prints the newly set size (number of columns and rows) of |
| 22 | //config: the terminal. |
| 23 | //config: E.g.: |
| 24 | //config: COLUMNS=80;LINES=44;export COLUMNS LINES; |
Denys Vlasenko | 6d93299 | 2016-11-23 10:39:27 +0100 | [diff] [blame] | 25 | |
Denys Vlasenko | 39194f0 | 2017-08-03 19:00:01 +0200 | [diff] [blame] | 26 | //applet:IF_RESIZE(APPLET_NOEXEC(resize, resize, BB_DIR_USR_BIN, BB_SUID_DROP, resize)) |
Denys Vlasenko | b9be780 | 2017-08-06 21:23:03 +0200 | [diff] [blame] | 27 | /* bb_common_bufsiz1 usage here is safe wrt NOEXEC: not expecting it to be zeroed. */ |
Denys Vlasenko | 6d93299 | 2016-11-23 10:39:27 +0100 | [diff] [blame] | 28 | |
| 29 | //kbuild:lib-$(CONFIG_RESIZE) += resize.o |
Pere Orga | 55068c4 | 2011-03-27 23:42:28 +0200 | [diff] [blame] | 30 | |
| 31 | //usage:#define resize_trivial_usage |
| 32 | //usage: "" |
| 33 | //usage:#define resize_full_usage "\n\n" |
| 34 | //usage: "Resize the screen" |
| 35 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 36 | #include "libbb.h" |
Denys Vlasenko | e6a2f4c | 2016-04-21 16:26:30 +0200 | [diff] [blame] | 37 | #include "common_bufsiz.h" |
Bernhard Reutner-Fischer | e63a0de | 2006-10-25 15:07:56 +0000 | [diff] [blame] | 38 | |
Denis Vlasenko | 4eb8b93 | 2007-03-10 16:32:14 +0000 | [diff] [blame] | 39 | #define ESC "\033" |
| 40 | |
Denys Vlasenko | e6a2f4c | 2016-04-21 16:26:30 +0200 | [diff] [blame] | 41 | #define old_termios_p ((struct termios*)bb_common_bufsiz1) |
Denys Vlasenko | 47cfbf3 | 2016-04-21 18:18:48 +0200 | [diff] [blame] | 42 | #define INIT_G() do { setup_common_bufsiz(); } while (0) |
Denis Vlasenko | c9c893d | 2007-03-12 23:41:07 +0000 | [diff] [blame] | 43 | |
| 44 | static void |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 45 | onintr(int sig UNUSED_PARAM) |
Denis Vlasenko | c9c893d | 2007-03-12 23:41:07 +0000 | [diff] [blame] | 46 | { |
Denys Vlasenko | 98a4c7c | 2010-02-04 15:00:15 +0100 | [diff] [blame] | 47 | tcsetattr(STDERR_FILENO, TCSANOW, old_termios_p); |
Marek Polacek | 7b18107 | 2010-10-28 21:34:56 +0200 | [diff] [blame] | 48 | _exit(EXIT_FAILURE); |
Denis Vlasenko | c9c893d | 2007-03-12 23:41:07 +0000 | [diff] [blame] | 49 | } |
| 50 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 51 | int resize_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 52 | int resize_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM) |
Bernhard Reutner-Fischer | e63a0de | 2006-10-25 15:07:56 +0000 | [diff] [blame] | 53 | { |
Denis Vlasenko | c9c893d | 2007-03-12 23:41:07 +0000 | [diff] [blame] | 54 | struct termios new; |
Denis Vlasenko | 68404f1 | 2008-03-17 09:00:54 +0000 | [diff] [blame] | 55 | struct winsize w = { 0, 0, 0, 0 }; |
Bernhard Reutner-Fischer | e63a0de | 2006-10-25 15:07:56 +0000 | [diff] [blame] | 56 | int ret; |
| 57 | |
Denys Vlasenko | 47cfbf3 | 2016-04-21 18:18:48 +0200 | [diff] [blame] | 58 | INIT_G(); |
| 59 | |
Denis Vlasenko | c9c893d | 2007-03-12 23:41:07 +0000 | [diff] [blame] | 60 | /* We use _stderr_ in order to make resize usable |
| 61 | * in shell backticks (those redirect stdout away from tty). |
| 62 | * NB: other versions of resize open "/dev/tty" |
| 63 | * and operate on it - should we do the same? |
| 64 | */ |
| 65 | |
Denys Vlasenko | 98a4c7c | 2010-02-04 15:00:15 +0100 | [diff] [blame] | 66 | tcgetattr(STDERR_FILENO, old_termios_p); /* fiddle echo */ |
Denys Vlasenko | b9be780 | 2017-08-06 21:23:03 +0200 | [diff] [blame] | 67 | //TODO: die if the above fails? |
Denys Vlasenko | 98a4c7c | 2010-02-04 15:00:15 +0100 | [diff] [blame] | 68 | memcpy(&new, old_termios_p, sizeof(new)); |
Bernhard Reutner-Fischer | e63a0de | 2006-10-25 15:07:56 +0000 | [diff] [blame] | 69 | new.c_cflag |= (CLOCAL | CREAD); |
| 70 | new.c_lflag &= ~(ICANON | ECHO | ECHOE | ISIG); |
Denis Vlasenko | 25591c3 | 2008-02-16 22:58:56 +0000 | [diff] [blame] | 71 | bb_signals(0 |
| 72 | + (1 << SIGINT) |
| 73 | + (1 << SIGQUIT) |
| 74 | + (1 << SIGTERM) |
| 75 | + (1 << SIGALRM) |
| 76 | , onintr); |
Denis Vlasenko | c9c893d | 2007-03-12 23:41:07 +0000 | [diff] [blame] | 77 | tcsetattr(STDERR_FILENO, TCSANOW, &new); |
| 78 | |
Bernhard Reutner-Fischer | e63a0de | 2006-10-25 15:07:56 +0000 | [diff] [blame] | 79 | /* save_cursor_pos 7 |
| 80 | * scroll_whole_screen [r |
| 81 | * put_cursor_waaaay_off [$x;$yH |
| 82 | * get_cursor_pos [6n |
| 83 | * restore_cursor_pos 8 |
| 84 | */ |
Denis Vlasenko | c9c893d | 2007-03-12 23:41:07 +0000 | [diff] [blame] | 85 | fprintf(stderr, ESC"7" ESC"[r" ESC"[999;999H" ESC"[6n"); |
| 86 | alarm(3); /* Just in case terminal won't answer */ |
Denys Vlasenko | d849493 | 2011-01-26 03:26:38 +0100 | [diff] [blame] | 87 | //BUG: death by signal won't restore termios |
Denis Vlasenko | 4eb8b93 | 2007-03-10 16:32:14 +0000 | [diff] [blame] | 88 | scanf(ESC"[%hu;%huR", &w.ws_row, &w.ws_col); |
Denis Vlasenko | c9c893d | 2007-03-12 23:41:07 +0000 | [diff] [blame] | 89 | fprintf(stderr, ESC"8"); |
| 90 | |
| 91 | /* BTW, other versions of resize recalculate w.ws_xpixel, ws.ws_ypixel |
| 92 | * by calculating character cell HxW from old values |
| 93 | * (gotten via TIOCGWINSZ) and recomputing *pixel values */ |
| 94 | ret = ioctl(STDERR_FILENO, TIOCSWINSZ, &w); |
| 95 | |
Denys Vlasenko | 98a4c7c | 2010-02-04 15:00:15 +0100 | [diff] [blame] | 96 | tcsetattr(STDERR_FILENO, TCSANOW, old_termios_p); |
Denis Vlasenko | c9c893d | 2007-03-12 23:41:07 +0000 | [diff] [blame] | 97 | |
Bernhard Reutner-Fischer | e63a0de | 2006-10-25 15:07:56 +0000 | [diff] [blame] | 98 | if (ENABLE_FEATURE_RESIZE_PRINT) |
| 99 | printf("COLUMNS=%d;LINES=%d;export COLUMNS LINES;\n", |
| 100 | w.ws_col, w.ws_row); |
Denis Vlasenko | c9c893d | 2007-03-12 23:41:07 +0000 | [diff] [blame] | 101 | |
Bernhard Reutner-Fischer | e63a0de | 2006-10-25 15:07:56 +0000 | [diff] [blame] | 102 | return ret; |
| 103 | } |