2021-12-03 08:33:16 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
2022-12-14 10:53:17 +00:00
|
|
|
from io import TextIOWrapper
|
2023-01-05 13:16:07 +00:00
|
|
|
from pathlib import Path
|
2021-12-03 08:33:16 +00:00
|
|
|
from subprocess import Popen, PIPE, STDOUT
|
2022-02-15 23:47:21 +00:00
|
|
|
from threading import Thread
|
|
|
|
from time import sleep
|
2023-01-05 13:16:07 +00:00
|
|
|
from typing import Optional, Union
|
2022-02-15 23:47:21 +00:00
|
|
|
import logging
|
2021-12-03 08:33:16 +00:00
|
|
|
import os
|
2022-02-15 23:47:21 +00:00
|
|
|
import sys
|
2021-12-03 08:33:16 +00:00
|
|
|
|
|
|
|
|
2023-06-25 04:14:31 +00:00
|
|
|
# Very simple tee logic implementation. You can specify a shell command, output
|
2021-12-03 08:33:16 +00:00
|
|
|
# logfile and env variables. After TeePopen is created you can only wait until
|
|
|
|
# it finishes. stderr and stdout will be redirected both to specified file and
|
|
|
|
# stdout.
|
|
|
|
class TeePopen:
|
2022-12-14 10:53:17 +00:00
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
command: str,
|
2023-01-05 13:16:07 +00:00
|
|
|
log_file: Union[str, Path],
|
2022-12-14 10:53:17 +00:00
|
|
|
env: Optional[dict] = None,
|
|
|
|
timeout: Optional[int] = None,
|
|
|
|
):
|
2021-12-03 08:33:16 +00:00
|
|
|
self.command = command
|
2022-12-14 10:53:17 +00:00
|
|
|
self._log_file_name = log_file
|
|
|
|
self._log_file = None # type: Optional[TextIOWrapper]
|
|
|
|
self.env = env or os.environ.copy()
|
2022-11-14 17:59:01 +00:00
|
|
|
self._process = None # type: Optional[Popen]
|
2022-02-15 23:47:21 +00:00
|
|
|
self.timeout = timeout
|
2023-01-23 11:50:49 +00:00
|
|
|
self.timeout_exceeded = False
|
2022-02-15 23:47:21 +00:00
|
|
|
|
2022-12-14 10:53:17 +00:00
|
|
|
def _check_timeout(self) -> None:
|
|
|
|
if self.timeout is None:
|
|
|
|
return
|
2022-02-15 23:47:21 +00:00
|
|
|
sleep(self.timeout)
|
2023-01-23 11:50:49 +00:00
|
|
|
self.timeout_exceeded = True
|
2022-02-15 23:47:21 +00:00
|
|
|
while self.process.poll() is None:
|
|
|
|
logging.warning(
|
|
|
|
"Killing process %s, timeout %s exceeded",
|
|
|
|
self.process.pid,
|
|
|
|
self.timeout,
|
|
|
|
)
|
|
|
|
os.killpg(self.process.pid, 9)
|
|
|
|
sleep(10)
|
2021-12-03 08:33:16 +00:00
|
|
|
|
2022-12-14 10:53:17 +00:00
|
|
|
def __enter__(self) -> "TeePopen":
|
2022-01-11 11:23:09 +00:00
|
|
|
self.process = Popen(
|
|
|
|
self.command,
|
|
|
|
shell=True,
|
|
|
|
universal_newlines=True,
|
|
|
|
env=self.env,
|
2022-02-15 23:47:21 +00:00
|
|
|
start_new_session=True, # signall will be sent to all children
|
2022-01-11 11:23:09 +00:00
|
|
|
stderr=STDOUT,
|
|
|
|
stdout=PIPE,
|
|
|
|
bufsize=1,
|
|
|
|
)
|
2022-02-15 23:47:21 +00:00
|
|
|
if self.timeout is not None and self.timeout > 0:
|
|
|
|
t = Thread(target=self._check_timeout)
|
|
|
|
t.daemon = True # does not block the program from exit
|
|
|
|
t.start()
|
2021-12-03 08:33:16 +00:00
|
|
|
return self
|
|
|
|
|
2022-12-14 10:53:17 +00:00
|
|
|
def __exit__(self, exc_type, exc_value, traceback):
|
|
|
|
self.wait()
|
2023-01-23 11:50:49 +00:00
|
|
|
if self.timeout_exceeded:
|
|
|
|
exceeded_log = (
|
|
|
|
f"Command `{self.command}` has failed, "
|
|
|
|
f"timeout {self.timeout}s is exceeded"
|
|
|
|
)
|
|
|
|
if self.process.stdout is not None:
|
|
|
|
sys.stdout.write(exceeded_log)
|
|
|
|
|
|
|
|
self.log_file.write(exceeded_log)
|
|
|
|
|
2021-12-03 08:33:16 +00:00
|
|
|
self.log_file.close()
|
|
|
|
|
2023-01-05 13:16:07 +00:00
|
|
|
def wait(self) -> int:
|
2022-12-14 10:53:17 +00:00
|
|
|
if self.process.stdout is not None:
|
|
|
|
for line in self.process.stdout:
|
|
|
|
sys.stdout.write(line)
|
|
|
|
self.log_file.write(line)
|
2021-12-03 08:33:16 +00:00
|
|
|
|
2022-02-15 22:50:21 +00:00
|
|
|
return self.process.wait()
|
2022-11-14 17:59:01 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def process(self) -> Popen:
|
|
|
|
if self._process is not None:
|
|
|
|
return self._process
|
|
|
|
raise AttributeError("process is not created yet")
|
|
|
|
|
|
|
|
@process.setter
|
|
|
|
def process(self, process: Popen) -> None:
|
|
|
|
self._process = process
|
2022-12-14 10:53:17 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def log_file(self) -> TextIOWrapper:
|
|
|
|
if self._log_file is None:
|
|
|
|
self._log_file = open(self._log_file_name, "w", encoding="utf-8")
|
|
|
|
return self._log_file
|