fenrir/play zone/terminalManagement

120 lines
3.8 KiB
Plaintext
Raw Normal View History

2017-08-21 07:12:15 -04:00
import os
2017-08-22 07:08:48 -04:00
import struct
import sys
2017-08-21 07:12:15 -04:00
import pty
2017-08-22 07:08:48 -04:00
import tty
2017-08-22 10:01:27 -04:00
import termios
2017-08-21 07:12:15 -04:00
import shlex
import signal
2017-08-22 07:08:48 -04:00
import select
2017-08-21 07:12:15 -04:00
import pyte
2017-08-22 10:01:27 -04:00
import time
2017-08-21 07:12:15 -04:00
class Terminal:
def __init__(self, columns, lines, p_in):
self.screen = pyte.HistoryScreen(columns, lines)
self.screen.set_mode(pyte.modes.LNM)
self.screen.write_process_input = \
lambda data: p_in.write(data.encode())
self.stream = pyte.ByteStream()
self.stream.attach(self.screen)
def feed(self, data):
self.stream.feed(data)
def dump(self):
cursor = self.screen.cursor
lines = []
for y in self.screen.dirty:
line = self.screen.buffer[y]
data = [(char.data, char.reverse, char.fg, char.bg)
for char in (line[x] for x in range(self.screen.columns))]
lines.append((y, data))
self.screen.dirty.clear()
return {"c": (cursor.x, cursor.y), "lines": lines}
2017-08-24 05:25:59 -04:00
def open_terminal(command="bash", columns=80, lines=24):
2017-08-21 07:12:15 -04:00
p_pid, master_fd = pty.fork()
if p_pid == 0: # Child.
argv = shlex.split(command)
2017-08-24 05:25:59 -04:00
env = os.environ.copy()
env["TERM"] = 'vt100'
2017-08-21 07:12:15 -04:00
os.execvpe(argv[0], argv, env)
# File-like object for I/O with the child process aka command.
p_out = os.fdopen(master_fd, "w+b", 0)
return Terminal(columns, lines, p_out), p_pid, p_out
2017-08-21 11:45:03 -04:00
def HandleTerminal():
2017-08-24 04:48:25 -04:00
debug = False
2017-08-22 10:01:27 -04:00
running = True
2017-08-22 07:08:48 -04:00
try:
2017-08-24 04:21:34 -04:00
old_attr = termios.tcgetattr(sys.stdin)
2017-08-22 07:08:48 -04:00
tty.setraw(0)
2017-08-22 10:01:27 -04:00
terminal, p_pid, p_out = open_terminal()
2017-08-24 04:11:07 -04:00
std_out = os.fdopen(sys.stdout.fileno(), "w+b", 0)
2017-08-22 10:01:27 -04:00
while running:
2017-08-23 08:10:23 -04:00
r, w, x = select.select([sys.stdin, p_out],[],[])
2017-08-22 10:01:27 -04:00
if r == []:
continue
if p_out in r:
if debug:
print('pre p_out')
try:
2017-08-24 04:11:07 -04:00
msgBytes = read_all(p_out.fileno())
2017-08-22 10:01:27 -04:00
except (EOFError, OSError):
running = False
2017-08-24 09:51:16 -04:00
break
terminal.feed(msgBytes)
2017-08-22 10:01:27 -04:00
os.write(sys.stdout.fileno(), msgBytes)
if debug:
print('after p_out')
if sys.stdin in r:
if debug:
2017-08-24 04:11:07 -04:00
print('pre stdin')
2017-08-24 04:21:34 -04:00
try:
msgBytes = read_all(sys.stdin.fileno())
except (EOFError, OSError):
running = False
break
2017-08-24 09:51:16 -04:00
terminal.feed(msgBytes)
2017-08-24 04:11:07 -04:00
os.write(p_out.fileno(), msgBytes)
2017-08-22 10:01:27 -04:00
if debug:
2017-08-23 08:10:23 -04:00
print('after stdin')
2017-08-22 07:08:48 -04:00
except Exception as e: # Process died?
print(e)
2017-08-22 10:01:27 -04:00
running = False
2017-08-22 07:08:48 -04:00
finally:
os.kill(p_pid, signal.SIGTERM)
2017-08-24 04:21:34 -04:00
p_out.close()
termios.tcsetattr(sys.stdin, termios.TCSADRAIN, old_attr)
2017-08-24 09:51:16 -04:00
sys.exit(0)
2017-08-22 07:08:48 -04:00
def get_terminal_size(fd):
s = struct.pack('HHHH', 0, 0, 0, 0)
rows, cols, _, _ = struct.unpack('HHHH', fcntl.ioctl(fd, termios.TIOCGWINSZ, s))
return rows, cols
def resize_terminal(fd):
s = struct.pack('HHHH', 0, 0, 0, 0)
s = fcntl.ioctl(0, termios.TIOCGWINSZ, s)
fcntl.ioctl(fd, termios.TIOCSWINSZ, s)
rows, cols, _, _ = struct.unpack('hhhh', s)
return rows, cols
2017-08-21 11:45:03 -04:00
2017-08-24 04:11:07 -04:00
def read_all(fd):
2017-08-24 05:25:59 -04:00
bytes = os.read(fd, 65536)
2017-08-24 04:11:07 -04:00
if bytes == b'':
raise EOFError
while has_more(fd):
2017-08-24 05:25:59 -04:00
data = os.read(fd, 65536)
2017-08-24 04:11:07 -04:00
if data == b'':
raise EOFError
bytes += data
return bytes
def has_more(fd):
r, w, e = select.select([fd], [], [], 0)
return (fd in r)
2017-08-21 11:45:03 -04:00
if __name__ == "__main__":
HandleTerminal()