Mike Frysinger | f601376 | 2019-06-13 02:30:51 -0400 | [diff] [blame] | 1 | # -*- coding:utf-8 -*- |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 2 | # |
| 3 | # Copyright (C) 2008 The Android Open Source Project |
| 4 | # |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | # you may not use this file except in compliance with the License. |
| 7 | # You may obtain a copy of the License at |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | # See the License for the specific language governing permissions and |
| 15 | # limitations under the License. |
| 16 | |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 17 | from __future__ import print_function |
Mike Frysinger | 979d5bd | 2020-02-09 02:28:34 -0500 | [diff] [blame] | 18 | |
| 19 | import optparse |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 20 | import os |
Conley Owens | d21720d | 2012-04-16 11:02:21 -0700 | [diff] [blame] | 21 | import platform |
Conley Owens | 971de8e | 2012-04-16 10:36:08 -0700 | [diff] [blame] | 22 | import re |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 23 | import sys |
David Pursehouse | 59bbb58 | 2013-05-17 10:49:33 +0900 | [diff] [blame] | 24 | |
| 25 | from pyversion import is_python3 |
| 26 | if is_python3(): |
Victor Boivie | 2b30e3a | 2012-10-05 12:37:58 +0200 | [diff] [blame] | 27 | import urllib.parse |
David Pursehouse | 59bbb58 | 2013-05-17 10:49:33 +0900 | [diff] [blame] | 28 | else: |
Victor Boivie | 2b30e3a | 2012-10-05 12:37:58 +0200 | [diff] [blame] | 29 | import imp |
| 30 | import urlparse |
| 31 | urllib = imp.new_module('urllib') |
Anthony King | 7993f3c | 2015-06-03 17:21:56 +0100 | [diff] [blame] | 32 | urllib.parse = urlparse |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 33 | |
| 34 | from color import Coloring |
Shawn O. Pearce | c95583b | 2009-03-03 17:47:06 -0800 | [diff] [blame] | 35 | from command import InteractiveCommand, MirrorSafeCommand |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 36 | from error import ManifestParseError |
Jonathan Nieder | 9371979 | 2015-03-17 11:29:58 -0700 | [diff] [blame] | 37 | from project import SyncBuffer |
Shawn O. Pearce | f322b9a | 2011-09-19 14:50:58 -0700 | [diff] [blame] | 38 | from git_config import GitConfig |
Mike Frysinger | 82caef6 | 2020-02-11 18:51:08 -0500 | [diff] [blame] | 39 | from git_command import git_require, MIN_GIT_VERSION_SOFT, MIN_GIT_VERSION_HARD |
Renaud Paquay | a65adf7 | 2016-11-03 10:37:53 -0700 | [diff] [blame] | 40 | import platform_utils |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 41 | |
David Pursehouse | 819827a | 2020-02-12 15:20:19 +0900 | [diff] [blame] | 42 | |
Shawn O. Pearce | c95583b | 2009-03-03 17:47:06 -0800 | [diff] [blame] | 43 | class Init(InteractiveCommand, MirrorSafeCommand): |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 44 | common = True |
| 45 | helpSummary = "Initialize repo in the current directory" |
| 46 | helpUsage = """ |
| 47 | %prog [options] |
| 48 | """ |
| 49 | helpDescription = """ |
| 50 | The '%prog' command is run once to install and initialize repo. |
| 51 | The latest repo source code and manifest collection is downloaded |
| 52 | from the server and is installed in the .repo/ directory in the |
| 53 | current working directory. |
| 54 | |
Shawn O. Pearce | 77bb4af | 2009-04-18 11:33:32 -0700 | [diff] [blame] | 55 | The optional -b argument can be used to select the manifest branch |
| 56 | to checkout and use. If no branch is specified, master is assumed. |
| 57 | |
| 58 | The optional -m argument can be used to specify an alternate manifest |
| 59 | to be used. If no manifest is specified, the manifest default.xml |
| 60 | will be used. |
| 61 | |
Shawn O. Pearce | 8844338 | 2010-10-08 10:02:09 +0200 | [diff] [blame] | 62 | The --reference option can be used to point to a directory that |
| 63 | has the content of a --mirror sync. This will make the working |
| 64 | directory use as much data as possible from the local reference |
| 65 | directory when fetching from the server. This will make the sync |
| 66 | go a lot faster by reducing data traffic on the network. |
| 67 | |
Nikolai Merinov | 09f0abb | 2018-10-19 15:07:05 +0500 | [diff] [blame] | 68 | The --dissociate option can be used to borrow the objects from |
| 69 | the directory specified with the --reference option only to reduce |
| 70 | network transfer, and stop borrowing from them after a first clone |
| 71 | is made by making necessary local copies of borrowed objects. |
| 72 | |
Hu xiuyun | 9711a98 | 2015-12-11 11:16:41 +0800 | [diff] [blame] | 73 | The --no-clone-bundle option disables any attempt to use |
| 74 | $URL/clone.bundle to bootstrap a new Git repository from a |
| 75 | resumeable bundle file on a content delivery network. This |
| 76 | may be necessary if there are problems with the local Python |
| 77 | HTTP client or proxy configuration, but the Git binary works. |
Shawn O. Pearce | 8844338 | 2010-10-08 10:02:09 +0200 | [diff] [blame] | 78 | |
Mike Frysinger | b8f7bb0 | 2018-10-10 01:05:11 -0400 | [diff] [blame] | 79 | # Switching Manifest Branches |
Shawn O. Pearce | 77bb4af | 2009-04-18 11:33:32 -0700 | [diff] [blame] | 80 | |
| 81 | To switch to another manifest branch, `repo init -b otherbranch` |
| 82 | may be used in an existing client. However, as this only updates the |
| 83 | manifest, a subsequent `repo sync` (or `repo sync -d`) is necessary |
| 84 | to update the working directory files. |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 85 | """ |
| 86 | |
Mike Frysinger | 66098f7 | 2020-02-05 00:01:59 -0500 | [diff] [blame] | 87 | def _Options(self, p, gitc_init=False): |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 88 | # Logging |
| 89 | g = p.add_option_group('Logging options') |
Mike Frysinger | edd3d45 | 2020-02-21 23:55:07 -0500 | [diff] [blame] | 90 | g.add_option('-v', '--verbose', |
| 91 | dest='output_mode', action='store_true', |
| 92 | help='show all output') |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 93 | g.add_option('-q', '--quiet', |
Mike Frysinger | edd3d45 | 2020-02-21 23:55:07 -0500 | [diff] [blame] | 94 | dest='output_mode', action='store_false', |
| 95 | help='only show errors') |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 96 | |
| 97 | # Manifest |
| 98 | g = p.add_option_group('Manifest options') |
| 99 | g.add_option('-u', '--manifest-url', |
Shawn O. Pearce | 34fb20f | 2011-11-30 13:41:02 -0800 | [diff] [blame] | 100 | dest='manifest_url', |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 101 | help='manifest repository location', metavar='URL') |
| 102 | g.add_option('-b', '--manifest-branch', |
| 103 | dest='manifest_branch', |
| 104 | help='manifest branch or revision', metavar='REVISION') |
Mike Frysinger | 66098f7 | 2020-02-05 00:01:59 -0500 | [diff] [blame] | 105 | cbr_opts = ['--current-branch'] |
| 106 | # The gitc-init subcommand allocates -c itself, but a lot of init users |
| 107 | # want -c, so try to satisfy both as best we can. |
Dan Willemsen | 93293ca | 2020-02-06 17:00:00 -0800 | [diff] [blame] | 108 | if not gitc_init: |
Mike Frysinger | 66098f7 | 2020-02-05 00:01:59 -0500 | [diff] [blame] | 109 | cbr_opts += ['-c'] |
| 110 | g.add_option(*cbr_opts, |
Naseer Ahmed | f4dda9a | 2016-12-01 18:49:54 -0500 | [diff] [blame] | 111 | dest='current_branch_only', action='store_true', |
| 112 | help='fetch only current manifest branch from server') |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 113 | g.add_option('-m', '--manifest-name', |
| 114 | dest='manifest_name', default='default.xml', |
| 115 | help='initial manifest file', metavar='NAME.xml') |
Shawn O. Pearce | e284ad1 | 2008-11-04 07:37:10 -0800 | [diff] [blame] | 116 | g.add_option('--mirror', |
| 117 | dest='mirror', action='store_true', |
David Pursehouse | 3d07da8 | 2012-08-15 14:22:08 +0900 | [diff] [blame] | 118 | help='create a replica of the remote repositories ' |
| 119 | 'rather than a client working directory') |
Shawn O. Pearce | 8844338 | 2010-10-08 10:02:09 +0200 | [diff] [blame] | 120 | g.add_option('--reference', |
| 121 | dest='reference', |
| 122 | help='location of mirror directory', metavar='DIR') |
Nikolai Merinov | 09f0abb | 2018-10-19 15:07:05 +0500 | [diff] [blame] | 123 | g.add_option('--dissociate', |
| 124 | dest='dissociate', action='store_true', |
| 125 | help='dissociate from reference mirrors after clone') |
Doug Anderson | 30d4529 | 2011-05-04 15:01:04 -0700 | [diff] [blame] | 126 | g.add_option('--depth', type='int', default=None, |
| 127 | dest='depth', |
| 128 | help='create a shallow clone with given depth; see git clone') |
Xin Li | 745be2e | 2019-06-03 11:24:30 -0700 | [diff] [blame] | 129 | g.add_option('--partial-clone', action='store_true', |
| 130 | dest='partial_clone', |
| 131 | help='perform partial clone (https://git-scm.com/' |
| 132 | 'docs/gitrepository-layout#_code_partialclone_code)') |
| 133 | g.add_option('--clone-filter', action='store', default='blob:none', |
| 134 | dest='clone_filter', |
| 135 | help='filter for use with --partial-clone [default: %default]') |
Mike Frysinger | 979d5bd | 2020-02-09 02:28:34 -0500 | [diff] [blame] | 136 | # TODO(vapier): Expose option with real help text once this has been in the |
| 137 | # wild for a while w/out significant bug reports. Goal is by ~Sep 2020. |
| 138 | g.add_option('--worktree', action='store_true', |
| 139 | help=optparse.SUPPRESS_HELP) |
Julien Campergue | 335f5ef | 2013-10-16 11:02:35 +0200 | [diff] [blame] | 140 | g.add_option('--archive', |
| 141 | dest='archive', action='store_true', |
| 142 | help='checkout an archive instead of a git repository for ' |
| 143 | 'each project. See git archive.') |
Martin Kelly | e4e94d2 | 2017-03-21 16:05:12 -0700 | [diff] [blame] | 144 | g.add_option('--submodules', |
| 145 | dest='submodules', action='store_true', |
| 146 | help='sync any submodules associated with the manifest repo') |
Colin Cross | 5acde75 | 2012-03-28 20:15:45 -0700 | [diff] [blame] | 147 | g.add_option('-g', '--groups', |
David Holmer | 0a1c6a1 | 2012-11-14 19:19:00 -0500 | [diff] [blame] | 148 | dest='groups', default='default', |
| 149 | help='restrict manifest projects to ones with specified ' |
| 150 | 'group(s) [default|all|G1,G2,G3|G4,-G5,-G6]', |
Colin Cross | 5acde75 | 2012-03-28 20:15:45 -0700 | [diff] [blame] | 151 | metavar='GROUP') |
Conley Owens | d21720d | 2012-04-16 11:02:21 -0700 | [diff] [blame] | 152 | g.add_option('-p', '--platform', |
| 153 | dest='platform', default='auto', |
Conley Owens | bb1b5f5 | 2012-08-13 13:11:18 -0700 | [diff] [blame] | 154 | help='restrict manifest projects to ones with a specified ' |
Conley Owens | d21720d | 2012-04-16 11:02:21 -0700 | [diff] [blame] | 155 | 'platform group [auto|all|none|linux|darwin|...]', |
| 156 | metavar='PLATFORM') |
Hu xiuyun | 9711a98 | 2015-12-11 11:16:41 +0800 | [diff] [blame] | 157 | g.add_option('--no-clone-bundle', |
Mike Frysinger | c58ec4d | 2020-02-17 14:36:08 -0500 | [diff] [blame] | 158 | dest='clone_bundle', default=True, action='store_false', |
Hu xiuyun | 9711a98 | 2015-12-11 11:16:41 +0800 | [diff] [blame] | 159 | help='disable use of /clone.bundle on HTTP/HTTPS') |
Naseer Ahmed | f4dda9a | 2016-12-01 18:49:54 -0500 | [diff] [blame] | 160 | g.add_option('--no-tags', |
Mike Frysinger | c58ec4d | 2020-02-17 14:36:08 -0500 | [diff] [blame] | 161 | dest='tags', default=True, action='store_false', |
Naseer Ahmed | f4dda9a | 2016-12-01 18:49:54 -0500 | [diff] [blame] | 162 | help="don't fetch tags in the manifest") |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 163 | |
| 164 | # Tool |
Shawn O. Pearce | fd89b67 | 2009-04-18 11:28:57 -0700 | [diff] [blame] | 165 | g = p.add_option_group('repo Version options') |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 166 | g.add_option('--repo-url', |
| 167 | dest='repo_url', |
| 168 | help='repo repository location', metavar='URL') |
| 169 | g.add_option('--repo-branch', |
| 170 | dest='repo_branch', |
| 171 | help='repo branch or revision', metavar='REVISION') |
| 172 | g.add_option('--no-repo-verify', |
Mike Frysinger | c58ec4d | 2020-02-17 14:36:08 -0500 | [diff] [blame] | 173 | dest='repo_verify', default=True, action='store_false', |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 174 | help='do not verify repo source code') |
| 175 | |
Victor Boivie | 841be34 | 2011-04-05 11:31:10 +0200 | [diff] [blame] | 176 | # Other |
| 177 | g = p.add_option_group('Other options') |
| 178 | g.add_option('--config-name', |
| 179 | dest='config_name', action="store_true", default=False, |
| 180 | help='Always prompt for name/e-mail') |
| 181 | |
David Pursehouse | 3f5ea0b | 2012-11-17 03:13:09 +0900 | [diff] [blame] | 182 | def _RegisteredEnvironmentOptions(self): |
| 183 | return {'REPO_MANIFEST_URL': 'manifest_url', |
| 184 | 'REPO_MIRROR_LOCATION': 'reference'} |
| 185 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 186 | def _SyncManifest(self, opt): |
| 187 | m = self.manifest.manifestProject |
Shawn O. Pearce | 5470df6 | 2009-03-09 18:51:58 -0700 | [diff] [blame] | 188 | is_new = not m.Exists |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 189 | |
Shawn O. Pearce | 5470df6 | 2009-03-09 18:51:58 -0700 | [diff] [blame] | 190 | if is_new: |
Shawn O. Pearce | 34fb20f | 2011-11-30 13:41:02 -0800 | [diff] [blame] | 191 | if not opt.manifest_url: |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 192 | print('fatal: manifest url (-u) is required.', file=sys.stderr) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 193 | sys.exit(1) |
| 194 | |
| 195 | if not opt.quiet: |
Mike Frysinger | dcbfadf | 2020-02-22 00:04:39 -0500 | [diff] [blame^] | 196 | print('Downloading manifest from %s' % |
| 197 | (GitConfig.ForUser().UrlInsteadOf(opt.manifest_url),), |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 198 | file=sys.stderr) |
Victor Boivie | 2b30e3a | 2012-10-05 12:37:58 +0200 | [diff] [blame] | 199 | |
| 200 | # The manifest project object doesn't keep track of the path on the |
| 201 | # server where this git is located, so let's save that here. |
| 202 | mirrored_manifest_git = None |
| 203 | if opt.reference: |
Anthony King | 7993f3c | 2015-06-03 17:21:56 +0100 | [diff] [blame] | 204 | manifest_git_path = urllib.parse.urlparse(opt.manifest_url).path[1:] |
Victor Boivie | 2b30e3a | 2012-10-05 12:37:58 +0200 | [diff] [blame] | 205 | mirrored_manifest_git = os.path.join(opt.reference, manifest_git_path) |
| 206 | if not mirrored_manifest_git.endswith(".git"): |
| 207 | mirrored_manifest_git += ".git" |
| 208 | if not os.path.exists(mirrored_manifest_git): |
Samuel Holland | 5f0e57d | 2018-01-22 11:00:24 -0600 | [diff] [blame] | 209 | mirrored_manifest_git = os.path.join(opt.reference, |
| 210 | '.repo/manifests.git') |
Victor Boivie | 2b30e3a | 2012-10-05 12:37:58 +0200 | [diff] [blame] | 211 | |
| 212 | m._InitGitDir(mirror_git=mirrored_manifest_git) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 213 | |
| 214 | if opt.manifest_branch: |
Shawn O. Pearce | 3c8dea1 | 2009-05-29 18:38:17 -0700 | [diff] [blame] | 215 | m.revisionExpr = opt.manifest_branch |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 216 | else: |
Shawn O. Pearce | 3c8dea1 | 2009-05-29 18:38:17 -0700 | [diff] [blame] | 217 | m.revisionExpr = 'refs/heads/master' |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 218 | else: |
| 219 | if opt.manifest_branch: |
Shawn O. Pearce | 3c8dea1 | 2009-05-29 18:38:17 -0700 | [diff] [blame] | 220 | m.revisionExpr = opt.manifest_branch |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 221 | else: |
| 222 | m.PreSync() |
| 223 | |
Nasser Grainawi | d92464e | 2019-05-21 10:41:35 -0600 | [diff] [blame] | 224 | self._ConfigureDepth(opt) |
| 225 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 226 | if opt.manifest_url: |
| 227 | r = m.GetRemote(m.remote.name) |
| 228 | r.url = opt.manifest_url |
| 229 | r.ResetFetch() |
| 230 | r.Save() |
| 231 | |
David Pursehouse | 1d947b3 | 2012-10-25 12:23:11 +0900 | [diff] [blame] | 232 | groups = re.split(r'[,\s]+', opt.groups) |
Pascal Muetschard | c2a64dd | 2015-10-22 13:26:36 -0700 | [diff] [blame] | 233 | all_platforms = ['linux', 'darwin', 'windows'] |
Conley Owens | d21720d | 2012-04-16 11:02:21 -0700 | [diff] [blame] | 234 | platformize = lambda x: 'platform-' + x |
| 235 | if opt.platform == 'auto': |
| 236 | if (not opt.mirror and |
David Pursehouse | abdf750 | 2020-02-12 14:58:39 +0900 | [diff] [blame] | 237 | not m.config.GetString('repo.mirror') == 'true'): |
Conley Owens | d21720d | 2012-04-16 11:02:21 -0700 | [diff] [blame] | 238 | groups.append(platformize(platform.system().lower())) |
| 239 | elif opt.platform == 'all': |
Colin Cross | 5465727 | 2012-04-23 13:39:48 -0700 | [diff] [blame] | 240 | groups.extend(map(platformize, all_platforms)) |
Conley Owens | d21720d | 2012-04-16 11:02:21 -0700 | [diff] [blame] | 241 | elif opt.platform in all_platforms: |
Pascal Muetschard | c2a64dd | 2015-10-22 13:26:36 -0700 | [diff] [blame] | 242 | groups.append(platformize(opt.platform)) |
Conley Owens | d21720d | 2012-04-16 11:02:21 -0700 | [diff] [blame] | 243 | elif opt.platform != 'none': |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 244 | print('fatal: invalid platform flag', file=sys.stderr) |
Conley Owens | d21720d | 2012-04-16 11:02:21 -0700 | [diff] [blame] | 245 | sys.exit(1) |
| 246 | |
Conley Owens | 971de8e | 2012-04-16 10:36:08 -0700 | [diff] [blame] | 247 | groups = [x for x in groups if x] |
| 248 | groupstr = ','.join(groups) |
David Holmer | 0a1c6a1 | 2012-11-14 19:19:00 -0500 | [diff] [blame] | 249 | if opt.platform == 'auto' and groupstr == 'default,platform-' + platform.system().lower(): |
Conley Owens | 971de8e | 2012-04-16 10:36:08 -0700 | [diff] [blame] | 250 | groupstr = None |
| 251 | m.config.SetString('manifest.groups', groupstr) |
Colin Cross | 5acde75 | 2012-03-28 20:15:45 -0700 | [diff] [blame] | 252 | |
Shawn O. Pearce | 8844338 | 2010-10-08 10:02:09 +0200 | [diff] [blame] | 253 | if opt.reference: |
| 254 | m.config.SetString('repo.reference', opt.reference) |
| 255 | |
Nikolai Merinov | 09f0abb | 2018-10-19 15:07:05 +0500 | [diff] [blame] | 256 | if opt.dissociate: |
| 257 | m.config.SetString('repo.dissociate', 'true') |
| 258 | |
Mike Frysinger | 979d5bd | 2020-02-09 02:28:34 -0500 | [diff] [blame] | 259 | if opt.worktree: |
| 260 | if opt.mirror: |
| 261 | print('fatal: --mirror and --worktree are incompatible', |
| 262 | file=sys.stderr) |
| 263 | sys.exit(1) |
| 264 | if opt.submodules: |
| 265 | print('fatal: --submodules and --worktree are incompatible', |
| 266 | file=sys.stderr) |
| 267 | sys.exit(1) |
| 268 | m.config.SetString('repo.worktree', 'true') |
| 269 | if is_new: |
| 270 | m.use_git_worktrees = True |
| 271 | print('warning: --worktree is experimental!', file=sys.stderr) |
| 272 | |
Julien Campergue | 335f5ef | 2013-10-16 11:02:35 +0200 | [diff] [blame] | 273 | if opt.archive: |
| 274 | if is_new: |
| 275 | m.config.SetString('repo.archive', 'true') |
| 276 | else: |
| 277 | print('fatal: --archive is only supported when initializing a new ' |
| 278 | 'workspace.', file=sys.stderr) |
| 279 | print('Either delete the .repo folder in this workspace, or initialize ' |
| 280 | 'in another location.', file=sys.stderr) |
| 281 | sys.exit(1) |
| 282 | |
Shawn O. Pearce | e284ad1 | 2008-11-04 07:37:10 -0800 | [diff] [blame] | 283 | if opt.mirror: |
Shawn O. Pearce | 5470df6 | 2009-03-09 18:51:58 -0700 | [diff] [blame] | 284 | if is_new: |
| 285 | m.config.SetString('repo.mirror', 'true') |
| 286 | else: |
David Pursehouse | 2547098 | 2012-11-21 14:41:58 +0900 | [diff] [blame] | 287 | print('fatal: --mirror is only supported when initializing a new ' |
| 288 | 'workspace.', file=sys.stderr) |
| 289 | print('Either delete the .repo folder in this workspace, or initialize ' |
| 290 | 'in another location.', file=sys.stderr) |
Shawn O. Pearce | 5470df6 | 2009-03-09 18:51:58 -0700 | [diff] [blame] | 291 | sys.exit(1) |
Shawn O. Pearce | e284ad1 | 2008-11-04 07:37:10 -0800 | [diff] [blame] | 292 | |
Xin Li | 745be2e | 2019-06-03 11:24:30 -0700 | [diff] [blame] | 293 | if opt.partial_clone: |
| 294 | if opt.mirror: |
| 295 | print('fatal: --mirror and --partial-clone are mutually exclusive', |
| 296 | file=sys.stderr) |
| 297 | sys.exit(1) |
| 298 | m.config.SetString('repo.partialclone', 'true') |
| 299 | if opt.clone_filter: |
| 300 | m.config.SetString('repo.clonefilter', opt.clone_filter) |
| 301 | else: |
| 302 | opt.clone_filter = None |
| 303 | |
Martin Kelly | e4e94d2 | 2017-03-21 16:05:12 -0700 | [diff] [blame] | 304 | if opt.submodules: |
| 305 | m.config.SetString('repo.submodules', 'true') |
| 306 | |
Mike Frysinger | edd3d45 | 2020-02-21 23:55:07 -0500 | [diff] [blame] | 307 | if not m.Sync_NetworkHalf(is_new=is_new, quiet=opt.quiet, verbose=opt.verbose, |
Mike Frysinger | c58ec4d | 2020-02-17 14:36:08 -0500 | [diff] [blame] | 308 | clone_bundle=opt.clone_bundle, |
David Pursehouse | abdf750 | 2020-02-12 14:58:39 +0900 | [diff] [blame] | 309 | current_branch_only=opt.current_branch_only, |
Mike Frysinger | c58ec4d | 2020-02-17 14:36:08 -0500 | [diff] [blame] | 310 | tags=opt.tags, submodules=opt.submodules, |
David Pursehouse | abdf750 | 2020-02-12 14:58:39 +0900 | [diff] [blame] | 311 | clone_filter=opt.clone_filter): |
Shawn O. Pearce | 1fc99f4 | 2009-03-17 08:06:18 -0700 | [diff] [blame] | 312 | r = m.GetRemote(m.remote.name) |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 313 | print('fatal: cannot obtain manifest %s' % r.url, file=sys.stderr) |
Doug Anderson | 2630dd9 | 2011-04-07 13:36:30 -0700 | [diff] [blame] | 314 | |
| 315 | # Better delete the manifest git dir if we created it; otherwise next |
| 316 | # time (when user fixes problems) we won't go through the "is_new" logic. |
| 317 | if is_new: |
Renaud Paquay | a65adf7 | 2016-11-03 10:37:53 -0700 | [diff] [blame] | 318 | platform_utils.rmtree(m.gitdir) |
Shawn O. Pearce | 1fc99f4 | 2009-03-17 08:06:18 -0700 | [diff] [blame] | 319 | sys.exit(1) |
| 320 | |
Florian Vallee | 5d01650 | 2012-06-07 17:19:26 +0200 | [diff] [blame] | 321 | if opt.manifest_branch: |
Martin Kelly | 224a31a | 2017-07-10 14:46:25 -0700 | [diff] [blame] | 322 | m.MetaBranchSwitch(submodules=opt.submodules) |
Florian Vallee | 5d01650 | 2012-06-07 17:19:26 +0200 | [diff] [blame] | 323 | |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 324 | syncbuf = SyncBuffer(m.config) |
Martin Kelly | e4e94d2 | 2017-03-21 16:05:12 -0700 | [diff] [blame] | 325 | m.Sync_LocalHalf(syncbuf, submodules=opt.submodules) |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 326 | syncbuf.Finish() |
| 327 | |
Shawn O. Pearce | df01883 | 2009-03-17 08:15:27 -0700 | [diff] [blame] | 328 | if is_new or m.CurrentBranch is None: |
Shawn O. Pearce | 0a389e9 | 2009-04-10 16:21:18 -0700 | [diff] [blame] | 329 | if not m.StartBranch('default'): |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 330 | print('fatal: cannot create default in manifest', file=sys.stderr) |
Shawn O. Pearce | 0a389e9 | 2009-04-10 16:21:18 -0700 | [diff] [blame] | 331 | sys.exit(1) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 332 | |
| 333 | def _LinkManifest(self, name): |
| 334 | if not name: |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 335 | print('fatal: manifest name (-m) is required.', file=sys.stderr) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 336 | sys.exit(1) |
| 337 | |
| 338 | try: |
| 339 | self.manifest.Link(name) |
Sarah Owens | a5be53f | 2012-09-09 15:37:57 -0700 | [diff] [blame] | 340 | except ManifestParseError as e: |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 341 | print("fatal: manifest '%s' not available" % name, file=sys.stderr) |
| 342 | print('fatal: %s' % str(e), file=sys.stderr) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 343 | sys.exit(1) |
| 344 | |
Shawn O. Pearce | 37dbf2b | 2009-07-02 10:53:04 -0700 | [diff] [blame] | 345 | def _Prompt(self, prompt, value): |
Mike Frysinger | ab85fe7 | 2019-07-04 17:35:11 -0400 | [diff] [blame] | 346 | print('%-10s [%s]: ' % (prompt, value), end='') |
| 347 | # TODO: When we require Python 3, use flush=True w/print above. |
| 348 | sys.stdout.flush() |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 349 | a = sys.stdin.readline().strip() |
Shawn O. Pearce | 37dbf2b | 2009-07-02 10:53:04 -0700 | [diff] [blame] | 350 | if a == '': |
| 351 | return value |
| 352 | return a |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 353 | |
Mike Frysinger | 0b88891 | 2020-02-21 22:48:40 -0500 | [diff] [blame] | 354 | def _ShouldConfigureUser(self, opt): |
Victor Boivie | 841be34 | 2011-04-05 11:31:10 +0200 | [diff] [blame] | 355 | gc = self.manifest.globalConfig |
| 356 | mp = self.manifest.manifestProject |
| 357 | |
| 358 | # If we don't have local settings, get from global. |
| 359 | if not mp.config.Has('user.name') or not mp.config.Has('user.email'): |
| 360 | if not gc.Has('user.name') or not gc.Has('user.email'): |
| 361 | return True |
| 362 | |
| 363 | mp.config.SetString('user.name', gc.GetString('user.name')) |
| 364 | mp.config.SetString('user.email', gc.GetString('user.email')) |
| 365 | |
Mike Frysinger | 0b88891 | 2020-02-21 22:48:40 -0500 | [diff] [blame] | 366 | if not opt.quiet: |
| 367 | print() |
| 368 | print('Your identity is: %s <%s>' % (mp.config.GetString('user.name'), |
| 369 | mp.config.GetString('user.email'))) |
| 370 | print("If you want to change this, please re-run 'repo init' with --config-name") |
Victor Boivie | 841be34 | 2011-04-05 11:31:10 +0200 | [diff] [blame] | 371 | return False |
| 372 | |
Mike Frysinger | 0b88891 | 2020-02-21 22:48:40 -0500 | [diff] [blame] | 373 | def _ConfigureUser(self, opt): |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 374 | mp = self.manifest.manifestProject |
| 375 | |
Shawn O. Pearce | 37dbf2b | 2009-07-02 10:53:04 -0700 | [diff] [blame] | 376 | while True: |
Mike Frysinger | 0b88891 | 2020-02-21 22:48:40 -0500 | [diff] [blame] | 377 | if not opt.quiet: |
| 378 | print() |
David Pursehouse | 54a4e60 | 2020-02-12 14:31:05 +0900 | [diff] [blame] | 379 | name = self._Prompt('Your Name', mp.UserName) |
Shawn O. Pearce | 37dbf2b | 2009-07-02 10:53:04 -0700 | [diff] [blame] | 380 | email = self._Prompt('Your Email', mp.UserEmail) |
| 381 | |
Mike Frysinger | 0b88891 | 2020-02-21 22:48:40 -0500 | [diff] [blame] | 382 | if not opt.quiet: |
| 383 | print() |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 384 | print('Your identity is: %s <%s>' % (name, email)) |
Mike Frysinger | ab85fe7 | 2019-07-04 17:35:11 -0400 | [diff] [blame] | 385 | print('is this correct [y/N]? ', end='') |
| 386 | # TODO: When we require Python 3, use flush=True w/print above. |
| 387 | sys.stdout.flush() |
David Pursehouse | fc24124 | 2012-11-14 09:19:39 +0900 | [diff] [blame] | 388 | a = sys.stdin.readline().strip().lower() |
Nico Sallembien | 6d7508b | 2010-04-01 11:03:53 -0700 | [diff] [blame] | 389 | if a in ('yes', 'y', 't', 'true'): |
Shawn O. Pearce | 37dbf2b | 2009-07-02 10:53:04 -0700 | [diff] [blame] | 390 | break |
| 391 | |
| 392 | if name != mp.UserName: |
| 393 | mp.config.SetString('user.name', name) |
| 394 | if email != mp.UserEmail: |
| 395 | mp.config.SetString('user.email', email) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 396 | |
| 397 | def _HasColorSet(self, gc): |
| 398 | for n in ['ui', 'diff', 'status']: |
| 399 | if gc.Has('color.%s' % n): |
| 400 | return True |
| 401 | return False |
| 402 | |
| 403 | def _ConfigureColor(self): |
| 404 | gc = self.manifest.globalConfig |
| 405 | if self._HasColorSet(gc): |
| 406 | return |
| 407 | |
| 408 | class _Test(Coloring): |
| 409 | def __init__(self): |
| 410 | Coloring.__init__(self, gc, 'test color display') |
| 411 | self._on = True |
| 412 | out = _Test() |
| 413 | |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 414 | print() |
| 415 | print("Testing colorized output (for 'repo diff', 'repo status'):") |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 416 | |
David Pursehouse | 8f62fb7 | 2012-11-14 12:09:38 +0900 | [diff] [blame] | 417 | for c in ['black', 'red', 'green', 'yellow', 'blue', 'magenta', 'cyan']: |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 418 | out.write(' ') |
| 419 | out.printer(fg=c)(' %-6s ', c) |
| 420 | out.write(' ') |
| 421 | out.printer(fg='white', bg='black')(' %s ' % 'white') |
| 422 | out.nl() |
| 423 | |
David Pursehouse | 8f62fb7 | 2012-11-14 12:09:38 +0900 | [diff] [blame] | 424 | for c in ['bold', 'dim', 'ul', 'reverse']: |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 425 | out.write(' ') |
| 426 | out.printer(fg='black', attr=c)(' %-6s ', c) |
| 427 | out.nl() |
| 428 | |
Mike Frysinger | ab85fe7 | 2019-07-04 17:35:11 -0400 | [diff] [blame] | 429 | print('Enable color display in this user account (y/N)? ', end='') |
| 430 | # TODO: When we require Python 3, use flush=True w/print above. |
| 431 | sys.stdout.flush() |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 432 | a = sys.stdin.readline().strip().lower() |
| 433 | if a in ('y', 'yes', 't', 'true', 'on'): |
| 434 | gc.SetString('color.ui', 'auto') |
| 435 | |
Doug Anderson | 30d4529 | 2011-05-04 15:01:04 -0700 | [diff] [blame] | 436 | def _ConfigureDepth(self, opt): |
| 437 | """Configure the depth we'll sync down. |
| 438 | |
| 439 | Args: |
| 440 | opt: Options from optparse. We care about opt.depth. |
| 441 | """ |
| 442 | # Opt.depth will be non-None if user actually passed --depth to repo init. |
| 443 | if opt.depth is not None: |
| 444 | if opt.depth > 0: |
| 445 | # Positive values will set the depth. |
| 446 | depth = str(opt.depth) |
| 447 | else: |
| 448 | # Negative numbers will clear the depth; passing None to SetString |
| 449 | # will do that. |
| 450 | depth = None |
| 451 | |
| 452 | # We store the depth in the main manifest project. |
| 453 | self.manifest.manifestProject.config.SetString('repo.depth', depth) |
| 454 | |
Mike Frysinger | 0b88891 | 2020-02-21 22:48:40 -0500 | [diff] [blame] | 455 | def _DisplayResult(self, opt): |
Yang Zhenhui | 75cc353 | 2012-10-23 15:41:54 +0800 | [diff] [blame] | 456 | if self.manifest.IsMirror: |
| 457 | init_type = 'mirror ' |
| 458 | else: |
| 459 | init_type = '' |
| 460 | |
Mike Frysinger | 0b88891 | 2020-02-21 22:48:40 -0500 | [diff] [blame] | 461 | if not opt.quiet: |
| 462 | print() |
| 463 | print('repo %shas been initialized in %s' % |
| 464 | (init_type, self.manifest.topdir)) |
Yang Zhenhui | 75cc353 | 2012-10-23 15:41:54 +0800 | [diff] [blame] | 465 | |
| 466 | current_dir = os.getcwd() |
| 467 | if current_dir != self.manifest.topdir: |
David Pursehouse | 3576596 | 2013-01-29 09:49:48 +0900 | [diff] [blame] | 468 | print('If this is not the directory in which you want to initialize ' |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 469 | 'repo, please run:') |
| 470 | print(' rm -r %s/.repo' % self.manifest.topdir) |
| 471 | print('and try again.') |
Yang Zhenhui | 75cc353 | 2012-10-23 15:41:54 +0800 | [diff] [blame] | 472 | |
Mike Frysinger | ae6cb08 | 2019-08-27 01:10:59 -0400 | [diff] [blame] | 473 | def ValidateOptions(self, opt, args): |
Victor Boivie | 297e7c6 | 2012-10-05 14:50:05 +0200 | [diff] [blame] | 474 | if opt.reference: |
Samuel Holland | baa0009 | 2018-01-22 10:57:29 -0600 | [diff] [blame] | 475 | opt.reference = os.path.expanduser(opt.reference) |
Victor Boivie | 297e7c6 | 2012-10-05 14:50:05 +0200 | [diff] [blame] | 476 | |
Julien Campergue | 335f5ef | 2013-10-16 11:02:35 +0200 | [diff] [blame] | 477 | # Check this here, else manifest will be tagged "not new" and init won't be |
| 478 | # possible anymore without removing the .repo/manifests directory. |
| 479 | if opt.archive and opt.mirror: |
Mike Frysinger | ae6cb08 | 2019-08-27 01:10:59 -0400 | [diff] [blame] | 480 | self.OptionParser.error('--mirror and --archive cannot be used together.') |
| 481 | |
| 482 | def Execute(self, opt, args): |
Mike Frysinger | 82caef6 | 2020-02-11 18:51:08 -0500 | [diff] [blame] | 483 | git_require(MIN_GIT_VERSION_HARD, fail=True) |
| 484 | if not git_require(MIN_GIT_VERSION_SOFT): |
| 485 | print('repo: warning: git-%s+ will soon be required; please upgrade your ' |
| 486 | 'version of git to maintain support.' |
| 487 | % ('.'.join(str(x) for x in MIN_GIT_VERSION_SOFT),), |
| 488 | file=sys.stderr) |
Julien Campergue | 335f5ef | 2013-10-16 11:02:35 +0200 | [diff] [blame] | 489 | |
Mike Frysinger | edd3d45 | 2020-02-21 23:55:07 -0500 | [diff] [blame] | 490 | opt.quiet = opt.output_mode is False |
| 491 | opt.verbose = opt.output_mode is True |
| 492 | |
Mike Frysinger | 979d5bd | 2020-02-09 02:28:34 -0500 | [diff] [blame] | 493 | if opt.worktree: |
| 494 | # Older versions of git supported worktree, but had dangerous gc bugs. |
| 495 | git_require((2, 15, 0), fail=True, msg='git gc worktree corruption') |
| 496 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 497 | self._SyncManifest(opt) |
| 498 | self._LinkManifest(opt.manifest_name) |
| 499 | |
Shawn O. Pearce | 8630f39 | 2009-03-19 10:17:12 -0700 | [diff] [blame] | 500 | if os.isatty(0) and os.isatty(1) and not self.manifest.IsMirror: |
Mike Frysinger | 0b88891 | 2020-02-21 22:48:40 -0500 | [diff] [blame] | 501 | if opt.config_name or self._ShouldConfigureUser(opt): |
| 502 | self._ConfigureUser(opt) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 503 | self._ConfigureColor() |
| 504 | |
Mike Frysinger | 0b88891 | 2020-02-21 22:48:40 -0500 | [diff] [blame] | 505 | self._DisplayResult(opt) |