本文整理匯總了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)