summaryrefslogtreecommitdiff
path: root/exec_utils.py
diff options
context:
space:
mode:
authorScott <[email protected]>2022-01-27 13:42:09 -0800
committerScott <[email protected]>2022-01-27 13:42:09 -0800
commitb3ef553f4f30614b97e23f2d4ad6d6576ec57adf (patch)
treea8ad1d0d07d6ba439b020581360f896ad1a737ea /exec_utils.py
parentc901f3eb1acf78fd4933d8faeedc517ccafe627e (diff)
Adding test code trying to improve test coverage.
Diffstat (limited to 'exec_utils.py')
-rw-r--r--exec_utils.py55
1 files changed, 30 insertions, 25 deletions
diff --git a/exec_utils.py b/exec_utils.py
index 282a325..dcd30a2 100644
--- a/exec_utils.py
+++ b/exec_utils.py
@@ -2,6 +2,7 @@
import atexit
import logging
+import os
import selectors
import shlex
import subprocess
@@ -21,36 +22,40 @@ def cmd_showing_output(
"""
line_enders = set([b'\n', b'\r'])
- p = subprocess.Popen(
+ sel = selectors.DefaultSelector()
+ with subprocess.Popen(
command,
shell=True,
bufsize=0,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
universal_newlines=False,
- )
- sel = selectors.DefaultSelector()
- sel.register(p.stdout, selectors.EVENT_READ)
- sel.register(p.stderr, selectors.EVENT_READ)
- stream_ends = 0
- while stream_ends < 2:
- for key, _ in sel.select():
- char = key.fileobj.read(1)
- if not char:
- stream_ends += 1
- continue
- if key.fileobj is p.stdout:
- sys.stdout.buffer.write(char)
- if char in line_enders:
- sys.stdout.flush()
- else:
- sys.stderr.buffer.write(char)
- if char in line_enders:
- sys.stderr.flush()
- p.wait()
- sys.stdout.flush()
- sys.stderr.flush()
- return p.returncode
+ ) as p:
+ sel.register(p.stdout, selectors.EVENT_READ)
+ sel.register(p.stderr, selectors.EVENT_READ)
+ done = False
+ while not done:
+ for key, _ in sel.select():
+ char = key.fileobj.read(1)
+ if not char:
+ sel.unregister(key.fileobj)
+ if len(sel.get_map()) == 0:
+ sys.stdout.flush()
+ sys.stderr.flush()
+ sel.close()
+ done = True
+ if key.fileobj is p.stdout:
+ # sys.stdout.buffer.write(char)
+ os.write(sys.stdout.fileno(), char)
+ if char in line_enders:
+ sys.stdout.flush()
+ else:
+ # sys.stderr.buffer.write(char)
+ os.write(sys.stderr.fileno(), char)
+ if char in line_enders:
+ sys.stderr.flush()
+ p.wait()
+ return p.returncode
def cmd_with_timeout(command: str, timeout_seconds: Optional[float]) -> int:
@@ -133,7 +138,7 @@ def cmd_in_background(command: str, *, silent: bool = False) -> subprocess.Popen
def kill_subproc() -> None:
try:
if subproc.poll() is None:
- logger.info("At exit handler: killing {}: {}".format(subproc, command))
+ logger.info(f'At exit handler: killing {subproc} ({command})')
subproc.terminate()
subproc.wait(timeout=10.0)
except BaseException as be: