waf/waflib/processor.py

59 lines
1.3 KiB
Python
Raw Normal View History

#! /usr/bin/env python
# encoding: utf-8
2016-02-26 20:11:58 +01:00
# Thomas Nagy, 2016 (ita)
import sys, traceback, base64
try:
import cPickle
except ImportError:
import pickle as cPickle
try:
import subprocess32 as subprocess
except ImportError:
import subprocess
try:
TimeoutExpired = subprocess.TimeoutExpired
except AttributeError:
class TimeoutExpired(object):
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 {}
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:
proc.kill()
out, err = proc.communicate(**cargs)
ret = proc.returncode
2016-02-26 20:11:58 +01:00
except (OSError, ValueError, 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