blob: 78814c06bc5ecbf6e655167346aa967304fc08b9 [file] [log] [blame]
Neels Hofmeyrdae3d3c2017-03-28 12:16:58 +02001# osmo_gsm_tester: process management
2#
3# Copyright (C) 2016-2017 by sysmocom - s.f.m.c. GmbH
4#
5# Author: Neels Hofmeyr <neels@hofmeyr.de>
6#
7# This program is free software: you can redistribute it and/or modify
8# it under the terms of the GNU Affero General Public License as
9# published by the Free Software Foundation, either version 3 of the
10# License, or (at your option) any later version.
11#
12# This program is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU Affero General Public License for more details.
16#
17# You should have received a copy of the GNU Affero General Public License
18# along with this program. If not, see <http://www.gnu.org/licenses/>.
19
Neels Hofmeyr3531a192017-03-28 14:30:28 +020020import os
21import time
22import subprocess
23import signal
24
Neels Hofmeyr5356d0a2017-04-10 03:45:30 +020025from . import log, test
Neels Hofmeyr3531a192017-03-28 14:30:28 +020026from .util import Dir
27
28class Process(log.Origin):
29
30 process_obj = None
31 outputs = None
32 result = None
33 killed = None
34
35 def __init__(self, name, run_dir, popen_args, **popen_kwargs):
36 self.name_str = name
37 self.set_name(name)
38 self.set_log_category(log.C_RUN)
39 self.run_dir = run_dir
40 self.popen_args = popen_args
41 self.popen_kwargs = popen_kwargs
42 self.outputs = {}
43 if not isinstance(self.run_dir, Dir):
44 self.run_dir = Dir(os.path.abspath(str(self.run_dir)))
45
46 def set_env(self, key, value):
47 env = self.popen_kwargs.get('env') or {}
48 env[key] = value
49 self.popen_kwargs['env'] = env
50
51 def make_output_log(self, name):
52 '''
53 create a non-existing log output file in run_dir to pipe stdout and
54 stderr from this process to.
55 '''
56 path = self.run_dir.new_child(name)
57 f = open(path, 'w')
58 self.dbg(path)
59 f.write('(launched: %s)\n' % time.strftime(log.LONG_DATEFMT))
60 f.flush()
61 self.outputs[name] = (path, f)
62 return f
63
64 def launch(self):
65 with self:
66
67 self.dbg('cd %r; %s %s' % (
68 os.path.abspath(str(self.run_dir)),
69 ' '.join(['%s=%r'%(k,v) for k,v in self.popen_kwargs.get('env', {}).items()]),
70 ' '.join(self.popen_args)))
71
72 self.process_obj = subprocess.Popen(
73 self.popen_args,
74 stdout=self.make_output_log('stdout'),
75 stderr=self.make_output_log('stderr'),
76 shell=False,
77 cwd=self.run_dir.path,
78 **self.popen_kwargs)
79 self.set_name(self.name_str, pid=self.process_obj.pid)
80 self.log('Launched')
81
82 def _poll_termination(self, time_to_wait_for_term=5):
83 wait_step = 0.001
84 waited_time = 0
85 while True:
86 # poll returns None if proc is still running
87 self.result = self.process_obj.poll()
88 if self.result is not None:
89 return True
90 waited_time += wait_step
91 # make wait_step approach 1.0
92 wait_step = (1. + 5. * wait_step) / 6.
93 if waited_time >= time_to_wait_for_term:
94 break
95 time.sleep(wait_step)
96 return False
97
98 def terminate(self):
99 if self.process_obj is None:
100 return
101 if self.result is not None:
102 return
103
104 while True:
105 # first try SIGINT to allow stdout+stderr flushing
106 self.log('Terminating (SIGINT)')
107 os.kill(self.process_obj.pid, signal.SIGINT)
108 self.killed = signal.SIGINT
109 if self._poll_termination():
110 break
111
112 # SIGTERM maybe?
113 self.log('Terminating (SIGTERM)')
114 self.process_obj.terminate()
115 self.killed = signal.SIGTERM
116 if self._poll_termination():
117 break
118
119 # out of patience
120 self.log('Terminating (SIGKILL)')
121 self.process_obj.kill()
122 self.killed = signal.SIGKILL
123 break;
124
125 self.process_obj.wait()
126 self.cleanup()
127
128 def cleanup(self):
129 self.close_output_logs()
130 if self.result == 0:
131 self.log('Terminated: ok', rc=self.result)
132 elif self.killed:
133 self.log('Terminated', rc=self.result)
134 else:
135 self.err('Terminated: ERROR', rc=self.result)
Neels Hofmeyr85eb3242017-04-09 22:01:16 +0200136 #self.log_stdout_tail()
137 self.log_stderr_tail()
138
139 def log_stdout_tail(self):
140 m = self.get_stdout_tail(prefix='| ')
141 if not m:
142 return
143 self.log('stdout:\n', m, '\n')
144
145 def log_stderr_tail(self):
146 m = self.get_stderr_tail(prefix='| ')
147 if not m:
148 return
149 self.log('stderr:\n', m, '\n')
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200150
151 def close_output_logs(self):
152 self.dbg('Cleanup')
153 for k, v in self.outputs.items():
154 path, f = v
155 if f:
156 f.flush()
157 f.close()
158 self.outputs[k] = (path, None)
159
160 def poll(self):
161 if self.process_obj is None:
162 return
163 if self.result is not None:
164 return
165 self.result = self.process_obj.poll()
166 if self.result is not None:
167 self.cleanup()
168
Neels Hofmeyr5356d0a2017-04-10 03:45:30 +0200169 def is_running(self, poll_first=True):
170 if poll_first:
171 self.poll()
Neels Hofmeyr85eb3242017-04-09 22:01:16 +0200172 return self.process_obj is not None and self.result is None
173
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200174 def get_output(self, which):
175 v = self.outputs.get(which)
176 if not v:
177 return None
178 path, f = v
179 with open(path, 'r') as f2:
180 return f2.read()
181
182 def get_output_tail(self, which, tail=10, prefix=''):
Neels Hofmeyr5356d0a2017-04-10 03:45:30 +0200183 out = self.get_output(which)
184 if not out:
185 return None
186 out = out.splitlines()
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200187 tail = min(len(out), tail)
Neels Hofmeyr5356d0a2017-04-10 03:45:30 +0200188 return prefix + ('\n' + prefix).join(out[-tail:])
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200189
190 def get_stdout(self):
191 return self.get_output('stdout')
192
193 def get_stderr(self):
194 return self.get_output('stderr')
195
196 def get_stdout_tail(self, tail=10, prefix=''):
197 return self.get_output_tail('stdout', tail, prefix)
198
199 def get_stderr_tail(self, tail=10, prefix=''):
200 return self.get_output_tail('stderr', tail, prefix)
201
Neels Hofmeyr5356d0a2017-04-10 03:45:30 +0200202 def terminated(self, poll_first=True):
203 if poll_first:
204 self.poll()
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200205 return self.result is not None
206
Neels Hofmeyr5356d0a2017-04-10 03:45:30 +0200207 def wait(self, timeout=300):
208 test.wait(self.terminated, timeout=timeout)
Neels Hofmeyrdae3d3c2017-03-28 12:16:58 +0200209
210
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200211class RemoteProcess(Process):
212
Neels Hofmeyr5356d0a2017-04-10 03:45:30 +0200213 def __init__(self, name, run_dir, remote_host, remote_cwd, popen_args, **popen_kwargs):
214 super().__init__(name, run_dir, popen_args, **popen_kwargs)
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200215 self.remote_host = remote_host
216 self.remote_cwd = remote_cwd
217
218 # hacky: instead of just prepending ssh, i.e. piping stdout and stderr
219 # over the ssh link, we should probably run on the remote side,
220 # monitoring the process remotely.
Neels Hofmeyr5356d0a2017-04-10 03:45:30 +0200221 if self.remote_cwd:
222 cd = 'cd "%s"; ' % self.remote_cwd
223 else:
224 cd = ''
225 self.popen_args = ['ssh', self.remote_host,
226 '%s%s' % (cd,
227 ' '.join(self.popen_args))]
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200228 self.dbg(self.popen_args, dir=self.run_dir, conf=self.popen_kwargs)
Neels Hofmeyrdae3d3c2017-03-28 12:16:58 +0200229
230# vim: expandtab tabstop=4 shiftwidth=4