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
|
# Copyright (c) 2023 Egor Tensin <Egor.Tensin@gmail.com>
# This file is part of the "cimple" project.
# For details, see https://github.com/egor-tensin/cimple.
# Distributed under the MIT License.
from contextlib import contextmanager
import logging
import os
import shutil
import subprocess
from threading import Event, Thread
_COMMON_ARGS = {
'text': True,
'stdin': subprocess.DEVNULL,
'stdout': subprocess.PIPE,
'stderr': subprocess.STDOUT,
}
class LoggingThread(Thread):
def __init__(self, process):
self.process = process
self.launched_event = Event()
target = lambda pipe: self.consume(pipe)
super().__init__(target=target, args=[process.stdout])
def consume(self, pipe):
for line in pipe:
line = line.removesuffix('\n')
logging.info('%s: %s', self.process.log_id, line)
if self.process.cmd_line.log_line_means_launched(line):
self.launched_event.set()
def __enter__(self):
self.start()
self.launched_event.wait()
return self
def __exit__(self, *args):
self.process.shut_down()
self.join()
class CmdLine:
@staticmethod
def which(binary):
if os.path.split(binary)[0]:
# shutil.which('bin/bash') doesn't work.
return os.path.abspath(binary)
path = shutil.which(binary)
if path is None:
raise RuntimeError("couldn't find a binary: " + binary)
return path
def __init__(self, binary, *args, name=None):
binary = self.which(binary)
argv = [binary] + list(args)
self.binary = binary
self.argv = argv
if name is None:
name = os.path.basename(binary)
self.process_name = name
def log_line_means_launched(self, line):
return True
@classmethod
def wrap(cls, outer, inner):
return cls(outer.argv[0], *outer.argv[1:], *inner.argv, name=inner.process_name)
def log_process_start(self):
if len(self.argv) > 1:
logging.info('Executing binary %s with arguments: %s', self.binary, ' '.join(self.argv[1:]))
else:
logging.info('Executing binary %s', self.binary)
class Process(subprocess.Popen):
def __init__(self, cmd_line):
self.cmd_line = cmd_line
cmd_line.log_process_start()
self.name = cmd_line.process_name
super().__init__(cmd_line.argv, **_COMMON_ARGS)
logging.info('Process %s launched', self.log_id)
@property
def log_id(self):
return f'{self.pid}/{self.name}'
def __exit__(self, *args):
try:
self.shut_down()
finally:
super().__exit__(*args)
def shut_down(self):
ec = self.poll()
if ec is not None:
return
logging.info('Terminating process %s', self.log_id)
self.terminate()
try:
self.wait(timeout=3)
return
except subprocess.TimeoutExpired:
pass
self.kill()
self.wait(timeout=3)
class Runner:
@staticmethod
def unbuffered():
return CmdLine('stdbuf', '-o0')
def __init__(self):
self.wrappers = []
self.add_wrapper(self.unbuffered())
def add_wrapper(self, cmd_line):
self.wrappers.append(cmd_line)
def _wrap(self, cmd_line):
for wrapper in self.wrappers:
cmd_line = cmd_line.wrap(wrapper, cmd_line)
return cmd_line
def run(self, cmd_line):
cmd_line = self._wrap(cmd_line)
cmd_line.log_process_start()
result = subprocess.run(cmd_line.argv, **_COMMON_ARGS)
return result.returncode, result.stdout
@contextmanager
def run_async(self, cmd_line):
cmd_line = self._wrap(cmd_line)
with Process(cmd_line) as process, LoggingThread(process):
yield process
class CmdLineBuilder:
def __init__(self, runner, binary, *args):
self.runner = runner
self.binary = binary
self.args = list(args)
def _build(self, *args):
return CmdLine(self.binary, *self.args, *args)
def run(self, *args):
return self.runner.run(self._build(*args))
def run_async(self, *args):
return self.runner.run_async(self._build(*args))
|