533 lines
19 KiB
Python
533 lines
19 KiB
Python
#!/usr/bin/env python
|
|
# License: GPLv3 Copyright: 2022, Kovid Goyal <kovid at kovidgoyal.net>
|
|
|
|
import io
|
|
import json
|
|
import os
|
|
import select
|
|
import signal
|
|
import sys
|
|
import time
|
|
import warnings
|
|
from contextlib import suppress
|
|
from dataclasses import dataclass
|
|
from importlib import import_module
|
|
from itertools import count
|
|
from typing import (
|
|
IO, TYPE_CHECKING, Any, Dict, Iterable, Iterator, List, NoReturn, Optional,
|
|
Tuple, Union, cast
|
|
)
|
|
|
|
from kitty.constants import kitty_exe, running_in_kitty
|
|
from kitty.entry_points import main as main_entry_point
|
|
from kitty.fast_data_types import (
|
|
CLD_EXITED, CLD_KILLED, establish_controlling_tty, get_options,
|
|
install_signal_handlers, read_signals, remove_signal_handlers, safe_pipe,
|
|
set_options
|
|
)
|
|
from kitty.options.types import Options
|
|
from kitty.shm import SharedMemory
|
|
from kitty.types import SignalInfo
|
|
from kitty.utils import log_error
|
|
|
|
if TYPE_CHECKING:
|
|
from _typeshed import ReadableBuffer, WriteableBuffer
|
|
|
|
|
|
error_events = select.POLLERR | select.POLLNVAL | select.POLLHUP
|
|
TIMEOUT = 15.0 if os.environ.get('CI') == 'true' else 5.0
|
|
|
|
|
|
class PrewarmProcessFailed(Exception):
|
|
pass
|
|
|
|
|
|
@dataclass
|
|
class Child:
|
|
child_id: int
|
|
child_process_pid: int
|
|
|
|
|
|
def wait_for_child_death(child_pid: int, timeout: float = 1) -> Optional[int]:
|
|
st = time.monotonic()
|
|
while time.monotonic() - st < timeout:
|
|
try:
|
|
pid, status = os.waitpid(child_pid, os.WNOHANG)
|
|
except ChildProcessError:
|
|
return 0
|
|
else:
|
|
if pid == child_pid:
|
|
return status
|
|
time.sleep(0.01)
|
|
return None
|
|
|
|
|
|
class PrewarmProcess:
|
|
|
|
def __init__(
|
|
self,
|
|
prewarm_process_pid: int,
|
|
to_prewarm_stdin: int,
|
|
from_prewarm_stdout: int,
|
|
from_prewarm_death_notify: int,
|
|
) -> None:
|
|
self.children: Dict[int, Child] = {}
|
|
self.worker_pid = prewarm_process_pid
|
|
self.from_prewarm_death_notify = from_prewarm_death_notify
|
|
self.write_to_process_fd = to_prewarm_stdin
|
|
self.read_from_process_fd = from_prewarm_stdout
|
|
self.poll = select.poll()
|
|
self.poll.register(self.read_from_process_fd, select.POLLIN)
|
|
|
|
def take_from_worker_fd(self, create_file: bool = False) -> int:
|
|
if create_file:
|
|
os.set_blocking(self.from_prewarm_death_notify, True)
|
|
self.from_worker = open(self.from_prewarm_death_notify, mode='r', closefd=True)
|
|
self.from_prewarm_death_notify = -1
|
|
return -1
|
|
ans, self.from_prewarm_death_notify = self.from_prewarm_death_notify, -1
|
|
return ans
|
|
|
|
def __del__(self) -> None:
|
|
if self.write_to_process_fd > -1:
|
|
os.close(self.write_to_process_fd)
|
|
self.write_to_process_fd = -1
|
|
if self.from_prewarm_death_notify > -1:
|
|
os.close(self.from_prewarm_death_notify)
|
|
self.from_prewarm_death_notify = -1
|
|
if self.read_from_process_fd > -1:
|
|
os.close(self.read_from_process_fd)
|
|
self.read_from_process_fd = -1
|
|
|
|
if hasattr(self, 'from_worker'):
|
|
self.from_worker.close()
|
|
del self.from_worker
|
|
if self.worker_pid > 0:
|
|
if wait_for_child_death(self.worker_pid) is None:
|
|
log_error('Prewarm process failed to quite gracefully, killing it')
|
|
os.kill(self.worker_pid, signal.SIGKILL)
|
|
os.waitpid(self.worker_pid, 0)
|
|
|
|
def poll_to_send(self, yes: bool = True) -> None:
|
|
if yes:
|
|
self.poll.register(self.write_to_process_fd, select.POLLOUT)
|
|
else:
|
|
self.poll.unregister(self.write_to_process_fd)
|
|
|
|
def reload_kitty_config(self, opts: Optional[Options] = None) -> None:
|
|
if opts is None:
|
|
opts = get_options()
|
|
data = json.dumps({'paths': opts.config_paths, 'overrides': opts.config_overrides})
|
|
if self.write_to_process_fd > -1:
|
|
self.send_to_prewarm_process(f'reload_kitty_config:{data}\n')
|
|
|
|
def __call__(
|
|
self,
|
|
tty_fd: int,
|
|
argv: List[str],
|
|
cwd: str = '',
|
|
env: Optional[Dict[str, str]] = None,
|
|
stdin_data: Optional[Union[str, bytes]] = None,
|
|
timeout: float = TIMEOUT,
|
|
) -> Child:
|
|
tty_name = os.ttyname(tty_fd)
|
|
if isinstance(stdin_data, str):
|
|
stdin_data = stdin_data.encode()
|
|
if env is None:
|
|
env = dict(os.environ)
|
|
cmd: Dict[str, Union[int, List[str], str, Dict[str, str]]] = {
|
|
'tty_name': tty_name, 'cwd': cwd or os.getcwd(), 'argv': argv, 'env': env,
|
|
}
|
|
total_size = 0
|
|
if stdin_data is not None:
|
|
cmd['stdin_size'] = len(stdin_data)
|
|
total_size += len(stdin_data)
|
|
data = json.dumps(cmd).encode()
|
|
total_size += len(data) + SharedMemory.num_bytes_for_size
|
|
with SharedMemory(size=total_size, unlink_on_exit=True) as shm:
|
|
shm.write_data_with_size(data)
|
|
if stdin_data:
|
|
shm.write(stdin_data)
|
|
shm.flush()
|
|
self.send_to_prewarm_process(f'fork:{shm.name}\n')
|
|
input_buf = b''
|
|
st = time.monotonic()
|
|
while time.monotonic() - st < timeout:
|
|
for (fd, event) in self.poll.poll(2):
|
|
if event & error_events:
|
|
raise PrewarmProcessFailed('Failed doing I/O with prewarm process')
|
|
if fd == self.read_from_process_fd and event & select.POLLIN:
|
|
d = os.read(self.read_from_process_fd, io.DEFAULT_BUFFER_SIZE)
|
|
input_buf += d
|
|
while (idx := input_buf.find(b'\n')) > -1:
|
|
line = input_buf[:idx].decode()
|
|
input_buf = input_buf[idx+1:]
|
|
if line.startswith('CHILD:'):
|
|
_, cid, pid = line.split(':')
|
|
child = self.add_child(int(cid), int(pid))
|
|
shm.unlink_on_exit = False
|
|
return child
|
|
if line.startswith('ERR:'):
|
|
raise PrewarmProcessFailed(line.split(':', 1)[-1])
|
|
raise PrewarmProcessFailed('Timed out waiting for I/O with prewarm process')
|
|
|
|
def add_child(self, child_id: int, pid: int) -> Child:
|
|
self.children[child_id] = c = Child(child_id, pid)
|
|
return c
|
|
|
|
def send_to_prewarm_process(self, output_buf: Union[str, bytes] = b'', timeout: float = TIMEOUT) -> None:
|
|
if isinstance(output_buf, str):
|
|
output_buf = output_buf.encode()
|
|
st = time.monotonic()
|
|
while time.monotonic() - st < timeout and output_buf:
|
|
self.poll_to_send(bool(output_buf))
|
|
for (fd, event) in self.poll.poll(2):
|
|
if event & error_events:
|
|
raise PrewarmProcessFailed('Failed doing I/O with prewarm process: {event}')
|
|
if fd == self.write_to_process_fd and event & select.POLLOUT:
|
|
n = os.write(self.write_to_process_fd, output_buf)
|
|
output_buf = output_buf[n:]
|
|
self.poll_to_send(False)
|
|
if output_buf:
|
|
raise PrewarmProcessFailed('Timed out waiting to write to prewarm process')
|
|
|
|
def mark_child_as_ready(self, child_id: int) -> bool:
|
|
c = self.children.pop(child_id, None)
|
|
if c is None:
|
|
return False
|
|
self.send_to_prewarm_process(f'ready:{child_id}\n')
|
|
return True
|
|
|
|
|
|
def reload_kitty_config(payload: str) -> None:
|
|
d = json.loads(payload)
|
|
from kittens.tui.utils import set_kitty_opts
|
|
set_kitty_opts(paths=d['paths'], overrides=d['overrides'])
|
|
|
|
|
|
def prewarm() -> None:
|
|
from kittens.runner import all_kitten_names
|
|
for kitten in all_kitten_names():
|
|
with suppress(Exception):
|
|
import_module(f'kittens.{kitten}.main')
|
|
import_module('kitty.complete')
|
|
|
|
|
|
class MemoryViewReadWrapperBytes(io.BufferedIOBase):
|
|
|
|
def __init__(self, mw: memoryview):
|
|
self.mw = mw
|
|
self.pos = 0
|
|
|
|
def detach(self) -> io.RawIOBase:
|
|
raise io.UnsupportedOperation('detach() not supported')
|
|
|
|
def read(self, size: Optional[int] = -1) -> bytes:
|
|
if size is None or size < 0:
|
|
size = max(0, len(self.mw) - self.pos)
|
|
oldpos = self.pos
|
|
self.pos = min(len(self.mw), self.pos + size)
|
|
if self.pos <= oldpos:
|
|
return b''
|
|
return bytes(self.mw[oldpos:self.pos])
|
|
|
|
def readinto(self, b: 'WriteableBuffer') -> int:
|
|
if not isinstance(b, memoryview):
|
|
b = memoryview(b)
|
|
b = b.cast('B')
|
|
data = self.read(len(b))
|
|
n = len(data)
|
|
b[:n] = data
|
|
return n
|
|
readinto1 = readinto
|
|
|
|
def readall(self) -> bytes:
|
|
return self.read()
|
|
|
|
def write(self, b: 'ReadableBuffer') -> int:
|
|
raise io.UnsupportedOperation('readonly stream')
|
|
|
|
def readable(self) -> bool:
|
|
return True
|
|
|
|
|
|
class MemoryViewReadWrapper(io.TextIOWrapper):
|
|
|
|
def __init__(self, mw: memoryview):
|
|
super().__init__(cast(IO[bytes], MemoryViewReadWrapperBytes(mw)), encoding='utf-8', errors='replace')
|
|
|
|
|
|
def child_main(cmd: Dict[str, Any], ready_fd: int) -> NoReturn:
|
|
cwd = cmd.get('cwd')
|
|
if cwd:
|
|
with suppress(OSError):
|
|
os.chdir(cwd)
|
|
env = cmd.get('env')
|
|
if env is not None:
|
|
os.environ.clear()
|
|
os.environ.update(env)
|
|
argv = cmd.get('argv')
|
|
if argv:
|
|
sys.argv = list(argv)
|
|
poll = select.poll()
|
|
poll.register(ready_fd, select.POLLIN)
|
|
tuple(poll.poll())
|
|
os.close(ready_fd)
|
|
main_entry_point()
|
|
raise SystemExit(0)
|
|
|
|
|
|
def fork(shm_address: str, all_non_child_fds: Iterable[int]) -> Tuple[int, int]:
|
|
sz = pos = 0
|
|
with SharedMemory(name=shm_address, unlink_on_exit=True) as shm:
|
|
data = shm.read_data_with_size()
|
|
cmd = json.loads(data)
|
|
sz = cmd.get('stdin_size', 0)
|
|
if sz:
|
|
pos = shm.tell()
|
|
shm.unlink_on_exit = False
|
|
|
|
r, w = safe_pipe()
|
|
ready_fd_read, ready_fd_write = safe_pipe()
|
|
try:
|
|
child_pid = os.fork()
|
|
except OSError:
|
|
if sz:
|
|
with SharedMemory(shm_address, unlink_on_exit=True):
|
|
pass
|
|
if child_pid:
|
|
# master process
|
|
os.close(w)
|
|
os.close(ready_fd_read)
|
|
poll = select.poll()
|
|
poll.register(r, select.POLLIN)
|
|
tuple(poll.poll())
|
|
return child_pid, ready_fd_write
|
|
# child process
|
|
remove_signal_handlers()
|
|
os.close(r)
|
|
os.close(ready_fd_write)
|
|
for fd in all_non_child_fds:
|
|
os.close(fd)
|
|
os.setsid()
|
|
tty_name = cmd.get('tty_name')
|
|
if tty_name:
|
|
sys.__stdout__.flush()
|
|
sys.__stderr__.flush()
|
|
establish_controlling_tty(tty_name, sys.__stdin__.fileno(), sys.__stdout__.fileno(), sys.__stderr__.fileno())
|
|
os.close(w)
|
|
if shm.unlink_on_exit:
|
|
child_main(cmd, ready_fd_read)
|
|
else:
|
|
with SharedMemory(shm_address, unlink_on_exit=True) as shm:
|
|
stdin_data = memoryview(shm.mmap)[pos:pos + sz]
|
|
if stdin_data:
|
|
sys.stdin = MemoryViewReadWrapper(stdin_data)
|
|
try:
|
|
child_main(cmd, ready_fd_read)
|
|
finally:
|
|
stdin_data.release()
|
|
sys.stdin = sys.__stdin__
|
|
|
|
|
|
def main(stdin_fd: int, stdout_fd: int, notify_child_death_fd: int) -> None:
|
|
os.set_blocking(notify_child_death_fd, False)
|
|
os.set_blocking(stdin_fd, False)
|
|
os.set_blocking(stdout_fd, False)
|
|
signal_read_fd = install_signal_handlers(signal.SIGCHLD, signal.SIGUSR1)[0]
|
|
poll = select.poll()
|
|
poll.register(stdin_fd, select.POLLIN)
|
|
poll.register(signal_read_fd, select.POLLIN)
|
|
input_buf = output_buf = child_death_buf = b''
|
|
child_ready_fds: Dict[int, int] = {}
|
|
child_pid_map: Dict[int, int] = {}
|
|
child_id_counter = count()
|
|
self_pid = os.getpid()
|
|
# runpy issues a warning when running modules that have already been
|
|
# imported. Ignore it.
|
|
warnings.filterwarnings('ignore', category=RuntimeWarning, module='runpy')
|
|
prewarm()
|
|
|
|
def get_all_non_child_fds() -> Iterator[int]:
|
|
yield notify_child_death_fd
|
|
yield stdin_fd
|
|
yield stdout_fd
|
|
# the signal fds are closed by remove_signal_handlers()
|
|
yield from child_ready_fds.values()
|
|
|
|
def check_event(event: int, err_msg: str) -> None:
|
|
if event & select.POLLHUP:
|
|
raise SystemExit(0)
|
|
if event & error_events:
|
|
raise SystemExit(err_msg)
|
|
|
|
def handle_input(event: int) -> None:
|
|
nonlocal input_buf, output_buf
|
|
check_event(event, 'Polling of input pipe failed')
|
|
if not (event & select.POLLIN):
|
|
return
|
|
d = os.read(stdin_fd, io.DEFAULT_BUFFER_SIZE)
|
|
if not d:
|
|
raise SystemExit(0)
|
|
input_buf += d
|
|
while (idx := input_buf.find(b'\n')) > -1:
|
|
line = input_buf[:idx].decode()
|
|
input_buf = input_buf[idx+1:]
|
|
cmd, _, payload = line.partition(':')
|
|
if cmd == 'reload_kitty_config':
|
|
reload_kitty_config(payload)
|
|
elif cmd == 'ready':
|
|
child_id = int(payload)
|
|
cfd = child_ready_fds.pop(child_id, None)
|
|
if cfd is not None:
|
|
os.close(cfd)
|
|
elif cmd == 'quit':
|
|
raise SystemExit(0)
|
|
elif cmd == 'fork':
|
|
try:
|
|
child_pid, ready_fd_write = fork(payload, get_all_non_child_fds())
|
|
except Exception as e:
|
|
es = str(e).replace('\n', ' ')
|
|
output_buf += f'ERR:{es}\n'.encode()
|
|
else:
|
|
if os.getpid() == self_pid:
|
|
child_id = next(child_id_counter)
|
|
child_pid_map[child_pid] = child_id
|
|
child_ready_fds[child_id] = ready_fd_write
|
|
output_buf += f'CHILD:{child_id}:{child_pid}\n'.encode()
|
|
elif cmd == 'echo':
|
|
output_buf += f'{payload}\n'.encode()
|
|
|
|
def handle_output(event: int) -> None:
|
|
nonlocal output_buf
|
|
check_event(event, 'Polling of output pipe failed')
|
|
if not (event & select.POLLOUT):
|
|
return
|
|
if output_buf:
|
|
n = os.write(stdout_fd, output_buf)
|
|
if not n:
|
|
raise SystemExit(0)
|
|
output_buf = output_buf[n:]
|
|
if not output_buf:
|
|
poll.unregister(stdout_fd)
|
|
|
|
def handle_notify_child_death(event: int) -> None:
|
|
nonlocal child_death_buf
|
|
check_event(event, 'Polling of notify child death pipe failed')
|
|
if not (event & select.POLLOUT):
|
|
return
|
|
if child_death_buf:
|
|
n = os.write(notify_child_death_fd, child_death_buf)
|
|
if not n:
|
|
raise SystemExit(0)
|
|
child_death_buf = child_death_buf[n:]
|
|
if not child_death_buf:
|
|
poll.unregister(notify_child_death_fd)
|
|
|
|
def handle_child_death(dead_child_id: int, dead_child_pid: int) -> None:
|
|
nonlocal child_death_buf
|
|
xfd = child_ready_fds.pop(dead_child_id, None)
|
|
if xfd is not None:
|
|
os.close(xfd)
|
|
child_death_buf += f'{dead_child_pid}\n'.encode()
|
|
|
|
def handle_signals(event: int) -> None:
|
|
check_event(event, 'Polling of signal pipe failed')
|
|
if not event & select.POLLIN:
|
|
return
|
|
|
|
def handle_signal(siginfo: SignalInfo) -> None:
|
|
if siginfo.si_signo != signal.SIGCHLD or siginfo.si_code not in (CLD_KILLED, CLD_EXITED):
|
|
return
|
|
while True:
|
|
try:
|
|
pid, status = os.waitpid(-1, os.WNOHANG)
|
|
except ChildProcessError:
|
|
pid = 0
|
|
if not pid:
|
|
break
|
|
child_id = child_pid_map.pop(pid, None)
|
|
if child_id is not None:
|
|
handle_child_death(child_id, pid)
|
|
|
|
read_signals(signal_read_fd, handle_signal)
|
|
|
|
try:
|
|
while True:
|
|
if output_buf:
|
|
poll.register(stdout_fd, select.POLLOUT)
|
|
if child_death_buf:
|
|
poll.register(notify_child_death_fd, select.POLLOUT)
|
|
for (q, event) in poll.poll():
|
|
if q == stdin_fd:
|
|
handle_input(event)
|
|
elif q == stdout_fd:
|
|
handle_output(event)
|
|
elif q == signal_read_fd:
|
|
handle_signals(event)
|
|
elif q == notify_child_death_fd:
|
|
handle_notify_child_death(event)
|
|
except (KeyboardInterrupt, EOFError, BrokenPipeError):
|
|
if os.getpid() == self_pid:
|
|
raise SystemExit(1)
|
|
raise
|
|
except Exception:
|
|
if os.getpid() == self_pid:
|
|
import traceback
|
|
traceback.print_exc()
|
|
raise
|
|
finally:
|
|
if os.getpid() == self_pid:
|
|
remove_signal_handlers()
|
|
for fmd in child_ready_fds.values():
|
|
with suppress(OSError):
|
|
os.close(fmd)
|
|
|
|
|
|
def exec_main(stdin_read: int, stdout_write: int, death_notify_write: int) -> None:
|
|
os.setsid()
|
|
# SIGUSR1 is used for reloading kitty config, we rely on the parent process
|
|
# to inform us of that
|
|
signal.signal(signal.SIGUSR1, signal.SIG_IGN)
|
|
signal.siginterrupt(signal.SIGUSR1, False)
|
|
os.set_inheritable(stdin_read, False)
|
|
os.set_inheritable(stdout_write, False)
|
|
os.set_inheritable(death_notify_write, False)
|
|
running_in_kitty(False)
|
|
|
|
try:
|
|
main(stdin_read, stdout_write, death_notify_write)
|
|
finally:
|
|
set_options(None)
|
|
|
|
|
|
def fork_prewarm_process(opts: Options, use_exec: bool = False) -> Optional[PrewarmProcess]:
|
|
stdin_read, stdin_write = safe_pipe()
|
|
stdout_read, stdout_write = safe_pipe()
|
|
death_notify_read, death_notify_write = safe_pipe()
|
|
if use_exec:
|
|
import subprocess
|
|
tp = subprocess.Popen(
|
|
[kitty_exe(), '+runpy', f'from kitty.prewarm import exec_main; exec_main({stdin_read}, {stdout_write}, {death_notify_write})'],
|
|
pass_fds=(stdin_read, stdout_write, death_notify_write))
|
|
child_pid = tp.pid
|
|
tp.returncode = 0 # prevent a warning when the popen object is deleted with the process still running
|
|
else:
|
|
child_pid = os.fork()
|
|
if child_pid:
|
|
# master
|
|
os.close(stdin_read)
|
|
os.close(stdout_write)
|
|
os.close(death_notify_write)
|
|
p = PrewarmProcess(child_pid, stdin_write, stdout_read, death_notify_read)
|
|
if use_exec:
|
|
p.reload_kitty_config()
|
|
return p
|
|
# child
|
|
os.close(stdin_write)
|
|
os.close(stdout_read)
|
|
os.close(death_notify_read)
|
|
set_options(opts)
|
|
exec_main(stdin_read, stdout_write, death_notify_write)
|
|
raise SystemExit(0)
|