-
Notifications
You must be signed in to change notification settings - Fork 4
/
eaf_pyqterm_backend.py
178 lines (145 loc) · 5.18 KB
/
eaf_pyqterm_backend.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
# Copyright (C) 2023 by Mumulhl <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later
import os
import platform
import threading
import psutil
if platform.system() == "Windows":
from winpty import PtyProcess as pty
else:
import fcntl
import pty
import signal
import struct
import termios
from eaf_pyqterm_term import TerminalScreen, TerminalStream
class Pty:
def __init__(self, width, height, argv, start_directory):
env = os.environ
env.update(
{
"TERM": "xterm-256color",
"COLORTERM": "truecolor",
"COLUMNS": str(width),
"LINES": str(height),
}
)
if platform.system() == "Windows":
self._spawn_winpty(env, argv, start_directory)
else:
self._spawn_pty(env, argv, start_directory)
def _spawn_pty(self, env, argv, start_directory):
p_pid, master_fd = pty.fork()
if p_pid == 0:
os.chdir(start_directory)
os.execvpe(argv[0], argv, env)
else:
self.p_fd = master_fd
self.p_pid = p_pid
self.pty = os.fdopen(master_fd, "w+b", 0)
def _spawn_winpty(self, env, argv, start_directory):
self.pty = pty.spawn(
argv,
start_directory,
env,
(int(env["COLUMNS"]), int(env["LINES"])),
)
def read(self):
return self.pty.read(65536)
def write(self, data):
if platform.system() == "Windows":
self.pty.write(data.decode())
else:
self.pty.write(data)
def close(self):
self.pty.close()
if platform.system() != "Windows":
os.kill(self.p_pid, signal.SIGTERM)
def resize(self, width, height):
if platform.system() == "Windows":
self._resize_winpty(width, height)
else:
self._resize_pty(width, height)
def _resize_pty(self, width, height):
# https://github.com/pexpect/ptyprocess/blob/ce42a786ff6f4baff71382db9076c7398328abaf/ptyprocess/ptyprocess.py#L118
TIOCSWINSZ = getattr(termios, "TIOCSWINSZ", -2146929561)
s = struct.pack("HHHH", height, width, 0, 0)
try:
fcntl.ioctl(self.p_fd, TIOCSWINSZ, s)
except: # noqa: E722
pass
def _resize_winpty(self, width, height):
self.pty.setwinsize(width, height)
def getcwd(self):
pid = self.pty.pid if platform.system() == "Windows" else self.p_pid
try:
return psutil.Process(pid).cwd()
except: # noqa: E722
pass
class Backend:
def __init__(self, width, height, argv, start_directory):
self.screen = TerminalScreen(False, width, height, 99999)
self.buffer_screen = TerminalScreen(True, width, height, 99999)
self.stream = TerminalStream(self.screen)
self.buffer_stream = TerminalStream(self.buffer_screen)
self.screen.write_process_input = self.send
self.buffer_screen.write_process_input = self.send
self.pty = Pty(width, height, argv, start_directory)
self.getcwd = self.pty.getcwd
self.thread = threading.Thread(target=self.read)
self.thread.start()
def title(self):
return self.screen.title or self.buffer_screen.title
def resize(self, width, height):
self.screen.resize(height, width)
self.buffer_screen.resize(height, width)
self.pty.resize(width, height)
def write_to_screen(self, data: bytes):
into = data.split(b"\x1b[?1049h")
exit = data.split(b"\x1b[?1049l")
if len(into) == 2:
self.write_to_screen(into[0])
self.into_buffer_screen()
data = into[1]
if len(exit) == 2:
self.write_to_screen(exit[0])
self.exit_buffer_screen()
data = exit[1]
try:
self.stream.feed(data)
except: # noqa: E722
# Avoid problem with vim
pass
def into_buffer_screen(self):
self.screen, self.buffer_screen = self.buffer_screen, self.screen
self.stream, self.buffer_stream = self.buffer_stream, self.stream
def exit_buffer_screen(self):
self.screen, self.buffer_screen = self.buffer_screen, self.screen
self.stream, self.buffer_stream = self.buffer_stream, self.stream
self.buffer_screen.reset()
self.screen.dirty.update(range(self.screen.lines))
def read(self):
if platform.system() == "Windows":
while True:
try:
data = self.pty.read().encode()
self.write_to_screen(data)
except (OSError, IOError):
self.close()
break
else:
while True:
try:
data = self.pty.read()
self.write_to_screen(data)
except (OSError, IOError):
self.close()
break
def send(self, data: str):
try:
self.pty.write(data.encode())
except: # noqa: E722
self.close()
def close(self):
self.pty.close()
self.close_buffer()