mirror of
https://gerrit.googlesource.com/git-repo
synced 2024-12-21 07:16:21 +00:00
Add --jobs option to forall subcommand
Enable '--jobs' ('-j') option in the forall subcommand. For -jn where n > 1, the '-p' option can no longer guarantee the continuity of console output between the project header and the output from the worker process. SIG_INT is sent to all worker processes upon keyboard interrupt (Ctrl+C). Bug: Issue 105 Change-Id: If09afa2ed639d481ede64f28b641dc80d0b89a5c
This commit is contained in:
parent
80b87fe6c1
commit
a769498568
@ -14,7 +14,9 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
|
import errno
|
||||||
import fcntl
|
import fcntl
|
||||||
|
import multiprocessing
|
||||||
import re
|
import re
|
||||||
import os
|
import os
|
||||||
import select
|
import select
|
||||||
@ -31,6 +33,7 @@ _CAN_COLOR = [
|
|||||||
'log',
|
'log',
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
class ForallColoring(Coloring):
|
class ForallColoring(Coloring):
|
||||||
def __init__(self, config):
|
def __init__(self, config):
|
||||||
Coloring.__init__(self, config, 'forall')
|
Coloring.__init__(self, config, 'forall')
|
||||||
@ -132,9 +135,31 @@ without iterating through the remaining projects.
|
|||||||
g.add_option('-v', '--verbose',
|
g.add_option('-v', '--verbose',
|
||||||
dest='verbose', action='store_true',
|
dest='verbose', action='store_true',
|
||||||
help='Show command error messages')
|
help='Show command error messages')
|
||||||
|
g.add_option('-j', '--jobs',
|
||||||
|
dest='jobs', action='store', type='int', default=1,
|
||||||
|
help='number of commands to execute simultaneously')
|
||||||
|
|
||||||
def WantPager(self, opt):
|
def WantPager(self, opt):
|
||||||
return opt.project_header
|
return opt.project_header and opt.jobs == 1
|
||||||
|
|
||||||
|
def _SerializeProject(self, project):
|
||||||
|
""" Serialize a project._GitGetByExec instance.
|
||||||
|
|
||||||
|
project._GitGetByExec is not pickle-able. Instead of trying to pass it
|
||||||
|
around between processes, make a dict ourselves containing only the
|
||||||
|
attributes that we need.
|
||||||
|
|
||||||
|
"""
|
||||||
|
return {
|
||||||
|
'name': project.name,
|
||||||
|
'relpath': project.relpath,
|
||||||
|
'remote_name': project.remote.name,
|
||||||
|
'lrev': project.GetRevisionId(),
|
||||||
|
'rrev': project.revisionExpr,
|
||||||
|
'annotations': dict((a.name, a.value) for a in project.annotations),
|
||||||
|
'gitdir': project.gitdir,
|
||||||
|
'worktree': project.worktree,
|
||||||
|
}
|
||||||
|
|
||||||
def Execute(self, opt, args):
|
def Execute(self, opt, args):
|
||||||
if not opt.command:
|
if not opt.command:
|
||||||
@ -173,11 +198,7 @@ without iterating through the remaining projects.
|
|||||||
# pylint: enable=W0631
|
# pylint: enable=W0631
|
||||||
|
|
||||||
mirror = self.manifest.IsMirror
|
mirror = self.manifest.IsMirror
|
||||||
out = ForallColoring(self.manifest.manifestProject.config)
|
|
||||||
out.redirect(sys.stdout)
|
|
||||||
|
|
||||||
rc = 0
|
rc = 0
|
||||||
first = True
|
|
||||||
|
|
||||||
if not opt.regex:
|
if not opt.regex:
|
||||||
projects = self.GetProjects(args)
|
projects = self.GetProjects(args)
|
||||||
@ -186,33 +207,84 @@ without iterating through the remaining projects.
|
|||||||
|
|
||||||
os.environ['REPO_COUNT'] = str(len(projects))
|
os.environ['REPO_COUNT'] = str(len(projects))
|
||||||
|
|
||||||
for (cnt, project) in enumerate(projects):
|
pool = multiprocessing.Pool(opt.jobs)
|
||||||
|
try:
|
||||||
|
config = self.manifest.manifestProject.config
|
||||||
|
results_it = pool.imap(
|
||||||
|
DoWorkWrapper,
|
||||||
|
[[mirror, opt, cmd, shell, cnt, config, self._SerializeProject(p)]
|
||||||
|
for cnt, p in enumerate(projects)]
|
||||||
|
)
|
||||||
|
pool.close()
|
||||||
|
for r in results_it:
|
||||||
|
rc = rc or r
|
||||||
|
if r != 0 and opt.abort_on_errors:
|
||||||
|
raise Exception('Aborting due to previous error')
|
||||||
|
except (KeyboardInterrupt, WorkerKeyboardInterrupt):
|
||||||
|
# Catch KeyboardInterrupt raised inside and outside of workers
|
||||||
|
print('Interrupted - terminating the pool')
|
||||||
|
pool.terminate()
|
||||||
|
rc = rc or errno.EINTR
|
||||||
|
except Exception as e:
|
||||||
|
# Catch any other exceptions raised
|
||||||
|
print('Got an error, terminating the pool: %r' % e,
|
||||||
|
file=sys.stderr)
|
||||||
|
pool.terminate()
|
||||||
|
rc = rc or getattr(e, 'errno', 1)
|
||||||
|
finally:
|
||||||
|
pool.join()
|
||||||
|
if rc != 0:
|
||||||
|
sys.exit(rc)
|
||||||
|
|
||||||
|
|
||||||
|
class WorkerKeyboardInterrupt(Exception):
|
||||||
|
""" Keyboard interrupt exception for worker processes. """
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
def DoWorkWrapper(args):
|
||||||
|
""" A wrapper around the DoWork() method.
|
||||||
|
|
||||||
|
Catch the KeyboardInterrupt exceptions here and re-raise them as a different,
|
||||||
|
``Exception``-based exception to stop it flooding the console with stacktraces
|
||||||
|
and making the parent hang indefinitely.
|
||||||
|
|
||||||
|
"""
|
||||||
|
project = args.pop()
|
||||||
|
try:
|
||||||
|
return DoWork(project, *args)
|
||||||
|
except KeyboardInterrupt:
|
||||||
|
print('%s: Worker interrupted' % project['name'])
|
||||||
|
raise WorkerKeyboardInterrupt()
|
||||||
|
|
||||||
|
|
||||||
|
def DoWork(project, mirror, opt, cmd, shell, cnt, config):
|
||||||
env = os.environ.copy()
|
env = os.environ.copy()
|
||||||
def setenv(name, val):
|
def setenv(name, val):
|
||||||
if val is None:
|
if val is None:
|
||||||
val = ''
|
val = ''
|
||||||
env[name] = val.encode()
|
env[name] = val.encode()
|
||||||
|
|
||||||
setenv('REPO_PROJECT', project.name)
|
setenv('REPO_PROJECT', project['name'])
|
||||||
setenv('REPO_PATH', project.relpath)
|
setenv('REPO_PATH', project['relpath'])
|
||||||
setenv('REPO_REMOTE', project.remote.name)
|
setenv('REPO_REMOTE', project['remote_name'])
|
||||||
setenv('REPO_LREV', project.GetRevisionId())
|
setenv('REPO_LREV', project['lrev'])
|
||||||
setenv('REPO_RREV', project.revisionExpr)
|
setenv('REPO_RREV', project['rrev'])
|
||||||
setenv('REPO_I', str(cnt + 1))
|
setenv('REPO_I', str(cnt + 1))
|
||||||
for a in project.annotations:
|
for name in project['annotations']:
|
||||||
setenv("REPO__%s" % (a.name), a.value)
|
setenv("REPO__%s" % (name), project['annotations'][name])
|
||||||
|
|
||||||
if mirror:
|
if mirror:
|
||||||
setenv('GIT_DIR', project.gitdir)
|
setenv('GIT_DIR', project['gitdir'])
|
||||||
cwd = project.gitdir
|
cwd = project['gitdir']
|
||||||
else:
|
else:
|
||||||
cwd = project.worktree
|
cwd = project['worktree']
|
||||||
|
|
||||||
if not os.path.exists(cwd):
|
if not os.path.exists(cwd):
|
||||||
if (opt.project_header and opt.verbose) \
|
if (opt.project_header and opt.verbose) \
|
||||||
or not opt.project_header:
|
or not opt.project_header:
|
||||||
print('skipping %s/' % project.relpath, file=sys.stderr)
|
print('skipping %s/' % project['relpath'], file=sys.stderr)
|
||||||
continue
|
return
|
||||||
|
|
||||||
if opt.project_header:
|
if opt.project_header:
|
||||||
stdin = subprocess.PIPE
|
stdin = subprocess.PIPE
|
||||||
@ -232,6 +304,8 @@ without iterating through the remaining projects.
|
|||||||
stderr=stderr)
|
stderr=stderr)
|
||||||
|
|
||||||
if opt.project_header:
|
if opt.project_header:
|
||||||
|
out = ForallColoring(config)
|
||||||
|
out.redirect(sys.stdout)
|
||||||
class sfd(object):
|
class sfd(object):
|
||||||
def __init__(self, fd, dest):
|
def __init__(self, fd, dest):
|
||||||
self.fd = fd
|
self.fd = fd
|
||||||
@ -264,16 +338,14 @@ without iterating through the remaining projects.
|
|||||||
errbuf += buf
|
errbuf += buf
|
||||||
continue
|
continue
|
||||||
|
|
||||||
if empty:
|
if empty and out:
|
||||||
if first:
|
if not cnt == 0:
|
||||||
first = False
|
|
||||||
else:
|
|
||||||
out.nl()
|
out.nl()
|
||||||
|
|
||||||
if mirror:
|
if mirror:
|
||||||
project_header_path = project.name
|
project_header_path = project['name']
|
||||||
else:
|
else:
|
||||||
project_header_path = project.relpath
|
project_header_path = project['relpath']
|
||||||
out.project('project %s/', project_header_path)
|
out.project('project %s/', project_header_path)
|
||||||
out.nl()
|
out.nl()
|
||||||
out.flush()
|
out.flush()
|
||||||
@ -287,12 +359,4 @@ without iterating through the remaining projects.
|
|||||||
s.dest.flush()
|
s.dest.flush()
|
||||||
|
|
||||||
r = p.wait()
|
r = p.wait()
|
||||||
if r != 0:
|
return r
|
||||||
if r != rc:
|
|
||||||
rc = r
|
|
||||||
if opt.abort_on_errors:
|
|
||||||
print("error: %s: Aborting due to previous error" % project.relpath,
|
|
||||||
file=sys.stderr)
|
|
||||||
sys.exit(r)
|
|
||||||
if rc != 0:
|
|
||||||
sys.exit(rc)
|
|
||||||
|
Loading…
Reference in New Issue
Block a user