本文整理汇总了Python中termios.TCIOFLUSH属性的典型用法代码示例。如果您正苦于以下问题:Python termios.TCIOFLUSH属性的具体用法?Python termios.TCIOFLUSH怎么用?Python termios.TCIOFLUSH使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类termios
的用法示例。
在下文中一共展示了termios.TCIOFLUSH属性的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: user_input
# 需要导入模块: import termios [as 别名]
# 或者: from termios import TCIOFLUSH [as 别名]
def user_input(msg, initial=''):
# Function to capture raw_input w/ key buffer flush
tcflush(sys.stdin, TCIOFLUSH)
readline.set_startup_hook(lambda: readline.insert_text(initial))
keyin = raw_input(msg)
return keyin
示例2: restore_termios
# 需要导入模块: import termios [as 别名]
# 或者: from termios import TCIOFLUSH [as 别名]
def restore_termios(stream, state):
if state and is_stream_interactive(stream):
fd = stream.fileno()
termios.tcflush(fd, termios.TCIOFLUSH)
termios.tcsetattr(fd, termios.TCSANOW, state)
示例3: _restore
# 需要导入模块: import termios [as 别名]
# 或者: from termios import TCIOFLUSH [as 别名]
def _restore(cls, what: Optional[TcAttrsType] = None) -> None:
if sys.stdout.isatty():
# termios.tcdrain(sys.stdout.fileno())
# if sys.stderr.isatty():
# termios.tcdrain(sys.stderr.fileno())
# if sys.stdin.isatty():
# termios.tcflush(sys.stdin.fileno(), termios.TCIOFLUSH)
if what:
termios.tcsetattr(sys.stdin.fileno(), termios.TCSANOW, what)
示例4: run
# 需要导入模块: import termios [as 别名]
# 或者: from termios import TCIOFLUSH [as 别名]
def run(self):
if self.b_init:
self.b_init = False
self.fd = sys.stdin.fileno()
if os.isatty(sys.stdin.fileno()):
self.old_settings = termios.tcgetattr(self.fd)
tty.setraw(sys.stdin.fileno())
while not self.b_exit:
rd_fs, wrt_fs, err_fs = select.select([sys.stdin], [], [], self.interval)
if rd_fs and os.isatty(sys.stdin.fileno()):
cmd = rd_fs[0].read(1)
if cmd == ('q' or 'Q'): # quit
termios.tcsetattr(self.fd, termios.TCSADRAIN, self.old_settings)
termios.tcflush(self.fd, termios.TCIOFLUSH)
self.b_exit = True
self.quit_app.emit()
elif cmd == ('p' or 'P'): # show proccesses
self.b_procs = True
termios.tcsetattr(self.fd, termios.TCSADRAIN, self.old_settings)
self.print_procs.emit()
tty.setraw(sys.stdin.fileno())
elif cmd == ('l' or 'L'): # show log
if self.b_log:
termios.tcsetattr(self.fd, termios.TCSADRAIN, self.old_settings)
reset_screen() # reset the screen to hide the log list
tty.setraw(sys.stdin.fileno())
self.b_log = not self.b_log
else:
sys.stdout.write('\b')
else:
if os.isatty(sys.stdin.fileno()):
self.callback()
示例5: __getKey
# 需要导入模块: import termios [as 别名]
# 或者: from termios import TCIOFLUSH [as 别名]
def __getKey():
"""Return a key pressed by the user"""
try:
tty.setcbreak(sys.stdin.fileno())
termios.tcflush(sys.stdin, termios.TCIOFLUSH)
ch = sys.stdin.read(1)
return ord(ch) if ch else None
finally:
termios.tcsetattr(__fd, termios.TCSADRAIN, __old)