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