blob: a3effd11ae759ab4dd8447a5d279fc232992fdb1 [file] [log] [blame]
Mike Frysingerf6013762019-06-13 02:30:51 -04001# -*- coding:utf-8 -*-
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002#
3# Copyright (C) 2008 The Android Open Source Project
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
Sarah Owenscecd1d82012-11-01 22:59:27 -070017from __future__ import print_function
Colin Cross23acdd32012-04-21 00:33:54 -070018import itertools
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070019import os
Conley Owensdb728cd2011-09-26 16:34:01 -070020import re
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070021import sys
David Pursehouse59bbb582013-05-17 10:49:33 +090022import xml.dom.minidom
23
24from pyversion import is_python3
25if is_python3():
Chirayu Desai217ea7d2013-03-01 19:14:38 +053026 import urllib.parse
David Pursehouse59bbb582013-05-17 10:49:33 +090027else:
Chirayu Desai217ea7d2013-03-01 19:14:38 +053028 import imp
29 import urlparse
30 urllib = imp.new_module('urllib')
Chirayu Desaidb2ad9d2013-06-11 13:42:25 +053031 urllib.parse = urlparse
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070032
Simran Basib9a1b732015-08-20 12:19:28 -070033import gitc_utils
David Pursehousee15c65a2012-08-22 10:46:11 +090034from git_config import GitConfig
David Pursehousee00aa6b2012-09-11 14:33:51 +090035from git_refs import R_HEADS, HEAD
Renaud Paquayd5cec5e2016-11-01 11:24:03 -070036import platform_utils
David Pursehousee00aa6b2012-09-11 14:33:51 +090037from project import RemoteSpec, Project, MetaProject
Mike Frysinger04122b72019-07-31 23:32:58 -040038from error import (ManifestParseError, ManifestInvalidPathError,
39 ManifestInvalidRevisionError)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070040
41MANIFEST_FILE_NAME = 'manifest.xml'
Shawn O. Pearce5cc66792008-10-23 16:19:27 -070042LOCAL_MANIFEST_NAME = 'local_manifest.xml'
David Pursehouse2d5a0df2012-11-13 02:50:36 +090043LOCAL_MANIFESTS_DIR_NAME = 'local_manifests'
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070044
Anthony Kingcb07ba72015-03-28 23:26:04 +000045# urljoin gets confused if the scheme is not known.
Joe Kilner6e310792016-10-27 15:53:53 -070046urllib.parse.uses_relative.extend([
47 'ssh',
48 'git',
49 'persistent-https',
50 'sso',
51 'rpc'])
52urllib.parse.uses_netloc.extend([
53 'ssh',
54 'git',
55 'persistent-https',
56 'sso',
57 'rpc'])
Conley Owensdb728cd2011-09-26 16:34:01 -070058
David Pursehouse819827a2020-02-12 15:20:19 +090059
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070060class _Default(object):
61 """Project defaults within the manifest."""
62
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -070063 revisionExpr = None
Conley Owensb6a16e62013-09-25 15:06:09 -070064 destBranchExpr = None
Nasser Grainawida403412018-05-04 12:53:29 -060065 upstreamExpr = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070066 remote = None
Shawn O. Pearce6392c872011-09-22 17:44:31 -070067 sync_j = 1
Anatol Pomazau79770d22012-04-20 14:41:59 -070068 sync_c = False
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +080069 sync_s = False
YOUNG HO CHAa32c92c2018-02-14 16:57:31 +090070 sync_tags = True
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070071
Julien Campergue74879922013-10-09 14:38:46 +020072 def __eq__(self, other):
73 return self.__dict__ == other.__dict__
74
75 def __ne__(self, other):
76 return self.__dict__ != other.__dict__
77
David Pursehouse819827a2020-02-12 15:20:19 +090078
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070079class _XmlRemote(object):
80 def __init__(self,
81 name,
Yestin Sunb292b982012-07-02 07:32:50 -070082 alias=None,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070083 fetch=None,
Steve Raed6480452016-08-10 15:00:00 -070084 pushUrl=None,
Conley Owensdb728cd2011-09-26 16:34:01 -070085 manifestUrl=None,
Anthony King36ea2fb2014-05-06 11:54:01 +010086 review=None,
Jonathan Nieder93719792015-03-17 11:29:58 -070087 revision=None):
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070088 self.name = name
89 self.fetchUrl = fetch
Steve Raed6480452016-08-10 15:00:00 -070090 self.pushUrl = pushUrl
Conley Owensdb728cd2011-09-26 16:34:01 -070091 self.manifestUrl = manifestUrl
Yestin Sunb292b982012-07-02 07:32:50 -070092 self.remoteAlias = alias
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070093 self.reviewUrl = review
Anthony King36ea2fb2014-05-06 11:54:01 +010094 self.revision = revision
Conley Owensceea3682011-10-20 10:45:47 -070095 self.resolvedFetchUrl = self._resolveFetchUrl()
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070096
David Pursehouse717ece92012-11-13 08:49:16 +090097 def __eq__(self, other):
98 return self.__dict__ == other.__dict__
99
100 def __ne__(self, other):
101 return self.__dict__ != other.__dict__
102
Conley Owensceea3682011-10-20 10:45:47 -0700103 def _resolveFetchUrl(self):
104 url = self.fetchUrl.rstrip('/')
Conley Owensdb728cd2011-09-26 16:34:01 -0700105 manifestUrl = self.manifestUrl.rstrip('/')
Conley Owens2d0f5082014-01-31 15:03:51 -0800106 # urljoin will gets confused over quite a few things. The ones we care
107 # about here are:
108 # * no scheme in the base url, like <hostname:port>
Anthony Kingcb07ba72015-03-28 23:26:04 +0000109 # We handle no scheme by replacing it with an obscure protocol, gopher
110 # and then replacing it with the original when we are done.
111
Conley Owensdb728cd2011-09-26 16:34:01 -0700112 if manifestUrl.find(':') != manifestUrl.find('/') - 1:
Conley Owens4ccad752015-04-29 10:45:37 -0700113 url = urllib.parse.urljoin('gopher://' + manifestUrl, url)
114 url = re.sub(r'^gopher://', '', url)
Anthony Kingcb07ba72015-03-28 23:26:04 +0000115 else:
116 url = urllib.parse.urljoin(manifestUrl, url)
Shawn Pearcea9f11b32013-01-02 15:40:48 -0800117 return url
Conley Owensceea3682011-10-20 10:45:47 -0700118
119 def ToRemoteSpec(self, projectName):
David Rileye0684ad2017-04-05 00:02:59 -0700120 fetchUrl = self.resolvedFetchUrl.rstrip('/')
121 url = fetchUrl + '/' + projectName
Yestin Sunb292b982012-07-02 07:32:50 -0700122 remoteName = self.name
Conley Owens1e7ab2a2013-10-08 17:26:57 -0700123 if self.remoteAlias:
David Pursehouse37128b62013-10-15 10:48:40 +0900124 remoteName = self.remoteAlias
Dan Willemsen96c2d652016-04-06 16:03:54 -0700125 return RemoteSpec(remoteName,
126 url=url,
Steve Raed6480452016-08-10 15:00:00 -0700127 pushUrl=self.pushUrl,
Dan Willemsen96c2d652016-04-06 16:03:54 -0700128 review=self.reviewUrl,
David Rileye0684ad2017-04-05 00:02:59 -0700129 orig_name=self.name,
130 fetchUrl=self.fetchUrl)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700131
David Pursehouse819827a2020-02-12 15:20:19 +0900132
Shawn O. Pearcec8a300f2009-05-18 13:19:57 -0700133class XmlManifest(object):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700134 """manages the repo configuration file"""
135
136 def __init__(self, repodir):
137 self.repodir = os.path.abspath(repodir)
138 self.topdir = os.path.dirname(self.repodir)
139 self.manifestFile = os.path.join(self.repodir, MANIFEST_FILE_NAME)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700140 self.globalConfig = GitConfig.ForUser()
David Pursehouse4eb285c2013-02-14 16:28:44 +0900141 self.localManifestWarning = False
Simran Basib9a1b732015-08-20 12:19:28 -0700142 self.isGitcClient = False
Basil Gelloc7453502018-05-25 20:23:52 +0300143 self._load_local_manifests = True
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700144
145 self.repoProject = MetaProject(self, 'repo',
David Pursehouseabdf7502020-02-12 14:58:39 +0900146 gitdir=os.path.join(repodir, 'repo/.git'),
147 worktree=os.path.join(repodir, 'repo'))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700148
Mike Frysinger979d5bd2020-02-09 02:28:34 -0500149 mp = MetaProject(self, 'manifests',
150 gitdir=os.path.join(repodir, 'manifests.git'),
151 worktree=os.path.join(repodir, 'manifests'))
152 self.manifestProject = mp
153
154 # This is a bit hacky, but we're in a chicken & egg situation: all the
155 # normal repo settings live in the manifestProject which we just setup
156 # above, so we couldn't easily query before that. We assume Project()
157 # init doesn't care if this changes afterwards.
158 if mp.config.GetBoolean('repo.worktree'):
159 mp.use_git_worktrees = True
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700160
161 self._Unload()
162
Basil Gelloc7453502018-05-25 20:23:52 +0300163 def Override(self, name, load_local_manifests=True):
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700164 """Use a different manifest, just for the current instantiation.
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700165 """
Basil Gelloc7453502018-05-25 20:23:52 +0300166 path = None
167
168 # Look for a manifest by path in the filesystem (including the cwd).
169 if not load_local_manifests:
170 local_path = os.path.abspath(name)
171 if os.path.isfile(local_path):
172 path = local_path
173
174 # Look for manifests by name from the manifests repo.
175 if path is None:
176 path = os.path.join(self.manifestProject.worktree, name)
177 if not os.path.isfile(path):
178 raise ManifestParseError('manifest %s not found' % name)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700179
180 old = self.manifestFile
181 try:
Basil Gelloc7453502018-05-25 20:23:52 +0300182 self._load_local_manifests = load_local_manifests
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700183 self.manifestFile = path
184 self._Unload()
185 self._Load()
186 finally:
187 self.manifestFile = old
188
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700189 def Link(self, name):
190 """Update the repo metadata to use a different manifest.
191 """
192 self.Override(name)
193
Mike Frysingera269b1c2020-02-21 00:49:41 -0500194 # Old versions of repo would generate symlinks we need to clean up.
195 if os.path.lexists(self.manifestFile):
196 platform_utils.remove(self.manifestFile)
197 # This file is interpreted as if it existed inside the manifest repo.
198 # That allows us to use <include> with the relative file name.
199 with open(self.manifestFile, 'w') as fp:
200 fp.write("""<?xml version="1.0" encoding="UTF-8"?>
201<!--
202DO NOT EDIT THIS FILE! It is generated by repo and changes will be discarded.
203If you want to use a different manifest, use `repo init -m <file>` instead.
204
205If you want to customize your checkout by overriding manifest settings, use
206the local_manifests/ directory instead.
207
208For more information on repo manifests, check out:
209https://gerrit.googlesource.com/git-repo/+/HEAD/docs/manifest-format.md
210-->
211<manifest>
212 <include name="%s" />
213</manifest>
214""" % (name,))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700215
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800216 def _RemoteToXml(self, r, doc, root):
217 e = doc.createElement('remote')
218 root.appendChild(e)
219 e.setAttribute('name', r.name)
220 e.setAttribute('fetch', r.fetchUrl)
Steve Raed6480452016-08-10 15:00:00 -0700221 if r.pushUrl is not None:
222 e.setAttribute('pushurl', r.pushUrl)
Conley Owens1e7ab2a2013-10-08 17:26:57 -0700223 if r.remoteAlias is not None:
224 e.setAttribute('alias', r.remoteAlias)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800225 if r.reviewUrl is not None:
226 e.setAttribute('review', r.reviewUrl)
Anthony King36ea2fb2014-05-06 11:54:01 +0100227 if r.revision is not None:
228 e.setAttribute('revision', r.revision)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800229
Josh Triplett884a3872014-06-12 14:57:29 -0700230 def _ParseGroups(self, groups):
231 return [x for x in re.split(r'[,\s]+', groups) if x]
232
Dan Willemsen5ea32d12015-09-08 13:27:20 -0700233 def Save(self, fd, peg_rev=False, peg_rev_upstream=True, groups=None):
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800234 """Write the current manifest out to the given file descriptor.
235 """
Colin Cross5acde752012-03-28 20:15:45 -0700236 mp = self.manifestProject
237
Dan Willemsen5ea32d12015-09-08 13:27:20 -0700238 if groups is None:
239 groups = mp.config.GetString('manifest.groups')
Matt Gumbel0c635bb2012-12-21 10:14:53 -0800240 if groups:
Josh Triplett884a3872014-06-12 14:57:29 -0700241 groups = self._ParseGroups(groups)
Colin Cross5acde752012-03-28 20:15:45 -0700242
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800243 doc = xml.dom.minidom.Document()
244 root = doc.createElement('manifest')
245 doc.appendChild(root)
246
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700247 # Save out the notice. There's a little bit of work here to give it the
248 # right whitespace, which assumes that the notice is automatically indented
249 # by 4 by minidom.
250 if self.notice:
251 notice_element = root.appendChild(doc.createElement('notice'))
252 notice_lines = self.notice.splitlines()
David Pursehouse54a4e602020-02-12 14:31:05 +0900253 indented_notice = ('\n'.join(" " * 4 + line for line in notice_lines))[4:]
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700254 notice_element.appendChild(doc.createTextNode(indented_notice))
255
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800256 d = self.default
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800257
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530258 for r in sorted(self.remotes):
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800259 self._RemoteToXml(self.remotes[r], doc, root)
260 if self.remotes:
261 root.appendChild(doc.createTextNode(''))
262
263 have_default = False
264 e = doc.createElement('default')
265 if d.remote:
266 have_default = True
267 e.setAttribute('remote', d.remote.name)
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700268 if d.revisionExpr:
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800269 have_default = True
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700270 e.setAttribute('revision', d.revisionExpr)
Simon Ruggier7e59de22015-07-24 12:50:06 +0200271 if d.destBranchExpr:
272 have_default = True
273 e.setAttribute('dest-branch', d.destBranchExpr)
Nasser Grainawida403412018-05-04 12:53:29 -0600274 if d.upstreamExpr:
275 have_default = True
276 e.setAttribute('upstream', d.upstreamExpr)
Shawn O. Pearce6392c872011-09-22 17:44:31 -0700277 if d.sync_j > 1:
278 have_default = True
279 e.setAttribute('sync-j', '%d' % d.sync_j)
Anatol Pomazau79770d22012-04-20 14:41:59 -0700280 if d.sync_c:
281 have_default = True
282 e.setAttribute('sync-c', 'true')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800283 if d.sync_s:
284 have_default = True
285 e.setAttribute('sync-s', 'true')
YOUNG HO CHAa32c92c2018-02-14 16:57:31 +0900286 if not d.sync_tags:
287 have_default = True
288 e.setAttribute('sync-tags', 'false')
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800289 if have_default:
290 root.appendChild(e)
291 root.appendChild(doc.createTextNode(''))
292
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700293 if self._manifest_server:
294 e = doc.createElement('manifest-server')
295 e.setAttribute('url', self._manifest_server)
296 root.appendChild(e)
297 root.appendChild(doc.createTextNode(''))
298
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800299 def output_projects(parent, parent_node, projects):
David James8d201162013-10-11 17:03:19 -0700300 for project_name in projects:
301 for project in self._projects[project_name]:
302 output_project(parent, parent_node, project)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800303
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800304 def output_project(parent, parent_node, p):
Colin Cross5acde752012-03-28 20:15:45 -0700305 if not p.MatchesGroups(groups):
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800306 return
307
308 name = p.name
309 relpath = p.relpath
310 if parent:
311 name = self._UnjoinName(parent.name, name)
312 relpath = self._UnjoinRelpath(parent.relpath, relpath)
Colin Cross5acde752012-03-28 20:15:45 -0700313
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800314 e = doc.createElement('project')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800315 parent_node.appendChild(e)
316 e.setAttribute('name', name)
317 if relpath != name:
318 e.setAttribute('path', relpath)
Conley Owensa17d7af2013-10-16 14:38:09 -0700319 remoteName = None
320 if d.remote:
Dan Willemsen96c2d652016-04-06 16:03:54 -0700321 remoteName = d.remote.name
322 if not d.remote or p.remote.orig_name != remoteName:
323 remoteName = p.remote.orig_name
Anthony King36ea2fb2014-05-06 11:54:01 +0100324 e.setAttribute('remote', remoteName)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800325 if peg_rev:
326 if self.IsMirror:
Brian Harring14a66742012-09-28 20:21:57 -0700327 value = p.bare_git.rev_parse(p.revisionExpr + '^0')
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800328 else:
Brian Harring14a66742012-09-28 20:21:57 -0700329 value = p.work_git.rev_parse(HEAD + '^0')
330 e.setAttribute('revision', value)
Conley Owens551dfec2015-07-10 14:54:54 -0700331 if peg_rev_upstream:
332 if p.upstream:
333 e.setAttribute('upstream', p.upstream)
334 elif value != p.revisionExpr:
335 # Only save the origin if the origin is not a sha1, and the default
336 # isn't our value
337 e.setAttribute('upstream', p.revisionExpr)
Anthony King36ea2fb2014-05-06 11:54:01 +0100338 else:
Dan Willemsen96c2d652016-04-06 16:03:54 -0700339 revision = self.remotes[p.remote.orig_name].revision or d.revisionExpr
Anthony King36ea2fb2014-05-06 11:54:01 +0100340 if not revision or revision != p.revisionExpr:
341 e.setAttribute('revision', p.revisionExpr)
Nasser Grainawida403412018-05-04 12:53:29 -0600342 if (p.upstream and (p.upstream != p.revisionExpr or
343 p.upstream != d.upstreamExpr)):
Mani Chandel7a91d512014-07-24 16:27:08 +0530344 e.setAttribute('upstream', p.upstream)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800345
Simon Ruggier7e59de22015-07-24 12:50:06 +0200346 if p.dest_branch and p.dest_branch != d.destBranchExpr:
347 e.setAttribute('dest-branch', p.dest_branch)
348
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800349 for c in p.copyfiles:
350 ce = doc.createElement('copyfile')
351 ce.setAttribute('src', c.src)
352 ce.setAttribute('dest', c.dest)
353 e.appendChild(ce)
354
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500355 for l in p.linkfiles:
356 le = doc.createElement('linkfile')
357 le.setAttribute('src', l.src)
358 le.setAttribute('dest', l.dest)
359 e.appendChild(le)
360
Conley Owensbb1b5f52012-08-13 13:11:18 -0700361 default_groups = ['all', 'name:%s' % p.name, 'path:%s' % p.relpath]
Dmitry Fink17f85ea2012-08-06 14:52:29 -0700362 egroups = [g for g in p.groups if g not in default_groups]
Conley Owens971de8e2012-04-16 10:36:08 -0700363 if egroups:
364 e.setAttribute('groups', ','.join(egroups))
Colin Cross5acde752012-03-28 20:15:45 -0700365
James W. Mills24c13082012-04-12 15:04:13 -0500366 for a in p.annotations:
367 if a.keep == "true":
368 ae = doc.createElement('annotation')
369 ae.setAttribute('name', a.name)
370 ae.setAttribute('value', a.value)
371 e.appendChild(ae)
372
Anatol Pomazau79770d22012-04-20 14:41:59 -0700373 if p.sync_c:
374 e.setAttribute('sync-c', 'true')
375
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800376 if p.sync_s:
377 e.setAttribute('sync-s', 'true')
378
YOUNG HO CHAa32c92c2018-02-14 16:57:31 +0900379 if not p.sync_tags:
380 e.setAttribute('sync-tags', 'false')
381
Dan Willemsen88409222015-08-17 15:29:10 -0700382 if p.clone_depth:
383 e.setAttribute('clone-depth', str(p.clone_depth))
384
Simran Basib9a1b732015-08-20 12:19:28 -0700385 self._output_manifest_project_extras(p, e)
386
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800387 if p.subprojects:
David James8d201162013-10-11 17:03:19 -0700388 subprojects = set(subp.name for subp in p.subprojects)
389 output_projects(p, e, list(sorted(subprojects)))
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800390
David James8d201162013-10-11 17:03:19 -0700391 projects = set(p.name for p in self._paths.values() if not p.parent)
392 output_projects(None, root, list(sorted(projects)))
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800393
Doug Anderson37282b42011-03-04 11:54:18 -0800394 if self._repo_hooks_project:
395 root.appendChild(doc.createTextNode(''))
396 e = doc.createElement('repo-hooks')
397 e.setAttribute('in-project', self._repo_hooks_project.name)
398 e.setAttribute('enabled-list',
399 ' '.join(self._repo_hooks_project.enabled_repo_hooks))
400 root.appendChild(e)
401
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800402 doc.writexml(fd, '', ' ', '\n', 'UTF-8')
403
Simran Basib9a1b732015-08-20 12:19:28 -0700404 def _output_manifest_project_extras(self, p, e):
405 """Manifests can modify e if they support extra project attributes."""
406 pass
407
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700408 @property
David James8d201162013-10-11 17:03:19 -0700409 def paths(self):
410 self._Load()
411 return self._paths
412
413 @property
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700414 def projects(self):
415 self._Load()
Anthony Kingd58bfe52014-05-05 23:30:49 +0100416 return list(self._paths.values())
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700417
418 @property
419 def remotes(self):
420 self._Load()
421 return self._remotes
422
423 @property
424 def default(self):
425 self._Load()
426 return self._default
427
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800428 @property
Doug Anderson37282b42011-03-04 11:54:18 -0800429 def repo_hooks_project(self):
430 self._Load()
431 return self._repo_hooks_project
432
433 @property
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700434 def notice(self):
435 self._Load()
436 return self._notice
437
438 @property
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700439 def manifest_server(self):
440 self._Load()
Shawn O. Pearce34fb20f2011-11-30 13:41:02 -0800441 return self._manifest_server
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700442
443 @property
Xin Li745be2e2019-06-03 11:24:30 -0700444 def CloneFilter(self):
445 if self.manifestProject.config.GetBoolean('repo.partialclone'):
446 return self.manifestProject.config.GetString('repo.clonefilter')
447 return None
448
449 @property
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800450 def IsMirror(self):
451 return self.manifestProject.config.GetBoolean('repo.mirror')
452
Julien Campergue335f5ef2013-10-16 11:02:35 +0200453 @property
Mike Frysinger979d5bd2020-02-09 02:28:34 -0500454 def UseGitWorktrees(self):
455 return self.manifestProject.config.GetBoolean('repo.worktree')
456
457 @property
Julien Campergue335f5ef2013-10-16 11:02:35 +0200458 def IsArchive(self):
459 return self.manifestProject.config.GetBoolean('repo.archive')
460
Martin Kellye4e94d22017-03-21 16:05:12 -0700461 @property
462 def HasSubmodules(self):
463 return self.manifestProject.config.GetBoolean('repo.submodules')
464
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700465 def _Unload(self):
466 self._loaded = False
467 self._projects = {}
David James8d201162013-10-11 17:03:19 -0700468 self._paths = {}
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700469 self._remotes = {}
470 self._default = None
Doug Anderson37282b42011-03-04 11:54:18 -0800471 self._repo_hooks_project = None
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700472 self._notice = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700473 self.branch = None
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700474 self._manifest_server = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700475
476 def _Load(self):
477 if not self._loaded:
Shawn O. Pearce2450a292008-11-04 08:22:07 -0800478 m = self.manifestProject
479 b = m.GetBranch(m.CurrentBranch).merge
Shawn O. Pearce21c5c342009-06-25 16:47:30 -0700480 if b is not None and b.startswith(R_HEADS):
Shawn O. Pearce2450a292008-11-04 08:22:07 -0800481 b = b[len(R_HEADS):]
482 self.branch = b
483
Colin Cross23acdd32012-04-21 00:33:54 -0700484 nodes = []
Brian Harring475a47d2012-06-07 20:05:35 -0700485 nodes.append(self._ParseManifestXml(self.manifestFile,
486 self.manifestProject.worktree))
Shawn O. Pearce5cc66792008-10-23 16:19:27 -0700487
Basil Gelloc7453502018-05-25 20:23:52 +0300488 if self._load_local_manifests:
489 local = os.path.join(self.repodir, LOCAL_MANIFEST_NAME)
490 if os.path.exists(local):
491 if not self.localManifestWarning:
492 self.localManifestWarning = True
493 print('warning: %s is deprecated; put local manifests '
494 'in `%s` instead' % (LOCAL_MANIFEST_NAME,
David Pursehouseabdf7502020-02-12 14:58:39 +0900495 os.path.join(self.repodir, LOCAL_MANIFESTS_DIR_NAME)),
Basil Gelloc7453502018-05-25 20:23:52 +0300496 file=sys.stderr)
497 nodes.append(self._ParseManifestXml(local, self.repodir))
Colin Cross23acdd32012-04-21 00:33:54 -0700498
Basil Gelloc7453502018-05-25 20:23:52 +0300499 local_dir = os.path.abspath(os.path.join(self.repodir,
David Pursehouseabdf7502020-02-12 14:58:39 +0900500 LOCAL_MANIFESTS_DIR_NAME))
Basil Gelloc7453502018-05-25 20:23:52 +0300501 try:
502 for local_file in sorted(platform_utils.listdir(local_dir)):
503 if local_file.endswith('.xml'):
504 local = os.path.join(local_dir, local_file)
505 nodes.append(self._ParseManifestXml(local, self.repodir))
506 except OSError:
507 pass
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900508
Joe Onorato26e24752013-01-11 12:35:53 -0800509 try:
510 self._ParseManifest(nodes)
511 except ManifestParseError as e:
512 # There was a problem parsing, unload ourselves in case they catch
513 # this error and try again later, we will show the correct error
514 self._Unload()
515 raise e
Shawn O. Pearce5cc66792008-10-23 16:19:27 -0700516
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800517 if self.IsMirror:
518 self._AddMetaProjectMirror(self.repoProject)
519 self._AddMetaProjectMirror(self.manifestProject)
520
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700521 self._loaded = True
522
Brian Harring475a47d2012-06-07 20:05:35 -0700523 def _ParseManifestXml(self, path, include_root):
David Pursehousef7fc8a92012-11-13 04:00:28 +0900524 try:
525 root = xml.dom.minidom.parse(path)
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900526 except (OSError, xml.parsers.expat.ExpatError) as e:
David Pursehousef7fc8a92012-11-13 04:00:28 +0900527 raise ManifestParseError("error parsing manifest %s: %s" % (path, e))
528
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700529 if not root or not root.childNodes:
Brian Harring26448742011-04-28 05:04:41 -0700530 raise ManifestParseError("no root node in %s" % (path,))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700531
Jooncheol Park34acdd22012-08-27 02:25:59 +0900532 for manifest in root.childNodes:
533 if manifest.nodeName == 'manifest':
534 break
535 else:
Brian Harring26448742011-04-28 05:04:41 -0700536 raise ManifestParseError("no <manifest> in %s" % (path,))
537
Colin Cross23acdd32012-04-21 00:33:54 -0700538 nodes = []
David Pursehouse65b0ba52018-06-24 16:21:51 +0900539 for node in manifest.childNodes:
David Pursehousec1b86a22012-11-14 11:36:51 +0900540 if node.nodeName == 'include':
541 name = self._reqatt(node, 'name')
542 fp = os.path.join(include_root, name)
543 if not os.path.isfile(fp):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530544 raise ManifestParseError("include %s doesn't exist or isn't a file"
David Pursehouseabdf7502020-02-12 14:58:39 +0900545 % (name,))
David Pursehousec1b86a22012-11-14 11:36:51 +0900546 try:
547 nodes.extend(self._ParseManifestXml(fp, include_root))
548 # should isolate this to the exact exception, but that's
549 # tricky. actual parsing implementation may vary.
550 except (KeyboardInterrupt, RuntimeError, SystemExit):
551 raise
552 except Exception as e:
553 raise ManifestParseError(
Mike Frysingerec558df2019-07-05 01:38:05 -0400554 "failed parsing included manifest %s: %s" % (name, e))
David Pursehousec1b86a22012-11-14 11:36:51 +0900555 else:
556 nodes.append(node)
Colin Cross23acdd32012-04-21 00:33:54 -0700557 return nodes
Brian Harring26448742011-04-28 05:04:41 -0700558
Colin Cross23acdd32012-04-21 00:33:54 -0700559 def _ParseManifest(self, node_list):
560 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700561 if node.nodeName == 'remote':
562 remote = self._ParseRemote(node)
David Pursehouse717ece92012-11-13 08:49:16 +0900563 if remote:
564 if remote.name in self._remotes:
565 if remote != self._remotes[remote.name]:
566 raise ManifestParseError(
567 'remote %s already exists with different attributes' %
568 (remote.name))
569 else:
570 self._remotes[remote.name] = remote
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700571
Colin Cross23acdd32012-04-21 00:33:54 -0700572 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700573 if node.nodeName == 'default':
Julien Campergue74879922013-10-09 14:38:46 +0200574 new_default = self._ParseDefault(node)
575 if self._default is None:
576 self._default = new_default
577 elif new_default != self._default:
David Pursehouse37128b62013-10-15 10:48:40 +0900578 raise ManifestParseError('duplicate default in %s' %
579 (self.manifestFile))
Julien Campergue74879922013-10-09 14:38:46 +0200580
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700581 if self._default is None:
582 self._default = _Default()
583
Colin Cross23acdd32012-04-21 00:33:54 -0700584 for node in itertools.chain(*node_list):
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700585 if node.nodeName == 'notice':
586 if self._notice is not None:
Doug Anderson37282b42011-03-04 11:54:18 -0800587 raise ManifestParseError(
588 'duplicate notice in %s' %
589 (self.manifestFile))
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700590 self._notice = self._ParseNotice(node)
591
Colin Cross23acdd32012-04-21 00:33:54 -0700592 for node in itertools.chain(*node_list):
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700593 if node.nodeName == 'manifest-server':
594 url = self._reqatt(node, 'url')
595 if self._manifest_server is not None:
David Pursehousec1b86a22012-11-14 11:36:51 +0900596 raise ManifestParseError(
597 'duplicate manifest-server in %s' %
598 (self.manifestFile))
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700599 self._manifest_server = url
600
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800601 def recursively_add_projects(project):
David James8d201162013-10-11 17:03:19 -0700602 projects = self._projects.setdefault(project.name, [])
603 if project.relpath is None:
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800604 raise ManifestParseError(
David James8d201162013-10-11 17:03:19 -0700605 'missing path for %s in %s' %
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800606 (project.name, self.manifestFile))
David James8d201162013-10-11 17:03:19 -0700607 if project.relpath in self._paths:
608 raise ManifestParseError(
609 'duplicate path %s in %s' %
610 (project.relpath, self.manifestFile))
611 self._paths[project.relpath] = project
612 projects.append(project)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800613 for subproject in project.subprojects:
614 recursively_add_projects(subproject)
615
Colin Cross23acdd32012-04-21 00:33:54 -0700616 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700617 if node.nodeName == 'project':
618 project = self._ParseProject(node)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800619 recursively_add_projects(project)
Josh Triplett884a3872014-06-12 14:57:29 -0700620 if node.nodeName == 'extend-project':
621 name = self._reqatt(node, 'name')
622
623 if name not in self._projects:
624 raise ManifestParseError('extend-project element specifies non-existent '
625 'project: %s' % name)
626
627 path = node.getAttribute('path')
628 groups = node.getAttribute('groups')
629 if groups:
630 groups = self._ParseGroups(groups)
Luis Hector Chavez7d525852018-03-15 09:54:08 -0700631 revision = node.getAttribute('revision')
Kyunam Jobd0aae92020-02-04 11:38:53 +0900632 remote = node.getAttribute('remote')
633 if remote:
634 remote = self._get_remote(node)
Josh Triplett884a3872014-06-12 14:57:29 -0700635
636 for p in self._projects[name]:
637 if path and p.relpath != path:
638 continue
639 if groups:
640 p.groups.extend(groups)
Luis Hector Chavez7d525852018-03-15 09:54:08 -0700641 if revision:
642 p.revisionExpr = revision
Kyunam Jobd0aae92020-02-04 11:38:53 +0900643 if remote:
644 p.remote = remote.ToRemoteSpec(name)
Doug Anderson37282b42011-03-04 11:54:18 -0800645 if node.nodeName == 'repo-hooks':
646 # Get the name of the project and the (space-separated) list of enabled.
647 repo_hooks_project = self._reqatt(node, 'in-project')
648 enabled_repo_hooks = self._reqatt(node, 'enabled-list').split()
649
650 # Only one project can be the hooks project
651 if self._repo_hooks_project is not None:
652 raise ManifestParseError(
653 'duplicate repo-hooks in %s' %
654 (self.manifestFile))
655
656 # Store a reference to the Project.
657 try:
David James8d201162013-10-11 17:03:19 -0700658 repo_hooks_projects = self._projects[repo_hooks_project]
Doug Anderson37282b42011-03-04 11:54:18 -0800659 except KeyError:
660 raise ManifestParseError(
661 'project %s not found for repo-hooks' %
662 (repo_hooks_project))
663
David James8d201162013-10-11 17:03:19 -0700664 if len(repo_hooks_projects) != 1:
665 raise ManifestParseError(
666 'internal error parsing repo-hooks in %s' %
667 (self.manifestFile))
668 self._repo_hooks_project = repo_hooks_projects[0]
669
Doug Anderson37282b42011-03-04 11:54:18 -0800670 # Store the enabled hooks in the Project object.
671 self._repo_hooks_project.enabled_repo_hooks = enabled_repo_hooks
Colin Cross23acdd32012-04-21 00:33:54 -0700672 if node.nodeName == 'remove-project':
673 name = self._reqatt(node, 'name')
David Jamesb8433df2014-01-30 10:11:17 -0800674
675 if name not in self._projects:
David Pursehousef9107482012-11-16 19:12:32 +0900676 raise ManifestParseError('remove-project element specifies non-existent '
677 'project: %s' % name)
Colin Cross23acdd32012-04-21 00:33:54 -0700678
David Jamesb8433df2014-01-30 10:11:17 -0800679 for p in self._projects[name]:
680 del self._paths[p.relpath]
681 del self._projects[name]
682
Colin Cross23acdd32012-04-21 00:33:54 -0700683 # If the manifest removes the hooks project, treat it as if it deleted
684 # the repo-hooks element too.
685 if self._repo_hooks_project and (self._repo_hooks_project.name == name):
686 self._repo_hooks_project = None
687
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800688 def _AddMetaProjectMirror(self, m):
689 name = None
690 m_url = m.GetRemote(m.remote.name).url
691 if m_url.endswith('/.git'):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530692 raise ManifestParseError('refusing to mirror %s' % m_url)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800693
694 if self._default and self._default.remote:
Conley Owensceea3682011-10-20 10:45:47 -0700695 url = self._default.remote.resolvedFetchUrl
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800696 if not url.endswith('/'):
697 url += '/'
698 if m_url.startswith(url):
699 remote = self._default.remote
700 name = m_url[len(url):]
701
702 if name is None:
703 s = m_url.rindex('/') + 1
Conley Owensdb728cd2011-09-26 16:34:01 -0700704 manifestUrl = self.manifestProject.config.GetString('remote.origin.url')
Shawn O. Pearcef35b2d92012-08-02 11:46:22 -0700705 remote = _XmlRemote('origin', fetch=m_url[:s], manifestUrl=manifestUrl)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800706 name = m_url[s:]
707
708 if name.endswith('.git'):
709 name = name[:-4]
710
711 if name not in self._projects:
712 m.PreSync()
713 gitdir = os.path.join(self.topdir, '%s.git' % name)
David Pursehousee5913ae2020-02-12 13:56:59 +0900714 project = Project(manifest=self,
715 name=name,
716 remote=remote.ToRemoteSpec(name),
717 gitdir=gitdir,
718 objdir=gitdir,
719 worktree=None,
720 relpath=name or None,
721 revisionExpr=m.revisionExpr,
722 revisionId=None)
David James8d201162013-10-11 17:03:19 -0700723 self._projects[project.name] = [project]
Kwanhong Leeccd218c2014-02-17 13:07:32 +0900724 self._paths[project.relpath] = project
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800725
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700726 def _ParseRemote(self, node):
727 """
728 reads a <remote> element from the manifest file
729 """
730 name = self._reqatt(node, 'name')
Yestin Sunb292b982012-07-02 07:32:50 -0700731 alias = node.getAttribute('alias')
732 if alias == '':
733 alias = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700734 fetch = self._reqatt(node, 'fetch')
Steve Raed6480452016-08-10 15:00:00 -0700735 pushUrl = node.getAttribute('pushurl')
736 if pushUrl == '':
737 pushUrl = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700738 review = node.getAttribute('review')
Shawn O. Pearceae6e0942008-11-06 10:25:35 -0800739 if review == '':
740 review = None
Anthony King36ea2fb2014-05-06 11:54:01 +0100741 revision = node.getAttribute('revision')
742 if revision == '':
743 revision = None
Conley Owensdb728cd2011-09-26 16:34:01 -0700744 manifestUrl = self.manifestProject.config.GetString('remote.origin.url')
Steve Raed6480452016-08-10 15:00:00 -0700745 return _XmlRemote(name, alias, fetch, pushUrl, manifestUrl, review, revision)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700746
747 def _ParseDefault(self, node):
748 """
749 reads a <default> element from the manifest file
750 """
751 d = _Default()
752 d.remote = self._get_remote(node)
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700753 d.revisionExpr = node.getAttribute('revision')
754 if d.revisionExpr == '':
755 d.revisionExpr = None
Anatol Pomazau79770d22012-04-20 14:41:59 -0700756
Bryan Jacobsf609f912013-05-06 13:36:24 -0400757 d.destBranchExpr = node.getAttribute('dest-branch') or None
Nasser Grainawida403412018-05-04 12:53:29 -0600758 d.upstreamExpr = node.getAttribute('upstream') or None
Bryan Jacobsf609f912013-05-06 13:36:24 -0400759
Shawn O. Pearce6392c872011-09-22 17:44:31 -0700760 sync_j = node.getAttribute('sync-j')
761 if sync_j == '' or sync_j is None:
762 d.sync_j = 1
763 else:
764 d.sync_j = int(sync_j)
Anatol Pomazau79770d22012-04-20 14:41:59 -0700765
766 sync_c = node.getAttribute('sync-c')
767 if not sync_c:
768 d.sync_c = False
769 else:
770 d.sync_c = sync_c.lower() in ("yes", "true", "1")
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800771
772 sync_s = node.getAttribute('sync-s')
773 if not sync_s:
774 d.sync_s = False
775 else:
776 d.sync_s = sync_s.lower() in ("yes", "true", "1")
YOUNG HO CHAa32c92c2018-02-14 16:57:31 +0900777
778 sync_tags = node.getAttribute('sync-tags')
779 if not sync_tags:
780 d.sync_tags = True
781 else:
782 d.sync_tags = sync_tags.lower() in ("yes", "true", "1")
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700783 return d
784
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700785 def _ParseNotice(self, node):
786 """
787 reads a <notice> element from the manifest file
788
789 The <notice> element is distinct from other tags in the XML in that the
790 data is conveyed between the start and end tag (it's not an empty-element
791 tag).
792
793 The white space (carriage returns, indentation) for the notice element is
794 relevant and is parsed in a way that is based on how python docstrings work.
795 In fact, the code is remarkably similar to here:
796 http://www.python.org/dev/peps/pep-0257/
797 """
798 # Get the data out of the node...
799 notice = node.childNodes[0].data
800
801 # Figure out minimum indentation, skipping the first line (the same line
802 # as the <notice> tag)...
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530803 minIndent = sys.maxsize
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700804 lines = notice.splitlines()
805 for line in lines[1:]:
806 lstrippedLine = line.lstrip()
807 if lstrippedLine:
808 indent = len(line) - len(lstrippedLine)
809 minIndent = min(indent, minIndent)
810
811 # Strip leading / trailing blank lines and also indentation.
812 cleanLines = [lines[0].strip()]
813 for line in lines[1:]:
814 cleanLines.append(line[minIndent:].rstrip())
815
816 # Clear completely blank lines from front and back...
817 while cleanLines and not cleanLines[0]:
818 del cleanLines[0]
819 while cleanLines and not cleanLines[-1]:
820 del cleanLines[-1]
821
822 return '\n'.join(cleanLines)
823
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800824 def _JoinName(self, parent_name, name):
825 return os.path.join(parent_name, name)
826
827 def _UnjoinName(self, parent_name, name):
828 return os.path.relpath(name, parent_name)
829
David Pursehousee5913ae2020-02-12 13:56:59 +0900830 def _ParseProject(self, node, parent=None, **extra_proj_attrs):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700831 """
832 reads a <project> element from the manifest file
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700833 """
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700834 name = self._reqatt(node, 'name')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800835 if parent:
836 name = self._JoinName(parent.name, name)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700837
838 remote = self._get_remote(node)
839 if remote is None:
840 remote = self._default.remote
841 if remote is None:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530842 raise ManifestParseError("no remote for project %s within %s" %
David Pursehouseabdf7502020-02-12 14:58:39 +0900843 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700844
Anthony King36ea2fb2014-05-06 11:54:01 +0100845 revisionExpr = node.getAttribute('revision') or remote.revision
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700846 if not revisionExpr:
847 revisionExpr = self._default.revisionExpr
848 if not revisionExpr:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530849 raise ManifestParseError("no revision for project %s within %s" %
David Pursehouseabdf7502020-02-12 14:58:39 +0900850 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700851
852 path = node.getAttribute('path')
853 if not path:
854 path = name
855 if path.startswith('/'):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530856 raise ManifestParseError("project %s path cannot be absolute in %s" %
David Pursehouseabdf7502020-02-12 14:58:39 +0900857 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700858
Mike Pontillod3153822012-02-28 11:53:24 -0800859 rebase = node.getAttribute('rebase')
860 if not rebase:
861 rebase = True
862 else:
863 rebase = rebase.lower() in ("yes", "true", "1")
864
Anatol Pomazau79770d22012-04-20 14:41:59 -0700865 sync_c = node.getAttribute('sync-c')
866 if not sync_c:
867 sync_c = False
868 else:
869 sync_c = sync_c.lower() in ("yes", "true", "1")
870
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800871 sync_s = node.getAttribute('sync-s')
872 if not sync_s:
873 sync_s = self._default.sync_s
874 else:
875 sync_s = sync_s.lower() in ("yes", "true", "1")
876
YOUNG HO CHAa32c92c2018-02-14 16:57:31 +0900877 sync_tags = node.getAttribute('sync-tags')
878 if not sync_tags:
879 sync_tags = self._default.sync_tags
880 else:
881 sync_tags = sync_tags.lower() in ("yes", "true", "1")
882
David Pursehouseede7f122012-11-27 22:25:30 +0900883 clone_depth = node.getAttribute('clone-depth')
884 if clone_depth:
885 try:
886 clone_depth = int(clone_depth)
David Pursehouse54a4e602020-02-12 14:31:05 +0900887 if clone_depth <= 0:
David Pursehouseede7f122012-11-27 22:25:30 +0900888 raise ValueError()
889 except ValueError:
890 raise ManifestParseError('invalid clone-depth %s in %s' %
891 (clone_depth, self.manifestFile))
892
Bryan Jacobsf609f912013-05-06 13:36:24 -0400893 dest_branch = node.getAttribute('dest-branch') or self._default.destBranchExpr
894
Nasser Grainawida403412018-05-04 12:53:29 -0600895 upstream = node.getAttribute('upstream') or self._default.upstreamExpr
Brian Harring14a66742012-09-28 20:21:57 -0700896
Conley Owens971de8e2012-04-16 10:36:08 -0700897 groups = ''
898 if node.hasAttribute('groups'):
899 groups = node.getAttribute('groups')
Josh Triplett884a3872014-06-12 14:57:29 -0700900 groups = self._ParseGroups(groups)
Brian Harring7da13142012-06-15 02:24:20 -0700901
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800902 if parent is None:
Mike Frysinger979d5bd2020-02-09 02:28:34 -0500903 relpath, worktree, gitdir, objdir, use_git_worktrees = \
904 self.GetProjectPaths(name, path)
Shawn O. Pearcecd81dd62012-10-26 12:18:00 -0700905 else:
Mike Frysinger979d5bd2020-02-09 02:28:34 -0500906 use_git_worktrees = False
David James8d201162013-10-11 17:03:19 -0700907 relpath, worktree, gitdir, objdir = \
908 self.GetSubprojectPaths(parent, name, path)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800909
910 default_groups = ['all', 'name:%s' % name, 'path:%s' % relpath]
911 groups.extend(set(default_groups).difference(groups))
Shawn O. Pearcecd81dd62012-10-26 12:18:00 -0700912
Scott Fandb83b1b2013-02-28 09:34:14 +0800913 if self.IsMirror and node.hasAttribute('force-path'):
914 if node.getAttribute('force-path').lower() in ("yes", "true", "1"):
915 gitdir = os.path.join(self.topdir, '%s.git' % path)
916
David Pursehousee5913ae2020-02-12 13:56:59 +0900917 project = Project(manifest=self,
918 name=name,
919 remote=remote.ToRemoteSpec(name),
920 gitdir=gitdir,
921 objdir=objdir,
922 worktree=worktree,
923 relpath=relpath,
924 revisionExpr=revisionExpr,
925 revisionId=None,
926 rebase=rebase,
927 groups=groups,
928 sync_c=sync_c,
929 sync_s=sync_s,
930 sync_tags=sync_tags,
931 clone_depth=clone_depth,
932 upstream=upstream,
933 parent=parent,
934 dest_branch=dest_branch,
Mike Frysinger979d5bd2020-02-09 02:28:34 -0500935 use_git_worktrees=use_git_worktrees,
Simran Basib9a1b732015-08-20 12:19:28 -0700936 **extra_proj_attrs)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700937
938 for n in node.childNodes:
Shawn O. Pearce242b5262009-05-19 13:00:29 -0700939 if n.nodeName == 'copyfile':
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700940 self._ParseCopyFile(project, n)
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500941 if n.nodeName == 'linkfile':
942 self._ParseLinkFile(project, n)
James W. Mills24c13082012-04-12 15:04:13 -0500943 if n.nodeName == 'annotation':
944 self._ParseAnnotation(project, n)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800945 if n.nodeName == 'project':
David Pursehousee5913ae2020-02-12 13:56:59 +0900946 project.subprojects.append(self._ParseProject(n, parent=project))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700947
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700948 return project
949
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800950 def GetProjectPaths(self, name, path):
Mike Frysinger979d5bd2020-02-09 02:28:34 -0500951 use_git_worktrees = False
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800952 relpath = path
953 if self.IsMirror:
954 worktree = None
955 gitdir = os.path.join(self.topdir, '%s.git' % name)
David James8d201162013-10-11 17:03:19 -0700956 objdir = gitdir
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800957 else:
958 worktree = os.path.join(self.topdir, path).replace('\\', '/')
959 gitdir = os.path.join(self.repodir, 'projects', '%s.git' % path)
Mike Frysinger979d5bd2020-02-09 02:28:34 -0500960 # We allow people to mix git worktrees & non-git worktrees for now.
961 # This allows for in situ migration of repo clients.
962 if os.path.exists(gitdir) or not self.UseGitWorktrees:
963 objdir = os.path.join(self.repodir, 'project-objects', '%s.git' % name)
964 else:
965 use_git_worktrees = True
966 gitdir = os.path.join(self.repodir, 'worktrees', '%s.git' % name)
967 objdir = gitdir
968 return relpath, worktree, gitdir, objdir, use_git_worktrees
David James8d201162013-10-11 17:03:19 -0700969
970 def GetProjectsWithName(self, name):
971 return self._projects.get(name, [])
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800972
973 def GetSubprojectName(self, parent, submodule_path):
974 return os.path.join(parent.name, submodule_path)
975
976 def _JoinRelpath(self, parent_relpath, relpath):
977 return os.path.join(parent_relpath, relpath)
978
979 def _UnjoinRelpath(self, parent_relpath, relpath):
980 return os.path.relpath(relpath, parent_relpath)
981
David James8d201162013-10-11 17:03:19 -0700982 def GetSubprojectPaths(self, parent, name, path):
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800983 relpath = self._JoinRelpath(parent.relpath, path)
984 gitdir = os.path.join(parent.gitdir, 'subprojects', '%s.git' % path)
David James8d201162013-10-11 17:03:19 -0700985 objdir = os.path.join(parent.gitdir, 'subproject-objects', '%s.git' % name)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800986 if self.IsMirror:
987 worktree = None
988 else:
989 worktree = os.path.join(parent.worktree, path).replace('\\', '/')
David James8d201162013-10-11 17:03:19 -0700990 return relpath, worktree, gitdir, objdir
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800991
Mike Frysinger04122b72019-07-31 23:32:58 -0400992 @staticmethod
993 def _CheckLocalPath(path, symlink=False):
994 """Verify |path| is reasonable for use in <copyfile> & <linkfile>."""
995 if '~' in path:
996 return '~ not allowed (due to 8.3 filenames on Windows filesystems)'
997
998 # Some filesystems (like Apple's HFS+) try to normalize Unicode codepoints
999 # which means there are alternative names for ".git". Reject paths with
1000 # these in it as there shouldn't be any reasonable need for them here.
1001 # The set of codepoints here was cribbed from jgit's implementation:
1002 # https://eclipse.googlesource.com/jgit/jgit/+/9110037e3e9461ff4dac22fee84ef3694ed57648/org.eclipse.jgit/src/org/eclipse/jgit/lib/ObjectChecker.java#884
1003 BAD_CODEPOINTS = {
1004 u'\u200C', # ZERO WIDTH NON-JOINER
1005 u'\u200D', # ZERO WIDTH JOINER
1006 u'\u200E', # LEFT-TO-RIGHT MARK
1007 u'\u200F', # RIGHT-TO-LEFT MARK
1008 u'\u202A', # LEFT-TO-RIGHT EMBEDDING
1009 u'\u202B', # RIGHT-TO-LEFT EMBEDDING
1010 u'\u202C', # POP DIRECTIONAL FORMATTING
1011 u'\u202D', # LEFT-TO-RIGHT OVERRIDE
1012 u'\u202E', # RIGHT-TO-LEFT OVERRIDE
1013 u'\u206A', # INHIBIT SYMMETRIC SWAPPING
1014 u'\u206B', # ACTIVATE SYMMETRIC SWAPPING
1015 u'\u206C', # INHIBIT ARABIC FORM SHAPING
1016 u'\u206D', # ACTIVATE ARABIC FORM SHAPING
1017 u'\u206E', # NATIONAL DIGIT SHAPES
1018 u'\u206F', # NOMINAL DIGIT SHAPES
1019 u'\uFEFF', # ZERO WIDTH NO-BREAK SPACE
1020 }
1021 if BAD_CODEPOINTS & set(path):
1022 # This message is more expansive than reality, but should be fine.
1023 return 'Unicode combining characters not allowed'
1024
1025 # Assume paths might be used on case-insensitive filesystems.
1026 path = path.lower()
1027
Mike Frysingerd9254592020-02-19 22:36:26 -05001028 # Split up the path by its components. We can't use os.path.sep exclusively
1029 # as some platforms (like Windows) will convert / to \ and that bypasses all
1030 # our constructed logic here. Especially since manifest authors only use
1031 # / in their paths.
1032 resep = re.compile(r'[/%s]' % re.escape(os.path.sep))
1033 parts = resep.split(path)
1034
Mike Frysingerae625412020-02-10 17:10:03 -05001035 # Some people use src="." to create stable links to projects. Lets allow
1036 # that but reject all other uses of "." to keep things simple.
Mike Frysingerae625412020-02-10 17:10:03 -05001037 if parts != ['.']:
1038 for part in set(parts):
1039 if part in {'.', '..', '.git'} or part.startswith('.repo'):
1040 return 'bad component: %s' % (part,)
Mike Frysinger04122b72019-07-31 23:32:58 -04001041
Mike Frysingerd9254592020-02-19 22:36:26 -05001042 if not symlink and resep.match(path[-1]):
Mike Frysinger04122b72019-07-31 23:32:58 -04001043 return 'dirs not allowed'
1044
Mike Frysingerd9254592020-02-19 22:36:26 -05001045 # NB: The two abspath checks here are to handle platforms with multiple
1046 # filesystem path styles (e.g. Windows).
Mike Frysinger04122b72019-07-31 23:32:58 -04001047 norm = os.path.normpath(path)
Mike Frysingerd9254592020-02-19 22:36:26 -05001048 if (norm == '..' or
1049 (len(norm) >= 3 and norm.startswith('..') and resep.match(norm[0])) or
1050 os.path.isabs(norm) or
1051 norm.startswith('/')):
Mike Frysinger04122b72019-07-31 23:32:58 -04001052 return 'path cannot be outside'
1053
1054 @classmethod
1055 def _ValidateFilePaths(cls, element, src, dest):
1056 """Verify |src| & |dest| are reasonable for <copyfile> & <linkfile>.
1057
1058 We verify the path independent of any filesystem state as we won't have a
1059 checkout available to compare to. i.e. This is for parsing validation
1060 purposes only.
1061
1062 We'll do full/live sanity checking before we do the actual filesystem
1063 modifications in _CopyFile/_LinkFile/etc...
1064 """
1065 # |dest| is the file we write to or symlink we create.
1066 # It is relative to the top of the repo client checkout.
1067 msg = cls._CheckLocalPath(dest)
1068 if msg:
1069 raise ManifestInvalidPathError(
1070 '<%s> invalid "dest": %s: %s' % (element, dest, msg))
1071
1072 # |src| is the file we read from or path we point to for symlinks.
1073 # It is relative to the top of the git project checkout.
1074 msg = cls._CheckLocalPath(src, symlink=element == 'linkfile')
1075 if msg:
1076 raise ManifestInvalidPathError(
1077 '<%s> invalid "src": %s: %s' % (element, src, msg))
1078
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001079 def _ParseCopyFile(self, project, node):
1080 src = self._reqatt(node, 'src')
1081 dest = self._reqatt(node, 'dest')
Shawn O. Pearcee284ad12008-11-04 07:37:10 -08001082 if not self.IsMirror:
1083 # src is project relative;
Mike Frysinger04122b72019-07-31 23:32:58 -04001084 # dest is relative to the top of the tree.
1085 # We only validate paths if we actually plan to process them.
1086 self._ValidateFilePaths('copyfile', src, dest)
Mike Frysingere6a202f2019-08-02 15:57:57 -04001087 project.AddCopyFile(src, dest, self.topdir)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001088
Jeff Hamiltone0df2322014-04-21 17:10:59 -05001089 def _ParseLinkFile(self, project, node):
1090 src = self._reqatt(node, 'src')
1091 dest = self._reqatt(node, 'dest')
1092 if not self.IsMirror:
1093 # src is project relative;
Mike Frysinger04122b72019-07-31 23:32:58 -04001094 # dest is relative to the top of the tree.
1095 # We only validate paths if we actually plan to process them.
1096 self._ValidateFilePaths('linkfile', src, dest)
Mike Frysingere6a202f2019-08-02 15:57:57 -04001097 project.AddLinkFile(src, dest, self.topdir)
Jeff Hamiltone0df2322014-04-21 17:10:59 -05001098
James W. Mills24c13082012-04-12 15:04:13 -05001099 def _ParseAnnotation(self, project, node):
1100 name = self._reqatt(node, 'name')
1101 value = self._reqatt(node, 'value')
1102 try:
1103 keep = self._reqatt(node, 'keep').lower()
1104 except ManifestParseError:
1105 keep = "true"
1106 if keep != "true" and keep != "false":
Chirayu Desai217ea7d2013-03-01 19:14:38 +05301107 raise ManifestParseError('optional "keep" attribute must be '
David Pursehouseabdf7502020-02-12 14:58:39 +09001108 '"true" or "false"')
James W. Mills24c13082012-04-12 15:04:13 -05001109 project.AddAnnotation(name, value, keep)
1110
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001111 def _get_remote(self, node):
1112 name = node.getAttribute('remote')
1113 if not name:
1114 return None
1115
1116 v = self._remotes.get(name)
1117 if not v:
Chirayu Desai217ea7d2013-03-01 19:14:38 +05301118 raise ManifestParseError("remote %s not defined in %s" %
David Pursehouseabdf7502020-02-12 14:58:39 +09001119 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001120 return v
1121
1122 def _reqatt(self, node, attname):
1123 """
1124 reads a required attribute from the node.
1125 """
1126 v = node.getAttribute(attname)
1127 if not v:
Chirayu Desai217ea7d2013-03-01 19:14:38 +05301128 raise ManifestParseError("no %s in <%s> within %s" %
David Pursehouseabdf7502020-02-12 14:58:39 +09001129 (attname, node.nodeName, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001130 return v
Julien Camperguedd654222014-01-09 16:21:37 +01001131
1132 def projectsDiff(self, manifest):
1133 """return the projects differences between two manifests.
1134
1135 The diff will be from self to given manifest.
1136
1137 """
1138 fromProjects = self.paths
1139 toProjects = manifest.paths
1140
Anthony King7446c592014-05-06 09:19:39 +01001141 fromKeys = sorted(fromProjects.keys())
1142 toKeys = sorted(toProjects.keys())
Julien Camperguedd654222014-01-09 16:21:37 +01001143
1144 diff = {'added': [], 'removed': [], 'changed': [], 'unreachable': []}
1145
1146 for proj in fromKeys:
David Pursehouseeeff3532020-02-12 11:24:10 +09001147 if proj not in toKeys:
Julien Camperguedd654222014-01-09 16:21:37 +01001148 diff['removed'].append(fromProjects[proj])
1149 else:
1150 fromProj = fromProjects[proj]
1151 toProj = toProjects[proj]
1152 try:
1153 fromRevId = fromProj.GetCommitRevisionId()
1154 toRevId = toProj.GetCommitRevisionId()
1155 except ManifestInvalidRevisionError:
1156 diff['unreachable'].append((fromProj, toProj))
1157 else:
1158 if fromRevId != toRevId:
1159 diff['changed'].append((fromProj, toProj))
1160 toKeys.remove(proj)
1161
1162 for proj in toKeys:
1163 diff['added'].append(toProjects[proj])
1164
1165 return diff
Simran Basib9a1b732015-08-20 12:19:28 -07001166
1167
1168class GitcManifest(XmlManifest):
1169
1170 def __init__(self, repodir, gitc_client_name):
1171 """Initialize the GitcManifest object."""
1172 super(GitcManifest, self).__init__(repodir)
1173 self.isGitcClient = True
1174 self.gitc_client_name = gitc_client_name
Simran Basi8ce50412015-08-28 14:25:44 -07001175 self.gitc_client_dir = os.path.join(gitc_utils.get_gitc_manifest_dir(),
Simran Basib9a1b732015-08-20 12:19:28 -07001176 gitc_client_name)
1177 self.manifestFile = os.path.join(self.gitc_client_dir, '.manifest')
1178
David Pursehousee5913ae2020-02-12 13:56:59 +09001179 def _ParseProject(self, node, parent=None):
Simran Basib9a1b732015-08-20 12:19:28 -07001180 """Override _ParseProject and add support for GITC specific attributes."""
1181 return super(GitcManifest, self)._ParseProject(
1182 node, parent=parent, old_revision=node.getAttribute('old-revision'))
1183
1184 def _output_manifest_project_extras(self, p, e):
1185 """Output GITC Specific Project attributes"""
1186 if p.old_revision:
Stefan Beller66851062016-06-17 16:40:08 -07001187 e.setAttribute('old-revision', str(p.old_revision))