Mike Frysinger | f601376 | 2019-06-13 02:30:51 -0400 | [diff] [blame] | 1 | # -*- coding:utf-8 -*- |
| 2 | # |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 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 |
Shawn O. Pearce | 438ee1c | 2008-11-03 09:59:36 -0800 | [diff] [blame] | 18 | import errno |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 19 | import filecmp |
Wink Saville | 4c426ef | 2015-06-03 08:05:17 -0700 | [diff] [blame] | 20 | import glob |
Mike Frysinger | f7c5160 | 2019-06-18 17:23:39 -0400 | [diff] [blame] | 21 | import json |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 22 | import os |
Shawn O. Pearce | c325dc3 | 2011-10-03 08:30:24 -0700 | [diff] [blame] | 23 | import random |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 24 | import re |
| 25 | import shutil |
| 26 | import stat |
Shawn O. Pearce | 5e7127d | 2012-08-02 14:57:37 -0700 | [diff] [blame] | 27 | import subprocess |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 28 | import sys |
Julien Campergue | 335f5ef | 2013-10-16 11:02:35 +0200 | [diff] [blame] | 29 | import tarfile |
Che-Liang Chiou | b2bd91c | 2012-01-11 11:28:42 +0800 | [diff] [blame] | 30 | import tempfile |
Shawn O. Pearce | c325dc3 | 2011-10-03 08:30:24 -0700 | [diff] [blame] | 31 | import time |
Dave Borowitz | 137d013 | 2015-01-02 11:12:54 -0800 | [diff] [blame] | 32 | import traceback |
Shawn O. Pearce | df5ee52 | 2011-10-11 14:05:21 -0700 | [diff] [blame] | 33 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 34 | from color import Coloring |
Dave Borowitz | b42b474 | 2012-10-31 12:27:27 -0700 | [diff] [blame] | 35 | from git_command import GitCommand, git_require |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 36 | from git_config import GitConfig, IsId, GetSchemeFromUrl, GetUrlCookieFile, \ |
| 37 | ID_RE |
Kevin Degi | abaa7f3 | 2014-11-12 11:27:45 -0700 | [diff] [blame] | 38 | from error import GitError, HookError, UploadError, DownloadError |
Mike Frysinger | e6a202f | 2019-08-02 15:57:57 -0400 | [diff] [blame] | 39 | from error import ManifestInvalidRevisionError, ManifestInvalidPathError |
Conley Owens | 75ee057 | 2012-11-15 17:33:11 -0800 | [diff] [blame] | 40 | from error import NoManifestException |
Renaud Paquay | d5cec5e | 2016-11-01 11:24:03 -0700 | [diff] [blame] | 41 | import platform_utils |
Mike Frysinger | 70d861f | 2019-08-26 15:22:36 -0400 | [diff] [blame] | 42 | import progress |
Mike Frysinger | 8a11f6f | 2019-08-27 00:26:15 -0400 | [diff] [blame] | 43 | from repo_trace import IsTrace, Trace |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 44 | |
Shawn O. Pearce | d237b69 | 2009-04-17 18:49:50 -0700 | [diff] [blame] | 45 | from git_refs import GitRefs, HEAD, R_HEADS, R_TAGS, R_PUB, R_M |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 46 | |
David Pursehouse | 59bbb58 | 2013-05-17 10:49:33 +0900 | [diff] [blame] | 47 | from pyversion import is_python3 |
Mike Frysinger | 40252c2 | 2016-08-15 21:23:44 -0400 | [diff] [blame] | 48 | if is_python3(): |
| 49 | import urllib.parse |
| 50 | else: |
| 51 | import imp |
| 52 | import urlparse |
| 53 | urllib = imp.new_module('urllib') |
| 54 | urllib.parse = urlparse |
Chirayu Desai | 217ea7d | 2013-03-01 19:14:38 +0530 | [diff] [blame] | 55 | input = raw_input |
Chirayu Desai | 217ea7d | 2013-03-01 19:14:38 +0530 | [diff] [blame] | 56 | |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 57 | |
Shawn O. Pearce | accc56d | 2009-04-18 14:45:51 -0700 | [diff] [blame] | 58 | def _lwrite(path, content): |
| 59 | lock = '%s.lock' % path |
| 60 | |
Mike Frysinger | 3164d40 | 2019-11-11 05:40:22 -0500 | [diff] [blame] | 61 | with open(lock, 'w') as fd: |
Shawn O. Pearce | accc56d | 2009-04-18 14:45:51 -0700 | [diff] [blame] | 62 | fd.write(content) |
Shawn O. Pearce | accc56d | 2009-04-18 14:45:51 -0700 | [diff] [blame] | 63 | |
| 64 | try: |
Renaud Paquay | ad1abcb | 2016-11-01 11:34:55 -0700 | [diff] [blame] | 65 | platform_utils.rename(lock, path) |
Shawn O. Pearce | accc56d | 2009-04-18 14:45:51 -0700 | [diff] [blame] | 66 | except OSError: |
Renaud Paquay | 010fed7 | 2016-11-11 14:25:29 -0800 | [diff] [blame] | 67 | platform_utils.remove(lock) |
Shawn O. Pearce | accc56d | 2009-04-18 14:45:51 -0700 | [diff] [blame] | 68 | raise |
| 69 | |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 70 | |
Shawn O. Pearce | 4824478 | 2009-04-16 08:25:57 -0700 | [diff] [blame] | 71 | def _error(fmt, *args): |
| 72 | msg = fmt % args |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 73 | print('error: %s' % msg, file=sys.stderr) |
Shawn O. Pearce | 4824478 | 2009-04-16 08:25:57 -0700 | [diff] [blame] | 74 | |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 75 | |
David Pursehouse | f33929d | 2015-08-24 14:39:14 +0900 | [diff] [blame] | 76 | def _warn(fmt, *args): |
| 77 | msg = fmt % args |
| 78 | print('warn: %s' % msg, file=sys.stderr) |
| 79 | |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 80 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 81 | def not_rev(r): |
| 82 | return '^' + r |
| 83 | |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 84 | |
Shawn O. Pearce | b54a392 | 2009-01-05 16:18:58 -0800 | [diff] [blame] | 85 | def sq(r): |
| 86 | return "'" + r.replace("'", "'\''") + "'" |
Shawn O. Pearce | c9ef744 | 2008-11-03 10:32:09 -0800 | [diff] [blame] | 87 | |
Jonathan Nieder | 9371979 | 2015-03-17 11:29:58 -0700 | [diff] [blame] | 88 | _project_hook_list = None |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 89 | |
| 90 | |
Jonathan Nieder | 9371979 | 2015-03-17 11:29:58 -0700 | [diff] [blame] | 91 | def _ProjectHooks(): |
| 92 | """List the hooks present in the 'hooks' directory. |
| 93 | |
| 94 | These hooks are project hooks and are copied to the '.git/hooks' directory |
| 95 | of all subprojects. |
| 96 | |
| 97 | This function caches the list of hooks (based on the contents of the |
| 98 | 'repo/hooks' directory) on the first call. |
| 99 | |
| 100 | Returns: |
| 101 | A list of absolute paths to all of the files in the hooks directory. |
| 102 | """ |
| 103 | global _project_hook_list |
| 104 | if _project_hook_list is None: |
Renaud Paquay | 227ad2e | 2016-11-01 14:37:13 -0700 | [diff] [blame] | 105 | d = platform_utils.realpath(os.path.abspath(os.path.dirname(__file__))) |
Jonathan Nieder | 9371979 | 2015-03-17 11:29:58 -0700 | [diff] [blame] | 106 | d = os.path.join(d, 'hooks') |
Renaud Paquay | bed8b62 | 2018-09-27 10:46:58 -0700 | [diff] [blame] | 107 | _project_hook_list = [os.path.join(d, x) for x in platform_utils.listdir(d)] |
Jonathan Nieder | 9371979 | 2015-03-17 11:29:58 -0700 | [diff] [blame] | 108 | return _project_hook_list |
| 109 | |
| 110 | |
Shawn O. Pearce | 632768b | 2008-10-23 11:58:52 -0700 | [diff] [blame] | 111 | class DownloadedChange(object): |
| 112 | _commit_cache = None |
| 113 | |
| 114 | def __init__(self, project, base, change_id, ps_id, commit): |
| 115 | self.project = project |
| 116 | self.base = base |
| 117 | self.change_id = change_id |
| 118 | self.ps_id = ps_id |
| 119 | self.commit = commit |
| 120 | |
| 121 | @property |
| 122 | def commits(self): |
| 123 | if self._commit_cache is None: |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 124 | self._commit_cache = self.project.bare_git.rev_list('--abbrev=8', |
| 125 | '--abbrev-commit', |
| 126 | '--pretty=oneline', |
| 127 | '--reverse', |
| 128 | '--date-order', |
| 129 | not_rev(self.base), |
| 130 | self.commit, |
| 131 | '--') |
Shawn O. Pearce | 632768b | 2008-10-23 11:58:52 -0700 | [diff] [blame] | 132 | return self._commit_cache |
| 133 | |
| 134 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 135 | class ReviewableBranch(object): |
| 136 | _commit_cache = None |
Mike Frysinger | 6da1775 | 2019-09-11 18:43:17 -0400 | [diff] [blame] | 137 | _base_exists = None |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 138 | |
| 139 | def __init__(self, project, branch, base): |
| 140 | self.project = project |
| 141 | self.branch = branch |
| 142 | self.base = base |
| 143 | |
| 144 | @property |
| 145 | def name(self): |
| 146 | return self.branch.name |
| 147 | |
| 148 | @property |
| 149 | def commits(self): |
| 150 | if self._commit_cache is None: |
Mike Frysinger | 6da1775 | 2019-09-11 18:43:17 -0400 | [diff] [blame] | 151 | args = ('--abbrev=8', '--abbrev-commit', '--pretty=oneline', '--reverse', |
| 152 | '--date-order', not_rev(self.base), R_HEADS + self.name, '--') |
| 153 | try: |
| 154 | self._commit_cache = self.project.bare_git.rev_list(*args) |
| 155 | except GitError: |
| 156 | # We weren't able to probe the commits for this branch. Was it tracking |
| 157 | # a branch that no longer exists? If so, return no commits. Otherwise, |
| 158 | # rethrow the error as we don't know what's going on. |
| 159 | if self.base_exists: |
| 160 | raise |
| 161 | |
| 162 | self._commit_cache = [] |
| 163 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 164 | return self._commit_cache |
| 165 | |
| 166 | @property |
Shawn O. Pearce | c99883f | 2008-11-11 17:12:43 -0800 | [diff] [blame] | 167 | def unabbrev_commits(self): |
| 168 | r = dict() |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 169 | for commit in self.project.bare_git.rev_list(not_rev(self.base), |
| 170 | R_HEADS + self.name, |
| 171 | '--'): |
Shawn O. Pearce | c99883f | 2008-11-11 17:12:43 -0800 | [diff] [blame] | 172 | r[commit[0:8]] = commit |
| 173 | return r |
| 174 | |
| 175 | @property |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 176 | def date(self): |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 177 | return self.project.bare_git.log('--pretty=format:%cd', |
| 178 | '-n', '1', |
| 179 | R_HEADS + self.name, |
| 180 | '--') |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 181 | |
Mike Frysinger | 6da1775 | 2019-09-11 18:43:17 -0400 | [diff] [blame] | 182 | @property |
| 183 | def base_exists(self): |
| 184 | """Whether the branch we're tracking exists. |
| 185 | |
| 186 | Normally it should, but sometimes branches we track can get deleted. |
| 187 | """ |
| 188 | if self._base_exists is None: |
| 189 | try: |
| 190 | self.project.bare_git.rev_parse('--verify', not_rev(self.base)) |
| 191 | # If we're still here, the base branch exists. |
| 192 | self._base_exists = True |
| 193 | except GitError: |
| 194 | # If we failed to verify, the base branch doesn't exist. |
| 195 | self._base_exists = False |
| 196 | |
| 197 | return self._base_exists |
| 198 | |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 199 | def UploadForReview(self, people, |
| 200 | auto_topic=False, |
Jonathan Nieder | c94d6eb | 2017-08-08 18:34:53 +0000 | [diff] [blame] | 201 | draft=False, |
Changcheng Xiao | 87984c6 | 2017-08-02 16:55:03 +0200 | [diff] [blame] | 202 | private=False, |
Vadim Bendebury | bd8f658 | 2018-10-31 13:48:01 -0700 | [diff] [blame] | 203 | notify=None, |
Changcheng Xiao | 87984c6 | 2017-08-02 16:55:03 +0200 | [diff] [blame] | 204 | wip=False, |
Łukasz Gardoń | bed59ce | 2017-08-08 10:18:11 +0200 | [diff] [blame] | 205 | dest_branch=None, |
Masaya Suzuki | 305a2d0 | 2017-11-13 10:48:34 -0800 | [diff] [blame] | 206 | validate_certs=True, |
| 207 | push_options=None): |
Shawn O. Pearce | c99883f | 2008-11-11 17:12:43 -0800 | [diff] [blame] | 208 | self.project.UploadForReview(self.name, |
Shawn O. Pearce | a5ece0e | 2010-07-15 16:52:42 -0700 | [diff] [blame] | 209 | people, |
Brian Harring | 435370c | 2012-07-28 15:37:04 -0700 | [diff] [blame] | 210 | auto_topic=auto_topic, |
Jonathan Nieder | c94d6eb | 2017-08-08 18:34:53 +0000 | [diff] [blame] | 211 | draft=draft, |
Changcheng Xiao | 87984c6 | 2017-08-02 16:55:03 +0200 | [diff] [blame] | 212 | private=private, |
Vadim Bendebury | bd8f658 | 2018-10-31 13:48:01 -0700 | [diff] [blame] | 213 | notify=notify, |
Changcheng Xiao | 87984c6 | 2017-08-02 16:55:03 +0200 | [diff] [blame] | 214 | wip=wip, |
Łukasz Gardoń | bed59ce | 2017-08-08 10:18:11 +0200 | [diff] [blame] | 215 | dest_branch=dest_branch, |
Masaya Suzuki | 305a2d0 | 2017-11-13 10:48:34 -0800 | [diff] [blame] | 216 | validate_certs=validate_certs, |
| 217 | push_options=push_options) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 218 | |
Ficus Kirkpatrick | bc7ef67 | 2009-05-04 12:45:11 -0700 | [diff] [blame] | 219 | def GetPublishedRefs(self): |
| 220 | refs = {} |
| 221 | output = self.project.bare_git.ls_remote( |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 222 | self.branch.remote.SshReviewUrl(self.project.UserEmail), |
| 223 | 'refs/changes/*') |
Ficus Kirkpatrick | bc7ef67 | 2009-05-04 12:45:11 -0700 | [diff] [blame] | 224 | for line in output.split('\n'): |
| 225 | try: |
| 226 | (sha, ref) = line.split() |
| 227 | refs[sha] = ref |
| 228 | except ValueError: |
| 229 | pass |
| 230 | |
| 231 | return refs |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 232 | |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 233 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 234 | class StatusColoring(Coloring): |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 235 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 236 | def __init__(self, config): |
| 237 | Coloring.__init__(self, config, 'status') |
Anthony King | 7bdac71 | 2014-07-16 12:56:40 +0100 | [diff] [blame] | 238 | self.project = self.printer('header', attr='bold') |
| 239 | self.branch = self.printer('header', attr='bold') |
| 240 | self.nobranch = self.printer('nobranch', fg='red') |
| 241 | self.important = self.printer('important', fg='red') |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 242 | |
Anthony King | 7bdac71 | 2014-07-16 12:56:40 +0100 | [diff] [blame] | 243 | self.added = self.printer('added', fg='green') |
| 244 | self.changed = self.printer('changed', fg='red') |
| 245 | self.untracked = self.printer('untracked', fg='red') |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 246 | |
| 247 | |
| 248 | class DiffColoring(Coloring): |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 249 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 250 | def __init__(self, config): |
| 251 | Coloring.__init__(self, config, 'diff') |
Anthony King | 7bdac71 | 2014-07-16 12:56:40 +0100 | [diff] [blame] | 252 | self.project = self.printer('header', attr='bold') |
Mike Frysinger | 0a9265e | 2019-09-30 23:59:27 -0400 | [diff] [blame] | 253 | self.fail = self.printer('fail', fg='red') |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 254 | |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 255 | |
Anthony King | 7bdac71 | 2014-07-16 12:56:40 +0100 | [diff] [blame] | 256 | class _Annotation(object): |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 257 | |
James W. Mills | 24c1308 | 2012-04-12 15:04:13 -0500 | [diff] [blame] | 258 | def __init__(self, name, value, keep): |
| 259 | self.name = name |
| 260 | self.value = value |
| 261 | self.keep = keep |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 262 | |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 263 | |
Mike Frysinger | e6a202f | 2019-08-02 15:57:57 -0400 | [diff] [blame] | 264 | def _SafeExpandPath(base, subpath, skipfinal=False): |
| 265 | """Make sure |subpath| is completely safe under |base|. |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 266 | |
Mike Frysinger | e6a202f | 2019-08-02 15:57:57 -0400 | [diff] [blame] | 267 | We make sure no intermediate symlinks are traversed, and that the final path |
| 268 | is not a special file (e.g. not a socket or fifo). |
| 269 | |
| 270 | NB: We rely on a number of paths already being filtered out while parsing the |
| 271 | manifest. See the validation logic in manifest_xml.py for more details. |
| 272 | """ |
| 273 | components = subpath.split(os.path.sep) |
| 274 | if skipfinal: |
| 275 | # Whether the caller handles the final component itself. |
| 276 | finalpart = components.pop() |
| 277 | |
| 278 | path = base |
| 279 | for part in components: |
| 280 | if part in {'.', '..'}: |
| 281 | raise ManifestInvalidPathError( |
| 282 | '%s: "%s" not allowed in paths' % (subpath, part)) |
| 283 | |
| 284 | path = os.path.join(path, part) |
| 285 | if platform_utils.islink(path): |
| 286 | raise ManifestInvalidPathError( |
| 287 | '%s: traversing symlinks not allow' % (path,)) |
| 288 | |
| 289 | if os.path.exists(path): |
| 290 | if not os.path.isfile(path) and not platform_utils.isdir(path): |
| 291 | raise ManifestInvalidPathError( |
| 292 | '%s: only regular files & directories allowed' % (path,)) |
| 293 | |
| 294 | if skipfinal: |
| 295 | path = os.path.join(path, finalpart) |
| 296 | |
| 297 | return path |
| 298 | |
| 299 | |
| 300 | class _CopyFile(object): |
| 301 | """Container for <copyfile> manifest element.""" |
| 302 | |
| 303 | def __init__(self, git_worktree, src, topdir, dest): |
| 304 | """Register a <copyfile> request. |
| 305 | |
| 306 | Args: |
| 307 | git_worktree: Absolute path to the git project checkout. |
| 308 | src: Relative path under |git_worktree| of file to read. |
| 309 | topdir: Absolute path to the top of the repo client checkout. |
| 310 | dest: Relative path under |topdir| of file to write. |
| 311 | """ |
| 312 | self.git_worktree = git_worktree |
| 313 | self.topdir = topdir |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 314 | self.src = src |
| 315 | self.dest = dest |
| 316 | |
| 317 | def _Copy(self): |
Mike Frysinger | e6a202f | 2019-08-02 15:57:57 -0400 | [diff] [blame] | 318 | src = _SafeExpandPath(self.git_worktree, self.src) |
| 319 | dest = _SafeExpandPath(self.topdir, self.dest) |
| 320 | |
| 321 | if platform_utils.isdir(src): |
| 322 | raise ManifestInvalidPathError( |
| 323 | '%s: copying from directory not supported' % (self.src,)) |
| 324 | if platform_utils.isdir(dest): |
| 325 | raise ManifestInvalidPathError( |
| 326 | '%s: copying to directory not allowed' % (self.dest,)) |
| 327 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 328 | # copy file if it does not exist or is out of date |
| 329 | if not os.path.exists(dest) or not filecmp.cmp(src, dest): |
| 330 | try: |
| 331 | # remove existing file first, since it might be read-only |
| 332 | if os.path.exists(dest): |
Renaud Paquay | 010fed7 | 2016-11-11 14:25:29 -0800 | [diff] [blame] | 333 | platform_utils.remove(dest) |
Matthew Buckett | 2daf667 | 2009-07-11 09:43:47 -0400 | [diff] [blame] | 334 | else: |
Mickaël Salaün | 2f6ab7f | 2012-09-30 00:37:55 +0200 | [diff] [blame] | 335 | dest_dir = os.path.dirname(dest) |
Renaud Paquay | bed8b62 | 2018-09-27 10:46:58 -0700 | [diff] [blame] | 336 | if not platform_utils.isdir(dest_dir): |
Mickaël Salaün | 2f6ab7f | 2012-09-30 00:37:55 +0200 | [diff] [blame] | 337 | os.makedirs(dest_dir) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 338 | shutil.copy(src, dest) |
| 339 | # make the file read-only |
| 340 | mode = os.stat(dest)[stat.ST_MODE] |
| 341 | mode = mode & ~(stat.S_IWUSR | stat.S_IWGRP | stat.S_IWOTH) |
| 342 | os.chmod(dest, mode) |
| 343 | except IOError: |
Shawn O. Pearce | 4824478 | 2009-04-16 08:25:57 -0700 | [diff] [blame] | 344 | _error('Cannot copy file %s to %s', src, dest) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 345 | |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 346 | |
Anthony King | 7bdac71 | 2014-07-16 12:56:40 +0100 | [diff] [blame] | 347 | class _LinkFile(object): |
Mike Frysinger | e6a202f | 2019-08-02 15:57:57 -0400 | [diff] [blame] | 348 | """Container for <linkfile> manifest element.""" |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 349 | |
Mike Frysinger | e6a202f | 2019-08-02 15:57:57 -0400 | [diff] [blame] | 350 | def __init__(self, git_worktree, src, topdir, dest): |
| 351 | """Register a <linkfile> request. |
| 352 | |
| 353 | Args: |
| 354 | git_worktree: Absolute path to the git project checkout. |
| 355 | src: Target of symlink relative to path under |git_worktree|. |
| 356 | topdir: Absolute path to the top of the repo client checkout. |
| 357 | dest: Relative path under |topdir| of symlink to create. |
| 358 | """ |
Wink Saville | 4c426ef | 2015-06-03 08:05:17 -0700 | [diff] [blame] | 359 | self.git_worktree = git_worktree |
Mike Frysinger | e6a202f | 2019-08-02 15:57:57 -0400 | [diff] [blame] | 360 | self.topdir = topdir |
Jeff Hamilton | e0df232 | 2014-04-21 17:10:59 -0500 | [diff] [blame] | 361 | self.src = src |
| 362 | self.dest = dest |
Jeff Hamilton | e0df232 | 2014-04-21 17:10:59 -0500 | [diff] [blame] | 363 | |
Wink Saville | 4c426ef | 2015-06-03 08:05:17 -0700 | [diff] [blame] | 364 | def __linkIt(self, relSrc, absDest): |
Jeff Hamilton | e0df232 | 2014-04-21 17:10:59 -0500 | [diff] [blame] | 365 | # link file if it does not exist or is out of date |
Renaud Paquay | 227ad2e | 2016-11-01 14:37:13 -0700 | [diff] [blame] | 366 | if not platform_utils.islink(absDest) or (platform_utils.readlink(absDest) != relSrc): |
Jeff Hamilton | e0df232 | 2014-04-21 17:10:59 -0500 | [diff] [blame] | 367 | try: |
| 368 | # remove existing file first, since it might be read-only |
Dan Willemsen | e1e0bd1 | 2015-11-18 16:49:38 -0800 | [diff] [blame] | 369 | if os.path.lexists(absDest): |
Renaud Paquay | 010fed7 | 2016-11-11 14:25:29 -0800 | [diff] [blame] | 370 | platform_utils.remove(absDest) |
Jeff Hamilton | e0df232 | 2014-04-21 17:10:59 -0500 | [diff] [blame] | 371 | else: |
Wink Saville | 4c426ef | 2015-06-03 08:05:17 -0700 | [diff] [blame] | 372 | dest_dir = os.path.dirname(absDest) |
Renaud Paquay | bed8b62 | 2018-09-27 10:46:58 -0700 | [diff] [blame] | 373 | if not platform_utils.isdir(dest_dir): |
Jeff Hamilton | e0df232 | 2014-04-21 17:10:59 -0500 | [diff] [blame] | 374 | os.makedirs(dest_dir) |
Renaud Paquay | d5cec5e | 2016-11-01 11:24:03 -0700 | [diff] [blame] | 375 | platform_utils.symlink(relSrc, absDest) |
Jeff Hamilton | e0df232 | 2014-04-21 17:10:59 -0500 | [diff] [blame] | 376 | except IOError: |
Wink Saville | 4c426ef | 2015-06-03 08:05:17 -0700 | [diff] [blame] | 377 | _error('Cannot link file %s to %s', relSrc, absDest) |
| 378 | |
| 379 | def _Link(self): |
Mike Frysinger | e6a202f | 2019-08-02 15:57:57 -0400 | [diff] [blame] | 380 | """Link the self.src & self.dest paths. |
| 381 | |
| 382 | Handles wild cards on the src linking all of the files in the source in to |
| 383 | the destination directory. |
Wink Saville | 4c426ef | 2015-06-03 08:05:17 -0700 | [diff] [blame] | 384 | """ |
Mike Frysinger | 07392ed | 2020-02-10 21:35:48 -0500 | [diff] [blame] | 385 | # Some people use src="." to create stable links to projects. Lets allow |
| 386 | # that but reject all other uses of "." to keep things simple. |
| 387 | if self.src == '.': |
| 388 | src = self.git_worktree |
| 389 | else: |
| 390 | src = _SafeExpandPath(self.git_worktree, self.src) |
Mike Frysinger | e6a202f | 2019-08-02 15:57:57 -0400 | [diff] [blame] | 391 | |
| 392 | if os.path.exists(src): |
| 393 | # Entity exists so just a simple one to one link operation. |
| 394 | dest = _SafeExpandPath(self.topdir, self.dest, skipfinal=True) |
| 395 | # dest & src are absolute paths at this point. Make sure the target of |
| 396 | # the symlink is relative in the context of the repo client checkout. |
| 397 | relpath = os.path.relpath(src, os.path.dirname(dest)) |
| 398 | self.__linkIt(relpath, dest) |
Wink Saville | 4c426ef | 2015-06-03 08:05:17 -0700 | [diff] [blame] | 399 | else: |
Mike Frysinger | e6a202f | 2019-08-02 15:57:57 -0400 | [diff] [blame] | 400 | dest = _SafeExpandPath(self.topdir, self.dest) |
Wink Saville | 4c426ef | 2015-06-03 08:05:17 -0700 | [diff] [blame] | 401 | # Entity doesn't exist assume there is a wild card |
Mike Frysinger | e6a202f | 2019-08-02 15:57:57 -0400 | [diff] [blame] | 402 | if os.path.exists(dest) and not platform_utils.isdir(dest): |
| 403 | _error('Link error: src with wildcard, %s must be a directory', dest) |
Wink Saville | 4c426ef | 2015-06-03 08:05:17 -0700 | [diff] [blame] | 404 | else: |
Mike Frysinger | e6a202f | 2019-08-02 15:57:57 -0400 | [diff] [blame] | 405 | for absSrcFile in glob.glob(src): |
Wink Saville | 4c426ef | 2015-06-03 08:05:17 -0700 | [diff] [blame] | 406 | # Create a releative path from source dir to destination dir |
| 407 | absSrcDir = os.path.dirname(absSrcFile) |
Mike Frysinger | e6a202f | 2019-08-02 15:57:57 -0400 | [diff] [blame] | 408 | relSrcDir = os.path.relpath(absSrcDir, dest) |
Wink Saville | 4c426ef | 2015-06-03 08:05:17 -0700 | [diff] [blame] | 409 | |
| 410 | # Get the source file name |
| 411 | srcFile = os.path.basename(absSrcFile) |
| 412 | |
| 413 | # Now form the final full paths to srcFile. They will be |
| 414 | # absolute for the desintaiton and relative for the srouce. |
Mike Frysinger | e6a202f | 2019-08-02 15:57:57 -0400 | [diff] [blame] | 415 | absDest = os.path.join(dest, srcFile) |
Wink Saville | 4c426ef | 2015-06-03 08:05:17 -0700 | [diff] [blame] | 416 | relSrc = os.path.join(relSrcDir, srcFile) |
| 417 | self.__linkIt(relSrc, absDest) |
Jeff Hamilton | e0df232 | 2014-04-21 17:10:59 -0500 | [diff] [blame] | 418 | |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 419 | |
Shawn O. Pearce | d1f70d9 | 2009-05-19 14:58:02 -0700 | [diff] [blame] | 420 | class RemoteSpec(object): |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 421 | |
Shawn O. Pearce | d1f70d9 | 2009-05-19 14:58:02 -0700 | [diff] [blame] | 422 | def __init__(self, |
| 423 | name, |
Anthony King | 7bdac71 | 2014-07-16 12:56:40 +0100 | [diff] [blame] | 424 | url=None, |
Steve Rae | d648045 | 2016-08-10 15:00:00 -0700 | [diff] [blame] | 425 | pushUrl=None, |
Anthony King | 7bdac71 | 2014-07-16 12:56:40 +0100 | [diff] [blame] | 426 | review=None, |
Dan Willemsen | 96c2d65 | 2016-04-06 16:03:54 -0700 | [diff] [blame] | 427 | revision=None, |
David Riley | e0684ad | 2017-04-05 00:02:59 -0700 | [diff] [blame] | 428 | orig_name=None, |
| 429 | fetchUrl=None): |
Shawn O. Pearce | d1f70d9 | 2009-05-19 14:58:02 -0700 | [diff] [blame] | 430 | self.name = name |
| 431 | self.url = url |
Steve Rae | d648045 | 2016-08-10 15:00:00 -0700 | [diff] [blame] | 432 | self.pushUrl = pushUrl |
Shawn O. Pearce | d1f70d9 | 2009-05-19 14:58:02 -0700 | [diff] [blame] | 433 | self.review = review |
Anthony King | 36ea2fb | 2014-05-06 11:54:01 +0100 | [diff] [blame] | 434 | self.revision = revision |
Dan Willemsen | 96c2d65 | 2016-04-06 16:03:54 -0700 | [diff] [blame] | 435 | self.orig_name = orig_name |
David Riley | e0684ad | 2017-04-05 00:02:59 -0700 | [diff] [blame] | 436 | self.fetchUrl = fetchUrl |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 437 | |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 438 | |
Doug Anderson | 37282b4 | 2011-03-04 11:54:18 -0800 | [diff] [blame] | 439 | class RepoHook(object): |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 440 | |
Doug Anderson | 37282b4 | 2011-03-04 11:54:18 -0800 | [diff] [blame] | 441 | """A RepoHook contains information about a script to run as a hook. |
| 442 | |
| 443 | Hooks are used to run a python script before running an upload (for instance, |
| 444 | to run presubmit checks). Eventually, we may have hooks for other actions. |
| 445 | |
| 446 | This shouldn't be confused with files in the 'repo/hooks' directory. Those |
| 447 | files are copied into each '.git/hooks' folder for each project. Repo-level |
| 448 | hooks are associated instead with repo actions. |
| 449 | |
| 450 | Hooks are always python. When a hook is run, we will load the hook into the |
| 451 | interpreter and execute its main() function. |
| 452 | """ |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 453 | |
Doug Anderson | 37282b4 | 2011-03-04 11:54:18 -0800 | [diff] [blame] | 454 | def __init__(self, |
| 455 | hook_type, |
| 456 | hooks_project, |
| 457 | topdir, |
Mike Frysinger | 40252c2 | 2016-08-15 21:23:44 -0400 | [diff] [blame] | 458 | manifest_url, |
Doug Anderson | 37282b4 | 2011-03-04 11:54:18 -0800 | [diff] [blame] | 459 | abort_if_user_denies=False): |
| 460 | """RepoHook constructor. |
| 461 | |
| 462 | Params: |
| 463 | hook_type: A string representing the type of hook. This is also used |
| 464 | to figure out the name of the file containing the hook. For |
| 465 | example: 'pre-upload'. |
| 466 | hooks_project: The project containing the repo hooks. If you have a |
| 467 | manifest, this is manifest.repo_hooks_project. OK if this is None, |
| 468 | which will make the hook a no-op. |
| 469 | topdir: Repo's top directory (the one containing the .repo directory). |
| 470 | Scripts will run with CWD as this directory. If you have a manifest, |
| 471 | this is manifest.topdir |
Mike Frysinger | 40252c2 | 2016-08-15 21:23:44 -0400 | [diff] [blame] | 472 | manifest_url: The URL to the manifest git repo. |
Doug Anderson | 37282b4 | 2011-03-04 11:54:18 -0800 | [diff] [blame] | 473 | abort_if_user_denies: If True, we'll throw a HookError() if the user |
| 474 | doesn't allow us to run the hook. |
| 475 | """ |
| 476 | self._hook_type = hook_type |
| 477 | self._hooks_project = hooks_project |
Mike Frysinger | 40252c2 | 2016-08-15 21:23:44 -0400 | [diff] [blame] | 478 | self._manifest_url = manifest_url |
Doug Anderson | 37282b4 | 2011-03-04 11:54:18 -0800 | [diff] [blame] | 479 | self._topdir = topdir |
| 480 | self._abort_if_user_denies = abort_if_user_denies |
| 481 | |
| 482 | # Store the full path to the script for convenience. |
| 483 | if self._hooks_project: |
| 484 | self._script_fullpath = os.path.join(self._hooks_project.worktree, |
| 485 | self._hook_type + '.py') |
| 486 | else: |
| 487 | self._script_fullpath = None |
| 488 | |
| 489 | def _GetHash(self): |
| 490 | """Return a hash of the contents of the hooks directory. |
| 491 | |
| 492 | We'll just use git to do this. This hash has the property that if anything |
| 493 | changes in the directory we will return a different has. |
| 494 | |
| 495 | SECURITY CONSIDERATION: |
| 496 | This hash only represents the contents of files in the hook directory, not |
| 497 | any other files imported or called by hooks. Changes to imported files |
| 498 | can change the script behavior without affecting the hash. |
| 499 | |
| 500 | Returns: |
| 501 | A string representing the hash. This will always be ASCII so that it can |
| 502 | be printed to the user easily. |
| 503 | """ |
| 504 | assert self._hooks_project, "Must have hooks to calculate their hash." |
| 505 | |
| 506 | # We will use the work_git object rather than just calling GetRevisionId(). |
| 507 | # That gives us a hash of the latest checked in version of the files that |
| 508 | # the user will actually be executing. Specifically, GetRevisionId() |
| 509 | # doesn't appear to change even if a user checks out a different version |
| 510 | # of the hooks repo (via git checkout) nor if a user commits their own revs. |
| 511 | # |
| 512 | # NOTE: Local (non-committed) changes will not be factored into this hash. |
| 513 | # I think this is OK, since we're really only worried about warning the user |
| 514 | # about upstream changes. |
| 515 | return self._hooks_project.work_git.rev_parse('HEAD') |
| 516 | |
| 517 | def _GetMustVerb(self): |
| 518 | """Return 'must' if the hook is required; 'should' if not.""" |
| 519 | if self._abort_if_user_denies: |
| 520 | return 'must' |
| 521 | else: |
| 522 | return 'should' |
| 523 | |
| 524 | def _CheckForHookApproval(self): |
| 525 | """Check to see whether this hook has been approved. |
| 526 | |
Mike Frysinger | 40252c2 | 2016-08-15 21:23:44 -0400 | [diff] [blame] | 527 | We'll accept approval of manifest URLs if they're using secure transports. |
| 528 | This way the user can say they trust the manifest hoster. For insecure |
| 529 | hosts, we fall back to checking the hash of the hooks repo. |
Doug Anderson | 37282b4 | 2011-03-04 11:54:18 -0800 | [diff] [blame] | 530 | |
| 531 | Note that we ask permission for each individual hook even though we use |
| 532 | the hash of all hooks when detecting changes. We'd like the user to be |
| 533 | able to approve / deny each hook individually. We only use the hash of all |
| 534 | hooks because there is no other easy way to detect changes to local imports. |
| 535 | |
| 536 | Returns: |
| 537 | True if this hook is approved to run; False otherwise. |
| 538 | |
| 539 | Raises: |
| 540 | HookError: Raised if the user doesn't approve and abort_if_user_denies |
| 541 | was passed to the consturctor. |
| 542 | """ |
Mike Frysinger | 40252c2 | 2016-08-15 21:23:44 -0400 | [diff] [blame] | 543 | if self._ManifestUrlHasSecureScheme(): |
| 544 | return self._CheckForHookApprovalManifest() |
| 545 | else: |
| 546 | return self._CheckForHookApprovalHash() |
| 547 | |
| 548 | def _CheckForHookApprovalHelper(self, subkey, new_val, main_prompt, |
| 549 | changed_prompt): |
| 550 | """Check for approval for a particular attribute and hook. |
| 551 | |
| 552 | Args: |
| 553 | subkey: The git config key under [repo.hooks.<hook_type>] to store the |
| 554 | last approved string. |
| 555 | new_val: The new value to compare against the last approved one. |
| 556 | main_prompt: Message to display to the user to ask for approval. |
| 557 | changed_prompt: Message explaining why we're re-asking for approval. |
| 558 | |
| 559 | Returns: |
| 560 | True if this hook is approved to run; False otherwise. |
| 561 | |
| 562 | Raises: |
| 563 | HookError: Raised if the user doesn't approve and abort_if_user_denies |
| 564 | was passed to the consturctor. |
| 565 | """ |
Doug Anderson | 37282b4 | 2011-03-04 11:54:18 -0800 | [diff] [blame] | 566 | hooks_config = self._hooks_project.config |
Mike Frysinger | 40252c2 | 2016-08-15 21:23:44 -0400 | [diff] [blame] | 567 | git_approval_key = 'repo.hooks.%s.%s' % (self._hook_type, subkey) |
Doug Anderson | 37282b4 | 2011-03-04 11:54:18 -0800 | [diff] [blame] | 568 | |
Mike Frysinger | 40252c2 | 2016-08-15 21:23:44 -0400 | [diff] [blame] | 569 | # Get the last value that the user approved for this hook; may be None. |
| 570 | old_val = hooks_config.GetString(git_approval_key) |
Doug Anderson | 37282b4 | 2011-03-04 11:54:18 -0800 | [diff] [blame] | 571 | |
Mike Frysinger | 40252c2 | 2016-08-15 21:23:44 -0400 | [diff] [blame] | 572 | if old_val is not None: |
Doug Anderson | 37282b4 | 2011-03-04 11:54:18 -0800 | [diff] [blame] | 573 | # User previously approved hook and asked not to be prompted again. |
Mike Frysinger | 40252c2 | 2016-08-15 21:23:44 -0400 | [diff] [blame] | 574 | if new_val == old_val: |
Doug Anderson | 37282b4 | 2011-03-04 11:54:18 -0800 | [diff] [blame] | 575 | # Approval matched. We're done. |
| 576 | return True |
| 577 | else: |
| 578 | # Give the user a reason why we're prompting, since they last told |
| 579 | # us to "never ask again". |
Mike Frysinger | 40252c2 | 2016-08-15 21:23:44 -0400 | [diff] [blame] | 580 | prompt = 'WARNING: %s\n\n' % (changed_prompt,) |
Doug Anderson | 37282b4 | 2011-03-04 11:54:18 -0800 | [diff] [blame] | 581 | else: |
| 582 | prompt = '' |
| 583 | |
| 584 | # Prompt the user if we're not on a tty; on a tty we'll assume "no". |
| 585 | if sys.stdout.isatty(): |
Mike Frysinger | 40252c2 | 2016-08-15 21:23:44 -0400 | [diff] [blame] | 586 | prompt += main_prompt + ' (yes/always/NO)? ' |
Chirayu Desai | 217ea7d | 2013-03-01 19:14:38 +0530 | [diff] [blame] | 587 | response = input(prompt).lower() |
David Pursehouse | 98ffba1 | 2012-11-14 11:18:00 +0900 | [diff] [blame] | 588 | print() |
Doug Anderson | 37282b4 | 2011-03-04 11:54:18 -0800 | [diff] [blame] | 589 | |
| 590 | # User is doing a one-time approval. |
| 591 | if response in ('y', 'yes'): |
| 592 | return True |
Mike Frysinger | 40252c2 | 2016-08-15 21:23:44 -0400 | [diff] [blame] | 593 | elif response == 'always': |
| 594 | hooks_config.SetString(git_approval_key, new_val) |
Doug Anderson | 37282b4 | 2011-03-04 11:54:18 -0800 | [diff] [blame] | 595 | return True |
| 596 | |
| 597 | # For anything else, we'll assume no approval. |
| 598 | if self._abort_if_user_denies: |
| 599 | raise HookError('You must allow the %s hook or use --no-verify.' % |
| 600 | self._hook_type) |
| 601 | |
| 602 | return False |
| 603 | |
Mike Frysinger | 40252c2 | 2016-08-15 21:23:44 -0400 | [diff] [blame] | 604 | def _ManifestUrlHasSecureScheme(self): |
| 605 | """Check if the URI for the manifest is a secure transport.""" |
| 606 | secure_schemes = ('file', 'https', 'ssh', 'persistent-https', 'sso', 'rpc') |
| 607 | parse_results = urllib.parse.urlparse(self._manifest_url) |
| 608 | return parse_results.scheme in secure_schemes |
| 609 | |
| 610 | def _CheckForHookApprovalManifest(self): |
| 611 | """Check whether the user has approved this manifest host. |
| 612 | |
| 613 | Returns: |
| 614 | True if this hook is approved to run; False otherwise. |
| 615 | """ |
| 616 | return self._CheckForHookApprovalHelper( |
| 617 | 'approvedmanifest', |
| 618 | self._manifest_url, |
| 619 | 'Run hook scripts from %s' % (self._manifest_url,), |
| 620 | 'Manifest URL has changed since %s was allowed.' % (self._hook_type,)) |
| 621 | |
| 622 | def _CheckForHookApprovalHash(self): |
| 623 | """Check whether the user has approved the hooks repo. |
| 624 | |
| 625 | Returns: |
| 626 | True if this hook is approved to run; False otherwise. |
| 627 | """ |
| 628 | prompt = ('Repo %s run the script:\n' |
| 629 | ' %s\n' |
| 630 | '\n' |
Jonathan Nieder | 71e4cea | 2016-08-16 12:05:09 -0700 | [diff] [blame] | 631 | 'Do you want to allow this script to run') |
Mike Frysinger | 40252c2 | 2016-08-15 21:23:44 -0400 | [diff] [blame] | 632 | return self._CheckForHookApprovalHelper( |
| 633 | 'approvedhash', |
| 634 | self._GetHash(), |
Jonathan Nieder | 71e4cea | 2016-08-16 12:05:09 -0700 | [diff] [blame] | 635 | prompt % (self._GetMustVerb(), self._script_fullpath), |
Mike Frysinger | 40252c2 | 2016-08-15 21:23:44 -0400 | [diff] [blame] | 636 | 'Scripts have changed since %s was allowed.' % (self._hook_type,)) |
| 637 | |
Mike Frysinger | f7c5160 | 2019-06-18 17:23:39 -0400 | [diff] [blame] | 638 | @staticmethod |
| 639 | def _ExtractInterpFromShebang(data): |
| 640 | """Extract the interpreter used in the shebang. |
| 641 | |
| 642 | Try to locate the interpreter the script is using (ignoring `env`). |
| 643 | |
| 644 | Args: |
| 645 | data: The file content of the script. |
| 646 | |
| 647 | Returns: |
| 648 | The basename of the main script interpreter, or None if a shebang is not |
| 649 | used or could not be parsed out. |
| 650 | """ |
| 651 | firstline = data.splitlines()[:1] |
| 652 | if not firstline: |
| 653 | return None |
| 654 | |
| 655 | # The format here can be tricky. |
| 656 | shebang = firstline[0].strip() |
| 657 | m = re.match(r'^#!\s*([^\s]+)(?:\s+([^\s]+))?', shebang) |
| 658 | if not m: |
| 659 | return None |
| 660 | |
| 661 | # If the using `env`, find the target program. |
| 662 | interp = m.group(1) |
| 663 | if os.path.basename(interp) == 'env': |
| 664 | interp = m.group(2) |
| 665 | |
| 666 | return interp |
| 667 | |
| 668 | def _ExecuteHookViaReexec(self, interp, context, **kwargs): |
| 669 | """Execute the hook script through |interp|. |
| 670 | |
| 671 | Note: Support for this feature should be dropped ~Jun 2021. |
| 672 | |
| 673 | Args: |
| 674 | interp: The Python program to run. |
| 675 | context: Basic Python context to execute the hook inside. |
| 676 | kwargs: Arbitrary arguments to pass to the hook script. |
| 677 | |
| 678 | Raises: |
| 679 | HookError: When the hooks failed for any reason. |
| 680 | """ |
| 681 | # This logic needs to be kept in sync with _ExecuteHookViaImport below. |
| 682 | script = """ |
| 683 | import json, os, sys |
| 684 | path = '''%(path)s''' |
| 685 | kwargs = json.loads('''%(kwargs)s''') |
| 686 | context = json.loads('''%(context)s''') |
| 687 | sys.path.insert(0, os.path.dirname(path)) |
| 688 | data = open(path).read() |
| 689 | exec(compile(data, path, 'exec'), context) |
| 690 | context['main'](**kwargs) |
| 691 | """ % { |
| 692 | 'path': self._script_fullpath, |
| 693 | 'kwargs': json.dumps(kwargs), |
| 694 | 'context': json.dumps(context), |
| 695 | } |
| 696 | |
| 697 | # We pass the script via stdin to avoid OS argv limits. It also makes |
| 698 | # unhandled exception tracebacks less verbose/confusing for users. |
| 699 | cmd = [interp, '-c', 'import sys; exec(sys.stdin.read())'] |
| 700 | proc = subprocess.Popen(cmd, stdin=subprocess.PIPE) |
| 701 | proc.communicate(input=script.encode('utf-8')) |
| 702 | if proc.returncode: |
| 703 | raise HookError('Failed to run %s hook.' % (self._hook_type,)) |
| 704 | |
| 705 | def _ExecuteHookViaImport(self, data, context, **kwargs): |
| 706 | """Execute the hook code in |data| directly. |
| 707 | |
| 708 | Args: |
| 709 | data: The code of the hook to execute. |
| 710 | context: Basic Python context to execute the hook inside. |
| 711 | kwargs: Arbitrary arguments to pass to the hook script. |
| 712 | |
| 713 | Raises: |
| 714 | HookError: When the hooks failed for any reason. |
| 715 | """ |
| 716 | # Exec, storing global context in the context dict. We catch exceptions |
| 717 | # and convert to a HookError w/ just the failing traceback. |
| 718 | try: |
| 719 | exec(compile(data, self._script_fullpath, 'exec'), context) |
| 720 | except Exception: |
| 721 | raise HookError('%s\nFailed to import %s hook; see traceback above.' % |
| 722 | (traceback.format_exc(), self._hook_type)) |
| 723 | |
| 724 | # Running the script should have defined a main() function. |
| 725 | if 'main' not in context: |
| 726 | raise HookError('Missing main() in: "%s"' % self._script_fullpath) |
| 727 | |
| 728 | # Call the main function in the hook. If the hook should cause the |
| 729 | # build to fail, it will raise an Exception. We'll catch that convert |
| 730 | # to a HookError w/ just the failing traceback. |
| 731 | try: |
| 732 | context['main'](**kwargs) |
| 733 | except Exception: |
| 734 | raise HookError('%s\nFailed to run main() for %s hook; see traceback ' |
| 735 | 'above.' % (traceback.format_exc(), self._hook_type)) |
| 736 | |
Doug Anderson | 37282b4 | 2011-03-04 11:54:18 -0800 | [diff] [blame] | 737 | def _ExecuteHook(self, **kwargs): |
| 738 | """Actually execute the given hook. |
| 739 | |
| 740 | This will run the hook's 'main' function in our python interpreter. |
| 741 | |
| 742 | Args: |
| 743 | kwargs: Keyword arguments to pass to the hook. These are often specific |
| 744 | to the hook type. For instance, pre-upload hooks will contain |
| 745 | a project_list. |
| 746 | """ |
| 747 | # Keep sys.path and CWD stashed away so that we can always restore them |
| 748 | # upon function exit. |
| 749 | orig_path = os.getcwd() |
| 750 | orig_syspath = sys.path |
| 751 | |
| 752 | try: |
| 753 | # Always run hooks with CWD as topdir. |
| 754 | os.chdir(self._topdir) |
| 755 | |
| 756 | # Put the hook dir as the first item of sys.path so hooks can do |
| 757 | # relative imports. We want to replace the repo dir as [0] so |
| 758 | # hooks can't import repo files. |
| 759 | sys.path = [os.path.dirname(self._script_fullpath)] + sys.path[1:] |
| 760 | |
Mike Frysinger | f7c5160 | 2019-06-18 17:23:39 -0400 | [diff] [blame] | 761 | # Initial global context for the hook to run within. |
Mike Frysinger | 4aa4b21 | 2016-03-04 15:03:00 -0500 | [diff] [blame] | 762 | context = {'__file__': self._script_fullpath} |
Doug Anderson | 37282b4 | 2011-03-04 11:54:18 -0800 | [diff] [blame] | 763 | |
Doug Anderson | 37282b4 | 2011-03-04 11:54:18 -0800 | [diff] [blame] | 764 | # Add 'hook_should_take_kwargs' to the arguments to be passed to main. |
| 765 | # We don't actually want hooks to define their main with this argument-- |
| 766 | # it's there to remind them that their hook should always take **kwargs. |
| 767 | # For instance, a pre-upload hook should be defined like: |
| 768 | # def main(project_list, **kwargs): |
| 769 | # |
| 770 | # This allows us to later expand the API without breaking old hooks. |
| 771 | kwargs = kwargs.copy() |
| 772 | kwargs['hook_should_take_kwargs'] = True |
| 773 | |
Mike Frysinger | f7c5160 | 2019-06-18 17:23:39 -0400 | [diff] [blame] | 774 | # See what version of python the hook has been written against. |
| 775 | data = open(self._script_fullpath).read() |
| 776 | interp = self._ExtractInterpFromShebang(data) |
| 777 | reexec = False |
| 778 | if interp: |
| 779 | prog = os.path.basename(interp) |
| 780 | if prog.startswith('python2') and sys.version_info.major != 2: |
| 781 | reexec = True |
| 782 | elif prog.startswith('python3') and sys.version_info.major == 2: |
| 783 | reexec = True |
| 784 | |
| 785 | # Attempt to execute the hooks through the requested version of Python. |
| 786 | if reexec: |
| 787 | try: |
| 788 | self._ExecuteHookViaReexec(interp, context, **kwargs) |
| 789 | except OSError as e: |
| 790 | if e.errno == errno.ENOENT: |
| 791 | # We couldn't find the interpreter, so fallback to importing. |
| 792 | reexec = False |
| 793 | else: |
| 794 | raise |
| 795 | |
| 796 | # Run the hook by importing directly. |
| 797 | if not reexec: |
| 798 | self._ExecuteHookViaImport(data, context, **kwargs) |
Doug Anderson | 37282b4 | 2011-03-04 11:54:18 -0800 | [diff] [blame] | 799 | finally: |
| 800 | # Restore sys.path and CWD. |
| 801 | sys.path = orig_syspath |
| 802 | os.chdir(orig_path) |
| 803 | |
| 804 | def Run(self, user_allows_all_hooks, **kwargs): |
| 805 | """Run the hook. |
| 806 | |
| 807 | If the hook doesn't exist (because there is no hooks project or because |
| 808 | this particular hook is not enabled), this is a no-op. |
| 809 | |
| 810 | Args: |
| 811 | user_allows_all_hooks: If True, we will never prompt about running the |
| 812 | hook--we'll just assume it's OK to run it. |
| 813 | kwargs: Keyword arguments to pass to the hook. These are often specific |
| 814 | to the hook type. For instance, pre-upload hooks will contain |
| 815 | a project_list. |
| 816 | |
| 817 | Raises: |
| 818 | HookError: If there was a problem finding the hook or the user declined |
| 819 | to run a required hook (from _CheckForHookApproval). |
| 820 | """ |
| 821 | # No-op if there is no hooks project or if hook is disabled. |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 822 | if ((not self._hooks_project) or (self._hook_type not in |
| 823 | self._hooks_project.enabled_repo_hooks)): |
Doug Anderson | 37282b4 | 2011-03-04 11:54:18 -0800 | [diff] [blame] | 824 | return |
| 825 | |
| 826 | # Bail with a nice error if we can't find the hook. |
| 827 | if not os.path.isfile(self._script_fullpath): |
| 828 | raise HookError('Couldn\'t find repo hook: "%s"' % self._script_fullpath) |
| 829 | |
| 830 | # Make sure the user is OK with running the hook. |
| 831 | if (not user_allows_all_hooks) and (not self._CheckForHookApproval()): |
| 832 | return |
| 833 | |
| 834 | # Run the hook with the same version of python we're using. |
| 835 | self._ExecuteHook(**kwargs) |
| 836 | |
| 837 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 838 | class Project(object): |
Kevin Degi | 384b3c5 | 2014-10-16 16:02:58 -0600 | [diff] [blame] | 839 | # These objects can be shared between several working trees. |
| 840 | shareable_files = ['description', 'info'] |
| 841 | shareable_dirs = ['hooks', 'objects', 'rr-cache', 'svn'] |
| 842 | # These objects can only be used by a single working tree. |
| 843 | working_tree_files = ['config', 'packed-refs', 'shallow'] |
| 844 | working_tree_dirs = ['logs', 'refs'] |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 845 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 846 | def __init__(self, |
| 847 | manifest, |
| 848 | name, |
| 849 | remote, |
| 850 | gitdir, |
David James | 8d20116 | 2013-10-11 17:03:19 -0700 | [diff] [blame] | 851 | objdir, |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 852 | worktree, |
| 853 | relpath, |
Shawn O. Pearce | 3c8dea1 | 2009-05-29 18:38:17 -0700 | [diff] [blame] | 854 | revisionExpr, |
Mike Pontillo | d315382 | 2012-02-28 11:53:24 -0800 | [diff] [blame] | 855 | revisionId, |
Anthony King | 7bdac71 | 2014-07-16 12:56:40 +0100 | [diff] [blame] | 856 | rebase=True, |
| 857 | groups=None, |
| 858 | sync_c=False, |
| 859 | sync_s=False, |
YOUNG HO CHA | a32c92c | 2018-02-14 16:57:31 +0900 | [diff] [blame] | 860 | sync_tags=True, |
Anthony King | 7bdac71 | 2014-07-16 12:56:40 +0100 | [diff] [blame] | 861 | clone_depth=None, |
| 862 | upstream=None, |
| 863 | parent=None, |
| 864 | is_derived=False, |
David Pursehouse | b155354 | 2014-09-04 21:28:09 +0900 | [diff] [blame] | 865 | dest_branch=None, |
Simran Basi | b9a1b73 | 2015-08-20 12:19:28 -0700 | [diff] [blame] | 866 | optimized_fetch=False, |
| 867 | old_revision=None): |
Che-Liang Chiou | b2bd91c | 2012-01-11 11:28:42 +0800 | [diff] [blame] | 868 | """Init a Project object. |
| 869 | |
| 870 | Args: |
| 871 | manifest: The XmlManifest object. |
| 872 | name: The `name` attribute of manifest.xml's project element. |
| 873 | remote: RemoteSpec object specifying its remote's properties. |
| 874 | gitdir: Absolute path of git directory. |
David James | 8d20116 | 2013-10-11 17:03:19 -0700 | [diff] [blame] | 875 | objdir: Absolute path of directory to store git objects. |
Che-Liang Chiou | b2bd91c | 2012-01-11 11:28:42 +0800 | [diff] [blame] | 876 | worktree: Absolute path of git working tree. |
| 877 | relpath: Relative path of git working tree to repo's top directory. |
| 878 | revisionExpr: The `revision` attribute of manifest.xml's project element. |
| 879 | revisionId: git commit id for checking out. |
| 880 | rebase: The `rebase` attribute of manifest.xml's project element. |
| 881 | groups: The `groups` attribute of manifest.xml's project element. |
| 882 | sync_c: The `sync-c` attribute of manifest.xml's project element. |
| 883 | sync_s: The `sync-s` attribute of manifest.xml's project element. |
YOUNG HO CHA | a32c92c | 2018-02-14 16:57:31 +0900 | [diff] [blame] | 884 | sync_tags: The `sync-tags` attribute of manifest.xml's project element. |
Che-Liang Chiou | b2bd91c | 2012-01-11 11:28:42 +0800 | [diff] [blame] | 885 | upstream: The `upstream` attribute of manifest.xml's project element. |
| 886 | parent: The parent Project object. |
| 887 | is_derived: False if the project was explicitly defined in the manifest; |
| 888 | True if the project is a discovered submodule. |
Bryan Jacobs | f609f91 | 2013-05-06 13:36:24 -0400 | [diff] [blame] | 889 | dest_branch: The branch to which to push changes for review by default. |
David Pursehouse | b155354 | 2014-09-04 21:28:09 +0900 | [diff] [blame] | 890 | optimized_fetch: If True, when a project is set to a sha1 revision, only |
| 891 | fetch from the remote if the sha1 is not present locally. |
Simran Basi | b9a1b73 | 2015-08-20 12:19:28 -0700 | [diff] [blame] | 892 | old_revision: saved git commit id for open GITC projects. |
Che-Liang Chiou | b2bd91c | 2012-01-11 11:28:42 +0800 | [diff] [blame] | 893 | """ |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 894 | self.manifest = manifest |
| 895 | self.name = name |
| 896 | self.remote = remote |
Anthony Newnam | df14a70 | 2011-01-09 17:31:57 -0800 | [diff] [blame] | 897 | self.gitdir = gitdir.replace('\\', '/') |
David James | 8d20116 | 2013-10-11 17:03:19 -0700 | [diff] [blame] | 898 | self.objdir = objdir.replace('\\', '/') |
Shawn O. Pearce | 0ce6ca9 | 2011-01-10 13:26:01 -0800 | [diff] [blame] | 899 | if worktree: |
Renaud Paquay | fef9f21 | 2016-11-01 18:28:01 -0700 | [diff] [blame] | 900 | self.worktree = os.path.normpath(worktree).replace('\\', '/') |
Shawn O. Pearce | 0ce6ca9 | 2011-01-10 13:26:01 -0800 | [diff] [blame] | 901 | else: |
| 902 | self.worktree = None |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 903 | self.relpath = relpath |
Shawn O. Pearce | 3c8dea1 | 2009-05-29 18:38:17 -0700 | [diff] [blame] | 904 | self.revisionExpr = revisionExpr |
| 905 | |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 906 | if revisionId is None \ |
| 907 | and revisionExpr \ |
| 908 | and IsId(revisionExpr): |
Shawn O. Pearce | 3c8dea1 | 2009-05-29 18:38:17 -0700 | [diff] [blame] | 909 | self.revisionId = revisionExpr |
| 910 | else: |
| 911 | self.revisionId = revisionId |
| 912 | |
Mike Pontillo | d315382 | 2012-02-28 11:53:24 -0800 | [diff] [blame] | 913 | self.rebase = rebase |
Colin Cross | 5acde75 | 2012-03-28 20:15:45 -0700 | [diff] [blame] | 914 | self.groups = groups |
Anatol Pomazau | 79770d2 | 2012-04-20 14:41:59 -0700 | [diff] [blame] | 915 | self.sync_c = sync_c |
Che-Liang Chiou | b2bd91c | 2012-01-11 11:28:42 +0800 | [diff] [blame] | 916 | self.sync_s = sync_s |
YOUNG HO CHA | a32c92c | 2018-02-14 16:57:31 +0900 | [diff] [blame] | 917 | self.sync_tags = sync_tags |
David Pursehouse | ede7f12 | 2012-11-27 22:25:30 +0900 | [diff] [blame] | 918 | self.clone_depth = clone_depth |
Brian Harring | 14a6674 | 2012-09-28 20:21:57 -0700 | [diff] [blame] | 919 | self.upstream = upstream |
Che-Liang Chiou | b2bd91c | 2012-01-11 11:28:42 +0800 | [diff] [blame] | 920 | self.parent = parent |
| 921 | self.is_derived = is_derived |
David Pursehouse | b155354 | 2014-09-04 21:28:09 +0900 | [diff] [blame] | 922 | self.optimized_fetch = optimized_fetch |
Che-Liang Chiou | b2bd91c | 2012-01-11 11:28:42 +0800 | [diff] [blame] | 923 | self.subprojects = [] |
Mike Pontillo | d315382 | 2012-02-28 11:53:24 -0800 | [diff] [blame] | 924 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 925 | self.snapshots = {} |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 926 | self.copyfiles = [] |
Jeff Hamilton | e0df232 | 2014-04-21 17:10:59 -0500 | [diff] [blame] | 927 | self.linkfiles = [] |
James W. Mills | 24c1308 | 2012-04-12 15:04:13 -0500 | [diff] [blame] | 928 | self.annotations = [] |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 929 | self.config = GitConfig.ForRepository(gitdir=self.gitdir, |
| 930 | defaults=self.manifest.globalConfig) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 931 | |
Shawn O. Pearce | e284ad1 | 2008-11-04 07:37:10 -0800 | [diff] [blame] | 932 | if self.worktree: |
David James | 8d20116 | 2013-10-11 17:03:19 -0700 | [diff] [blame] | 933 | self.work_git = self._GitGetByExec(self, bare=False, gitdir=gitdir) |
Shawn O. Pearce | e284ad1 | 2008-11-04 07:37:10 -0800 | [diff] [blame] | 934 | else: |
| 935 | self.work_git = None |
David James | 8d20116 | 2013-10-11 17:03:19 -0700 | [diff] [blame] | 936 | self.bare_git = self._GitGetByExec(self, bare=True, gitdir=gitdir) |
Shawn O. Pearce | d237b69 | 2009-04-17 18:49:50 -0700 | [diff] [blame] | 937 | self.bare_ref = GitRefs(gitdir) |
David James | 8d20116 | 2013-10-11 17:03:19 -0700 | [diff] [blame] | 938 | self.bare_objdir = self._GitGetByExec(self, bare=True, gitdir=objdir) |
Bryan Jacobs | f609f91 | 2013-05-06 13:36:24 -0400 | [diff] [blame] | 939 | self.dest_branch = dest_branch |
Simran Basi | b9a1b73 | 2015-08-20 12:19:28 -0700 | [diff] [blame] | 940 | self.old_revision = old_revision |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 941 | |
Doug Anderson | 37282b4 | 2011-03-04 11:54:18 -0800 | [diff] [blame] | 942 | # This will be filled in if a project is later identified to be the |
| 943 | # project containing repo hooks. |
| 944 | self.enabled_repo_hooks = [] |
| 945 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 946 | @property |
Che-Liang Chiou | b2bd91c | 2012-01-11 11:28:42 +0800 | [diff] [blame] | 947 | def Derived(self): |
| 948 | return self.is_derived |
| 949 | |
| 950 | @property |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 951 | def Exists(self): |
Renaud Paquay | bed8b62 | 2018-09-27 10:46:58 -0700 | [diff] [blame] | 952 | return platform_utils.isdir(self.gitdir) and platform_utils.isdir(self.objdir) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 953 | |
| 954 | @property |
| 955 | def CurrentBranch(self): |
| 956 | """Obtain the name of the currently checked out branch. |
Mike Frysinger | c8290ad | 2019-10-01 01:07:11 -0400 | [diff] [blame] | 957 | |
| 958 | The branch name omits the 'refs/heads/' prefix. |
| 959 | None is returned if the project is on a detached HEAD, or if the work_git is |
| 960 | otheriwse inaccessible (e.g. an incomplete sync). |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 961 | """ |
Mike Frysinger | c8290ad | 2019-10-01 01:07:11 -0400 | [diff] [blame] | 962 | try: |
| 963 | b = self.work_git.GetHead() |
| 964 | except NoManifestException: |
| 965 | # If the local checkout is in a bad state, don't barf. Let the callers |
| 966 | # process this like the head is unreadable. |
| 967 | return None |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 968 | if b.startswith(R_HEADS): |
| 969 | return b[len(R_HEADS):] |
| 970 | return None |
| 971 | |
Shawn O. Pearce | 3d2cdd0 | 2009-04-18 15:26:10 -0700 | [diff] [blame] | 972 | def IsRebaseInProgress(self): |
| 973 | w = self.worktree |
| 974 | g = os.path.join(w, '.git') |
| 975 | return os.path.exists(os.path.join(g, 'rebase-apply')) \ |
| 976 | or os.path.exists(os.path.join(g, 'rebase-merge')) \ |
| 977 | or os.path.exists(os.path.join(w, '.dotest')) |
Julius Gustavsson | 0cb1b3f | 2010-06-17 17:55:02 +0200 | [diff] [blame] | 978 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 979 | def IsDirty(self, consider_untracked=True): |
| 980 | """Is the working directory modified in some way? |
| 981 | """ |
| 982 | self.work_git.update_index('-q', |
| 983 | '--unmerged', |
| 984 | '--ignore-missing', |
| 985 | '--refresh') |
David Pursehouse | 8f62fb7 | 2012-11-14 12:09:38 +0900 | [diff] [blame] | 986 | if self.work_git.DiffZ('diff-index', '-M', '--cached', HEAD): |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 987 | return True |
| 988 | if self.work_git.DiffZ('diff-files'): |
| 989 | return True |
| 990 | if consider_untracked and self.work_git.LsOthers(): |
| 991 | return True |
| 992 | return False |
| 993 | |
| 994 | _userident_name = None |
| 995 | _userident_email = None |
| 996 | |
| 997 | @property |
| 998 | def UserName(self): |
| 999 | """Obtain the user's personal name. |
| 1000 | """ |
| 1001 | if self._userident_name is None: |
| 1002 | self._LoadUserIdentity() |
| 1003 | return self._userident_name |
| 1004 | |
| 1005 | @property |
| 1006 | def UserEmail(self): |
| 1007 | """Obtain the user's email address. This is very likely |
| 1008 | to be their Gerrit login. |
| 1009 | """ |
| 1010 | if self._userident_email is None: |
| 1011 | self._LoadUserIdentity() |
| 1012 | return self._userident_email |
| 1013 | |
| 1014 | def _LoadUserIdentity(self): |
David Pursehouse | c1b86a2 | 2012-11-14 11:36:51 +0900 | [diff] [blame] | 1015 | u = self.bare_git.var('GIT_COMMITTER_IDENT') |
| 1016 | m = re.compile("^(.*) <([^>]*)> ").match(u) |
| 1017 | if m: |
| 1018 | self._userident_name = m.group(1) |
| 1019 | self._userident_email = m.group(2) |
| 1020 | else: |
| 1021 | self._userident_name = '' |
| 1022 | self._userident_email = '' |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1023 | |
| 1024 | def GetRemote(self, name): |
| 1025 | """Get the configuration for a single remote. |
| 1026 | """ |
| 1027 | return self.config.GetRemote(name) |
| 1028 | |
| 1029 | def GetBranch(self, name): |
| 1030 | """Get the configuration for a single branch. |
| 1031 | """ |
| 1032 | return self.config.GetBranch(name) |
| 1033 | |
Shawn O. Pearce | 27b0732 | 2009-04-10 16:02:48 -0700 | [diff] [blame] | 1034 | def GetBranches(self): |
| 1035 | """Get all existing local branches. |
| 1036 | """ |
| 1037 | current = self.CurrentBranch |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 1038 | all_refs = self._allrefs |
Shawn O. Pearce | 27b0732 | 2009-04-10 16:02:48 -0700 | [diff] [blame] | 1039 | heads = {} |
Shawn O. Pearce | 27b0732 | 2009-04-10 16:02:48 -0700 | [diff] [blame] | 1040 | |
Chirayu Desai | 217ea7d | 2013-03-01 19:14:38 +0530 | [diff] [blame] | 1041 | for name, ref_id in all_refs.items(): |
Shawn O. Pearce | 27b0732 | 2009-04-10 16:02:48 -0700 | [diff] [blame] | 1042 | if name.startswith(R_HEADS): |
| 1043 | name = name[len(R_HEADS):] |
| 1044 | b = self.GetBranch(name) |
| 1045 | b.current = name == current |
| 1046 | b.published = None |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 1047 | b.revision = ref_id |
Shawn O. Pearce | 27b0732 | 2009-04-10 16:02:48 -0700 | [diff] [blame] | 1048 | heads[name] = b |
| 1049 | |
Chirayu Desai | 217ea7d | 2013-03-01 19:14:38 +0530 | [diff] [blame] | 1050 | for name, ref_id in all_refs.items(): |
Shawn O. Pearce | 27b0732 | 2009-04-10 16:02:48 -0700 | [diff] [blame] | 1051 | if name.startswith(R_PUB): |
| 1052 | name = name[len(R_PUB):] |
| 1053 | b = heads.get(name) |
| 1054 | if b: |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 1055 | b.published = ref_id |
Shawn O. Pearce | 27b0732 | 2009-04-10 16:02:48 -0700 | [diff] [blame] | 1056 | |
| 1057 | return heads |
| 1058 | |
Colin Cross | 5acde75 | 2012-03-28 20:15:45 -0700 | [diff] [blame] | 1059 | def MatchesGroups(self, manifest_groups): |
| 1060 | """Returns true if the manifest groups specified at init should cause |
| 1061 | this project to be synced. |
| 1062 | Prefixing a manifest group with "-" inverts the meaning of a group. |
Conley Owens | bb1b5f5 | 2012-08-13 13:11:18 -0700 | [diff] [blame] | 1063 | All projects are implicitly labelled with "all". |
Conley Owens | 971de8e | 2012-04-16 10:36:08 -0700 | [diff] [blame] | 1064 | |
| 1065 | labels are resolved in order. In the example case of |
Conley Owens | bb1b5f5 | 2012-08-13 13:11:18 -0700 | [diff] [blame] | 1066 | project_groups: "all,group1,group2" |
Conley Owens | 971de8e | 2012-04-16 10:36:08 -0700 | [diff] [blame] | 1067 | manifest_groups: "-group1,group2" |
| 1068 | the project will be matched. |
David Holmer | 0a1c6a1 | 2012-11-14 19:19:00 -0500 | [diff] [blame] | 1069 | |
| 1070 | The special manifest group "default" will match any project that |
| 1071 | does not have the special project group "notdefault" |
Colin Cross | 5acde75 | 2012-03-28 20:15:45 -0700 | [diff] [blame] | 1072 | """ |
David Holmer | 0a1c6a1 | 2012-11-14 19:19:00 -0500 | [diff] [blame] | 1073 | expanded_manifest_groups = manifest_groups or ['default'] |
Conley Owens | bb1b5f5 | 2012-08-13 13:11:18 -0700 | [diff] [blame] | 1074 | expanded_project_groups = ['all'] + (self.groups or []) |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 1075 | if 'notdefault' not in expanded_project_groups: |
David Holmer | 0a1c6a1 | 2012-11-14 19:19:00 -0500 | [diff] [blame] | 1076 | expanded_project_groups += ['default'] |
Conley Owens | bb1b5f5 | 2012-08-13 13:11:18 -0700 | [diff] [blame] | 1077 | |
Conley Owens | 971de8e | 2012-04-16 10:36:08 -0700 | [diff] [blame] | 1078 | matched = False |
Conley Owens | bb1b5f5 | 2012-08-13 13:11:18 -0700 | [diff] [blame] | 1079 | for group in expanded_manifest_groups: |
| 1080 | if group.startswith('-') and group[1:] in expanded_project_groups: |
Conley Owens | 971de8e | 2012-04-16 10:36:08 -0700 | [diff] [blame] | 1081 | matched = False |
Conley Owens | bb1b5f5 | 2012-08-13 13:11:18 -0700 | [diff] [blame] | 1082 | elif group in expanded_project_groups: |
Conley Owens | 971de8e | 2012-04-16 10:36:08 -0700 | [diff] [blame] | 1083 | matched = True |
Colin Cross | 5acde75 | 2012-03-28 20:15:45 -0700 | [diff] [blame] | 1084 | |
Conley Owens | 971de8e | 2012-04-16 10:36:08 -0700 | [diff] [blame] | 1085 | return matched |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1086 | |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 1087 | # Status Display ## |
Vadim Bendebury | 14e134d | 2014-10-05 15:40:30 -0700 | [diff] [blame] | 1088 | def UncommitedFiles(self, get_all=True): |
| 1089 | """Returns a list of strings, uncommitted files in the git tree. |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1090 | |
Vadim Bendebury | 14e134d | 2014-10-05 15:40:30 -0700 | [diff] [blame] | 1091 | Args: |
| 1092 | get_all: a boolean, if True - get information about all different |
| 1093 | uncommitted files. If False - return as soon as any kind of |
| 1094 | uncommitted files is detected. |
Anthony Newnam | cc50bac | 2010-04-08 10:28:59 -0500 | [diff] [blame] | 1095 | """ |
Vadim Bendebury | 14e134d | 2014-10-05 15:40:30 -0700 | [diff] [blame] | 1096 | details = [] |
Anthony Newnam | cc50bac | 2010-04-08 10:28:59 -0500 | [diff] [blame] | 1097 | self.work_git.update_index('-q', |
| 1098 | '--unmerged', |
| 1099 | '--ignore-missing', |
| 1100 | '--refresh') |
| 1101 | if self.IsRebaseInProgress(): |
Vadim Bendebury | 14e134d | 2014-10-05 15:40:30 -0700 | [diff] [blame] | 1102 | details.append("rebase in progress") |
| 1103 | if not get_all: |
| 1104 | return details |
Anthony Newnam | cc50bac | 2010-04-08 10:28:59 -0500 | [diff] [blame] | 1105 | |
Vadim Bendebury | 14e134d | 2014-10-05 15:40:30 -0700 | [diff] [blame] | 1106 | changes = self.work_git.DiffZ('diff-index', '--cached', HEAD).keys() |
| 1107 | if changes: |
| 1108 | details.extend(changes) |
| 1109 | if not get_all: |
| 1110 | return details |
Anthony Newnam | cc50bac | 2010-04-08 10:28:59 -0500 | [diff] [blame] | 1111 | |
Vadim Bendebury | 14e134d | 2014-10-05 15:40:30 -0700 | [diff] [blame] | 1112 | changes = self.work_git.DiffZ('diff-files').keys() |
| 1113 | if changes: |
| 1114 | details.extend(changes) |
| 1115 | if not get_all: |
| 1116 | return details |
Anthony Newnam | cc50bac | 2010-04-08 10:28:59 -0500 | [diff] [blame] | 1117 | |
Vadim Bendebury | 14e134d | 2014-10-05 15:40:30 -0700 | [diff] [blame] | 1118 | changes = self.work_git.LsOthers() |
| 1119 | if changes: |
| 1120 | details.extend(changes) |
Anthony Newnam | cc50bac | 2010-04-08 10:28:59 -0500 | [diff] [blame] | 1121 | |
Vadim Bendebury | 14e134d | 2014-10-05 15:40:30 -0700 | [diff] [blame] | 1122 | return details |
| 1123 | |
| 1124 | def HasChanges(self): |
| 1125 | """Returns true if there are uncommitted changes. |
| 1126 | """ |
| 1127 | if self.UncommitedFiles(get_all=False): |
| 1128 | return True |
| 1129 | else: |
| 1130 | return False |
Anthony Newnam | cc50bac | 2010-04-08 10:28:59 -0500 | [diff] [blame] | 1131 | |
Andrew Wheeler | 4d5bb68 | 2012-02-27 13:52:22 -0600 | [diff] [blame] | 1132 | def PrintWorkTreeStatus(self, output_redir=None, quiet=False): |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1133 | """Prints the status of the repository to stdout. |
Terence Haddock | 4655e81 | 2011-03-31 12:33:34 +0200 | [diff] [blame] | 1134 | |
| 1135 | Args: |
Rostislav Krasny | 0bcc2d2 | 2020-01-25 14:49:14 +0200 | [diff] [blame] | 1136 | output_redir: If specified, redirect the output to this object. |
Andrew Wheeler | 4d5bb68 | 2012-02-27 13:52:22 -0600 | [diff] [blame] | 1137 | quiet: If True then only print the project name. Do not print |
| 1138 | the modified files, branch name, etc. |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1139 | """ |
Renaud Paquay | bed8b62 | 2018-09-27 10:46:58 -0700 | [diff] [blame] | 1140 | if not platform_utils.isdir(self.worktree): |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 1141 | if output_redir is None: |
Terence Haddock | 4655e81 | 2011-03-31 12:33:34 +0200 | [diff] [blame] | 1142 | output_redir = sys.stdout |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 1143 | print(file=output_redir) |
| 1144 | print('project %s/' % self.relpath, file=output_redir) |
| 1145 | print(' missing (run "repo sync")', file=output_redir) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1146 | return |
| 1147 | |
| 1148 | self.work_git.update_index('-q', |
| 1149 | '--unmerged', |
| 1150 | '--ignore-missing', |
| 1151 | '--refresh') |
Shawn O. Pearce | 3d2cdd0 | 2009-04-18 15:26:10 -0700 | [diff] [blame] | 1152 | rb = self.IsRebaseInProgress() |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1153 | di = self.work_git.DiffZ('diff-index', '-M', '--cached', HEAD) |
| 1154 | df = self.work_git.DiffZ('diff-files') |
| 1155 | do = self.work_git.LsOthers() |
Ali Utku Selen | 76abcc1 | 2012-01-25 10:51:12 +0100 | [diff] [blame] | 1156 | if not rb and not di and not df and not do and not self.CurrentBranch: |
Shawn O. Pearce | 161f445 | 2009-04-10 17:41:44 -0700 | [diff] [blame] | 1157 | return 'CLEAN' |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1158 | |
| 1159 | out = StatusColoring(self.config) |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 1160 | if output_redir is not None: |
Terence Haddock | 4655e81 | 2011-03-31 12:33:34 +0200 | [diff] [blame] | 1161 | out.redirect(output_redir) |
Jakub Vrana | 0402cd8 | 2014-09-09 15:39:15 -0700 | [diff] [blame] | 1162 | out.project('project %-40s', self.relpath + '/ ') |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1163 | |
Andrew Wheeler | 4d5bb68 | 2012-02-27 13:52:22 -0600 | [diff] [blame] | 1164 | if quiet: |
| 1165 | out.nl() |
| 1166 | return 'DIRTY' |
| 1167 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1168 | branch = self.CurrentBranch |
| 1169 | if branch is None: |
| 1170 | out.nobranch('(*** NO BRANCH ***)') |
| 1171 | else: |
| 1172 | out.branch('branch %s', branch) |
| 1173 | out.nl() |
| 1174 | |
Shawn O. Pearce | 3d2cdd0 | 2009-04-18 15:26:10 -0700 | [diff] [blame] | 1175 | if rb: |
| 1176 | out.important('prior sync failed; rebase still in progress') |
| 1177 | out.nl() |
| 1178 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1179 | paths = list() |
| 1180 | paths.extend(di.keys()) |
| 1181 | paths.extend(df.keys()) |
| 1182 | paths.extend(do) |
| 1183 | |
Chirayu Desai | 217ea7d | 2013-03-01 19:14:38 +0530 | [diff] [blame] | 1184 | for p in sorted(set(paths)): |
David Pursehouse | 5c6eeac | 2012-10-11 16:44:48 +0900 | [diff] [blame] | 1185 | try: |
| 1186 | i = di[p] |
| 1187 | except KeyError: |
| 1188 | i = None |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1189 | |
David Pursehouse | 5c6eeac | 2012-10-11 16:44:48 +0900 | [diff] [blame] | 1190 | try: |
| 1191 | f = df[p] |
| 1192 | except KeyError: |
| 1193 | f = None |
Julius Gustavsson | 0cb1b3f | 2010-06-17 17:55:02 +0200 | [diff] [blame] | 1194 | |
David Pursehouse | 5c6eeac | 2012-10-11 16:44:48 +0900 | [diff] [blame] | 1195 | if i: |
| 1196 | i_status = i.status.upper() |
| 1197 | else: |
| 1198 | i_status = '-' |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1199 | |
David Pursehouse | 5c6eeac | 2012-10-11 16:44:48 +0900 | [diff] [blame] | 1200 | if f: |
| 1201 | f_status = f.status.lower() |
| 1202 | else: |
| 1203 | f_status = '-' |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1204 | |
| 1205 | if i and i.src_path: |
Shawn O. Pearce | fe08675 | 2009-03-03 13:49:48 -0800 | [diff] [blame] | 1206 | line = ' %s%s\t%s => %s (%s%%)' % (i_status, f_status, |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 1207 | i.src_path, p, i.level) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1208 | else: |
| 1209 | line = ' %s%s\t%s' % (i_status, f_status, p) |
| 1210 | |
| 1211 | if i and not f: |
| 1212 | out.added('%s', line) |
| 1213 | elif (i and f) or (not i and f): |
| 1214 | out.changed('%s', line) |
| 1215 | elif not i and not f: |
| 1216 | out.untracked('%s', line) |
| 1217 | else: |
| 1218 | out.write('%s', line) |
| 1219 | out.nl() |
Terence Haddock | 4655e81 | 2011-03-31 12:33:34 +0200 | [diff] [blame] | 1220 | |
Shawn O. Pearce | 161f445 | 2009-04-10 17:41:44 -0700 | [diff] [blame] | 1221 | return 'DIRTY' |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1222 | |
pelya | d67872d | 2012-03-28 14:49:58 +0300 | [diff] [blame] | 1223 | def PrintWorkTreeDiff(self, absolute_paths=False): |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1224 | """Prints the status of the repository to stdout. |
| 1225 | """ |
| 1226 | out = DiffColoring(self.config) |
| 1227 | cmd = ['diff'] |
| 1228 | if out.is_on: |
| 1229 | cmd.append('--color') |
| 1230 | cmd.append(HEAD) |
pelya | d67872d | 2012-03-28 14:49:58 +0300 | [diff] [blame] | 1231 | if absolute_paths: |
| 1232 | cmd.append('--src-prefix=a/%s/' % self.relpath) |
| 1233 | cmd.append('--dst-prefix=b/%s/' % self.relpath) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1234 | cmd.append('--') |
Mike Frysinger | 0a9265e | 2019-09-30 23:59:27 -0400 | [diff] [blame] | 1235 | try: |
| 1236 | p = GitCommand(self, |
| 1237 | cmd, |
| 1238 | capture_stdout=True, |
| 1239 | capture_stderr=True) |
| 1240 | except GitError as e: |
| 1241 | out.nl() |
| 1242 | out.project('project %s/' % self.relpath) |
| 1243 | out.nl() |
| 1244 | out.fail('%s', str(e)) |
| 1245 | out.nl() |
| 1246 | return False |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1247 | has_diff = False |
| 1248 | for line in p.process.stdout: |
Mike Frysinger | 600f492 | 2019-08-03 02:14:28 -0400 | [diff] [blame] | 1249 | if not hasattr(line, 'encode'): |
| 1250 | line = line.decode() |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1251 | if not has_diff: |
| 1252 | out.nl() |
| 1253 | out.project('project %s/' % self.relpath) |
| 1254 | out.nl() |
| 1255 | has_diff = True |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 1256 | print(line[:-1]) |
Mike Frysinger | 0a9265e | 2019-09-30 23:59:27 -0400 | [diff] [blame] | 1257 | return p.Wait() == 0 |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1258 | |
| 1259 | |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 1260 | # Publish / Upload ## |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1261 | |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 1262 | def WasPublished(self, branch, all_refs=None): |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1263 | """Was the branch published (uploaded) for code review? |
| 1264 | If so, returns the SHA-1 hash of the last published |
| 1265 | state for the branch. |
| 1266 | """ |
Shawn O. Pearce | fbcde47 | 2009-04-17 20:58:02 -0700 | [diff] [blame] | 1267 | key = R_PUB + branch |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 1268 | if all_refs is None: |
Shawn O. Pearce | fbcde47 | 2009-04-17 20:58:02 -0700 | [diff] [blame] | 1269 | try: |
| 1270 | return self.bare_git.rev_parse(key) |
| 1271 | except GitError: |
| 1272 | return None |
| 1273 | else: |
| 1274 | try: |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 1275 | return all_refs[key] |
Shawn O. Pearce | fbcde47 | 2009-04-17 20:58:02 -0700 | [diff] [blame] | 1276 | except KeyError: |
| 1277 | return None |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1278 | |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 1279 | def CleanPublishedCache(self, all_refs=None): |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1280 | """Prunes any stale published refs. |
| 1281 | """ |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 1282 | if all_refs is None: |
| 1283 | all_refs = self._allrefs |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1284 | heads = set() |
| 1285 | canrm = {} |
Chirayu Desai | 217ea7d | 2013-03-01 19:14:38 +0530 | [diff] [blame] | 1286 | for name, ref_id in all_refs.items(): |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1287 | if name.startswith(R_HEADS): |
| 1288 | heads.add(name) |
| 1289 | elif name.startswith(R_PUB): |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 1290 | canrm[name] = ref_id |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1291 | |
Chirayu Desai | 217ea7d | 2013-03-01 19:14:38 +0530 | [diff] [blame] | 1292 | for name, ref_id in canrm.items(): |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1293 | n = name[len(R_PUB):] |
| 1294 | if R_HEADS + n not in heads: |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 1295 | self.bare_git.DeleteRef(name, ref_id) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1296 | |
Mandeep Singh Baines | d6c93a2 | 2011-05-26 10:34:11 -0700 | [diff] [blame] | 1297 | def GetUploadableBranches(self, selected_branch=None): |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1298 | """List any branches which can be uploaded for review. |
| 1299 | """ |
| 1300 | heads = {} |
| 1301 | pubed = {} |
| 1302 | |
Chirayu Desai | 217ea7d | 2013-03-01 19:14:38 +0530 | [diff] [blame] | 1303 | for name, ref_id in self._allrefs.items(): |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1304 | if name.startswith(R_HEADS): |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 1305 | heads[name[len(R_HEADS):]] = ref_id |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1306 | elif name.startswith(R_PUB): |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 1307 | pubed[name[len(R_PUB):]] = ref_id |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1308 | |
| 1309 | ready = [] |
Chirayu Desai | 217ea7d | 2013-03-01 19:14:38 +0530 | [diff] [blame] | 1310 | for branch, ref_id in heads.items(): |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 1311 | if branch in pubed and pubed[branch] == ref_id: |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1312 | continue |
Mandeep Singh Baines | d6c93a2 | 2011-05-26 10:34:11 -0700 | [diff] [blame] | 1313 | if selected_branch and branch != selected_branch: |
| 1314 | continue |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1315 | |
Shawn O. Pearce | 35f2596 | 2008-11-11 17:03:13 -0800 | [diff] [blame] | 1316 | rb = self.GetUploadableBranch(branch) |
| 1317 | if rb: |
| 1318 | ready.append(rb) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1319 | return ready |
| 1320 | |
Shawn O. Pearce | 35f2596 | 2008-11-11 17:03:13 -0800 | [diff] [blame] | 1321 | def GetUploadableBranch(self, branch_name): |
| 1322 | """Get a single uploadable branch, or None. |
| 1323 | """ |
| 1324 | branch = self.GetBranch(branch_name) |
| 1325 | base = branch.LocalMerge |
| 1326 | if branch.LocalMerge: |
| 1327 | rb = ReviewableBranch(self, branch, base) |
| 1328 | if rb.commits: |
| 1329 | return rb |
| 1330 | return None |
| 1331 | |
Shawn O. Pearce | a5ece0e | 2010-07-15 16:52:42 -0700 | [diff] [blame] | 1332 | def UploadForReview(self, branch=None, |
Anthony King | 7bdac71 | 2014-07-16 12:56:40 +0100 | [diff] [blame] | 1333 | people=([], []), |
Brian Harring | 435370c | 2012-07-28 15:37:04 -0700 | [diff] [blame] | 1334 | auto_topic=False, |
Jonathan Nieder | c94d6eb | 2017-08-08 18:34:53 +0000 | [diff] [blame] | 1335 | draft=False, |
Changcheng Xiao | 87984c6 | 2017-08-02 16:55:03 +0200 | [diff] [blame] | 1336 | private=False, |
Vadim Bendebury | bd8f658 | 2018-10-31 13:48:01 -0700 | [diff] [blame] | 1337 | notify=None, |
Changcheng Xiao | 87984c6 | 2017-08-02 16:55:03 +0200 | [diff] [blame] | 1338 | wip=False, |
Łukasz Gardoń | bed59ce | 2017-08-08 10:18:11 +0200 | [diff] [blame] | 1339 | dest_branch=None, |
Masaya Suzuki | 305a2d0 | 2017-11-13 10:48:34 -0800 | [diff] [blame] | 1340 | validate_certs=True, |
| 1341 | push_options=None): |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1342 | """Uploads the named branch for code review. |
| 1343 | """ |
| 1344 | if branch is None: |
| 1345 | branch = self.CurrentBranch |
| 1346 | if branch is None: |
| 1347 | raise GitError('not currently on a branch') |
| 1348 | |
| 1349 | branch = self.GetBranch(branch) |
| 1350 | if not branch.LocalMerge: |
| 1351 | raise GitError('branch %s does not track a remote' % branch.name) |
| 1352 | if not branch.remote.review: |
| 1353 | raise GitError('remote %s has no review url' % branch.remote.name) |
| 1354 | |
Bryan Jacobs | f609f91 | 2013-05-06 13:36:24 -0400 | [diff] [blame] | 1355 | if dest_branch is None: |
| 1356 | dest_branch = self.dest_branch |
| 1357 | if dest_branch is None: |
| 1358 | dest_branch = branch.merge |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1359 | if not dest_branch.startswith(R_HEADS): |
| 1360 | dest_branch = R_HEADS + dest_branch |
| 1361 | |
Shawn O. Pearce | 339ba9f | 2008-11-06 09:52:51 -0800 | [diff] [blame] | 1362 | if not branch.remote.projectname: |
| 1363 | branch.remote.projectname = self.name |
| 1364 | branch.remote.Save() |
| 1365 | |
Łukasz Gardoń | bed59ce | 2017-08-08 10:18:11 +0200 | [diff] [blame] | 1366 | url = branch.remote.ReviewUrl(self.UserEmail, validate_certs) |
Shawn O. Pearce | c957142 | 2012-01-11 14:58:54 -0800 | [diff] [blame] | 1367 | if url is None: |
| 1368 | raise UploadError('review not configured') |
| 1369 | cmd = ['push'] |
Shawn O. Pearce | b54a392 | 2009-01-05 16:18:58 -0800 | [diff] [blame] | 1370 | |
Shawn O. Pearce | c957142 | 2012-01-11 14:58:54 -0800 | [diff] [blame] | 1371 | if url.startswith('ssh://'): |
Jonathan Nieder | 713c587 | 2018-11-05 13:21:52 -0800 | [diff] [blame] | 1372 | cmd.append('--receive-pack=gerrit receive-pack') |
Shawn O. Pearce | a5ece0e | 2010-07-15 16:52:42 -0700 | [diff] [blame] | 1373 | |
Masaya Suzuki | 305a2d0 | 2017-11-13 10:48:34 -0800 | [diff] [blame] | 1374 | for push_option in (push_options or []): |
| 1375 | cmd.append('-o') |
| 1376 | cmd.append(push_option) |
| 1377 | |
Shawn O. Pearce | c957142 | 2012-01-11 14:58:54 -0800 | [diff] [blame] | 1378 | cmd.append(url) |
Shawn O. Pearce | b54a392 | 2009-01-05 16:18:58 -0800 | [diff] [blame] | 1379 | |
Shawn O. Pearce | c957142 | 2012-01-11 14:58:54 -0800 | [diff] [blame] | 1380 | if dest_branch.startswith(R_HEADS): |
| 1381 | dest_branch = dest_branch[len(R_HEADS):] |
Brian Harring | 435370c | 2012-07-28 15:37:04 -0700 | [diff] [blame] | 1382 | |
Jonathan Nieder | c94d6eb | 2017-08-08 18:34:53 +0000 | [diff] [blame] | 1383 | upload_type = 'for' |
| 1384 | if draft: |
| 1385 | upload_type = 'drafts' |
| 1386 | |
| 1387 | ref_spec = '%s:refs/%s/%s' % (R_HEADS + branch.name, upload_type, |
| 1388 | dest_branch) |
David Pursehouse | f25a370 | 2018-11-14 19:01:22 -0800 | [diff] [blame] | 1389 | opts = [] |
Shawn O. Pearce | c957142 | 2012-01-11 14:58:54 -0800 | [diff] [blame] | 1390 | if auto_topic: |
David Pursehouse | f25a370 | 2018-11-14 19:01:22 -0800 | [diff] [blame] | 1391 | opts += ['topic=' + branch.name] |
Changcheng Xiao | 87984c6 | 2017-08-02 16:55:03 +0200 | [diff] [blame] | 1392 | |
David Pursehouse | f25a370 | 2018-11-14 19:01:22 -0800 | [diff] [blame] | 1393 | opts += ['r=%s' % p for p in people[0]] |
Jonathan Nieder | 713c587 | 2018-11-05 13:21:52 -0800 | [diff] [blame] | 1394 | opts += ['cc=%s' % p for p in people[1]] |
Vadim Bendebury | bd8f658 | 2018-10-31 13:48:01 -0700 | [diff] [blame] | 1395 | if notify: |
| 1396 | opts += ['notify=' + notify] |
Jonathan Nieder | 713c587 | 2018-11-05 13:21:52 -0800 | [diff] [blame] | 1397 | if private: |
| 1398 | opts += ['private'] |
| 1399 | if wip: |
| 1400 | opts += ['wip'] |
| 1401 | if opts: |
| 1402 | ref_spec = ref_spec + '%' + ','.join(opts) |
Shawn O. Pearce | c957142 | 2012-01-11 14:58:54 -0800 | [diff] [blame] | 1403 | cmd.append(ref_spec) |
| 1404 | |
Anthony King | 7bdac71 | 2014-07-16 12:56:40 +0100 | [diff] [blame] | 1405 | if GitCommand(self, cmd, bare=True).Wait() != 0: |
Shawn O. Pearce | c957142 | 2012-01-11 14:58:54 -0800 | [diff] [blame] | 1406 | raise UploadError('Upload failed') |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1407 | |
| 1408 | msg = "posted to %s for %s" % (branch.remote.review, dest_branch) |
| 1409 | self.bare_git.UpdateRef(R_PUB + branch.name, |
| 1410 | R_HEADS + branch.name, |
Anthony King | 7bdac71 | 2014-07-16 12:56:40 +0100 | [diff] [blame] | 1411 | message=msg) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1412 | |
| 1413 | |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 1414 | # Sync ## |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1415 | |
Julien Campergue | 335f5ef | 2013-10-16 11:02:35 +0200 | [diff] [blame] | 1416 | def _ExtractArchive(self, tarpath, path=None): |
| 1417 | """Extract the given tar on its current location |
| 1418 | |
| 1419 | Args: |
| 1420 | - tarpath: The path to the actual tar file |
| 1421 | |
| 1422 | """ |
| 1423 | try: |
| 1424 | with tarfile.open(tarpath, 'r') as tar: |
| 1425 | tar.extractall(path=path) |
| 1426 | return True |
| 1427 | except (IOError, tarfile.TarError) as e: |
David Pursehouse | f33929d | 2015-08-24 14:39:14 +0900 | [diff] [blame] | 1428 | _error("Cannot extract archive %s: %s", tarpath, str(e)) |
Julien Campergue | 335f5ef | 2013-10-16 11:02:35 +0200 | [diff] [blame] | 1429 | return False |
| 1430 | |
Shawn O. Pearce | e02ac0a | 2012-03-14 15:36:59 -0700 | [diff] [blame] | 1431 | def Sync_NetworkHalf(self, |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 1432 | quiet=False, |
| 1433 | is_new=None, |
| 1434 | current_branch_only=False, |
| 1435 | force_sync=False, |
| 1436 | clone_bundle=True, |
| 1437 | no_tags=False, |
| 1438 | archive=False, |
| 1439 | optimized_fetch=False, |
Martin Kelly | e4e94d2 | 2017-03-21 16:05:12 -0700 | [diff] [blame] | 1440 | prune=False, |
Xin Li | 745be2e | 2019-06-03 11:24:30 -0700 | [diff] [blame] | 1441 | submodules=False, |
| 1442 | clone_filter=None): |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1443 | """Perform only the network IO portion of the sync process. |
| 1444 | Local working directory/branch state is not affected. |
| 1445 | """ |
Julien Campergue | 335f5ef | 2013-10-16 11:02:35 +0200 | [diff] [blame] | 1446 | if archive and not isinstance(self, MetaProject): |
| 1447 | if self.remote.url.startswith(('http://', 'https://')): |
David Pursehouse | f33929d | 2015-08-24 14:39:14 +0900 | [diff] [blame] | 1448 | _error("%s: Cannot fetch archives from http/https remotes.", self.name) |
Julien Campergue | 335f5ef | 2013-10-16 11:02:35 +0200 | [diff] [blame] | 1449 | return False |
| 1450 | |
| 1451 | name = self.relpath.replace('\\', '/') |
| 1452 | name = name.replace('/', '_') |
| 1453 | tarpath = '%s.tar' % name |
| 1454 | topdir = self.manifest.topdir |
| 1455 | |
| 1456 | try: |
| 1457 | self._FetchArchive(tarpath, cwd=topdir) |
| 1458 | except GitError as e: |
David Pursehouse | f33929d | 2015-08-24 14:39:14 +0900 | [diff] [blame] | 1459 | _error('%s', e) |
Julien Campergue | 335f5ef | 2013-10-16 11:02:35 +0200 | [diff] [blame] | 1460 | return False |
| 1461 | |
| 1462 | # From now on, we only need absolute tarpath |
| 1463 | tarpath = os.path.join(topdir, tarpath) |
| 1464 | |
| 1465 | if not self._ExtractArchive(tarpath, path=topdir): |
| 1466 | return False |
| 1467 | try: |
Renaud Paquay | 010fed7 | 2016-11-11 14:25:29 -0800 | [diff] [blame] | 1468 | platform_utils.remove(tarpath) |
Julien Campergue | 335f5ef | 2013-10-16 11:02:35 +0200 | [diff] [blame] | 1469 | except OSError as e: |
David Pursehouse | f33929d | 2015-08-24 14:39:14 +0900 | [diff] [blame] | 1470 | _warn("Cannot remove archive %s: %s", tarpath, str(e)) |
Jeff Hamilton | e0df232 | 2014-04-21 17:10:59 -0500 | [diff] [blame] | 1471 | self._CopyAndLinkFiles() |
Julien Campergue | 335f5ef | 2013-10-16 11:02:35 +0200 | [diff] [blame] | 1472 | return True |
Shawn O. Pearce | f322b9a | 2011-09-19 14:50:58 -0700 | [diff] [blame] | 1473 | if is_new is None: |
| 1474 | is_new = not self.Exists |
Shawn O. Pearce | 8844338 | 2010-10-08 10:02:09 +0200 | [diff] [blame] | 1475 | if is_new: |
Kevin Degi | abaa7f3 | 2014-11-12 11:27:45 -0700 | [diff] [blame] | 1476 | self._InitGitDir(force_sync=force_sync) |
Jimmie Wester | a044458 | 2012-10-24 13:44:42 +0200 | [diff] [blame] | 1477 | else: |
| 1478 | self._UpdateHooks() |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1479 | self._InitRemote() |
Shawn O. Pearce | c325dc3 | 2011-10-03 08:30:24 -0700 | [diff] [blame] | 1480 | |
| 1481 | if is_new: |
| 1482 | alt = os.path.join(self.gitdir, 'objects/info/alternates') |
| 1483 | try: |
Mike Frysinger | 3164d40 | 2019-11-11 05:40:22 -0500 | [diff] [blame] | 1484 | with open(alt) as fd: |
Samuel Holland | baa0009 | 2018-01-22 10:57:29 -0600 | [diff] [blame] | 1485 | # This works for both absolute and relative alternate directories. |
| 1486 | alt_dir = os.path.join(self.objdir, 'objects', fd.readline().rstrip()) |
Shawn O. Pearce | c325dc3 | 2011-10-03 08:30:24 -0700 | [diff] [blame] | 1487 | except IOError: |
| 1488 | alt_dir = None |
| 1489 | else: |
| 1490 | alt_dir = None |
| 1491 | |
Shawn O. Pearce | e02ac0a | 2012-03-14 15:36:59 -0700 | [diff] [blame] | 1492 | if clone_bundle \ |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 1493 | and alt_dir is None \ |
| 1494 | and self._ApplyCloneBundle(initial=is_new, quiet=quiet): |
Shawn O. Pearce | c325dc3 | 2011-10-03 08:30:24 -0700 | [diff] [blame] | 1495 | is_new = False |
| 1496 | |
Shawn O. Pearce | 6ba6ba0 | 2012-05-24 09:46:50 -0700 | [diff] [blame] | 1497 | if not current_branch_only: |
| 1498 | if self.sync_c: |
| 1499 | current_branch_only = True |
| 1500 | elif not self.manifest._loaded: |
| 1501 | # Manifest cannot check defaults until it syncs. |
| 1502 | current_branch_only = False |
| 1503 | elif self.manifest.default.sync_c: |
| 1504 | current_branch_only = True |
| 1505 | |
YOUNG HO CHA | a32c92c | 2018-02-14 16:57:31 +0900 | [diff] [blame] | 1506 | if not no_tags: |
| 1507 | if not self.sync_tags: |
| 1508 | no_tags = True |
| 1509 | |
Aymen Bouaziz | 6c59446 | 2016-10-25 18:03:51 +0200 | [diff] [blame] | 1510 | if self.clone_depth: |
| 1511 | depth = self.clone_depth |
| 1512 | else: |
| 1513 | depth = self.manifest.manifestProject.config.GetString('repo.depth') |
| 1514 | |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 1515 | need_to_fetch = not (optimized_fetch and |
| 1516 | (ID_RE.match(self.revisionExpr) and |
Zac Livingston | e433226 | 2017-06-16 08:56:09 -0600 | [diff] [blame] | 1517 | self._CheckForImmutableRevision())) |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 1518 | if (need_to_fetch and |
| 1519 | not self._RemoteFetch(initial=is_new, quiet=quiet, alt_dir=alt_dir, |
| 1520 | current_branch_only=current_branch_only, |
Martin Kelly | e4e94d2 | 2017-03-21 16:05:12 -0700 | [diff] [blame] | 1521 | no_tags=no_tags, prune=prune, depth=depth, |
Xin Li | 745be2e | 2019-06-03 11:24:30 -0700 | [diff] [blame] | 1522 | submodules=submodules, force_sync=force_sync, |
| 1523 | clone_filter=clone_filter)): |
Anthony King | 7bdac71 | 2014-07-16 12:56:40 +0100 | [diff] [blame] | 1524 | return False |
Shawn O. Pearce | e284ad1 | 2008-11-04 07:37:10 -0800 | [diff] [blame] | 1525 | |
Nikolai Merinov | 09f0abb | 2018-10-19 15:07:05 +0500 | [diff] [blame] | 1526 | mp = self.manifest.manifestProject |
| 1527 | dissociate = mp.config.GetBoolean('repo.dissociate') |
| 1528 | if dissociate: |
| 1529 | alternates_file = os.path.join(self.gitdir, 'objects/info/alternates') |
| 1530 | if os.path.exists(alternates_file): |
| 1531 | cmd = ['repack', '-a', '-d'] |
| 1532 | if GitCommand(self, cmd, bare=True).Wait() != 0: |
| 1533 | return False |
| 1534 | platform_utils.remove(alternates_file) |
| 1535 | |
Shawn O. Pearce | e284ad1 | 2008-11-04 07:37:10 -0800 | [diff] [blame] | 1536 | if self.worktree: |
Shawn O. Pearce | e284ad1 | 2008-11-04 07:37:10 -0800 | [diff] [blame] | 1537 | self._InitMRef() |
| 1538 | else: |
| 1539 | self._InitMirrorHead() |
| 1540 | try: |
Renaud Paquay | 010fed7 | 2016-11-11 14:25:29 -0800 | [diff] [blame] | 1541 | platform_utils.remove(os.path.join(self.gitdir, 'FETCH_HEAD')) |
Shawn O. Pearce | e284ad1 | 2008-11-04 07:37:10 -0800 | [diff] [blame] | 1542 | except OSError: |
| 1543 | pass |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1544 | return True |
Shawn O. Pearce | c9ef744 | 2008-11-03 10:32:09 -0800 | [diff] [blame] | 1545 | |
| 1546 | def PostRepoUpgrade(self): |
| 1547 | self._InitHooks() |
| 1548 | |
Jeff Hamilton | e0df232 | 2014-04-21 17:10:59 -0500 | [diff] [blame] | 1549 | def _CopyAndLinkFiles(self): |
Simran Basi | b9a1b73 | 2015-08-20 12:19:28 -0700 | [diff] [blame] | 1550 | if self.manifest.isGitcClient: |
| 1551 | return |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 1552 | for copyfile in self.copyfiles: |
| 1553 | copyfile._Copy() |
Jeff Hamilton | e0df232 | 2014-04-21 17:10:59 -0500 | [diff] [blame] | 1554 | for linkfile in self.linkfiles: |
| 1555 | linkfile._Link() |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1556 | |
Julien Campergue | dd65422 | 2014-01-09 16:21:37 +0100 | [diff] [blame] | 1557 | def GetCommitRevisionId(self): |
| 1558 | """Get revisionId of a commit. |
| 1559 | |
| 1560 | Use this method instead of GetRevisionId to get the id of the commit rather |
| 1561 | than the id of the current git object (for example, a tag) |
| 1562 | |
| 1563 | """ |
| 1564 | if not self.revisionExpr.startswith(R_TAGS): |
| 1565 | return self.GetRevisionId(self._allrefs) |
| 1566 | |
| 1567 | try: |
| 1568 | return self.bare_git.rev_list(self.revisionExpr, '-1')[0] |
| 1569 | except GitError: |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 1570 | raise ManifestInvalidRevisionError('revision %s in %s not found' % |
| 1571 | (self.revisionExpr, self.name)) |
Julien Campergue | dd65422 | 2014-01-09 16:21:37 +0100 | [diff] [blame] | 1572 | |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 1573 | def GetRevisionId(self, all_refs=None): |
Shawn O. Pearce | 3c8dea1 | 2009-05-29 18:38:17 -0700 | [diff] [blame] | 1574 | if self.revisionId: |
| 1575 | return self.revisionId |
| 1576 | |
| 1577 | rem = self.GetRemote(self.remote.name) |
| 1578 | rev = rem.ToLocal(self.revisionExpr) |
| 1579 | |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 1580 | if all_refs is not None and rev in all_refs: |
| 1581 | return all_refs[rev] |
Shawn O. Pearce | 3c8dea1 | 2009-05-29 18:38:17 -0700 | [diff] [blame] | 1582 | |
| 1583 | try: |
| 1584 | return self.bare_git.rev_parse('--verify', '%s^0' % rev) |
| 1585 | except GitError: |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 1586 | raise ManifestInvalidRevisionError('revision %s in %s not found' % |
| 1587 | (self.revisionExpr, self.name)) |
Shawn O. Pearce | 3c8dea1 | 2009-05-29 18:38:17 -0700 | [diff] [blame] | 1588 | |
Martin Kelly | e4e94d2 | 2017-03-21 16:05:12 -0700 | [diff] [blame] | 1589 | def Sync_LocalHalf(self, syncbuf, force_sync=False, submodules=False): |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1590 | """Perform only the local IO portion of the sync process. |
| 1591 | Network access is not required. |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1592 | """ |
Mike Frysinger | b610b85 | 2019-11-11 05:10:03 -0500 | [diff] [blame] | 1593 | if not os.path.exists(self.gitdir): |
| 1594 | syncbuf.fail(self, |
| 1595 | 'Cannot checkout %s due to missing network sync; Run ' |
| 1596 | '`repo sync -n %s` first.' % |
| 1597 | (self.name, self.name)) |
| 1598 | return |
| 1599 | |
Martin Kelly | e4e94d2 | 2017-03-21 16:05:12 -0700 | [diff] [blame] | 1600 | self._InitWorkTree(force_sync=force_sync, submodules=submodules) |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 1601 | all_refs = self.bare_ref.all |
| 1602 | self.CleanPublishedCache(all_refs) |
| 1603 | revid = self.GetRevisionId(all_refs) |
Skyler Kaufman | 835cd68 | 2011-03-08 12:14:41 -0800 | [diff] [blame] | 1604 | |
David Pursehouse | 1d947b3 | 2012-10-25 12:23:11 +0900 | [diff] [blame] | 1605 | def _doff(): |
| 1606 | self._FastForward(revid) |
Jeff Hamilton | e0df232 | 2014-04-21 17:10:59 -0500 | [diff] [blame] | 1607 | self._CopyAndLinkFiles() |
David Pursehouse | 1d947b3 | 2012-10-25 12:23:11 +0900 | [diff] [blame] | 1608 | |
Martin Kelly | e4e94d2 | 2017-03-21 16:05:12 -0700 | [diff] [blame] | 1609 | def _dosubmodules(): |
| 1610 | self._SyncSubmodules(quiet=True) |
| 1611 | |
Shawn O. Pearce | fbcde47 | 2009-04-17 20:58:02 -0700 | [diff] [blame] | 1612 | head = self.work_git.GetHead() |
| 1613 | if head.startswith(R_HEADS): |
| 1614 | branch = head[len(R_HEADS):] |
| 1615 | try: |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 1616 | head = all_refs[head] |
Shawn O. Pearce | fbcde47 | 2009-04-17 20:58:02 -0700 | [diff] [blame] | 1617 | except KeyError: |
| 1618 | head = None |
| 1619 | else: |
| 1620 | branch = None |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1621 | |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 1622 | if branch is None or syncbuf.detach_head: |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1623 | # Currently on a detached HEAD. The user is assumed to |
| 1624 | # not have any local modifications worth worrying about. |
| 1625 | # |
Shawn O. Pearce | 3d2cdd0 | 2009-04-18 15:26:10 -0700 | [diff] [blame] | 1626 | if self.IsRebaseInProgress(): |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 1627 | syncbuf.fail(self, _PriorSyncFailedError()) |
| 1628 | return |
| 1629 | |
Shawn O. Pearce | fbcde47 | 2009-04-17 20:58:02 -0700 | [diff] [blame] | 1630 | if head == revid: |
| 1631 | # No changes; don't do anything further. |
Florian Vallee | 7cf1b36 | 2012-06-07 17:11:42 +0200 | [diff] [blame] | 1632 | # Except if the head needs to be detached |
Shawn O. Pearce | fbcde47 | 2009-04-17 20:58:02 -0700 | [diff] [blame] | 1633 | # |
Florian Vallee | 7cf1b36 | 2012-06-07 17:11:42 +0200 | [diff] [blame] | 1634 | if not syncbuf.detach_head: |
Dan Willemsen | 029eaf3 | 2015-09-03 12:52:28 -0700 | [diff] [blame] | 1635 | # The copy/linkfile config may have changed. |
| 1636 | self._CopyAndLinkFiles() |
Florian Vallee | 7cf1b36 | 2012-06-07 17:11:42 +0200 | [diff] [blame] | 1637 | return |
| 1638 | else: |
| 1639 | lost = self._revlist(not_rev(revid), HEAD) |
| 1640 | if lost: |
| 1641 | syncbuf.info(self, "discarding %d commits", len(lost)) |
Shawn O. Pearce | fbcde47 | 2009-04-17 20:58:02 -0700 | [diff] [blame] | 1642 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1643 | try: |
Shawn O. Pearce | 3c8dea1 | 2009-05-29 18:38:17 -0700 | [diff] [blame] | 1644 | self._Checkout(revid, quiet=True) |
Martin Kelly | e4e94d2 | 2017-03-21 16:05:12 -0700 | [diff] [blame] | 1645 | if submodules: |
| 1646 | self._SyncSubmodules(quiet=True) |
Sarah Owens | a5be53f | 2012-09-09 15:37:57 -0700 | [diff] [blame] | 1647 | except GitError as e: |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 1648 | syncbuf.fail(self, e) |
| 1649 | return |
Jeff Hamilton | e0df232 | 2014-04-21 17:10:59 -0500 | [diff] [blame] | 1650 | self._CopyAndLinkFiles() |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 1651 | return |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1652 | |
Shawn O. Pearce | fbcde47 | 2009-04-17 20:58:02 -0700 | [diff] [blame] | 1653 | if head == revid: |
| 1654 | # No changes; don't do anything further. |
| 1655 | # |
Dan Willemsen | 029eaf3 | 2015-09-03 12:52:28 -0700 | [diff] [blame] | 1656 | # The copy/linkfile config may have changed. |
| 1657 | self._CopyAndLinkFiles() |
Shawn O. Pearce | fbcde47 | 2009-04-17 20:58:02 -0700 | [diff] [blame] | 1658 | return |
| 1659 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1660 | branch = self.GetBranch(branch) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1661 | |
Shawn O. Pearce | 3c8dea1 | 2009-05-29 18:38:17 -0700 | [diff] [blame] | 1662 | if not branch.LocalMerge: |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1663 | # The current branch has no tracking configuration. |
Anatol Pomazau | 2a32f6a | 2011-08-30 10:52:33 -0700 | [diff] [blame] | 1664 | # Jump off it to a detached HEAD. |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1665 | # |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 1666 | syncbuf.info(self, |
| 1667 | "leaving %s; does not track upstream", |
| 1668 | branch.name) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1669 | try: |
Shawn O. Pearce | 3c8dea1 | 2009-05-29 18:38:17 -0700 | [diff] [blame] | 1670 | self._Checkout(revid, quiet=True) |
Martin Kelly | e4e94d2 | 2017-03-21 16:05:12 -0700 | [diff] [blame] | 1671 | if submodules: |
| 1672 | self._SyncSubmodules(quiet=True) |
Sarah Owens | a5be53f | 2012-09-09 15:37:57 -0700 | [diff] [blame] | 1673 | except GitError as e: |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 1674 | syncbuf.fail(self, e) |
| 1675 | return |
Jeff Hamilton | e0df232 | 2014-04-21 17:10:59 -0500 | [diff] [blame] | 1676 | self._CopyAndLinkFiles() |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 1677 | return |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1678 | |
Shawn O. Pearce | 3c8dea1 | 2009-05-29 18:38:17 -0700 | [diff] [blame] | 1679 | upstream_gain = self._revlist(not_rev(HEAD), revid) |
Mike Frysinger | 2ba5a1e | 2019-09-23 17:42:23 -0400 | [diff] [blame] | 1680 | |
| 1681 | # See if we can perform a fast forward merge. This can happen if our |
| 1682 | # branch isn't in the exact same state as we last published. |
| 1683 | try: |
| 1684 | self.work_git.merge_base('--is-ancestor', HEAD, revid) |
| 1685 | # Skip the published logic. |
| 1686 | pub = False |
| 1687 | except GitError: |
| 1688 | pub = self.WasPublished(branch.name, all_refs) |
| 1689 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1690 | if pub: |
Shawn O. Pearce | 3c8dea1 | 2009-05-29 18:38:17 -0700 | [diff] [blame] | 1691 | not_merged = self._revlist(not_rev(revid), pub) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1692 | if not_merged: |
| 1693 | if upstream_gain: |
| 1694 | # The user has published this branch and some of those |
| 1695 | # commits are not yet merged upstream. We do not want |
| 1696 | # to rewrite the published commits so we punt. |
| 1697 | # |
Daniel Sandler | 4c50dee | 2010-03-02 15:38:03 -0500 | [diff] [blame] | 1698 | syncbuf.fail(self, |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 1699 | "branch %s is published (but not merged) and is now " |
| 1700 | "%d commits behind" % (branch.name, len(upstream_gain))) |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 1701 | return |
Shawn O. Pearce | 05f66b6 | 2009-04-21 08:26:32 -0700 | [diff] [blame] | 1702 | elif pub == head: |
| 1703 | # All published commits are merged, and thus we are a |
| 1704 | # strict subset. We can fast-forward safely. |
Shawn O. Pearce | a54c527 | 2008-10-30 11:03:00 -0700 | [diff] [blame] | 1705 | # |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 1706 | syncbuf.later1(self, _doff) |
Martin Kelly | e4e94d2 | 2017-03-21 16:05:12 -0700 | [diff] [blame] | 1707 | if submodules: |
| 1708 | syncbuf.later1(self, _dosubmodules) |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 1709 | return |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1710 | |
Shawn O. Pearce | 8ad8a0e | 2009-05-29 18:28:25 -0700 | [diff] [blame] | 1711 | # Examine the local commits not in the remote. Find the |
| 1712 | # last one attributed to this user, if any. |
| 1713 | # |
Shawn O. Pearce | 3c8dea1 | 2009-05-29 18:38:17 -0700 | [diff] [blame] | 1714 | local_changes = self._revlist(not_rev(revid), HEAD, format='%H %ce') |
Shawn O. Pearce | 8ad8a0e | 2009-05-29 18:28:25 -0700 | [diff] [blame] | 1715 | last_mine = None |
| 1716 | cnt_mine = 0 |
| 1717 | for commit in local_changes: |
Mike Frysinger | 600f492 | 2019-08-03 02:14:28 -0400 | [diff] [blame] | 1718 | commit_id, committer_email = commit.split(' ', 1) |
Shawn O. Pearce | 8ad8a0e | 2009-05-29 18:28:25 -0700 | [diff] [blame] | 1719 | if committer_email == self.UserEmail: |
| 1720 | last_mine = commit_id |
| 1721 | cnt_mine += 1 |
| 1722 | |
Shawn O. Pearce | da88ff4 | 2009-06-03 11:09:12 -0700 | [diff] [blame] | 1723 | if not upstream_gain and cnt_mine == len(local_changes): |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 1724 | return |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1725 | |
| 1726 | if self.IsDirty(consider_untracked=False): |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 1727 | syncbuf.fail(self, _DirtyError()) |
| 1728 | return |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1729 | |
Shawn O. Pearce | 3c8dea1 | 2009-05-29 18:38:17 -0700 | [diff] [blame] | 1730 | # If the upstream switched on us, warn the user. |
| 1731 | # |
| 1732 | if branch.merge != self.revisionExpr: |
| 1733 | if branch.merge and self.revisionExpr: |
| 1734 | syncbuf.info(self, |
| 1735 | 'manifest switched %s...%s', |
| 1736 | branch.merge, |
| 1737 | self.revisionExpr) |
| 1738 | elif branch.merge: |
| 1739 | syncbuf.info(self, |
| 1740 | 'manifest no longer tracks %s', |
| 1741 | branch.merge) |
| 1742 | |
Shawn O. Pearce | 8ad8a0e | 2009-05-29 18:28:25 -0700 | [diff] [blame] | 1743 | if cnt_mine < len(local_changes): |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1744 | # Upstream rebased. Not everything in HEAD |
Shawn O. Pearce | 8ad8a0e | 2009-05-29 18:28:25 -0700 | [diff] [blame] | 1745 | # was created by this user. |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1746 | # |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 1747 | syncbuf.info(self, |
| 1748 | "discarding %d commits removed from upstream", |
Shawn O. Pearce | 8ad8a0e | 2009-05-29 18:28:25 -0700 | [diff] [blame] | 1749 | len(local_changes) - cnt_mine) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1750 | |
Shawn O. Pearce | 3c8dea1 | 2009-05-29 18:38:17 -0700 | [diff] [blame] | 1751 | branch.remote = self.GetRemote(self.remote.name) |
Anatol Pomazau | cd7c5de | 2012-03-20 13:45:00 -0700 | [diff] [blame] | 1752 | if not ID_RE.match(self.revisionExpr): |
| 1753 | # in case of manifest sync the revisionExpr might be a SHA1 |
| 1754 | branch.merge = self.revisionExpr |
Conley Owens | 04f2f0e | 2014-10-01 17:22:46 -0700 | [diff] [blame] | 1755 | if not branch.merge.startswith('refs/'): |
| 1756 | branch.merge = R_HEADS + branch.merge |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1757 | branch.Save() |
| 1758 | |
Mike Pontillo | d315382 | 2012-02-28 11:53:24 -0800 | [diff] [blame] | 1759 | if cnt_mine > 0 and self.rebase: |
Martin Kelly | e4e94d2 | 2017-03-21 16:05:12 -0700 | [diff] [blame] | 1760 | def _docopyandlink(): |
| 1761 | self._CopyAndLinkFiles() |
| 1762 | |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 1763 | def _dorebase(): |
Anthony King | 7bdac71 | 2014-07-16 12:56:40 +0100 | [diff] [blame] | 1764 | self._Rebase(upstream='%s^1' % last_mine, onto=revid) |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 1765 | syncbuf.later2(self, _dorebase) |
Martin Kelly | e4e94d2 | 2017-03-21 16:05:12 -0700 | [diff] [blame] | 1766 | if submodules: |
| 1767 | syncbuf.later2(self, _dosubmodules) |
| 1768 | syncbuf.later2(self, _docopyandlink) |
Shawn O. Pearce | 8ad8a0e | 2009-05-29 18:28:25 -0700 | [diff] [blame] | 1769 | elif local_changes: |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1770 | try: |
Shawn O. Pearce | 3c8dea1 | 2009-05-29 18:38:17 -0700 | [diff] [blame] | 1771 | self._ResetHard(revid) |
Martin Kelly | e4e94d2 | 2017-03-21 16:05:12 -0700 | [diff] [blame] | 1772 | if submodules: |
| 1773 | self._SyncSubmodules(quiet=True) |
Jeff Hamilton | e0df232 | 2014-04-21 17:10:59 -0500 | [diff] [blame] | 1774 | self._CopyAndLinkFiles() |
Sarah Owens | a5be53f | 2012-09-09 15:37:57 -0700 | [diff] [blame] | 1775 | except GitError as e: |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 1776 | syncbuf.fail(self, e) |
| 1777 | return |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1778 | else: |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 1779 | syncbuf.later1(self, _doff) |
Martin Kelly | e4e94d2 | 2017-03-21 16:05:12 -0700 | [diff] [blame] | 1780 | if submodules: |
| 1781 | syncbuf.later1(self, _dosubmodules) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1782 | |
Mike Frysinger | e6a202f | 2019-08-02 15:57:57 -0400 | [diff] [blame] | 1783 | def AddCopyFile(self, src, dest, topdir): |
| 1784 | """Mark |src| for copying to |dest| (relative to |topdir|). |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1785 | |
Mike Frysinger | e6a202f | 2019-08-02 15:57:57 -0400 | [diff] [blame] | 1786 | No filesystem changes occur here. Actual copying happens later on. |
| 1787 | |
| 1788 | Paths should have basic validation run on them before being queued. |
| 1789 | Further checking will be handled when the actual copy happens. |
| 1790 | """ |
| 1791 | self.copyfiles.append(_CopyFile(self.worktree, src, topdir, dest)) |
| 1792 | |
| 1793 | def AddLinkFile(self, src, dest, topdir): |
| 1794 | """Mark |dest| to create a symlink (relative to |topdir|) pointing to |src|. |
| 1795 | |
| 1796 | No filesystem changes occur here. Actual linking happens later on. |
| 1797 | |
| 1798 | Paths should have basic validation run on them before being queued. |
| 1799 | Further checking will be handled when the actual link happens. |
| 1800 | """ |
| 1801 | self.linkfiles.append(_LinkFile(self.worktree, src, topdir, dest)) |
Jeff Hamilton | e0df232 | 2014-04-21 17:10:59 -0500 | [diff] [blame] | 1802 | |
James W. Mills | 24c1308 | 2012-04-12 15:04:13 -0500 | [diff] [blame] | 1803 | def AddAnnotation(self, name, value, keep): |
| 1804 | self.annotations.append(_Annotation(name, value, keep)) |
| 1805 | |
Shawn O. Pearce | 632768b | 2008-10-23 11:58:52 -0700 | [diff] [blame] | 1806 | def DownloadPatchSet(self, change_id, patch_id): |
| 1807 | """Download a single patch set of a single change to FETCH_HEAD. |
| 1808 | """ |
| 1809 | remote = self.GetRemote(self.remote.name) |
| 1810 | |
| 1811 | cmd = ['fetch', remote.name] |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 1812 | cmd.append('refs/changes/%2.2d/%d/%d' |
Shawn O. Pearce | 632768b | 2008-10-23 11:58:52 -0700 | [diff] [blame] | 1813 | % (change_id % 100, change_id, patch_id)) |
Shawn O. Pearce | 632768b | 2008-10-23 11:58:52 -0700 | [diff] [blame] | 1814 | if GitCommand(self, cmd, bare=True).Wait() != 0: |
| 1815 | return None |
| 1816 | return DownloadedChange(self, |
Shawn O. Pearce | 3c8dea1 | 2009-05-29 18:38:17 -0700 | [diff] [blame] | 1817 | self.GetRevisionId(), |
Shawn O. Pearce | 632768b | 2008-10-23 11:58:52 -0700 | [diff] [blame] | 1818 | change_id, |
| 1819 | patch_id, |
| 1820 | self.bare_git.rev_parse('FETCH_HEAD')) |
| 1821 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1822 | |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 1823 | # Branch Management ## |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1824 | |
Mike Frysinger | f914edc | 2020-02-09 03:01:56 -0500 | [diff] [blame] | 1825 | def GetHeadPath(self): |
| 1826 | """Return the full path to the HEAD ref.""" |
| 1827 | dotgit = os.path.join(self.worktree, '.git') |
| 1828 | if os.path.isfile(dotgit): |
| 1829 | # Git worktrees use a "gitdir:" syntax to point to the scratch space. |
| 1830 | with open(dotgit) as fp: |
| 1831 | setting = fp.read() |
| 1832 | assert setting.startswith('gitdir:') |
| 1833 | gitdir = setting.split(':', 1)[1].strip() |
| 1834 | dotgit = os.path.join(self.worktree, gitdir) |
| 1835 | return os.path.join(dotgit, HEAD) |
| 1836 | |
Theodore Dubois | 60fdc5c | 2019-07-30 12:14:25 -0700 | [diff] [blame] | 1837 | def StartBranch(self, name, branch_merge='', revision=None): |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1838 | """Create a new branch off the manifest's revision. |
| 1839 | """ |
Simran Basi | b9a1b73 | 2015-08-20 12:19:28 -0700 | [diff] [blame] | 1840 | if not branch_merge: |
| 1841 | branch_merge = self.revisionExpr |
Shawn O. Pearce | accc56d | 2009-04-18 14:45:51 -0700 | [diff] [blame] | 1842 | head = self.work_git.GetHead() |
| 1843 | if head == (R_HEADS + name): |
| 1844 | return True |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1845 | |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 1846 | all_refs = self.bare_ref.all |
Anthony King | 7bdac71 | 2014-07-16 12:56:40 +0100 | [diff] [blame] | 1847 | if R_HEADS + name in all_refs: |
Shawn O. Pearce | accc56d | 2009-04-18 14:45:51 -0700 | [diff] [blame] | 1848 | return GitCommand(self, |
Shawn O. Pearce | 89e717d | 2009-04-18 15:04:41 -0700 | [diff] [blame] | 1849 | ['checkout', name, '--'], |
Anthony King | 7bdac71 | 2014-07-16 12:56:40 +0100 | [diff] [blame] | 1850 | capture_stdout=True, |
| 1851 | capture_stderr=True).Wait() == 0 |
Shawn O. Pearce | 0a389e9 | 2009-04-10 16:21:18 -0700 | [diff] [blame] | 1852 | |
Shawn O. Pearce | accc56d | 2009-04-18 14:45:51 -0700 | [diff] [blame] | 1853 | branch = self.GetBranch(name) |
| 1854 | branch.remote = self.GetRemote(self.remote.name) |
Simran Basi | b9a1b73 | 2015-08-20 12:19:28 -0700 | [diff] [blame] | 1855 | branch.merge = branch_merge |
| 1856 | if not branch.merge.startswith('refs/') and not ID_RE.match(branch_merge): |
| 1857 | branch.merge = R_HEADS + branch_merge |
Theodore Dubois | 60fdc5c | 2019-07-30 12:14:25 -0700 | [diff] [blame] | 1858 | |
| 1859 | if revision is None: |
| 1860 | revid = self.GetRevisionId(all_refs) |
| 1861 | else: |
| 1862 | revid = self.work_git.rev_parse(revision) |
Shawn O. Pearce | 0a389e9 | 2009-04-10 16:21:18 -0700 | [diff] [blame] | 1863 | |
Shawn O. Pearce | accc56d | 2009-04-18 14:45:51 -0700 | [diff] [blame] | 1864 | if head.startswith(R_HEADS): |
| 1865 | try: |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 1866 | head = all_refs[head] |
Shawn O. Pearce | accc56d | 2009-04-18 14:45:51 -0700 | [diff] [blame] | 1867 | except KeyError: |
| 1868 | head = None |
Shawn O. Pearce | accc56d | 2009-04-18 14:45:51 -0700 | [diff] [blame] | 1869 | if revid and head and revid == head: |
| 1870 | ref = os.path.join(self.gitdir, R_HEADS + name) |
| 1871 | try: |
| 1872 | os.makedirs(os.path.dirname(ref)) |
| 1873 | except OSError: |
| 1874 | pass |
| 1875 | _lwrite(ref, '%s\n' % revid) |
Mike Frysinger | f914edc | 2020-02-09 03:01:56 -0500 | [diff] [blame] | 1876 | _lwrite(self.GetHeadPath(), 'ref: %s%s\n' % (R_HEADS, name)) |
Shawn O. Pearce | accc56d | 2009-04-18 14:45:51 -0700 | [diff] [blame] | 1877 | branch.Save() |
| 1878 | return True |
| 1879 | |
Shawn O. Pearce | accc56d | 2009-04-18 14:45:51 -0700 | [diff] [blame] | 1880 | if GitCommand(self, |
Shawn O. Pearce | 3c8dea1 | 2009-05-29 18:38:17 -0700 | [diff] [blame] | 1881 | ['checkout', '-b', branch.name, revid], |
Anthony King | 7bdac71 | 2014-07-16 12:56:40 +0100 | [diff] [blame] | 1882 | capture_stdout=True, |
| 1883 | capture_stderr=True).Wait() == 0: |
Shawn O. Pearce | accc56d | 2009-04-18 14:45:51 -0700 | [diff] [blame] | 1884 | branch.Save() |
| 1885 | return True |
| 1886 | return False |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1887 | |
Wink Saville | 02d7945 | 2009-04-10 13:01:24 -0700 | [diff] [blame] | 1888 | def CheckoutBranch(self, name): |
| 1889 | """Checkout a local topic branch. |
Doug Anderson | 3ba5f95 | 2011-04-07 12:51:04 -0700 | [diff] [blame] | 1890 | |
| 1891 | Args: |
| 1892 | name: The name of the branch to checkout. |
| 1893 | |
| 1894 | Returns: |
| 1895 | True if the checkout succeeded; False if it didn't; None if the branch |
| 1896 | didn't exist. |
Wink Saville | 02d7945 | 2009-04-10 13:01:24 -0700 | [diff] [blame] | 1897 | """ |
Shawn O. Pearce | 89e717d | 2009-04-18 15:04:41 -0700 | [diff] [blame] | 1898 | rev = R_HEADS + name |
| 1899 | head = self.work_git.GetHead() |
| 1900 | if head == rev: |
| 1901 | # Already on the branch |
| 1902 | # |
| 1903 | return True |
Wink Saville | 02d7945 | 2009-04-10 13:01:24 -0700 | [diff] [blame] | 1904 | |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 1905 | all_refs = self.bare_ref.all |
Wink Saville | 02d7945 | 2009-04-10 13:01:24 -0700 | [diff] [blame] | 1906 | try: |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 1907 | revid = all_refs[rev] |
Shawn O. Pearce | 89e717d | 2009-04-18 15:04:41 -0700 | [diff] [blame] | 1908 | except KeyError: |
| 1909 | # Branch does not exist in this project |
| 1910 | # |
Doug Anderson | 3ba5f95 | 2011-04-07 12:51:04 -0700 | [diff] [blame] | 1911 | return None |
Wink Saville | 02d7945 | 2009-04-10 13:01:24 -0700 | [diff] [blame] | 1912 | |
Shawn O. Pearce | 89e717d | 2009-04-18 15:04:41 -0700 | [diff] [blame] | 1913 | if head.startswith(R_HEADS): |
| 1914 | try: |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 1915 | head = all_refs[head] |
Shawn O. Pearce | 89e717d | 2009-04-18 15:04:41 -0700 | [diff] [blame] | 1916 | except KeyError: |
| 1917 | head = None |
| 1918 | |
| 1919 | if head == revid: |
| 1920 | # Same revision; just update HEAD to point to the new |
| 1921 | # target branch, but otherwise take no other action. |
| 1922 | # |
Mike Frysinger | f914edc | 2020-02-09 03:01:56 -0500 | [diff] [blame] | 1923 | _lwrite(self.GetHeadPath(), 'ref: %s%s\n' % (R_HEADS, name)) |
Shawn O. Pearce | 89e717d | 2009-04-18 15:04:41 -0700 | [diff] [blame] | 1924 | return True |
| 1925 | |
| 1926 | return GitCommand(self, |
| 1927 | ['checkout', name, '--'], |
Anthony King | 7bdac71 | 2014-07-16 12:56:40 +0100 | [diff] [blame] | 1928 | capture_stdout=True, |
| 1929 | capture_stderr=True).Wait() == 0 |
Wink Saville | 02d7945 | 2009-04-10 13:01:24 -0700 | [diff] [blame] | 1930 | |
Shawn O. Pearce | 9fa44db | 2008-11-03 11:24:59 -0800 | [diff] [blame] | 1931 | def AbandonBranch(self, name): |
| 1932 | """Destroy a local topic branch. |
Doug Anderson | dafb1d6 | 2011-04-07 11:46:59 -0700 | [diff] [blame] | 1933 | |
| 1934 | Args: |
| 1935 | name: The name of the branch to abandon. |
| 1936 | |
| 1937 | Returns: |
| 1938 | True if the abandon succeeded; False if it didn't; None if the branch |
| 1939 | didn't exist. |
Shawn O. Pearce | 9fa44db | 2008-11-03 11:24:59 -0800 | [diff] [blame] | 1940 | """ |
Shawn O. Pearce | 552ac89 | 2009-04-18 15:15:24 -0700 | [diff] [blame] | 1941 | rev = R_HEADS + name |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 1942 | all_refs = self.bare_ref.all |
| 1943 | if rev not in all_refs: |
Doug Anderson | dafb1d6 | 2011-04-07 11:46:59 -0700 | [diff] [blame] | 1944 | # Doesn't exist |
| 1945 | return None |
Shawn O. Pearce | 9fa44db | 2008-11-03 11:24:59 -0800 | [diff] [blame] | 1946 | |
Shawn O. Pearce | 552ac89 | 2009-04-18 15:15:24 -0700 | [diff] [blame] | 1947 | head = self.work_git.GetHead() |
| 1948 | if head == rev: |
| 1949 | # We can't destroy the branch while we are sitting |
| 1950 | # on it. Switch to a detached HEAD. |
| 1951 | # |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 1952 | head = all_refs[head] |
Shawn O. Pearce | 9fa44db | 2008-11-03 11:24:59 -0800 | [diff] [blame] | 1953 | |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 1954 | revid = self.GetRevisionId(all_refs) |
Shawn O. Pearce | 3c8dea1 | 2009-05-29 18:38:17 -0700 | [diff] [blame] | 1955 | if head == revid: |
Mike Frysinger | f914edc | 2020-02-09 03:01:56 -0500 | [diff] [blame] | 1956 | _lwrite(self.GetHeadPath(), '%s\n' % revid) |
Shawn O. Pearce | 552ac89 | 2009-04-18 15:15:24 -0700 | [diff] [blame] | 1957 | else: |
Shawn O. Pearce | 3c8dea1 | 2009-05-29 18:38:17 -0700 | [diff] [blame] | 1958 | self._Checkout(revid, quiet=True) |
Shawn O. Pearce | 552ac89 | 2009-04-18 15:15:24 -0700 | [diff] [blame] | 1959 | |
| 1960 | return GitCommand(self, |
| 1961 | ['branch', '-D', name], |
Anthony King | 7bdac71 | 2014-07-16 12:56:40 +0100 | [diff] [blame] | 1962 | capture_stdout=True, |
| 1963 | capture_stderr=True).Wait() == 0 |
Shawn O. Pearce | 9fa44db | 2008-11-03 11:24:59 -0800 | [diff] [blame] | 1964 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1965 | def PruneHeads(self): |
| 1966 | """Prune any topic branches already merged into upstream. |
| 1967 | """ |
| 1968 | cb = self.CurrentBranch |
| 1969 | kill = [] |
Shawn O. Pearce | 3778f9d | 2009-03-02 12:30:50 -0800 | [diff] [blame] | 1970 | left = self._allrefs |
| 1971 | for name in left.keys(): |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1972 | if name.startswith(R_HEADS): |
| 1973 | name = name[len(R_HEADS):] |
| 1974 | if cb is None or name != cb: |
| 1975 | kill.append(name) |
| 1976 | |
Shawn O. Pearce | 3c8dea1 | 2009-05-29 18:38:17 -0700 | [diff] [blame] | 1977 | rev = self.GetRevisionId(left) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1978 | if cb is not None \ |
| 1979 | and not self._revlist(HEAD + '...' + rev) \ |
Anthony King | 7bdac71 | 2014-07-16 12:56:40 +0100 | [diff] [blame] | 1980 | and not self.IsDirty(consider_untracked=False): |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1981 | self.work_git.DetachHead(HEAD) |
| 1982 | kill.append(cb) |
| 1983 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1984 | if kill: |
Shawn O. Pearce | 5b23f24 | 2009-04-17 18:43:33 -0700 | [diff] [blame] | 1985 | old = self.bare_git.GetHead() |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1986 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1987 | try: |
| 1988 | self.bare_git.DetachHead(rev) |
| 1989 | |
| 1990 | b = ['branch', '-d'] |
| 1991 | b.extend(kill) |
| 1992 | b = GitCommand(self, b, bare=True, |
| 1993 | capture_stdout=True, |
| 1994 | capture_stderr=True) |
| 1995 | b.Wait() |
| 1996 | finally: |
Dan Willemsen | 1a799d1 | 2015-12-15 13:40:05 -0800 | [diff] [blame] | 1997 | if ID_RE.match(old): |
| 1998 | self.bare_git.DetachHead(old) |
| 1999 | else: |
| 2000 | self.bare_git.SetHead(old) |
Shawn O. Pearce | 3778f9d | 2009-03-02 12:30:50 -0800 | [diff] [blame] | 2001 | left = self._allrefs |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 2002 | |
Shawn O. Pearce | 3778f9d | 2009-03-02 12:30:50 -0800 | [diff] [blame] | 2003 | for branch in kill: |
| 2004 | if (R_HEADS + branch) not in left: |
| 2005 | self.CleanPublishedCache() |
| 2006 | break |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 2007 | |
| 2008 | if cb and cb not in kill: |
| 2009 | kill.append(cb) |
Shawn O. Pearce | 7c6c64d | 2009-03-02 12:38:13 -0800 | [diff] [blame] | 2010 | kill.sort() |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 2011 | |
| 2012 | kept = [] |
| 2013 | for branch in kill: |
Anthony King | 7bdac71 | 2014-07-16 12:56:40 +0100 | [diff] [blame] | 2014 | if R_HEADS + branch in left: |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 2015 | branch = self.GetBranch(branch) |
| 2016 | base = branch.LocalMerge |
| 2017 | if not base: |
| 2018 | base = rev |
| 2019 | kept.append(ReviewableBranch(self, branch, base)) |
| 2020 | return kept |
| 2021 | |
| 2022 | |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 2023 | # Submodule Management ## |
Che-Liang Chiou | b2bd91c | 2012-01-11 11:28:42 +0800 | [diff] [blame] | 2024 | |
| 2025 | def GetRegisteredSubprojects(self): |
| 2026 | result = [] |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 2027 | |
Che-Liang Chiou | b2bd91c | 2012-01-11 11:28:42 +0800 | [diff] [blame] | 2028 | def rec(subprojects): |
| 2029 | if not subprojects: |
| 2030 | return |
| 2031 | result.extend(subprojects) |
| 2032 | for p in subprojects: |
| 2033 | rec(p.subprojects) |
| 2034 | rec(self.subprojects) |
| 2035 | return result |
| 2036 | |
| 2037 | def _GetSubmodules(self): |
| 2038 | # Unfortunately we cannot call `git submodule status --recursive` here |
| 2039 | # because the working tree might not exist yet, and it cannot be used |
| 2040 | # without a working tree in its current implementation. |
| 2041 | |
| 2042 | def get_submodules(gitdir, rev): |
| 2043 | # Parse .gitmodules for submodule sub_paths and sub_urls |
| 2044 | sub_paths, sub_urls = parse_gitmodules(gitdir, rev) |
| 2045 | if not sub_paths: |
| 2046 | return [] |
| 2047 | # Run `git ls-tree` to read SHAs of submodule object, which happen to be |
| 2048 | # revision of submodule repository |
| 2049 | sub_revs = git_ls_tree(gitdir, rev, sub_paths) |
| 2050 | submodules = [] |
| 2051 | for sub_path, sub_url in zip(sub_paths, sub_urls): |
| 2052 | try: |
| 2053 | sub_rev = sub_revs[sub_path] |
| 2054 | except KeyError: |
| 2055 | # Ignore non-exist submodules |
| 2056 | continue |
| 2057 | submodules.append((sub_rev, sub_path, sub_url)) |
| 2058 | return submodules |
| 2059 | |
Sebastian Schuberth | 41a2683 | 2019-03-11 13:53:38 +0100 | [diff] [blame] | 2060 | re_path = re.compile(r'^submodule\.(.+)\.path=(.*)$') |
| 2061 | re_url = re.compile(r'^submodule\.(.+)\.url=(.*)$') |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 2062 | |
Che-Liang Chiou | b2bd91c | 2012-01-11 11:28:42 +0800 | [diff] [blame] | 2063 | def parse_gitmodules(gitdir, rev): |
| 2064 | cmd = ['cat-file', 'blob', '%s:.gitmodules' % rev] |
| 2065 | try: |
Anthony King | 7bdac71 | 2014-07-16 12:56:40 +0100 | [diff] [blame] | 2066 | p = GitCommand(None, cmd, capture_stdout=True, capture_stderr=True, |
| 2067 | bare=True, gitdir=gitdir) |
Che-Liang Chiou | b2bd91c | 2012-01-11 11:28:42 +0800 | [diff] [blame] | 2068 | except GitError: |
| 2069 | return [], [] |
| 2070 | if p.Wait() != 0: |
| 2071 | return [], [] |
| 2072 | |
| 2073 | gitmodules_lines = [] |
| 2074 | fd, temp_gitmodules_path = tempfile.mkstemp() |
| 2075 | try: |
Mike Frysinger | 163d42e | 2020-02-11 03:35:24 -0500 | [diff] [blame] | 2076 | os.write(fd, p.stdout.encode('utf-8')) |
Che-Liang Chiou | b2bd91c | 2012-01-11 11:28:42 +0800 | [diff] [blame] | 2077 | os.close(fd) |
| 2078 | cmd = ['config', '--file', temp_gitmodules_path, '--list'] |
Anthony King | 7bdac71 | 2014-07-16 12:56:40 +0100 | [diff] [blame] | 2079 | p = GitCommand(None, cmd, capture_stdout=True, capture_stderr=True, |
| 2080 | bare=True, gitdir=gitdir) |
Che-Liang Chiou | b2bd91c | 2012-01-11 11:28:42 +0800 | [diff] [blame] | 2081 | if p.Wait() != 0: |
| 2082 | return [], [] |
| 2083 | gitmodules_lines = p.stdout.split('\n') |
| 2084 | except GitError: |
| 2085 | return [], [] |
| 2086 | finally: |
Renaud Paquay | 010fed7 | 2016-11-11 14:25:29 -0800 | [diff] [blame] | 2087 | platform_utils.remove(temp_gitmodules_path) |
Che-Liang Chiou | b2bd91c | 2012-01-11 11:28:42 +0800 | [diff] [blame] | 2088 | |
| 2089 | names = set() |
| 2090 | paths = {} |
| 2091 | urls = {} |
| 2092 | for line in gitmodules_lines: |
| 2093 | if not line: |
| 2094 | continue |
| 2095 | m = re_path.match(line) |
| 2096 | if m: |
| 2097 | names.add(m.group(1)) |
| 2098 | paths[m.group(1)] = m.group(2) |
| 2099 | continue |
| 2100 | m = re_url.match(line) |
| 2101 | if m: |
| 2102 | names.add(m.group(1)) |
| 2103 | urls[m.group(1)] = m.group(2) |
| 2104 | continue |
| 2105 | names = sorted(names) |
| 2106 | return ([paths.get(name, '') for name in names], |
| 2107 | [urls.get(name, '') for name in names]) |
| 2108 | |
| 2109 | def git_ls_tree(gitdir, rev, paths): |
| 2110 | cmd = ['ls-tree', rev, '--'] |
| 2111 | cmd.extend(paths) |
| 2112 | try: |
Anthony King | 7bdac71 | 2014-07-16 12:56:40 +0100 | [diff] [blame] | 2113 | p = GitCommand(None, cmd, capture_stdout=True, capture_stderr=True, |
| 2114 | bare=True, gitdir=gitdir) |
Che-Liang Chiou | b2bd91c | 2012-01-11 11:28:42 +0800 | [diff] [blame] | 2115 | except GitError: |
| 2116 | return [] |
| 2117 | if p.Wait() != 0: |
| 2118 | return [] |
| 2119 | objects = {} |
| 2120 | for line in p.stdout.split('\n'): |
| 2121 | if not line.strip(): |
| 2122 | continue |
| 2123 | object_rev, object_path = line.split()[2:4] |
| 2124 | objects[object_path] = object_rev |
| 2125 | return objects |
| 2126 | |
| 2127 | try: |
| 2128 | rev = self.GetRevisionId() |
| 2129 | except GitError: |
| 2130 | return [] |
| 2131 | return get_submodules(self.gitdir, rev) |
| 2132 | |
| 2133 | def GetDerivedSubprojects(self): |
| 2134 | result = [] |
| 2135 | if not self.Exists: |
| 2136 | # If git repo does not exist yet, querying its submodules will |
| 2137 | # mess up its states; so return here. |
| 2138 | return result |
| 2139 | for rev, path, url in self._GetSubmodules(): |
| 2140 | name = self.manifest.GetSubprojectName(self, path) |
David James | 8d20116 | 2013-10-11 17:03:19 -0700 | [diff] [blame] | 2141 | relpath, worktree, gitdir, objdir = \ |
| 2142 | self.manifest.GetSubprojectPaths(self, name, path) |
| 2143 | project = self.manifest.paths.get(relpath) |
Che-Liang Chiou | b2bd91c | 2012-01-11 11:28:42 +0800 | [diff] [blame] | 2144 | if project: |
| 2145 | result.extend(project.GetDerivedSubprojects()) |
| 2146 | continue |
David James | 8d20116 | 2013-10-11 17:03:19 -0700 | [diff] [blame] | 2147 | |
Shouheng Zhang | 02c0ee6 | 2017-12-08 09:54:58 +0800 | [diff] [blame] | 2148 | if url.startswith('..'): |
| 2149 | url = urllib.parse.urljoin("%s/" % self.remote.url, url) |
Che-Liang Chiou | b2bd91c | 2012-01-11 11:28:42 +0800 | [diff] [blame] | 2150 | remote = RemoteSpec(self.remote.name, |
Anthony King | 7bdac71 | 2014-07-16 12:56:40 +0100 | [diff] [blame] | 2151 | url=url, |
Steve Rae | d648045 | 2016-08-10 15:00:00 -0700 | [diff] [blame] | 2152 | pushUrl=self.remote.pushUrl, |
Anthony King | 7bdac71 | 2014-07-16 12:56:40 +0100 | [diff] [blame] | 2153 | review=self.remote.review, |
| 2154 | revision=self.remote.revision) |
| 2155 | subproject = Project(manifest=self.manifest, |
| 2156 | name=name, |
| 2157 | remote=remote, |
| 2158 | gitdir=gitdir, |
| 2159 | objdir=objdir, |
| 2160 | worktree=worktree, |
| 2161 | relpath=relpath, |
Aymen Bouaziz | 2598ed0 | 2016-06-24 14:34:08 +0200 | [diff] [blame] | 2162 | revisionExpr=rev, |
Anthony King | 7bdac71 | 2014-07-16 12:56:40 +0100 | [diff] [blame] | 2163 | revisionId=rev, |
| 2164 | rebase=self.rebase, |
| 2165 | groups=self.groups, |
| 2166 | sync_c=self.sync_c, |
| 2167 | sync_s=self.sync_s, |
YOUNG HO CHA | a32c92c | 2018-02-14 16:57:31 +0900 | [diff] [blame] | 2168 | sync_tags=self.sync_tags, |
Anthony King | 7bdac71 | 2014-07-16 12:56:40 +0100 | [diff] [blame] | 2169 | parent=self, |
| 2170 | is_derived=True) |
Che-Liang Chiou | b2bd91c | 2012-01-11 11:28:42 +0800 | [diff] [blame] | 2171 | result.append(subproject) |
| 2172 | result.extend(subproject.GetDerivedSubprojects()) |
| 2173 | return result |
| 2174 | |
| 2175 | |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 2176 | # Direct Git Commands ## |
Zac Livingston | e433226 | 2017-06-16 08:56:09 -0600 | [diff] [blame] | 2177 | def _CheckForImmutableRevision(self): |
Chris AtLee | 2fb6466 | 2014-01-16 21:32:33 -0500 | [diff] [blame] | 2178 | try: |
| 2179 | # if revision (sha or tag) is not present then following function |
| 2180 | # throws an error. |
| 2181 | self.bare_git.rev_parse('--verify', '%s^0' % self.revisionExpr) |
| 2182 | return True |
| 2183 | except GitError: |
| 2184 | # There is no such persistent revision. We have to fetch it. |
| 2185 | return False |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 2186 | |
Julien Campergue | 335f5ef | 2013-10-16 11:02:35 +0200 | [diff] [blame] | 2187 | def _FetchArchive(self, tarpath, cwd=None): |
| 2188 | cmd = ['archive', '-v', '-o', tarpath] |
| 2189 | cmd.append('--remote=%s' % self.remote.url) |
| 2190 | cmd.append('--prefix=%s/' % self.relpath) |
| 2191 | cmd.append(self.revisionExpr) |
| 2192 | |
| 2193 | command = GitCommand(self, cmd, cwd=cwd, |
| 2194 | capture_stdout=True, |
| 2195 | capture_stderr=True) |
| 2196 | |
| 2197 | if command.Wait() != 0: |
| 2198 | raise GitError('git archive %s: %s' % (self.name, command.stderr)) |
| 2199 | |
Anatol Pomazau | 53d6f4d | 2011-08-25 17:21:47 -0700 | [diff] [blame] | 2200 | def _RemoteFetch(self, name=None, |
| 2201 | current_branch_only=False, |
Shawn O. Pearce | 16614f8 | 2010-10-29 12:05:43 -0700 | [diff] [blame] | 2202 | initial=False, |
Shawn O. Pearce | c325dc3 | 2011-10-03 08:30:24 -0700 | [diff] [blame] | 2203 | quiet=False, |
Mitchel Humpherys | 597868b | 2012-10-29 10:18:34 -0700 | [diff] [blame] | 2204 | alt_dir=None, |
David Pursehouse | 74cfd27 | 2015-10-14 10:50:15 +0900 | [diff] [blame] | 2205 | no_tags=False, |
Aymen Bouaziz | 6c59446 | 2016-10-25 18:03:51 +0200 | [diff] [blame] | 2206 | prune=False, |
Martin Kelly | e4e94d2 | 2017-03-21 16:05:12 -0700 | [diff] [blame] | 2207 | depth=None, |
Mike Frysinger | e57f114 | 2019-03-18 21:27:54 -0400 | [diff] [blame] | 2208 | submodules=False, |
Xin Li | 745be2e | 2019-06-03 11:24:30 -0700 | [diff] [blame] | 2209 | force_sync=False, |
| 2210 | clone_filter=None): |
Anatol Pomazau | 53d6f4d | 2011-08-25 17:21:47 -0700 | [diff] [blame] | 2211 | |
| 2212 | is_sha1 = False |
| 2213 | tag_name = None |
David Pursehouse | 9bc422f | 2014-04-15 10:28:56 +0900 | [diff] [blame] | 2214 | # The depth should not be used when fetching to a mirror because |
| 2215 | # it will result in a shallow repository that cannot be cloned or |
| 2216 | # fetched from. |
Aymen Bouaziz | 6c59446 | 2016-10-25 18:03:51 +0200 | [diff] [blame] | 2217 | # The repo project should also never be synced with partial depth. |
| 2218 | if self.manifest.IsMirror or self.relpath == '.repo/repo': |
| 2219 | depth = None |
David Pursehouse | 9bc422f | 2014-04-15 10:28:56 +0900 | [diff] [blame] | 2220 | |
Shawn Pearce | 69e04d8 | 2014-01-29 12:48:54 -0800 | [diff] [blame] | 2221 | if depth: |
| 2222 | current_branch_only = True |
| 2223 | |
Nasser Grainawi | 909d58b | 2014-09-19 12:13:04 -0600 | [diff] [blame] | 2224 | if ID_RE.match(self.revisionExpr) is not None: |
| 2225 | is_sha1 = True |
| 2226 | |
Anatol Pomazau | 53d6f4d | 2011-08-25 17:21:47 -0700 | [diff] [blame] | 2227 | if current_branch_only: |
Nasser Grainawi | 909d58b | 2014-09-19 12:13:04 -0600 | [diff] [blame] | 2228 | if self.revisionExpr.startswith(R_TAGS): |
Anatol Pomazau | 53d6f4d | 2011-08-25 17:21:47 -0700 | [diff] [blame] | 2229 | # this is a tag and its sha1 value should never change |
| 2230 | tag_name = self.revisionExpr[len(R_TAGS):] |
| 2231 | |
| 2232 | if is_sha1 or tag_name is not None: |
Zac Livingston | e433226 | 2017-06-16 08:56:09 -0600 | [diff] [blame] | 2233 | if self._CheckForImmutableRevision(): |
Tim Schumacher | 1f1596b | 2019-04-15 11:17:08 +0200 | [diff] [blame] | 2234 | if not quiet: |
| 2235 | print('Skipped fetching project %s (already have persistent ref)' |
| 2236 | % self.name) |
Anatol Pomazau | 53d6f4d | 2011-08-25 17:21:47 -0700 | [diff] [blame] | 2237 | return True |
Bertrand SIMONNET | 3000cda | 2014-11-25 16:19:29 -0800 | [diff] [blame] | 2238 | if is_sha1 and not depth: |
| 2239 | # When syncing a specific commit and --depth is not set: |
| 2240 | # * if upstream is explicitly specified and is not a sha1, fetch only |
| 2241 | # upstream as users expect only upstream to be fetch. |
| 2242 | # Note: The commit might not be in upstream in which case the sync |
| 2243 | # will fail. |
| 2244 | # * otherwise, fetch all branches to make sure we end up with the |
| 2245 | # specific commit. |
Aymen Bouaziz | 037040f | 2016-06-28 12:27:23 +0200 | [diff] [blame] | 2246 | if self.upstream: |
| 2247 | current_branch_only = not ID_RE.match(self.upstream) |
| 2248 | else: |
| 2249 | current_branch_only = False |
Anatol Pomazau | 53d6f4d | 2011-08-25 17:21:47 -0700 | [diff] [blame] | 2250 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 2251 | if not name: |
| 2252 | name = self.remote.name |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 2253 | |
| 2254 | ssh_proxy = False |
Shawn O. Pearce | f322b9a | 2011-09-19 14:50:58 -0700 | [diff] [blame] | 2255 | remote = self.GetRemote(name) |
| 2256 | if remote.PreConnectFetch(): |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 2257 | ssh_proxy = True |
| 2258 | |
Shawn O. Pearce | 8844338 | 2010-10-08 10:02:09 +0200 | [diff] [blame] | 2259 | if initial: |
Shawn O. Pearce | c325dc3 | 2011-10-03 08:30:24 -0700 | [diff] [blame] | 2260 | if alt_dir and 'objects' == os.path.basename(alt_dir): |
| 2261 | ref_dir = os.path.dirname(alt_dir) |
Shawn O. Pearce | 8844338 | 2010-10-08 10:02:09 +0200 | [diff] [blame] | 2262 | packed_refs = os.path.join(self.gitdir, 'packed-refs') |
| 2263 | remote = self.GetRemote(name) |
| 2264 | |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 2265 | all_refs = self.bare_ref.all |
| 2266 | ids = set(all_refs.values()) |
Shawn O. Pearce | 8844338 | 2010-10-08 10:02:09 +0200 | [diff] [blame] | 2267 | tmp = set() |
| 2268 | |
Chirayu Desai | 217ea7d | 2013-03-01 19:14:38 +0530 | [diff] [blame] | 2269 | for r, ref_id in GitRefs(ref_dir).all.items(): |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 2270 | if r not in all_refs: |
Shawn O. Pearce | 8844338 | 2010-10-08 10:02:09 +0200 | [diff] [blame] | 2271 | if r.startswith(R_TAGS) or remote.WritesTo(r): |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 2272 | all_refs[r] = ref_id |
| 2273 | ids.add(ref_id) |
Shawn O. Pearce | 8844338 | 2010-10-08 10:02:09 +0200 | [diff] [blame] | 2274 | continue |
| 2275 | |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 2276 | if ref_id in ids: |
Shawn O. Pearce | 8844338 | 2010-10-08 10:02:09 +0200 | [diff] [blame] | 2277 | continue |
| 2278 | |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 2279 | r = 'refs/_alt/%s' % ref_id |
| 2280 | all_refs[r] = ref_id |
| 2281 | ids.add(ref_id) |
Shawn O. Pearce | 8844338 | 2010-10-08 10:02:09 +0200 | [diff] [blame] | 2282 | tmp.add(r) |
| 2283 | |
heping | 3d7bbc9 | 2017-04-12 19:51:47 +0800 | [diff] [blame] | 2284 | tmp_packed_lines = [] |
| 2285 | old_packed_lines = [] |
Shawn O. Pearce | 8844338 | 2010-10-08 10:02:09 +0200 | [diff] [blame] | 2286 | |
Chirayu Desai | 217ea7d | 2013-03-01 19:14:38 +0530 | [diff] [blame] | 2287 | for r in sorted(all_refs): |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 2288 | line = '%s %s\n' % (all_refs[r], r) |
heping | 3d7bbc9 | 2017-04-12 19:51:47 +0800 | [diff] [blame] | 2289 | tmp_packed_lines.append(line) |
Shawn O. Pearce | 8844338 | 2010-10-08 10:02:09 +0200 | [diff] [blame] | 2290 | if r not in tmp: |
heping | 3d7bbc9 | 2017-04-12 19:51:47 +0800 | [diff] [blame] | 2291 | old_packed_lines.append(line) |
Shawn O. Pearce | 8844338 | 2010-10-08 10:02:09 +0200 | [diff] [blame] | 2292 | |
heping | 3d7bbc9 | 2017-04-12 19:51:47 +0800 | [diff] [blame] | 2293 | tmp_packed = ''.join(tmp_packed_lines) |
| 2294 | old_packed = ''.join(old_packed_lines) |
Shawn O. Pearce | 8844338 | 2010-10-08 10:02:09 +0200 | [diff] [blame] | 2295 | _lwrite(packed_refs, tmp_packed) |
Shawn O. Pearce | 8844338 | 2010-10-08 10:02:09 +0200 | [diff] [blame] | 2296 | else: |
Shawn O. Pearce | c325dc3 | 2011-10-03 08:30:24 -0700 | [diff] [blame] | 2297 | alt_dir = None |
Shawn O. Pearce | 8844338 | 2010-10-08 10:02:09 +0200 | [diff] [blame] | 2298 | |
Shawn O. Pearce | e284ad1 | 2008-11-04 07:37:10 -0800 | [diff] [blame] | 2299 | cmd = ['fetch'] |
Doug Anderson | 30d4529 | 2011-05-04 15:01:04 -0700 | [diff] [blame] | 2300 | |
Xin Li | 745be2e | 2019-06-03 11:24:30 -0700 | [diff] [blame] | 2301 | if clone_filter: |
| 2302 | git_require((2, 19, 0), fail=True, msg='partial clones') |
| 2303 | cmd.append('--filter=%s' % clone_filter) |
| 2304 | self.config.SetString('extensions.partialclone', self.remote.name) |
| 2305 | |
Conley Owens | f97e838 | 2015-01-21 11:12:46 -0800 | [diff] [blame] | 2306 | if depth: |
Doug Anderson | 30d4529 | 2011-05-04 15:01:04 -0700 | [diff] [blame] | 2307 | cmd.append('--depth=%s' % depth) |
Dan Willemsen | eeab686 | 2015-08-03 13:11:53 -0700 | [diff] [blame] | 2308 | else: |
| 2309 | # If this repo has shallow objects, then we don't know which refs have |
| 2310 | # shallow objects or not. Tell git to unshallow all fetched refs. Don't |
| 2311 | # do this with projects that don't have shallow objects, since it is less |
| 2312 | # efficient. |
| 2313 | if os.path.exists(os.path.join(self.gitdir, 'shallow')): |
| 2314 | cmd.append('--depth=2147483647') |
Doug Anderson | 30d4529 | 2011-05-04 15:01:04 -0700 | [diff] [blame] | 2315 | |
Shawn O. Pearce | 16614f8 | 2010-10-29 12:05:43 -0700 | [diff] [blame] | 2316 | if quiet: |
| 2317 | cmd.append('--quiet') |
Shawn O. Pearce | e284ad1 | 2008-11-04 07:37:10 -0800 | [diff] [blame] | 2318 | if not self.worktree: |
| 2319 | cmd.append('--update-head-ok') |
Shawn O. Pearce | c325dc3 | 2011-10-03 08:30:24 -0700 | [diff] [blame] | 2320 | cmd.append(name) |
Anatol Pomazau | 53d6f4d | 2011-08-25 17:21:47 -0700 | [diff] [blame] | 2321 | |
Mike Frysinger | e57f114 | 2019-03-18 21:27:54 -0400 | [diff] [blame] | 2322 | if force_sync: |
| 2323 | cmd.append('--force') |
| 2324 | |
David Pursehouse | 74cfd27 | 2015-10-14 10:50:15 +0900 | [diff] [blame] | 2325 | if prune: |
| 2326 | cmd.append('--prune') |
| 2327 | |
Martin Kelly | e4e94d2 | 2017-03-21 16:05:12 -0700 | [diff] [blame] | 2328 | if submodules: |
| 2329 | cmd.append('--recurse-submodules=on-demand') |
| 2330 | |
Kuang-che Wu | 6856f98 | 2019-11-25 12:37:55 +0800 | [diff] [blame] | 2331 | spec = [] |
Brian Harring | 14a6674 | 2012-09-28 20:21:57 -0700 | [diff] [blame] | 2332 | if not current_branch_only: |
Anatol Pomazau | 53d6f4d | 2011-08-25 17:21:47 -0700 | [diff] [blame] | 2333 | # Fetch whole repo |
Conley Owens | 80b87fe | 2014-05-09 17:13:44 -0700 | [diff] [blame] | 2334 | spec.append(str((u'+refs/heads/*:') + remote.ToLocal('refs/heads/*'))) |
Anatol Pomazau | 53d6f4d | 2011-08-25 17:21:47 -0700 | [diff] [blame] | 2335 | elif tag_name is not None: |
Conley Owens | 80b87fe | 2014-05-09 17:13:44 -0700 | [diff] [blame] | 2336 | spec.append('tag') |
| 2337 | spec.append(tag_name) |
Nasser Grainawi | 04e52d6 | 2014-09-30 13:34:52 -0600 | [diff] [blame] | 2338 | |
Chirayu Desai | f7b64e3 | 2020-02-04 17:50:57 +0530 | [diff] [blame] | 2339 | if self.manifest.IsMirror and not current_branch_only: |
| 2340 | branch = None |
| 2341 | else: |
| 2342 | branch = self.revisionExpr |
Kuang-che Wu | 6856f98 | 2019-11-25 12:37:55 +0800 | [diff] [blame] | 2343 | if (not self.manifest.IsMirror and is_sha1 and depth |
David Pursehouse | abdf750 | 2020-02-12 14:58:39 +0900 | [diff] [blame^] | 2344 | and git_require((1, 8, 3))): |
Kuang-che Wu | 6856f98 | 2019-11-25 12:37:55 +0800 | [diff] [blame] | 2345 | # Shallow checkout of a specific commit, fetch from that commit and not |
| 2346 | # the heads only as the commit might be deeper in the history. |
| 2347 | spec.append(branch) |
| 2348 | else: |
| 2349 | if is_sha1: |
| 2350 | branch = self.upstream |
| 2351 | if branch is not None and branch.strip(): |
| 2352 | if not branch.startswith('refs/'): |
| 2353 | branch = R_HEADS + branch |
| 2354 | spec.append(str((u'+%s:' % branch) + remote.ToLocal(branch))) |
| 2355 | |
| 2356 | # If mirroring repo and we cannot deduce the tag or branch to fetch, fetch |
| 2357 | # whole repo. |
| 2358 | if self.manifest.IsMirror and not spec: |
| 2359 | spec.append(str((u'+refs/heads/*:') + remote.ToLocal('refs/heads/*'))) |
| 2360 | |
| 2361 | # If using depth then we should not get all the tags since they may |
| 2362 | # be outside of the depth. |
| 2363 | if no_tags or depth: |
| 2364 | cmd.append('--no-tags') |
| 2365 | else: |
| 2366 | cmd.append('--tags') |
| 2367 | spec.append(str((u'+refs/tags/*:') + remote.ToLocal('refs/tags/*'))) |
| 2368 | |
Conley Owens | 80b87fe | 2014-05-09 17:13:44 -0700 | [diff] [blame] | 2369 | cmd.extend(spec) |
| 2370 | |
Shawn O. Pearce | c325dc3 | 2011-10-03 08:30:24 -0700 | [diff] [blame] | 2371 | ok = False |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 2372 | for _i in range(2): |
John L. Villalovos | 9c76f67 | 2015-03-16 20:49:10 -0700 | [diff] [blame] | 2373 | gitcmd = GitCommand(self, cmd, bare=True, ssh_proxy=ssh_proxy) |
John L. Villalovos | 126e298 | 2015-01-29 21:58:12 -0800 | [diff] [blame] | 2374 | ret = gitcmd.Wait() |
Brian Harring | 14a6674 | 2012-09-28 20:21:57 -0700 | [diff] [blame] | 2375 | if ret == 0: |
Shawn O. Pearce | c325dc3 | 2011-10-03 08:30:24 -0700 | [diff] [blame] | 2376 | ok = True |
| 2377 | break |
John L. Villalovos | 126e298 | 2015-01-29 21:58:12 -0800 | [diff] [blame] | 2378 | # If needed, run the 'git remote prune' the first time through the loop |
| 2379 | elif (not _i and |
| 2380 | "error:" in gitcmd.stderr and |
| 2381 | "git remote prune" in gitcmd.stderr): |
| 2382 | prunecmd = GitCommand(self, ['remote', 'prune', name], bare=True, |
John L. Villalovos | 9c76f67 | 2015-03-16 20:49:10 -0700 | [diff] [blame] | 2383 | ssh_proxy=ssh_proxy) |
John L. Villalovos | e30f46b | 2015-02-25 14:27:02 -0800 | [diff] [blame] | 2384 | ret = prunecmd.Wait() |
John L. Villalovos | e30f46b | 2015-02-25 14:27:02 -0800 | [diff] [blame] | 2385 | if ret: |
John L. Villalovos | 126e298 | 2015-01-29 21:58:12 -0800 | [diff] [blame] | 2386 | break |
| 2387 | continue |
Brian Harring | 14a6674 | 2012-09-28 20:21:57 -0700 | [diff] [blame] | 2388 | elif current_branch_only and is_sha1 and ret == 128: |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 2389 | # Exit code 128 means "couldn't find the ref you asked for"; if we're |
| 2390 | # in sha1 mode, we just tried sync'ing from the upstream field; it |
| 2391 | # doesn't exist, thus abort the optimization attempt and do a full sync. |
Brian Harring | 14a6674 | 2012-09-28 20:21:57 -0700 | [diff] [blame] | 2392 | break |
Colin Cross | c4b301f | 2015-05-13 00:10:02 -0700 | [diff] [blame] | 2393 | elif ret < 0: |
| 2394 | # Git died with a signal, exit immediately |
| 2395 | break |
Shawn O. Pearce | c325dc3 | 2011-10-03 08:30:24 -0700 | [diff] [blame] | 2396 | time.sleep(random.randint(30, 45)) |
Shawn O. Pearce | 8844338 | 2010-10-08 10:02:09 +0200 | [diff] [blame] | 2397 | |
| 2398 | if initial: |
Shawn O. Pearce | c325dc3 | 2011-10-03 08:30:24 -0700 | [diff] [blame] | 2399 | if alt_dir: |
Shawn O. Pearce | 8844338 | 2010-10-08 10:02:09 +0200 | [diff] [blame] | 2400 | if old_packed != '': |
| 2401 | _lwrite(packed_refs, old_packed) |
| 2402 | else: |
Renaud Paquay | 010fed7 | 2016-11-11 14:25:29 -0800 | [diff] [blame] | 2403 | platform_utils.remove(packed_refs) |
Shawn O. Pearce | 8844338 | 2010-10-08 10:02:09 +0200 | [diff] [blame] | 2404 | self.bare_git.pack_refs('--all', '--prune') |
Brian Harring | 14a6674 | 2012-09-28 20:21:57 -0700 | [diff] [blame] | 2405 | |
Aymen Bouaziz | 6c59446 | 2016-10-25 18:03:51 +0200 | [diff] [blame] | 2406 | if is_sha1 and current_branch_only: |
Brian Harring | 14a6674 | 2012-09-28 20:21:57 -0700 | [diff] [blame] | 2407 | # We just synced the upstream given branch; verify we |
| 2408 | # got what we wanted, else trigger a second run of all |
| 2409 | # refs. |
Zac Livingston | e433226 | 2017-06-16 08:56:09 -0600 | [diff] [blame] | 2410 | if not self._CheckForImmutableRevision(): |
Aymen Bouaziz | 6c59446 | 2016-10-25 18:03:51 +0200 | [diff] [blame] | 2411 | if current_branch_only and depth: |
| 2412 | # Sync the current branch only with depth set to None |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 2413 | return self._RemoteFetch(name=name, |
| 2414 | current_branch_only=current_branch_only, |
Aymen Bouaziz | 6c59446 | 2016-10-25 18:03:51 +0200 | [diff] [blame] | 2415 | initial=False, quiet=quiet, alt_dir=alt_dir, |
Xin Li | 745be2e | 2019-06-03 11:24:30 -0700 | [diff] [blame] | 2416 | depth=None, clone_filter=clone_filter) |
Aymen Bouaziz | 6c59446 | 2016-10-25 18:03:51 +0200 | [diff] [blame] | 2417 | else: |
| 2418 | # Avoid infinite recursion: sync all branches with depth set to None |
| 2419 | return self._RemoteFetch(name=name, current_branch_only=False, |
| 2420 | initial=False, quiet=quiet, alt_dir=alt_dir, |
Xin Li | 745be2e | 2019-06-03 11:24:30 -0700 | [diff] [blame] | 2421 | depth=None, clone_filter=clone_filter) |
Brian Harring | 14a6674 | 2012-09-28 20:21:57 -0700 | [diff] [blame] | 2422 | |
Shawn O. Pearce | c325dc3 | 2011-10-03 08:30:24 -0700 | [diff] [blame] | 2423 | return ok |
Shawn O. Pearce | 8844338 | 2010-10-08 10:02:09 +0200 | [diff] [blame] | 2424 | |
Shawn O. Pearce | c325dc3 | 2011-10-03 08:30:24 -0700 | [diff] [blame] | 2425 | def _ApplyCloneBundle(self, initial=False, quiet=False): |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 2426 | if initial and \ |
| 2427 | (self.manifest.manifestProject.config.GetString('repo.depth') or |
| 2428 | self.clone_depth): |
Shawn O. Pearce | c325dc3 | 2011-10-03 08:30:24 -0700 | [diff] [blame] | 2429 | return False |
| 2430 | |
| 2431 | remote = self.GetRemote(self.remote.name) |
| 2432 | bundle_url = remote.url + '/clone.bundle' |
| 2433 | bundle_url = GitConfig.ForUser().UrlInsteadOf(bundle_url) |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 2434 | if GetSchemeFromUrl(bundle_url) not in ('http', 'https', |
| 2435 | 'persistent-http', |
| 2436 | 'persistent-https'): |
Shawn O. Pearce | c325dc3 | 2011-10-03 08:30:24 -0700 | [diff] [blame] | 2437 | return False |
| 2438 | |
| 2439 | bundle_dst = os.path.join(self.gitdir, 'clone.bundle') |
| 2440 | bundle_tmp = os.path.join(self.gitdir, 'clone.bundle.tmp') |
| 2441 | |
| 2442 | exist_dst = os.path.exists(bundle_dst) |
| 2443 | exist_tmp = os.path.exists(bundle_tmp) |
| 2444 | |
| 2445 | if not initial and not exist_dst and not exist_tmp: |
| 2446 | return False |
| 2447 | |
| 2448 | if not exist_dst: |
| 2449 | exist_dst = self._FetchBundle(bundle_url, bundle_tmp, bundle_dst, quiet) |
| 2450 | if not exist_dst: |
| 2451 | return False |
| 2452 | |
| 2453 | cmd = ['fetch'] |
| 2454 | if quiet: |
| 2455 | cmd.append('--quiet') |
| 2456 | if not self.worktree: |
| 2457 | cmd.append('--update-head-ok') |
| 2458 | cmd.append(bundle_dst) |
| 2459 | for f in remote.fetch: |
| 2460 | cmd.append(str(f)) |
Xin Li | 6e53844 | 2018-12-10 11:33:16 -0800 | [diff] [blame] | 2461 | cmd.append('+refs/tags/*:refs/tags/*') |
Shawn O. Pearce | c325dc3 | 2011-10-03 08:30:24 -0700 | [diff] [blame] | 2462 | |
| 2463 | ok = GitCommand(self, cmd, bare=True).Wait() == 0 |
Shawn O. Pearce | f322b9a | 2011-09-19 14:50:58 -0700 | [diff] [blame] | 2464 | if os.path.exists(bundle_dst): |
Renaud Paquay | 010fed7 | 2016-11-11 14:25:29 -0800 | [diff] [blame] | 2465 | platform_utils.remove(bundle_dst) |
Shawn O. Pearce | f322b9a | 2011-09-19 14:50:58 -0700 | [diff] [blame] | 2466 | if os.path.exists(bundle_tmp): |
Renaud Paquay | 010fed7 | 2016-11-11 14:25:29 -0800 | [diff] [blame] | 2467 | platform_utils.remove(bundle_tmp) |
Shawn O. Pearce | 8844338 | 2010-10-08 10:02:09 +0200 | [diff] [blame] | 2468 | return ok |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 2469 | |
Shawn O. Pearce | c325dc3 | 2011-10-03 08:30:24 -0700 | [diff] [blame] | 2470 | def _FetchBundle(self, srcUrl, tmpPath, dstPath, quiet): |
Shawn O. Pearce | 5e7127d | 2012-08-02 14:57:37 -0700 | [diff] [blame] | 2471 | if os.path.exists(dstPath): |
Renaud Paquay | 010fed7 | 2016-11-11 14:25:29 -0800 | [diff] [blame] | 2472 | platform_utils.remove(dstPath) |
Shawn O. Pearce | f322b9a | 2011-09-19 14:50:58 -0700 | [diff] [blame] | 2473 | |
Matt Gumbel | 2dc810c | 2012-08-30 09:39:36 -0700 | [diff] [blame] | 2474 | cmd = ['curl', '--fail', '--output', tmpPath, '--netrc', '--location'] |
Shawn O. Pearce | 5e7127d | 2012-08-02 14:57:37 -0700 | [diff] [blame] | 2475 | if quiet: |
| 2476 | cmd += ['--silent'] |
| 2477 | if os.path.exists(tmpPath): |
| 2478 | size = os.stat(tmpPath).st_size |
| 2479 | if size >= 1024: |
| 2480 | cmd += ['--continue-at', '%d' % (size,)] |
| 2481 | else: |
Renaud Paquay | 010fed7 | 2016-11-11 14:25:29 -0800 | [diff] [blame] | 2482 | platform_utils.remove(tmpPath) |
Xin Li | 3698ab7 | 2019-06-25 16:09:43 -0700 | [diff] [blame] | 2483 | with GetUrlCookieFile(srcUrl, quiet) as (cookiefile, proxy): |
Dave Borowitz | 137d013 | 2015-01-02 11:12:54 -0800 | [diff] [blame] | 2484 | if cookiefile: |
Mike Frysinger | dc1d0e0 | 2020-02-09 16:20:06 -0500 | [diff] [blame] | 2485 | cmd += ['--cookie', cookiefile] |
Xin Li | 3698ab7 | 2019-06-25 16:09:43 -0700 | [diff] [blame] | 2486 | if proxy: |
| 2487 | cmd += ['--proxy', proxy] |
| 2488 | elif 'http_proxy' in os.environ and 'darwin' == sys.platform: |
| 2489 | cmd += ['--proxy', os.environ['http_proxy']] |
| 2490 | if srcUrl.startswith('persistent-https'): |
| 2491 | srcUrl = 'http' + srcUrl[len('persistent-https'):] |
| 2492 | elif srcUrl.startswith('persistent-http'): |
| 2493 | srcUrl = 'http' + srcUrl[len('persistent-http'):] |
Dave Borowitz | 137d013 | 2015-01-02 11:12:54 -0800 | [diff] [blame] | 2494 | cmd += [srcUrl] |
Shawn O. Pearce | 5e7127d | 2012-08-02 14:57:37 -0700 | [diff] [blame] | 2495 | |
Dave Borowitz | 137d013 | 2015-01-02 11:12:54 -0800 | [diff] [blame] | 2496 | if IsTrace(): |
| 2497 | Trace('%s', ' '.join(cmd)) |
| 2498 | try: |
| 2499 | proc = subprocess.Popen(cmd) |
| 2500 | except OSError: |
| 2501 | return False |
Shawn O. Pearce | 5e7127d | 2012-08-02 14:57:37 -0700 | [diff] [blame] | 2502 | |
Dave Borowitz | 137d013 | 2015-01-02 11:12:54 -0800 | [diff] [blame] | 2503 | curlret = proc.wait() |
Matt Gumbel | 2dc810c | 2012-08-30 09:39:36 -0700 | [diff] [blame] | 2504 | |
Dave Borowitz | 137d013 | 2015-01-02 11:12:54 -0800 | [diff] [blame] | 2505 | if curlret == 22: |
| 2506 | # From curl man page: |
| 2507 | # 22: HTTP page not retrieved. The requested url was not found or |
| 2508 | # returned another error with the HTTP error code being 400 or above. |
| 2509 | # This return code only appears if -f, --fail is used. |
| 2510 | if not quiet: |
| 2511 | print("Server does not provide clone.bundle; ignoring.", |
| 2512 | file=sys.stderr) |
| 2513 | return False |
Matt Gumbel | 2dc810c | 2012-08-30 09:39:36 -0700 | [diff] [blame] | 2514 | |
Shawn O. Pearce | 5e7127d | 2012-08-02 14:57:37 -0700 | [diff] [blame] | 2515 | if os.path.exists(tmpPath): |
Kris Giesing | c8d882a | 2014-12-23 13:02:32 -0800 | [diff] [blame] | 2516 | if curlret == 0 and self._IsValidBundle(tmpPath, quiet): |
Renaud Paquay | ad1abcb | 2016-11-01 11:34:55 -0700 | [diff] [blame] | 2517 | platform_utils.rename(tmpPath, dstPath) |
Shawn O. Pearce | 5e7127d | 2012-08-02 14:57:37 -0700 | [diff] [blame] | 2518 | return True |
| 2519 | else: |
Renaud Paquay | 010fed7 | 2016-11-11 14:25:29 -0800 | [diff] [blame] | 2520 | platform_utils.remove(tmpPath) |
Shawn O. Pearce | 5e7127d | 2012-08-02 14:57:37 -0700 | [diff] [blame] | 2521 | return False |
| 2522 | else: |
| 2523 | return False |
Shawn O. Pearce | f322b9a | 2011-09-19 14:50:58 -0700 | [diff] [blame] | 2524 | |
Kris Giesing | c8d882a | 2014-12-23 13:02:32 -0800 | [diff] [blame] | 2525 | def _IsValidBundle(self, path, quiet): |
Dave Borowitz | 91f3ba5 | 2013-06-03 12:15:23 -0700 | [diff] [blame] | 2526 | try: |
Pierre Tardy | 2b7daff | 2019-05-16 10:28:21 +0200 | [diff] [blame] | 2527 | with open(path, 'rb') as f: |
| 2528 | if f.read(16) == b'# v2 git bundle\n': |
Dave Borowitz | 91f3ba5 | 2013-06-03 12:15:23 -0700 | [diff] [blame] | 2529 | return True |
| 2530 | else: |
Kris Giesing | c8d882a | 2014-12-23 13:02:32 -0800 | [diff] [blame] | 2531 | if not quiet: |
| 2532 | print("Invalid clone.bundle file; ignoring.", file=sys.stderr) |
Dave Borowitz | 91f3ba5 | 2013-06-03 12:15:23 -0700 | [diff] [blame] | 2533 | return False |
| 2534 | except OSError: |
| 2535 | return False |
| 2536 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 2537 | def _Checkout(self, rev, quiet=False): |
| 2538 | cmd = ['checkout'] |
| 2539 | if quiet: |
| 2540 | cmd.append('-q') |
| 2541 | cmd.append(rev) |
| 2542 | cmd.append('--') |
| 2543 | if GitCommand(self, cmd).Wait() != 0: |
| 2544 | if self._allrefs: |
| 2545 | raise GitError('%s checkout %s ' % (self.name, rev)) |
| 2546 | |
Anthony King | 7bdac71 | 2014-07-16 12:56:40 +0100 | [diff] [blame] | 2547 | def _CherryPick(self, rev): |
Pierre Tardy | e5a2122 | 2011-03-24 16:28:18 +0100 | [diff] [blame] | 2548 | cmd = ['cherry-pick'] |
| 2549 | cmd.append(rev) |
| 2550 | cmd.append('--') |
| 2551 | if GitCommand(self, cmd).Wait() != 0: |
| 2552 | if self._allrefs: |
| 2553 | raise GitError('%s cherry-pick %s ' % (self.name, rev)) |
| 2554 | |
Akshay Verma | 0f2e45a | 2018-03-24 12:27:05 +0530 | [diff] [blame] | 2555 | def _LsRemote(self, refs): |
| 2556 | cmd = ['ls-remote', self.remote.name, refs] |
Akshay Verma | cf7c083 | 2018-03-15 21:56:30 +0530 | [diff] [blame] | 2557 | p = GitCommand(self, cmd, capture_stdout=True) |
| 2558 | if p.Wait() == 0: |
Mike Frysinger | 600f492 | 2019-08-03 02:14:28 -0400 | [diff] [blame] | 2559 | return p.stdout |
Akshay Verma | cf7c083 | 2018-03-15 21:56:30 +0530 | [diff] [blame] | 2560 | return None |
| 2561 | |
Anthony King | 7bdac71 | 2014-07-16 12:56:40 +0100 | [diff] [blame] | 2562 | def _Revert(self, rev): |
Erwan Mahe | a94f162 | 2011-08-19 13:56:09 +0200 | [diff] [blame] | 2563 | cmd = ['revert'] |
| 2564 | cmd.append('--no-edit') |
| 2565 | cmd.append(rev) |
| 2566 | cmd.append('--') |
| 2567 | if GitCommand(self, cmd).Wait() != 0: |
| 2568 | if self._allrefs: |
| 2569 | raise GitError('%s revert %s ' % (self.name, rev)) |
| 2570 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 2571 | def _ResetHard(self, rev, quiet=True): |
| 2572 | cmd = ['reset', '--hard'] |
| 2573 | if quiet: |
| 2574 | cmd.append('-q') |
| 2575 | cmd.append(rev) |
| 2576 | if GitCommand(self, cmd).Wait() != 0: |
| 2577 | raise GitError('%s reset --hard %s ' % (self.name, rev)) |
| 2578 | |
Martin Kelly | e4e94d2 | 2017-03-21 16:05:12 -0700 | [diff] [blame] | 2579 | def _SyncSubmodules(self, quiet=True): |
| 2580 | cmd = ['submodule', 'update', '--init', '--recursive'] |
| 2581 | if quiet: |
| 2582 | cmd.append('-q') |
| 2583 | if GitCommand(self, cmd).Wait() != 0: |
| 2584 | raise GitError('%s submodule update --init --recursive %s ' % self.name) |
| 2585 | |
Anthony King | 7bdac71 | 2014-07-16 12:56:40 +0100 | [diff] [blame] | 2586 | def _Rebase(self, upstream, onto=None): |
Shawn O. Pearce | 19a83d8 | 2009-04-16 08:14:26 -0700 | [diff] [blame] | 2587 | cmd = ['rebase'] |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 2588 | if onto is not None: |
| 2589 | cmd.extend(['--onto', onto]) |
| 2590 | cmd.append(upstream) |
Shawn O. Pearce | 19a83d8 | 2009-04-16 08:14:26 -0700 | [diff] [blame] | 2591 | if GitCommand(self, cmd).Wait() != 0: |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 2592 | raise GitError('%s rebase %s ' % (self.name, upstream)) |
| 2593 | |
Pierre Tardy | 3d12594 | 2012-05-04 12:18:12 +0200 | [diff] [blame] | 2594 | def _FastForward(self, head, ffonly=False): |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 2595 | cmd = ['merge', head] |
Pierre Tardy | 3d12594 | 2012-05-04 12:18:12 +0200 | [diff] [blame] | 2596 | if ffonly: |
| 2597 | cmd.append("--ff-only") |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 2598 | if GitCommand(self, cmd).Wait() != 0: |
| 2599 | raise GitError('%s merge %s ' % (self.name, head)) |
| 2600 | |
Kevin Degi | abaa7f3 | 2014-11-12 11:27:45 -0700 | [diff] [blame] | 2601 | def _InitGitDir(self, mirror_git=None, force_sync=False): |
Kevin Degi | 384b3c5 | 2014-10-16 16:02:58 -0600 | [diff] [blame] | 2602 | init_git_dir = not os.path.exists(self.gitdir) |
| 2603 | init_obj_dir = not os.path.exists(self.objdir) |
Kevin Degi | b1a07b8 | 2015-07-27 13:33:43 -0600 | [diff] [blame] | 2604 | try: |
| 2605 | # Initialize the bare repository, which contains all of the objects. |
| 2606 | if init_obj_dir: |
| 2607 | os.makedirs(self.objdir) |
| 2608 | self.bare_objdir.init() |
David James | 8d20116 | 2013-10-11 17:03:19 -0700 | [diff] [blame] | 2609 | |
Kevin Degi | b1a07b8 | 2015-07-27 13:33:43 -0600 | [diff] [blame] | 2610 | # If we have a separate directory to hold refs, initialize it as well. |
| 2611 | if self.objdir != self.gitdir: |
| 2612 | if init_git_dir: |
| 2613 | os.makedirs(self.gitdir) |
| 2614 | |
| 2615 | if init_obj_dir or init_git_dir: |
| 2616 | self._ReferenceGitDir(self.objdir, self.gitdir, share_refs=False, |
| 2617 | copy_all=True) |
Kevin Degi | abaa7f3 | 2014-11-12 11:27:45 -0700 | [diff] [blame] | 2618 | try: |
| 2619 | self._CheckDirReference(self.objdir, self.gitdir, share_refs=False) |
| 2620 | except GitError as e: |
Kevin Degi | abaa7f3 | 2014-11-12 11:27:45 -0700 | [diff] [blame] | 2621 | if force_sync: |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 2622 | print("Retrying clone after deleting %s" % |
| 2623 | self.gitdir, file=sys.stderr) |
Kevin Degi | abaa7f3 | 2014-11-12 11:27:45 -0700 | [diff] [blame] | 2624 | try: |
Renaud Paquay | 227ad2e | 2016-11-01 14:37:13 -0700 | [diff] [blame] | 2625 | platform_utils.rmtree(platform_utils.realpath(self.gitdir)) |
| 2626 | if self.worktree and os.path.exists(platform_utils.realpath |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 2627 | (self.worktree)): |
Renaud Paquay | 227ad2e | 2016-11-01 14:37:13 -0700 | [diff] [blame] | 2628 | platform_utils.rmtree(platform_utils.realpath(self.worktree)) |
Kevin Degi | abaa7f3 | 2014-11-12 11:27:45 -0700 | [diff] [blame] | 2629 | return self._InitGitDir(mirror_git=mirror_git, force_sync=False) |
| 2630 | except: |
| 2631 | raise e |
| 2632 | raise e |
Kevin Degi | b1a07b8 | 2015-07-27 13:33:43 -0600 | [diff] [blame] | 2633 | |
Kevin Degi | 384b3c5 | 2014-10-16 16:02:58 -0600 | [diff] [blame] | 2634 | if init_git_dir: |
Kevin Degi | b1a07b8 | 2015-07-27 13:33:43 -0600 | [diff] [blame] | 2635 | mp = self.manifest.manifestProject |
| 2636 | ref_dir = mp.config.GetString('repo.reference') or '' |
Kevin Degi | 384b3c5 | 2014-10-16 16:02:58 -0600 | [diff] [blame] | 2637 | |
Kevin Degi | b1a07b8 | 2015-07-27 13:33:43 -0600 | [diff] [blame] | 2638 | if ref_dir or mirror_git: |
| 2639 | if not mirror_git: |
| 2640 | mirror_git = os.path.join(ref_dir, self.name + '.git') |
| 2641 | repo_git = os.path.join(ref_dir, '.repo', 'projects', |
| 2642 | self.relpath + '.git') |
Shawn O. Pearce | 2816d4f | 2009-03-03 17:53:18 -0800 | [diff] [blame] | 2643 | |
Kevin Degi | b1a07b8 | 2015-07-27 13:33:43 -0600 | [diff] [blame] | 2644 | if os.path.exists(mirror_git): |
| 2645 | ref_dir = mirror_git |
Shawn O. Pearce | 8844338 | 2010-10-08 10:02:09 +0200 | [diff] [blame] | 2646 | |
Kevin Degi | b1a07b8 | 2015-07-27 13:33:43 -0600 | [diff] [blame] | 2647 | elif os.path.exists(repo_git): |
| 2648 | ref_dir = repo_git |
Shawn O. Pearce | 8844338 | 2010-10-08 10:02:09 +0200 | [diff] [blame] | 2649 | |
Kevin Degi | b1a07b8 | 2015-07-27 13:33:43 -0600 | [diff] [blame] | 2650 | else: |
| 2651 | ref_dir = None |
Shawn O. Pearce | 8844338 | 2010-10-08 10:02:09 +0200 | [diff] [blame] | 2652 | |
Kevin Degi | b1a07b8 | 2015-07-27 13:33:43 -0600 | [diff] [blame] | 2653 | if ref_dir: |
Samuel Holland | baa0009 | 2018-01-22 10:57:29 -0600 | [diff] [blame] | 2654 | if not os.path.isabs(ref_dir): |
| 2655 | # The alternate directory is relative to the object database. |
| 2656 | ref_dir = os.path.relpath(ref_dir, |
| 2657 | os.path.join(self.objdir, 'objects')) |
Kevin Degi | b1a07b8 | 2015-07-27 13:33:43 -0600 | [diff] [blame] | 2658 | _lwrite(os.path.join(self.gitdir, 'objects/info/alternates'), |
| 2659 | os.path.join(ref_dir, 'objects') + '\n') |
Shawn O. Pearce | 8844338 | 2010-10-08 10:02:09 +0200 | [diff] [blame] | 2660 | |
Kevin Degi | b1a07b8 | 2015-07-27 13:33:43 -0600 | [diff] [blame] | 2661 | self._UpdateHooks() |
| 2662 | |
| 2663 | m = self.manifest.manifestProject.config |
| 2664 | for key in ['user.name', 'user.email']: |
| 2665 | if m.Has(key, include_defaults=False): |
| 2666 | self.config.SetString(key, m.GetString(key)) |
David Pursehouse | 76a4a9d | 2016-08-16 12:11:12 +0900 | [diff] [blame] | 2667 | self.config.SetString('filter.lfs.smudge', 'git-lfs smudge --skip -- %f') |
Francois Ferrand | c5b0e23 | 2019-05-24 09:35:20 +0200 | [diff] [blame] | 2668 | self.config.SetString('filter.lfs.process', 'git-lfs filter-process --skip') |
Kevin Degi | b1a07b8 | 2015-07-27 13:33:43 -0600 | [diff] [blame] | 2669 | if self.manifest.IsMirror: |
| 2670 | self.config.SetString('core.bare', 'true') |
Shawn O. Pearce | 8844338 | 2010-10-08 10:02:09 +0200 | [diff] [blame] | 2671 | else: |
Kevin Degi | b1a07b8 | 2015-07-27 13:33:43 -0600 | [diff] [blame] | 2672 | self.config.SetString('core.bare', None) |
| 2673 | except Exception: |
| 2674 | if init_obj_dir and os.path.exists(self.objdir): |
Renaud Paquay | a65adf7 | 2016-11-03 10:37:53 -0700 | [diff] [blame] | 2675 | platform_utils.rmtree(self.objdir) |
Kevin Degi | b1a07b8 | 2015-07-27 13:33:43 -0600 | [diff] [blame] | 2676 | if init_git_dir and os.path.exists(self.gitdir): |
Renaud Paquay | a65adf7 | 2016-11-03 10:37:53 -0700 | [diff] [blame] | 2677 | platform_utils.rmtree(self.gitdir) |
Kevin Degi | b1a07b8 | 2015-07-27 13:33:43 -0600 | [diff] [blame] | 2678 | raise |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 2679 | |
Jimmie Wester | a044458 | 2012-10-24 13:44:42 +0200 | [diff] [blame] | 2680 | def _UpdateHooks(self): |
| 2681 | if os.path.exists(self.gitdir): |
Shawn O. Pearce | c9ef744 | 2008-11-03 10:32:09 -0800 | [diff] [blame] | 2682 | self._InitHooks() |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 2683 | |
Shawn O. Pearce | c9ef744 | 2008-11-03 10:32:09 -0800 | [diff] [blame] | 2684 | def _InitHooks(self): |
Renaud Paquay | 227ad2e | 2016-11-01 14:37:13 -0700 | [diff] [blame] | 2685 | hooks = platform_utils.realpath(self._gitdir_path('hooks')) |
Shawn O. Pearce | c9ef744 | 2008-11-03 10:32:09 -0800 | [diff] [blame] | 2686 | if not os.path.exists(hooks): |
| 2687 | os.makedirs(hooks) |
Jonathan Nieder | 9371979 | 2015-03-17 11:29:58 -0700 | [diff] [blame] | 2688 | for stock_hook in _ProjectHooks(): |
Shawn O. Pearce | 9452e4e | 2009-08-22 18:17:46 -0700 | [diff] [blame] | 2689 | name = os.path.basename(stock_hook) |
| 2690 | |
Victor Boivie | 65e0f35 | 2011-04-18 11:23:29 +0200 | [diff] [blame] | 2691 | if name in ('commit-msg',) and not self.remote.review \ |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 2692 | and self is not self.manifest.manifestProject: |
Shawn O. Pearce | 9452e4e | 2009-08-22 18:17:46 -0700 | [diff] [blame] | 2693 | # Don't install a Gerrit Code Review hook if this |
| 2694 | # project does not appear to use it for reviews. |
| 2695 | # |
Victor Boivie | 65e0f35 | 2011-04-18 11:23:29 +0200 | [diff] [blame] | 2696 | # Since the manifest project is one of those, but also |
| 2697 | # managed through gerrit, it's excluded |
Shawn O. Pearce | 9452e4e | 2009-08-22 18:17:46 -0700 | [diff] [blame] | 2698 | continue |
| 2699 | |
| 2700 | dst = os.path.join(hooks, name) |
Renaud Paquay | 227ad2e | 2016-11-01 14:37:13 -0700 | [diff] [blame] | 2701 | if platform_utils.islink(dst): |
Shawn O. Pearce | 9452e4e | 2009-08-22 18:17:46 -0700 | [diff] [blame] | 2702 | continue |
| 2703 | if os.path.exists(dst): |
| 2704 | if filecmp.cmp(stock_hook, dst, shallow=False): |
Renaud Paquay | 010fed7 | 2016-11-11 14:25:29 -0800 | [diff] [blame] | 2705 | platform_utils.remove(dst) |
Shawn O. Pearce | 9452e4e | 2009-08-22 18:17:46 -0700 | [diff] [blame] | 2706 | else: |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 2707 | _warn("%s: Not replacing locally modified %s hook", |
| 2708 | self.relpath, name) |
Shawn O. Pearce | 9452e4e | 2009-08-22 18:17:46 -0700 | [diff] [blame] | 2709 | continue |
Shawn O. Pearce | c9ef744 | 2008-11-03 10:32:09 -0800 | [diff] [blame] | 2710 | try: |
Renaud Paquay | d5cec5e | 2016-11-01 11:24:03 -0700 | [diff] [blame] | 2711 | platform_utils.symlink( |
| 2712 | os.path.relpath(stock_hook, os.path.dirname(dst)), dst) |
Sarah Owens | a5be53f | 2012-09-09 15:37:57 -0700 | [diff] [blame] | 2713 | except OSError as e: |
Shawn O. Pearce | 9452e4e | 2009-08-22 18:17:46 -0700 | [diff] [blame] | 2714 | if e.errno == errno.EPERM: |
Renaud Paquay | 788e962 | 2017-01-27 11:41:12 -0800 | [diff] [blame] | 2715 | raise GitError(self._get_symlink_error_message()) |
Shawn O. Pearce | c9ef744 | 2008-11-03 10:32:09 -0800 | [diff] [blame] | 2716 | else: |
| 2717 | raise |
| 2718 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 2719 | def _InitRemote(self): |
Shawn O. Pearce | d1f70d9 | 2009-05-19 14:58:02 -0700 | [diff] [blame] | 2720 | if self.remote.url: |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 2721 | remote = self.GetRemote(self.remote.name) |
Shawn O. Pearce | d1f70d9 | 2009-05-19 14:58:02 -0700 | [diff] [blame] | 2722 | remote.url = self.remote.url |
Steve Rae | d648045 | 2016-08-10 15:00:00 -0700 | [diff] [blame] | 2723 | remote.pushUrl = self.remote.pushUrl |
Shawn O. Pearce | d1f70d9 | 2009-05-19 14:58:02 -0700 | [diff] [blame] | 2724 | remote.review = self.remote.review |
| 2725 | remote.projectname = self.name |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 2726 | |
Shawn O. Pearce | e284ad1 | 2008-11-04 07:37:10 -0800 | [diff] [blame] | 2727 | if self.worktree: |
| 2728 | remote.ResetFetch(mirror=False) |
| 2729 | else: |
| 2730 | remote.ResetFetch(mirror=True) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 2731 | remote.Save() |
| 2732 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 2733 | def _InitMRef(self): |
| 2734 | if self.manifest.branch: |
Shawn O. Pearce | 3c8dea1 | 2009-05-29 18:38:17 -0700 | [diff] [blame] | 2735 | self._InitAnyMRef(R_M + self.manifest.branch) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 2736 | |
Shawn O. Pearce | e284ad1 | 2008-11-04 07:37:10 -0800 | [diff] [blame] | 2737 | def _InitMirrorHead(self): |
Shawn O. Pearce | fe200ee | 2009-06-01 15:28:21 -0700 | [diff] [blame] | 2738 | self._InitAnyMRef(HEAD) |
Shawn O. Pearce | 3c8dea1 | 2009-05-29 18:38:17 -0700 | [diff] [blame] | 2739 | |
| 2740 | def _InitAnyMRef(self, ref): |
| 2741 | cur = self.bare_ref.symref(ref) |
| 2742 | |
| 2743 | if self.revisionId: |
| 2744 | if cur != '' or self.bare_ref.get(ref) != self.revisionId: |
| 2745 | msg = 'manifest set to %s' % self.revisionId |
| 2746 | dst = self.revisionId + '^0' |
Anthony King | 7bdac71 | 2014-07-16 12:56:40 +0100 | [diff] [blame] | 2747 | self.bare_git.UpdateRef(ref, dst, message=msg, detach=True) |
Shawn O. Pearce | 3c8dea1 | 2009-05-29 18:38:17 -0700 | [diff] [blame] | 2748 | else: |
| 2749 | remote = self.GetRemote(self.remote.name) |
| 2750 | dst = remote.ToLocal(self.revisionExpr) |
| 2751 | if cur != dst: |
| 2752 | msg = 'manifest set to %s' % self.revisionExpr |
| 2753 | self.bare_git.symbolic_ref('-m', msg, ref, dst) |
Shawn O. Pearce | e284ad1 | 2008-11-04 07:37:10 -0800 | [diff] [blame] | 2754 | |
Kevin Degi | 384b3c5 | 2014-10-16 16:02:58 -0600 | [diff] [blame] | 2755 | def _CheckDirReference(self, srcdir, destdir, share_refs): |
Dan Willemsen | bdb866e | 2016-04-05 17:22:02 -0700 | [diff] [blame] | 2756 | symlink_files = self.shareable_files[:] |
| 2757 | symlink_dirs = self.shareable_dirs[:] |
Kevin Degi | 384b3c5 | 2014-10-16 16:02:58 -0600 | [diff] [blame] | 2758 | if share_refs: |
| 2759 | symlink_files += self.working_tree_files |
| 2760 | symlink_dirs += self.working_tree_dirs |
| 2761 | to_symlink = symlink_files + symlink_dirs |
| 2762 | for name in set(to_symlink): |
Mike Frysinger | ed4f211 | 2020-02-11 23:06:29 -0500 | [diff] [blame] | 2763 | # Try to self-heal a bit in simple cases. |
| 2764 | dst_path = os.path.join(destdir, name) |
| 2765 | src_path = os.path.join(srcdir, name) |
| 2766 | |
| 2767 | if name in self.working_tree_dirs: |
| 2768 | # If the dir is missing under .repo/projects/, create it. |
| 2769 | if not os.path.exists(src_path): |
| 2770 | os.makedirs(src_path) |
| 2771 | |
| 2772 | elif name in self.working_tree_files: |
| 2773 | # If it's a file under the checkout .git/ and the .repo/projects/ has |
| 2774 | # nothing, move the file under the .repo/projects/ tree. |
| 2775 | if not os.path.exists(src_path) and os.path.isfile(dst_path): |
| 2776 | platform_utils.rename(dst_path, src_path) |
| 2777 | |
| 2778 | # If the path exists under the .repo/projects/ and there's no symlink |
| 2779 | # under the checkout .git/, recreate the symlink. |
| 2780 | if name in self.working_tree_dirs or name in self.working_tree_files: |
| 2781 | if os.path.exists(src_path) and not os.path.exists(dst_path): |
| 2782 | platform_utils.symlink( |
| 2783 | os.path.relpath(src_path, os.path.dirname(dst_path)), dst_path) |
| 2784 | |
| 2785 | dst = platform_utils.realpath(dst_path) |
Kevin Degi | 384b3c5 | 2014-10-16 16:02:58 -0600 | [diff] [blame] | 2786 | if os.path.lexists(dst): |
Mike Frysinger | ed4f211 | 2020-02-11 23:06:29 -0500 | [diff] [blame] | 2787 | src = platform_utils.realpath(src_path) |
Kevin Degi | 384b3c5 | 2014-10-16 16:02:58 -0600 | [diff] [blame] | 2788 | # Fail if the links are pointing to the wrong place |
| 2789 | if src != dst: |
Marc Herbert | ec28790 | 2016-10-27 12:58:26 -0700 | [diff] [blame] | 2790 | _error('%s is different in %s vs %s', name, destdir, srcdir) |
Kevin Degi | abaa7f3 | 2014-11-12 11:27:45 -0700 | [diff] [blame] | 2791 | raise GitError('--force-sync not enabled; cannot overwrite a local ' |
Simon Ruggier | f9b7683 | 2015-07-31 17:18:34 -0400 | [diff] [blame] | 2792 | 'work tree. If you\'re comfortable with the ' |
| 2793 | 'possibility of losing the work tree\'s git metadata,' |
| 2794 | ' use `repo sync --force-sync {0}` to ' |
| 2795 | 'proceed.'.format(self.relpath)) |
Kevin Degi | 384b3c5 | 2014-10-16 16:02:58 -0600 | [diff] [blame] | 2796 | |
David James | 8d20116 | 2013-10-11 17:03:19 -0700 | [diff] [blame] | 2797 | def _ReferenceGitDir(self, gitdir, dotgit, share_refs, copy_all): |
| 2798 | """Update |dotgit| to reference |gitdir|, using symlinks where possible. |
| 2799 | |
| 2800 | Args: |
| 2801 | gitdir: The bare git repository. Must already be initialized. |
| 2802 | dotgit: The repository you would like to initialize. |
| 2803 | share_refs: If true, |dotgit| will store its refs under |gitdir|. |
| 2804 | Only one work tree can store refs under a given |gitdir|. |
| 2805 | copy_all: If true, copy all remaining files from |gitdir| -> |dotgit|. |
| 2806 | This saves you the effort of initializing |dotgit| yourself. |
| 2807 | """ |
Dan Willemsen | bdb866e | 2016-04-05 17:22:02 -0700 | [diff] [blame] | 2808 | symlink_files = self.shareable_files[:] |
| 2809 | symlink_dirs = self.shareable_dirs[:] |
David James | 8d20116 | 2013-10-11 17:03:19 -0700 | [diff] [blame] | 2810 | if share_refs: |
Kevin Degi | 384b3c5 | 2014-10-16 16:02:58 -0600 | [diff] [blame] | 2811 | symlink_files += self.working_tree_files |
| 2812 | symlink_dirs += self.working_tree_dirs |
David James | 8d20116 | 2013-10-11 17:03:19 -0700 | [diff] [blame] | 2813 | to_symlink = symlink_files + symlink_dirs |
| 2814 | |
| 2815 | to_copy = [] |
| 2816 | if copy_all: |
Renaud Paquay | bed8b62 | 2018-09-27 10:46:58 -0700 | [diff] [blame] | 2817 | to_copy = platform_utils.listdir(gitdir) |
David James | 8d20116 | 2013-10-11 17:03:19 -0700 | [diff] [blame] | 2818 | |
Renaud Paquay | 227ad2e | 2016-11-01 14:37:13 -0700 | [diff] [blame] | 2819 | dotgit = platform_utils.realpath(dotgit) |
David James | 8d20116 | 2013-10-11 17:03:19 -0700 | [diff] [blame] | 2820 | for name in set(to_copy).union(to_symlink): |
| 2821 | try: |
Renaud Paquay | 227ad2e | 2016-11-01 14:37:13 -0700 | [diff] [blame] | 2822 | src = platform_utils.realpath(os.path.join(gitdir, name)) |
Dan Willemsen | 2a3e152 | 2015-07-30 20:43:33 -0700 | [diff] [blame] | 2823 | dst = os.path.join(dotgit, name) |
David James | 8d20116 | 2013-10-11 17:03:19 -0700 | [diff] [blame] | 2824 | |
Kevin Degi | 384b3c5 | 2014-10-16 16:02:58 -0600 | [diff] [blame] | 2825 | if os.path.lexists(dst): |
| 2826 | continue |
David James | 8d20116 | 2013-10-11 17:03:19 -0700 | [diff] [blame] | 2827 | |
| 2828 | # If the source dir doesn't exist, create an empty dir. |
| 2829 | if name in symlink_dirs and not os.path.lexists(src): |
| 2830 | os.makedirs(src) |
| 2831 | |
Cheuk Leung | 8ac0c96 | 2015-07-06 21:33:00 +0200 | [diff] [blame] | 2832 | if name in to_symlink: |
Renaud Paquay | d5cec5e | 2016-11-01 11:24:03 -0700 | [diff] [blame] | 2833 | platform_utils.symlink( |
| 2834 | os.path.relpath(src, os.path.dirname(dst)), dst) |
Renaud Paquay | 227ad2e | 2016-11-01 14:37:13 -0700 | [diff] [blame] | 2835 | elif copy_all and not platform_utils.islink(dst): |
Renaud Paquay | bed8b62 | 2018-09-27 10:46:58 -0700 | [diff] [blame] | 2836 | if platform_utils.isdir(src): |
Cheuk Leung | 8ac0c96 | 2015-07-06 21:33:00 +0200 | [diff] [blame] | 2837 | shutil.copytree(src, dst) |
| 2838 | elif os.path.isfile(src): |
| 2839 | shutil.copy(src, dst) |
| 2840 | |
Conley Owens | 80b87fe | 2014-05-09 17:13:44 -0700 | [diff] [blame] | 2841 | # If the source file doesn't exist, ensure the destination |
| 2842 | # file doesn't either. |
| 2843 | if name in symlink_files and not os.path.lexists(src): |
| 2844 | try: |
Renaud Paquay | 010fed7 | 2016-11-11 14:25:29 -0800 | [diff] [blame] | 2845 | platform_utils.remove(dst) |
Conley Owens | 80b87fe | 2014-05-09 17:13:44 -0700 | [diff] [blame] | 2846 | except OSError: |
| 2847 | pass |
| 2848 | |
David James | 8d20116 | 2013-10-11 17:03:19 -0700 | [diff] [blame] | 2849 | except OSError as e: |
| 2850 | if e.errno == errno.EPERM: |
Renaud Paquay | 788e962 | 2017-01-27 11:41:12 -0800 | [diff] [blame] | 2851 | raise DownloadError(self._get_symlink_error_message()) |
David James | 8d20116 | 2013-10-11 17:03:19 -0700 | [diff] [blame] | 2852 | else: |
| 2853 | raise |
| 2854 | |
Martin Kelly | e4e94d2 | 2017-03-21 16:05:12 -0700 | [diff] [blame] | 2855 | def _InitWorkTree(self, force_sync=False, submodules=False): |
Mike Frysinger | f454512 | 2019-11-11 04:34:16 -0500 | [diff] [blame] | 2856 | realdotgit = os.path.join(self.worktree, '.git') |
| 2857 | tmpdotgit = realdotgit + '.tmp' |
| 2858 | init_dotgit = not os.path.exists(realdotgit) |
| 2859 | if init_dotgit: |
| 2860 | dotgit = tmpdotgit |
| 2861 | platform_utils.rmtree(tmpdotgit, ignore_errors=True) |
| 2862 | os.makedirs(tmpdotgit) |
| 2863 | self._ReferenceGitDir(self.gitdir, tmpdotgit, share_refs=True, |
| 2864 | copy_all=False) |
| 2865 | else: |
| 2866 | dotgit = realdotgit |
| 2867 | |
Kevin Degi | b1a07b8 | 2015-07-27 13:33:43 -0600 | [diff] [blame] | 2868 | try: |
Mike Frysinger | f454512 | 2019-11-11 04:34:16 -0500 | [diff] [blame] | 2869 | self._CheckDirReference(self.gitdir, dotgit, share_refs=True) |
| 2870 | except GitError as e: |
| 2871 | if force_sync and not init_dotgit: |
| 2872 | try: |
| 2873 | platform_utils.rmtree(dotgit) |
| 2874 | return self._InitWorkTree(force_sync=False, submodules=submodules) |
| 2875 | except: |
| 2876 | raise e |
| 2877 | raise e |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 2878 | |
Mike Frysinger | f454512 | 2019-11-11 04:34:16 -0500 | [diff] [blame] | 2879 | if init_dotgit: |
| 2880 | _lwrite(os.path.join(tmpdotgit, HEAD), '%s\n' % self.GetRevisionId()) |
Kevin Degi | 384b3c5 | 2014-10-16 16:02:58 -0600 | [diff] [blame] | 2881 | |
Mike Frysinger | f454512 | 2019-11-11 04:34:16 -0500 | [diff] [blame] | 2882 | # Now that the .git dir is fully set up, move it to its final home. |
| 2883 | platform_utils.rename(tmpdotgit, realdotgit) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 2884 | |
Mike Frysinger | f454512 | 2019-11-11 04:34:16 -0500 | [diff] [blame] | 2885 | # Finish checking out the worktree. |
| 2886 | cmd = ['read-tree', '--reset', '-u'] |
| 2887 | cmd.append('-v') |
| 2888 | cmd.append(HEAD) |
| 2889 | if GitCommand(self, cmd).Wait() != 0: |
| 2890 | raise GitError('Cannot initialize work tree for ' + self.name) |
Victor Boivie | 0960b5b | 2010-11-26 13:42:13 +0100 | [diff] [blame] | 2891 | |
Mike Frysinger | f454512 | 2019-11-11 04:34:16 -0500 | [diff] [blame] | 2892 | if submodules: |
| 2893 | self._SyncSubmodules(quiet=True) |
| 2894 | self._CopyAndLinkFiles() |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 2895 | |
Renaud Paquay | 788e962 | 2017-01-27 11:41:12 -0800 | [diff] [blame] | 2896 | def _get_symlink_error_message(self): |
| 2897 | if platform_utils.isWindows(): |
| 2898 | return ('Unable to create symbolic link. Please re-run the command as ' |
| 2899 | 'Administrator, or see ' |
| 2900 | 'https://github.com/git-for-windows/git/wiki/Symbolic-Links ' |
| 2901 | 'for other options.') |
| 2902 | return 'filesystem must support symlinks' |
| 2903 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 2904 | def _gitdir_path(self, path): |
Renaud Paquay | 227ad2e | 2016-11-01 14:37:13 -0700 | [diff] [blame] | 2905 | return platform_utils.realpath(os.path.join(self.gitdir, path)) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 2906 | |
Shawn O. Pearce | 8ad8a0e | 2009-05-29 18:28:25 -0700 | [diff] [blame] | 2907 | def _revlist(self, *args, **kw): |
| 2908 | a = [] |
| 2909 | a.extend(args) |
| 2910 | a.append('--') |
| 2911 | return self.work_git.rev_list(*a, **kw) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 2912 | |
| 2913 | @property |
| 2914 | def _allrefs(self): |
Shawn O. Pearce | d237b69 | 2009-04-17 18:49:50 -0700 | [diff] [blame] | 2915 | return self.bare_ref.all |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 2916 | |
Sebastian Schuberth | 7ecccf6 | 2016-03-29 14:11:20 +0200 | [diff] [blame] | 2917 | def _getLogs(self, rev1, rev2, oneline=False, color=True, pretty_format=None): |
Julien Campergue | dd65422 | 2014-01-09 16:21:37 +0100 | [diff] [blame] | 2918 | """Get logs between two revisions of this project.""" |
| 2919 | comp = '..' |
| 2920 | if rev1: |
| 2921 | revs = [rev1] |
| 2922 | if rev2: |
| 2923 | revs.extend([comp, rev2]) |
| 2924 | cmd = ['log', ''.join(revs)] |
| 2925 | out = DiffColoring(self.config) |
| 2926 | if out.is_on and color: |
| 2927 | cmd.append('--color') |
Sebastian Schuberth | 7ecccf6 | 2016-03-29 14:11:20 +0200 | [diff] [blame] | 2928 | if pretty_format is not None: |
| 2929 | cmd.append('--pretty=format:%s' % pretty_format) |
Julien Campergue | dd65422 | 2014-01-09 16:21:37 +0100 | [diff] [blame] | 2930 | if oneline: |
| 2931 | cmd.append('--oneline') |
| 2932 | |
| 2933 | try: |
| 2934 | log = GitCommand(self, cmd, capture_stdout=True, capture_stderr=True) |
| 2935 | if log.Wait() == 0: |
| 2936 | return log.stdout |
| 2937 | except GitError: |
| 2938 | # worktree may not exist if groups changed for example. In that case, |
| 2939 | # try in gitdir instead. |
| 2940 | if not os.path.exists(self.worktree): |
| 2941 | return self.bare_git.log(*cmd[1:]) |
| 2942 | else: |
| 2943 | raise |
| 2944 | return None |
| 2945 | |
Sebastian Schuberth | 7ecccf6 | 2016-03-29 14:11:20 +0200 | [diff] [blame] | 2946 | def getAddedAndRemovedLogs(self, toProject, oneline=False, color=True, |
| 2947 | pretty_format=None): |
Julien Campergue | dd65422 | 2014-01-09 16:21:37 +0100 | [diff] [blame] | 2948 | """Get the list of logs from this revision to given revisionId""" |
| 2949 | logs = {} |
| 2950 | selfId = self.GetRevisionId(self._allrefs) |
| 2951 | toId = toProject.GetRevisionId(toProject._allrefs) |
| 2952 | |
Sebastian Schuberth | 7ecccf6 | 2016-03-29 14:11:20 +0200 | [diff] [blame] | 2953 | logs['added'] = self._getLogs(selfId, toId, oneline=oneline, color=color, |
| 2954 | pretty_format=pretty_format) |
| 2955 | logs['removed'] = self._getLogs(toId, selfId, oneline=oneline, color=color, |
| 2956 | pretty_format=pretty_format) |
Julien Campergue | dd65422 | 2014-01-09 16:21:37 +0100 | [diff] [blame] | 2957 | return logs |
| 2958 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 2959 | class _GitGetByExec(object): |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 2960 | |
David James | 8d20116 | 2013-10-11 17:03:19 -0700 | [diff] [blame] | 2961 | def __init__(self, project, bare, gitdir): |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 2962 | self._project = project |
| 2963 | self._bare = bare |
David James | 8d20116 | 2013-10-11 17:03:19 -0700 | [diff] [blame] | 2964 | self._gitdir = gitdir |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 2965 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 2966 | def LsOthers(self): |
| 2967 | p = GitCommand(self._project, |
| 2968 | ['ls-files', |
| 2969 | '-z', |
| 2970 | '--others', |
| 2971 | '--exclude-standard'], |
Anthony King | 7bdac71 | 2014-07-16 12:56:40 +0100 | [diff] [blame] | 2972 | bare=False, |
David James | 8d20116 | 2013-10-11 17:03:19 -0700 | [diff] [blame] | 2973 | gitdir=self._gitdir, |
Anthony King | 7bdac71 | 2014-07-16 12:56:40 +0100 | [diff] [blame] | 2974 | capture_stdout=True, |
| 2975 | capture_stderr=True) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 2976 | if p.Wait() == 0: |
| 2977 | out = p.stdout |
| 2978 | if out: |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 2979 | # Backslash is not anomalous |
David Pursehouse | 65b0ba5 | 2018-06-24 16:21:51 +0900 | [diff] [blame] | 2980 | return out[:-1].split('\0') |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 2981 | return [] |
| 2982 | |
| 2983 | def DiffZ(self, name, *args): |
| 2984 | cmd = [name] |
| 2985 | cmd.append('-z') |
Eli Ribble | 2d095da | 2019-05-02 18:21:42 -0700 | [diff] [blame] | 2986 | cmd.append('--ignore-submodules') |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 2987 | cmd.extend(args) |
| 2988 | p = GitCommand(self._project, |
| 2989 | cmd, |
David James | 8d20116 | 2013-10-11 17:03:19 -0700 | [diff] [blame] | 2990 | gitdir=self._gitdir, |
Anthony King | 7bdac71 | 2014-07-16 12:56:40 +0100 | [diff] [blame] | 2991 | bare=False, |
| 2992 | capture_stdout=True, |
| 2993 | capture_stderr=True) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 2994 | try: |
| 2995 | out = p.process.stdout.read() |
Mike Frysinger | 600f492 | 2019-08-03 02:14:28 -0400 | [diff] [blame] | 2996 | if not hasattr(out, 'encode'): |
| 2997 | out = out.decode() |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 2998 | r = {} |
| 2999 | if out: |
David Pursehouse | 65b0ba5 | 2018-06-24 16:21:51 +0900 | [diff] [blame] | 3000 | out = iter(out[:-1].split('\0')) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 3001 | while out: |
Shawn O. Pearce | 02dbb6d | 2008-10-21 13:59:08 -0700 | [diff] [blame] | 3002 | try: |
Anthony King | 2cd1f04 | 2014-05-05 21:24:05 +0100 | [diff] [blame] | 3003 | info = next(out) |
| 3004 | path = next(out) |
Shawn O. Pearce | 02dbb6d | 2008-10-21 13:59:08 -0700 | [diff] [blame] | 3005 | except StopIteration: |
| 3006 | break |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 3007 | |
| 3008 | class _Info(object): |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 3009 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 3010 | def __init__(self, path, omode, nmode, oid, nid, state): |
| 3011 | self.path = path |
| 3012 | self.src_path = None |
| 3013 | self.old_mode = omode |
| 3014 | self.new_mode = nmode |
| 3015 | self.old_id = oid |
| 3016 | self.new_id = nid |
| 3017 | |
| 3018 | if len(state) == 1: |
| 3019 | self.status = state |
| 3020 | self.level = None |
| 3021 | else: |
| 3022 | self.status = state[:1] |
| 3023 | self.level = state[1:] |
| 3024 | while self.level.startswith('0'): |
| 3025 | self.level = self.level[1:] |
| 3026 | |
| 3027 | info = info[1:].split(' ') |
David Pursehouse | 8f62fb7 | 2012-11-14 12:09:38 +0900 | [diff] [blame] | 3028 | info = _Info(path, *info) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 3029 | if info.status in ('R', 'C'): |
| 3030 | info.src_path = info.path |
Anthony King | 2cd1f04 | 2014-05-05 21:24:05 +0100 | [diff] [blame] | 3031 | info.path = next(out) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 3032 | r[info.path] = info |
| 3033 | return r |
| 3034 | finally: |
| 3035 | p.Wait() |
| 3036 | |
| 3037 | def GetHead(self): |
Shawn O. Pearce | 5b23f24 | 2009-04-17 18:43:33 -0700 | [diff] [blame] | 3038 | if self._bare: |
| 3039 | path = os.path.join(self._project.gitdir, HEAD) |
| 3040 | else: |
Mike Frysinger | f914edc | 2020-02-09 03:01:56 -0500 | [diff] [blame] | 3041 | path = self._project.GetHeadPath() |
Conley Owens | 75ee057 | 2012-11-15 17:33:11 -0800 | [diff] [blame] | 3042 | try: |
Mike Frysinger | 3164d40 | 2019-11-11 05:40:22 -0500 | [diff] [blame] | 3043 | with open(path) as fd: |
| 3044 | line = fd.readline() |
Dan Sandler | 53e902a | 2014-03-09 13:20:02 -0400 | [diff] [blame] | 3045 | except IOError as e: |
| 3046 | raise NoManifestException(path, str(e)) |
Shawn O. Pearce | 76ca9f8 | 2009-04-18 14:48:03 -0700 | [diff] [blame] | 3047 | try: |
Chirayu Desai | 217ea7d | 2013-03-01 19:14:38 +0530 | [diff] [blame] | 3048 | line = line.decode() |
| 3049 | except AttributeError: |
| 3050 | pass |
Shawn O. Pearce | 5b23f24 | 2009-04-17 18:43:33 -0700 | [diff] [blame] | 3051 | if line.startswith('ref: '): |
| 3052 | return line[5:-1] |
| 3053 | return line[:-1] |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 3054 | |
| 3055 | def SetHead(self, ref, message=None): |
| 3056 | cmdv = [] |
| 3057 | if message is not None: |
| 3058 | cmdv.extend(['-m', message]) |
| 3059 | cmdv.append(HEAD) |
| 3060 | cmdv.append(ref) |
| 3061 | self.symbolic_ref(*cmdv) |
| 3062 | |
| 3063 | def DetachHead(self, new, message=None): |
| 3064 | cmdv = ['--no-deref'] |
| 3065 | if message is not None: |
| 3066 | cmdv.extend(['-m', message]) |
| 3067 | cmdv.append(HEAD) |
| 3068 | cmdv.append(new) |
| 3069 | self.update_ref(*cmdv) |
| 3070 | |
| 3071 | def UpdateRef(self, name, new, old=None, |
| 3072 | message=None, |
| 3073 | detach=False): |
| 3074 | cmdv = [] |
| 3075 | if message is not None: |
| 3076 | cmdv.extend(['-m', message]) |
| 3077 | if detach: |
| 3078 | cmdv.append('--no-deref') |
| 3079 | cmdv.append(name) |
| 3080 | cmdv.append(new) |
| 3081 | if old is not None: |
| 3082 | cmdv.append(old) |
| 3083 | self.update_ref(*cmdv) |
| 3084 | |
| 3085 | def DeleteRef(self, name, old=None): |
| 3086 | if not old: |
| 3087 | old = self.rev_parse(name) |
| 3088 | self.update_ref('-d', name, old) |
Shawn O. Pearce | fbcde47 | 2009-04-17 20:58:02 -0700 | [diff] [blame] | 3089 | self._project.bare_ref.deleted(name) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 3090 | |
Shawn O. Pearce | 8ad8a0e | 2009-05-29 18:28:25 -0700 | [diff] [blame] | 3091 | def rev_list(self, *args, **kw): |
| 3092 | if 'format' in kw: |
| 3093 | cmdv = ['log', '--pretty=format:%s' % kw['format']] |
| 3094 | else: |
| 3095 | cmdv = ['rev-list'] |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 3096 | cmdv.extend(args) |
| 3097 | p = GitCommand(self._project, |
| 3098 | cmdv, |
Anthony King | 7bdac71 | 2014-07-16 12:56:40 +0100 | [diff] [blame] | 3099 | bare=self._bare, |
David James | 8d20116 | 2013-10-11 17:03:19 -0700 | [diff] [blame] | 3100 | gitdir=self._gitdir, |
Anthony King | 7bdac71 | 2014-07-16 12:56:40 +0100 | [diff] [blame] | 3101 | capture_stdout=True, |
| 3102 | capture_stderr=True) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 3103 | if p.Wait() != 0: |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 3104 | raise GitError('%s rev-list %s: %s' % |
| 3105 | (self._project.name, str(args), p.stderr)) |
Mike Frysinger | 81f5c59 | 2019-07-04 18:13:31 -0400 | [diff] [blame] | 3106 | return p.stdout.splitlines() |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 3107 | |
| 3108 | def __getattr__(self, name): |
Doug Anderson | 37282b4 | 2011-03-04 11:54:18 -0800 | [diff] [blame] | 3109 | """Allow arbitrary git commands using pythonic syntax. |
| 3110 | |
| 3111 | This allows you to do things like: |
| 3112 | git_obj.rev_parse('HEAD') |
| 3113 | |
| 3114 | Since we don't have a 'rev_parse' method defined, the __getattr__ will |
| 3115 | run. We'll replace the '_' with a '-' and try to run a git command. |
Dave Borowitz | 091f893 | 2012-10-23 17:01:04 -0700 | [diff] [blame] | 3116 | Any other positional arguments will be passed to the git command, and the |
| 3117 | following keyword arguments are supported: |
| 3118 | config: An optional dict of git config options to be passed with '-c'. |
Doug Anderson | 37282b4 | 2011-03-04 11:54:18 -0800 | [diff] [blame] | 3119 | |
| 3120 | Args: |
| 3121 | name: The name of the git command to call. Any '_' characters will |
| 3122 | be replaced with '-'. |
| 3123 | |
| 3124 | Returns: |
| 3125 | A callable object that will try to call git with the named command. |
| 3126 | """ |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 3127 | name = name.replace('_', '-') |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 3128 | |
Dave Borowitz | 091f893 | 2012-10-23 17:01:04 -0700 | [diff] [blame] | 3129 | def runner(*args, **kwargs): |
| 3130 | cmdv = [] |
| 3131 | config = kwargs.pop('config', None) |
| 3132 | for k in kwargs: |
| 3133 | raise TypeError('%s() got an unexpected keyword argument %r' |
| 3134 | % (name, k)) |
| 3135 | if config is not None: |
Dave Borowitz | b42b474 | 2012-10-31 12:27:27 -0700 | [diff] [blame] | 3136 | if not git_require((1, 7, 2)): |
| 3137 | raise ValueError('cannot set config on command line for %s()' |
| 3138 | % name) |
Chirayu Desai | 217ea7d | 2013-03-01 19:14:38 +0530 | [diff] [blame] | 3139 | for k, v in config.items(): |
Dave Borowitz | 091f893 | 2012-10-23 17:01:04 -0700 | [diff] [blame] | 3140 | cmdv.append('-c') |
| 3141 | cmdv.append('%s=%s' % (k, v)) |
| 3142 | cmdv.append(name) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 3143 | cmdv.extend(args) |
| 3144 | p = GitCommand(self._project, |
| 3145 | cmdv, |
Anthony King | 7bdac71 | 2014-07-16 12:56:40 +0100 | [diff] [blame] | 3146 | bare=self._bare, |
David James | 8d20116 | 2013-10-11 17:03:19 -0700 | [diff] [blame] | 3147 | gitdir=self._gitdir, |
Anthony King | 7bdac71 | 2014-07-16 12:56:40 +0100 | [diff] [blame] | 3148 | capture_stdout=True, |
| 3149 | capture_stderr=True) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 3150 | if p.Wait() != 0: |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 3151 | raise GitError('%s %s: %s' % |
| 3152 | (self._project.name, name, p.stderr)) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 3153 | r = p.stdout |
| 3154 | if r.endswith('\n') and r.index('\n') == len(r) - 1: |
| 3155 | return r[:-1] |
| 3156 | return r |
| 3157 | return runner |
| 3158 | |
| 3159 | |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 3160 | class _PriorSyncFailedError(Exception): |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 3161 | |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 3162 | def __str__(self): |
| 3163 | return 'prior sync failed; rebase still in progress' |
| 3164 | |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 3165 | |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 3166 | class _DirtyError(Exception): |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 3167 | |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 3168 | def __str__(self): |
| 3169 | return 'contains uncommitted changes' |
| 3170 | |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 3171 | |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 3172 | class _InfoMessage(object): |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 3173 | |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 3174 | def __init__(self, project, text): |
| 3175 | self.project = project |
| 3176 | self.text = text |
| 3177 | |
| 3178 | def Print(self, syncbuf): |
| 3179 | syncbuf.out.info('%s/: %s', self.project.relpath, self.text) |
| 3180 | syncbuf.out.nl() |
| 3181 | |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 3182 | |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 3183 | class _Failure(object): |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 3184 | |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 3185 | def __init__(self, project, why): |
| 3186 | self.project = project |
| 3187 | self.why = why |
| 3188 | |
| 3189 | def Print(self, syncbuf): |
| 3190 | syncbuf.out.fail('error: %s/: %s', |
| 3191 | self.project.relpath, |
| 3192 | str(self.why)) |
| 3193 | syncbuf.out.nl() |
| 3194 | |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 3195 | |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 3196 | class _Later(object): |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 3197 | |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 3198 | def __init__(self, project, action): |
| 3199 | self.project = project |
| 3200 | self.action = action |
| 3201 | |
| 3202 | def Run(self, syncbuf): |
| 3203 | out = syncbuf.out |
| 3204 | out.project('project %s/', self.project.relpath) |
| 3205 | out.nl() |
| 3206 | try: |
| 3207 | self.action() |
| 3208 | out.nl() |
| 3209 | return True |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 3210 | except GitError: |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 3211 | out.nl() |
| 3212 | return False |
| 3213 | |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 3214 | |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 3215 | class _SyncColoring(Coloring): |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 3216 | |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 3217 | def __init__(self, config): |
| 3218 | Coloring.__init__(self, config, 'reposync') |
Anthony King | 7bdac71 | 2014-07-16 12:56:40 +0100 | [diff] [blame] | 3219 | self.project = self.printer('header', attr='bold') |
| 3220 | self.info = self.printer('info') |
| 3221 | self.fail = self.printer('fail', fg='red') |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 3222 | |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 3223 | |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 3224 | class SyncBuffer(object): |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 3225 | |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 3226 | def __init__(self, config, detach_head=False): |
| 3227 | self._messages = [] |
| 3228 | self._failures = [] |
| 3229 | self._later_queue1 = [] |
| 3230 | self._later_queue2 = [] |
| 3231 | |
| 3232 | self.out = _SyncColoring(config) |
| 3233 | self.out.redirect(sys.stderr) |
| 3234 | |
| 3235 | self.detach_head = detach_head |
| 3236 | self.clean = True |
David Riley | e0684ad | 2017-04-05 00:02:59 -0700 | [diff] [blame] | 3237 | self.recent_clean = True |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 3238 | |
| 3239 | def info(self, project, fmt, *args): |
| 3240 | self._messages.append(_InfoMessage(project, fmt % args)) |
| 3241 | |
| 3242 | def fail(self, project, err=None): |
| 3243 | self._failures.append(_Failure(project, err)) |
David Riley | e0684ad | 2017-04-05 00:02:59 -0700 | [diff] [blame] | 3244 | self._MarkUnclean() |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 3245 | |
| 3246 | def later1(self, project, what): |
| 3247 | self._later_queue1.append(_Later(project, what)) |
| 3248 | |
| 3249 | def later2(self, project, what): |
| 3250 | self._later_queue2.append(_Later(project, what)) |
| 3251 | |
| 3252 | def Finish(self): |
| 3253 | self._PrintMessages() |
| 3254 | self._RunLater() |
| 3255 | self._PrintMessages() |
| 3256 | return self.clean |
| 3257 | |
David Riley | e0684ad | 2017-04-05 00:02:59 -0700 | [diff] [blame] | 3258 | def Recently(self): |
| 3259 | recent_clean = self.recent_clean |
| 3260 | self.recent_clean = True |
| 3261 | return recent_clean |
| 3262 | |
| 3263 | def _MarkUnclean(self): |
| 3264 | self.clean = False |
| 3265 | self.recent_clean = False |
| 3266 | |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 3267 | def _RunLater(self): |
| 3268 | for q in ['_later_queue1', '_later_queue2']: |
| 3269 | if not self._RunQueue(q): |
| 3270 | return |
| 3271 | |
| 3272 | def _RunQueue(self, queue): |
| 3273 | for m in getattr(self, queue): |
| 3274 | if not m.Run(self): |
David Riley | e0684ad | 2017-04-05 00:02:59 -0700 | [diff] [blame] | 3275 | self._MarkUnclean() |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 3276 | return False |
| 3277 | setattr(self, queue, []) |
| 3278 | return True |
| 3279 | |
| 3280 | def _PrintMessages(self): |
Mike Frysinger | 70d861f | 2019-08-26 15:22:36 -0400 | [diff] [blame] | 3281 | if self._messages or self._failures: |
| 3282 | if os.isatty(2): |
| 3283 | self.out.write(progress.CSI_ERASE_LINE) |
| 3284 | self.out.write('\r') |
| 3285 | |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 3286 | for m in self._messages: |
| 3287 | m.Print(self) |
| 3288 | for m in self._failures: |
| 3289 | m.Print(self) |
| 3290 | |
| 3291 | self._messages = [] |
| 3292 | self._failures = [] |
| 3293 | |
| 3294 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 3295 | class MetaProject(Project): |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 3296 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 3297 | """A special project housed under .repo. |
| 3298 | """ |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 3299 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 3300 | def __init__(self, manifest, name, gitdir, worktree): |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 3301 | Project.__init__(self, |
Anthony King | 7bdac71 | 2014-07-16 12:56:40 +0100 | [diff] [blame] | 3302 | manifest=manifest, |
| 3303 | name=name, |
| 3304 | gitdir=gitdir, |
| 3305 | objdir=gitdir, |
| 3306 | worktree=worktree, |
| 3307 | remote=RemoteSpec('origin'), |
| 3308 | relpath='.repo/%s' % name, |
| 3309 | revisionExpr='refs/heads/master', |
| 3310 | revisionId=None, |
| 3311 | groups=None) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 3312 | |
| 3313 | def PreSync(self): |
| 3314 | if self.Exists: |
| 3315 | cb = self.CurrentBranch |
| 3316 | if cb: |
| 3317 | base = self.GetBranch(cb).merge |
| 3318 | if base: |
Shawn O. Pearce | 3c8dea1 | 2009-05-29 18:38:17 -0700 | [diff] [blame] | 3319 | self.revisionExpr = base |
| 3320 | self.revisionId = None |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 3321 | |
Martin Kelly | 224a31a | 2017-07-10 14:46:25 -0700 | [diff] [blame] | 3322 | def MetaBranchSwitch(self, submodules=False): |
Florian Vallee | 5d01650 | 2012-06-07 17:19:26 +0200 | [diff] [blame] | 3323 | """ Prepare MetaProject for manifest branch switch |
| 3324 | """ |
| 3325 | |
| 3326 | # detach and delete manifest branch, allowing a new |
| 3327 | # branch to take over |
Anthony King | 7bdac71 | 2014-07-16 12:56:40 +0100 | [diff] [blame] | 3328 | syncbuf = SyncBuffer(self.config, detach_head=True) |
Martin Kelly | 224a31a | 2017-07-10 14:46:25 -0700 | [diff] [blame] | 3329 | self.Sync_LocalHalf(syncbuf, submodules=submodules) |
Florian Vallee | 5d01650 | 2012-06-07 17:19:26 +0200 | [diff] [blame] | 3330 | syncbuf.Finish() |
| 3331 | |
| 3332 | return GitCommand(self, |
Mark E. Hamilton | 30b0f4e | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 3333 | ['update-ref', '-d', 'refs/heads/default'], |
| 3334 | capture_stdout=True, |
| 3335 | capture_stderr=True).Wait() == 0 |
Florian Vallee | 5d01650 | 2012-06-07 17:19:26 +0200 | [diff] [blame] | 3336 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 3337 | @property |
Shawn O. Pearce | f690687 | 2009-04-18 10:49:00 -0700 | [diff] [blame] | 3338 | def LastFetch(self): |
| 3339 | try: |
| 3340 | fh = os.path.join(self.gitdir, 'FETCH_HEAD') |
| 3341 | return os.path.getmtime(fh) |
| 3342 | except OSError: |
| 3343 | return 0 |
| 3344 | |
| 3345 | @property |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 3346 | def HasChanges(self): |
| 3347 | """Has the remote received new commits not yet checked out? |
| 3348 | """ |
Shawn O. Pearce | 3c8dea1 | 2009-05-29 18:38:17 -0700 | [diff] [blame] | 3349 | if not self.remote or not self.revisionExpr: |
Shawn O. Pearce | 336f7bd | 2009-04-18 10:39:28 -0700 | [diff] [blame] | 3350 | return False |
| 3351 | |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 3352 | all_refs = self.bare_ref.all |
| 3353 | revid = self.GetRevisionId(all_refs) |
Shawn O. Pearce | 336f7bd | 2009-04-18 10:39:28 -0700 | [diff] [blame] | 3354 | head = self.work_git.GetHead() |
| 3355 | if head.startswith(R_HEADS): |
| 3356 | try: |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 3357 | head = all_refs[head] |
Shawn O. Pearce | 336f7bd | 2009-04-18 10:39:28 -0700 | [diff] [blame] | 3358 | except KeyError: |
| 3359 | head = None |
| 3360 | |
| 3361 | if revid == head: |
| 3362 | return False |
Shawn O. Pearce | 3c8dea1 | 2009-05-29 18:38:17 -0700 | [diff] [blame] | 3363 | elif self._revlist(not_rev(HEAD), revid): |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 3364 | return True |
| 3365 | return False |