blob: 86b7774293432e64e4e00d55ef0bc6d2057e7f85 [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
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):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070034 common = True
Mike Frysinger401c6f02021-02-18 15:20:15 -050035 helpSummary = "Initialize a repo client checkout in the current directory"
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070036 helpUsage = """
Mike Frysinger401c6f02021-02-18 15:20:15 -050037%prog [options] [manifest url]
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070038"""
39 helpDescription = """
40The '%prog' command is run once to install and initialize repo.
41The latest repo source code and manifest collection is downloaded
42from the server and is installed in the .repo/ directory in the
43current working directory.
44
Mike Frysinger401c6f02021-02-18 15:20:15 -050045When creating a new checkout, the manifest URL is the only required setting.
46It may be specified using the --manifest-url option, or as the first optional
47argument.
48
Shawn O. Pearce77bb4af2009-04-18 11:33:32 -070049The optional -b argument can be used to select the manifest branch
Mike Frysinger50a81de2020-09-06 15:51:21 -040050to checkout and use. If no branch is specified, the remote's default
Mike Frysinger23882b32021-02-23 15:43:07 -050051branch is used. This is equivalent to using -b HEAD.
Shawn O. Pearce77bb4af2009-04-18 11:33:32 -070052
53The optional -m argument can be used to specify an alternate manifest
54to be used. If no manifest is specified, the manifest default.xml
55will be used.
56
Shawn O. Pearce88443382010-10-08 10:02:09 +020057The --reference option can be used to point to a directory that
58has the content of a --mirror sync. This will make the working
59directory use as much data as possible from the local reference
60directory when fetching from the server. This will make the sync
61go a lot faster by reducing data traffic on the network.
62
Nikolai Merinov09f0abb2018-10-19 15:07:05 +050063The --dissociate option can be used to borrow the objects from
64the directory specified with the --reference option only to reduce
65network transfer, and stop borrowing from them after a first clone
66is made by making necessary local copies of borrowed objects.
67
Hu xiuyun9711a982015-12-11 11:16:41 +080068The --no-clone-bundle option disables any attempt to use
69$URL/clone.bundle to bootstrap a new Git repository from a
70resumeable bundle file on a content delivery network. This
71may be necessary if there are problems with the local Python
72HTTP client or proxy configuration, but the Git binary works.
Shawn O. Pearce88443382010-10-08 10:02:09 +020073
Mike Frysingerb8f7bb02018-10-10 01:05:11 -040074# Switching Manifest Branches
Shawn O. Pearce77bb4af2009-04-18 11:33:32 -070075
76To switch to another manifest branch, `repo init -b otherbranch`
77may be used in an existing client. However, as this only updates the
78manifest, a subsequent `repo sync` (or `repo sync -d`) is necessary
79to update the working directory files.
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070080"""
81
Mike Frysinger66098f72020-02-05 00:01:59 -050082 def _Options(self, p, gitc_init=False):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070083 # Logging
84 g = p.add_option_group('Logging options')
Mike Frysingeredd3d452020-02-21 23:55:07 -050085 g.add_option('-v', '--verbose',
86 dest='output_mode', action='store_true',
87 help='show all output')
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070088 g.add_option('-q', '--quiet',
Mike Frysingeredd3d452020-02-21 23:55:07 -050089 dest='output_mode', action='store_false',
90 help='only show errors')
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070091
92 # Manifest
93 g = p.add_option_group('Manifest options')
94 g.add_option('-u', '--manifest-url',
Shawn O. Pearce34fb20f2011-11-30 13:41:02 -080095 dest='manifest_url',
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070096 help='manifest repository location', metavar='URL')
Mike Frysinger23882b32021-02-23 15:43:07 -050097 g.add_option('-b', '--manifest-branch', metavar='REVISION',
98 help='manifest branch or revision (use HEAD for default)')
Mike Frysinger66098f72020-02-05 00:01:59 -050099 cbr_opts = ['--current-branch']
100 # The gitc-init subcommand allocates -c itself, but a lot of init users
101 # want -c, so try to satisfy both as best we can.
Dan Willemsen93293ca2020-02-06 17:00:00 -0800102 if not gitc_init:
Mike Frysinger66098f72020-02-05 00:01:59 -0500103 cbr_opts += ['-c']
104 g.add_option(*cbr_opts,
Naseer Ahmedf4dda9a2016-12-01 18:49:54 -0500105 dest='current_branch_only', action='store_true',
106 help='fetch only current manifest branch from server')
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700107 g.add_option('-m', '--manifest-name',
108 dest='manifest_name', default='default.xml',
109 help='initial manifest file', metavar='NAME.xml')
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800110 g.add_option('--mirror',
111 dest='mirror', action='store_true',
David Pursehouse3d07da82012-08-15 14:22:08 +0900112 help='create a replica of the remote repositories '
113 'rather than a client working directory')
Shawn O. Pearce88443382010-10-08 10:02:09 +0200114 g.add_option('--reference',
115 dest='reference',
116 help='location of mirror directory', metavar='DIR')
Nikolai Merinov09f0abb2018-10-19 15:07:05 +0500117 g.add_option('--dissociate',
118 dest='dissociate', action='store_true',
119 help='dissociate from reference mirrors after clone')
Doug Anderson30d45292011-05-04 15:01:04 -0700120 g.add_option('--depth', type='int', default=None,
121 dest='depth',
122 help='create a shallow clone with given depth; see git clone')
Xin Li745be2e2019-06-03 11:24:30 -0700123 g.add_option('--partial-clone', action='store_true',
124 dest='partial_clone',
125 help='perform partial clone (https://git-scm.com/'
126 'docs/gitrepository-layout#_code_partialclone_code)')
127 g.add_option('--clone-filter', action='store', default='blob:none',
128 dest='clone_filter',
129 help='filter for use with --partial-clone [default: %default]')
Mike Frysinger979d5bd2020-02-09 02:28:34 -0500130 g.add_option('--worktree', action='store_true',
Mike Frysinger5a4c8fd2021-03-06 07:20:14 -0500131 help='use git-worktree to manage projects')
Julien Campergue335f5ef2013-10-16 11:02:35 +0200132 g.add_option('--archive',
133 dest='archive', action='store_true',
134 help='checkout an archive instead of a git repository for '
135 'each project. See git archive.')
Martin Kellye4e94d22017-03-21 16:05:12 -0700136 g.add_option('--submodules',
137 dest='submodules', action='store_true',
138 help='sync any submodules associated with the manifest repo')
Raman Tenneti21dce3d2021-02-09 00:26:31 -0800139 g.add_option('--use-superproject', action='store_true',
140 help='use the manifest superproject to sync projects')
141 g.add_option('--no-use-superproject', action='store_false',
142 dest='use_superproject',
143 help='disable use of manifest superprojects')
Colin Cross5acde752012-03-28 20:15:45 -0700144 g.add_option('-g', '--groups',
David Holmer0a1c6a12012-11-14 19:19:00 -0500145 dest='groups', default='default',
146 help='restrict manifest projects to ones with specified '
147 'group(s) [default|all|G1,G2,G3|G4,-G5,-G6]',
Colin Cross5acde752012-03-28 20:15:45 -0700148 metavar='GROUP')
Conley Owensd21720d2012-04-16 11:02:21 -0700149 g.add_option('-p', '--platform',
150 dest='platform', default='auto',
Conley Owensbb1b5f52012-08-13 13:11:18 -0700151 help='restrict manifest projects to ones with a specified '
Conley Owensd21720d2012-04-16 11:02:21 -0700152 'platform group [auto|all|none|linux|darwin|...]',
153 metavar='PLATFORM')
Xin Lid79a4bc2020-05-20 16:03:45 -0700154 g.add_option('--clone-bundle', action='store_true',
155 help='force use of /clone.bundle on HTTP/HTTPS (default if not --partial-clone)')
Hu xiuyun9711a982015-12-11 11:16:41 +0800156 g.add_option('--no-clone-bundle',
Xin Lid79a4bc2020-05-20 16:03:45 -0700157 dest='clone_bundle', action='store_false',
158 help='disable use of /clone.bundle on HTTP/HTTPS (default if --partial-clone)')
Naseer Ahmedf4dda9a2016-12-01 18:49:54 -0500159 g.add_option('--no-tags',
Mike Frysingerc58ec4d2020-02-17 14:36:08 -0500160 dest='tags', default=True, action='store_false',
Naseer Ahmedf4dda9a2016-12-01 18:49:54 -0500161 help="don't fetch tags in the manifest")
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700162
163 # Tool
Shawn O. Pearcefd89b672009-04-18 11:28:57 -0700164 g = p.add_option_group('repo Version options')
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700165 g.add_option('--repo-url',
166 dest='repo_url',
167 help='repo repository location', metavar='URL')
Mike Frysinger58ac1672020-03-14 14:35:26 -0400168 g.add_option('--repo-rev', metavar='REV',
169 help='repo branch or revision')
170 g.add_option('--repo-branch', dest='repo_rev',
171 help=optparse.SUPPRESS_HELP)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700172 g.add_option('--no-repo-verify',
Mike Frysingerc58ec4d2020-02-17 14:36:08 -0500173 dest='repo_verify', default=True, action='store_false',
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700174 help='do not verify repo source code')
175
Victor Boivie841be342011-04-05 11:31:10 +0200176 # Other
177 g = p.add_option_group('Other options')
178 g.add_option('--config-name',
179 dest='config_name', action="store_true", default=False,
180 help='Always prompt for name/e-mail')
181
David Pursehouse3f5ea0b2012-11-17 03:13:09 +0900182 def _RegisteredEnvironmentOptions(self):
183 return {'REPO_MANIFEST_URL': 'manifest_url',
184 'REPO_MIRROR_LOCATION': 'reference'}
185
Raman Tennetief99ec02021-03-04 10:29:40 -0800186 def _CloneSuperproject(self, opt):
187 """Clone the superproject based on the superproject's url and branch.
188
189 Args:
190 opt: Program options returned from optparse. See _Options().
191 """
Raman Tenneti21dce3d2021-02-09 00:26:31 -0800192 superproject = git_superproject.Superproject(self.manifest,
Raman Tennetief99ec02021-03-04 10:29:40 -0800193 self.repodir,
194 quiet=opt.quiet)
Raman Tenneti21dce3d2021-02-09 00:26:31 -0800195 if not superproject.Sync():
196 print('error: git update of superproject failed', file=sys.stderr)
197 sys.exit(1)
198
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700199 def _SyncManifest(self, opt):
200 m = self.manifest.manifestProject
Shawn O. Pearce5470df62009-03-09 18:51:58 -0700201 is_new = not m.Exists
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700202
Shawn O. Pearce5470df62009-03-09 18:51:58 -0700203 if is_new:
Shawn O. Pearce34fb20f2011-11-30 13:41:02 -0800204 if not opt.manifest_url:
Mike Frysinger401c6f02021-02-18 15:20:15 -0500205 print('fatal: manifest url is required.', file=sys.stderr)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700206 sys.exit(1)
207
208 if not opt.quiet:
Mike Frysingerdcbfadf2020-02-22 00:04:39 -0500209 print('Downloading manifest from %s' %
210 (GitConfig.ForUser().UrlInsteadOf(opt.manifest_url),),
Sarah Owenscecd1d82012-11-01 22:59:27 -0700211 file=sys.stderr)
Victor Boivie2b30e3a2012-10-05 12:37:58 +0200212
213 # The manifest project object doesn't keep track of the path on the
214 # server where this git is located, so let's save that here.
215 mirrored_manifest_git = None
216 if opt.reference:
Anthony King7993f3c2015-06-03 17:21:56 +0100217 manifest_git_path = urllib.parse.urlparse(opt.manifest_url).path[1:]
Victor Boivie2b30e3a2012-10-05 12:37:58 +0200218 mirrored_manifest_git = os.path.join(opt.reference, manifest_git_path)
219 if not mirrored_manifest_git.endswith(".git"):
220 mirrored_manifest_git += ".git"
221 if not os.path.exists(mirrored_manifest_git):
Samuel Holland5f0e57d2018-01-22 11:00:24 -0600222 mirrored_manifest_git = os.path.join(opt.reference,
223 '.repo/manifests.git')
Victor Boivie2b30e3a2012-10-05 12:37:58 +0200224
225 m._InitGitDir(mirror_git=mirrored_manifest_git)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700226
Nasser Grainawid92464e2019-05-21 10:41:35 -0600227 self._ConfigureDepth(opt)
228
Mike Frysinger50a81de2020-09-06 15:51:21 -0400229 # Set the remote URL before the remote branch as we might need it below.
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
Mike Frysinger50a81de2020-09-06 15:51:21 -0400236 if opt.manifest_branch:
Mike Frysinger23882b32021-02-23 15:43:07 -0500237 if opt.manifest_branch == 'HEAD':
238 opt.manifest_branch = m.ResolveRemoteHead()
239 if opt.manifest_branch is None:
240 print('fatal: unable to resolve HEAD', file=sys.stderr)
241 sys.exit(1)
Mike Frysinger50a81de2020-09-06 15:51:21 -0400242 m.revisionExpr = opt.manifest_branch
243 else:
244 if is_new:
245 default_branch = m.ResolveRemoteHead()
246 if default_branch is None:
247 # If the remote doesn't have HEAD configured, default to master.
248 default_branch = 'refs/heads/master'
249 m.revisionExpr = default_branch
250 else:
251 m.PreSync()
252
David Pursehouse1d947b32012-10-25 12:23:11 +0900253 groups = re.split(r'[,\s]+', opt.groups)
Pascal Muetschardc2a64dd2015-10-22 13:26:36 -0700254 all_platforms = ['linux', 'darwin', 'windows']
Conley Owensd21720d2012-04-16 11:02:21 -0700255 platformize = lambda x: 'platform-' + x
256 if opt.platform == 'auto':
257 if (not opt.mirror and
David Pursehouseabdf7502020-02-12 14:58:39 +0900258 not m.config.GetString('repo.mirror') == 'true'):
Conley Owensd21720d2012-04-16 11:02:21 -0700259 groups.append(platformize(platform.system().lower()))
260 elif opt.platform == 'all':
Colin Cross54657272012-04-23 13:39:48 -0700261 groups.extend(map(platformize, all_platforms))
Conley Owensd21720d2012-04-16 11:02:21 -0700262 elif opt.platform in all_platforms:
Pascal Muetschardc2a64dd2015-10-22 13:26:36 -0700263 groups.append(platformize(opt.platform))
Conley Owensd21720d2012-04-16 11:02:21 -0700264 elif opt.platform != 'none':
Sarah Owenscecd1d82012-11-01 22:59:27 -0700265 print('fatal: invalid platform flag', file=sys.stderr)
Conley Owensd21720d2012-04-16 11:02:21 -0700266 sys.exit(1)
267
Conley Owens971de8e2012-04-16 10:36:08 -0700268 groups = [x for x in groups if x]
269 groupstr = ','.join(groups)
Raman Tenneti080877e2021-03-09 15:19:06 -0800270 if opt.platform == 'auto' and groupstr == self.manifest.GetDefaultGroupsStr():
Conley Owens971de8e2012-04-16 10:36:08 -0700271 groupstr = None
272 m.config.SetString('manifest.groups', groupstr)
Colin Cross5acde752012-03-28 20:15:45 -0700273
Shawn O. Pearce88443382010-10-08 10:02:09 +0200274 if opt.reference:
275 m.config.SetString('repo.reference', opt.reference)
276
Nikolai Merinov09f0abb2018-10-19 15:07:05 +0500277 if opt.dissociate:
Mike Frysinger38867fb2021-02-09 23:14:41 -0500278 m.config.SetBoolean('repo.dissociate', opt.dissociate)
Nikolai Merinov09f0abb2018-10-19 15:07:05 +0500279
Mike Frysinger979d5bd2020-02-09 02:28:34 -0500280 if opt.worktree:
281 if opt.mirror:
282 print('fatal: --mirror and --worktree are incompatible',
283 file=sys.stderr)
284 sys.exit(1)
285 if opt.submodules:
286 print('fatal: --submodules and --worktree are incompatible',
287 file=sys.stderr)
288 sys.exit(1)
Mike Frysinger38867fb2021-02-09 23:14:41 -0500289 m.config.SetBoolean('repo.worktree', opt.worktree)
Mike Frysinger979d5bd2020-02-09 02:28:34 -0500290 if is_new:
291 m.use_git_worktrees = True
292 print('warning: --worktree is experimental!', file=sys.stderr)
293
Julien Campergue335f5ef2013-10-16 11:02:35 +0200294 if opt.archive:
295 if is_new:
Mike Frysinger38867fb2021-02-09 23:14:41 -0500296 m.config.SetBoolean('repo.archive', opt.archive)
Julien Campergue335f5ef2013-10-16 11:02:35 +0200297 else:
298 print('fatal: --archive is only supported when initializing a new '
299 'workspace.', file=sys.stderr)
300 print('Either delete the .repo folder in this workspace, or initialize '
301 'in another location.', file=sys.stderr)
302 sys.exit(1)
303
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800304 if opt.mirror:
Shawn O. Pearce5470df62009-03-09 18:51:58 -0700305 if is_new:
Mike Frysinger38867fb2021-02-09 23:14:41 -0500306 m.config.SetBoolean('repo.mirror', opt.mirror)
Shawn O. Pearce5470df62009-03-09 18:51:58 -0700307 else:
David Pursehouse25470982012-11-21 14:41:58 +0900308 print('fatal: --mirror is only supported when initializing a new '
309 'workspace.', file=sys.stderr)
310 print('Either delete the .repo folder in this workspace, or initialize '
311 'in another location.', file=sys.stderr)
Shawn O. Pearce5470df62009-03-09 18:51:58 -0700312 sys.exit(1)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800313
Xin Li745be2e2019-06-03 11:24:30 -0700314 if opt.partial_clone:
315 if opt.mirror:
316 print('fatal: --mirror and --partial-clone are mutually exclusive',
317 file=sys.stderr)
318 sys.exit(1)
Mike Frysinger38867fb2021-02-09 23:14:41 -0500319 m.config.SetBoolean('repo.partialclone', opt.partial_clone)
Xin Li745be2e2019-06-03 11:24:30 -0700320 if opt.clone_filter:
321 m.config.SetString('repo.clonefilter', opt.clone_filter)
322 else:
323 opt.clone_filter = None
324
Xin Lid79a4bc2020-05-20 16:03:45 -0700325 if opt.clone_bundle is None:
326 opt.clone_bundle = False if opt.partial_clone else True
327 else:
Mike Frysinger38867fb2021-02-09 23:14:41 -0500328 m.config.SetBoolean('repo.clonebundle', opt.clone_bundle)
Xin Lid79a4bc2020-05-20 16:03:45 -0700329
Martin Kellye4e94d22017-03-21 16:05:12 -0700330 if opt.submodules:
Mike Frysinger38867fb2021-02-09 23:14:41 -0500331 m.config.SetBoolean('repo.submodules', opt.submodules)
Martin Kellye4e94d22017-03-21 16:05:12 -0700332
Raman Tenneti21dce3d2021-02-09 00:26:31 -0800333 if opt.use_superproject is not None:
334 m.config.SetBoolean('repo.superproject', opt.use_superproject)
335
Mike Frysingeredd3d452020-02-21 23:55:07 -0500336 if not m.Sync_NetworkHalf(is_new=is_new, quiet=opt.quiet, verbose=opt.verbose,
Mike Frysingerc58ec4d2020-02-17 14:36:08 -0500337 clone_bundle=opt.clone_bundle,
David Pursehouseabdf7502020-02-12 14:58:39 +0900338 current_branch_only=opt.current_branch_only,
Mike Frysingerc58ec4d2020-02-17 14:36:08 -0500339 tags=opt.tags, submodules=opt.submodules,
David Pursehouseabdf7502020-02-12 14:58:39 +0900340 clone_filter=opt.clone_filter):
Shawn O. Pearce1fc99f42009-03-17 08:06:18 -0700341 r = m.GetRemote(m.remote.name)
Sarah Owenscecd1d82012-11-01 22:59:27 -0700342 print('fatal: cannot obtain manifest %s' % r.url, file=sys.stderr)
Doug Anderson2630dd92011-04-07 13:36:30 -0700343
344 # Better delete the manifest git dir if we created it; otherwise next
345 # time (when user fixes problems) we won't go through the "is_new" logic.
346 if is_new:
Renaud Paquaya65adf72016-11-03 10:37:53 -0700347 platform_utils.rmtree(m.gitdir)
Shawn O. Pearce1fc99f42009-03-17 08:06:18 -0700348 sys.exit(1)
349
Florian Vallee5d016502012-06-07 17:19:26 +0200350 if opt.manifest_branch:
Martin Kelly224a31a2017-07-10 14:46:25 -0700351 m.MetaBranchSwitch(submodules=opt.submodules)
Florian Vallee5d016502012-06-07 17:19:26 +0200352
Shawn O. Pearce350cde42009-04-16 11:21:18 -0700353 syncbuf = SyncBuffer(m.config)
Martin Kellye4e94d22017-03-21 16:05:12 -0700354 m.Sync_LocalHalf(syncbuf, submodules=opt.submodules)
Shawn O. Pearce350cde42009-04-16 11:21:18 -0700355 syncbuf.Finish()
356
Shawn O. Pearcedf018832009-03-17 08:15:27 -0700357 if is_new or m.CurrentBranch is None:
Shawn O. Pearce0a389e92009-04-10 16:21:18 -0700358 if not m.StartBranch('default'):
Sarah Owenscecd1d82012-11-01 22:59:27 -0700359 print('fatal: cannot create default in manifest', file=sys.stderr)
Shawn O. Pearce0a389e92009-04-10 16:21:18 -0700360 sys.exit(1)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700361
362 def _LinkManifest(self, name):
363 if not name:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700364 print('fatal: manifest name (-m) is required.', file=sys.stderr)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700365 sys.exit(1)
366
367 try:
368 self.manifest.Link(name)
Sarah Owensa5be53f2012-09-09 15:37:57 -0700369 except ManifestParseError as e:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700370 print("fatal: manifest '%s' not available" % name, file=sys.stderr)
371 print('fatal: %s' % str(e), file=sys.stderr)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700372 sys.exit(1)
373
Shawn O. Pearce37dbf2b2009-07-02 10:53:04 -0700374 def _Prompt(self, prompt, value):
Mike Frysingerab85fe72019-07-04 17:35:11 -0400375 print('%-10s [%s]: ' % (prompt, value), end='')
376 # TODO: When we require Python 3, use flush=True w/print above.
377 sys.stdout.flush()
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700378 a = sys.stdin.readline().strip()
Shawn O. Pearce37dbf2b2009-07-02 10:53:04 -0700379 if a == '':
380 return value
381 return a
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700382
Mike Frysinger0b888912020-02-21 22:48:40 -0500383 def _ShouldConfigureUser(self, opt):
Mike Frysinger8c1e9cb2020-09-06 14:53:18 -0400384 gc = self.client.globalConfig
Victor Boivie841be342011-04-05 11:31:10 +0200385 mp = self.manifest.manifestProject
386
387 # If we don't have local settings, get from global.
388 if not mp.config.Has('user.name') or not mp.config.Has('user.email'):
389 if not gc.Has('user.name') or not gc.Has('user.email'):
390 return True
391
392 mp.config.SetString('user.name', gc.GetString('user.name'))
393 mp.config.SetString('user.email', gc.GetString('user.email'))
394
Mike Frysinger0b888912020-02-21 22:48:40 -0500395 if not opt.quiet:
396 print()
397 print('Your identity is: %s <%s>' % (mp.config.GetString('user.name'),
398 mp.config.GetString('user.email')))
399 print("If you want to change this, please re-run 'repo init' with --config-name")
Victor Boivie841be342011-04-05 11:31:10 +0200400 return False
401
Mike Frysinger0b888912020-02-21 22:48:40 -0500402 def _ConfigureUser(self, opt):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700403 mp = self.manifest.manifestProject
404
Shawn O. Pearce37dbf2b2009-07-02 10:53:04 -0700405 while True:
Mike Frysinger0b888912020-02-21 22:48:40 -0500406 if not opt.quiet:
407 print()
David Pursehouse54a4e602020-02-12 14:31:05 +0900408 name = self._Prompt('Your Name', mp.UserName)
Shawn O. Pearce37dbf2b2009-07-02 10:53:04 -0700409 email = self._Prompt('Your Email', mp.UserEmail)
410
Mike Frysinger0b888912020-02-21 22:48:40 -0500411 if not opt.quiet:
412 print()
Sarah Owenscecd1d82012-11-01 22:59:27 -0700413 print('Your identity is: %s <%s>' % (name, email))
Mike Frysingerab85fe72019-07-04 17:35:11 -0400414 print('is this correct [y/N]? ', end='')
415 # TODO: When we require Python 3, use flush=True w/print above.
416 sys.stdout.flush()
David Pursehousefc241242012-11-14 09:19:39 +0900417 a = sys.stdin.readline().strip().lower()
Nico Sallembien6d7508b2010-04-01 11:03:53 -0700418 if a in ('yes', 'y', 't', 'true'):
Shawn O. Pearce37dbf2b2009-07-02 10:53:04 -0700419 break
420
421 if name != mp.UserName:
422 mp.config.SetString('user.name', name)
423 if email != mp.UserEmail:
424 mp.config.SetString('user.email', email)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700425
426 def _HasColorSet(self, gc):
427 for n in ['ui', 'diff', 'status']:
428 if gc.Has('color.%s' % n):
429 return True
430 return False
431
432 def _ConfigureColor(self):
Mike Frysinger8c1e9cb2020-09-06 14:53:18 -0400433 gc = self.client.globalConfig
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700434 if self._HasColorSet(gc):
435 return
436
437 class _Test(Coloring):
438 def __init__(self):
439 Coloring.__init__(self, gc, 'test color display')
440 self._on = True
441 out = _Test()
442
Sarah Owenscecd1d82012-11-01 22:59:27 -0700443 print()
444 print("Testing colorized output (for 'repo diff', 'repo status'):")
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700445
David Pursehouse8f62fb72012-11-14 12:09:38 +0900446 for c in ['black', 'red', 'green', 'yellow', 'blue', 'magenta', 'cyan']:
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700447 out.write(' ')
448 out.printer(fg=c)(' %-6s ', c)
449 out.write(' ')
450 out.printer(fg='white', bg='black')(' %s ' % 'white')
451 out.nl()
452
David Pursehouse8f62fb72012-11-14 12:09:38 +0900453 for c in ['bold', 'dim', 'ul', 'reverse']:
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700454 out.write(' ')
455 out.printer(fg='black', attr=c)(' %-6s ', c)
456 out.nl()
457
Mike Frysingerab85fe72019-07-04 17:35:11 -0400458 print('Enable color display in this user account (y/N)? ', end='')
459 # TODO: When we require Python 3, use flush=True w/print above.
460 sys.stdout.flush()
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700461 a = sys.stdin.readline().strip().lower()
462 if a in ('y', 'yes', 't', 'true', 'on'):
463 gc.SetString('color.ui', 'auto')
464
Doug Anderson30d45292011-05-04 15:01:04 -0700465 def _ConfigureDepth(self, opt):
466 """Configure the depth we'll sync down.
467
468 Args:
469 opt: Options from optparse. We care about opt.depth.
470 """
471 # Opt.depth will be non-None if user actually passed --depth to repo init.
472 if opt.depth is not None:
473 if opt.depth > 0:
474 # Positive values will set the depth.
475 depth = str(opt.depth)
476 else:
477 # Negative numbers will clear the depth; passing None to SetString
478 # will do that.
479 depth = None
480
481 # We store the depth in the main manifest project.
482 self.manifest.manifestProject.config.SetString('repo.depth', depth)
483
Mike Frysinger0b888912020-02-21 22:48:40 -0500484 def _DisplayResult(self, opt):
Yang Zhenhui75cc3532012-10-23 15:41:54 +0800485 if self.manifest.IsMirror:
486 init_type = 'mirror '
487 else:
488 init_type = ''
489
Mike Frysinger0b888912020-02-21 22:48:40 -0500490 if not opt.quiet:
491 print()
492 print('repo %shas been initialized in %s' %
493 (init_type, self.manifest.topdir))
Yang Zhenhui75cc3532012-10-23 15:41:54 +0800494
495 current_dir = os.getcwd()
496 if current_dir != self.manifest.topdir:
David Pursehouse35765962013-01-29 09:49:48 +0900497 print('If this is not the directory in which you want to initialize '
Sarah Owenscecd1d82012-11-01 22:59:27 -0700498 'repo, please run:')
499 print(' rm -r %s/.repo' % self.manifest.topdir)
500 print('and try again.')
Yang Zhenhui75cc3532012-10-23 15:41:54 +0800501
Mike Frysingerae6cb082019-08-27 01:10:59 -0400502 def ValidateOptions(self, opt, args):
Victor Boivie297e7c62012-10-05 14:50:05 +0200503 if opt.reference:
Samuel Hollandbaa00092018-01-22 10:57:29 -0600504 opt.reference = os.path.expanduser(opt.reference)
Victor Boivie297e7c62012-10-05 14:50:05 +0200505
Julien Campergue335f5ef2013-10-16 11:02:35 +0200506 # Check this here, else manifest will be tagged "not new" and init won't be
507 # possible anymore without removing the .repo/manifests directory.
508 if opt.archive and opt.mirror:
Mike Frysingerae6cb082019-08-27 01:10:59 -0400509 self.OptionParser.error('--mirror and --archive cannot be used together.')
510
Mike Frysinger0578ebf2020-08-27 01:50:12 -0400511 if args:
Mike Frysinger401c6f02021-02-18 15:20:15 -0500512 if opt.manifest_url:
513 self.OptionParser.error(
514 '--manifest-url option and URL argument both specified: only use '
515 'one to select the manifest URL.')
516
517 opt.manifest_url = args.pop(0)
518
519 if args:
520 self.OptionParser.error('too many arguments to init')
Mike Frysinger0578ebf2020-08-27 01:50:12 -0400521
Mike Frysingerae6cb082019-08-27 01:10:59 -0400522 def Execute(self, opt, args):
Mike Frysinger82caef62020-02-11 18:51:08 -0500523 git_require(MIN_GIT_VERSION_HARD, fail=True)
524 if not git_require(MIN_GIT_VERSION_SOFT):
525 print('repo: warning: git-%s+ will soon be required; please upgrade your '
526 'version of git to maintain support.'
527 % ('.'.join(str(x) for x in MIN_GIT_VERSION_SOFT),),
528 file=sys.stderr)
Julien Campergue335f5ef2013-10-16 11:02:35 +0200529
Mike Frysingeredd3d452020-02-21 23:55:07 -0500530 opt.quiet = opt.output_mode is False
531 opt.verbose = opt.output_mode is True
532
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()
544 remote_ref, rev = wrapper.check_repo_rev(
545 rp.gitdir, opt.repo_rev, repo_verify=opt.repo_verify, quiet=opt.quiet)
546 branch = rp.GetBranch('default')
547 branch.merge = remote_ref
Mike Frysinger5e2f32f2020-12-05 22:57:19 -0500548 rp.work_git.reset('--hard', rev)
Mike Frysinger3599cc32020-02-29 02:53:41 -0500549 branch.Save()
550
Mike Frysinger979d5bd2020-02-09 02:28:34 -0500551 if opt.worktree:
552 # Older versions of git supported worktree, but had dangerous gc bugs.
553 git_require((2, 15, 0), fail=True, msg='git gc worktree corruption')
554
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700555 self._SyncManifest(opt)
556 self._LinkManifest(opt.manifest_name)
557
Raman Tenneti21dce3d2021-02-09 00:26:31 -0800558 if self.manifest.manifestProject.config.GetBoolean('repo.superproject'):
Raman Tennetief99ec02021-03-04 10:29:40 -0800559 self._CloneSuperproject(opt)
Raman Tenneti21dce3d2021-02-09 00:26:31 -0800560
Shawn O. Pearce8630f392009-03-19 10:17:12 -0700561 if os.isatty(0) and os.isatty(1) and not self.manifest.IsMirror:
Mike Frysinger0b888912020-02-21 22:48:40 -0500562 if opt.config_name or self._ShouldConfigureUser(opt):
563 self._ConfigureUser(opt)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700564 self._ConfigureColor()
565
Mike Frysinger0b888912020-02-21 22:48:40 -0500566 self._DisplayResult(opt)