问题1:OFILL
中的termios_p->c_oflag
标记用于什么。
以下是文档说的内容:
发送填充字符以延迟,而不是使用定时延迟。
为了解决这个问题,我创建了这个小测试程序:
#include <stdio.h>
#include <unistd.h>
#include <assert.h>
#include <termios.h>
int main(int argc, char *argv[])
{
char c;
int res;
struct termios termios_old, termios_new;
res = tcgetattr(0, &termios_old);
assert(res == 0);
termios_new = termios_old;
// Setup the terminal in raw mode
termios_new.c_iflag &= ~(IGNBRK | BRKINT | PARMRK | ISTRIP |
INLCR | IGNCR | ICRNL | IXON);
termios_new.c_oflag &= ~OPOST;
termios_new.c_lflag &= ~(ECHO | ECHONL | ICANON | ISIG | IEXTEN);
termios_new.c_cflag &= ~(CSIZE | PARENB);
termios_new.c_cflag |= CS8;
// Add the flag I'm trying to understand
termios_new.c_oflag |= OFILL; // What is this flag used for?
res = tcsetattr(0, TCSANOW, &termios_new);
assert(res == 0);
while (1) {
read(0, &c, 1);
printf("0x%x %d\r\n", (int)c, (int)c);
if (c == 'q')
break;
}
tcsetattr(0, TCSANOW, &termios_old);
return 0;
}
当我运行程序时,如果设置了标志或没有设置,我看到没有区别......我希望这个标志能够更容易地检测是否按下ESC
键。
在上面的程序中,如果按Left-Arrow-key
并按下序列,我会看到完全相同的输出:ESC
[
D
。
问题2:我应该如何检测用户是否按下ESC
按钮,如何检测用户是否按下了“左箭头按钮
由于这是学习终端IO系统如何工作的练习,所以我不想使用任何库。
答案 0 :(得分:0)
OFILL标志的使用方式与您发布的文档非常相似 - 不是等待一定的定时延迟,而是发送一些填充字节。这有时是在高速启动时完成的,因为与发送两个填充字节所需的时间相比,定时延迟非常长,并且双方都能够接近全速运行。
对于您的示例,如果stdin没有理由向您发送延迟,则可能不会,因此这将解释您的程序没有看到任何填充字节。由于这是一个发送端选项,我不确定你是否可以导致stdin发出fill-bytes。
我还会看一下NLDLY / NL0 / NL1,它可以触发要发送的填充字节,但我不确定它们会如何影响stdin / stdout。