waf/waflib/processor.py

69 lines
1.6 KiB
Python
Raw Normal View History

#! /usr/bin/env python
# encoding: utf-8
2018-01-01 20:53:49 +01:00
# Thomas Nagy, 2016-2018 (ita)
import os, sys, traceback, base64, signal
try:
import cPickle
except ImportError:
import pickle as cPickle
try:
import subprocess32 as subprocess
except ImportError:
import subprocess
try:
TimeoutExpired = subprocess.TimeoutExpired
except AttributeError:
2017-04-22 22:12:11 +02:00
class TimeoutExpired(Exception):
pass
2016-02-26 20:11:58 +01:00
def run():
2016-02-26 14:25:54 +01:00
txt = sys.stdin.readline().strip()
if not txt:
# parent process probably ended
2016-02-26 20:11:58 +01:00
sys.exit(1)
2016-02-26 14:25:54 +01:00
[cmd, kwargs, cargs] = cPickle.loads(base64.b64decode(txt))
cargs = cargs or {}
if not 'close_fds' in kwargs:
# workers have no fds
kwargs['close_fds'] = False
ret = 1
2016-02-26 20:11:58 +01:00
out, err, ex, trace = (None, None, None, None)
try:
proc = subprocess.Popen(cmd, **kwargs)
try:
out, err = proc.communicate(**cargs)
except TimeoutExpired:
2016-09-03 20:22:43 +02:00
if kwargs.get('start_new_session') and hasattr(os, 'killpg'):
os.killpg(proc.pid, signal.SIGKILL)
2016-09-03 20:22:43 +02:00
else:
proc.kill()
out, err = proc.communicate()
2016-09-03 22:24:29 +02:00
exc = TimeoutExpired(proc.args, timeout=cargs['timeout'], output=out)
exc.stderr = err
raise exc
ret = proc.returncode
except Exception as e:
exc_type, exc_value, tb = sys.exc_info()
exc_lines = traceback.format_exception(exc_type, exc_value, tb)
2016-02-26 20:11:58 +01:00
trace = str(cmd) + '\n' + ''.join(exc_lines)
ex = e.__class__.__name__
# it is just text so maybe we do not need to pickle()
2016-02-26 20:11:58 +01:00
tmp = [ret, out, err, ex, trace]
2016-02-26 14:25:54 +01:00
obj = base64.b64encode(cPickle.dumps(tmp))
sys.stdout.write(obj.decode())
sys.stdout.write('\n')
sys.stdout.flush()
2016-02-26 20:11:58 +01:00
while 1:
try:
run()
except KeyboardInterrupt:
break