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