2006-10-25 20:37:56 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* resize - set terminal width and height.
|
|
|
|
*
|
2008-09-25 17:43:34 +05:30
|
|
|
* Copyright 2006 Bernhard Reutner-Fischer
|
2006-10-25 20:37:56 +05:30
|
|
|
*
|
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
|
|
|
*/
|
|
|
|
/* no options, no getopt */
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2006-10-25 20:37:56 +05:30
|
|
|
|
2007-03-10 22:02:14 +05:30
|
|
|
#define ESC "\033"
|
|
|
|
|
2007-06-04 04:00:22 +05:30
|
|
|
#define old_termios (*(struct termios*)&bb_common_bufsiz1)
|
2007-03-13 05:11:07 +05:30
|
|
|
|
|
|
|
static void
|
2008-07-05 14:48:54 +05:30
|
|
|
onintr(int sig UNUSED_PARAM)
|
2007-03-13 05:11:07 +05:30
|
|
|
{
|
2007-06-04 04:00:22 +05:30
|
|
|
tcsetattr(STDERR_FILENO, TCSANOW, &old_termios);
|
2008-05-19 14:59:47 +05:30
|
|
|
exit(EXIT_FAILURE);
|
2007-03-13 05:11:07 +05:30
|
|
|
}
|
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int resize_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 14:48:54 +05:30
|
|
|
int resize_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
|
2006-10-25 20:37:56 +05:30
|
|
|
{
|
2007-03-13 05:11:07 +05:30
|
|
|
struct termios new;
|
2008-03-17 14:30:54 +05:30
|
|
|
struct winsize w = { 0, 0, 0, 0 };
|
2006-10-25 20:37:56 +05:30
|
|
|
int ret;
|
|
|
|
|
2007-03-13 05:11:07 +05:30
|
|
|
/* We use _stderr_ in order to make resize usable
|
|
|
|
* in shell backticks (those redirect stdout away from tty).
|
|
|
|
* NB: other versions of resize open "/dev/tty"
|
|
|
|
* and operate on it - should we do the same?
|
|
|
|
*/
|
|
|
|
|
2007-06-04 04:00:22 +05:30
|
|
|
tcgetattr(STDERR_FILENO, &old_termios); /* fiddle echo */
|
|
|
|
new = old_termios;
|
2006-10-25 20:37:56 +05:30
|
|
|
new.c_cflag |= (CLOCAL | CREAD);
|
|
|
|
new.c_lflag &= ~(ICANON | ECHO | ECHOE | ISIG);
|
2008-02-17 04:28:56 +05:30
|
|
|
bb_signals(0
|
|
|
|
+ (1 << SIGINT)
|
|
|
|
+ (1 << SIGQUIT)
|
|
|
|
+ (1 << SIGTERM)
|
|
|
|
+ (1 << SIGALRM)
|
|
|
|
, onintr);
|
2007-03-13 05:11:07 +05:30
|
|
|
tcsetattr(STDERR_FILENO, TCSANOW, &new);
|
|
|
|
|
2006-10-25 20:37:56 +05:30
|
|
|
/* save_cursor_pos 7
|
|
|
|
* scroll_whole_screen [r
|
|
|
|
* put_cursor_waaaay_off [$x;$yH
|
|
|
|
* get_cursor_pos [6n
|
|
|
|
* restore_cursor_pos 8
|
|
|
|
*/
|
2007-03-13 05:11:07 +05:30
|
|
|
fprintf(stderr, ESC"7" ESC"[r" ESC"[999;999H" ESC"[6n");
|
|
|
|
alarm(3); /* Just in case terminal won't answer */
|
2007-03-10 22:02:14 +05:30
|
|
|
scanf(ESC"[%hu;%huR", &w.ws_row, &w.ws_col);
|
2007-03-13 05:11:07 +05:30
|
|
|
fprintf(stderr, ESC"8");
|
|
|
|
|
|
|
|
/* BTW, other versions of resize recalculate w.ws_xpixel, ws.ws_ypixel
|
|
|
|
* by calculating character cell HxW from old values
|
|
|
|
* (gotten via TIOCGWINSZ) and recomputing *pixel values */
|
|
|
|
ret = ioctl(STDERR_FILENO, TIOCSWINSZ, &w);
|
|
|
|
|
2007-06-04 04:00:22 +05:30
|
|
|
tcsetattr(STDERR_FILENO, TCSANOW, &old_termios);
|
2007-03-13 05:11:07 +05:30
|
|
|
|
2006-10-25 20:37:56 +05:30
|
|
|
if (ENABLE_FEATURE_RESIZE_PRINT)
|
|
|
|
printf("COLUMNS=%d;LINES=%d;export COLUMNS LINES;\n",
|
|
|
|
w.ws_col, w.ws_row);
|
2007-03-13 05:11:07 +05:30
|
|
|
|
2006-10-25 20:37:56 +05:30
|
|
|
return ret;
|
|
|
|
}
|