blob: eb82e2e4d47e2b00da22c94d3f05009e817b36b8 [file] [log] [blame]
Mike Frysingerf6013762019-06-13 02:30:51 -04001# -*- coding:utf-8 -*-
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002#
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 Owenscecd1d82012-11-01 22:59:27 -070017from __future__ import print_function
Mike Frysinger979d5bd2020-02-09 02:28:34 -050018
19import optparse
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070020import os
Conley Owensd21720d2012-04-16 11:02:21 -070021import platform
Conley Owens971de8e2012-04-16 10:36:08 -070022import re
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070023import sys
David Pursehouse59bbb582013-05-17 10:49:33 +090024
25from pyversion import is_python3
26if is_python3():
Victor Boivie2b30e3a2012-10-05 12:37:58 +020027 import urllib.parse
David Pursehouse59bbb582013-05-17 10:49:33 +090028else:
Victor Boivie2b30e3a2012-10-05 12:37:58 +020029 import imp
30 import urlparse
31 urllib = imp.new_module('urllib')
Anthony King7993f3c2015-06-03 17:21:56 +010032 urllib.parse = urlparse
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070033
34from color import Coloring
Shawn O. Pearcec95583b2009-03-03 17:47:06 -080035from command import InteractiveCommand, MirrorSafeCommand
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070036from error import ManifestParseError
Jonathan Nieder93719792015-03-17 11:29:58 -070037from project import SyncBuffer
Shawn O. Pearcef322b9a2011-09-19 14:50:58 -070038from git_config import GitConfig
Mike Frysinger82caef62020-02-11 18:51:08 -050039from git_command import git_require, MIN_GIT_VERSION_SOFT, MIN_GIT_VERSION_HARD
Renaud Paquaya65adf72016-11-03 10:37:53 -070040import platform_utils
Mike Frysinger3599cc32020-02-29 02:53:41 -050041from wrapper import Wrapper
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070042
David Pursehouse819827a2020-02-12 15:20:19 +090043
Shawn O. Pearcec95583b2009-03-03 17:47:06 -080044class Init(InteractiveCommand, MirrorSafeCommand):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070045 common = True
46 helpSummary = "Initialize repo in the current directory"
47 helpUsage = """
48%prog [options]
49"""
50 helpDescription = """
51The '%prog' command is run once to install and initialize repo.
52The latest repo source code and manifest collection is downloaded
53from the server and is installed in the .repo/ directory in the
54current working directory.
55
Shawn O. Pearce77bb4af2009-04-18 11:33:32 -070056The optional -b argument can be used to select the manifest branch
57to checkout and use. If no branch is specified, master is assumed.
58
59The optional -m argument can be used to specify an alternate manifest
60to be used. If no manifest is specified, the manifest default.xml
61will be used.
62
Shawn O. Pearce88443382010-10-08 10:02:09 +020063The --reference option can be used to point to a directory that
64has the content of a --mirror sync. This will make the working
65directory use as much data as possible from the local reference
66directory when fetching from the server. This will make the sync
67go a lot faster by reducing data traffic on the network.
68
Nikolai Merinov09f0abb2018-10-19 15:07:05 +050069The --dissociate option can be used to borrow the objects from
70the directory specified with the --reference option only to reduce
71network transfer, and stop borrowing from them after a first clone
72is made by making necessary local copies of borrowed objects.
73
Hu xiuyun9711a982015-12-11 11:16:41 +080074The --no-clone-bundle option disables any attempt to use
75$URL/clone.bundle to bootstrap a new Git repository from a
76resumeable bundle file on a content delivery network. This
77may be necessary if there are problems with the local Python
78HTTP client or proxy configuration, but the Git binary works.
Shawn O. Pearce88443382010-10-08 10:02:09 +020079
Mike Frysingerb8f7bb02018-10-10 01:05:11 -040080# Switching Manifest Branches
Shawn O. Pearce77bb4af2009-04-18 11:33:32 -070081
82To switch to another manifest branch, `repo init -b otherbranch`
83may be used in an existing client. However, as this only updates the
84manifest, a subsequent `repo sync` (or `repo sync -d`) is necessary
85to update the working directory files.
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070086"""
87
Mike Frysinger66098f72020-02-05 00:01:59 -050088 def _Options(self, p, gitc_init=False):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070089 # Logging
90 g = p.add_option_group('Logging options')
Mike Frysingeredd3d452020-02-21 23:55:07 -050091 g.add_option('-v', '--verbose',
92 dest='output_mode', action='store_true',
93 help='show all output')
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070094 g.add_option('-q', '--quiet',
Mike Frysingeredd3d452020-02-21 23:55:07 -050095 dest='output_mode', action='store_false',
96 help='only show errors')
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070097
98 # Manifest
99 g = p.add_option_group('Manifest options')
100 g.add_option('-u', '--manifest-url',
Shawn O. Pearce34fb20f2011-11-30 13:41:02 -0800101 dest='manifest_url',
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700102 help='manifest repository location', metavar='URL')
103 g.add_option('-b', '--manifest-branch',
104 dest='manifest_branch',
105 help='manifest branch or revision', metavar='REVISION')
Mike Frysinger66098f72020-02-05 00:01:59 -0500106 cbr_opts = ['--current-branch']
107 # The gitc-init subcommand allocates -c itself, but a lot of init users
108 # want -c, so try to satisfy both as best we can.
Dan Willemsen93293ca2020-02-06 17:00:00 -0800109 if not gitc_init:
Mike Frysinger66098f72020-02-05 00:01:59 -0500110 cbr_opts += ['-c']
111 g.add_option(*cbr_opts,
Naseer Ahmedf4dda9a2016-12-01 18:49:54 -0500112 dest='current_branch_only', action='store_true',
113 help='fetch only current manifest branch from server')
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700114 g.add_option('-m', '--manifest-name',
115 dest='manifest_name', default='default.xml',
116 help='initial manifest file', metavar='NAME.xml')
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800117 g.add_option('--mirror',
118 dest='mirror', action='store_true',
David Pursehouse3d07da82012-08-15 14:22:08 +0900119 help='create a replica of the remote repositories '
120 'rather than a client working directory')
Shawn O. Pearce88443382010-10-08 10:02:09 +0200121 g.add_option('--reference',
122 dest='reference',
123 help='location of mirror directory', metavar='DIR')
Nikolai Merinov09f0abb2018-10-19 15:07:05 +0500124 g.add_option('--dissociate',
125 dest='dissociate', action='store_true',
126 help='dissociate from reference mirrors after clone')
Doug Anderson30d45292011-05-04 15:01:04 -0700127 g.add_option('--depth', type='int', default=None,
128 dest='depth',
129 help='create a shallow clone with given depth; see git clone')
Xin Li745be2e2019-06-03 11:24:30 -0700130 g.add_option('--partial-clone', action='store_true',
131 dest='partial_clone',
132 help='perform partial clone (https://git-scm.com/'
133 'docs/gitrepository-layout#_code_partialclone_code)')
134 g.add_option('--clone-filter', action='store', default='blob:none',
135 dest='clone_filter',
136 help='filter for use with --partial-clone [default: %default]')
Mike Frysinger979d5bd2020-02-09 02:28:34 -0500137 # TODO(vapier): Expose option with real help text once this has been in the
138 # wild for a while w/out significant bug reports. Goal is by ~Sep 2020.
139 g.add_option('--worktree', action='store_true',
140 help=optparse.SUPPRESS_HELP)
Julien Campergue335f5ef2013-10-16 11:02:35 +0200141 g.add_option('--archive',
142 dest='archive', action='store_true',
143 help='checkout an archive instead of a git repository for '
144 'each project. See git archive.')
Martin Kellye4e94d22017-03-21 16:05:12 -0700145 g.add_option('--submodules',
146 dest='submodules', action='store_true',
147 help='sync any submodules associated with the manifest repo')
Colin Cross5acde752012-03-28 20:15:45 -0700148 g.add_option('-g', '--groups',
David Holmer0a1c6a12012-11-14 19:19:00 -0500149 dest='groups', default='default',
150 help='restrict manifest projects to ones with specified '
151 'group(s) [default|all|G1,G2,G3|G4,-G5,-G6]',
Colin Cross5acde752012-03-28 20:15:45 -0700152 metavar='GROUP')
Conley Owensd21720d2012-04-16 11:02:21 -0700153 g.add_option('-p', '--platform',
154 dest='platform', default='auto',
Conley Owensbb1b5f52012-08-13 13:11:18 -0700155 help='restrict manifest projects to ones with a specified '
Conley Owensd21720d2012-04-16 11:02:21 -0700156 'platform group [auto|all|none|linux|darwin|...]',
157 metavar='PLATFORM')
Xin Lid79a4bc2020-05-20 16:03:45 -0700158 g.add_option('--clone-bundle', action='store_true',
159 help='force use of /clone.bundle on HTTP/HTTPS (default if not --partial-clone)')
Hu xiuyun9711a982015-12-11 11:16:41 +0800160 g.add_option('--no-clone-bundle',
Xin Lid79a4bc2020-05-20 16:03:45 -0700161 dest='clone_bundle', action='store_false',
162 help='disable use of /clone.bundle on HTTP/HTTPS (default if --partial-clone)')
Naseer Ahmedf4dda9a2016-12-01 18:49:54 -0500163 g.add_option('--no-tags',
Mike Frysingerc58ec4d2020-02-17 14:36:08 -0500164 dest='tags', default=True, action='store_false',
Naseer Ahmedf4dda9a2016-12-01 18:49:54 -0500165 help="don't fetch tags in the manifest")
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700166
167 # Tool
Shawn O. Pearcefd89b672009-04-18 11:28:57 -0700168 g = p.add_option_group('repo Version options')
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700169 g.add_option('--repo-url',
170 dest='repo_url',
171 help='repo repository location', metavar='URL')
Mike Frysinger58ac1672020-03-14 14:35:26 -0400172 g.add_option('--repo-rev', metavar='REV',
173 help='repo branch or revision')
174 g.add_option('--repo-branch', dest='repo_rev',
175 help=optparse.SUPPRESS_HELP)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700176 g.add_option('--no-repo-verify',
Mike Frysingerc58ec4d2020-02-17 14:36:08 -0500177 dest='repo_verify', default=True, action='store_false',
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700178 help='do not verify repo source code')
179
Victor Boivie841be342011-04-05 11:31:10 +0200180 # Other
181 g = p.add_option_group('Other options')
182 g.add_option('--config-name',
183 dest='config_name', action="store_true", default=False,
184 help='Always prompt for name/e-mail')
185
David Pursehouse3f5ea0b2012-11-17 03:13:09 +0900186 def _RegisteredEnvironmentOptions(self):
187 return {'REPO_MANIFEST_URL': 'manifest_url',
188 'REPO_MIRROR_LOCATION': 'reference'}
189
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700190 def _SyncManifest(self, opt):
191 m = self.manifest.manifestProject
Shawn O. Pearce5470df62009-03-09 18:51:58 -0700192 is_new = not m.Exists
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700193
Shawn O. Pearce5470df62009-03-09 18:51:58 -0700194 if is_new:
Shawn O. Pearce34fb20f2011-11-30 13:41:02 -0800195 if not opt.manifest_url:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700196 print('fatal: manifest url (-u) is required.', file=sys.stderr)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700197 sys.exit(1)
198
199 if not opt.quiet:
Mike Frysingerdcbfadf2020-02-22 00:04:39 -0500200 print('Downloading manifest from %s' %
201 (GitConfig.ForUser().UrlInsteadOf(opt.manifest_url),),
Sarah Owenscecd1d82012-11-01 22:59:27 -0700202 file=sys.stderr)
Victor Boivie2b30e3a2012-10-05 12:37:58 +0200203
204 # The manifest project object doesn't keep track of the path on the
205 # server where this git is located, so let's save that here.
206 mirrored_manifest_git = None
207 if opt.reference:
Anthony King7993f3c2015-06-03 17:21:56 +0100208 manifest_git_path = urllib.parse.urlparse(opt.manifest_url).path[1:]
Victor Boivie2b30e3a2012-10-05 12:37:58 +0200209 mirrored_manifest_git = os.path.join(opt.reference, manifest_git_path)
210 if not mirrored_manifest_git.endswith(".git"):
211 mirrored_manifest_git += ".git"
212 if not os.path.exists(mirrored_manifest_git):
Samuel Holland5f0e57d2018-01-22 11:00:24 -0600213 mirrored_manifest_git = os.path.join(opt.reference,
214 '.repo/manifests.git')
Victor Boivie2b30e3a2012-10-05 12:37:58 +0200215
216 m._InitGitDir(mirror_git=mirrored_manifest_git)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700217
218 if opt.manifest_branch:
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700219 m.revisionExpr = opt.manifest_branch
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700220 else:
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700221 m.revisionExpr = 'refs/heads/master'
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700222 else:
223 if opt.manifest_branch:
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700224 m.revisionExpr = opt.manifest_branch
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700225 else:
226 m.PreSync()
227
Nasser Grainawid92464e2019-05-21 10:41:35 -0600228 self._ConfigureDepth(opt)
229
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700230 if opt.manifest_url:
231 r = m.GetRemote(m.remote.name)
232 r.url = opt.manifest_url
233 r.ResetFetch()
234 r.Save()
235
David Pursehouse1d947b32012-10-25 12:23:11 +0900236 groups = re.split(r'[,\s]+', opt.groups)
Pascal Muetschardc2a64dd2015-10-22 13:26:36 -0700237 all_platforms = ['linux', 'darwin', 'windows']
Conley Owensd21720d2012-04-16 11:02:21 -0700238 platformize = lambda x: 'platform-' + x
239 if opt.platform == 'auto':
240 if (not opt.mirror and
David Pursehouseabdf7502020-02-12 14:58:39 +0900241 not m.config.GetString('repo.mirror') == 'true'):
Conley Owensd21720d2012-04-16 11:02:21 -0700242 groups.append(platformize(platform.system().lower()))
243 elif opt.platform == 'all':
Colin Cross54657272012-04-23 13:39:48 -0700244 groups.extend(map(platformize, all_platforms))
Conley Owensd21720d2012-04-16 11:02:21 -0700245 elif opt.platform in all_platforms:
Pascal Muetschardc2a64dd2015-10-22 13:26:36 -0700246 groups.append(platformize(opt.platform))
Conley Owensd21720d2012-04-16 11:02:21 -0700247 elif opt.platform != 'none':
Sarah Owenscecd1d82012-11-01 22:59:27 -0700248 print('fatal: invalid platform flag', file=sys.stderr)
Conley Owensd21720d2012-04-16 11:02:21 -0700249 sys.exit(1)
250
Conley Owens971de8e2012-04-16 10:36:08 -0700251 groups = [x for x in groups if x]
252 groupstr = ','.join(groups)
David Holmer0a1c6a12012-11-14 19:19:00 -0500253 if opt.platform == 'auto' and groupstr == 'default,platform-' + platform.system().lower():
Conley Owens971de8e2012-04-16 10:36:08 -0700254 groupstr = None
255 m.config.SetString('manifest.groups', groupstr)
Colin Cross5acde752012-03-28 20:15:45 -0700256
Shawn O. Pearce88443382010-10-08 10:02:09 +0200257 if opt.reference:
258 m.config.SetString('repo.reference', opt.reference)
259
Nikolai Merinov09f0abb2018-10-19 15:07:05 +0500260 if opt.dissociate:
261 m.config.SetString('repo.dissociate', 'true')
262
Mike Frysinger979d5bd2020-02-09 02:28:34 -0500263 if opt.worktree:
264 if opt.mirror:
265 print('fatal: --mirror and --worktree are incompatible',
266 file=sys.stderr)
267 sys.exit(1)
268 if opt.submodules:
269 print('fatal: --submodules and --worktree are incompatible',
270 file=sys.stderr)
271 sys.exit(1)
272 m.config.SetString('repo.worktree', 'true')
273 if is_new:
274 m.use_git_worktrees = True
275 print('warning: --worktree is experimental!', file=sys.stderr)
276
Julien Campergue335f5ef2013-10-16 11:02:35 +0200277 if opt.archive:
278 if is_new:
279 m.config.SetString('repo.archive', 'true')
280 else:
281 print('fatal: --archive is only supported when initializing a new '
282 'workspace.', file=sys.stderr)
283 print('Either delete the .repo folder in this workspace, or initialize '
284 'in another location.', file=sys.stderr)
285 sys.exit(1)
286
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800287 if opt.mirror:
Shawn O. Pearce5470df62009-03-09 18:51:58 -0700288 if is_new:
289 m.config.SetString('repo.mirror', 'true')
290 else:
David Pursehouse25470982012-11-21 14:41:58 +0900291 print('fatal: --mirror is only supported when initializing a new '
292 'workspace.', file=sys.stderr)
293 print('Either delete the .repo folder in this workspace, or initialize '
294 'in another location.', file=sys.stderr)
Shawn O. Pearce5470df62009-03-09 18:51:58 -0700295 sys.exit(1)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800296
Xin Li745be2e2019-06-03 11:24:30 -0700297 if opt.partial_clone:
298 if opt.mirror:
299 print('fatal: --mirror and --partial-clone are mutually exclusive',
300 file=sys.stderr)
301 sys.exit(1)
302 m.config.SetString('repo.partialclone', 'true')
303 if opt.clone_filter:
304 m.config.SetString('repo.clonefilter', opt.clone_filter)
305 else:
306 opt.clone_filter = None
307
Xin Lid79a4bc2020-05-20 16:03:45 -0700308 if opt.clone_bundle is None:
309 opt.clone_bundle = False if opt.partial_clone else True
310 else:
311 m.config.SetString('repo.clonebundle', 'true' if opt.clone_bundle else 'false')
312
Martin Kellye4e94d22017-03-21 16:05:12 -0700313 if opt.submodules:
314 m.config.SetString('repo.submodules', 'true')
315
Mike Frysingeredd3d452020-02-21 23:55:07 -0500316 if not m.Sync_NetworkHalf(is_new=is_new, quiet=opt.quiet, verbose=opt.verbose,
Mike Frysingerc58ec4d2020-02-17 14:36:08 -0500317 clone_bundle=opt.clone_bundle,
David Pursehouseabdf7502020-02-12 14:58:39 +0900318 current_branch_only=opt.current_branch_only,
Mike Frysingerc58ec4d2020-02-17 14:36:08 -0500319 tags=opt.tags, submodules=opt.submodules,
David Pursehouseabdf7502020-02-12 14:58:39 +0900320 clone_filter=opt.clone_filter):
Shawn O. Pearce1fc99f42009-03-17 08:06:18 -0700321 r = m.GetRemote(m.remote.name)
Sarah Owenscecd1d82012-11-01 22:59:27 -0700322 print('fatal: cannot obtain manifest %s' % r.url, file=sys.stderr)
Doug Anderson2630dd92011-04-07 13:36:30 -0700323
324 # Better delete the manifest git dir if we created it; otherwise next
325 # time (when user fixes problems) we won't go through the "is_new" logic.
326 if is_new:
Renaud Paquaya65adf72016-11-03 10:37:53 -0700327 platform_utils.rmtree(m.gitdir)
Shawn O. Pearce1fc99f42009-03-17 08:06:18 -0700328 sys.exit(1)
329
Florian Vallee5d016502012-06-07 17:19:26 +0200330 if opt.manifest_branch:
Martin Kelly224a31a2017-07-10 14:46:25 -0700331 m.MetaBranchSwitch(submodules=opt.submodules)
Florian Vallee5d016502012-06-07 17:19:26 +0200332
Shawn O. Pearce350cde42009-04-16 11:21:18 -0700333 syncbuf = SyncBuffer(m.config)
Martin Kellye4e94d22017-03-21 16:05:12 -0700334 m.Sync_LocalHalf(syncbuf, submodules=opt.submodules)
Shawn O. Pearce350cde42009-04-16 11:21:18 -0700335 syncbuf.Finish()
336
Shawn O. Pearcedf018832009-03-17 08:15:27 -0700337 if is_new or m.CurrentBranch is None:
Shawn O. Pearce0a389e92009-04-10 16:21:18 -0700338 if not m.StartBranch('default'):
Sarah Owenscecd1d82012-11-01 22:59:27 -0700339 print('fatal: cannot create default in manifest', file=sys.stderr)
Shawn O. Pearce0a389e92009-04-10 16:21:18 -0700340 sys.exit(1)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700341
342 def _LinkManifest(self, name):
343 if not name:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700344 print('fatal: manifest name (-m) is required.', file=sys.stderr)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700345 sys.exit(1)
346
347 try:
348 self.manifest.Link(name)
Sarah Owensa5be53f2012-09-09 15:37:57 -0700349 except ManifestParseError as e:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700350 print("fatal: manifest '%s' not available" % name, file=sys.stderr)
351 print('fatal: %s' % str(e), file=sys.stderr)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700352 sys.exit(1)
353
Shawn O. Pearce37dbf2b2009-07-02 10:53:04 -0700354 def _Prompt(self, prompt, value):
Mike Frysingerab85fe72019-07-04 17:35:11 -0400355 print('%-10s [%s]: ' % (prompt, value), end='')
356 # TODO: When we require Python 3, use flush=True w/print above.
357 sys.stdout.flush()
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700358 a = sys.stdin.readline().strip()
Shawn O. Pearce37dbf2b2009-07-02 10:53:04 -0700359 if a == '':
360 return value
361 return a
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700362
Mike Frysinger0b888912020-02-21 22:48:40 -0500363 def _ShouldConfigureUser(self, opt):
Victor Boivie841be342011-04-05 11:31:10 +0200364 gc = self.manifest.globalConfig
365 mp = self.manifest.manifestProject
366
367 # If we don't have local settings, get from global.
368 if not mp.config.Has('user.name') or not mp.config.Has('user.email'):
369 if not gc.Has('user.name') or not gc.Has('user.email'):
370 return True
371
372 mp.config.SetString('user.name', gc.GetString('user.name'))
373 mp.config.SetString('user.email', gc.GetString('user.email'))
374
Mike Frysinger0b888912020-02-21 22:48:40 -0500375 if not opt.quiet:
376 print()
377 print('Your identity is: %s <%s>' % (mp.config.GetString('user.name'),
378 mp.config.GetString('user.email')))
379 print("If you want to change this, please re-run 'repo init' with --config-name")
Victor Boivie841be342011-04-05 11:31:10 +0200380 return False
381
Mike Frysinger0b888912020-02-21 22:48:40 -0500382 def _ConfigureUser(self, opt):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700383 mp = self.manifest.manifestProject
384
Shawn O. Pearce37dbf2b2009-07-02 10:53:04 -0700385 while True:
Mike Frysinger0b888912020-02-21 22:48:40 -0500386 if not opt.quiet:
387 print()
David Pursehouse54a4e602020-02-12 14:31:05 +0900388 name = self._Prompt('Your Name', mp.UserName)
Shawn O. Pearce37dbf2b2009-07-02 10:53:04 -0700389 email = self._Prompt('Your Email', mp.UserEmail)
390
Mike Frysinger0b888912020-02-21 22:48:40 -0500391 if not opt.quiet:
392 print()
Sarah Owenscecd1d82012-11-01 22:59:27 -0700393 print('Your identity is: %s <%s>' % (name, email))
Mike Frysingerab85fe72019-07-04 17:35:11 -0400394 print('is this correct [y/N]? ', end='')
395 # TODO: When we require Python 3, use flush=True w/print above.
396 sys.stdout.flush()
David Pursehousefc241242012-11-14 09:19:39 +0900397 a = sys.stdin.readline().strip().lower()
Nico Sallembien6d7508b2010-04-01 11:03:53 -0700398 if a in ('yes', 'y', 't', 'true'):
Shawn O. Pearce37dbf2b2009-07-02 10:53:04 -0700399 break
400
401 if name != mp.UserName:
402 mp.config.SetString('user.name', name)
403 if email != mp.UserEmail:
404 mp.config.SetString('user.email', email)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700405
406 def _HasColorSet(self, gc):
407 for n in ['ui', 'diff', 'status']:
408 if gc.Has('color.%s' % n):
409 return True
410 return False
411
412 def _ConfigureColor(self):
413 gc = self.manifest.globalConfig
414 if self._HasColorSet(gc):
415 return
416
417 class _Test(Coloring):
418 def __init__(self):
419 Coloring.__init__(self, gc, 'test color display')
420 self._on = True
421 out = _Test()
422
Sarah Owenscecd1d82012-11-01 22:59:27 -0700423 print()
424 print("Testing colorized output (for 'repo diff', 'repo status'):")
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700425
David Pursehouse8f62fb72012-11-14 12:09:38 +0900426 for c in ['black', 'red', 'green', 'yellow', 'blue', 'magenta', 'cyan']:
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700427 out.write(' ')
428 out.printer(fg=c)(' %-6s ', c)
429 out.write(' ')
430 out.printer(fg='white', bg='black')(' %s ' % 'white')
431 out.nl()
432
David Pursehouse8f62fb72012-11-14 12:09:38 +0900433 for c in ['bold', 'dim', 'ul', 'reverse']:
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700434 out.write(' ')
435 out.printer(fg='black', attr=c)(' %-6s ', c)
436 out.nl()
437
Mike Frysingerab85fe72019-07-04 17:35:11 -0400438 print('Enable color display in this user account (y/N)? ', end='')
439 # TODO: When we require Python 3, use flush=True w/print above.
440 sys.stdout.flush()
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700441 a = sys.stdin.readline().strip().lower()
442 if a in ('y', 'yes', 't', 'true', 'on'):
443 gc.SetString('color.ui', 'auto')
444
Doug Anderson30d45292011-05-04 15:01:04 -0700445 def _ConfigureDepth(self, opt):
446 """Configure the depth we'll sync down.
447
448 Args:
449 opt: Options from optparse. We care about opt.depth.
450 """
451 # Opt.depth will be non-None if user actually passed --depth to repo init.
452 if opt.depth is not None:
453 if opt.depth > 0:
454 # Positive values will set the depth.
455 depth = str(opt.depth)
456 else:
457 # Negative numbers will clear the depth; passing None to SetString
458 # will do that.
459 depth = None
460
461 # We store the depth in the main manifest project.
462 self.manifest.manifestProject.config.SetString('repo.depth', depth)
463
Mike Frysinger0b888912020-02-21 22:48:40 -0500464 def _DisplayResult(self, opt):
Yang Zhenhui75cc3532012-10-23 15:41:54 +0800465 if self.manifest.IsMirror:
466 init_type = 'mirror '
467 else:
468 init_type = ''
469
Mike Frysinger0b888912020-02-21 22:48:40 -0500470 if not opt.quiet:
471 print()
472 print('repo %shas been initialized in %s' %
473 (init_type, self.manifest.topdir))
Yang Zhenhui75cc3532012-10-23 15:41:54 +0800474
475 current_dir = os.getcwd()
476 if current_dir != self.manifest.topdir:
David Pursehouse35765962013-01-29 09:49:48 +0900477 print('If this is not the directory in which you want to initialize '
Sarah Owenscecd1d82012-11-01 22:59:27 -0700478 'repo, please run:')
479 print(' rm -r %s/.repo' % self.manifest.topdir)
480 print('and try again.')
Yang Zhenhui75cc3532012-10-23 15:41:54 +0800481
Mike Frysingerae6cb082019-08-27 01:10:59 -0400482 def ValidateOptions(self, opt, args):
Victor Boivie297e7c62012-10-05 14:50:05 +0200483 if opt.reference:
Samuel Hollandbaa00092018-01-22 10:57:29 -0600484 opt.reference = os.path.expanduser(opt.reference)
Victor Boivie297e7c62012-10-05 14:50:05 +0200485
Julien Campergue335f5ef2013-10-16 11:02:35 +0200486 # Check this here, else manifest will be tagged "not new" and init won't be
487 # possible anymore without removing the .repo/manifests directory.
488 if opt.archive and opt.mirror:
Mike Frysingerae6cb082019-08-27 01:10:59 -0400489 self.OptionParser.error('--mirror and --archive cannot be used together.')
490
491 def Execute(self, opt, args):
Mike Frysinger82caef62020-02-11 18:51:08 -0500492 git_require(MIN_GIT_VERSION_HARD, fail=True)
493 if not git_require(MIN_GIT_VERSION_SOFT):
494 print('repo: warning: git-%s+ will soon be required; please upgrade your '
495 'version of git to maintain support.'
496 % ('.'.join(str(x) for x in MIN_GIT_VERSION_SOFT),),
497 file=sys.stderr)
Julien Campergue335f5ef2013-10-16 11:02:35 +0200498
Mike Frysingeredd3d452020-02-21 23:55:07 -0500499 opt.quiet = opt.output_mode is False
500 opt.verbose = opt.output_mode is True
501
Mike Frysinger7936ce82020-02-29 02:53:41 -0500502 rp = self.manifest.repoProject
503
504 # Handle new --repo-url requests.
505 if opt.repo_url:
506 remote = rp.GetRemote('origin')
507 remote.url = opt.repo_url
508 remote.Save()
509
Mike Frysinger3599cc32020-02-29 02:53:41 -0500510 # Handle new --repo-rev requests.
511 if opt.repo_rev:
512 wrapper = Wrapper()
513 remote_ref, rev = wrapper.check_repo_rev(
514 rp.gitdir, opt.repo_rev, repo_verify=opt.repo_verify, quiet=opt.quiet)
515 branch = rp.GetBranch('default')
516 branch.merge = remote_ref
517 rp.work_git.update_ref('refs/heads/default', rev)
518 branch.Save()
519
Mike Frysinger979d5bd2020-02-09 02:28:34 -0500520 if opt.worktree:
521 # Older versions of git supported worktree, but had dangerous gc bugs.
522 git_require((2, 15, 0), fail=True, msg='git gc worktree corruption')
523
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700524 self._SyncManifest(opt)
525 self._LinkManifest(opt.manifest_name)
526
Shawn O. Pearce8630f392009-03-19 10:17:12 -0700527 if os.isatty(0) and os.isatty(1) and not self.manifest.IsMirror:
Mike Frysinger0b888912020-02-21 22:48:40 -0500528 if opt.config_name or self._ShouldConfigureUser(opt):
529 self._ConfigureUser(opt)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700530 self._ConfigureColor()
531
Mike Frysinger0b888912020-02-21 22:48:40 -0500532 self._DisplayResult(opt)