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 | |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 16 | from __future__ import print_function |
John L. Villalovos | 9c76f67 | 2015-03-16 20:49:10 -0700 | [diff] [blame] | 17 | import fcntl |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 18 | import os |
John L. Villalovos | 9c76f67 | 2015-03-16 20:49:10 -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 | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 22 | import tempfile |
Shawn O. Pearce | ca8c32c | 2010-05-11 18:21:33 -0700 | [diff] [blame] | 23 | from signal import SIGTERM |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 24 | from error import GitError |
Shawn O. Pearce | ad3193a | 2009-04-18 09:54:51 -0700 | [diff] [blame] | 25 | from trace import REPO_TRACE, IsTrace, Trace |
Conley Owens | ff0a3c8 | 2014-01-30 14:46:03 -0800 | [diff] [blame] | 26 | from wrapper import Wrapper |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 27 | |
| 28 | GIT = 'git' |
| 29 | MIN_GIT_VERSION = (1, 5, 4) |
| 30 | GIT_DIR = 'GIT_DIR' |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 31 | |
| 32 | LAST_GITDIR = None |
| 33 | LAST_CWD = None |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 34 | |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 35 | _ssh_proxy_path = None |
| 36 | _ssh_sock_path = None |
Shawn O. Pearce | ca8c32c | 2010-05-11 18:21:33 -0700 | [diff] [blame] | 37 | _ssh_clients = [] |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 38 | |
Nico Sallembien | 1c85f4e | 2010-04-27 14:35:27 -0700 | [diff] [blame] | 39 | def ssh_sock(create=True): |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 40 | global _ssh_sock_path |
| 41 | if _ssh_sock_path is None: |
| 42 | if not create: |
| 43 | return None |
Mickaël Salaün | 2f6ab7f | 2012-09-30 00:37:55 +0200 | [diff] [blame] | 44 | tmp_dir = '/tmp' |
| 45 | if not os.path.exists(tmp_dir): |
| 46 | tmp_dir = tempfile.gettempdir() |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 47 | _ssh_sock_path = os.path.join( |
Mickaël Salaün | 2f6ab7f | 2012-09-30 00:37:55 +0200 | [diff] [blame] | 48 | tempfile.mkdtemp('', 'ssh-', tmp_dir), |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 49 | 'master-%r@%h:%p') |
| 50 | return _ssh_sock_path |
| 51 | |
| 52 | def _ssh_proxy(): |
| 53 | global _ssh_proxy_path |
| 54 | if _ssh_proxy_path is None: |
| 55 | _ssh_proxy_path = os.path.join( |
| 56 | os.path.dirname(__file__), |
| 57 | 'git_ssh') |
| 58 | return _ssh_proxy_path |
| 59 | |
Shawn O. Pearce | ca8c32c | 2010-05-11 18:21:33 -0700 | [diff] [blame] | 60 | def _add_ssh_client(p): |
| 61 | _ssh_clients.append(p) |
| 62 | |
| 63 | def _remove_ssh_client(p): |
| 64 | try: |
| 65 | _ssh_clients.remove(p) |
| 66 | except ValueError: |
| 67 | pass |
| 68 | |
| 69 | def terminate_ssh_clients(): |
| 70 | global _ssh_clients |
| 71 | for p in _ssh_clients: |
| 72 | try: |
| 73 | os.kill(p.pid, SIGTERM) |
| 74 | p.wait() |
| 75 | except OSError: |
| 76 | pass |
| 77 | _ssh_clients = [] |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 78 | |
Shawn O. Pearce | 334851e | 2011-09-19 08:05:31 -0700 | [diff] [blame] | 79 | _git_version = None |
| 80 | |
John L. Villalovos | 9c76f67 | 2015-03-16 20:49:10 -0700 | [diff] [blame] | 81 | class _sfd(object): |
| 82 | """select file descriptor class""" |
| 83 | def __init__(self, fd, dest, std_name): |
| 84 | assert std_name in ('stdout', 'stderr') |
| 85 | self.fd = fd |
| 86 | self.dest = dest |
| 87 | self.std_name = std_name |
| 88 | def fileno(self): |
| 89 | return self.fd.fileno() |
| 90 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 91 | class _GitCall(object): |
| 92 | def version(self): |
| 93 | p = GitCommand(None, ['--version'], capture_stdout=True) |
| 94 | if p.Wait() == 0: |
Anthony King | cf738ed | 2015-06-03 16:50:39 +0100 | [diff] [blame] | 95 | if hasattr(p.stdout, 'decode'): |
| 96 | return p.stdout.decode('utf-8') |
| 97 | else: |
| 98 | return p.stdout |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 99 | return None |
| 100 | |
Shawn O. Pearce | 334851e | 2011-09-19 08:05:31 -0700 | [diff] [blame] | 101 | def version_tuple(self): |
| 102 | global _git_version |
Shawn O. Pearce | 334851e | 2011-09-19 08:05:31 -0700 | [diff] [blame] | 103 | if _git_version is None: |
Chirayu Desai | c46de69 | 2014-08-20 09:34:10 +0530 | [diff] [blame] | 104 | ver_str = git.version() |
Conley Owens | ff0a3c8 | 2014-01-30 14:46:03 -0800 | [diff] [blame] | 105 | _git_version = Wrapper().ParseGitVersion(ver_str) |
| 106 | if _git_version is None: |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 107 | print('fatal: "%s" unsupported' % ver_str, file=sys.stderr) |
Shawn O. Pearce | 334851e | 2011-09-19 08:05:31 -0700 | [diff] [blame] | 108 | sys.exit(1) |
| 109 | return _git_version |
| 110 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 111 | def __getattr__(self, name): |
| 112 | name = name.replace('_','-') |
| 113 | def fun(*cmdv): |
| 114 | command = [name] |
| 115 | command.extend(cmdv) |
| 116 | return GitCommand(None, command).Wait() == 0 |
| 117 | return fun |
| 118 | git = _GitCall() |
| 119 | |
Shawn O. Pearce | 2ec00b9 | 2009-06-12 09:32:50 -0700 | [diff] [blame] | 120 | def git_require(min_version, fail=False): |
Shawn O. Pearce | 334851e | 2011-09-19 08:05:31 -0700 | [diff] [blame] | 121 | git_version = git.version_tuple() |
| 122 | if min_version <= git_version: |
Shawn O. Pearce | 2ec00b9 | 2009-06-12 09:32:50 -0700 | [diff] [blame] | 123 | return True |
| 124 | if fail: |
David Pursehouse | 7e6dd2d | 2012-10-25 12:40:51 +0900 | [diff] [blame] | 125 | need = '.'.join(map(str, min_version)) |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 126 | print('fatal: git %s or later required' % need, file=sys.stderr) |
Shawn O. Pearce | 2ec00b9 | 2009-06-12 09:32:50 -0700 | [diff] [blame] | 127 | sys.exit(1) |
| 128 | return False |
| 129 | |
Shawn O. Pearce | f18cb76 | 2010-12-07 11:41:05 -0800 | [diff] [blame] | 130 | def _setenv(env, name, value): |
| 131 | env[name] = value.encode() |
| 132 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 133 | class GitCommand(object): |
| 134 | def __init__(self, |
| 135 | project, |
| 136 | cmdv, |
| 137 | bare = False, |
| 138 | provide_stdin = False, |
| 139 | capture_stdout = False, |
| 140 | capture_stderr = False, |
| 141 | disable_editor = False, |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 142 | ssh_proxy = False, |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 143 | cwd = None, |
| 144 | gitdir = None): |
Shawn O. Pearce | 727ee98 | 2010-12-07 08:46:14 -0800 | [diff] [blame] | 145 | env = os.environ.copy() |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 146 | |
David Pursehouse | 1d947b3 | 2012-10-25 12:23:11 +0900 | [diff] [blame] | 147 | for key in [REPO_TRACE, |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 148 | GIT_DIR, |
| 149 | 'GIT_ALTERNATE_OBJECT_DIRECTORIES', |
| 150 | 'GIT_OBJECT_DIRECTORY', |
| 151 | 'GIT_WORK_TREE', |
| 152 | 'GIT_GRAFT_FILE', |
| 153 | 'GIT_INDEX_FILE']: |
David Pursehouse | 1d947b3 | 2012-10-25 12:23:11 +0900 | [diff] [blame] | 154 | if key in env: |
| 155 | del env[key] |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 156 | |
John L. Villalovos | 9c76f67 | 2015-03-16 20:49:10 -0700 | [diff] [blame] | 157 | # If we are not capturing std* then need to print it. |
| 158 | self.tee = {'stdout': not capture_stdout, 'stderr': not capture_stderr} |
| 159 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 160 | if disable_editor: |
Shawn O. Pearce | f18cb76 | 2010-12-07 11:41:05 -0800 | [diff] [blame] | 161 | _setenv(env, 'GIT_EDITOR', ':') |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 162 | if ssh_proxy: |
Shawn O. Pearce | f18cb76 | 2010-12-07 11:41:05 -0800 | [diff] [blame] | 163 | _setenv(env, 'REPO_SSH_SOCK', ssh_sock()) |
| 164 | _setenv(env, 'GIT_SSH', _ssh_proxy()) |
Shawn O. Pearce | 62d0b10 | 2012-06-05 15:11:15 -0700 | [diff] [blame] | 165 | if 'http_proxy' in env and 'darwin' == sys.platform: |
Shawn O. Pearce | 337aee0 | 2012-06-13 10:40:46 -0700 | [diff] [blame] | 166 | s = "'http.proxy=%s'" % (env['http_proxy'],) |
Shawn O. Pearce | 62d0b10 | 2012-06-05 15:11:15 -0700 | [diff] [blame] | 167 | p = env.get('GIT_CONFIG_PARAMETERS') |
| 168 | if p is not None: |
| 169 | s = p + ' ' + s |
| 170 | _setenv(env, 'GIT_CONFIG_PARAMETERS', s) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 171 | |
| 172 | if project: |
| 173 | if not cwd: |
| 174 | cwd = project.worktree |
| 175 | if not gitdir: |
| 176 | gitdir = project.gitdir |
| 177 | |
| 178 | command = [GIT] |
| 179 | if bare: |
| 180 | if gitdir: |
Shawn O. Pearce | f18cb76 | 2010-12-07 11:41:05 -0800 | [diff] [blame] | 181 | _setenv(env, GIT_DIR, gitdir) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 182 | cwd = None |
John L. Villalovos | 9c76f67 | 2015-03-16 20:49:10 -0700 | [diff] [blame] | 183 | command.append(cmdv[0]) |
| 184 | # Need to use the --progress flag for fetch/clone so output will be |
| 185 | # displayed as by default git only does progress output if stderr is a TTY. |
| 186 | if sys.stderr.isatty() and cmdv[0] in ('fetch', 'clone'): |
| 187 | if '--progress' not in cmdv and '--quiet' not in cmdv: |
| 188 | command.append('--progress') |
| 189 | command.extend(cmdv[1:]) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 190 | |
| 191 | if provide_stdin: |
| 192 | stdin = subprocess.PIPE |
| 193 | else: |
| 194 | stdin = None |
| 195 | |
John L. Villalovos | 9c76f67 | 2015-03-16 20:49:10 -0700 | [diff] [blame] | 196 | stdout = subprocess.PIPE |
| 197 | stderr = subprocess.PIPE |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 198 | |
Shawn O. Pearce | ad3193a | 2009-04-18 09:54:51 -0700 | [diff] [blame] | 199 | if IsTrace(): |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 200 | global LAST_CWD |
| 201 | global LAST_GITDIR |
| 202 | |
| 203 | dbg = '' |
| 204 | |
| 205 | if cwd and LAST_CWD != cwd: |
| 206 | if LAST_GITDIR or LAST_CWD: |
| 207 | dbg += '\n' |
| 208 | dbg += ': cd %s\n' % cwd |
| 209 | LAST_CWD = cwd |
| 210 | |
| 211 | if GIT_DIR in env and LAST_GITDIR != env[GIT_DIR]: |
| 212 | if LAST_GITDIR or LAST_CWD: |
| 213 | dbg += '\n' |
| 214 | dbg += ': export GIT_DIR=%s\n' % env[GIT_DIR] |
| 215 | LAST_GITDIR = env[GIT_DIR] |
| 216 | |
| 217 | dbg += ': ' |
| 218 | dbg += ' '.join(command) |
| 219 | if stdin == subprocess.PIPE: |
| 220 | dbg += ' 0<|' |
| 221 | if stdout == subprocess.PIPE: |
| 222 | dbg += ' 1>|' |
| 223 | if stderr == subprocess.PIPE: |
| 224 | dbg += ' 2>|' |
Shawn O. Pearce | ad3193a | 2009-04-18 09:54:51 -0700 | [diff] [blame] | 225 | Trace('%s', dbg) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 226 | |
| 227 | try: |
| 228 | p = subprocess.Popen(command, |
| 229 | cwd = cwd, |
| 230 | env = env, |
| 231 | stdin = stdin, |
| 232 | stdout = stdout, |
| 233 | stderr = stderr) |
Sarah Owens | a5be53f | 2012-09-09 15:37:57 -0700 | [diff] [blame] | 234 | except Exception as e: |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 235 | raise GitError('%s: %s' % (command[1], e)) |
| 236 | |
Shawn O. Pearce | ca8c32c | 2010-05-11 18:21:33 -0700 | [diff] [blame] | 237 | if ssh_proxy: |
| 238 | _add_ssh_client(p) |
| 239 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 240 | self.process = p |
| 241 | self.stdin = p.stdin |
| 242 | |
| 243 | def Wait(self): |
Shawn O. Pearce | ca8c32c | 2010-05-11 18:21:33 -0700 | [diff] [blame] | 244 | try: |
Ulrik Sjölin | 498fe90 | 2011-09-11 22:59:37 +0200 | [diff] [blame] | 245 | p = self.process |
John L. Villalovos | 9c76f67 | 2015-03-16 20:49:10 -0700 | [diff] [blame] | 246 | rc = self._CaptureOutput() |
Shawn O. Pearce | ca8c32c | 2010-05-11 18:21:33 -0700 | [diff] [blame] | 247 | finally: |
| 248 | _remove_ssh_client(p) |
| 249 | return rc |
John L. Villalovos | 9c76f67 | 2015-03-16 20:49:10 -0700 | [diff] [blame] | 250 | |
| 251 | def _CaptureOutput(self): |
| 252 | p = self.process |
| 253 | s_in = [_sfd(p.stdout, sys.stdout, 'stdout'), |
| 254 | _sfd(p.stderr, sys.stderr, 'stderr')] |
| 255 | self.stdout = '' |
| 256 | self.stderr = '' |
| 257 | |
| 258 | for s in s_in: |
| 259 | flags = fcntl.fcntl(s.fd, fcntl.F_GETFL) |
| 260 | fcntl.fcntl(s.fd, fcntl.F_SETFL, flags | os.O_NONBLOCK) |
| 261 | |
| 262 | while s_in: |
| 263 | in_ready, _, _ = select.select(s_in, [], []) |
| 264 | for s in in_ready: |
| 265 | buf = s.fd.read(4096) |
| 266 | if not buf: |
| 267 | s_in.remove(s) |
| 268 | continue |
Anthony King | 6cfc68e | 2015-06-03 16:39:32 +0100 | [diff] [blame] | 269 | if not hasattr(buf, 'encode'): |
| 270 | buf = buf.decode() |
John L. Villalovos | 9c76f67 | 2015-03-16 20:49:10 -0700 | [diff] [blame] | 271 | if s.std_name == 'stdout': |
| 272 | self.stdout += buf |
| 273 | else: |
| 274 | self.stderr += buf |
| 275 | if self.tee[s.std_name]: |
| 276 | s.dest.write(buf) |
| 277 | s.dest.flush() |
| 278 | return p.wait() |