David Pursehouse | 8898e2f | 2012-11-14 07:51:03 +0900 | [diff] [blame] | 1 | #!/usr/bin/env python |
Mike Frysinger | f601376 | 2019-06-13 02:30:51 -0400 | [diff] [blame] | 2 | # -*- coding:utf-8 -*- |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 3 | |
Mike Frysinger | 87fb5a1 | 2019-06-13 01:54:46 -0400 | [diff] [blame] | 4 | """Repo launcher. |
| 5 | |
| 6 | This is a standalone tool that people may copy to anywhere in their system. |
| 7 | It is used to get an initial repo client checkout, and after that it runs the |
| 8 | copy of repo in the checkout. |
| 9 | """ |
| 10 | |
Mike Frysinger | c92ce5c | 2019-06-13 01:14:23 -0400 | [diff] [blame] | 11 | from __future__ import print_function |
| 12 | |
Mark E. Hamilton | 4088eb4 | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 13 | # repo default configuration |
| 14 | # |
Mark E. Hamilton | 5553628 | 2016-02-03 15:49:43 -0700 | [diff] [blame] | 15 | import os |
| 16 | REPO_URL = os.environ.get('REPO_URL', None) |
| 17 | if not REPO_URL: |
| 18 | REPO_URL = 'https://gerrit.googlesource.com/git-repo' |
David Pursehouse | 8f62fb7 | 2012-11-14 12:09:38 +0900 | [diff] [blame] | 19 | REPO_REV = 'stable' |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 20 | |
| 21 | # Copyright (C) 2008 Google Inc. |
| 22 | # |
| 23 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 24 | # you may not use this file except in compliance with the License. |
| 25 | # You may obtain a copy of the License at |
| 26 | # |
| 27 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 28 | # |
| 29 | # Unless required by applicable law or agreed to in writing, software |
| 30 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 31 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 32 | # See the License for the specific language governing permissions and |
| 33 | # limitations under the License. |
| 34 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 35 | # increment this whenever we make important changes to this script |
Mike Frysinger | 6be7633 | 2019-09-17 16:27:18 -0400 | [diff] [blame] | 36 | VERSION = (1, 26) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 37 | |
| 38 | # increment this if the MAINTAINER_KEYS block is modified |
Conley Owens | bc03084 | 2013-07-01 11:05:32 -0700 | [diff] [blame] | 39 | KEYRING_VERSION = (1, 2) |
Mike Frysinger | e443365 | 2016-09-13 18:06:07 -0400 | [diff] [blame] | 40 | |
| 41 | # Each individual key entry is created by using: |
| 42 | # gpg --armor --export keyid |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 43 | MAINTAINER_KEYS = """ |
| 44 | |
| 45 | Repo Maintainer <repo@android.kernel.org> |
| 46 | -----BEGIN PGP PUBLIC KEY BLOCK----- |
| 47 | Version: GnuPG v1.4.2.2 (GNU/Linux) |
| 48 | |
| 49 | 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 |
| 84 | =CMiZ |
| 85 | -----END PGP PUBLIC KEY BLOCK----- |
Conley Owens | 55e4d46 | 2012-10-01 16:12:28 -0700 | [diff] [blame] | 86 | |
| 87 | Conley Owens <cco3@android.com> |
| 88 | -----BEGIN PGP PUBLIC KEY BLOCK----- |
| 89 | Version: GnuPG v1.4.11 (GNU/Linux) |
| 90 | |
Conley Owens | bc03084 | 2013-07-01 11:05:32 -0700 | [diff] [blame] | 91 | mQENBFHRvc8BCADFg45Xx/y6QDC+T7Y/gGc7vx0ww7qfOwIKlAZ9xG3qKunMxo+S |
| 92 | hPCnzEl3cq+6I1Ww/ndop/HB3N3toPXRCoN8Vs4/Hc7by+SnaLFnacrm+tV5/OgT |
| 93 | V37Lzt8lhay1Kl+YfpFwHYYpIEBLFV9knyfRXS/428W2qhdzYfvB15/AasRmwmor |
| 94 | py4NIzSs8UD/SPr1ihqNCdZM76+MQyN5HMYXW/ALZXUFG0pwluHFA7hrfPG74i8C |
| 95 | zMiP7qvMWIl/r/jtzHioH1dRKgbod+LZsrDJ8mBaqsZaDmNJMhss9g76XvfMyLra |
| 96 | 9DI9/iFuBpGzeqBv0hwOGQspLRrEoyTeR6n1ABEBAAG0H0NvbmxleSBPd2VucyA8 |
| 97 | Y2NvM0BhbmRyb2lkLmNvbT6JATgEEwECACIFAlHRvc8CGwMGCwkIBwMCBhUIAgkK |
| 98 | CwQWAgMBAh4BAheAAAoJEGe35EhpKzgsP6AIAJKJmNtn4l7hkYHKHFSo3egb6RjQ |
| 99 | zEIP3MFTcu8HFX1kF1ZFbrp7xqurLaE53kEkKuAAvjJDAgI8mcZHP1JyplubqjQA |
| 100 | xvv84gK+OGP3Xk+QK1ZjUQSbjOpjEiSZpRhWcHci3dgOUH4blJfByHw25hlgHowd |
| 101 | a/2PrNKZVcJ92YienaxxGjcXEUcd0uYEG2+rwllQigFcnMFDhr9B71MfalRHjFKE |
| 102 | fmdoypqLrri61YBc59P88Rw2/WUpTQjgNubSqa3A2+CKdaRyaRw+2fdF4TdR0h8W |
| 103 | zbg+lbaPtJHsV+3mJC7fq26MiJDRJa5ZztpMn8su20gbLgi2ShBOaHAYDDi5AQ0E |
| 104 | UdG9zwEIAMoOBq+QLNozAhxOOl5GL3StTStGRgPRXINfmViTsihrqGCWBBUfXlUE |
| 105 | OytC0mYcrDUQev/8ToVoyqw+iGSwDkcSXkrEUCKFtHV/GECWtk1keyHgR10YKI1R |
| 106 | mquSXoubWGqPeG1PAI74XWaRx8UrL8uCXUtmD8Q5J7mDjKR5NpxaXrwlA0bKsf2E |
| 107 | Gp9tu1kKauuToZhWHMRMqYSOGikQJwWSFYKT1KdNcOXLQF6+bfoJ6sjVYdwfmNQL |
| 108 | Ixn8QVhoTDedcqClSWB17VDEFDFa7MmqXZz2qtM3X1R/MUMHqPtegQzBGNhRdnI2 |
| 109 | V45+1Nnx/uuCxDbeI4RbHzujnxDiq70AEQEAAYkBHwQYAQIACQUCUdG9zwIbDAAK |
| 110 | CRBnt+RIaSs4LNVeB/0Y2pZ8I7gAAcEM0Xw8drr4omg2fUoK1J33ozlA/RxeA/lJ |
| 111 | I3KnyCDTpXuIeBKPGkdL8uMATC9Z8DnBBajRlftNDVZS3Hz4G09G9QpMojvJkFJV |
| 112 | By+01Flw/X+eeN8NpqSuLV4W+AjEO8at/VvgKr1AFvBRdZ7GkpI1o6DgPe7ZqX+1 |
| 113 | dzQZt3e13W0rVBb/bUgx9iSLoeWP3aq/k+/GRGOR+S6F6BBSl0SQ2EF2+dIywb1x |
| 114 | JuinEP+AwLAUZ1Bsx9ISC0Agpk2VeHXPL3FGhroEmoMvBzO0kTFGyoeT7PR/BfKv |
| 115 | +H/g3HsL2LOB9uoIm8/5p2TTU5ttYCXMHhQZ81AY |
| 116 | =AUp4 |
Conley Owens | 55e4d46 | 2012-10-01 16:12:28 -0700 | [diff] [blame] | 117 | -----END PGP PUBLIC KEY BLOCK----- |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 118 | """ |
| 119 | |
Mark E. Hamilton | 4088eb4 | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 120 | GIT = 'git' # our git command |
| 121 | MIN_GIT_VERSION = (1, 7, 2) # minimum supported git version |
| 122 | repodir = '.repo' # name of repo's private directory |
| 123 | S_repo = 'repo' # special repo repository |
| 124 | S_manifests = 'manifests' # special manifest repository |
| 125 | REPO_MAIN = S_repo + '/main.py' # main script |
Eli Ribble | d4b13c2 | 2018-12-18 21:21:12 -0800 | [diff] [blame] | 126 | MIN_PYTHON_VERSION = (2, 7) # minimum supported python version |
Simran Basi | 8ce5041 | 2015-08-28 14:25:44 -0700 | [diff] [blame] | 127 | GITC_CONFIG_FILE = '/gitc/.config' |
Dan Willemsen | 745b4ad | 2015-10-06 15:23:19 -0700 | [diff] [blame] | 128 | GITC_FS_ROOT_DIR = '/gitc/manifest-rw/' |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 129 | |
| 130 | |
Mike Frysinger | 6db1b9e | 2019-07-10 15:32:36 -0400 | [diff] [blame] | 131 | import collections |
David James | bf79c66 | 2013-12-26 14:20:13 -0800 | [diff] [blame] | 132 | import errno |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 133 | import optparse |
Renaud Paquay | 35d2221 | 2016-11-01 11:24:52 -0700 | [diff] [blame] | 134 | import platform |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 135 | import re |
Mitchel Humpherys | eb5acc9 | 2014-03-12 10:48:15 -0700 | [diff] [blame] | 136 | import shutil |
Sarah Owens | 60798a3 | 2012-10-25 17:53:09 -0700 | [diff] [blame] | 137 | import stat |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 138 | import subprocess |
| 139 | import sys |
David Pursehouse | 59bbb58 | 2013-05-17 10:49:33 +0900 | [diff] [blame] | 140 | |
| 141 | if sys.version_info[0] == 3: |
Sarah Owens | 1f7627f | 2012-10-31 09:21:55 -0700 | [diff] [blame] | 142 | import urllib.request |
| 143 | import urllib.error |
| 144 | else: |
Sarah Owens | 1f7627f | 2012-10-31 09:21:55 -0700 | [diff] [blame] | 145 | import imp |
David Pursehouse | 59bbb58 | 2013-05-17 10:49:33 +0900 | [diff] [blame] | 146 | import urllib2 |
Sarah Owens | 1f7627f | 2012-10-31 09:21:55 -0700 | [diff] [blame] | 147 | urllib = imp.new_module('urllib') |
| 148 | urllib.request = urllib2 |
| 149 | urllib.error = urllib2 |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 150 | |
Conley Owens | 5e0ee14 | 2013-09-26 15:50:49 -0700 | [diff] [blame] | 151 | |
Chirayu Desai | 51813df | 2013-04-16 19:36:09 +0530 | [diff] [blame] | 152 | # Python version check |
| 153 | ver = sys.version_info |
Chirayu Desai | 51813df | 2013-04-16 19:36:09 +0530 | [diff] [blame] | 154 | if (ver[0], ver[1]) < MIN_PYTHON_VERSION: |
Mike Frysinger | c92ce5c | 2019-06-13 01:14:23 -0400 | [diff] [blame] | 155 | print('error: Python version {} unsupported.\n' |
| 156 | 'Please use Python {}.{} instead.'.format( |
| 157 | sys.version.split(' ')[0], |
| 158 | MIN_PYTHON_VERSION[0], |
| 159 | MIN_PYTHON_VERSION[1], |
| 160 | ), file=sys.stderr) |
Chirayu Desai | 51813df | 2013-04-16 19:36:09 +0530 | [diff] [blame] | 161 | sys.exit(1) |
| 162 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 163 | home_dot_repo = os.path.expanduser('~/.repoconfig') |
| 164 | gpg_dir = os.path.join(home_dot_repo, 'gnupg') |
| 165 | |
| 166 | extra_args = [] |
| 167 | init_optparse = optparse.OptionParser(usage="repo init -u url [options]") |
| 168 | |
| 169 | # Logging |
| 170 | group = init_optparse.add_option_group('Logging options') |
| 171 | group.add_option('-q', '--quiet', |
| 172 | dest="quiet", action="store_true", default=False, |
| 173 | help="be quiet") |
| 174 | |
| 175 | # Manifest |
| 176 | group = init_optparse.add_option_group('Manifest options') |
| 177 | group.add_option('-u', '--manifest-url', |
| 178 | dest='manifest_url', |
| 179 | help='manifest repository location', metavar='URL') |
| 180 | group.add_option('-b', '--manifest-branch', |
| 181 | dest='manifest_branch', |
| 182 | help='manifest branch or revision', metavar='REVISION') |
| 183 | group.add_option('-m', '--manifest-name', |
| 184 | dest='manifest_name', |
| 185 | help='initial manifest file', metavar='NAME.xml') |
Ereth McKnight-MacNeil | 12ee544 | 2018-12-19 21:28:35 -0800 | [diff] [blame] | 186 | group.add_option('--current-branch', |
Naseer Ahmed | f4dda9a | 2016-12-01 18:49:54 -0500 | [diff] [blame] | 187 | dest='current_branch_only', action='store_true', |
| 188 | help='fetch only current manifest branch from server') |
Shawn O. Pearce | e284ad1 | 2008-11-04 07:37:10 -0800 | [diff] [blame] | 189 | group.add_option('--mirror', |
| 190 | dest='mirror', action='store_true', |
David Pursehouse | 3794a78 | 2012-11-15 06:17:30 +0900 | [diff] [blame] | 191 | help='create a replica of the remote repositories ' |
| 192 | 'rather than a client working directory') |
Shawn O. Pearce | 8844338 | 2010-10-08 10:02:09 +0200 | [diff] [blame] | 193 | group.add_option('--reference', |
| 194 | dest='reference', |
| 195 | help='location of mirror directory', metavar='DIR') |
Nikolai Merinov | 09f0abb | 2018-10-19 15:07:05 +0500 | [diff] [blame] | 196 | group.add_option('--dissociate', |
| 197 | dest='dissociate', action='store_true', |
| 198 | help='dissociate from reference mirrors after clone') |
Doug Anderson | 49cd59b | 2011-06-13 21:42:06 -0700 | [diff] [blame] | 199 | group.add_option('--depth', type='int', default=None, |
| 200 | dest='depth', |
| 201 | help='create a shallow clone with given depth; see git clone') |
Xin Li | 745be2e | 2019-06-03 11:24:30 -0700 | [diff] [blame] | 202 | group.add_option('--partial-clone', action='store_true', |
| 203 | dest='partial_clone', |
| 204 | help='perform partial clone (https://git-scm.com/' |
| 205 | 'docs/gitrepository-layout#_code_partialclone_code)') |
| 206 | group.add_option('--clone-filter', action='store', default='blob:none', |
| 207 | dest='clone_filter', |
| 208 | help='filter for use with --partial-clone [default: %default]') |
Julien Campergue | 335f5ef | 2013-10-16 11:02:35 +0200 | [diff] [blame] | 209 | group.add_option('--archive', |
| 210 | dest='archive', action='store_true', |
| 211 | help='checkout an archive instead of a git repository for ' |
| 212 | 'each project. See git archive.') |
Martin Kelly | e4e94d2 | 2017-03-21 16:05:12 -0700 | [diff] [blame] | 213 | group.add_option('--submodules', |
| 214 | dest='submodules', action='store_true', |
| 215 | help='sync any submodules associated with the manifest repo') |
Colin Cross | 5acde75 | 2012-03-28 20:15:45 -0700 | [diff] [blame] | 216 | group.add_option('-g', '--groups', |
Conley Owens | 971de8e | 2012-04-16 10:36:08 -0700 | [diff] [blame] | 217 | dest='groups', default='default', |
David Holmer | 0a1c6a1 | 2012-11-14 19:19:00 -0500 | [diff] [blame] | 218 | help='restrict manifest projects to ones with specified ' |
| 219 | 'group(s) [default|all|G1,G2,G3|G4,-G5,-G6]', |
Colin Cross | 5acde75 | 2012-03-28 20:15:45 -0700 | [diff] [blame] | 220 | metavar='GROUP') |
Conley Owens | d21720d | 2012-04-16 11:02:21 -0700 | [diff] [blame] | 221 | group.add_option('-p', '--platform', |
| 222 | dest='platform', default="auto", |
Conley Owens | c9129d9 | 2012-10-01 16:12:28 -0700 | [diff] [blame] | 223 | help='restrict manifest projects to ones with a specified ' |
Conley Owens | d21720d | 2012-04-16 11:02:21 -0700 | [diff] [blame] | 224 | 'platform group [auto|all|none|linux|darwin|...]', |
| 225 | metavar='PLATFORM') |
Hu xiuyun | 9711a98 | 2015-12-11 11:16:41 +0800 | [diff] [blame] | 226 | group.add_option('--no-clone-bundle', |
| 227 | dest='no_clone_bundle', action='store_true', |
| 228 | help='disable use of /clone.bundle on HTTP/HTTPS') |
Naseer Ahmed | f4dda9a | 2016-12-01 18:49:54 -0500 | [diff] [blame] | 229 | group.add_option('--no-tags', |
| 230 | dest='no_tags', action='store_true', |
| 231 | help="don't fetch tags in the manifest") |
Doug Anderson | 49cd59b | 2011-06-13 21:42:06 -0700 | [diff] [blame] | 232 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 233 | |
| 234 | # Tool |
Shawn O. Pearce | fd89b67 | 2009-04-18 11:28:57 -0700 | [diff] [blame] | 235 | group = init_optparse.add_option_group('repo Version options') |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 236 | group.add_option('--repo-url', |
| 237 | dest='repo_url', |
| 238 | help='repo repository location', metavar='URL') |
| 239 | group.add_option('--repo-branch', |
| 240 | dest='repo_branch', |
| 241 | help='repo branch or revision', metavar='REVISION') |
| 242 | group.add_option('--no-repo-verify', |
| 243 | dest='no_repo_verify', action='store_true', |
| 244 | help='do not verify repo source code') |
| 245 | |
Victor Boivie | 841be34 | 2011-04-05 11:31:10 +0200 | [diff] [blame] | 246 | # Other |
| 247 | group = init_optparse.add_option_group('Other options') |
| 248 | group.add_option('--config-name', |
| 249 | dest='config_name', action="store_true", default=False, |
| 250 | help='Always prompt for name/e-mail') |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 251 | |
Mark E. Hamilton | 4088eb4 | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 252 | |
| 253 | def _GitcInitOptions(init_optparse_arg): |
| 254 | init_optparse_arg.set_usage("repo gitc-init -u url -c client [options]") |
| 255 | g = init_optparse_arg.add_option_group('GITC options') |
Simran Basi | 1efc2b4 | 2015-08-05 15:04:22 -0700 | [diff] [blame] | 256 | g.add_option('-f', '--manifest-file', |
| 257 | dest='manifest_file', |
| 258 | help='Optional manifest file to use for this GITC client.') |
| 259 | g.add_option('-c', '--gitc-client', |
| 260 | dest='gitc_client', |
Dan Willemsen | 745b4ad | 2015-10-06 15:23:19 -0700 | [diff] [blame] | 261 | help='The name of the gitc_client instance to create or modify.') |
Simran Basi | 1efc2b4 | 2015-08-05 15:04:22 -0700 | [diff] [blame] | 262 | |
Simran Basi | 8ce5041 | 2015-08-28 14:25:44 -0700 | [diff] [blame] | 263 | _gitc_manifest_dir = None |
Mark E. Hamilton | 4088eb4 | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 264 | |
| 265 | |
Simran Basi | 8ce5041 | 2015-08-28 14:25:44 -0700 | [diff] [blame] | 266 | def get_gitc_manifest_dir(): |
| 267 | global _gitc_manifest_dir |
| 268 | if _gitc_manifest_dir is None: |
Dan Willemsen | 2487cb7 | 2015-08-31 15:45:06 -0700 | [diff] [blame] | 269 | _gitc_manifest_dir = '' |
Simran Basi | 8ce5041 | 2015-08-28 14:25:44 -0700 | [diff] [blame] | 270 | try: |
| 271 | with open(GITC_CONFIG_FILE, 'r') as gitc_config: |
| 272 | for line in gitc_config: |
| 273 | match = re.match('gitc_dir=(?P<gitc_manifest_dir>.*)', line) |
| 274 | if match: |
| 275 | _gitc_manifest_dir = match.group('gitc_manifest_dir') |
| 276 | except IOError: |
Dan Willemsen | 2487cb7 | 2015-08-31 15:45:06 -0700 | [diff] [blame] | 277 | pass |
Simran Basi | 8ce5041 | 2015-08-28 14:25:44 -0700 | [diff] [blame] | 278 | return _gitc_manifest_dir |
| 279 | |
Mark E. Hamilton | 4088eb4 | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 280 | |
Dan Willemsen | 745b4ad | 2015-10-06 15:23:19 -0700 | [diff] [blame] | 281 | def gitc_parse_clientdir(gitc_fs_path): |
| 282 | """Parse a path in the GITC FS and return its client name. |
| 283 | |
| 284 | @param gitc_fs_path: A subdirectory path within the GITC_FS_ROOT_DIR. |
| 285 | |
| 286 | @returns: The GITC client name |
| 287 | """ |
| 288 | if gitc_fs_path == GITC_FS_ROOT_DIR: |
| 289 | return None |
| 290 | if not gitc_fs_path.startswith(GITC_FS_ROOT_DIR): |
| 291 | manifest_dir = get_gitc_manifest_dir() |
| 292 | if manifest_dir == '': |
| 293 | return None |
| 294 | if manifest_dir[-1] != '/': |
| 295 | manifest_dir += '/' |
| 296 | if gitc_fs_path == manifest_dir: |
| 297 | return None |
| 298 | if not gitc_fs_path.startswith(manifest_dir): |
| 299 | return None |
| 300 | return gitc_fs_path.split(manifest_dir)[1].split('/')[0] |
| 301 | return gitc_fs_path.split(GITC_FS_ROOT_DIR)[1].split('/')[0] |
| 302 | |
Mark E. Hamilton | 4088eb4 | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 303 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 304 | class CloneFailure(Exception): |
Mark E. Hamilton | 4088eb4 | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 305 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 306 | """Indicate the remote clone of repo itself failed. |
| 307 | """ |
| 308 | |
| 309 | |
Simran Basi | 1efc2b4 | 2015-08-05 15:04:22 -0700 | [diff] [blame] | 310 | def _Init(args, gitc_init=False): |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 311 | """Installs repo by cloning it over the network. |
| 312 | """ |
Simran Basi | 1efc2b4 | 2015-08-05 15:04:22 -0700 | [diff] [blame] | 313 | if gitc_init: |
| 314 | _GitcInitOptions(init_optparse) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 315 | opt, args = init_optparse.parse_args(args) |
Xiaodong Xu | ae0a36c | 2012-01-31 11:10:09 +0800 | [diff] [blame] | 316 | if args: |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 317 | init_optparse.print_usage() |
| 318 | sys.exit(1) |
| 319 | |
| 320 | url = opt.repo_url |
| 321 | if not url: |
| 322 | url = REPO_URL |
| 323 | extra_args.append('--repo-url=%s' % url) |
| 324 | |
| 325 | branch = opt.repo_branch |
| 326 | if not branch: |
| 327 | branch = REPO_REV |
| 328 | extra_args.append('--repo-branch=%s' % branch) |
| 329 | |
| 330 | if branch.startswith('refs/heads/'): |
| 331 | branch = branch[len('refs/heads/'):] |
| 332 | if branch.startswith('refs/'): |
Mike Frysinger | c92ce5c | 2019-06-13 01:14:23 -0400 | [diff] [blame] | 333 | print("fatal: invalid branch name '%s'" % branch, file=sys.stderr) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 334 | raise CloneFailure() |
| 335 | |
David James | bf79c66 | 2013-12-26 14:20:13 -0800 | [diff] [blame] | 336 | try: |
Simran Basi | 1efc2b4 | 2015-08-05 15:04:22 -0700 | [diff] [blame] | 337 | if gitc_init: |
Simran Basi | 8ce5041 | 2015-08-28 14:25:44 -0700 | [diff] [blame] | 338 | gitc_manifest_dir = get_gitc_manifest_dir() |
| 339 | if not gitc_manifest_dir: |
Mike Frysinger | c92ce5c | 2019-06-13 01:14:23 -0400 | [diff] [blame] | 340 | print('fatal: GITC filesystem is not available. Exiting...', |
| 341 | file=sys.stderr) |
Simran Basi | 8ce5041 | 2015-08-28 14:25:44 -0700 | [diff] [blame] | 342 | sys.exit(1) |
Dan Willemsen | 745b4ad | 2015-10-06 15:23:19 -0700 | [diff] [blame] | 343 | gitc_client = opt.gitc_client |
| 344 | if not gitc_client: |
| 345 | gitc_client = gitc_parse_clientdir(os.getcwd()) |
| 346 | if not gitc_client: |
Mike Frysinger | c92ce5c | 2019-06-13 01:14:23 -0400 | [diff] [blame] | 347 | print('fatal: GITC client (-c) is required.', file=sys.stderr) |
Dan Willemsen | 9ff2ece | 2015-08-31 15:45:06 -0700 | [diff] [blame] | 348 | sys.exit(1) |
Dan Willemsen | 745b4ad | 2015-10-06 15:23:19 -0700 | [diff] [blame] | 349 | client_dir = os.path.join(gitc_manifest_dir, gitc_client) |
Simran Basi | 1efc2b4 | 2015-08-05 15:04:22 -0700 | [diff] [blame] | 350 | if not os.path.exists(client_dir): |
| 351 | os.makedirs(client_dir) |
| 352 | os.chdir(client_dir) |
| 353 | if os.path.exists(repodir): |
| 354 | # This GITC Client has already initialized repo so continue. |
| 355 | return |
| 356 | |
David James | bf79c66 | 2013-12-26 14:20:13 -0800 | [diff] [blame] | 357 | os.mkdir(repodir) |
| 358 | except OSError as e: |
| 359 | if e.errno != errno.EEXIST: |
Mike Frysinger | c92ce5c | 2019-06-13 01:14:23 -0400 | [diff] [blame] | 360 | print('fatal: cannot make %s directory: %s' |
| 361 | % (repodir, e.strerror), file=sys.stderr) |
David Pursehouse | 3794a78 | 2012-11-15 06:17:30 +0900 | [diff] [blame] | 362 | # Don't raise CloneFailure; that would delete the |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 363 | # name. Instead exit immediately. |
| 364 | # |
| 365 | sys.exit(1) |
| 366 | |
| 367 | _CheckGitVersion() |
| 368 | try: |
Conley Owens | c9129d9 | 2012-10-01 16:12:28 -0700 | [diff] [blame] | 369 | if NeedSetupGnuPG(): |
| 370 | can_verify = SetupGnuPG(opt.quiet) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 371 | else: |
| 372 | can_verify = True |
| 373 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 374 | dst = os.path.abspath(os.path.join(repodir, S_repo)) |
Hu xiuyun | 9711a98 | 2015-12-11 11:16:41 +0800 | [diff] [blame] | 375 | _Clone(url, dst, opt.quiet, not opt.no_clone_bundle) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 376 | |
| 377 | if can_verify and not opt.no_repo_verify: |
| 378 | rev = _Verify(dst, branch, opt.quiet) |
| 379 | else: |
| 380 | rev = 'refs/remotes/origin/%s^0' % branch |
| 381 | |
| 382 | _Checkout(dst, branch, rev, opt.quiet) |
Sebastian Schuberth | 993dcac | 2018-07-13 10:25:52 +0200 | [diff] [blame] | 383 | |
| 384 | if not os.path.isfile(os.path.join(dst, 'repo')): |
Mike Frysinger | c92ce5c | 2019-06-13 01:14:23 -0400 | [diff] [blame] | 385 | print("warning: '%s' does not look like a git-repo repository, is " |
| 386 | "REPO_URL set correctly?" % url, file=sys.stderr) |
Sebastian Schuberth | 993dcac | 2018-07-13 10:25:52 +0200 | [diff] [blame] | 387 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 388 | except CloneFailure: |
| 389 | if opt.quiet: |
Mike Frysinger | c92ce5c | 2019-06-13 01:14:23 -0400 | [diff] [blame] | 390 | print('fatal: repo init failed; run without --quiet to see why', |
| 391 | file=sys.stderr) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 392 | raise |
| 393 | |
| 394 | |
Mike Frysinger | 6db1b9e | 2019-07-10 15:32:36 -0400 | [diff] [blame] | 395 | # The git version info broken down into components for easy analysis. |
| 396 | # Similar to Python's sys.version_info. |
| 397 | GitVersion = collections.namedtuple( |
| 398 | 'GitVersion', ('major', 'minor', 'micro', 'full')) |
| 399 | |
Mike Frysinger | f88b2fe | 2019-07-10 15:37:43 -0400 | [diff] [blame] | 400 | def ParseGitVersion(ver_str=None): |
| 401 | if ver_str is None: |
| 402 | # Load the version ourselves. |
| 403 | ver_str = _GetGitVersion() |
| 404 | |
Conley Owens | ff0a3c8 | 2014-01-30 14:46:03 -0800 | [diff] [blame] | 405 | if not ver_str.startswith('git version '): |
| 406 | return None |
| 407 | |
Mike Frysinger | 6db1b9e | 2019-07-10 15:32:36 -0400 | [diff] [blame] | 408 | full_version = ver_str[len('git version '):].strip() |
| 409 | num_ver_str = full_version.split('-')[0] |
Conley Owens | ff0a3c8 | 2014-01-30 14:46:03 -0800 | [diff] [blame] | 410 | to_tuple = [] |
| 411 | for num_str in num_ver_str.split('.')[:3]: |
| 412 | if num_str.isdigit(): |
| 413 | to_tuple.append(int(num_str)) |
| 414 | else: |
| 415 | to_tuple.append(0) |
Mike Frysinger | 6db1b9e | 2019-07-10 15:32:36 -0400 | [diff] [blame] | 416 | to_tuple.append(full_version) |
| 417 | return GitVersion(*to_tuple) |
Conley Owens | ff0a3c8 | 2014-01-30 14:46:03 -0800 | [diff] [blame] | 418 | |
| 419 | |
Mike Frysinger | f88b2fe | 2019-07-10 15:37:43 -0400 | [diff] [blame] | 420 | def _GetGitVersion(): |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 421 | cmd = [GIT, '--version'] |
Shawn O. Pearce | 4fd38ec | 2012-06-05 07:55:07 -0700 | [diff] [blame] | 422 | try: |
| 423 | proc = subprocess.Popen(cmd, stdout=subprocess.PIPE) |
Sarah Owens | a5be53f | 2012-09-09 15:37:57 -0700 | [diff] [blame] | 424 | except OSError as e: |
Mike Frysinger | c92ce5c | 2019-06-13 01:14:23 -0400 | [diff] [blame] | 425 | print(file=sys.stderr) |
| 426 | print("fatal: '%s' is not available" % GIT, file=sys.stderr) |
| 427 | print('fatal: %s' % e, file=sys.stderr) |
| 428 | print(file=sys.stderr) |
| 429 | print('Please make sure %s is installed and in your path.' % GIT, |
| 430 | file=sys.stderr) |
Mike Frysinger | f88b2fe | 2019-07-10 15:37:43 -0400 | [diff] [blame] | 431 | raise |
Shawn O. Pearce | 4fd38ec | 2012-06-05 07:55:07 -0700 | [diff] [blame] | 432 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 433 | ver_str = proc.stdout.read().strip() |
| 434 | proc.stdout.close() |
Shawn O. Pearce | 1619134 | 2008-10-28 08:33:34 -0700 | [diff] [blame] | 435 | proc.wait() |
Mike Frysinger | f88b2fe | 2019-07-10 15:37:43 -0400 | [diff] [blame] | 436 | return ver_str.decode('utf-8') |
| 437 | |
| 438 | |
| 439 | def _CheckGitVersion(): |
| 440 | try: |
| 441 | ver_act = ParseGitVersion() |
| 442 | except OSError: |
| 443 | raise CloneFailure() |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 444 | |
Conley Owens | ff0a3c8 | 2014-01-30 14:46:03 -0800 | [diff] [blame] | 445 | if ver_act is None: |
Mike Frysinger | 4c263b5 | 2019-09-11 04:04:16 -0400 | [diff] [blame] | 446 | print('fatal: unable to detect git version', file=sys.stderr) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 447 | raise CloneFailure() |
| 448 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 449 | if ver_act < MIN_GIT_VERSION: |
David Pursehouse | 685f080 | 2012-11-14 08:34:39 +0900 | [diff] [blame] | 450 | need = '.'.join(map(str, MIN_GIT_VERSION)) |
Mike Frysinger | c92ce5c | 2019-06-13 01:14:23 -0400 | [diff] [blame] | 451 | print('fatal: git %s or later required' % need, file=sys.stderr) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 452 | raise CloneFailure() |
| 453 | |
| 454 | |
Conley Owens | c9129d9 | 2012-10-01 16:12:28 -0700 | [diff] [blame] | 455 | def NeedSetupGnuPG(): |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 456 | if not os.path.isdir(home_dot_repo): |
| 457 | return True |
| 458 | |
| 459 | kv = os.path.join(home_dot_repo, 'keyring-version') |
| 460 | if not os.path.exists(kv): |
| 461 | return True |
| 462 | |
| 463 | kv = open(kv).read() |
| 464 | if not kv: |
| 465 | return True |
| 466 | |
David Pursehouse | 685f080 | 2012-11-14 08:34:39 +0900 | [diff] [blame] | 467 | kv = tuple(map(int, kv.split('.'))) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 468 | if kv < KEYRING_VERSION: |
| 469 | return True |
| 470 | return False |
| 471 | |
| 472 | |
Conley Owens | c9129d9 | 2012-10-01 16:12:28 -0700 | [diff] [blame] | 473 | def SetupGnuPG(quiet): |
David James | bf79c66 | 2013-12-26 14:20:13 -0800 | [diff] [blame] | 474 | try: |
| 475 | os.mkdir(home_dot_repo) |
| 476 | except OSError as e: |
| 477 | if e.errno != errno.EEXIST: |
Mike Frysinger | c92ce5c | 2019-06-13 01:14:23 -0400 | [diff] [blame] | 478 | print('fatal: cannot make %s directory: %s' |
| 479 | % (home_dot_repo, e.strerror), file=sys.stderr) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 480 | sys.exit(1) |
| 481 | |
David James | bf79c66 | 2013-12-26 14:20:13 -0800 | [diff] [blame] | 482 | try: |
| 483 | os.mkdir(gpg_dir, stat.S_IRWXU) |
| 484 | except OSError as e: |
| 485 | if e.errno != errno.EEXIST: |
Mike Frysinger | c92ce5c | 2019-06-13 01:14:23 -0400 | [diff] [blame] | 486 | print('fatal: cannot make %s directory: %s' % (gpg_dir, e.strerror), |
| 487 | file=sys.stderr) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 488 | sys.exit(1) |
| 489 | |
Shawn O. Pearce | f18cb76 | 2010-12-07 11:41:05 -0800 | [diff] [blame] | 490 | env = os.environ.copy() |
Dāvis Mosāns | 631d0ec | 2016-07-16 21:11:11 +0300 | [diff] [blame] | 491 | try: |
| 492 | env['GNUPGHOME'] = gpg_dir |
| 493 | except UnicodeEncodeError: |
| 494 | env['GNUPGHOME'] = gpg_dir.encode() |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 495 | |
| 496 | cmd = ['gpg', '--import'] |
| 497 | try: |
| 498 | proc = subprocess.Popen(cmd, |
Mark E. Hamilton | 4088eb4 | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 499 | env=env, |
| 500 | stdin=subprocess.PIPE) |
Sarah Owens | a5be53f | 2012-09-09 15:37:57 -0700 | [diff] [blame] | 501 | except OSError as e: |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 502 | if not quiet: |
Mike Frysinger | c92ce5c | 2019-06-13 01:14:23 -0400 | [diff] [blame] | 503 | print('warning: gpg (GnuPG) is not available.', file=sys.stderr) |
| 504 | print('warning: Installing it is strongly encouraged.', file=sys.stderr) |
| 505 | print(file=sys.stderr) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 506 | return False |
| 507 | |
Mike Frysinger | 9100f7f | 2019-09-11 03:58:36 -0400 | [diff] [blame] | 508 | proc.stdin.write(MAINTAINER_KEYS.encode('utf-8')) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 509 | proc.stdin.close() |
| 510 | |
| 511 | if proc.wait() != 0: |
Mike Frysinger | c92ce5c | 2019-06-13 01:14:23 -0400 | [diff] [blame] | 512 | print('fatal: registering repo maintainer keys failed', file=sys.stderr) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 513 | sys.exit(1) |
Mike Frysinger | c92ce5c | 2019-06-13 01:14:23 -0400 | [diff] [blame] | 514 | print() |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 515 | |
| 516 | fd = open(os.path.join(home_dot_repo, 'keyring-version'), 'w') |
David Pursehouse | 685f080 | 2012-11-14 08:34:39 +0900 | [diff] [blame] | 517 | fd.write('.'.join(map(str, KEYRING_VERSION)) + '\n') |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 518 | fd.close() |
| 519 | return True |
| 520 | |
| 521 | |
| 522 | def _SetConfig(local, name, value): |
| 523 | """Set a git configuration option to the specified value. |
| 524 | """ |
| 525 | cmd = [GIT, 'config', name, value] |
Mark E. Hamilton | 4088eb4 | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 526 | if subprocess.Popen(cmd, cwd=local).wait() != 0: |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 527 | raise CloneFailure() |
| 528 | |
Shawn O. Pearce | f322b9a | 2011-09-19 14:50:58 -0700 | [diff] [blame] | 529 | |
| 530 | def _InitHttp(): |
| 531 | handlers = [] |
| 532 | |
Sarah Owens | 1f7627f | 2012-10-31 09:21:55 -0700 | [diff] [blame] | 533 | mgr = urllib.request.HTTPPasswordMgrWithDefaultRealm() |
Shawn O. Pearce | f322b9a | 2011-09-19 14:50:58 -0700 | [diff] [blame] | 534 | try: |
| 535 | import netrc |
| 536 | n = netrc.netrc() |
| 537 | for host in n.hosts: |
| 538 | p = n.hosts[host] |
Mark E. Hamilton | 4088eb4 | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 539 | mgr.add_password(p[1], 'http://%s/' % host, p[0], p[2]) |
Xiaodong Xu | ae0a36c | 2012-01-31 11:10:09 +0800 | [diff] [blame] | 540 | mgr.add_password(p[1], 'https://%s/' % host, p[0], p[2]) |
David Pursehouse | 65b0ba5 | 2018-06-24 16:21:51 +0900 | [diff] [blame] | 541 | except: |
Shawn O. Pearce | f322b9a | 2011-09-19 14:50:58 -0700 | [diff] [blame] | 542 | pass |
Sarah Owens | 1f7627f | 2012-10-31 09:21:55 -0700 | [diff] [blame] | 543 | handlers.append(urllib.request.HTTPBasicAuthHandler(mgr)) |
| 544 | handlers.append(urllib.request.HTTPDigestAuthHandler(mgr)) |
Shawn O. Pearce | f322b9a | 2011-09-19 14:50:58 -0700 | [diff] [blame] | 545 | |
| 546 | if 'http_proxy' in os.environ: |
| 547 | url = os.environ['http_proxy'] |
Sarah Owens | 1f7627f | 2012-10-31 09:21:55 -0700 | [diff] [blame] | 548 | handlers.append(urllib.request.ProxyHandler({'http': url, 'https': url})) |
Shawn O. Pearce | f322b9a | 2011-09-19 14:50:58 -0700 | [diff] [blame] | 549 | if 'REPO_CURL_VERBOSE' in os.environ: |
Sarah Owens | 1f7627f | 2012-10-31 09:21:55 -0700 | [diff] [blame] | 550 | handlers.append(urllib.request.HTTPHandler(debuglevel=1)) |
| 551 | handlers.append(urllib.request.HTTPSHandler(debuglevel=1)) |
| 552 | urllib.request.install_opener(urllib.request.build_opener(*handlers)) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 553 | |
Mark E. Hamilton | 4088eb4 | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 554 | |
Shawn O. Pearce | f322b9a | 2011-09-19 14:50:58 -0700 | [diff] [blame] | 555 | def _Fetch(url, local, src, quiet): |
| 556 | if not quiet: |
Mike Frysinger | c92ce5c | 2019-06-13 01:14:23 -0400 | [diff] [blame] | 557 | print('Get %s' % url, file=sys.stderr) |
Shawn O. Pearce | f322b9a | 2011-09-19 14:50:58 -0700 | [diff] [blame] | 558 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 559 | cmd = [GIT, 'fetch'] |
| 560 | if quiet: |
| 561 | cmd.append('--quiet') |
| 562 | err = subprocess.PIPE |
| 563 | else: |
| 564 | err = None |
Shawn O. Pearce | f322b9a | 2011-09-19 14:50:58 -0700 | [diff] [blame] | 565 | cmd.append(src) |
| 566 | cmd.append('+refs/heads/*:refs/remotes/origin/*') |
Xin Li | 6e53844 | 2018-12-10 11:33:16 -0800 | [diff] [blame] | 567 | cmd.append('+refs/tags/*:refs/tags/*') |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 568 | |
Mark E. Hamilton | 4088eb4 | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 569 | proc = subprocess.Popen(cmd, cwd=local, stderr=err) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 570 | if err: |
| 571 | proc.stderr.read() |
| 572 | proc.stderr.close() |
| 573 | if proc.wait() != 0: |
| 574 | raise CloneFailure() |
| 575 | |
Mark E. Hamilton | 4088eb4 | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 576 | |
Shawn O. Pearce | f322b9a | 2011-09-19 14:50:58 -0700 | [diff] [blame] | 577 | def _DownloadBundle(url, local, quiet): |
| 578 | if not url.endswith('/'): |
| 579 | url += '/' |
| 580 | url += 'clone.bundle' |
| 581 | |
| 582 | proc = subprocess.Popen( |
Mark E. Hamilton | 4088eb4 | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 583 | [GIT, 'config', '--get-regexp', 'url.*.insteadof'], |
| 584 | cwd=local, |
| 585 | stdout=subprocess.PIPE) |
Shawn O. Pearce | f322b9a | 2011-09-19 14:50:58 -0700 | [diff] [blame] | 586 | for line in proc.stdout: |
Mike Frysinger | 9100f7f | 2019-09-11 03:58:36 -0400 | [diff] [blame] | 587 | line = line.decode('utf-8') |
Shawn O. Pearce | f322b9a | 2011-09-19 14:50:58 -0700 | [diff] [blame] | 588 | m = re.compile(r'^url\.(.*)\.insteadof (.*)$').match(line) |
| 589 | if m: |
| 590 | new_url = m.group(1) |
| 591 | old_url = m.group(2) |
| 592 | if url.startswith(old_url): |
| 593 | url = new_url + url[len(old_url):] |
| 594 | break |
| 595 | proc.stdout.close() |
| 596 | proc.wait() |
| 597 | |
| 598 | if not url.startswith('http:') and not url.startswith('https:'): |
| 599 | return False |
| 600 | |
| 601 | dest = open(os.path.join(local, '.git', 'clone.bundle'), 'w+b') |
| 602 | try: |
| 603 | try: |
Sarah Owens | 1f7627f | 2012-10-31 09:21:55 -0700 | [diff] [blame] | 604 | r = urllib.request.urlopen(url) |
| 605 | except urllib.error.HTTPError as e: |
John Törnblom | d3ddcdb | 2015-08-12 20:12:51 +0200 | [diff] [blame] | 606 | if e.code in [401, 403, 404, 501]: |
Shawn O. Pearce | f322b9a | 2011-09-19 14:50:58 -0700 | [diff] [blame] | 607 | return False |
Mike Frysinger | c92ce5c | 2019-06-13 01:14:23 -0400 | [diff] [blame] | 608 | print('fatal: Cannot get %s' % url, file=sys.stderr) |
| 609 | print('fatal: HTTP error %s' % e.code, file=sys.stderr) |
Shawn O. Pearce | f322b9a | 2011-09-19 14:50:58 -0700 | [diff] [blame] | 610 | raise CloneFailure() |
Sarah Owens | 1f7627f | 2012-10-31 09:21:55 -0700 | [diff] [blame] | 611 | except urllib.error.URLError as e: |
Mike Frysinger | c92ce5c | 2019-06-13 01:14:23 -0400 | [diff] [blame] | 612 | print('fatal: Cannot get %s' % url, file=sys.stderr) |
| 613 | print('fatal: error %s' % e.reason, file=sys.stderr) |
Shawn O. Pearce | f322b9a | 2011-09-19 14:50:58 -0700 | [diff] [blame] | 614 | raise CloneFailure() |
| 615 | try: |
| 616 | if not quiet: |
Mike Frysinger | c92ce5c | 2019-06-13 01:14:23 -0400 | [diff] [blame] | 617 | print('Get %s' % url, file=sys.stderr) |
Shawn O. Pearce | f322b9a | 2011-09-19 14:50:58 -0700 | [diff] [blame] | 618 | while True: |
| 619 | buf = r.read(8192) |
Mike Frysinger | 1b9adab | 2019-07-04 17:54:54 -0400 | [diff] [blame] | 620 | if not buf: |
Shawn O. Pearce | f322b9a | 2011-09-19 14:50:58 -0700 | [diff] [blame] | 621 | return True |
| 622 | dest.write(buf) |
| 623 | finally: |
| 624 | r.close() |
| 625 | finally: |
| 626 | dest.close() |
| 627 | |
Mark E. Hamilton | 4088eb4 | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 628 | |
Shawn O. Pearce | f322b9a | 2011-09-19 14:50:58 -0700 | [diff] [blame] | 629 | def _ImportBundle(local): |
| 630 | path = os.path.join(local, '.git', 'clone.bundle') |
| 631 | try: |
| 632 | _Fetch(local, local, path, True) |
| 633 | finally: |
| 634 | os.remove(path) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 635 | |
Mark E. Hamilton | 4088eb4 | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 636 | |
Hu xiuyun | 9711a98 | 2015-12-11 11:16:41 +0800 | [diff] [blame] | 637 | def _Clone(url, local, quiet, clone_bundle): |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 638 | """Clones a git repository to a new subdirectory of repodir |
| 639 | """ |
| 640 | try: |
| 641 | os.mkdir(local) |
Sarah Owens | a5be53f | 2012-09-09 15:37:57 -0700 | [diff] [blame] | 642 | except OSError as e: |
Mike Frysinger | c92ce5c | 2019-06-13 01:14:23 -0400 | [diff] [blame] | 643 | print('fatal: cannot make %s directory: %s' % (local, e.strerror), |
| 644 | file=sys.stderr) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 645 | raise CloneFailure() |
| 646 | |
| 647 | cmd = [GIT, 'init', '--quiet'] |
| 648 | try: |
Mark E. Hamilton | 4088eb4 | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 649 | proc = subprocess.Popen(cmd, cwd=local) |
Sarah Owens | a5be53f | 2012-09-09 15:37:57 -0700 | [diff] [blame] | 650 | except OSError as e: |
Mike Frysinger | c92ce5c | 2019-06-13 01:14:23 -0400 | [diff] [blame] | 651 | print(file=sys.stderr) |
| 652 | print("fatal: '%s' is not available" % GIT, file=sys.stderr) |
| 653 | print('fatal: %s' % e, file=sys.stderr) |
| 654 | print(file=sys.stderr) |
| 655 | print('Please make sure %s is installed and in your path.' % GIT, |
| 656 | file=sys.stderr) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 657 | raise CloneFailure() |
| 658 | if proc.wait() != 0: |
Mike Frysinger | c92ce5c | 2019-06-13 01:14:23 -0400 | [diff] [blame] | 659 | print('fatal: could not create %s' % local, file=sys.stderr) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 660 | raise CloneFailure() |
| 661 | |
Shawn O. Pearce | f322b9a | 2011-09-19 14:50:58 -0700 | [diff] [blame] | 662 | _InitHttp() |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 663 | _SetConfig(local, 'remote.origin.url', url) |
Mark E. Hamilton | 4088eb4 | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 664 | _SetConfig(local, |
| 665 | 'remote.origin.fetch', |
| 666 | '+refs/heads/*:refs/remotes/origin/*') |
Hu xiuyun | 9711a98 | 2015-12-11 11:16:41 +0800 | [diff] [blame] | 667 | if clone_bundle and _DownloadBundle(url, local, quiet): |
Shawn O. Pearce | f322b9a | 2011-09-19 14:50:58 -0700 | [diff] [blame] | 668 | _ImportBundle(local) |
Dan Willemsen | fee390e | 2015-09-02 12:36:30 -0700 | [diff] [blame] | 669 | _Fetch(url, local, 'origin', quiet) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 670 | |
| 671 | |
| 672 | def _Verify(cwd, branch, quiet): |
| 673 | """Verify the branch has been signed by a tag. |
| 674 | """ |
| 675 | cmd = [GIT, 'describe', 'origin/%s' % branch] |
| 676 | proc = subprocess.Popen(cmd, |
| 677 | stdout=subprocess.PIPE, |
| 678 | stderr=subprocess.PIPE, |
Mark E. Hamilton | 4088eb4 | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 679 | cwd=cwd) |
Mike Frysinger | 9100f7f | 2019-09-11 03:58:36 -0400 | [diff] [blame] | 680 | cur = proc.stdout.read().strip().decode('utf-8') |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 681 | proc.stdout.close() |
| 682 | |
| 683 | proc.stderr.read() |
| 684 | proc.stderr.close() |
| 685 | |
| 686 | if proc.wait() != 0 or not cur: |
Mike Frysinger | c92ce5c | 2019-06-13 01:14:23 -0400 | [diff] [blame] | 687 | print(file=sys.stderr) |
| 688 | print("fatal: branch '%s' has not been signed" % branch, file=sys.stderr) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 689 | raise CloneFailure() |
| 690 | |
| 691 | m = re.compile(r'^(.*)-[0-9]{1,}-g[0-9a-f]{1,}$').match(cur) |
| 692 | if m: |
| 693 | cur = m.group(1) |
| 694 | if not quiet: |
Mike Frysinger | c92ce5c | 2019-06-13 01:14:23 -0400 | [diff] [blame] | 695 | print(file=sys.stderr) |
| 696 | print("info: Ignoring branch '%s'; using tagged release '%s'" |
| 697 | % (branch, cur), file=sys.stderr) |
| 698 | print(file=sys.stderr) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 699 | |
Shawn O. Pearce | f18cb76 | 2010-12-07 11:41:05 -0800 | [diff] [blame] | 700 | env = os.environ.copy() |
Dāvis Mosāns | 631d0ec | 2016-07-16 21:11:11 +0300 | [diff] [blame] | 701 | try: |
| 702 | env['GNUPGHOME'] = gpg_dir |
| 703 | except UnicodeEncodeError: |
| 704 | env['GNUPGHOME'] = gpg_dir.encode() |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 705 | |
| 706 | cmd = [GIT, 'tag', '-v', cur] |
| 707 | proc = subprocess.Popen(cmd, |
Mark E. Hamilton | 4088eb4 | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 708 | stdout=subprocess.PIPE, |
| 709 | stderr=subprocess.PIPE, |
| 710 | cwd=cwd, |
| 711 | env=env) |
Mike Frysinger | 9100f7f | 2019-09-11 03:58:36 -0400 | [diff] [blame] | 712 | out = proc.stdout.read().decode('utf-8') |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 713 | proc.stdout.close() |
| 714 | |
Mike Frysinger | 9100f7f | 2019-09-11 03:58:36 -0400 | [diff] [blame] | 715 | err = proc.stderr.read().decode('utf-8') |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 716 | proc.stderr.close() |
| 717 | |
| 718 | if proc.wait() != 0: |
Mike Frysinger | c92ce5c | 2019-06-13 01:14:23 -0400 | [diff] [blame] | 719 | print(file=sys.stderr) |
| 720 | print(out, file=sys.stderr) |
| 721 | print(err, file=sys.stderr) |
| 722 | print(file=sys.stderr) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 723 | raise CloneFailure() |
| 724 | return '%s^0' % cur |
| 725 | |
| 726 | |
| 727 | def _Checkout(cwd, branch, rev, quiet): |
| 728 | """Checkout an upstream branch into the repository and track it. |
| 729 | """ |
| 730 | cmd = [GIT, 'update-ref', 'refs/heads/default', rev] |
Mark E. Hamilton | 4088eb4 | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 731 | if subprocess.Popen(cmd, cwd=cwd).wait() != 0: |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 732 | raise CloneFailure() |
| 733 | |
| 734 | _SetConfig(cwd, 'branch.default.remote', 'origin') |
| 735 | _SetConfig(cwd, 'branch.default.merge', 'refs/heads/%s' % branch) |
| 736 | |
| 737 | cmd = [GIT, 'symbolic-ref', 'HEAD', 'refs/heads/default'] |
Mark E. Hamilton | 4088eb4 | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 738 | if subprocess.Popen(cmd, cwd=cwd).wait() != 0: |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 739 | raise CloneFailure() |
| 740 | |
| 741 | cmd = [GIT, 'read-tree', '--reset', '-u'] |
| 742 | if not quiet: |
| 743 | cmd.append('-v') |
| 744 | cmd.append('HEAD') |
Mark E. Hamilton | 4088eb4 | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 745 | if subprocess.Popen(cmd, cwd=cwd).wait() != 0: |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 746 | raise CloneFailure() |
| 747 | |
| 748 | |
| 749 | def _FindRepo(): |
| 750 | """Look for a repo installation, starting at the current directory. |
| 751 | """ |
Mickaël Salaün | 2f6ab7f | 2012-09-30 00:37:55 +0200 | [diff] [blame] | 752 | curdir = os.getcwd() |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 753 | repo = None |
| 754 | |
Anthony Newnam | df14a70 | 2011-01-09 17:31:57 -0800 | [diff] [blame] | 755 | olddir = None |
Mickaël Salaün | 2f6ab7f | 2012-09-30 00:37:55 +0200 | [diff] [blame] | 756 | while curdir != '/' \ |
Mark E. Hamilton | 4088eb4 | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 757 | and curdir != olddir \ |
| 758 | and not repo: |
Mickaël Salaün | 2f6ab7f | 2012-09-30 00:37:55 +0200 | [diff] [blame] | 759 | repo = os.path.join(curdir, repodir, REPO_MAIN) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 760 | if not os.path.isfile(repo): |
| 761 | repo = None |
Mickaël Salaün | 2f6ab7f | 2012-09-30 00:37:55 +0200 | [diff] [blame] | 762 | olddir = curdir |
| 763 | curdir = os.path.dirname(curdir) |
| 764 | return (repo, os.path.join(curdir, repodir)) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 765 | |
| 766 | |
Mark E. Hamilton | 4088eb4 | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 767 | class _Options(object): |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 768 | help = False |
| 769 | |
| 770 | |
| 771 | def _ParseArguments(args): |
| 772 | cmd = None |
| 773 | opt = _Options() |
| 774 | arg = [] |
| 775 | |
Sarah Owens | a6053d5 | 2012-11-01 13:36:50 -0700 | [diff] [blame] | 776 | for i in range(len(args)): |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 777 | a = args[i] |
| 778 | if a == '-h' or a == '--help': |
| 779 | opt.help = True |
| 780 | |
| 781 | elif not a.startswith('-'): |
| 782 | cmd = a |
| 783 | arg = args[i + 1:] |
| 784 | break |
| 785 | return cmd, opt, arg |
| 786 | |
| 787 | |
| 788 | def _Usage(): |
Dan Willemsen | 9ff2ece | 2015-08-31 15:45:06 -0700 | [diff] [blame] | 789 | gitc_usage = "" |
| 790 | if get_gitc_manifest_dir(): |
| 791 | gitc_usage = " gitc-init Initialize a GITC Client.\n" |
| 792 | |
Mike Frysinger | c92ce5c | 2019-06-13 01:14:23 -0400 | [diff] [blame] | 793 | print( |
Mark E. Hamilton | 4088eb4 | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 794 | """usage: repo COMMAND [ARGS] |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 795 | |
| 796 | repo is not yet installed. Use "repo init" to install it here. |
| 797 | |
| 798 | The most commonly used repo commands are: |
| 799 | |
| 800 | init Install repo in the current working directory |
Dan Willemsen | 9ff2ece | 2015-08-31 15:45:06 -0700 | [diff] [blame] | 801 | """ + gitc_usage + |
Mark E. Hamilton | 4088eb4 | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 802 | """ help Display detailed help on a command |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 803 | |
| 804 | For access to the full online help, install repo ("repo init"). |
Mike Frysinger | 35159ab | 2019-06-13 00:07:13 -0400 | [diff] [blame] | 805 | """) |
| 806 | sys.exit(0) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 807 | |
| 808 | |
| 809 | def _Help(args): |
| 810 | if args: |
| 811 | if args[0] == 'init': |
| 812 | init_optparse.print_help() |
Trond Norbye | d3fd537 | 2011-01-03 11:35:15 +0100 | [diff] [blame] | 813 | sys.exit(0) |
Dan Willemsen | 9ff2ece | 2015-08-31 15:45:06 -0700 | [diff] [blame] | 814 | elif args[0] == 'gitc-init': |
| 815 | _GitcInitOptions(init_optparse) |
| 816 | init_optparse.print_help() |
| 817 | sys.exit(0) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 818 | else: |
Mike Frysinger | c92ce5c | 2019-06-13 01:14:23 -0400 | [diff] [blame] | 819 | print("error: '%s' is not a bootstrap command.\n" |
| 820 | ' For access to online help, install repo ("repo init").' |
| 821 | % args[0], file=sys.stderr) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 822 | else: |
| 823 | _Usage() |
| 824 | sys.exit(1) |
| 825 | |
| 826 | |
| 827 | def _NotInstalled(): |
Mike Frysinger | c92ce5c | 2019-06-13 01:14:23 -0400 | [diff] [blame] | 828 | print('error: repo is not installed. Use "repo init" to install it here.', |
| 829 | file=sys.stderr) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 830 | sys.exit(1) |
| 831 | |
| 832 | |
| 833 | def _NoCommands(cmd): |
Mike Frysinger | c92ce5c | 2019-06-13 01:14:23 -0400 | [diff] [blame] | 834 | print("""error: command '%s' requires repo to be installed first. |
| 835 | Use "repo init" to install it here.""" % cmd, file=sys.stderr) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 836 | sys.exit(1) |
| 837 | |
| 838 | |
| 839 | def _RunSelf(wrapper_path): |
| 840 | my_dir = os.path.dirname(wrapper_path) |
| 841 | my_main = os.path.join(my_dir, 'main.py') |
| 842 | my_git = os.path.join(my_dir, '.git') |
| 843 | |
| 844 | if os.path.isfile(my_main) and os.path.isdir(my_git): |
Shawn O. Pearce | c8a300f | 2009-05-18 13:19:57 -0700 | [diff] [blame] | 845 | for name in ['git_config.py', |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 846 | 'project.py', |
| 847 | 'subcmds']: |
| 848 | if not os.path.exists(os.path.join(my_dir, name)): |
| 849 | return None, None |
| 850 | return my_main, my_git |
| 851 | return None, None |
| 852 | |
| 853 | |
| 854 | def _SetDefaultsTo(gitdir): |
| 855 | global REPO_URL |
| 856 | global REPO_REV |
| 857 | |
| 858 | REPO_URL = gitdir |
| 859 | proc = subprocess.Popen([GIT, |
| 860 | '--git-dir=%s' % gitdir, |
| 861 | 'symbolic-ref', |
| 862 | 'HEAD'], |
Mark E. Hamilton | 4088eb4 | 2016-02-10 10:44:30 -0700 | [diff] [blame] | 863 | stdout=subprocess.PIPE, |
| 864 | stderr=subprocess.PIPE) |
Mike Frysinger | 9100f7f | 2019-09-11 03:58:36 -0400 | [diff] [blame] | 865 | REPO_REV = proc.stdout.read().strip().decode('utf-8') |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 866 | proc.stdout.close() |
| 867 | |
| 868 | proc.stderr.read() |
| 869 | proc.stderr.close() |
| 870 | |
| 871 | if proc.wait() != 0: |
Mike Frysinger | c92ce5c | 2019-06-13 01:14:23 -0400 | [diff] [blame] | 872 | print('fatal: %s has no current branch' % gitdir, file=sys.stderr) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 873 | sys.exit(1) |
| 874 | |
| 875 | |
| 876 | def main(orig_args): |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 877 | cmd, opt, args = _ParseArguments(orig_args) |
| 878 | |
Dan Willemsen | 745b4ad | 2015-10-06 15:23:19 -0700 | [diff] [blame] | 879 | repo_main, rel_repo_dir = None, None |
| 880 | # Don't use the local repo copy, make sure to switch to the gitc client first. |
| 881 | if cmd != 'gitc-init': |
| 882 | repo_main, rel_repo_dir = _FindRepo() |
| 883 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 884 | wrapper_path = os.path.abspath(__file__) |
| 885 | my_main, my_git = _RunSelf(wrapper_path) |
| 886 | |
Simran Basi | 8ce5041 | 2015-08-28 14:25:44 -0700 | [diff] [blame] | 887 | cwd = os.getcwd() |
Dan Willemsen | 2487cb7 | 2015-08-31 15:45:06 -0700 | [diff] [blame] | 888 | if get_gitc_manifest_dir() and cwd.startswith(get_gitc_manifest_dir()): |
Mike Frysinger | c92ce5c | 2019-06-13 01:14:23 -0400 | [diff] [blame] | 889 | print('error: repo cannot be used in the GITC local manifest directory.' |
| 890 | '\nIf you want to work on this GITC client please rerun this ' |
| 891 | 'command from the corresponding client under /gitc/', |
| 892 | file=sys.stderr) |
Simran Basi | 8ce5041 | 2015-08-28 14:25:44 -0700 | [diff] [blame] | 893 | sys.exit(1) |
Mickaël Salaün | 2f6ab7f | 2012-09-30 00:37:55 +0200 | [diff] [blame] | 894 | if not repo_main: |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 895 | if opt.help: |
| 896 | _Usage() |
| 897 | if cmd == 'help': |
| 898 | _Help(args) |
| 899 | if not cmd: |
| 900 | _NotInstalled() |
Simran Basi | 1efc2b4 | 2015-08-05 15:04:22 -0700 | [diff] [blame] | 901 | if cmd == 'init' or cmd == 'gitc-init': |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 902 | if my_git: |
| 903 | _SetDefaultsTo(my_git) |
| 904 | try: |
Simran Basi | 1efc2b4 | 2015-08-05 15:04:22 -0700 | [diff] [blame] | 905 | _Init(args, gitc_init=(cmd == 'gitc-init')) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 906 | except CloneFailure: |
Sebastian Schuberth | 27226e7 | 2016-10-28 14:27:43 +0200 | [diff] [blame] | 907 | path = os.path.join(repodir, S_repo) |
Mike Frysinger | c92ce5c | 2019-06-13 01:14:23 -0400 | [diff] [blame] | 908 | print("fatal: cloning the git-repo repository failed, will remove " |
| 909 | "'%s' " % path, file=sys.stderr) |
Sebastian Schuberth | 27226e7 | 2016-10-28 14:27:43 +0200 | [diff] [blame] | 910 | shutil.rmtree(path, ignore_errors=True) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 911 | sys.exit(1) |
Mickaël Salaün | 2f6ab7f | 2012-09-30 00:37:55 +0200 | [diff] [blame] | 912 | repo_main, rel_repo_dir = _FindRepo() |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 913 | else: |
| 914 | _NoCommands(cmd) |
| 915 | |
| 916 | if my_main: |
Mickaël Salaün | 2f6ab7f | 2012-09-30 00:37:55 +0200 | [diff] [blame] | 917 | repo_main = my_main |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 918 | |
David Pursehouse | 685f080 | 2012-11-14 08:34:39 +0900 | [diff] [blame] | 919 | ver_str = '.'.join(map(str, VERSION)) |
anatoly techtonik | 3a2a59e | 2013-09-21 19:29:10 +0300 | [diff] [blame] | 920 | me = [sys.executable, repo_main, |
Mickaël Salaün | 2f6ab7f | 2012-09-30 00:37:55 +0200 | [diff] [blame] | 921 | '--repo-dir=%s' % rel_repo_dir, |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 922 | '--wrapper-version=%s' % ver_str, |
| 923 | '--wrapper-path=%s' % wrapper_path, |
| 924 | '--'] |
| 925 | me.extend(orig_args) |
| 926 | me.extend(extra_args) |
| 927 | try: |
Renaud Paquay | 35d2221 | 2016-11-01 11:24:52 -0700 | [diff] [blame] | 928 | if platform.system() == "Windows": |
| 929 | sys.exit(subprocess.call(me)) |
| 930 | else: |
| 931 | os.execv(sys.executable, me) |
Sarah Owens | a5be53f | 2012-09-09 15:37:57 -0700 | [diff] [blame] | 932 | except OSError as e: |
Mike Frysinger | c92ce5c | 2019-06-13 01:14:23 -0400 | [diff] [blame] | 933 | print("fatal: unable to start %s" % repo_main, file=sys.stderr) |
| 934 | print("fatal: %s" % e, file=sys.stderr) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 935 | sys.exit(148) |
| 936 | |
| 937 | |
| 938 | if __name__ == '__main__': |
| 939 | main(sys.argv[1:]) |