mirror of
ssh://git.janware.com/janware/proj/jw-pkg
synced 2026-04-24 17:23:36 +02:00
lib.ExecContext.run(): Push code up into base class
Take implementation burden from the derived classes _run() callback by moving the respective code into the run() wrapper methods of the base class. Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
parent
f2ffe85b61
commit
52dd3b8f21
3 changed files with 103 additions and 129 deletions
|
|
@ -2,12 +2,15 @@
|
||||||
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
import abc, re
|
import abc, re, sys
|
||||||
from typing import NamedTuple, TYPE_CHECKING
|
from typing import NamedTuple, TYPE_CHECKING
|
||||||
|
|
||||||
if TYPE_CHECKING:
|
if TYPE_CHECKING:
|
||||||
from typing import Self
|
from typing import Self
|
||||||
|
|
||||||
|
from .log import *
|
||||||
|
from .util import pretty_cmd
|
||||||
|
|
||||||
class Result(NamedTuple):
|
class Result(NamedTuple):
|
||||||
|
|
||||||
stdout: str|None
|
stdout: str|None
|
||||||
|
|
@ -48,7 +51,7 @@ class ExecContext(abc.ABC):
|
||||||
args: list[str],
|
args: list[str],
|
||||||
wd: str|None = None,
|
wd: str|None = None,
|
||||||
throw: bool = True,
|
throw: bool = True,
|
||||||
verbose: bool = False,
|
verbose: bool|None = None,
|
||||||
cmd_input: str|None = None,
|
cmd_input: str|None = None,
|
||||||
env: dict[str, str]|None = None,
|
env: dict[str, str]|None = None,
|
||||||
title: str=None,
|
title: str=None,
|
||||||
|
|
@ -78,19 +81,73 @@ class ExecContext(abc.ABC):
|
||||||
In PTY mode stderr is always None because PTY merges stdout/stderr.
|
In PTY mode stderr is always None because PTY merges stdout/stderr.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
def __check_exit_code(result: Result) -> None:
|
||||||
|
if result.status == 0:
|
||||||
|
return
|
||||||
|
if (throw or verbose):
|
||||||
|
msg = f'Command exited with status {code}: {pretty_cmd(args, wd)}'
|
||||||
|
if result.stderr:
|
||||||
|
msg += ': ' + result.stderr.strip()
|
||||||
|
if throw:
|
||||||
|
raise RuntimeError(msg)
|
||||||
|
|
||||||
|
interactive = (
|
||||||
|
cmd_input == "mode:interactive"
|
||||||
|
or (cmd_input == "mode:auto" and sys.stdin.isatty())
|
||||||
|
)
|
||||||
|
|
||||||
if verbose is None:
|
if verbose is None:
|
||||||
verbose = self.__verbose_default
|
verbose = self.__verbose_default
|
||||||
|
|
||||||
return await self._run(
|
if verbose:
|
||||||
args=args,
|
delim_len = 120
|
||||||
wd=wd,
|
delim = title if title is not None else f'---- {self.uri}: Running {pretty_cmd(args, wd)} -'
|
||||||
throw=throw,
|
if interactive:
|
||||||
verbose=self._verbose(verbose),
|
log(NOTICE, delim)
|
||||||
cmd_input=cmd_input,
|
else:
|
||||||
env=env,
|
delim += '-' * max(0, delim_len - len(delim))
|
||||||
title=title,
|
log(NOTICE, ',' + delim + ' >')
|
||||||
output_encoding=output_encoding
|
|
||||||
)
|
try:
|
||||||
|
|
||||||
|
match output_encoding:
|
||||||
|
case 'bytes':
|
||||||
|
output_encoding = None
|
||||||
|
case None:
|
||||||
|
output_encoding = sys.stdout.encoding or "utf-8"
|
||||||
|
|
||||||
|
ret = Result(None, None, 1)
|
||||||
|
|
||||||
|
try:
|
||||||
|
ret = Result(*await self._run(
|
||||||
|
args=args,
|
||||||
|
wd=wd,
|
||||||
|
verbose=self._verbose(verbose),
|
||||||
|
cmd_input=cmd_input,
|
||||||
|
env=env,
|
||||||
|
interactive=interactive,
|
||||||
|
log_prefix = '|'
|
||||||
|
))
|
||||||
|
except Exception as e:
|
||||||
|
log(ERR, f'Failed to run {pretty_cmd(args, wd)} ({str(e)}')
|
||||||
|
if throw:
|
||||||
|
raise
|
||||||
|
return ret
|
||||||
|
|
||||||
|
__check_exit_code(ret)
|
||||||
|
|
||||||
|
if output_encoding is None:
|
||||||
|
return ret
|
||||||
|
|
||||||
|
return Result(
|
||||||
|
ret.stdout.decode(output_encoding, errors="replace") if ret.stdout is not None else None,
|
||||||
|
ret.stderr.decode(output_encoding, errors="replace") if ret.stderr is not None else None,
|
||||||
|
ret.status
|
||||||
|
)
|
||||||
|
|
||||||
|
finally:
|
||||||
|
if verbose and not interactive:
|
||||||
|
log(NOTICE, '`' + delim + ' <')
|
||||||
|
|
||||||
@abc.abstractmethod
|
@abc.abstractmethod
|
||||||
async def _sudo(self, cmd: list[str], mod_env: dict[str, str], opts: list[str], verbose: bool) -> Result:
|
async def _sudo(self, cmd: list[str], mod_env: dict[str, str], opts: list[str], verbose: bool) -> Result:
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ from typing import Any
|
||||||
|
|
||||||
import os, abc, shlex, sys
|
import os, abc, shlex, sys
|
||||||
|
|
||||||
from .util import run_cmd
|
from .util import run_cmd, pretty_cmd
|
||||||
from .log import *
|
from .log import *
|
||||||
from .ExecContext import ExecContext, Result
|
from .ExecContext import ExecContext, Result
|
||||||
from urllib.parse import urlparse
|
from urllib.parse import urlparse
|
||||||
|
|
@ -27,27 +27,24 @@ class SSHClient(ExecContext):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
async def _run(
|
async def _run(
|
||||||
self,
|
self,
|
||||||
args: list[str],
|
args: list[str],
|
||||||
wd: str|None,
|
wd: str|None,
|
||||||
throw: bool,
|
verbose: bool,
|
||||||
verbose: bool,
|
cmd_input: str|None,
|
||||||
cmd_input: str|None,
|
env: dict[str, str]|None,
|
||||||
env: dict[str, str]|None,
|
interactive: bool,
|
||||||
title: str,
|
log_prefix: str
|
||||||
output_encoding: str|None, # None => unchanged; "bytes" => return raw bytes
|
) -> Result:
|
||||||
) -> Result:
|
|
||||||
|
def __log(prio, *args, verbose=verbose):
|
||||||
|
log(prio, log_prefix, *args)
|
||||||
|
|
||||||
if wd is not None:
|
if wd is not None:
|
||||||
args = ['cd', wd, '&&', *args]
|
args = ['cd', wd, '&&', *args]
|
||||||
|
|
||||||
if verbose:
|
if verbose:
|
||||||
log(WARNING, f'Verbose SSH commands are not yet implemented')
|
__log(WARNING, f'Verbose SSH commands are not yet implemented')
|
||||||
|
|
||||||
interactive = (
|
|
||||||
cmd_input == "mode:interactive"
|
|
||||||
or (cmd_input == "mode:auto" and sys.stdin.isatty())
|
|
||||||
)
|
|
||||||
|
|
||||||
if interactive:
|
if interactive:
|
||||||
raise NotImplementedError('Interactive SSH is not yet implemented')
|
raise NotImplementedError('Interactive SSH is not yet implemented')
|
||||||
|
|
@ -55,20 +52,7 @@ class SSHClient(ExecContext):
|
||||||
if env is not None:
|
if env is not None:
|
||||||
raise NotImplementedError('Passing an environment to SSH commands is not yet implemented')
|
raise NotImplementedError('Passing an environment to SSH commands is not yet implemented')
|
||||||
|
|
||||||
stdout_b, stderr_b, status = await self._run_ssh(args, cmd_input=cmd_input)
|
return await self._run_ssh(args, cmd_input=cmd_input)
|
||||||
|
|
||||||
if throw and status:
|
|
||||||
raise Exception(f'SSH command returned error {status}')
|
|
||||||
|
|
||||||
if output_encoding == 'bytes':
|
|
||||||
return stdout_b, stderr_b, status
|
|
||||||
|
|
||||||
if output_encoding is None:
|
|
||||||
output_encoding = sys.stdout.encoding or "utf-8"
|
|
||||||
stdout_s = stdout_b.decode(output_encoding, errors="replace") if stdout_b is not None else None
|
|
||||||
stderr_s = stderr_b.decode(output_encoding, errors="replace") if stderr_b is not None else None
|
|
||||||
|
|
||||||
return stdout_s, stderr_s, status
|
|
||||||
|
|
||||||
async def _sudo(self, cmd: list[str], mod_env: dict[str, str], opts: list[str], *args, **kwargs) -> Result:
|
async def _sudo(self, cmd: list[str], mod_env: dict[str, str], opts: list[str], *args, **kwargs) -> Result:
|
||||||
if self.username != 'root':
|
if self.username != 'root':
|
||||||
|
|
|
||||||
|
|
@ -18,29 +18,16 @@ class Local(Base):
|
||||||
self,
|
self,
|
||||||
args: list[str],
|
args: list[str],
|
||||||
wd: str|None,
|
wd: str|None,
|
||||||
throw: bool,
|
|
||||||
verbose: bool,
|
verbose: bool,
|
||||||
cmd_input: str|None,
|
cmd_input: str|None,
|
||||||
env: dict[str, str]|None,
|
env: dict[str, str]|None,
|
||||||
title: str,
|
interactive: bool,
|
||||||
output_encoding: str|None, # None => unchanged; "bytes" => return raw bytes
|
log_prefix: str
|
||||||
) -> Result:
|
) -> Result:
|
||||||
|
|
||||||
want_bytes = (output_encoding == "bytes")
|
|
||||||
|
|
||||||
def __log(prio, *args, verbose=verbose):
|
def __log(prio, *args, verbose=verbose):
|
||||||
if verbose:
|
if verbose:
|
||||||
log(prio, "|", *args)
|
log(prio, log_prefix, *args)
|
||||||
|
|
||||||
def __check_exit_code(code: int, stdout=None, stderr=None):
|
|
||||||
if code == 0:
|
|
||||||
return
|
|
||||||
if (throw or verbose):
|
|
||||||
msg = f'Command exited with status {code}: {pretty_cmd(args, wd)}'
|
|
||||||
if stderr:
|
|
||||||
msg += ': ' + stderr.strip()
|
|
||||||
if throw:
|
|
||||||
raise RuntimeError(msg)
|
|
||||||
|
|
||||||
def __make_pty_reader(collector: list[bytes], enc_for_verbose: str):
|
def __make_pty_reader(collector: list[bytes], enc_for_verbose: str):
|
||||||
def _read(fd):
|
def _read(fd):
|
||||||
|
|
@ -51,20 +38,6 @@ class Local(Base):
|
||||||
return ret
|
return ret
|
||||||
return _read
|
return _read
|
||||||
|
|
||||||
interactive = (
|
|
||||||
cmd_input == "mode:interactive"
|
|
||||||
or (cmd_input == "mode:auto" and sys.stdin.isatty())
|
|
||||||
)
|
|
||||||
|
|
||||||
if verbose:
|
|
||||||
delim_len = 120
|
|
||||||
delim = title if title is not None else f'---- Running {pretty_cmd(args, wd)} -'
|
|
||||||
if interactive:
|
|
||||||
log(NOTICE, delim)
|
|
||||||
else:
|
|
||||||
delim += '-' * max(0, delim_len - len(delim))
|
|
||||||
log(NOTICE, ',' + delim + ' >')
|
|
||||||
|
|
||||||
cwd: str|None = None
|
cwd: str|None = None
|
||||||
if wd is not None:
|
if wd is not None:
|
||||||
cwd = os.getcwd()
|
cwd = os.getcwd()
|
||||||
|
|
@ -78,16 +51,6 @@ class Local(Base):
|
||||||
|
|
||||||
import pty
|
import pty
|
||||||
|
|
||||||
stdout_chunks_b: list[bytes] = []
|
|
||||||
|
|
||||||
enc_for_verbose = (
|
|
||||||
(sys.stdout.encoding or "utf-8")
|
|
||||||
if output_encoding in (None, "bytes")
|
|
||||||
else output_encoding
|
|
||||||
)
|
|
||||||
|
|
||||||
reader = __make_pty_reader(stdout_chunks_b, enc_for_verbose)
|
|
||||||
|
|
||||||
def _spawn():
|
def _spawn():
|
||||||
# Apply env in PTY mode by temporarily updating os.environ around spawn.
|
# Apply env in PTY mode by temporarily updating os.environ around spawn.
|
||||||
if env:
|
if env:
|
||||||
|
|
@ -100,24 +63,18 @@ class Local(Base):
|
||||||
os.environ.update(old_env)
|
os.environ.update(old_env)
|
||||||
return pty.spawn(args, master_read=reader)
|
return pty.spawn(args, master_read=reader)
|
||||||
|
|
||||||
|
stdout_chunks: list[bytes] = []
|
||||||
|
enc_for_verbose = sys.stdout.encoding or "utf-8"
|
||||||
|
reader = __make_pty_reader(stdout_chunks, enc_for_verbose)
|
||||||
|
|
||||||
exit_code = await asyncio.to_thread(_spawn)
|
exit_code = await asyncio.to_thread(_spawn)
|
||||||
__check_exit_code(exit_code)
|
|
||||||
|
|
||||||
# PTY merges stdout/stderr
|
# PTY merges stdout/stderr
|
||||||
stdout_b = b"".join(stdout_chunks_b) if stdout_chunks_b else None
|
stdout = b"".join(stdout_chunks) if stdout_chunks else None
|
||||||
if want_bytes:
|
return stdout, None, exit_code
|
||||||
return stdout_b, None, exit_code
|
|
||||||
|
|
||||||
stdout_dec_enc = (sys.stdout.encoding or "utf-8") if output_encoding is None else output_encoding
|
|
||||||
stdout_s = stdout_b.decode(stdout_dec_enc, errors="replace") if stdout_b is not None else None
|
|
||||||
return stdout_s, None, exit_code
|
|
||||||
|
|
||||||
# -- non-interactive mode
|
# -- non-interactive mode
|
||||||
stdin = (
|
stdin = asyncio.subprocess.DEVNULL if cmd_input is None else asyncio.subprocess.PIPE
|
||||||
asyncio.subprocess.DEVNULL
|
|
||||||
if cmd_input is None
|
|
||||||
else asyncio.subprocess.PIPE
|
|
||||||
)
|
|
||||||
|
|
||||||
proc = await asyncio.create_subprocess_exec(
|
proc = await asyncio.create_subprocess_exec(
|
||||||
*args,
|
*args,
|
||||||
|
|
@ -127,16 +84,12 @@ class Local(Base):
|
||||||
env=env,
|
env=env,
|
||||||
)
|
)
|
||||||
|
|
||||||
stdout_parts_b: list[bytes] = []
|
stdout_parts: list[bytes] = []
|
||||||
stderr_parts_b: list[bytes] = []
|
stderr_parts: list[bytes] = []
|
||||||
|
|
||||||
# -- decoding for verbose output in pipe mode
|
# -- decoding for verbose output in pipe mode
|
||||||
if output_encoding is None or want_bytes:
|
stdout_log_enc = sys.stdout.encoding or "utf-8"
|
||||||
stdout_log_enc = sys.stdout.encoding or "utf-8"
|
stderr_log_enc = sys.stderr.encoding or "utf-8"
|
||||||
stderr_log_enc = sys.stderr.encoding or "utf-8"
|
|
||||||
else:
|
|
||||||
stdout_log_enc = output_encoding
|
|
||||||
stderr_log_enc = output_encoding
|
|
||||||
|
|
||||||
async def read_stream(stream, prio, collector: list[bytes], log_enc: str):
|
async def read_stream(stream, prio, collector: list[bytes], log_enc: str):
|
||||||
buf = b""
|
buf = b""
|
||||||
|
|
@ -156,10 +109,10 @@ class Local(Base):
|
||||||
|
|
||||||
tasks = [
|
tasks = [
|
||||||
asyncio.create_task(
|
asyncio.create_task(
|
||||||
read_stream(proc.stdout, NOTICE, stdout_parts_b, stdout_log_enc)
|
read_stream(proc.stdout, NOTICE, stdout_parts, stdout_log_enc)
|
||||||
),
|
),
|
||||||
asyncio.create_task(
|
asyncio.create_task(
|
||||||
read_stream(proc.stderr, ERR, stderr_parts_b, stderr_log_enc)
|
read_stream(proc.stderr, ERR, stderr_parts, stderr_log_enc)
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
@ -170,35 +123,15 @@ class Local(Base):
|
||||||
|
|
||||||
exit_code = await proc.wait()
|
exit_code = await proc.wait()
|
||||||
await asyncio.gather(*tasks)
|
await asyncio.gather(*tasks)
|
||||||
if want_bytes:
|
|
||||||
__check_exit_code(exit_code)
|
|
||||||
|
|
||||||
stdout_b = b"".join(stdout_parts_b) if stdout_parts_b else None
|
stdout = b"".join(stdout_parts) if stdout_parts else None
|
||||||
stderr_b = b"".join(stderr_parts_b) if stderr_parts_b else None
|
stderr = b"".join(stderr_parts) if stderr_parts else None
|
||||||
|
|
||||||
if want_bytes:
|
return stdout, stderr, exit_code
|
||||||
return stdout_b, stderr_b, exit_code
|
|
||||||
|
|
||||||
if output_encoding is None:
|
|
||||||
stdout_dec_enc = sys.stdout.encoding or "utf-8"
|
|
||||||
stderr_dec_enc = sys.stderr.encoding or "utf-8"
|
|
||||||
else:
|
|
||||||
stdout_dec_enc = output_encoding
|
|
||||||
stderr_dec_enc = output_encoding
|
|
||||||
|
|
||||||
stdout_s = stdout_b.decode(stdout_dec_enc, errors="replace") if stdout_b is not None else None
|
|
||||||
stderr_s = stderr_b.decode(stderr_dec_enc, errors="replace") if stderr_b is not None else None
|
|
||||||
|
|
||||||
if not want_bytes:
|
|
||||||
__check_exit_code(exit_code, stdout=stdout_s, stderr=stderr_s)
|
|
||||||
|
|
||||||
return stdout_s, stderr_s, exit_code
|
|
||||||
|
|
||||||
finally:
|
finally:
|
||||||
if cwd is not None:
|
if cwd is not None:
|
||||||
os.chdir(cwd)
|
os.chdir(cwd)
|
||||||
if verbose and not interactive:
|
|
||||||
log(NOTICE, '`' + delim + ' <')
|
|
||||||
|
|
||||||
async def _sudo(self, cmd: list[str], mod_env: dict[str, str], opts: list[str], verbose: bool) -> Result:
|
async def _sudo(self, cmd: list[str], mod_env: dict[str, str], opts: list[str], verbose: bool) -> Result:
|
||||||
env: dict[str, str]|None = None
|
env: dict[str, str]|None = None
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue