blob: 1bcf54635dd6184a8427c8715f6e9956c6f8d5c2 [file] [log] [blame]
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001# Copyright (C) 2008 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
Mike Frysinger979d5bd2020-02-09 02:28:34 -050015import optparse
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070016import os
Conley Owensd21720d2012-04-16 11:02:21 -070017import platform
Conley Owens971de8e2012-04-16 10:36:08 -070018import re
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070019import sys
Mike Frysingeracf63b22019-06-13 02:24:21 -040020import urllib.parse
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070021
22from color import Coloring
Shawn O. Pearcec95583b2009-03-03 17:47:06 -080023from command import InteractiveCommand, MirrorSafeCommand
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070024from error import ManifestParseError
Jonathan Nieder93719792015-03-17 11:29:58 -070025from project import SyncBuffer
Shawn O. Pearcef322b9a2011-09-19 14:50:58 -070026from git_config import GitConfig
Mike Frysinger82caef62020-02-11 18:51:08 -050027from git_command import git_require, MIN_GIT_VERSION_SOFT, MIN_GIT_VERSION_HARD
Renaud Paquaya65adf72016-11-03 10:37:53 -070028import platform_utils
Mike Frysinger3599cc32020-02-29 02:53:41 -050029from wrapper import Wrapper
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070030
David Pursehouse819827a2020-02-12 15:20:19 +090031
Shawn O. Pearcec95583b2009-03-03 17:47:06 -080032class Init(InteractiveCommand, MirrorSafeCommand):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070033 common = True
34 helpSummary = "Initialize repo in the current directory"
35 helpUsage = """
36%prog [options]
37"""
38 helpDescription = """
39The '%prog' command is run once to install and initialize repo.
40The latest repo source code and manifest collection is downloaded
41from the server and is installed in the .repo/ directory in the
42current working directory.
43
Shawn O. Pearce77bb4af2009-04-18 11:33:32 -070044The optional -b argument can be used to select the manifest branch
Mike Frysinger50a81de2020-09-06 15:51:21 -040045to checkout and use. If no branch is specified, the remote's default
46branch is used.
Shawn O. Pearce77bb4af2009-04-18 11:33:32 -070047
48The optional -m argument can be used to specify an alternate manifest
49to be used. If no manifest is specified, the manifest default.xml
50will be used.
51
Shawn O. Pearce88443382010-10-08 10:02:09 +020052The --reference option can be used to point to a directory that
53has the content of a --mirror sync. This will make the working
54directory use as much data as possible from the local reference
55directory when fetching from the server. This will make the sync
56go a lot faster by reducing data traffic on the network.
57
Nikolai Merinov09f0abb2018-10-19 15:07:05 +050058The --dissociate option can be used to borrow the objects from
59the directory specified with the --reference option only to reduce
60network transfer, and stop borrowing from them after a first clone
61is made by making necessary local copies of borrowed objects.
62
Hu xiuyun9711a982015-12-11 11:16:41 +080063The --no-clone-bundle option disables any attempt to use
64$URL/clone.bundle to bootstrap a new Git repository from a
65resumeable bundle file on a content delivery network. This
66may be necessary if there are problems with the local Python
67HTTP client or proxy configuration, but the Git binary works.
Shawn O. Pearce88443382010-10-08 10:02:09 +020068
Mike Frysingerb8f7bb02018-10-10 01:05:11 -040069# Switching Manifest Branches
Shawn O. Pearce77bb4af2009-04-18 11:33:32 -070070
71To switch to another manifest branch, `repo init -b otherbranch`
72may be used in an existing client. However, as this only updates the
73manifest, a subsequent `repo sync` (or `repo sync -d`) is necessary
74to update the working directory files.
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070075"""
76
Mike Frysinger66098f72020-02-05 00:01:59 -050077 def _Options(self, p, gitc_init=False):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070078 # Logging
79 g = p.add_option_group('Logging options')
Mike Frysingeredd3d452020-02-21 23:55:07 -050080 g.add_option('-v', '--verbose',
81 dest='output_mode', action='store_true',
82 help='show all output')
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070083 g.add_option('-q', '--quiet',
Mike Frysingeredd3d452020-02-21 23:55:07 -050084 dest='output_mode', action='store_false',
85 help='only show errors')
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070086
87 # Manifest
88 g = p.add_option_group('Manifest options')
89 g.add_option('-u', '--manifest-url',
Shawn O. Pearce34fb20f2011-11-30 13:41:02 -080090 dest='manifest_url',
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070091 help='manifest repository location', metavar='URL')
92 g.add_option('-b', '--manifest-branch',
93 dest='manifest_branch',
94 help='manifest branch or revision', metavar='REVISION')
Mike Frysinger66098f72020-02-05 00:01:59 -050095 cbr_opts = ['--current-branch']
96 # The gitc-init subcommand allocates -c itself, but a lot of init users
97 # want -c, so try to satisfy both as best we can.
Dan Willemsen93293ca2020-02-06 17:00:00 -080098 if not gitc_init:
Mike Frysinger66098f72020-02-05 00:01:59 -050099 cbr_opts += ['-c']
100 g.add_option(*cbr_opts,
Naseer Ahmedf4dda9a2016-12-01 18:49:54 -0500101 dest='current_branch_only', action='store_true',
102 help='fetch only current manifest branch from server')
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700103 g.add_option('-m', '--manifest-name',
104 dest='manifest_name', default='default.xml',
105 help='initial manifest file', metavar='NAME.xml')
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800106 g.add_option('--mirror',
107 dest='mirror', action='store_true',
David Pursehouse3d07da82012-08-15 14:22:08 +0900108 help='create a replica of the remote repositories '
109 'rather than a client working directory')
Shawn O. Pearce88443382010-10-08 10:02:09 +0200110 g.add_option('--reference',
111 dest='reference',
112 help='location of mirror directory', metavar='DIR')
Nikolai Merinov09f0abb2018-10-19 15:07:05 +0500113 g.add_option('--dissociate',
114 dest='dissociate', action='store_true',
115 help='dissociate from reference mirrors after clone')
Doug Anderson30d45292011-05-04 15:01:04 -0700116 g.add_option('--depth', type='int', default=None,
117 dest='depth',
118 help='create a shallow clone with given depth; see git clone')
Xin Li745be2e2019-06-03 11:24:30 -0700119 g.add_option('--partial-clone', action='store_true',
120 dest='partial_clone',
121 help='perform partial clone (https://git-scm.com/'
122 'docs/gitrepository-layout#_code_partialclone_code)')
123 g.add_option('--clone-filter', action='store', default='blob:none',
124 dest='clone_filter',
125 help='filter for use with --partial-clone [default: %default]')
Mike Frysinger979d5bd2020-02-09 02:28:34 -0500126 # TODO(vapier): Expose option with real help text once this has been in the
127 # wild for a while w/out significant bug reports. Goal is by ~Sep 2020.
128 g.add_option('--worktree', action='store_true',
129 help=optparse.SUPPRESS_HELP)
Julien Campergue335f5ef2013-10-16 11:02:35 +0200130 g.add_option('--archive',
131 dest='archive', action='store_true',
132 help='checkout an archive instead of a git repository for '
133 'each project. See git archive.')
Martin Kellye4e94d22017-03-21 16:05:12 -0700134 g.add_option('--submodules',
135 dest='submodules', action='store_true',
136 help='sync any submodules associated with the manifest repo')
Colin Cross5acde752012-03-28 20:15:45 -0700137 g.add_option('-g', '--groups',
David Holmer0a1c6a12012-11-14 19:19:00 -0500138 dest='groups', default='default',
139 help='restrict manifest projects to ones with specified '
140 'group(s) [default|all|G1,G2,G3|G4,-G5,-G6]',
Colin Cross5acde752012-03-28 20:15:45 -0700141 metavar='GROUP')
Conley Owensd21720d2012-04-16 11:02:21 -0700142 g.add_option('-p', '--platform',
143 dest='platform', default='auto',
Conley Owensbb1b5f52012-08-13 13:11:18 -0700144 help='restrict manifest projects to ones with a specified '
Conley Owensd21720d2012-04-16 11:02:21 -0700145 'platform group [auto|all|none|linux|darwin|...]',
146 metavar='PLATFORM')
Xin Lid79a4bc2020-05-20 16:03:45 -0700147 g.add_option('--clone-bundle', action='store_true',
148 help='force use of /clone.bundle on HTTP/HTTPS (default if not --partial-clone)')
Hu xiuyun9711a982015-12-11 11:16:41 +0800149 g.add_option('--no-clone-bundle',
Xin Lid79a4bc2020-05-20 16:03:45 -0700150 dest='clone_bundle', action='store_false',
151 help='disable use of /clone.bundle on HTTP/HTTPS (default if --partial-clone)')
Naseer Ahmedf4dda9a2016-12-01 18:49:54 -0500152 g.add_option('--no-tags',
Mike Frysingerc58ec4d2020-02-17 14:36:08 -0500153 dest='tags', default=True, action='store_false',
Naseer Ahmedf4dda9a2016-12-01 18:49:54 -0500154 help="don't fetch tags in the manifest")
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700155
156 # Tool
Shawn O. Pearcefd89b672009-04-18 11:28:57 -0700157 g = p.add_option_group('repo Version options')
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700158 g.add_option('--repo-url',
159 dest='repo_url',
160 help='repo repository location', metavar='URL')
Mike Frysinger58ac1672020-03-14 14:35:26 -0400161 g.add_option('--repo-rev', metavar='REV',
162 help='repo branch or revision')
163 g.add_option('--repo-branch', dest='repo_rev',
164 help=optparse.SUPPRESS_HELP)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700165 g.add_option('--no-repo-verify',
Mike Frysingerc58ec4d2020-02-17 14:36:08 -0500166 dest='repo_verify', default=True, action='store_false',
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700167 help='do not verify repo source code')
168
Victor Boivie841be342011-04-05 11:31:10 +0200169 # Other
170 g = p.add_option_group('Other options')
171 g.add_option('--config-name',
172 dest='config_name', action="store_true", default=False,
173 help='Always prompt for name/e-mail')
174
David Pursehouse3f5ea0b2012-11-17 03:13:09 +0900175 def _RegisteredEnvironmentOptions(self):
176 return {'REPO_MANIFEST_URL': 'manifest_url',
177 'REPO_MIRROR_LOCATION': 'reference'}
178
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700179 def _SyncManifest(self, opt):
180 m = self.manifest.manifestProject
Shawn O. Pearce5470df62009-03-09 18:51:58 -0700181 is_new = not m.Exists
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700182
Shawn O. Pearce5470df62009-03-09 18:51:58 -0700183 if is_new:
Shawn O. Pearce34fb20f2011-11-30 13:41:02 -0800184 if not opt.manifest_url:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700185 print('fatal: manifest url (-u) is required.', file=sys.stderr)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700186 sys.exit(1)
187
188 if not opt.quiet:
Mike Frysingerdcbfadf2020-02-22 00:04:39 -0500189 print('Downloading manifest from %s' %
190 (GitConfig.ForUser().UrlInsteadOf(opt.manifest_url),),
Sarah Owenscecd1d82012-11-01 22:59:27 -0700191 file=sys.stderr)
Victor Boivie2b30e3a2012-10-05 12:37:58 +0200192
193 # The manifest project object doesn't keep track of the path on the
194 # server where this git is located, so let's save that here.
195 mirrored_manifest_git = None
196 if opt.reference:
Anthony King7993f3c2015-06-03 17:21:56 +0100197 manifest_git_path = urllib.parse.urlparse(opt.manifest_url).path[1:]
Victor Boivie2b30e3a2012-10-05 12:37:58 +0200198 mirrored_manifest_git = os.path.join(opt.reference, manifest_git_path)
199 if not mirrored_manifest_git.endswith(".git"):
200 mirrored_manifest_git += ".git"
201 if not os.path.exists(mirrored_manifest_git):
Samuel Holland5f0e57d2018-01-22 11:00:24 -0600202 mirrored_manifest_git = os.path.join(opt.reference,
203 '.repo/manifests.git')
Victor Boivie2b30e3a2012-10-05 12:37:58 +0200204
205 m._InitGitDir(mirror_git=mirrored_manifest_git)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700206
Nasser Grainawid92464e2019-05-21 10:41:35 -0600207 self._ConfigureDepth(opt)
208
Mike Frysinger50a81de2020-09-06 15:51:21 -0400209 # Set the remote URL before the remote branch as we might need it below.
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700210 if opt.manifest_url:
211 r = m.GetRemote(m.remote.name)
212 r.url = opt.manifest_url
213 r.ResetFetch()
214 r.Save()
215
Mike Frysinger50a81de2020-09-06 15:51:21 -0400216 if opt.manifest_branch:
217 m.revisionExpr = opt.manifest_branch
218 else:
219 if is_new:
220 default_branch = m.ResolveRemoteHead()
221 if default_branch is None:
222 # If the remote doesn't have HEAD configured, default to master.
223 default_branch = 'refs/heads/master'
224 m.revisionExpr = default_branch
225 else:
226 m.PreSync()
227
David Pursehouse1d947b32012-10-25 12:23:11 +0900228 groups = re.split(r'[,\s]+', opt.groups)
Pascal Muetschardc2a64dd2015-10-22 13:26:36 -0700229 all_platforms = ['linux', 'darwin', 'windows']
Conley Owensd21720d2012-04-16 11:02:21 -0700230 platformize = lambda x: 'platform-' + x
231 if opt.platform == 'auto':
232 if (not opt.mirror and
David Pursehouseabdf7502020-02-12 14:58:39 +0900233 not m.config.GetString('repo.mirror') == 'true'):
Conley Owensd21720d2012-04-16 11:02:21 -0700234 groups.append(platformize(platform.system().lower()))
235 elif opt.platform == 'all':
Colin Cross54657272012-04-23 13:39:48 -0700236 groups.extend(map(platformize, all_platforms))
Conley Owensd21720d2012-04-16 11:02:21 -0700237 elif opt.platform in all_platforms:
Pascal Muetschardc2a64dd2015-10-22 13:26:36 -0700238 groups.append(platformize(opt.platform))
Conley Owensd21720d2012-04-16 11:02:21 -0700239 elif opt.platform != 'none':
Sarah Owenscecd1d82012-11-01 22:59:27 -0700240 print('fatal: invalid platform flag', file=sys.stderr)
Conley Owensd21720d2012-04-16 11:02:21 -0700241 sys.exit(1)
242
Conley Owens971de8e2012-04-16 10:36:08 -0700243 groups = [x for x in groups if x]
244 groupstr = ','.join(groups)
David Holmer0a1c6a12012-11-14 19:19:00 -0500245 if opt.platform == 'auto' and groupstr == 'default,platform-' + platform.system().lower():
Conley Owens971de8e2012-04-16 10:36:08 -0700246 groupstr = None
247 m.config.SetString('manifest.groups', groupstr)
Colin Cross5acde752012-03-28 20:15:45 -0700248
Shawn O. Pearce88443382010-10-08 10:02:09 +0200249 if opt.reference:
250 m.config.SetString('repo.reference', opt.reference)
251
Nikolai Merinov09f0abb2018-10-19 15:07:05 +0500252 if opt.dissociate:
253 m.config.SetString('repo.dissociate', 'true')
254
Mike Frysinger979d5bd2020-02-09 02:28:34 -0500255 if opt.worktree:
256 if opt.mirror:
257 print('fatal: --mirror and --worktree are incompatible',
258 file=sys.stderr)
259 sys.exit(1)
260 if opt.submodules:
261 print('fatal: --submodules and --worktree are incompatible',
262 file=sys.stderr)
263 sys.exit(1)
264 m.config.SetString('repo.worktree', 'true')
265 if is_new:
266 m.use_git_worktrees = True
267 print('warning: --worktree is experimental!', file=sys.stderr)
268
Julien Campergue335f5ef2013-10-16 11:02:35 +0200269 if opt.archive:
270 if is_new:
271 m.config.SetString('repo.archive', 'true')
272 else:
273 print('fatal: --archive is only supported when initializing a new '
274 'workspace.', file=sys.stderr)
275 print('Either delete the .repo folder in this workspace, or initialize '
276 'in another location.', file=sys.stderr)
277 sys.exit(1)
278
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800279 if opt.mirror:
Shawn O. Pearce5470df62009-03-09 18:51:58 -0700280 if is_new:
281 m.config.SetString('repo.mirror', 'true')
282 else:
David Pursehouse25470982012-11-21 14:41:58 +0900283 print('fatal: --mirror is only supported when initializing a new '
284 'workspace.', file=sys.stderr)
285 print('Either delete the .repo folder in this workspace, or initialize '
286 'in another location.', file=sys.stderr)
Shawn O. Pearce5470df62009-03-09 18:51:58 -0700287 sys.exit(1)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800288
Xin Li745be2e2019-06-03 11:24:30 -0700289 if opt.partial_clone:
290 if opt.mirror:
291 print('fatal: --mirror and --partial-clone are mutually exclusive',
292 file=sys.stderr)
293 sys.exit(1)
294 m.config.SetString('repo.partialclone', 'true')
295 if opt.clone_filter:
296 m.config.SetString('repo.clonefilter', opt.clone_filter)
297 else:
298 opt.clone_filter = None
299
Xin Lid79a4bc2020-05-20 16:03:45 -0700300 if opt.clone_bundle is None:
301 opt.clone_bundle = False if opt.partial_clone else True
302 else:
303 m.config.SetString('repo.clonebundle', 'true' if opt.clone_bundle else 'false')
304
Martin Kellye4e94d22017-03-21 16:05:12 -0700305 if opt.submodules:
306 m.config.SetString('repo.submodules', 'true')
307
Mike Frysingeredd3d452020-02-21 23:55:07 -0500308 if not m.Sync_NetworkHalf(is_new=is_new, quiet=opt.quiet, verbose=opt.verbose,
Mike Frysingerc58ec4d2020-02-17 14:36:08 -0500309 clone_bundle=opt.clone_bundle,
David Pursehouseabdf7502020-02-12 14:58:39 +0900310 current_branch_only=opt.current_branch_only,
Mike Frysingerc58ec4d2020-02-17 14:36:08 -0500311 tags=opt.tags, submodules=opt.submodules,
David Pursehouseabdf7502020-02-12 14:58:39 +0900312 clone_filter=opt.clone_filter):
Shawn O. Pearce1fc99f42009-03-17 08:06:18 -0700313 r = m.GetRemote(m.remote.name)
Sarah Owenscecd1d82012-11-01 22:59:27 -0700314 print('fatal: cannot obtain manifest %s' % r.url, file=sys.stderr)
Doug Anderson2630dd92011-04-07 13:36:30 -0700315
316 # Better delete the manifest git dir if we created it; otherwise next
317 # time (when user fixes problems) we won't go through the "is_new" logic.
318 if is_new:
Renaud Paquaya65adf72016-11-03 10:37:53 -0700319 platform_utils.rmtree(m.gitdir)
Shawn O. Pearce1fc99f42009-03-17 08:06:18 -0700320 sys.exit(1)
321
Florian Vallee5d016502012-06-07 17:19:26 +0200322 if opt.manifest_branch:
Martin Kelly224a31a2017-07-10 14:46:25 -0700323 m.MetaBranchSwitch(submodules=opt.submodules)
Florian Vallee5d016502012-06-07 17:19:26 +0200324
Shawn O. Pearce350cde42009-04-16 11:21:18 -0700325 syncbuf = SyncBuffer(m.config)
Martin Kellye4e94d22017-03-21 16:05:12 -0700326 m.Sync_LocalHalf(syncbuf, submodules=opt.submodules)
Shawn O. Pearce350cde42009-04-16 11:21:18 -0700327 syncbuf.Finish()
328
Shawn O. Pearcedf018832009-03-17 08:15:27 -0700329 if is_new or m.CurrentBranch is None:
Shawn O. Pearce0a389e92009-04-10 16:21:18 -0700330 if not m.StartBranch('default'):
Sarah Owenscecd1d82012-11-01 22:59:27 -0700331 print('fatal: cannot create default in manifest', file=sys.stderr)
Shawn O. Pearce0a389e92009-04-10 16:21:18 -0700332 sys.exit(1)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700333
334 def _LinkManifest(self, name):
335 if not name:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700336 print('fatal: manifest name (-m) is required.', file=sys.stderr)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700337 sys.exit(1)
338
339 try:
340 self.manifest.Link(name)
Sarah Owensa5be53f2012-09-09 15:37:57 -0700341 except ManifestParseError as e:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700342 print("fatal: manifest '%s' not available" % name, file=sys.stderr)
343 print('fatal: %s' % str(e), file=sys.stderr)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700344 sys.exit(1)
345
Shawn O. Pearce37dbf2b2009-07-02 10:53:04 -0700346 def _Prompt(self, prompt, value):
Mike Frysingerab85fe72019-07-04 17:35:11 -0400347 print('%-10s [%s]: ' % (prompt, value), end='')
348 # TODO: When we require Python 3, use flush=True w/print above.
349 sys.stdout.flush()
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700350 a = sys.stdin.readline().strip()
Shawn O. Pearce37dbf2b2009-07-02 10:53:04 -0700351 if a == '':
352 return value
353 return a
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700354
Mike Frysinger0b888912020-02-21 22:48:40 -0500355 def _ShouldConfigureUser(self, opt):
Mike Frysinger8c1e9cb2020-09-06 14:53:18 -0400356 gc = self.client.globalConfig
Victor Boivie841be342011-04-05 11:31:10 +0200357 mp = self.manifest.manifestProject
358
359 # If we don't have local settings, get from global.
360 if not mp.config.Has('user.name') or not mp.config.Has('user.email'):
361 if not gc.Has('user.name') or not gc.Has('user.email'):
362 return True
363
364 mp.config.SetString('user.name', gc.GetString('user.name'))
365 mp.config.SetString('user.email', gc.GetString('user.email'))
366
Mike Frysinger0b888912020-02-21 22:48:40 -0500367 if not opt.quiet:
368 print()
369 print('Your identity is: %s <%s>' % (mp.config.GetString('user.name'),
370 mp.config.GetString('user.email')))
371 print("If you want to change this, please re-run 'repo init' with --config-name")
Victor Boivie841be342011-04-05 11:31:10 +0200372 return False
373
Mike Frysinger0b888912020-02-21 22:48:40 -0500374 def _ConfigureUser(self, opt):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700375 mp = self.manifest.manifestProject
376
Shawn O. Pearce37dbf2b2009-07-02 10:53:04 -0700377 while True:
Mike Frysinger0b888912020-02-21 22:48:40 -0500378 if not opt.quiet:
379 print()
David Pursehouse54a4e602020-02-12 14:31:05 +0900380 name = self._Prompt('Your Name', mp.UserName)
Shawn O. Pearce37dbf2b2009-07-02 10:53:04 -0700381 email = self._Prompt('Your Email', mp.UserEmail)
382
Mike Frysinger0b888912020-02-21 22:48:40 -0500383 if not opt.quiet:
384 print()
Sarah Owenscecd1d82012-11-01 22:59:27 -0700385 print('Your identity is: %s <%s>' % (name, email))
Mike Frysingerab85fe72019-07-04 17:35:11 -0400386 print('is this correct [y/N]? ', end='')
387 # TODO: When we require Python 3, use flush=True w/print above.
388 sys.stdout.flush()
David Pursehousefc241242012-11-14 09:19:39 +0900389 a = sys.stdin.readline().strip().lower()
Nico Sallembien6d7508b2010-04-01 11:03:53 -0700390 if a in ('yes', 'y', 't', 'true'):
Shawn O. Pearce37dbf2b2009-07-02 10:53:04 -0700391 break
392
393 if name != mp.UserName:
394 mp.config.SetString('user.name', name)
395 if email != mp.UserEmail:
396 mp.config.SetString('user.email', email)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700397
398 def _HasColorSet(self, gc):
399 for n in ['ui', 'diff', 'status']:
400 if gc.Has('color.%s' % n):
401 return True
402 return False
403
404 def _ConfigureColor(self):
Mike Frysinger8c1e9cb2020-09-06 14:53:18 -0400405 gc = self.client.globalConfig
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700406 if self._HasColorSet(gc):
407 return
408
409 class _Test(Coloring):
410 def __init__(self):
411 Coloring.__init__(self, gc, 'test color display')
412 self._on = True
413 out = _Test()
414
Sarah Owenscecd1d82012-11-01 22:59:27 -0700415 print()
416 print("Testing colorized output (for 'repo diff', 'repo status'):")
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700417
David Pursehouse8f62fb72012-11-14 12:09:38 +0900418 for c in ['black', 'red', 'green', 'yellow', 'blue', 'magenta', 'cyan']:
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700419 out.write(' ')
420 out.printer(fg=c)(' %-6s ', c)
421 out.write(' ')
422 out.printer(fg='white', bg='black')(' %s ' % 'white')
423 out.nl()
424
David Pursehouse8f62fb72012-11-14 12:09:38 +0900425 for c in ['bold', 'dim', 'ul', 'reverse']:
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700426 out.write(' ')
427 out.printer(fg='black', attr=c)(' %-6s ', c)
428 out.nl()
429
Mike Frysingerab85fe72019-07-04 17:35:11 -0400430 print('Enable color display in this user account (y/N)? ', end='')
431 # TODO: When we require Python 3, use flush=True w/print above.
432 sys.stdout.flush()
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700433 a = sys.stdin.readline().strip().lower()
434 if a in ('y', 'yes', 't', 'true', 'on'):
435 gc.SetString('color.ui', 'auto')
436
Doug Anderson30d45292011-05-04 15:01:04 -0700437 def _ConfigureDepth(self, opt):
438 """Configure the depth we'll sync down.
439
440 Args:
441 opt: Options from optparse. We care about opt.depth.
442 """
443 # Opt.depth will be non-None if user actually passed --depth to repo init.
444 if opt.depth is not None:
445 if opt.depth > 0:
446 # Positive values will set the depth.
447 depth = str(opt.depth)
448 else:
449 # Negative numbers will clear the depth; passing None to SetString
450 # will do that.
451 depth = None
452
453 # We store the depth in the main manifest project.
454 self.manifest.manifestProject.config.SetString('repo.depth', depth)
455
Mike Frysinger0b888912020-02-21 22:48:40 -0500456 def _DisplayResult(self, opt):
Yang Zhenhui75cc3532012-10-23 15:41:54 +0800457 if self.manifest.IsMirror:
458 init_type = 'mirror '
459 else:
460 init_type = ''
461
Mike Frysinger0b888912020-02-21 22:48:40 -0500462 if not opt.quiet:
463 print()
464 print('repo %shas been initialized in %s' %
465 (init_type, self.manifest.topdir))
Yang Zhenhui75cc3532012-10-23 15:41:54 +0800466
467 current_dir = os.getcwd()
468 if current_dir != self.manifest.topdir:
David Pursehouse35765962013-01-29 09:49:48 +0900469 print('If this is not the directory in which you want to initialize '
Sarah Owenscecd1d82012-11-01 22:59:27 -0700470 'repo, please run:')
471 print(' rm -r %s/.repo' % self.manifest.topdir)
472 print('and try again.')
Yang Zhenhui75cc3532012-10-23 15:41:54 +0800473
Mike Frysingerae6cb082019-08-27 01:10:59 -0400474 def ValidateOptions(self, opt, args):
Victor Boivie297e7c62012-10-05 14:50:05 +0200475 if opt.reference:
Samuel Hollandbaa00092018-01-22 10:57:29 -0600476 opt.reference = os.path.expanduser(opt.reference)
Victor Boivie297e7c62012-10-05 14:50:05 +0200477
Julien Campergue335f5ef2013-10-16 11:02:35 +0200478 # Check this here, else manifest will be tagged "not new" and init won't be
479 # possible anymore without removing the .repo/manifests directory.
480 if opt.archive and opt.mirror:
Mike Frysingerae6cb082019-08-27 01:10:59 -0400481 self.OptionParser.error('--mirror and --archive cannot be used together.')
482
Mike Frysinger0578ebf2020-08-27 01:50:12 -0400483 if args:
484 self.OptionParser.error('init takes no arguments')
485
Mike Frysingerae6cb082019-08-27 01:10:59 -0400486 def Execute(self, opt, args):
Mike Frysinger82caef62020-02-11 18:51:08 -0500487 git_require(MIN_GIT_VERSION_HARD, fail=True)
488 if not git_require(MIN_GIT_VERSION_SOFT):
489 print('repo: warning: git-%s+ will soon be required; please upgrade your '
490 'version of git to maintain support.'
491 % ('.'.join(str(x) for x in MIN_GIT_VERSION_SOFT),),
492 file=sys.stderr)
Julien Campergue335f5ef2013-10-16 11:02:35 +0200493
Mike Frysingeredd3d452020-02-21 23:55:07 -0500494 opt.quiet = opt.output_mode is False
495 opt.verbose = opt.output_mode is True
496
Mike Frysinger7936ce82020-02-29 02:53:41 -0500497 rp = self.manifest.repoProject
498
499 # Handle new --repo-url requests.
500 if opt.repo_url:
501 remote = rp.GetRemote('origin')
502 remote.url = opt.repo_url
503 remote.Save()
504
Mike Frysinger3599cc32020-02-29 02:53:41 -0500505 # Handle new --repo-rev requests.
506 if opt.repo_rev:
507 wrapper = Wrapper()
508 remote_ref, rev = wrapper.check_repo_rev(
509 rp.gitdir, opt.repo_rev, repo_verify=opt.repo_verify, quiet=opt.quiet)
510 branch = rp.GetBranch('default')
511 branch.merge = remote_ref
Mike Frysinger5e2f32f2020-12-05 22:57:19 -0500512 rp.work_git.reset('--hard', rev)
Mike Frysinger3599cc32020-02-29 02:53:41 -0500513 branch.Save()
514
Mike Frysinger979d5bd2020-02-09 02:28:34 -0500515 if opt.worktree:
516 # Older versions of git supported worktree, but had dangerous gc bugs.
517 git_require((2, 15, 0), fail=True, msg='git gc worktree corruption')
518
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700519 self._SyncManifest(opt)
520 self._LinkManifest(opt.manifest_name)
521
Shawn O. Pearce8630f392009-03-19 10:17:12 -0700522 if os.isatty(0) and os.isatty(1) and not self.manifest.IsMirror:
Mike Frysinger0b888912020-02-21 22:48:40 -0500523 if opt.config_name or self._ShouldConfigureUser(opt):
524 self._ConfigureUser(opt)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700525 self._ConfigureColor()
526
Mike Frysinger0b888912020-02-21 22:48:40 -0500527 self._DisplayResult(opt)