blob: 32dcde099a4f430a45ea9db7aaf9141c3c45edda [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
Mike Frysinger369814b2019-07-10 17:10:07 -0400101
102_user_agent = None
103
104def RepoUserAgent():
105 """Return a User-Agent string suitable for HTTP-like services.
106
107 We follow the style as documented here:
108 https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/User-Agent
109 """
110 global _user_agent
111
112 if _user_agent is None:
113 py_version = sys.version_info
114
115 os_name = sys.platform
116 if os_name == 'linux2':
117 os_name = 'Linux'
118 elif os_name == 'win32':
119 os_name = 'Win32'
120 elif os_name == 'cygwin':
121 os_name = 'Cygwin'
122 elif os_name == 'darwin':
123 os_name = 'Darwin'
124
125 p = GitCommand(
126 None, ['describe', 'HEAD'],
127 cwd=os.path.dirname(__file__),
128 capture_stdout=True)
129 if p.Wait() == 0:
130 repo_version = p.stdout
131 if repo_version and repo_version[-1] == '\n':
132 repo_version = repo_version[0:-1]
133 if repo_version and repo_version[0] == 'v':
134 repo_version = repo_version[1:]
135 else:
136 repo_version = 'unknown'
137
138 _user_agent = 'git-repo/%s (%s) git/%s Python/%d.%d.%d' % (
139 repo_version,
140 os_name,
141 git.version_tuple().full,
142 py_version.major, py_version.minor, py_version.micro)
143
144 return _user_agent
145
146
Xin Li745be2e2019-06-03 11:24:30 -0700147def git_require(min_version, fail=False, msg=''):
Shawn O. Pearce334851e2011-09-19 08:05:31 -0700148 git_version = git.version_tuple()
149 if min_version <= git_version:
Shawn O. Pearce2ec00b92009-06-12 09:32:50 -0700150 return True
151 if fail:
David Pursehouse7e6dd2d2012-10-25 12:40:51 +0900152 need = '.'.join(map(str, min_version))
Xin Li745be2e2019-06-03 11:24:30 -0700153 if msg:
154 msg = ' for ' + msg
155 print('fatal: git %s or later required%s' % (need, msg), file=sys.stderr)
Shawn O. Pearce2ec00b92009-06-12 09:32:50 -0700156 sys.exit(1)
157 return False
158
Shawn O. Pearcef18cb762010-12-07 11:41:05 -0800159def _setenv(env, name, value):
160 env[name] = value.encode()
161
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700162class GitCommand(object):
163 def __init__(self,
164 project,
165 cmdv,
166 bare = False,
167 provide_stdin = False,
168 capture_stdout = False,
169 capture_stderr = False,
170 disable_editor = False,
Shawn O. Pearcefb231612009-04-10 18:53:46 -0700171 ssh_proxy = False,
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700172 cwd = None,
173 gitdir = None):
Shawn O. Pearce727ee982010-12-07 08:46:14 -0800174 env = os.environ.copy()
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700175
David Pursehouse1d947b32012-10-25 12:23:11 +0900176 for key in [REPO_TRACE,
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700177 GIT_DIR,
178 'GIT_ALTERNATE_OBJECT_DIRECTORIES',
179 'GIT_OBJECT_DIRECTORY',
180 'GIT_WORK_TREE',
181 'GIT_GRAFT_FILE',
182 'GIT_INDEX_FILE']:
David Pursehouse1d947b32012-10-25 12:23:11 +0900183 if key in env:
184 del env[key]
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700185
John L. Villalovos9c76f672015-03-16 20:49:10 -0700186 # If we are not capturing std* then need to print it.
187 self.tee = {'stdout': not capture_stdout, 'stderr': not capture_stderr}
188
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700189 if disable_editor:
Shawn O. Pearcef18cb762010-12-07 11:41:05 -0800190 _setenv(env, 'GIT_EDITOR', ':')
Shawn O. Pearcefb231612009-04-10 18:53:46 -0700191 if ssh_proxy:
Shawn O. Pearcef18cb762010-12-07 11:41:05 -0800192 _setenv(env, 'REPO_SSH_SOCK', ssh_sock())
193 _setenv(env, 'GIT_SSH', _ssh_proxy())
Jonathan Niederc00d28b2017-10-19 14:23:10 -0700194 _setenv(env, 'GIT_SSH_VARIANT', 'ssh')
Shawn O. Pearce62d0b102012-06-05 15:11:15 -0700195 if 'http_proxy' in env and 'darwin' == sys.platform:
Shawn O. Pearce337aee02012-06-13 10:40:46 -0700196 s = "'http.proxy=%s'" % (env['http_proxy'],)
Shawn O. Pearce62d0b102012-06-05 15:11:15 -0700197 p = env.get('GIT_CONFIG_PARAMETERS')
198 if p is not None:
199 s = p + ' ' + s
200 _setenv(env, 'GIT_CONFIG_PARAMETERS', s)
Dan Willemsen466b8c42015-11-25 13:26:39 -0800201 if 'GIT_ALLOW_PROTOCOL' not in env:
202 _setenv(env, 'GIT_ALLOW_PROTOCOL',
Jonathan Nieder203153e2016-02-26 18:53:54 -0800203 'file:git:http:https:ssh:persistent-http:persistent-https:sso:rpc')
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700204
205 if project:
206 if not cwd:
207 cwd = project.worktree
208 if not gitdir:
209 gitdir = project.gitdir
210
211 command = [GIT]
212 if bare:
213 if gitdir:
Shawn O. Pearcef18cb762010-12-07 11:41:05 -0800214 _setenv(env, GIT_DIR, gitdir)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700215 cwd = None
John L. Villalovos9c76f672015-03-16 20:49:10 -0700216 command.append(cmdv[0])
217 # Need to use the --progress flag for fetch/clone so output will be
218 # displayed as by default git only does progress output if stderr is a TTY.
219 if sys.stderr.isatty() and cmdv[0] in ('fetch', 'clone'):
220 if '--progress' not in cmdv and '--quiet' not in cmdv:
221 command.append('--progress')
222 command.extend(cmdv[1:])
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700223
224 if provide_stdin:
225 stdin = subprocess.PIPE
226 else:
227 stdin = None
228
John L. Villalovos9c76f672015-03-16 20:49:10 -0700229 stdout = subprocess.PIPE
230 stderr = subprocess.PIPE
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700231
Shawn O. Pearcead3193a2009-04-18 09:54:51 -0700232 if IsTrace():
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700233 global LAST_CWD
234 global LAST_GITDIR
235
236 dbg = ''
237
238 if cwd and LAST_CWD != cwd:
239 if LAST_GITDIR or LAST_CWD:
240 dbg += '\n'
241 dbg += ': cd %s\n' % cwd
242 LAST_CWD = cwd
243
244 if GIT_DIR in env and LAST_GITDIR != env[GIT_DIR]:
245 if LAST_GITDIR or LAST_CWD:
246 dbg += '\n'
247 dbg += ': export GIT_DIR=%s\n' % env[GIT_DIR]
248 LAST_GITDIR = env[GIT_DIR]
249
250 dbg += ': '
251 dbg += ' '.join(command)
252 if stdin == subprocess.PIPE:
253 dbg += ' 0<|'
254 if stdout == subprocess.PIPE:
255 dbg += ' 1>|'
256 if stderr == subprocess.PIPE:
257 dbg += ' 2>|'
Shawn O. Pearcead3193a2009-04-18 09:54:51 -0700258 Trace('%s', dbg)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700259
260 try:
261 p = subprocess.Popen(command,
262 cwd = cwd,
263 env = env,
264 stdin = stdin,
265 stdout = stdout,
266 stderr = stderr)
Sarah Owensa5be53f2012-09-09 15:37:57 -0700267 except Exception as e:
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700268 raise GitError('%s: %s' % (command[1], e))
269
Shawn O. Pearceca8c32c2010-05-11 18:21:33 -0700270 if ssh_proxy:
271 _add_ssh_client(p)
272
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700273 self.process = p
274 self.stdin = p.stdin
275
276 def Wait(self):
Shawn O. Pearceca8c32c2010-05-11 18:21:33 -0700277 try:
Ulrik Sjölin498fe902011-09-11 22:59:37 +0200278 p = self.process
John L. Villalovos9c76f672015-03-16 20:49:10 -0700279 rc = self._CaptureOutput()
Shawn O. Pearceca8c32c2010-05-11 18:21:33 -0700280 finally:
281 _remove_ssh_client(p)
282 return rc
John L. Villalovos9c76f672015-03-16 20:49:10 -0700283
284 def _CaptureOutput(self):
285 p = self.process
Renaud Paquay2e702912016-11-01 11:23:38 -0700286 s_in = platform_utils.FileDescriptorStreams.create()
287 s_in.add(p.stdout, sys.stdout, 'stdout')
288 s_in.add(p.stderr, sys.stderr, 'stderr')
John L. Villalovos9c76f672015-03-16 20:49:10 -0700289 self.stdout = ''
290 self.stderr = ''
291
Renaud Paquay2e702912016-11-01 11:23:38 -0700292 while not s_in.is_done:
293 in_ready = s_in.select()
John L. Villalovos9c76f672015-03-16 20:49:10 -0700294 for s in in_ready:
Renaud Paquay2e702912016-11-01 11:23:38 -0700295 buf = s.read()
John L. Villalovos9c76f672015-03-16 20:49:10 -0700296 if not buf:
297 s_in.remove(s)
298 continue
Anthony King6cfc68e2015-06-03 16:39:32 +0100299 if not hasattr(buf, 'encode'):
300 buf = buf.decode()
John L. Villalovos9c76f672015-03-16 20:49:10 -0700301 if s.std_name == 'stdout':
302 self.stdout += buf
303 else:
304 self.stderr += buf
305 if self.tee[s.std_name]:
306 s.dest.write(buf)
307 s.dest.flush()
308 return p.wait()