blob: 5671fc244e0c251457813fc01536b51c305e3099 [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
15import os
Conley Owensd21720d2012-04-16 11:02:21 -070016import platform
Conley Owens971de8e2012-04-16 10:36:08 -070017import re
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070018import sys
Mike Frysingeracf63b22019-06-13 02:24:21 -040019import urllib.parse
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070020
21from color import Coloring
Shawn O. Pearcec95583b2009-03-03 17:47:06 -080022from command import InteractiveCommand, MirrorSafeCommand
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070023from error import ManifestParseError
Jonathan Nieder93719792015-03-17 11:29:58 -070024from project import SyncBuffer
Shawn O. Pearcef322b9a2011-09-19 14:50:58 -070025from git_config import GitConfig
Mike Frysinger82caef62020-02-11 18:51:08 -050026from git_command import git_require, MIN_GIT_VERSION_SOFT, MIN_GIT_VERSION_HARD
Raman Tenneti21dce3d2021-02-09 00:26:31 -080027import git_superproject
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):
Mike Frysinger4f210542021-06-14 16:05:19 -040033 COMMON = True
Mike Frysinger401c6f02021-02-18 15:20:15 -050034 helpSummary = "Initialize a repo client checkout in the current directory"
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070035 helpUsage = """
Mike Frysinger401c6f02021-02-18 15:20:15 -050036%prog [options] [manifest url]
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070037"""
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
Mike Frysinger401c6f02021-02-18 15:20:15 -050044When creating a new checkout, the manifest URL is the only required setting.
45It may be specified using the --manifest-url option, or as the first optional
46argument.
47
Shawn O. Pearce77bb4af2009-04-18 11:33:32 -070048The optional -b argument can be used to select the manifest branch
Mike Frysinger50a81de2020-09-06 15:51:21 -040049to checkout and use. If no branch is specified, the remote's default
Mike Frysinger23882b32021-02-23 15:43:07 -050050branch is used. This is equivalent to using -b HEAD.
Shawn O. Pearce77bb4af2009-04-18 11:33:32 -070051
52The optional -m argument can be used to specify an alternate manifest
53to be used. If no manifest is specified, the manifest default.xml
54will be used.
55
Shawn O. Pearce88443382010-10-08 10:02:09 +020056The --reference option can be used to point to a directory that
57has the content of a --mirror sync. This will make the working
58directory use as much data as possible from the local reference
59directory when fetching from the server. This will make the sync
60go a lot faster by reducing data traffic on the network.
61
Nikolai Merinov09f0abb2018-10-19 15:07:05 +050062The --dissociate option can be used to borrow the objects from
63the directory specified with the --reference option only to reduce
64network transfer, and stop borrowing from them after a first clone
65is made by making necessary local copies of borrowed objects.
66
Hu xiuyun9711a982015-12-11 11:16:41 +080067The --no-clone-bundle option disables any attempt to use
68$URL/clone.bundle to bootstrap a new Git repository from a
69resumeable bundle file on a content delivery network. This
70may be necessary if there are problems with the local Python
71HTTP client or proxy configuration, but the Git binary works.
Shawn O. Pearce88443382010-10-08 10:02:09 +020072
Mike Frysingerb8f7bb02018-10-10 01:05:11 -040073# Switching Manifest Branches
Shawn O. Pearce77bb4af2009-04-18 11:33:32 -070074
75To switch to another manifest branch, `repo init -b otherbranch`
76may be used in an existing client. However, as this only updates the
77manifest, a subsequent `repo sync` (or `repo sync -d`) is necessary
78to update the working directory files.
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070079"""
80
Mike Frysinger9180a072021-04-13 14:57:40 -040081 def _CommonOptions(self, p):
82 """Disable due to re-use of Wrapper()."""
83
Mike Frysinger66098f72020-02-05 00:01:59 -050084 def _Options(self, p, gitc_init=False):
Mike Frysinger9a734a32021-04-08 19:14:15 -040085 Wrapper().InitParser(p, gitc_init=gitc_init)
Victor Boivie841be342011-04-05 11:31:10 +020086
David Pursehouse3f5ea0b2012-11-17 03:13:09 +090087 def _RegisteredEnvironmentOptions(self):
88 return {'REPO_MANIFEST_URL': 'manifest_url',
89 'REPO_MIRROR_LOCATION': 'reference'}
90
Raman Tennetief99ec02021-03-04 10:29:40 -080091 def _CloneSuperproject(self, opt):
92 """Clone the superproject based on the superproject's url and branch.
93
94 Args:
95 opt: Program options returned from optparse. See _Options().
96 """
Raman Tenneti21dce3d2021-02-09 00:26:31 -080097 superproject = git_superproject.Superproject(self.manifest,
Raman Tennetief99ec02021-03-04 10:29:40 -080098 self.repodir,
Raman Tenneti784e16f2021-06-11 17:29:45 -070099 self.git_event_log,
Raman Tennetief99ec02021-03-04 10:29:40 -0800100 quiet=opt.quiet)
Raman Tenneti784e16f2021-06-11 17:29:45 -0700101 sync_result = superproject.Sync()
102 if not sync_result.success:
Raman Tenneti8db30d62021-07-06 21:30:06 -0700103 print('warning: git update of superproject failed, repo sync will not '
104 'use superproject to fetch source; while this error is not fatal, '
105 'and you can continue to run repo sync, please run repo init with '
106 'the --no-use-superproject option to stop seeing this warning',
107 file=sys.stderr)
108 if sync_result.fatal and opt.use_superproject is not None:
Raman Tenneti784e16f2021-06-11 17:29:45 -0700109 sys.exit(1)
Raman Tenneti21dce3d2021-02-09 00:26:31 -0800110
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700111 def _SyncManifest(self, opt):
112 m = self.manifest.manifestProject
Shawn O. Pearce5470df62009-03-09 18:51:58 -0700113 is_new = not m.Exists
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700114
Shawn O. Pearce5470df62009-03-09 18:51:58 -0700115 if is_new:
Shawn O. Pearce34fb20f2011-11-30 13:41:02 -0800116 if not opt.manifest_url:
Mike Frysinger401c6f02021-02-18 15:20:15 -0500117 print('fatal: manifest url is required.', file=sys.stderr)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700118 sys.exit(1)
119
120 if not opt.quiet:
Mike Frysingerdcbfadf2020-02-22 00:04:39 -0500121 print('Downloading manifest from %s' %
122 (GitConfig.ForUser().UrlInsteadOf(opt.manifest_url),),
Sarah Owenscecd1d82012-11-01 22:59:27 -0700123 file=sys.stderr)
Victor Boivie2b30e3a2012-10-05 12:37:58 +0200124
125 # The manifest project object doesn't keep track of the path on the
126 # server where this git is located, so let's save that here.
127 mirrored_manifest_git = None
128 if opt.reference:
Anthony King7993f3c2015-06-03 17:21:56 +0100129 manifest_git_path = urllib.parse.urlparse(opt.manifest_url).path[1:]
Victor Boivie2b30e3a2012-10-05 12:37:58 +0200130 mirrored_manifest_git = os.path.join(opt.reference, manifest_git_path)
131 if not mirrored_manifest_git.endswith(".git"):
132 mirrored_manifest_git += ".git"
133 if not os.path.exists(mirrored_manifest_git):
Samuel Holland5f0e57d2018-01-22 11:00:24 -0600134 mirrored_manifest_git = os.path.join(opt.reference,
135 '.repo/manifests.git')
Victor Boivie2b30e3a2012-10-05 12:37:58 +0200136
137 m._InitGitDir(mirror_git=mirrored_manifest_git)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700138
Nasser Grainawid92464e2019-05-21 10:41:35 -0600139 self._ConfigureDepth(opt)
140
Mike Frysinger50a81de2020-09-06 15:51:21 -0400141 # Set the remote URL before the remote branch as we might need it below.
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700142 if opt.manifest_url:
143 r = m.GetRemote(m.remote.name)
144 r.url = opt.manifest_url
145 r.ResetFetch()
146 r.Save()
147
Mike Frysinger50a81de2020-09-06 15:51:21 -0400148 if opt.manifest_branch:
Mike Frysinger23882b32021-02-23 15:43:07 -0500149 if opt.manifest_branch == 'HEAD':
150 opt.manifest_branch = m.ResolveRemoteHead()
151 if opt.manifest_branch is None:
152 print('fatal: unable to resolve HEAD', file=sys.stderr)
153 sys.exit(1)
Mike Frysinger50a81de2020-09-06 15:51:21 -0400154 m.revisionExpr = opt.manifest_branch
155 else:
156 if is_new:
157 default_branch = m.ResolveRemoteHead()
158 if default_branch is None:
159 # If the remote doesn't have HEAD configured, default to master.
160 default_branch = 'refs/heads/master'
161 m.revisionExpr = default_branch
162 else:
163 m.PreSync()
164
David Pursehouse1d947b32012-10-25 12:23:11 +0900165 groups = re.split(r'[,\s]+', opt.groups)
Pascal Muetschardc2a64dd2015-10-22 13:26:36 -0700166 all_platforms = ['linux', 'darwin', 'windows']
Conley Owensd21720d2012-04-16 11:02:21 -0700167 platformize = lambda x: 'platform-' + x
168 if opt.platform == 'auto':
169 if (not opt.mirror and
David Pursehouseabdf7502020-02-12 14:58:39 +0900170 not m.config.GetString('repo.mirror') == 'true'):
Conley Owensd21720d2012-04-16 11:02:21 -0700171 groups.append(platformize(platform.system().lower()))
172 elif opt.platform == 'all':
Colin Cross54657272012-04-23 13:39:48 -0700173 groups.extend(map(platformize, all_platforms))
Conley Owensd21720d2012-04-16 11:02:21 -0700174 elif opt.platform in all_platforms:
Pascal Muetschardc2a64dd2015-10-22 13:26:36 -0700175 groups.append(platformize(opt.platform))
Conley Owensd21720d2012-04-16 11:02:21 -0700176 elif opt.platform != 'none':
Sarah Owenscecd1d82012-11-01 22:59:27 -0700177 print('fatal: invalid platform flag', file=sys.stderr)
Conley Owensd21720d2012-04-16 11:02:21 -0700178 sys.exit(1)
179
Conley Owens971de8e2012-04-16 10:36:08 -0700180 groups = [x for x in groups if x]
181 groupstr = ','.join(groups)
Raman Tenneti080877e2021-03-09 15:19:06 -0800182 if opt.platform == 'auto' and groupstr == self.manifest.GetDefaultGroupsStr():
Conley Owens971de8e2012-04-16 10:36:08 -0700183 groupstr = None
184 m.config.SetString('manifest.groups', groupstr)
Colin Cross5acde752012-03-28 20:15:45 -0700185
Shawn O. Pearce88443382010-10-08 10:02:09 +0200186 if opt.reference:
187 m.config.SetString('repo.reference', opt.reference)
188
Nikolai Merinov09f0abb2018-10-19 15:07:05 +0500189 if opt.dissociate:
Mike Frysinger38867fb2021-02-09 23:14:41 -0500190 m.config.SetBoolean('repo.dissociate', opt.dissociate)
Nikolai Merinov09f0abb2018-10-19 15:07:05 +0500191
Mike Frysinger979d5bd2020-02-09 02:28:34 -0500192 if opt.worktree:
193 if opt.mirror:
194 print('fatal: --mirror and --worktree are incompatible',
195 file=sys.stderr)
196 sys.exit(1)
197 if opt.submodules:
198 print('fatal: --submodules and --worktree are incompatible',
199 file=sys.stderr)
200 sys.exit(1)
Mike Frysinger38867fb2021-02-09 23:14:41 -0500201 m.config.SetBoolean('repo.worktree', opt.worktree)
Mike Frysinger979d5bd2020-02-09 02:28:34 -0500202 if is_new:
203 m.use_git_worktrees = True
204 print('warning: --worktree is experimental!', file=sys.stderr)
205
Julien Campergue335f5ef2013-10-16 11:02:35 +0200206 if opt.archive:
207 if is_new:
Mike Frysinger38867fb2021-02-09 23:14:41 -0500208 m.config.SetBoolean('repo.archive', opt.archive)
Julien Campergue335f5ef2013-10-16 11:02:35 +0200209 else:
210 print('fatal: --archive is only supported when initializing a new '
211 'workspace.', file=sys.stderr)
212 print('Either delete the .repo folder in this workspace, or initialize '
213 'in another location.', file=sys.stderr)
214 sys.exit(1)
215
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800216 if opt.mirror:
Shawn O. Pearce5470df62009-03-09 18:51:58 -0700217 if is_new:
Mike Frysinger38867fb2021-02-09 23:14:41 -0500218 m.config.SetBoolean('repo.mirror', opt.mirror)
Shawn O. Pearce5470df62009-03-09 18:51:58 -0700219 else:
David Pursehouse25470982012-11-21 14:41:58 +0900220 print('fatal: --mirror is only supported when initializing a new '
221 'workspace.', file=sys.stderr)
222 print('Either delete the .repo folder in this workspace, or initialize '
223 'in another location.', file=sys.stderr)
Shawn O. Pearce5470df62009-03-09 18:51:58 -0700224 sys.exit(1)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800225
Raman Tenneti6a2f4fb2021-04-02 10:55:33 -0700226 if opt.partial_clone is not None:
Xin Li745be2e2019-06-03 11:24:30 -0700227 if opt.mirror:
228 print('fatal: --mirror and --partial-clone are mutually exclusive',
229 file=sys.stderr)
230 sys.exit(1)
Mike Frysinger38867fb2021-02-09 23:14:41 -0500231 m.config.SetBoolean('repo.partialclone', opt.partial_clone)
Xin Li745be2e2019-06-03 11:24:30 -0700232 if opt.clone_filter:
233 m.config.SetString('repo.clonefilter', opt.clone_filter)
Raman Tenneti6a2f4fb2021-04-02 10:55:33 -0700234 elif m.config.GetBoolean('repo.partialclone'):
235 opt.clone_filter = m.config.GetString('repo.clonefilter')
Xin Li745be2e2019-06-03 11:24:30 -0700236 else:
237 opt.clone_filter = None
238
Raman Tennetif32f2432021-04-12 20:57:25 -0700239 if opt.partial_clone_exclude is not None:
240 m.config.SetString('repo.partialcloneexclude', opt.partial_clone_exclude)
241
Xin Lid79a4bc2020-05-20 16:03:45 -0700242 if opt.clone_bundle is None:
243 opt.clone_bundle = False if opt.partial_clone else True
244 else:
Mike Frysinger38867fb2021-02-09 23:14:41 -0500245 m.config.SetBoolean('repo.clonebundle', opt.clone_bundle)
Xin Lid79a4bc2020-05-20 16:03:45 -0700246
Martin Kellye4e94d22017-03-21 16:05:12 -0700247 if opt.submodules:
Mike Frysinger38867fb2021-02-09 23:14:41 -0500248 m.config.SetBoolean('repo.submodules', opt.submodules)
Martin Kellye4e94d22017-03-21 16:05:12 -0700249
Raman Tenneti21dce3d2021-02-09 00:26:31 -0800250 if opt.use_superproject is not None:
251 m.config.SetBoolean('repo.superproject', opt.use_superproject)
252
Mike Frysingeredd3d452020-02-21 23:55:07 -0500253 if not m.Sync_NetworkHalf(is_new=is_new, quiet=opt.quiet, verbose=opt.verbose,
Mike Frysingerc58ec4d2020-02-17 14:36:08 -0500254 clone_bundle=opt.clone_bundle,
David Pursehouseabdf7502020-02-12 14:58:39 +0900255 current_branch_only=opt.current_branch_only,
Mike Frysingerc58ec4d2020-02-17 14:36:08 -0500256 tags=opt.tags, submodules=opt.submodules,
Raman Tennetif32f2432021-04-12 20:57:25 -0700257 clone_filter=opt.clone_filter,
258 partial_clone_exclude=self.manifest.PartialCloneExclude):
Shawn O. Pearce1fc99f42009-03-17 08:06:18 -0700259 r = m.GetRemote(m.remote.name)
Sarah Owenscecd1d82012-11-01 22:59:27 -0700260 print('fatal: cannot obtain manifest %s' % r.url, file=sys.stderr)
Doug Anderson2630dd92011-04-07 13:36:30 -0700261
262 # Better delete the manifest git dir if we created it; otherwise next
263 # time (when user fixes problems) we won't go through the "is_new" logic.
264 if is_new:
Renaud Paquaya65adf72016-11-03 10:37:53 -0700265 platform_utils.rmtree(m.gitdir)
Shawn O. Pearce1fc99f42009-03-17 08:06:18 -0700266 sys.exit(1)
267
Florian Vallee5d016502012-06-07 17:19:26 +0200268 if opt.manifest_branch:
Martin Kelly224a31a2017-07-10 14:46:25 -0700269 m.MetaBranchSwitch(submodules=opt.submodules)
Florian Vallee5d016502012-06-07 17:19:26 +0200270
Shawn O. Pearce350cde42009-04-16 11:21:18 -0700271 syncbuf = SyncBuffer(m.config)
Martin Kellye4e94d22017-03-21 16:05:12 -0700272 m.Sync_LocalHalf(syncbuf, submodules=opt.submodules)
Shawn O. Pearce350cde42009-04-16 11:21:18 -0700273 syncbuf.Finish()
274
Shawn O. Pearcedf018832009-03-17 08:15:27 -0700275 if is_new or m.CurrentBranch is None:
Shawn O. Pearce0a389e92009-04-10 16:21:18 -0700276 if not m.StartBranch('default'):
Sarah Owenscecd1d82012-11-01 22:59:27 -0700277 print('fatal: cannot create default in manifest', file=sys.stderr)
Shawn O. Pearce0a389e92009-04-10 16:21:18 -0700278 sys.exit(1)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700279
280 def _LinkManifest(self, name):
281 if not name:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700282 print('fatal: manifest name (-m) is required.', file=sys.stderr)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700283 sys.exit(1)
284
285 try:
286 self.manifest.Link(name)
Sarah Owensa5be53f2012-09-09 15:37:57 -0700287 except ManifestParseError as e:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700288 print("fatal: manifest '%s' not available" % name, file=sys.stderr)
289 print('fatal: %s' % str(e), file=sys.stderr)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700290 sys.exit(1)
291
Shawn O. Pearce37dbf2b2009-07-02 10:53:04 -0700292 def _Prompt(self, prompt, value):
Mike Frysingerab85fe72019-07-04 17:35:11 -0400293 print('%-10s [%s]: ' % (prompt, value), end='')
294 # TODO: When we require Python 3, use flush=True w/print above.
295 sys.stdout.flush()
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700296 a = sys.stdin.readline().strip()
Shawn O. Pearce37dbf2b2009-07-02 10:53:04 -0700297 if a == '':
298 return value
299 return a
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700300
Mike Frysinger0b888912020-02-21 22:48:40 -0500301 def _ShouldConfigureUser(self, opt):
Mike Frysinger8c1e9cb2020-09-06 14:53:18 -0400302 gc = self.client.globalConfig
Victor Boivie841be342011-04-05 11:31:10 +0200303 mp = self.manifest.manifestProject
304
305 # If we don't have local settings, get from global.
306 if not mp.config.Has('user.name') or not mp.config.Has('user.email'):
307 if not gc.Has('user.name') or not gc.Has('user.email'):
308 return True
309
310 mp.config.SetString('user.name', gc.GetString('user.name'))
311 mp.config.SetString('user.email', gc.GetString('user.email'))
312
Mike Frysinger0b888912020-02-21 22:48:40 -0500313 if not opt.quiet:
314 print()
315 print('Your identity is: %s <%s>' % (mp.config.GetString('user.name'),
316 mp.config.GetString('user.email')))
317 print("If you want to change this, please re-run 'repo init' with --config-name")
Victor Boivie841be342011-04-05 11:31:10 +0200318 return False
319
Mike Frysinger0b888912020-02-21 22:48:40 -0500320 def _ConfigureUser(self, opt):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700321 mp = self.manifest.manifestProject
322
Shawn O. Pearce37dbf2b2009-07-02 10:53:04 -0700323 while True:
Mike Frysinger0b888912020-02-21 22:48:40 -0500324 if not opt.quiet:
325 print()
David Pursehouse54a4e602020-02-12 14:31:05 +0900326 name = self._Prompt('Your Name', mp.UserName)
Shawn O. Pearce37dbf2b2009-07-02 10:53:04 -0700327 email = self._Prompt('Your Email', mp.UserEmail)
328
Mike Frysinger0b888912020-02-21 22:48:40 -0500329 if not opt.quiet:
330 print()
Sarah Owenscecd1d82012-11-01 22:59:27 -0700331 print('Your identity is: %s <%s>' % (name, email))
Mike Frysingerab85fe72019-07-04 17:35:11 -0400332 print('is this correct [y/N]? ', end='')
333 # TODO: When we require Python 3, use flush=True w/print above.
334 sys.stdout.flush()
David Pursehousefc241242012-11-14 09:19:39 +0900335 a = sys.stdin.readline().strip().lower()
Nico Sallembien6d7508b2010-04-01 11:03:53 -0700336 if a in ('yes', 'y', 't', 'true'):
Shawn O. Pearce37dbf2b2009-07-02 10:53:04 -0700337 break
338
339 if name != mp.UserName:
340 mp.config.SetString('user.name', name)
341 if email != mp.UserEmail:
342 mp.config.SetString('user.email', email)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700343
344 def _HasColorSet(self, gc):
345 for n in ['ui', 'diff', 'status']:
346 if gc.Has('color.%s' % n):
347 return True
348 return False
349
350 def _ConfigureColor(self):
Mike Frysinger8c1e9cb2020-09-06 14:53:18 -0400351 gc = self.client.globalConfig
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700352 if self._HasColorSet(gc):
353 return
354
355 class _Test(Coloring):
356 def __init__(self):
357 Coloring.__init__(self, gc, 'test color display')
358 self._on = True
359 out = _Test()
360
Sarah Owenscecd1d82012-11-01 22:59:27 -0700361 print()
362 print("Testing colorized output (for 'repo diff', 'repo status'):")
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700363
David Pursehouse8f62fb72012-11-14 12:09:38 +0900364 for c in ['black', 'red', 'green', 'yellow', 'blue', 'magenta', 'cyan']:
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700365 out.write(' ')
366 out.printer(fg=c)(' %-6s ', c)
367 out.write(' ')
368 out.printer(fg='white', bg='black')(' %s ' % 'white')
369 out.nl()
370
David Pursehouse8f62fb72012-11-14 12:09:38 +0900371 for c in ['bold', 'dim', 'ul', 'reverse']:
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700372 out.write(' ')
373 out.printer(fg='black', attr=c)(' %-6s ', c)
374 out.nl()
375
Mike Frysingerab85fe72019-07-04 17:35:11 -0400376 print('Enable color display in this user account (y/N)? ', end='')
377 # TODO: When we require Python 3, use flush=True w/print above.
378 sys.stdout.flush()
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700379 a = sys.stdin.readline().strip().lower()
380 if a in ('y', 'yes', 't', 'true', 'on'):
381 gc.SetString('color.ui', 'auto')
382
Doug Anderson30d45292011-05-04 15:01:04 -0700383 def _ConfigureDepth(self, opt):
384 """Configure the depth we'll sync down.
385
386 Args:
387 opt: Options from optparse. We care about opt.depth.
388 """
389 # Opt.depth will be non-None if user actually passed --depth to repo init.
390 if opt.depth is not None:
391 if opt.depth > 0:
392 # Positive values will set the depth.
393 depth = str(opt.depth)
394 else:
395 # Negative numbers will clear the depth; passing None to SetString
396 # will do that.
397 depth = None
398
399 # We store the depth in the main manifest project.
400 self.manifest.manifestProject.config.SetString('repo.depth', depth)
401
Mike Frysinger0b888912020-02-21 22:48:40 -0500402 def _DisplayResult(self, opt):
Yang Zhenhui75cc3532012-10-23 15:41:54 +0800403 if self.manifest.IsMirror:
404 init_type = 'mirror '
405 else:
406 init_type = ''
407
Mike Frysinger0b888912020-02-21 22:48:40 -0500408 if not opt.quiet:
409 print()
410 print('repo %shas been initialized in %s' %
411 (init_type, self.manifest.topdir))
Yang Zhenhui75cc3532012-10-23 15:41:54 +0800412
413 current_dir = os.getcwd()
414 if current_dir != self.manifest.topdir:
David Pursehouse35765962013-01-29 09:49:48 +0900415 print('If this is not the directory in which you want to initialize '
Sarah Owenscecd1d82012-11-01 22:59:27 -0700416 'repo, please run:')
417 print(' rm -r %s/.repo' % self.manifest.topdir)
418 print('and try again.')
Yang Zhenhui75cc3532012-10-23 15:41:54 +0800419
Mike Frysingerae6cb082019-08-27 01:10:59 -0400420 def ValidateOptions(self, opt, args):
Victor Boivie297e7c62012-10-05 14:50:05 +0200421 if opt.reference:
Samuel Hollandbaa00092018-01-22 10:57:29 -0600422 opt.reference = os.path.expanduser(opt.reference)
Victor Boivie297e7c62012-10-05 14:50:05 +0200423
Julien Campergue335f5ef2013-10-16 11:02:35 +0200424 # Check this here, else manifest will be tagged "not new" and init won't be
425 # possible anymore without removing the .repo/manifests directory.
426 if opt.archive and opt.mirror:
Mike Frysingerae6cb082019-08-27 01:10:59 -0400427 self.OptionParser.error('--mirror and --archive cannot be used together.')
428
Mike Frysinger0578ebf2020-08-27 01:50:12 -0400429 if args:
Mike Frysinger401c6f02021-02-18 15:20:15 -0500430 if opt.manifest_url:
431 self.OptionParser.error(
432 '--manifest-url option and URL argument both specified: only use '
433 'one to select the manifest URL.')
434
435 opt.manifest_url = args.pop(0)
436
437 if args:
438 self.OptionParser.error('too many arguments to init')
Mike Frysinger0578ebf2020-08-27 01:50:12 -0400439
Mike Frysingerae6cb082019-08-27 01:10:59 -0400440 def Execute(self, opt, args):
Mike Frysinger82caef62020-02-11 18:51:08 -0500441 git_require(MIN_GIT_VERSION_HARD, fail=True)
442 if not git_require(MIN_GIT_VERSION_SOFT):
443 print('repo: warning: git-%s+ will soon be required; please upgrade your '
444 'version of git to maintain support.'
445 % ('.'.join(str(x) for x in MIN_GIT_VERSION_SOFT),),
446 file=sys.stderr)
Julien Campergue335f5ef2013-10-16 11:02:35 +0200447
Mike Frysinger7936ce82020-02-29 02:53:41 -0500448 rp = self.manifest.repoProject
449
450 # Handle new --repo-url requests.
451 if opt.repo_url:
452 remote = rp.GetRemote('origin')
453 remote.url = opt.repo_url
454 remote.Save()
455
Mike Frysinger3599cc32020-02-29 02:53:41 -0500456 # Handle new --repo-rev requests.
457 if opt.repo_rev:
458 wrapper = Wrapper()
459 remote_ref, rev = wrapper.check_repo_rev(
460 rp.gitdir, opt.repo_rev, repo_verify=opt.repo_verify, quiet=opt.quiet)
461 branch = rp.GetBranch('default')
462 branch.merge = remote_ref
Mike Frysinger5e2f32f2020-12-05 22:57:19 -0500463 rp.work_git.reset('--hard', rev)
Mike Frysinger3599cc32020-02-29 02:53:41 -0500464 branch.Save()
465
Mike Frysinger979d5bd2020-02-09 02:28:34 -0500466 if opt.worktree:
467 # Older versions of git supported worktree, but had dangerous gc bugs.
468 git_require((2, 15, 0), fail=True, msg='git gc worktree corruption')
469
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700470 self._SyncManifest(opt)
471 self._LinkManifest(opt.manifest_name)
472
Raman Tenneti21dce3d2021-02-09 00:26:31 -0800473 if self.manifest.manifestProject.config.GetBoolean('repo.superproject'):
Raman Tennetief99ec02021-03-04 10:29:40 -0800474 self._CloneSuperproject(opt)
Raman Tenneti21dce3d2021-02-09 00:26:31 -0800475
Shawn O. Pearce8630f392009-03-19 10:17:12 -0700476 if os.isatty(0) and os.isatty(1) and not self.manifest.IsMirror:
Mike Frysinger0b888912020-02-21 22:48:40 -0500477 if opt.config_name or self._ShouldConfigureUser(opt):
478 self._ConfigureUser(opt)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700479 self._ConfigureColor()
480
Mike Frysinger0b888912020-02-21 22:48:40 -0500481 self._DisplayResult(opt)