1

我尝试getch()在 Python 中实现函数,它还应该返回特殊键(如 F1-F12 和箭头键)的字符列表。这些特殊键按顺序生成多个字符。因此getch()在阻塞模式下读取一个字符,然后应该检查输入缓冲区中是否还有额外的字符来获取它们。

我将ioctlcall 与termios.FIONREAD一起使用来获取输入缓冲区中的字节数。它会捕获堆积在缓冲区中的非特殊按键,但会丢失特殊键中的额外符号。似乎有两个不同的缓冲区,如果有人可以解释这一点,那就太好了。

这是交互式示例:

from time import sleep

def getch():
    import sys, tty, termios
    fd = sys.stdin.fileno()
    # save old terminal settings, because we are changing them
    old_settings = termios.tcgetattr(fd)
    try:
        # set terminal to "raw" mode, in which driver returns
        # one char at a time instead of one line at a time
        #
        # tty.setraw() is just a helper for tcsetattr() call, see
        # http://hg.python.org/cpython/file/c6880edaf6f3/Lib/tty.py
        tty.setraw(fd)
        ch = sys.stdin.read(1)

        # --- check if there are more characters in buffer
        from fcntl import ioctl
        from array import array

        sleep(1)
        buf = array('i', [0])
        ioctl(fd, termios.FIONREAD, buf)
        print "buf queue: %s," % buf[0],
        # ---

    finally:
        # restore terminal settings. Do this when all output is
        # finished - TCSADRAIN flag
        termios.tcsetattr(fd, termios.TCSADRAIN, old_settings)
    return ch

char = ''
while char != 'q':
  char = getch()
  print 'sym: %s, ord(%s)' % (char, ord(char))

注意sleep(1)中间。如果您在这一秒到期之前按下一个键,输出将是:

buf queue: 0, sym: l, ord(108)

对于一秒钟内输入的 5 个普通键(例如 'asdfg'),输出为:

buf queue: 4, sym: a, ord(97)

但对于单个箭头键,输出:

buf queue: 0, sym: , ord(27)
buf queue: 0, sym: [, ord(91)
buf queue: 0, sym: D, ord(68)

这里有两个问题:

  1. 为什么普通按键队列中的4个符号被丢弃?是因为切换到“原始”终端模式吗?getch()如何在不让终端处于“原始”模式的情况下为后续运行保留字符?

  2. 为什么ioctl单个特殊按键的缓冲区为空?这些角色是从哪里来的后续getch()运行?如何检查它们?

4

1 回答 1

1

我遇到了同样的问题。一些搜索产生了一个工作示例,该示例最多读取 4 个字节(而不是您的 1)以允许特殊的转义序列并使用os.read(而不是您的file.read)。基于这些差异,我能够编写一个小键盘类来识别光标键事件:

#!/usr/bin/env python

import os
import select
import sys
import termios

class Keyboard:
  ESCAPE = 27
  LEFT = 1000
  RIGHT = 1001
  DOWN = 1002
  UP = 1003

  keylist = {
    '\x1b' : ESCAPE,
    '\x1b[A' : UP,
    '\x1b[B' : DOWN,
    '\x1b[C' : RIGHT,
    '\x1b[D' : LEFT,
  }

  def __init__(self):
    self.fd = sys.stdin.fileno()
    self.old = termios.tcgetattr(self.fd)
    self.new = termios.tcgetattr(self.fd)
    self.new[3] = self.new[3] & ~termios.ICANON & ~termios.ECHO
    self.new[6][termios.VMIN] = 1
    self.new[6][termios.VTIME] = 0
    termios.tcsetattr(self.fd, termios.TCSANOW, self.new)

  def __enter__(self):
    return self

  def __exit__(self, type, value, traceback):
    termios.tcsetattr(self.fd, termios.TCSAFLUSH, self.old)

  def getFile(self):
    return self.fd

  def read(self):
    keys = os.read(self.fd, 4)
    if keys in Keyboard.keylist:
      return Keyboard.keylist[keys]
    else:
      return None

if __name__ == "__main__":
  with Keyboard() as keyboard:
    key = keyboard.read()
    while key != Keyboard.ESCAPE:
      print '%d' % key
      key = keyboard.read()

随着file.read(4), 阅读块。使用os.read(fd, 4),读数不会阻塞。我不知道为什么会有差异,并欢迎启蒙。

于 2012-10-25T12:12:43.047 回答