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