blob: 67423035f7407b748307d0088e989277efde6b01 [file] [log] [blame]
Mike Frysingerf6013762019-06-13 02:30:51 -04001# -*- coding:utf-8 -*-
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002#
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 Owenscecd1d82012-11-01 22:59:27 -070017from __future__ import print_function
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070018import os
19import sys
20import subprocess
Shawn O. Pearcefb231612009-04-10 18:53:46 -070021import tempfile
Shawn O. Pearceca8c32c2010-05-11 18:21:33 -070022from signal import SIGTERM
Renaud Paquay2e702912016-11-01 11:23:38 -070023
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070024from error import GitError
Renaud Paquay2e702912016-11-01 11:23:38 -070025import platform_utils
Mike Frysinger8a11f6f2019-08-27 00:26:15 -040026from repo_trace import REPO_TRACE, IsTrace, Trace
Conley Owensff0a3c82014-01-30 14:46:03 -080027from wrapper import Wrapper
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070028
29GIT = 'git'
30MIN_GIT_VERSION = (1, 5, 4)
31GIT_DIR = 'GIT_DIR'
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070032
33LAST_GITDIR = None
34LAST_CWD = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070035
Shawn O. Pearcefb231612009-04-10 18:53:46 -070036_ssh_proxy_path = None
37_ssh_sock_path = None
Shawn O. Pearceca8c32c2010-05-11 18:21:33 -070038_ssh_clients = []
Shawn O. Pearcefb231612009-04-10 18:53:46 -070039
Nico Sallembien1c85f4e2010-04-27 14:35:27 -070040def ssh_sock(create=True):
Shawn O. Pearcefb231612009-04-10 18:53:46 -070041 global _ssh_sock_path
42 if _ssh_sock_path is None:
43 if not create:
44 return None
Mickaël Salaün2f6ab7f2012-09-30 00:37:55 +020045 tmp_dir = '/tmp'
46 if not os.path.exists(tmp_dir):
47 tmp_dir = tempfile.gettempdir()
Shawn O. Pearcefb231612009-04-10 18:53:46 -070048 _ssh_sock_path = os.path.join(
Mickaël Salaün2f6ab7f2012-09-30 00:37:55 +020049 tempfile.mkdtemp('', 'ssh-', tmp_dir),
Shawn O. Pearcefb231612009-04-10 18:53:46 -070050 'master-%r@%h:%p')
51 return _ssh_sock_path
52
53def _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. Pearceca8c32c2010-05-11 18:21:33 -070061def _add_ssh_client(p):
62 _ssh_clients.append(p)
63
64def _remove_ssh_client(p):
65 try:
66 _ssh_clients.remove(p)
67 except ValueError:
68 pass
69
70def 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 Projectcf31fe92008-10-21 07:00:00 -070079
Shawn O. Pearce334851e2011-09-19 08:05:31 -070080_git_version = None
81
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070082class _GitCall(object):
Shawn O. Pearce334851e2011-09-19 08:05:31 -070083 def version_tuple(self):
84 global _git_version
Shawn O. Pearce334851e2011-09-19 08:05:31 -070085 if _git_version is None:
Mike Frysingerca540ae2019-07-10 15:42:30 -040086 _git_version = Wrapper().ParseGitVersion()
Conley Owensff0a3c82014-01-30 14:46:03 -080087 if _git_version is None:
Mike Frysingerca540ae2019-07-10 15:42:30 -040088 print('fatal: unable to detect git version', file=sys.stderr)
Shawn O. Pearce334851e2011-09-19 08:05:31 -070089 sys.exit(1)
90 return _git_version
91
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070092 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
99git = _GitCall()
100
Xin Li745be2e2019-06-03 11:24:30 -0700101def git_require(min_version, fail=False, msg=''):
Shawn O. Pearce334851e2011-09-19 08:05:31 -0700102 git_version = git.version_tuple()
103 if min_version <= git_version:
Shawn O. Pearce2ec00b92009-06-12 09:32:50 -0700104 return True
105 if fail:
David Pursehouse7e6dd2d2012-10-25 12:40:51 +0900106 need = '.'.join(map(str, min_version))
Xin Li745be2e2019-06-03 11:24:30 -0700107 if msg:
108 msg = ' for ' + msg
109 print('fatal: git %s or later required%s' % (need, msg), file=sys.stderr)
Shawn O. Pearce2ec00b92009-06-12 09:32:50 -0700110 sys.exit(1)
111 return False
112
Shawn O. Pearcef18cb762010-12-07 11:41:05 -0800113def _setenv(env, name, value):
114 env[name] = value.encode()
115
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700116class 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. Pearcefb231612009-04-10 18:53:46 -0700125 ssh_proxy = False,
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700126 cwd = None,
127 gitdir = None):
Shawn O. Pearce727ee982010-12-07 08:46:14 -0800128 env = os.environ.copy()
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700129
David Pursehouse1d947b32012-10-25 12:23:11 +0900130 for key in [REPO_TRACE,
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700131 GIT_DIR,
132 'GIT_ALTERNATE_OBJECT_DIRECTORIES',
133 'GIT_OBJECT_DIRECTORY',
134 'GIT_WORK_TREE',
135 'GIT_GRAFT_FILE',
136 'GIT_INDEX_FILE']:
David Pursehouse1d947b32012-10-25 12:23:11 +0900137 if key in env:
138 del env[key]
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700139
John L. Villalovos9c76f672015-03-16 20:49:10 -0700140 # 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 Projectcf31fe92008-10-21 07:00:00 -0700143 if disable_editor:
Shawn O. Pearcef18cb762010-12-07 11:41:05 -0800144 _setenv(env, 'GIT_EDITOR', ':')
Shawn O. Pearcefb231612009-04-10 18:53:46 -0700145 if ssh_proxy:
Shawn O. Pearcef18cb762010-12-07 11:41:05 -0800146 _setenv(env, 'REPO_SSH_SOCK', ssh_sock())
147 _setenv(env, 'GIT_SSH', _ssh_proxy())
Jonathan Niederc00d28b2017-10-19 14:23:10 -0700148 _setenv(env, 'GIT_SSH_VARIANT', 'ssh')
Shawn O. Pearce62d0b102012-06-05 15:11:15 -0700149 if 'http_proxy' in env and 'darwin' == sys.platform:
Shawn O. Pearce337aee02012-06-13 10:40:46 -0700150 s = "'http.proxy=%s'" % (env['http_proxy'],)
Shawn O. Pearce62d0b102012-06-05 15:11:15 -0700151 p = env.get('GIT_CONFIG_PARAMETERS')
152 if p is not None:
153 s = p + ' ' + s
154 _setenv(env, 'GIT_CONFIG_PARAMETERS', s)
Dan Willemsen466b8c42015-11-25 13:26:39 -0800155 if 'GIT_ALLOW_PROTOCOL' not in env:
156 _setenv(env, 'GIT_ALLOW_PROTOCOL',
Jonathan Nieder203153e2016-02-26 18:53:54 -0800157 'file:git:http:https:ssh:persistent-http:persistent-https:sso:rpc')
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700158
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. Pearcef18cb762010-12-07 11:41:05 -0800168 _setenv(env, GIT_DIR, gitdir)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700169 cwd = None
John L. Villalovos9c76f672015-03-16 20:49:10 -0700170 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 Projectcf31fe92008-10-21 07:00:00 -0700177
178 if provide_stdin:
179 stdin = subprocess.PIPE
180 else:
181 stdin = None
182
John L. Villalovos9c76f672015-03-16 20:49:10 -0700183 stdout = subprocess.PIPE
184 stderr = subprocess.PIPE
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700185
Shawn O. Pearcead3193a2009-04-18 09:54:51 -0700186 if IsTrace():
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700187 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. Pearcead3193a2009-04-18 09:54:51 -0700212 Trace('%s', dbg)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700213
214 try:
215 p = subprocess.Popen(command,
216 cwd = cwd,
217 env = env,
218 stdin = stdin,
219 stdout = stdout,
220 stderr = stderr)
Sarah Owensa5be53f2012-09-09 15:37:57 -0700221 except Exception as e:
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700222 raise GitError('%s: %s' % (command[1], e))
223
Shawn O. Pearceca8c32c2010-05-11 18:21:33 -0700224 if ssh_proxy:
225 _add_ssh_client(p)
226
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700227 self.process = p
228 self.stdin = p.stdin
229
230 def Wait(self):
Shawn O. Pearceca8c32c2010-05-11 18:21:33 -0700231 try:
Ulrik Sjölin498fe902011-09-11 22:59:37 +0200232 p = self.process
John L. Villalovos9c76f672015-03-16 20:49:10 -0700233 rc = self._CaptureOutput()
Shawn O. Pearceca8c32c2010-05-11 18:21:33 -0700234 finally:
235 _remove_ssh_client(p)
236 return rc
John L. Villalovos9c76f672015-03-16 20:49:10 -0700237
238 def _CaptureOutput(self):
239 p = self.process
Renaud Paquay2e702912016-11-01 11:23:38 -0700240 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. Villalovos9c76f672015-03-16 20:49:10 -0700243 self.stdout = ''
244 self.stderr = ''
245
Renaud Paquay2e702912016-11-01 11:23:38 -0700246 while not s_in.is_done:
247 in_ready = s_in.select()
John L. Villalovos9c76f672015-03-16 20:49:10 -0700248 for s in in_ready:
Renaud Paquay2e702912016-11-01 11:23:38 -0700249 buf = s.read()
John L. Villalovos9c76f672015-03-16 20:49:10 -0700250 if not buf:
251 s_in.remove(s)
252 continue
Anthony King6cfc68e2015-06-03 16:39:32 +0100253 if not hasattr(buf, 'encode'):
254 buf = buf.decode()
John L. Villalovos9c76f672015-03-16 20:49:10 -0700255 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()