2008-10-21 14:00:00 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2008 The Android Open Source Project
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2009-04-18 20:49:13 +00:00
|
|
|
import fcntl
|
2008-10-21 14:00:00 +00:00
|
|
|
import re
|
|
|
|
import os
|
2009-04-18 20:49:13 +00:00
|
|
|
import select
|
2008-10-21 14:00:00 +00:00
|
|
|
import sys
|
|
|
|
import subprocess
|
2009-04-18 20:49:13 +00:00
|
|
|
|
|
|
|
from color import Coloring
|
2009-03-04 01:51:01 +00:00
|
|
|
from command import Command, MirrorSafeCommand
|
2008-10-21 14:00:00 +00:00
|
|
|
|
2009-04-18 20:49:13 +00:00
|
|
|
_CAN_COLOR = [
|
|
|
|
'branch',
|
|
|
|
'diff',
|
|
|
|
'grep',
|
|
|
|
'log',
|
|
|
|
]
|
|
|
|
|
|
|
|
class ForallColoring(Coloring):
|
|
|
|
def __init__(self, config):
|
|
|
|
Coloring.__init__(self, config, 'forall')
|
|
|
|
self.project = self.printer('project', attr='bold')
|
|
|
|
|
|
|
|
|
2009-03-04 01:51:01 +00:00
|
|
|
class Forall(Command, MirrorSafeCommand):
|
2008-10-21 14:00:00 +00:00
|
|
|
common = False
|
|
|
|
helpSummary = "Run a shell command in each project"
|
|
|
|
helpUsage = """
|
|
|
|
%prog [<project>...] -c <command> [<arg>...]
|
|
|
|
"""
|
|
|
|
helpDescription = """
|
|
|
|
Executes the same shell command in each project.
|
|
|
|
|
2009-04-18 20:49:13 +00:00
|
|
|
Output Formatting
|
|
|
|
-----------------
|
|
|
|
|
|
|
|
The -p option causes '%prog' to bind pipes to the command's stdin,
|
|
|
|
stdout and stderr streams, and pipe all output into a continuous
|
|
|
|
stream that is displayed in a single pager session. Project headings
|
|
|
|
are inserted before the output of each command is displayed. If the
|
|
|
|
command produces no output in a project, no heading is displayed.
|
|
|
|
|
|
|
|
The formatting convention used by -p is very suitable for some
|
|
|
|
types of searching, e.g. `repo forall -p -c git log -SFoo` will
|
|
|
|
print all commits that add or remove references to Foo.
|
|
|
|
|
|
|
|
The -v option causes '%prog' to display stderr messages if a
|
|
|
|
command produces output only on stderr. Normally the -p option
|
|
|
|
causes command output to be suppressed until the command produces
|
|
|
|
at least one byte of output on stdout.
|
|
|
|
|
2008-10-21 14:00:00 +00:00
|
|
|
Environment
|
|
|
|
-----------
|
2009-04-13 19:11:59 +00:00
|
|
|
|
2009-03-04 01:51:01 +00:00
|
|
|
pwd is the project's working directory. If the current client is
|
|
|
|
a mirror client, then pwd is the Git repository.
|
2008-10-21 14:00:00 +00:00
|
|
|
|
|
|
|
REPO_PROJECT is set to the unique name of the project.
|
|
|
|
|
2009-01-22 00:05:15 +00:00
|
|
|
REPO_PATH is the path relative the the root of the client.
|
|
|
|
|
|
|
|
REPO_REMOTE is the name of the remote system from the manifest.
|
|
|
|
|
|
|
|
REPO_LREV is the name of the revision from the manifest, translated
|
|
|
|
to a local tracking branch. If you need to pass the manifest
|
|
|
|
revision to a locally executed git command, use REPO_LREV.
|
|
|
|
|
|
|
|
REPO_RREV is the name of the revision from the manifest, exactly
|
|
|
|
as written in the manifest.
|
|
|
|
|
2012-04-12 20:04:13 +00:00
|
|
|
REPO__* are any extra environment variables, specified by the
|
|
|
|
"annotation" element under any project element. This can be useful
|
|
|
|
for differentiating trees based on user-specific criteria, or simply
|
|
|
|
annotating tree details.
|
|
|
|
|
2008-10-21 14:00:00 +00:00
|
|
|
shell positional arguments ($1, $2, .., $#) are set to any arguments
|
|
|
|
following <command>.
|
|
|
|
|
2009-04-18 20:49:13 +00:00
|
|
|
Unless -p is used, stdin, stdout, stderr are inherited from the
|
|
|
|
terminal and are not redirected.
|
2008-10-21 14:00:00 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
def _Options(self, p):
|
|
|
|
def cmd(option, opt_str, value, parser):
|
|
|
|
setattr(parser.values, option.dest, list(parser.rargs))
|
|
|
|
while parser.rargs:
|
|
|
|
del parser.rargs[0]
|
|
|
|
p.add_option('-c', '--command',
|
|
|
|
help='Command (and arguments) to execute',
|
|
|
|
dest='command',
|
|
|
|
action='callback',
|
|
|
|
callback=cmd)
|
|
|
|
|
2009-04-18 20:49:13 +00:00
|
|
|
g = p.add_option_group('Output')
|
|
|
|
g.add_option('-p',
|
|
|
|
dest='project_header', action='store_true',
|
|
|
|
help='Show project headers before output')
|
|
|
|
g.add_option('-v', '--verbose',
|
|
|
|
dest='verbose', action='store_true',
|
|
|
|
help='Show command error messages')
|
|
|
|
|
|
|
|
def WantPager(self, opt):
|
|
|
|
return opt.project_header
|
|
|
|
|
2008-10-21 14:00:00 +00:00
|
|
|
def Execute(self, opt, args):
|
|
|
|
if not opt.command:
|
|
|
|
self.Usage()
|
|
|
|
|
|
|
|
cmd = [opt.command[0]]
|
|
|
|
|
|
|
|
shell = True
|
|
|
|
if re.compile(r'^[a-z0-9A-Z_/\.-]+$').match(cmd[0]):
|
|
|
|
shell = False
|
|
|
|
|
|
|
|
if shell:
|
|
|
|
cmd.append(cmd[0])
|
|
|
|
cmd.extend(opt.command[1:])
|
|
|
|
|
2009-04-18 20:49:13 +00:00
|
|
|
if opt.project_header \
|
|
|
|
and not shell \
|
|
|
|
and cmd[0] == 'git':
|
|
|
|
# If this is a direct git command that can enable colorized
|
|
|
|
# output and the user prefers coloring, add --color into the
|
|
|
|
# command line because we are going to wrap the command into
|
|
|
|
# a pipe and git won't know coloring should activate.
|
|
|
|
#
|
|
|
|
for cn in cmd[1:]:
|
|
|
|
if not cn.startswith('-'):
|
|
|
|
break
|
|
|
|
if cn in _CAN_COLOR:
|
|
|
|
class ColorCmd(Coloring):
|
|
|
|
def __init__(self, config, cmd):
|
|
|
|
Coloring.__init__(self, config, cmd)
|
|
|
|
if ColorCmd(self.manifest.manifestProject.config, cn).is_on:
|
|
|
|
cmd.insert(cmd.index(cn) + 1, '--color')
|
|
|
|
|
2009-03-04 01:51:01 +00:00
|
|
|
mirror = self.manifest.IsMirror
|
2009-04-18 20:49:13 +00:00
|
|
|
out = ForallColoring(self.manifest.manifestProject.config)
|
2009-04-21 17:00:16 +00:00
|
|
|
out.redirect(sys.stdout)
|
2009-04-18 20:49:13 +00:00
|
|
|
|
2008-10-21 14:00:00 +00:00
|
|
|
rc = 0
|
2009-04-18 20:49:13 +00:00
|
|
|
first = True
|
|
|
|
|
2008-10-21 14:00:00 +00:00
|
|
|
for project in self.GetProjects(args):
|
2010-12-07 19:41:05 +00:00
|
|
|
env = os.environ.copy()
|
2009-03-17 15:03:04 +00:00
|
|
|
def setenv(name, val):
|
|
|
|
if val is None:
|
|
|
|
val = ''
|
2010-12-07 19:41:05 +00:00
|
|
|
env[name] = val.encode()
|
2009-03-17 15:03:04 +00:00
|
|
|
|
|
|
|
setenv('REPO_PROJECT', project.name)
|
|
|
|
setenv('REPO_PATH', project.relpath)
|
|
|
|
setenv('REPO_REMOTE', project.remote.name)
|
2009-05-30 01:38:17 +00:00
|
|
|
setenv('REPO_LREV', project.GetRevisionId())
|
|
|
|
setenv('REPO_RREV', project.revisionExpr)
|
2012-04-12 20:04:13 +00:00
|
|
|
for a in project.annotations:
|
|
|
|
setenv("REPO__%s" % (a.name), a.value)
|
2008-10-21 14:00:00 +00:00
|
|
|
|
2009-03-04 01:51:01 +00:00
|
|
|
if mirror:
|
2009-03-17 15:03:04 +00:00
|
|
|
setenv('GIT_DIR', project.gitdir)
|
2009-03-04 01:51:01 +00:00
|
|
|
cwd = project.gitdir
|
|
|
|
else:
|
|
|
|
cwd = project.worktree
|
|
|
|
|
2009-08-23 01:50:45 +00:00
|
|
|
if not os.path.exists(cwd):
|
|
|
|
if (opt.project_header and opt.verbose) \
|
|
|
|
or not opt.project_header:
|
|
|
|
print >>sys.stderr, 'skipping %s/' % project.relpath
|
|
|
|
continue
|
|
|
|
|
2009-04-18 20:49:13 +00:00
|
|
|
if opt.project_header:
|
|
|
|
stdin = subprocess.PIPE
|
|
|
|
stdout = subprocess.PIPE
|
|
|
|
stderr = subprocess.PIPE
|
|
|
|
else:
|
|
|
|
stdin = None
|
|
|
|
stdout = None
|
|
|
|
stderr = None
|
|
|
|
|
2008-10-21 14:00:00 +00:00
|
|
|
p = subprocess.Popen(cmd,
|
2009-03-04 01:51:01 +00:00
|
|
|
cwd = cwd,
|
2008-10-21 14:00:00 +00:00
|
|
|
shell = shell,
|
2009-04-18 20:49:13 +00:00
|
|
|
env = env,
|
|
|
|
stdin = stdin,
|
|
|
|
stdout = stdout,
|
|
|
|
stderr = stderr)
|
|
|
|
|
|
|
|
if opt.project_header:
|
|
|
|
class sfd(object):
|
|
|
|
def __init__(self, fd, dest):
|
|
|
|
self.fd = fd
|
|
|
|
self.dest = dest
|
|
|
|
def fileno(self):
|
|
|
|
return self.fd.fileno()
|
|
|
|
|
|
|
|
empty = True
|
|
|
|
didout = False
|
|
|
|
errbuf = ''
|
|
|
|
|
|
|
|
p.stdin.close()
|
|
|
|
s_in = [sfd(p.stdout, sys.stdout),
|
|
|
|
sfd(p.stderr, sys.stderr)]
|
|
|
|
|
|
|
|
for s in s_in:
|
|
|
|
flags = fcntl.fcntl(s.fd, fcntl.F_GETFL)
|
|
|
|
fcntl.fcntl(s.fd, fcntl.F_SETFL, flags | os.O_NONBLOCK)
|
|
|
|
|
|
|
|
while s_in:
|
|
|
|
in_ready, out_ready, err_ready = select.select(s_in, [], [])
|
|
|
|
for s in in_ready:
|
|
|
|
buf = s.fd.read(4096)
|
|
|
|
if not buf:
|
|
|
|
s.fd.close()
|
|
|
|
s_in.remove(s)
|
|
|
|
continue
|
|
|
|
|
|
|
|
if not opt.verbose:
|
|
|
|
if s.fd == p.stdout:
|
|
|
|
didout = True
|
|
|
|
else:
|
|
|
|
errbuf += buf
|
|
|
|
continue
|
|
|
|
|
|
|
|
if empty:
|
|
|
|
if first:
|
|
|
|
first = False
|
|
|
|
else:
|
|
|
|
out.nl()
|
|
|
|
out.project('project %s/', project.relpath)
|
|
|
|
out.nl()
|
|
|
|
out.flush()
|
|
|
|
if errbuf:
|
|
|
|
sys.stderr.write(errbuf)
|
|
|
|
sys.stderr.flush()
|
|
|
|
errbuf = ''
|
|
|
|
empty = False
|
|
|
|
|
|
|
|
s.dest.write(buf)
|
|
|
|
s.dest.flush()
|
|
|
|
|
2008-10-21 14:00:00 +00:00
|
|
|
r = p.wait()
|
|
|
|
if r != 0 and r != rc:
|
|
|
|
rc = r
|
|
|
|
if rc != 0:
|
|
|
|
sys.exit(rc)
|