[devel] watch(1)

Alexey Tourbin =?iso-8859-1?q?at_=CE=C1_altlinux=2Eru?=
Чт Сен 14 09:23:55 MSD 2006


On Thu, Sep 14, 2006 at 04:51:44AM +0400, Alexey Tourbin wrote:
>     Implement the following behaviour:
>     
>     1) execute a program also when a key is pressed;
>     2) but if that key is 'q' then exit instead.
>     
>     This makes watch look more like an interactive program.
> 
> diff --git a/procps/watch.c b/procps/watch.c
> index 18ded5e..4abad74 100644
> --- a/procps/watch.c
> +++ b/procps/watch.c
> @@ -20,6 +20,7 @@ #include <stdio.h>
>  #include <stdlib.h>
>  #include <string.h>
>  #include <sys/ioctl.h>
> +#include <sys/select.h>
>  #include <time.h>
>  #include <unistd.h>
>  #include <locale.h>
> @@ -227,6 +228,7 @@ main(int argc, char *argv[])
>  	nonl();
>  	noecho();
>  	cbreak();
> +	nodelay(stdscr, TRUE);
>  
>  	for (;;) {
>  		time_t t = time(NULL);
> @@ -236,6 +238,10 @@ main(int argc, char *argv[])
>  		FILE *p;
>  		int x, y;
>  		int oldeolseen = 1;
> +		int key;
> +
> +		if ((key = getch()) == 'q') 
> +			do_exit(0);
>  
>  		if (screen_size_changed) {
>  			get_terminal_size();
> @@ -314,7 +320,16 @@ main(int argc, char *argv[])
>  
>  		first_screen = 0;
>  		refresh();
> -		usleep(interval * 1000000);
> +
> +		/* wait until tiemout or until a key press */
> +		{
> +			fd_set set;
> +			int fd = fileno(stdin);
> +			struct timeval timeout = { interval, 0 };
> +			FD_ZERO(&set);
> +			FD_SET(fd, &set);
> +			select(fd + 1, &set, NULL, NULL, &timeout);
> +		}
>  	}
>  
>  	endwin();
> $


В общем затея оказалась небеспроблемная -- select может отвалить или
вернуть раньше времени по самым разным причинам, а входить в
безудержный цикл последнее дело.  Можно конечно проверять на isatty(0),
но мне эта идея почему-то не очень нравится.  Короче окончательный
вариант в git.alt:/people/at/packages/procps.git несколько лучше, чем
этот и несколько последующих.
----------- следующая часть -----------
Было удалено вложение не в текстовом формате...
Имя     : =?iso-8859-1?q?=CF=D4=D3=D5=D4=D3=D4=D7=D5=C5=D4?=
Тип     : application/pgp-signature
Размер  : 189 байтов
Описание: =?iso-8859-1?q?=CF=D4=D3=D5=D4=D3=D4=D7=D5=C5=D4?=
Url     : <http://lists.altlinux.org/pipermail/devel/attachments/20060914/b726a080/attachment-0001.bin>


Подробная информация о списке рассылки Devel