blob: b9775a3431af6f05c440f4a3802bcbb39a037a93 [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
Jack Neusc474c9c2021-07-26 23:08:54 +000027import fetch
Raman Tenneti21dce3d2021-02-09 00:26:31 -080028import git_superproject
Renaud Paquaya65adf72016-11-03 10:37:53 -070029import platform_utils
Mike Frysinger3599cc32020-02-29 02:53:41 -050030from wrapper import Wrapper
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070031
David Pursehouse819827a2020-02-12 15:20:19 +090032
Shawn O. Pearcec95583b2009-03-03 17:47:06 -080033class Init(InteractiveCommand, MirrorSafeCommand):
Mike Frysinger4f210542021-06-14 16:05:19 -040034 COMMON = True
LaMont Jonescc879a92021-11-18 22:40:18 +000035 MULTI_MANIFEST_SUPPORT = False
Mike Frysinger401c6f02021-02-18 15:20:15 -050036 helpSummary = "Initialize a repo client checkout in the current directory"
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070037 helpUsage = """
Mike Frysinger401c6f02021-02-18 15:20:15 -050038%prog [options] [manifest url]
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070039"""
40 helpDescription = """
41The '%prog' command is run once to install and initialize repo.
42The latest repo source code and manifest collection is downloaded
43from the server and is installed in the .repo/ directory in the
44current working directory.
45
Mike Frysinger401c6f02021-02-18 15:20:15 -050046When creating a new checkout, the manifest URL is the only required setting.
47It may be specified using the --manifest-url option, or as the first optional
48argument.
49
Shawn O. Pearce77bb4af2009-04-18 11:33:32 -070050The optional -b argument can be used to select the manifest branch
Mike Frysinger50a81de2020-09-06 15:51:21 -040051to checkout and use. If no branch is specified, the remote's default
Mike Frysinger23882b32021-02-23 15:43:07 -050052branch is used. This is equivalent to using -b HEAD.
Shawn O. Pearce77bb4af2009-04-18 11:33:32 -070053
54The optional -m argument can be used to specify an alternate manifest
55to be used. If no manifest is specified, the manifest default.xml
56will be used.
57
Jack Neusc474c9c2021-07-26 23:08:54 +000058If the --standalone-manifest argument is set, the manifest will be downloaded
59directly from the specified --manifest-url as a static file (rather than
60setting up a manifest git checkout). With --standalone-manifest, the manifest
61will be fully static and will not be re-downloaded during subsesquent
62`repo init` and `repo sync` calls.
63
Shawn O. Pearce88443382010-10-08 10:02:09 +020064The --reference option can be used to point to a directory that
65has the content of a --mirror sync. This will make the working
66directory use as much data as possible from the local reference
67directory when fetching from the server. This will make the sync
68go a lot faster by reducing data traffic on the network.
69
Nikolai Merinov09f0abb2018-10-19 15:07:05 +050070The --dissociate option can be used to borrow the objects from
71the directory specified with the --reference option only to reduce
72network transfer, and stop borrowing from them after a first clone
73is made by making necessary local copies of borrowed objects.
74
Hu xiuyun9711a982015-12-11 11:16:41 +080075The --no-clone-bundle option disables any attempt to use
76$URL/clone.bundle to bootstrap a new Git repository from a
77resumeable bundle file on a content delivery network. This
78may be necessary if there are problems with the local Python
79HTTP client or proxy configuration, but the Git binary works.
Shawn O. Pearce88443382010-10-08 10:02:09 +020080
Mike Frysingerb8f7bb02018-10-10 01:05:11 -040081# Switching Manifest Branches
Shawn O. Pearce77bb4af2009-04-18 11:33:32 -070082
83To switch to another manifest branch, `repo init -b otherbranch`
84may be used in an existing client. However, as this only updates the
85manifest, a subsequent `repo sync` (or `repo sync -d`) is necessary
86to update the working directory files.
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070087"""
88
Mike Frysinger9180a072021-04-13 14:57:40 -040089 def _CommonOptions(self, p):
90 """Disable due to re-use of Wrapper()."""
91
Mike Frysinger66098f72020-02-05 00:01:59 -050092 def _Options(self, p, gitc_init=False):
Mike Frysinger9a734a32021-04-08 19:14:15 -040093 Wrapper().InitParser(p, gitc_init=gitc_init)
LaMont Jonescc879a92021-11-18 22:40:18 +000094 m = p.add_option_group('Multi-manifest')
95 m.add_option('--outer-manifest', action='store_true',
96 help='operate starting at the outermost manifest')
97 m.add_option('--no-outer-manifest', dest='outer_manifest',
98 action='store_false', default=None,
99 help='do not operate on outer manifests')
100 m.add_option('--this-manifest-only', action='store_true', default=None,
101 help='only operate on this (sub)manifest')
102 m.add_option('--no-this-manifest-only', '--all-manifests',
103 dest='this_manifest_only', action='store_false',
104 help='operate on this manifest and its submanifests')
Victor Boivie841be342011-04-05 11:31:10 +0200105
David Pursehouse3f5ea0b2012-11-17 03:13:09 +0900106 def _RegisteredEnvironmentOptions(self):
107 return {'REPO_MANIFEST_URL': 'manifest_url',
108 'REPO_MIRROR_LOCATION': 'reference'}
109
Raman Tennetief99ec02021-03-04 10:29:40 -0800110 def _CloneSuperproject(self, opt):
111 """Clone the superproject based on the superproject's url and branch.
112
113 Args:
114 opt: Program options returned from optparse. See _Options().
115 """
Raman Tenneti21dce3d2021-02-09 00:26:31 -0800116 superproject = git_superproject.Superproject(self.manifest,
Raman Tennetief99ec02021-03-04 10:29:40 -0800117 self.repodir,
Raman Tenneti784e16f2021-06-11 17:29:45 -0700118 self.git_event_log,
Raman Tennetief99ec02021-03-04 10:29:40 -0800119 quiet=opt.quiet)
Raman Tenneti784e16f2021-06-11 17:29:45 -0700120 sync_result = superproject.Sync()
121 if not sync_result.success:
Raman Tenneti8db30d62021-07-06 21:30:06 -0700122 print('warning: git update of superproject failed, repo sync will not '
123 'use superproject to fetch source; while this error is not fatal, '
124 'and you can continue to run repo sync, please run repo init with '
125 'the --no-use-superproject option to stop seeing this warning',
126 file=sys.stderr)
127 if sync_result.fatal and opt.use_superproject is not None:
Raman Tenneti784e16f2021-06-11 17:29:45 -0700128 sys.exit(1)
Raman Tenneti21dce3d2021-02-09 00:26:31 -0800129
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700130 def _SyncManifest(self, opt):
131 m = self.manifest.manifestProject
Shawn O. Pearce5470df62009-03-09 18:51:58 -0700132 is_new = not m.Exists
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700133
Jack Neusc474c9c2021-07-26 23:08:54 +0000134 # If repo has already been initialized, we take -u with the absence of
135 # --standalone-manifest to mean "transition to a standard repo set up",
136 # which necessitates starting fresh.
137 # If --standalone-manifest is set, we always tear everything down and start
138 # anew.
139 if not is_new:
140 was_standalone_manifest = m.config.GetString('manifest.standalone')
Jack Neus0f6f16e2021-10-11 18:14:35 +0000141 if was_standalone_manifest and not opt.manifest_url:
142 print('fatal: repo was initialized with a standlone manifest, '
143 'cannot be re-initialized without --manifest-url/-u')
144 sys.exit(1)
145
Raman Tenneti4a478ed2021-11-17 18:38:24 -0800146 if opt.standalone_manifest or (was_standalone_manifest and
147 opt.manifest_url):
Jack Neusc474c9c2021-07-26 23:08:54 +0000148 m.config.ClearCache()
149 if m.gitdir and os.path.exists(m.gitdir):
150 platform_utils.rmtree(m.gitdir)
151 if m.worktree and os.path.exists(m.worktree):
152 platform_utils.rmtree(m.worktree)
153
154 is_new = not m.Exists
Shawn O. Pearce5470df62009-03-09 18:51:58 -0700155 if is_new:
Shawn O. Pearce34fb20f2011-11-30 13:41:02 -0800156 if not opt.manifest_url:
Mike Frysinger401c6f02021-02-18 15:20:15 -0500157 print('fatal: manifest url is required.', file=sys.stderr)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700158 sys.exit(1)
159
160 if not opt.quiet:
Mike Frysingerdcbfadf2020-02-22 00:04:39 -0500161 print('Downloading manifest from %s' %
162 (GitConfig.ForUser().UrlInsteadOf(opt.manifest_url),),
Sarah Owenscecd1d82012-11-01 22:59:27 -0700163 file=sys.stderr)
Victor Boivie2b30e3a2012-10-05 12:37:58 +0200164
165 # The manifest project object doesn't keep track of the path on the
166 # server where this git is located, so let's save that here.
167 mirrored_manifest_git = None
168 if opt.reference:
Anthony King7993f3c2015-06-03 17:21:56 +0100169 manifest_git_path = urllib.parse.urlparse(opt.manifest_url).path[1:]
Victor Boivie2b30e3a2012-10-05 12:37:58 +0200170 mirrored_manifest_git = os.path.join(opt.reference, manifest_git_path)
171 if not mirrored_manifest_git.endswith(".git"):
172 mirrored_manifest_git += ".git"
173 if not os.path.exists(mirrored_manifest_git):
Samuel Holland5f0e57d2018-01-22 11:00:24 -0600174 mirrored_manifest_git = os.path.join(opt.reference,
175 '.repo/manifests.git')
Victor Boivie2b30e3a2012-10-05 12:37:58 +0200176
177 m._InitGitDir(mirror_git=mirrored_manifest_git)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700178
Jack Neusc474c9c2021-07-26 23:08:54 +0000179 # If standalone_manifest is set, mark the project as "standalone" -- we'll
180 # still do much of the manifests.git set up, but will avoid actual syncs to
181 # a remote.
182 standalone_manifest = False
183 if opt.standalone_manifest:
184 standalone_manifest = True
Jack Neus76491592021-10-11 17:20:39 +0000185 m.config.SetString('manifest.standalone', opt.manifest_url)
186 elif not opt.manifest_url and not opt.manifest_branch:
Jack Neusc474c9c2021-07-26 23:08:54 +0000187 # If -u is set and --standalone-manifest is not, then we're not in
188 # standalone mode. Otherwise, use config to infer what we were in the last
189 # init.
190 standalone_manifest = bool(m.config.GetString('manifest.standalone'))
Jack Neus76491592021-10-11 17:20:39 +0000191 if not standalone_manifest:
192 m.config.SetString('manifest.standalone', None)
Jack Neusc474c9c2021-07-26 23:08:54 +0000193
Nasser Grainawid92464e2019-05-21 10:41:35 -0600194 self._ConfigureDepth(opt)
195
Mike Frysinger50a81de2020-09-06 15:51:21 -0400196 # Set the remote URL before the remote branch as we might need it below.
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700197 if opt.manifest_url:
198 r = m.GetRemote(m.remote.name)
199 r.url = opt.manifest_url
200 r.ResetFetch()
201 r.Save()
202
Jack Neusc474c9c2021-07-26 23:08:54 +0000203 if not standalone_manifest:
204 if opt.manifest_branch:
205 if opt.manifest_branch == 'HEAD':
206 opt.manifest_branch = m.ResolveRemoteHead()
207 if opt.manifest_branch is None:
208 print('fatal: unable to resolve HEAD', file=sys.stderr)
209 sys.exit(1)
210 m.revisionExpr = opt.manifest_branch
Mike Frysinger50a81de2020-09-06 15:51:21 -0400211 else:
Jack Neusc474c9c2021-07-26 23:08:54 +0000212 if is_new:
213 default_branch = m.ResolveRemoteHead()
214 if default_branch is None:
215 # If the remote doesn't have HEAD configured, default to master.
216 default_branch = 'refs/heads/master'
217 m.revisionExpr = default_branch
218 else:
219 m.PreSync()
Mike Frysinger50a81de2020-09-06 15:51:21 -0400220
David Pursehouse1d947b32012-10-25 12:23:11 +0900221 groups = re.split(r'[,\s]+', opt.groups)
Pascal Muetschardc2a64dd2015-10-22 13:26:36 -0700222 all_platforms = ['linux', 'darwin', 'windows']
Conley Owensd21720d2012-04-16 11:02:21 -0700223 platformize = lambda x: 'platform-' + x
224 if opt.platform == 'auto':
225 if (not opt.mirror and
David Pursehouseabdf7502020-02-12 14:58:39 +0900226 not m.config.GetString('repo.mirror') == 'true'):
Conley Owensd21720d2012-04-16 11:02:21 -0700227 groups.append(platformize(platform.system().lower()))
228 elif opt.platform == 'all':
Colin Cross54657272012-04-23 13:39:48 -0700229 groups.extend(map(platformize, all_platforms))
Conley Owensd21720d2012-04-16 11:02:21 -0700230 elif opt.platform in all_platforms:
Pascal Muetschardc2a64dd2015-10-22 13:26:36 -0700231 groups.append(platformize(opt.platform))
Conley Owensd21720d2012-04-16 11:02:21 -0700232 elif opt.platform != 'none':
Sarah Owenscecd1d82012-11-01 22:59:27 -0700233 print('fatal: invalid platform flag', file=sys.stderr)
Conley Owensd21720d2012-04-16 11:02:21 -0700234 sys.exit(1)
235
Conley Owens971de8e2012-04-16 10:36:08 -0700236 groups = [x for x in groups if x]
237 groupstr = ','.join(groups)
Raman Tenneti080877e2021-03-09 15:19:06 -0800238 if opt.platform == 'auto' and groupstr == self.manifest.GetDefaultGroupsStr():
Conley Owens971de8e2012-04-16 10:36:08 -0700239 groupstr = None
240 m.config.SetString('manifest.groups', groupstr)
Colin Cross5acde752012-03-28 20:15:45 -0700241
Shawn O. Pearce88443382010-10-08 10:02:09 +0200242 if opt.reference:
243 m.config.SetString('repo.reference', opt.reference)
244
Nikolai Merinov09f0abb2018-10-19 15:07:05 +0500245 if opt.dissociate:
Mike Frysinger38867fb2021-02-09 23:14:41 -0500246 m.config.SetBoolean('repo.dissociate', opt.dissociate)
Nikolai Merinov09f0abb2018-10-19 15:07:05 +0500247
Mike Frysinger979d5bd2020-02-09 02:28:34 -0500248 if opt.worktree:
249 if opt.mirror:
250 print('fatal: --mirror and --worktree are incompatible',
251 file=sys.stderr)
252 sys.exit(1)
253 if opt.submodules:
254 print('fatal: --submodules and --worktree are incompatible',
255 file=sys.stderr)
256 sys.exit(1)
Mike Frysinger38867fb2021-02-09 23:14:41 -0500257 m.config.SetBoolean('repo.worktree', opt.worktree)
Mike Frysinger979d5bd2020-02-09 02:28:34 -0500258 if is_new:
259 m.use_git_worktrees = True
260 print('warning: --worktree is experimental!', file=sys.stderr)
261
Julien Campergue335f5ef2013-10-16 11:02:35 +0200262 if opt.archive:
263 if is_new:
Mike Frysinger38867fb2021-02-09 23:14:41 -0500264 m.config.SetBoolean('repo.archive', opt.archive)
Julien Campergue335f5ef2013-10-16 11:02:35 +0200265 else:
266 print('fatal: --archive is only supported when initializing a new '
267 'workspace.', file=sys.stderr)
268 print('Either delete the .repo folder in this workspace, or initialize '
269 'in another location.', file=sys.stderr)
270 sys.exit(1)
271
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800272 if opt.mirror:
Shawn O. Pearce5470df62009-03-09 18:51:58 -0700273 if is_new:
Mike Frysinger38867fb2021-02-09 23:14:41 -0500274 m.config.SetBoolean('repo.mirror', opt.mirror)
Shawn O. Pearce5470df62009-03-09 18:51:58 -0700275 else:
David Pursehouse25470982012-11-21 14:41:58 +0900276 print('fatal: --mirror is only supported when initializing a new '
277 'workspace.', file=sys.stderr)
278 print('Either delete the .repo folder in this workspace, or initialize '
279 'in another location.', file=sys.stderr)
Shawn O. Pearce5470df62009-03-09 18:51:58 -0700280 sys.exit(1)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800281
Raman Tenneti6a2f4fb2021-04-02 10:55:33 -0700282 if opt.partial_clone is not None:
Xin Li745be2e2019-06-03 11:24:30 -0700283 if opt.mirror:
284 print('fatal: --mirror and --partial-clone are mutually exclusive',
285 file=sys.stderr)
286 sys.exit(1)
Mike Frysinger38867fb2021-02-09 23:14:41 -0500287 m.config.SetBoolean('repo.partialclone', opt.partial_clone)
Xin Li745be2e2019-06-03 11:24:30 -0700288 if opt.clone_filter:
289 m.config.SetString('repo.clonefilter', opt.clone_filter)
Raman Tenneti6a2f4fb2021-04-02 10:55:33 -0700290 elif m.config.GetBoolean('repo.partialclone'):
291 opt.clone_filter = m.config.GetString('repo.clonefilter')
Xin Li745be2e2019-06-03 11:24:30 -0700292 else:
293 opt.clone_filter = None
294
Raman Tennetif32f2432021-04-12 20:57:25 -0700295 if opt.partial_clone_exclude is not None:
296 m.config.SetString('repo.partialcloneexclude', opt.partial_clone_exclude)
297
Xin Lid79a4bc2020-05-20 16:03:45 -0700298 if opt.clone_bundle is None:
299 opt.clone_bundle = False if opt.partial_clone else True
300 else:
Mike Frysinger38867fb2021-02-09 23:14:41 -0500301 m.config.SetBoolean('repo.clonebundle', opt.clone_bundle)
Xin Lid79a4bc2020-05-20 16:03:45 -0700302
Martin Kellye4e94d22017-03-21 16:05:12 -0700303 if opt.submodules:
Mike Frysinger38867fb2021-02-09 23:14:41 -0500304 m.config.SetBoolean('repo.submodules', opt.submodules)
Martin Kellye4e94d22017-03-21 16:05:12 -0700305
XD Trol630876f2022-01-17 23:29:04 +0800306 if opt.git_lfs is not None:
307 if opt.git_lfs:
308 git_require((2, 17, 0), fail=True, msg='Git LFS support')
309
310 m.config.SetBoolean('repo.git-lfs', opt.git_lfs)
311 if not is_new:
312 print('warning: Changing --git-lfs settings will only affect new project checkouts.\n'
313 ' Existing projects will require manual updates.\n', file=sys.stderr)
314
Raman Tenneti21dce3d2021-02-09 00:26:31 -0800315 if opt.use_superproject is not None:
316 m.config.SetBoolean('repo.superproject', opt.use_superproject)
317
Jack Neusc474c9c2021-07-26 23:08:54 +0000318 if standalone_manifest:
319 if is_new:
320 manifest_name = 'default.xml'
Jack Neus19883852021-10-25 22:38:44 +0000321 manifest_data = fetch.fetch_file(opt.manifest_url, verbose=opt.verbose)
Jack Neusc474c9c2021-07-26 23:08:54 +0000322 dest = os.path.join(m.worktree, manifest_name)
323 os.makedirs(os.path.dirname(dest), exist_ok=True)
324 with open(dest, 'wb') as f:
325 f.write(manifest_data)
326 return
327
Mike Frysingeredd3d452020-02-21 23:55:07 -0500328 if not m.Sync_NetworkHalf(is_new=is_new, quiet=opt.quiet, verbose=opt.verbose,
Mike Frysingerc58ec4d2020-02-17 14:36:08 -0500329 clone_bundle=opt.clone_bundle,
David Pursehouseabdf7502020-02-12 14:58:39 +0900330 current_branch_only=opt.current_branch_only,
Mike Frysingerc58ec4d2020-02-17 14:36:08 -0500331 tags=opt.tags, submodules=opt.submodules,
Raman Tennetif32f2432021-04-12 20:57:25 -0700332 clone_filter=opt.clone_filter,
333 partial_clone_exclude=self.manifest.PartialCloneExclude):
Shawn O. Pearce1fc99f42009-03-17 08:06:18 -0700334 r = m.GetRemote(m.remote.name)
Sarah Owenscecd1d82012-11-01 22:59:27 -0700335 print('fatal: cannot obtain manifest %s' % r.url, file=sys.stderr)
Doug Anderson2630dd92011-04-07 13:36:30 -0700336
337 # Better delete the manifest git dir if we created it; otherwise next
338 # time (when user fixes problems) we won't go through the "is_new" logic.
339 if is_new:
Renaud Paquaya65adf72016-11-03 10:37:53 -0700340 platform_utils.rmtree(m.gitdir)
Shawn O. Pearce1fc99f42009-03-17 08:06:18 -0700341 sys.exit(1)
342
Florian Vallee5d016502012-06-07 17:19:26 +0200343 if opt.manifest_branch:
Martin Kelly224a31a2017-07-10 14:46:25 -0700344 m.MetaBranchSwitch(submodules=opt.submodules)
Florian Vallee5d016502012-06-07 17:19:26 +0200345
Shawn O. Pearce350cde42009-04-16 11:21:18 -0700346 syncbuf = SyncBuffer(m.config)
Martin Kellye4e94d22017-03-21 16:05:12 -0700347 m.Sync_LocalHalf(syncbuf, submodules=opt.submodules)
Shawn O. Pearce350cde42009-04-16 11:21:18 -0700348 syncbuf.Finish()
349
Shawn O. Pearcedf018832009-03-17 08:15:27 -0700350 if is_new or m.CurrentBranch is None:
Shawn O. Pearce0a389e92009-04-10 16:21:18 -0700351 if not m.StartBranch('default'):
Sarah Owenscecd1d82012-11-01 22:59:27 -0700352 print('fatal: cannot create default in manifest', file=sys.stderr)
Shawn O. Pearce0a389e92009-04-10 16:21:18 -0700353 sys.exit(1)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700354
355 def _LinkManifest(self, name):
356 if not name:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700357 print('fatal: manifest name (-m) is required.', file=sys.stderr)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700358 sys.exit(1)
359
360 try:
361 self.manifest.Link(name)
Sarah Owensa5be53f2012-09-09 15:37:57 -0700362 except ManifestParseError as e:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700363 print("fatal: manifest '%s' not available" % name, file=sys.stderr)
364 print('fatal: %s' % str(e), file=sys.stderr)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700365 sys.exit(1)
366
Shawn O. Pearce37dbf2b2009-07-02 10:53:04 -0700367 def _Prompt(self, prompt, value):
Mike Frysingerab85fe72019-07-04 17:35:11 -0400368 print('%-10s [%s]: ' % (prompt, value), end='')
369 # TODO: When we require Python 3, use flush=True w/print above.
370 sys.stdout.flush()
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700371 a = sys.stdin.readline().strip()
Shawn O. Pearce37dbf2b2009-07-02 10:53:04 -0700372 if a == '':
373 return value
374 return a
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700375
Mike Frysinger0b888912020-02-21 22:48:40 -0500376 def _ShouldConfigureUser(self, opt):
Mike Frysinger8c1e9cb2020-09-06 14:53:18 -0400377 gc = self.client.globalConfig
Victor Boivie841be342011-04-05 11:31:10 +0200378 mp = self.manifest.manifestProject
379
380 # If we don't have local settings, get from global.
381 if not mp.config.Has('user.name') or not mp.config.Has('user.email'):
382 if not gc.Has('user.name') or not gc.Has('user.email'):
383 return True
384
385 mp.config.SetString('user.name', gc.GetString('user.name'))
386 mp.config.SetString('user.email', gc.GetString('user.email'))
387
Mike Frysinger0b888912020-02-21 22:48:40 -0500388 if not opt.quiet:
389 print()
390 print('Your identity is: %s <%s>' % (mp.config.GetString('user.name'),
391 mp.config.GetString('user.email')))
392 print("If you want to change this, please re-run 'repo init' with --config-name")
Victor Boivie841be342011-04-05 11:31:10 +0200393 return False
394
Mike Frysinger0b888912020-02-21 22:48:40 -0500395 def _ConfigureUser(self, opt):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700396 mp = self.manifest.manifestProject
397
Shawn O. Pearce37dbf2b2009-07-02 10:53:04 -0700398 while True:
Mike Frysinger0b888912020-02-21 22:48:40 -0500399 if not opt.quiet:
400 print()
David Pursehouse54a4e602020-02-12 14:31:05 +0900401 name = self._Prompt('Your Name', mp.UserName)
Shawn O. Pearce37dbf2b2009-07-02 10:53:04 -0700402 email = self._Prompt('Your Email', mp.UserEmail)
403
Mike Frysinger0b888912020-02-21 22:48:40 -0500404 if not opt.quiet:
405 print()
Sarah Owenscecd1d82012-11-01 22:59:27 -0700406 print('Your identity is: %s <%s>' % (name, email))
Mike Frysingerab85fe72019-07-04 17:35:11 -0400407 print('is this correct [y/N]? ', end='')
408 # TODO: When we require Python 3, use flush=True w/print above.
409 sys.stdout.flush()
David Pursehousefc241242012-11-14 09:19:39 +0900410 a = sys.stdin.readline().strip().lower()
Nico Sallembien6d7508b2010-04-01 11:03:53 -0700411 if a in ('yes', 'y', 't', 'true'):
Shawn O. Pearce37dbf2b2009-07-02 10:53:04 -0700412 break
413
414 if name != mp.UserName:
415 mp.config.SetString('user.name', name)
416 if email != mp.UserEmail:
417 mp.config.SetString('user.email', email)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700418
419 def _HasColorSet(self, gc):
420 for n in ['ui', 'diff', 'status']:
421 if gc.Has('color.%s' % n):
422 return True
423 return False
424
425 def _ConfigureColor(self):
Mike Frysinger8c1e9cb2020-09-06 14:53:18 -0400426 gc = self.client.globalConfig
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700427 if self._HasColorSet(gc):
428 return
429
430 class _Test(Coloring):
431 def __init__(self):
432 Coloring.__init__(self, gc, 'test color display')
433 self._on = True
434 out = _Test()
435
Sarah Owenscecd1d82012-11-01 22:59:27 -0700436 print()
437 print("Testing colorized output (for 'repo diff', 'repo status'):")
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700438
David Pursehouse8f62fb72012-11-14 12:09:38 +0900439 for c in ['black', 'red', 'green', 'yellow', 'blue', 'magenta', 'cyan']:
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700440 out.write(' ')
441 out.printer(fg=c)(' %-6s ', c)
442 out.write(' ')
443 out.printer(fg='white', bg='black')(' %s ' % 'white')
444 out.nl()
445
David Pursehouse8f62fb72012-11-14 12:09:38 +0900446 for c in ['bold', 'dim', 'ul', 'reverse']:
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700447 out.write(' ')
448 out.printer(fg='black', attr=c)(' %-6s ', c)
449 out.nl()
450
Mike Frysingerab85fe72019-07-04 17:35:11 -0400451 print('Enable color display in this user account (y/N)? ', end='')
452 # TODO: When we require Python 3, use flush=True w/print above.
453 sys.stdout.flush()
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700454 a = sys.stdin.readline().strip().lower()
455 if a in ('y', 'yes', 't', 'true', 'on'):
456 gc.SetString('color.ui', 'auto')
457
Doug Anderson30d45292011-05-04 15:01:04 -0700458 def _ConfigureDepth(self, opt):
459 """Configure the depth we'll sync down.
460
461 Args:
462 opt: Options from optparse. We care about opt.depth.
463 """
464 # Opt.depth will be non-None if user actually passed --depth to repo init.
465 if opt.depth is not None:
466 if opt.depth > 0:
467 # Positive values will set the depth.
468 depth = str(opt.depth)
469 else:
470 # Negative numbers will clear the depth; passing None to SetString
471 # will do that.
472 depth = None
473
474 # We store the depth in the main manifest project.
475 self.manifest.manifestProject.config.SetString('repo.depth', depth)
476
Mike Frysinger0b888912020-02-21 22:48:40 -0500477 def _DisplayResult(self, opt):
Yang Zhenhui75cc3532012-10-23 15:41:54 +0800478 if self.manifest.IsMirror:
479 init_type = 'mirror '
480 else:
481 init_type = ''
482
Mike Frysinger0b888912020-02-21 22:48:40 -0500483 if not opt.quiet:
484 print()
485 print('repo %shas been initialized in %s' %
486 (init_type, self.manifest.topdir))
Yang Zhenhui75cc3532012-10-23 15:41:54 +0800487
488 current_dir = os.getcwd()
489 if current_dir != self.manifest.topdir:
David Pursehouse35765962013-01-29 09:49:48 +0900490 print('If this is not the directory in which you want to initialize '
Sarah Owenscecd1d82012-11-01 22:59:27 -0700491 'repo, please run:')
492 print(' rm -r %s/.repo' % self.manifest.topdir)
493 print('and try again.')
Yang Zhenhui75cc3532012-10-23 15:41:54 +0800494
Mike Frysingerae6cb082019-08-27 01:10:59 -0400495 def ValidateOptions(self, opt, args):
Victor Boivie297e7c62012-10-05 14:50:05 +0200496 if opt.reference:
Samuel Hollandbaa00092018-01-22 10:57:29 -0600497 opt.reference = os.path.expanduser(opt.reference)
Victor Boivie297e7c62012-10-05 14:50:05 +0200498
Julien Campergue335f5ef2013-10-16 11:02:35 +0200499 # Check this here, else manifest will be tagged "not new" and init won't be
500 # possible anymore without removing the .repo/manifests directory.
Raman Tenneti6bd89aa2021-11-16 11:48:09 -0800501 if opt.mirror:
502 if opt.archive:
503 self.OptionParser.error('--mirror and --archive cannot be used '
504 'together.')
505 if opt.use_superproject is not None:
506 self.OptionParser.error('--mirror and --use-superproject cannot be '
507 'used together.')
Mike Frysingerae6cb082019-08-27 01:10:59 -0400508
Raman Tenneti4a478ed2021-11-17 18:38:24 -0800509 if opt.standalone_manifest and (opt.manifest_branch or
510 opt.manifest_name != 'default.xml'):
Jack Neusc474c9c2021-07-26 23:08:54 +0000511 self.OptionParser.error('--manifest-branch and --manifest-name cannot'
512 ' be used with --standalone-manifest.')
513
Mike Frysinger0578ebf2020-08-27 01:50:12 -0400514 if args:
Mike Frysinger401c6f02021-02-18 15:20:15 -0500515 if opt.manifest_url:
516 self.OptionParser.error(
517 '--manifest-url option and URL argument both specified: only use '
518 'one to select the manifest URL.')
519
520 opt.manifest_url = args.pop(0)
521
522 if args:
523 self.OptionParser.error('too many arguments to init')
Mike Frysinger0578ebf2020-08-27 01:50:12 -0400524
Mike Frysingerae6cb082019-08-27 01:10:59 -0400525 def Execute(self, opt, args):
Mike Frysinger82caef62020-02-11 18:51:08 -0500526 git_require(MIN_GIT_VERSION_HARD, fail=True)
527 if not git_require(MIN_GIT_VERSION_SOFT):
528 print('repo: warning: git-%s+ will soon be required; please upgrade your '
529 'version of git to maintain support.'
530 % ('.'.join(str(x) for x in MIN_GIT_VERSION_SOFT),),
531 file=sys.stderr)
Julien Campergue335f5ef2013-10-16 11:02:35 +0200532
Mike Frysinger7936ce82020-02-29 02:53:41 -0500533 rp = self.manifest.repoProject
534
535 # Handle new --repo-url requests.
536 if opt.repo_url:
537 remote = rp.GetRemote('origin')
538 remote.url = opt.repo_url
539 remote.Save()
540
Mike Frysinger3599cc32020-02-29 02:53:41 -0500541 # Handle new --repo-rev requests.
542 if opt.repo_rev:
543 wrapper = Wrapper()
Mike Frysinger4aa85842022-01-25 02:10:28 -0500544 try:
545 remote_ref, rev = wrapper.check_repo_rev(
546 rp.gitdir, opt.repo_rev, repo_verify=opt.repo_verify, quiet=opt.quiet)
547 except wrapper.CloneFailure:
548 print('fatal: double check your --repo-rev setting.', file=sys.stderr)
549 sys.exit(1)
Mike Frysinger3599cc32020-02-29 02:53:41 -0500550 branch = rp.GetBranch('default')
551 branch.merge = remote_ref
Mike Frysinger5e2f32f2020-12-05 22:57:19 -0500552 rp.work_git.reset('--hard', rev)
Mike Frysinger3599cc32020-02-29 02:53:41 -0500553 branch.Save()
554
Mike Frysinger979d5bd2020-02-09 02:28:34 -0500555 if opt.worktree:
556 # Older versions of git supported worktree, but had dangerous gc bugs.
557 git_require((2, 15, 0), fail=True, msg='git gc worktree corruption')
558
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700559 self._SyncManifest(opt)
560 self._LinkManifest(opt.manifest_name)
561
Raman Tenneti21dce3d2021-02-09 00:26:31 -0800562 if self.manifest.manifestProject.config.GetBoolean('repo.superproject'):
Raman Tennetief99ec02021-03-04 10:29:40 -0800563 self._CloneSuperproject(opt)
Raman Tenneti21dce3d2021-02-09 00:26:31 -0800564
Shawn O. Pearce8630f392009-03-19 10:17:12 -0700565 if os.isatty(0) and os.isatty(1) and not self.manifest.IsMirror:
Mike Frysinger0b888912020-02-21 22:48:40 -0500566 if opt.config_name or self._ShouldConfigureUser(opt):
567 self._ConfigureUser(opt)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700568 self._ConfigureColor()
569
Mike Frysinger0b888912020-02-21 22:48:40 -0500570 self._DisplayResult(opt)