The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1 | # |
| 2 | # Copyright (C) 2008 The Android Open Source Project |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | |
Shawn O. Pearce | db45da1 | 2009-04-18 13:49:13 -0700 | [diff] [blame] | 16 | import fcntl |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 17 | import re |
| 18 | import os |
Shawn O. Pearce | db45da1 | 2009-04-18 13:49:13 -0700 | [diff] [blame] | 19 | import select |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 20 | import sys |
| 21 | import subprocess |
Shawn O. Pearce | db45da1 | 2009-04-18 13:49:13 -0700 | [diff] [blame] | 22 | |
| 23 | from color import Coloring |
Shawn O. Pearce | 4446946 | 2009-03-03 17:51:01 -0800 | [diff] [blame] | 24 | from command import Command, MirrorSafeCommand |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 25 | |
Shawn O. Pearce | db45da1 | 2009-04-18 13:49:13 -0700 | [diff] [blame] | 26 | _CAN_COLOR = [ |
| 27 | 'branch', |
| 28 | 'diff', |
| 29 | 'grep', |
| 30 | 'log', |
| 31 | ] |
| 32 | |
| 33 | class ForallColoring(Coloring): |
| 34 | def __init__(self, config): |
| 35 | Coloring.__init__(self, config, 'forall') |
| 36 | self.project = self.printer('project', attr='bold') |
| 37 | |
| 38 | |
Shawn O. Pearce | 4446946 | 2009-03-03 17:51:01 -0800 | [diff] [blame] | 39 | class Forall(Command, MirrorSafeCommand): |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 40 | common = False |
| 41 | helpSummary = "Run a shell command in each project" |
| 42 | helpUsage = """ |
| 43 | %prog [<project>...] -c <command> [<arg>...] |
| 44 | """ |
| 45 | helpDescription = """ |
| 46 | Executes the same shell command in each project. |
| 47 | |
Shawn O. Pearce | db45da1 | 2009-04-18 13:49:13 -0700 | [diff] [blame] | 48 | Output Formatting |
| 49 | ----------------- |
| 50 | |
| 51 | The -p option causes '%prog' to bind pipes to the command's stdin, |
| 52 | stdout and stderr streams, and pipe all output into a continuous |
| 53 | stream that is displayed in a single pager session. Project headings |
| 54 | are inserted before the output of each command is displayed. If the |
| 55 | command produces no output in a project, no heading is displayed. |
| 56 | |
| 57 | The formatting convention used by -p is very suitable for some |
| 58 | types of searching, e.g. `repo forall -p -c git log -SFoo` will |
| 59 | print all commits that add or remove references to Foo. |
| 60 | |
| 61 | The -v option causes '%prog' to display stderr messages if a |
| 62 | command produces output only on stderr. Normally the -p option |
| 63 | causes command output to be suppressed until the command produces |
| 64 | at least one byte of output on stdout. |
| 65 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 66 | Environment |
| 67 | ----------- |
Shawn O. Pearce | ff84fea | 2009-04-13 12:11:59 -0700 | [diff] [blame] | 68 | |
Shawn O. Pearce | 4446946 | 2009-03-03 17:51:01 -0800 | [diff] [blame] | 69 | pwd is the project's working directory. If the current client is |
| 70 | a mirror client, then pwd is the Git repository. |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 71 | |
| 72 | REPO_PROJECT is set to the unique name of the project. |
| 73 | |
Jeff Bailey | be0e8ac | 2009-01-21 19:05:15 -0500 | [diff] [blame] | 74 | REPO_PATH is the path relative the the root of the client. |
| 75 | |
| 76 | REPO_REMOTE is the name of the remote system from the manifest. |
| 77 | |
| 78 | REPO_LREV is the name of the revision from the manifest, translated |
| 79 | to a local tracking branch. If you need to pass the manifest |
| 80 | revision to a locally executed git command, use REPO_LREV. |
| 81 | |
| 82 | REPO_RREV is the name of the revision from the manifest, exactly |
| 83 | as written in the manifest. |
| 84 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 85 | shell positional arguments ($1, $2, .., $#) are set to any arguments |
| 86 | following <command>. |
| 87 | |
Shawn O. Pearce | db45da1 | 2009-04-18 13:49:13 -0700 | [diff] [blame] | 88 | Unless -p is used, stdin, stdout, stderr are inherited from the |
| 89 | terminal and are not redirected. |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 90 | """ |
| 91 | |
| 92 | def _Options(self, p): |
| 93 | def cmd(option, opt_str, value, parser): |
| 94 | setattr(parser.values, option.dest, list(parser.rargs)) |
| 95 | while parser.rargs: |
| 96 | del parser.rargs[0] |
| 97 | p.add_option('-c', '--command', |
| 98 | help='Command (and arguments) to execute', |
| 99 | dest='command', |
| 100 | action='callback', |
| 101 | callback=cmd) |
| 102 | |
Shawn O. Pearce | db45da1 | 2009-04-18 13:49:13 -0700 | [diff] [blame] | 103 | g = p.add_option_group('Output') |
| 104 | g.add_option('-p', |
| 105 | dest='project_header', action='store_true', |
| 106 | help='Show project headers before output') |
| 107 | g.add_option('-v', '--verbose', |
| 108 | dest='verbose', action='store_true', |
| 109 | help='Show command error messages') |
| 110 | |
| 111 | def WantPager(self, opt): |
| 112 | return opt.project_header |
| 113 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 114 | def Execute(self, opt, args): |
| 115 | if not opt.command: |
| 116 | self.Usage() |
| 117 | |
| 118 | cmd = [opt.command[0]] |
| 119 | |
| 120 | shell = True |
| 121 | if re.compile(r'^[a-z0-9A-Z_/\.-]+$').match(cmd[0]): |
| 122 | shell = False |
| 123 | |
| 124 | if shell: |
| 125 | cmd.append(cmd[0]) |
| 126 | cmd.extend(opt.command[1:]) |
| 127 | |
Shawn O. Pearce | db45da1 | 2009-04-18 13:49:13 -0700 | [diff] [blame] | 128 | if opt.project_header \ |
| 129 | and not shell \ |
| 130 | and cmd[0] == 'git': |
| 131 | # If this is a direct git command that can enable colorized |
| 132 | # output and the user prefers coloring, add --color into the |
| 133 | # command line because we are going to wrap the command into |
| 134 | # a pipe and git won't know coloring should activate. |
| 135 | # |
| 136 | for cn in cmd[1:]: |
| 137 | if not cn.startswith('-'): |
| 138 | break |
| 139 | if cn in _CAN_COLOR: |
| 140 | class ColorCmd(Coloring): |
| 141 | def __init__(self, config, cmd): |
| 142 | Coloring.__init__(self, config, cmd) |
| 143 | if ColorCmd(self.manifest.manifestProject.config, cn).is_on: |
| 144 | cmd.insert(cmd.index(cn) + 1, '--color') |
| 145 | |
Shawn O. Pearce | 4446946 | 2009-03-03 17:51:01 -0800 | [diff] [blame] | 146 | mirror = self.manifest.IsMirror |
Shawn O. Pearce | db45da1 | 2009-04-18 13:49:13 -0700 | [diff] [blame] | 147 | out = ForallColoring(self.manifest.manifestProject.config) |
Wink Saville | ef9ce1d | 2009-04-21 10:00:16 -0700 | [diff] [blame] | 148 | out.redirect(sys.stdout) |
Shawn O. Pearce | db45da1 | 2009-04-18 13:49:13 -0700 | [diff] [blame] | 149 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 150 | rc = 0 |
Shawn O. Pearce | db45da1 | 2009-04-18 13:49:13 -0700 | [diff] [blame] | 151 | first = True |
| 152 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 153 | for project in self.GetProjects(args): |
Shawn O. Pearce | f18cb76 | 2010-12-07 11:41:05 -0800 | [diff] [blame] | 154 | env = os.environ.copy() |
Shawn O. Pearce | 1775dbe | 2009-03-17 08:03:04 -0700 | [diff] [blame] | 155 | def setenv(name, val): |
| 156 | if val is None: |
| 157 | val = '' |
Shawn O. Pearce | f18cb76 | 2010-12-07 11:41:05 -0800 | [diff] [blame] | 158 | env[name] = val.encode() |
Shawn O. Pearce | 1775dbe | 2009-03-17 08:03:04 -0700 | [diff] [blame] | 159 | |
| 160 | setenv('REPO_PROJECT', project.name) |
| 161 | setenv('REPO_PATH', project.relpath) |
| 162 | setenv('REPO_REMOTE', project.remote.name) |
Shawn O. Pearce | 3c8dea1 | 2009-05-29 18:38:17 -0700 | [diff] [blame] | 163 | setenv('REPO_LREV', project.GetRevisionId()) |
| 164 | setenv('REPO_RREV', project.revisionExpr) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 165 | |
Shawn O. Pearce | 4446946 | 2009-03-03 17:51:01 -0800 | [diff] [blame] | 166 | if mirror: |
Shawn O. Pearce | 1775dbe | 2009-03-17 08:03:04 -0700 | [diff] [blame] | 167 | setenv('GIT_DIR', project.gitdir) |
Shawn O. Pearce | 4446946 | 2009-03-03 17:51:01 -0800 | [diff] [blame] | 168 | cwd = project.gitdir |
| 169 | else: |
| 170 | cwd = project.worktree |
| 171 | |
Shawn O. Pearce | 1b5a4a0 | 2009-08-22 18:50:45 -0700 | [diff] [blame] | 172 | if not os.path.exists(cwd): |
| 173 | if (opt.project_header and opt.verbose) \ |
| 174 | or not opt.project_header: |
| 175 | print >>sys.stderr, 'skipping %s/' % project.relpath |
| 176 | continue |
| 177 | |
Shawn O. Pearce | db45da1 | 2009-04-18 13:49:13 -0700 | [diff] [blame] | 178 | if opt.project_header: |
| 179 | stdin = subprocess.PIPE |
| 180 | stdout = subprocess.PIPE |
| 181 | stderr = subprocess.PIPE |
| 182 | else: |
| 183 | stdin = None |
| 184 | stdout = None |
| 185 | stderr = None |
| 186 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 187 | p = subprocess.Popen(cmd, |
Shawn O. Pearce | 4446946 | 2009-03-03 17:51:01 -0800 | [diff] [blame] | 188 | cwd = cwd, |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 189 | shell = shell, |
Shawn O. Pearce | db45da1 | 2009-04-18 13:49:13 -0700 | [diff] [blame] | 190 | env = env, |
| 191 | stdin = stdin, |
| 192 | stdout = stdout, |
| 193 | stderr = stderr) |
| 194 | |
| 195 | if opt.project_header: |
| 196 | class sfd(object): |
| 197 | def __init__(self, fd, dest): |
| 198 | self.fd = fd |
| 199 | self.dest = dest |
| 200 | def fileno(self): |
| 201 | return self.fd.fileno() |
| 202 | |
| 203 | empty = True |
| 204 | didout = False |
| 205 | errbuf = '' |
| 206 | |
| 207 | p.stdin.close() |
| 208 | s_in = [sfd(p.stdout, sys.stdout), |
| 209 | sfd(p.stderr, sys.stderr)] |
| 210 | |
| 211 | for s in s_in: |
| 212 | flags = fcntl.fcntl(s.fd, fcntl.F_GETFL) |
| 213 | fcntl.fcntl(s.fd, fcntl.F_SETFL, flags | os.O_NONBLOCK) |
| 214 | |
| 215 | while s_in: |
| 216 | in_ready, out_ready, err_ready = select.select(s_in, [], []) |
| 217 | for s in in_ready: |
| 218 | buf = s.fd.read(4096) |
| 219 | if not buf: |
| 220 | s.fd.close() |
| 221 | s_in.remove(s) |
| 222 | continue |
| 223 | |
| 224 | if not opt.verbose: |
| 225 | if s.fd == p.stdout: |
| 226 | didout = True |
| 227 | else: |
| 228 | errbuf += buf |
| 229 | continue |
| 230 | |
| 231 | if empty: |
| 232 | if first: |
| 233 | first = False |
| 234 | else: |
| 235 | out.nl() |
| 236 | out.project('project %s/', project.relpath) |
| 237 | out.nl() |
| 238 | out.flush() |
| 239 | if errbuf: |
| 240 | sys.stderr.write(errbuf) |
| 241 | sys.stderr.flush() |
| 242 | errbuf = '' |
| 243 | empty = False |
| 244 | |
| 245 | s.dest.write(buf) |
| 246 | s.dest.flush() |
| 247 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 248 | r = p.wait() |
| 249 | if r != 0 and r != rc: |
| 250 | rc = r |
| 251 | if rc != 0: |
| 252 | sys.exit(rc) |