1999-08-02 06:01:57 +04:00
|
|
|
/* $NetBSD: keyboard.c,v 1.6 1999/08/02 02:01:57 sommerfeld Exp $ */
|
1995-01-20 11:51:48 +03:00
|
|
|
|
1995-01-20 11:30:50 +03:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1980, 1992, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
1997-07-21 11:04:56 +04:00
|
|
|
#include <sys/cdefs.h>
|
1995-01-20 11:30:50 +03:00
|
|
|
#ifndef lint
|
1995-01-20 11:51:48 +03:00
|
|
|
#if 0
|
1995-01-20 11:30:50 +03:00
|
|
|
static char sccsid[] = "@(#)keyboard.c 8.1 (Berkeley) 6/6/93";
|
1995-01-20 11:51:48 +03:00
|
|
|
#endif
|
1999-08-02 06:01:57 +04:00
|
|
|
__RCSID("$NetBSD: keyboard.c,v 1.6 1999/08/02 02:01:57 sommerfeld Exp $");
|
1995-01-20 11:30:50 +03:00
|
|
|
#endif /* not lint */
|
|
|
|
|
1998-07-12 09:59:00 +04:00
|
|
|
#include <sys/types.h>
|
|
|
|
|
1995-01-20 11:30:50 +03:00
|
|
|
#include <ctype.h>
|
1998-07-12 09:59:00 +04:00
|
|
|
#include <curses.h>
|
1995-01-20 11:30:50 +03:00
|
|
|
#include <signal.h>
|
|
|
|
#include <termios.h>
|
1998-07-12 09:59:00 +04:00
|
|
|
#include <stdlib.h>
|
1995-01-20 11:30:50 +03:00
|
|
|
|
|
|
|
#include "systat.h"
|
|
|
|
#include "extern.h"
|
|
|
|
|
|
|
|
int
|
|
|
|
keyboard()
|
|
|
|
{
|
1999-08-02 06:01:57 +04:00
|
|
|
char ch, rch, *line;
|
|
|
|
int i, linesz;
|
1996-12-13 22:26:18 +03:00
|
|
|
sigset_t set;
|
1995-01-20 11:30:50 +03:00
|
|
|
|
1996-12-13 22:26:18 +03:00
|
|
|
sigemptyset(&set);
|
|
|
|
sigaddset(&set, SIGALRM);
|
|
|
|
|
1998-07-12 09:59:00 +04:00
|
|
|
linesz = COLS - 2; /* XXX does not get updated on SIGWINCH */
|
|
|
|
line = malloc(linesz);
|
|
|
|
if (line == NULL) {
|
|
|
|
error("malloc");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
1996-12-13 22:26:18 +03:00
|
|
|
for (;;) {
|
|
|
|
col = 0;
|
|
|
|
move(CMDLINE, 0);
|
|
|
|
do {
|
|
|
|
refresh();
|
|
|
|
ch = getch() & 0177;
|
|
|
|
if (ch == 0177 && ferror(stdin)) {
|
|
|
|
clearerr(stdin);
|
|
|
|
continue;
|
|
|
|
}
|
1999-08-02 06:01:57 +04:00
|
|
|
rch = ch;
|
1996-12-13 22:26:18 +03:00
|
|
|
if (ch >= 'A' && ch <= 'Z')
|
|
|
|
ch += 'a' - 'A';
|
|
|
|
if (col == 0) {
|
|
|
|
if (ch == CTRL('l')) {
|
|
|
|
sigprocmask(SIG_BLOCK, &set, NULL);
|
1995-01-20 11:30:50 +03:00
|
|
|
wrefresh(curscr);
|
1996-12-13 22:26:18 +03:00
|
|
|
sigprocmask(SIG_UNBLOCK, &set, NULL);
|
|
|
|
continue;
|
|
|
|
}
|
1995-01-20 11:30:50 +03:00
|
|
|
if (ch == CTRL('g')) {
|
1996-12-13 22:26:18 +03:00
|
|
|
sigprocmask(SIG_BLOCK, &set, NULL);
|
1995-01-20 11:30:50 +03:00
|
|
|
status();
|
1996-12-13 22:26:18 +03:00
|
|
|
sigprocmask(SIG_UNBLOCK, &set, NULL);
|
1995-01-20 11:30:50 +03:00
|
|
|
continue;
|
|
|
|
}
|
1996-12-13 22:26:18 +03:00
|
|
|
if (ch != ':')
|
|
|
|
continue;
|
|
|
|
move(CMDLINE, 0);
|
|
|
|
clrtoeol();
|
|
|
|
}
|
|
|
|
if (ch == erasechar() && col > 0) {
|
|
|
|
if (col == 1 && line[0] == ':')
|
|
|
|
continue;
|
|
|
|
col--;
|
|
|
|
goto doerase;
|
|
|
|
}
|
|
|
|
if (ch == CTRL('w') && col > 0) {
|
|
|
|
while (--col >= 0 && isspace(line[col]));
|
|
|
|
col++;
|
|
|
|
while (--col >= 0 && !isspace(line[col]))
|
|
|
|
if (col == 0 && line[0] == ':')
|
|
|
|
break;
|
|
|
|
col++;
|
|
|
|
goto doerase;
|
|
|
|
}
|
|
|
|
if (ch == killchar() && col > 0) {
|
|
|
|
if (line[0] == ':')
|
1998-07-12 09:59:00 +04:00
|
|
|
col = 1;
|
|
|
|
else
|
|
|
|
col = 0;
|
1996-12-13 22:26:18 +03:00
|
|
|
doerase:
|
|
|
|
move(CMDLINE, col);
|
|
|
|
clrtoeol();
|
|
|
|
continue;
|
|
|
|
}
|
1999-08-02 06:01:57 +04:00
|
|
|
if (isprint(rch) || ch == ' ') {
|
1998-07-12 09:59:00 +04:00
|
|
|
if (col < linesz) {
|
1999-08-02 06:01:57 +04:00
|
|
|
line[col] = rch;
|
|
|
|
mvaddch(CMDLINE, col, rch);
|
1998-07-12 09:59:00 +04:00
|
|
|
col++;
|
|
|
|
}
|
1996-12-13 22:26:18 +03:00
|
|
|
}
|
|
|
|
} while (col == 0 || (ch != '\r' && ch != '\n'));
|
|
|
|
line[col] = '\0';
|
1999-08-02 06:01:57 +04:00
|
|
|
/* pass commands as lowercase */
|
|
|
|
for (i = 1; i < col && line[i] != ' '; i++)
|
|
|
|
if (line[i] >= 'A' && line[i] <= 'Z')
|
|
|
|
line[i] += 'a' - 'A';
|
1996-12-13 22:26:18 +03:00
|
|
|
sigprocmask(SIG_BLOCK, &set, NULL);
|
|
|
|
command(line + 1);
|
|
|
|
sigprocmask(SIG_UNBLOCK, &set, NULL);
|
|
|
|
}
|
|
|
|
/* NOTREACHED */
|
1995-01-20 11:30:50 +03:00
|
|
|
}
|