resize: make it usable in in backticks; have a timeout (if display
[platform/upstream/busybox.git] / console-tools / resize.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * resize - set terminal width and height.
4  *
5  * Copyright 2006 Bernhard Fischer
6  *
7  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
8  */
9 /* no options, no getopt */
10 #include "busybox.h"
11
12 #define ESC "\033"
13
14 struct termios old;
15
16 static void
17 onintr(int sig ATTRIBUTE_UNUSED)
18 {
19         tcsetattr(STDERR_FILENO, TCSANOW, &old);
20         exit(1);
21 }
22
23
24 int resize_main(int argc, char **argv);
25 int resize_main(int argc, char **argv)
26 {
27         struct termios new;
28         struct winsize w = { 0,0,0,0 };
29         int ret;
30
31         /* We use _stderr_ in order to make resize usable
32          * in shell backticks (those redirect stdout away from tty).
33          * NB: other versions of resize open "/dev/tty"
34          * and operate on it - should we do the same?
35          */
36
37         tcgetattr(STDERR_FILENO, &old); /* fiddle echo */
38         new = old;
39         new.c_cflag |= (CLOCAL | CREAD);
40         new.c_lflag &= ~(ICANON | ECHO | ECHOE | ISIG);
41         signal(SIGINT, onintr);
42         signal(SIGQUIT, onintr);
43         signal(SIGTERM, onintr);
44         signal(SIGALRM, onintr);
45         tcsetattr(STDERR_FILENO, TCSANOW, &new);
46
47         /* save_cursor_pos 7
48          * scroll_whole_screen [r
49          * put_cursor_waaaay_off [$x;$yH
50          * get_cursor_pos [6n
51          * restore_cursor_pos 8
52          */
53         fprintf(stderr, ESC"7" ESC"[r" ESC"[999;999H" ESC"[6n");
54         alarm(3); /* Just in case terminal won't answer */
55         scanf(ESC"[%hu;%huR", &w.ws_row, &w.ws_col);
56         fprintf(stderr, ESC"8");
57
58         /* BTW, other versions of resize recalculate w.ws_xpixel, ws.ws_ypixel
59          * by calculating character cell HxW from old values
60          * (gotten via TIOCGWINSZ) and recomputing *pixel values */
61         ret = ioctl(STDERR_FILENO, TIOCSWINSZ, &w);
62
63         tcsetattr(STDERR_FILENO, TCSANOW, &old);
64
65         if (ENABLE_FEATURE_RESIZE_PRINT)
66                 printf("COLUMNS=%d;LINES=%d;export COLUMNS LINES;\n",
67                         w.ws_col, w.ws_row);
68
69         return ret;
70 }