我正在尝试检测stdin上是否有数据供我阅读。
具体来说,我使用tcsetattr
关闭了规范模式,因此我可以一次读取一个字符(阻塞)。我想检测像箭头键产生的转义序列,但是将它们与单独的转义键区分开来。另外,我想快速了解输入的内容;我假设我的终端相当快,^[
之后的其余转义序列合理地快速跟进。
假设我已经知道(例如使用select(2)
)在stdin上有什么东西要读。我使用getchar()
读取了一个字符,它是一个^[
,ASCII 27.现在我想知道在某个时间间隔内是否还有更多,或者这个转义符是一切(这表示一个击中逃生钥匙)。使用select(2)
似乎不起作用,因为(我注意到,并在其他地方阅读)其余字符已经被缓冲,因此select(2)
无法再检测到任何内容。所以我使用ioctl(2)
转向FIONREAD
,但这似乎也不起作用。
最小(非)工作示例:
#include <stdio.h>
#include <stdlib.h>
#include <termios.h>
#include <sys/select.h>
#include <sys/ioctl.h>
#include <assert.h>
struct termios tios_bak;
void initkeyboard(void){
struct termios tios;
tcgetattr(0,&tios_bak);
tios=tios_bak;
tios.c_lflag&=~ICANON;
tios.c_cc[VMIN]=1; // Read one char at a time
tios.c_cc[VTIME]=0; // No timeout on reading, make it a blocking read
tcsetattr(0,TCSAFLUSH,&tios);
}
void endkeyboard(void){
tcsetattr(0,TCSAFLUSH,&tios_bak);
}
int main(void){
initkeyboard();
atexit(endkeyboard);
printf("Press an arrow key or the escape key, or the escape key followed by something else.\n");
char c=getchar();
if(c!=27){
printf("Please input an escape sequence or key\n");
exit(1);
}
// Now we use select(2) to determine whether there's anything more to read.
// If it was a lone escape key, there won't be anything new in a while.
fd_set rdset;
FD_ZERO(&rdset);
FD_SET(0,&rdset);
struct timeval tv;
tv.tv_sec=1; // Here we wait one second; this is just to illustrate. In a real environment
tv.tv_usec=0; // I'd wait something like 100ms, since that's reasonable for a terminal.
int ret=select(1,&rdset,NULL,NULL,&tv);
assert(ret!=-1); // (Error checking basically omitted)
if(ret==0){
printf("select(2) returned 0.\n");
int n;
assert(ioctl(0,FIONREAD,&n)>=0);
assert(n>=0);
if(n==0){
printf("ioctl(2) gave 0; nothing to read: lone escape key\n");
// INSERT printf("%c\n",getchar()); HERE TO DEMONSTRATE THIS IS WRONG IN CASE OF ESCAPE SEQUENCE
} else {
c=getchar();
printf("ioctl(2) says %d bytes in read buffer (first char=%c)\n",n,c);
}
} else {
c=getchar();
printf("select(2) returned %d: there was more to read (first char=%c)\n",ret,c);
}
}
很抱歉长代码。会发生以下情况:
select(2)
和ioctl(2)
都返回没有任何内容可供阅读,而显然有;通过在指定位置插入printf("%c\n",getchar());
可以轻松检查这一点。这将打印[
(至少在箭头键的情况下)。问题:如何正确检测案例(3)中的输入?
答案 0 :(得分:3)
来自getchar手册页:
不建议将调用混合到输入函数中 具有低级调用的stdio库,用于读取文件描述符(2) 与输入流相关联;结果将是不确定的 而且很可能不是你想要的。
不要混用缓冲和非缓冲输入功能。
select
必须与
read(fileno(stdin), &c, 1);
而不是
c = getchar();