v8/tools/testrunner/testproc/execution.py
Michal Majewski 463dbab3ec [test] Implemented status file filter as a processor
Bug: v8:6917
Change-Id: I4b10091a40372e1aa614ac26452e20ed481ab686
Cq-Include-Trybots: luci.v8.try:v8_linux64_fyi_rel_ng
Reviewed-on: https://chromium-review.googlesource.com/856498
Reviewed-by: Michael Achenbach <machenbach@chromium.org>
Reviewed-by: Sergiy Byelozyorov <sergiyb@chromium.org>
Commit-Queue: Michał Majewski <majeski@google.com>
Cr-Commit-Position: refs/heads/master@{#50482}
2018-01-10 16:08:46 +00:00

89 lines
2.3 KiB
Python

# Copyright 2018 the V8 project authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import collections
import traceback
from . import base
from ..local import pool
# Global function for multiprocessing, because pickling a static method doesn't
# work on Windows.
def run_job(job):
return job.run()
JobResult = collections.namedtuple('JobResult', ['id', 'result'])
class Job(object):
def __init__(self, test_id, cmd, outproc):
self.test_id = test_id
self.cmd = cmd
self.outproc = outproc
def run(self):
output = self.cmd.execute()
return JobResult(self.test_id, self.outproc.process(output))
class ExecutionProc(base.TestProc):
"""Last processor in the chain. Instead of passing tests further it creates
commands and output processors, executes them in multiple worker processes and
sends results to the previous processor.
"""
def __init__(self, jobs, context):
super(ExecutionProc, self).__init__()
self._pool = pool.Pool(jobs)
self._context = context
self._tests = {}
def connect_to(self, next_proc):
assert False, 'ExecutionProc cannot be connected to anything'
def start(self):
try:
it = self._pool.imap_unordered(
fn=run_job,
gen=[],
process_context_fn=None,
process_context_args=None,
)
for pool_result in it:
if pool_result.heartbeat:
continue
job_result = pool_result.value
test_id, result = job_result
test = self._tests[test_id]
del self._tests[test_id]
self._send_result(test, result)
except KeyboardInterrupt:
raise
except:
traceback.print_exc()
raise
finally:
self._pool.terminate()
def next_test(self, test):
test_id = test.procid
self._tests[test_id] = test
# TODO(majeski): Don't modify test. It's currently used in the progress
# indicator.
test.cmd = test.get_command(self._context)
# TODO(majeski): Needs factory for outproc as in local/execution.py
outproc = test.output_proc
self._pool.add([Job(test_id, test.cmd, outproc)])
return True
def result_for(self, test, result, is_last):
assert False, 'ExecutionProc cannot receive results'