blob: e1ef330f33486104b395841382cc49797064dc6f [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
Miguel Gaio1f207762020-07-17 14:09:13 +020034from git_config import GitConfig, IsId
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
Mike Frysingerbb8ee7f2020-02-22 05:30:12 -050060def XmlBool(node, attr, default=None):
61 """Determine boolean value of |node|'s |attr|.
62
63 Invalid values will issue a non-fatal warning.
64
65 Args:
66 node: XML node whose attributes we access.
67 attr: The attribute to access.
68 default: If the attribute is not set (value is empty), then use this.
69
70 Returns:
71 True if the attribute is a valid string representing true.
72 False if the attribute is a valid string representing false.
73 |default| otherwise.
74 """
75 value = node.getAttribute(attr)
76 s = value.lower()
77 if s == '':
78 return default
79 elif s in {'yes', 'true', '1'}:
80 return True
81 elif s in {'no', 'false', '0'}:
82 return False
83 else:
84 print('warning: manifest: %s="%s": ignoring invalid XML boolean' %
85 (attr, value), file=sys.stderr)
86 return default
87
88
89def XmlInt(node, attr, default=None):
90 """Determine integer value of |node|'s |attr|.
91
92 Args:
93 node: XML node whose attributes we access.
94 attr: The attribute to access.
95 default: If the attribute is not set (value is empty), then use this.
96
97 Returns:
98 The number if the attribute is a valid number.
99
100 Raises:
101 ManifestParseError: The number is invalid.
102 """
103 value = node.getAttribute(attr)
104 if not value:
105 return default
106
107 try:
108 return int(value)
109 except ValueError:
110 raise ManifestParseError('manifest: invalid %s="%s" integer' %
111 (attr, value))
112
113
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700114class _Default(object):
115 """Project defaults within the manifest."""
116
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700117 revisionExpr = None
Conley Owensb6a16e62013-09-25 15:06:09 -0700118 destBranchExpr = None
Nasser Grainawida403412018-05-04 12:53:29 -0600119 upstreamExpr = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700120 remote = None
Shawn O. Pearce6392c872011-09-22 17:44:31 -0700121 sync_j = 1
Anatol Pomazau79770d22012-04-20 14:41:59 -0700122 sync_c = False
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800123 sync_s = False
YOUNG HO CHAa32c92c2018-02-14 16:57:31 +0900124 sync_tags = True
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700125
Julien Campergue74879922013-10-09 14:38:46 +0200126 def __eq__(self, other):
127 return self.__dict__ == other.__dict__
128
129 def __ne__(self, other):
130 return self.__dict__ != other.__dict__
131
David Pursehouse819827a2020-02-12 15:20:19 +0900132
Shawn O. Pearced1f70d92009-05-19 14:58:02 -0700133class _XmlRemote(object):
134 def __init__(self,
135 name,
Yestin Sunb292b982012-07-02 07:32:50 -0700136 alias=None,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -0700137 fetch=None,
Steve Raed6480452016-08-10 15:00:00 -0700138 pushUrl=None,
Conley Owensdb728cd2011-09-26 16:34:01 -0700139 manifestUrl=None,
Anthony King36ea2fb2014-05-06 11:54:01 +0100140 review=None,
Jonathan Nieder93719792015-03-17 11:29:58 -0700141 revision=None):
Shawn O. Pearced1f70d92009-05-19 14:58:02 -0700142 self.name = name
143 self.fetchUrl = fetch
Steve Raed6480452016-08-10 15:00:00 -0700144 self.pushUrl = pushUrl
Conley Owensdb728cd2011-09-26 16:34:01 -0700145 self.manifestUrl = manifestUrl
Yestin Sunb292b982012-07-02 07:32:50 -0700146 self.remoteAlias = alias
Shawn O. Pearced1f70d92009-05-19 14:58:02 -0700147 self.reviewUrl = review
Anthony King36ea2fb2014-05-06 11:54:01 +0100148 self.revision = revision
Conley Owensceea3682011-10-20 10:45:47 -0700149 self.resolvedFetchUrl = self._resolveFetchUrl()
Shawn O. Pearced1f70d92009-05-19 14:58:02 -0700150
David Pursehouse717ece92012-11-13 08:49:16 +0900151 def __eq__(self, other):
152 return self.__dict__ == other.__dict__
153
154 def __ne__(self, other):
155 return self.__dict__ != other.__dict__
156
Conley Owensceea3682011-10-20 10:45:47 -0700157 def _resolveFetchUrl(self):
158 url = self.fetchUrl.rstrip('/')
Conley Owensdb728cd2011-09-26 16:34:01 -0700159 manifestUrl = self.manifestUrl.rstrip('/')
Conley Owens2d0f5082014-01-31 15:03:51 -0800160 # urljoin will gets confused over quite a few things. The ones we care
161 # about here are:
162 # * no scheme in the base url, like <hostname:port>
Anthony Kingcb07ba72015-03-28 23:26:04 +0000163 # We handle no scheme by replacing it with an obscure protocol, gopher
164 # and then replacing it with the original when we are done.
165
Conley Owensdb728cd2011-09-26 16:34:01 -0700166 if manifestUrl.find(':') != manifestUrl.find('/') - 1:
Conley Owens4ccad752015-04-29 10:45:37 -0700167 url = urllib.parse.urljoin('gopher://' + manifestUrl, url)
168 url = re.sub(r'^gopher://', '', url)
Anthony Kingcb07ba72015-03-28 23:26:04 +0000169 else:
170 url = urllib.parse.urljoin(manifestUrl, url)
Shawn Pearcea9f11b32013-01-02 15:40:48 -0800171 return url
Conley Owensceea3682011-10-20 10:45:47 -0700172
173 def ToRemoteSpec(self, projectName):
David Rileye0684ad2017-04-05 00:02:59 -0700174 fetchUrl = self.resolvedFetchUrl.rstrip('/')
175 url = fetchUrl + '/' + projectName
Yestin Sunb292b982012-07-02 07:32:50 -0700176 remoteName = self.name
Conley Owens1e7ab2a2013-10-08 17:26:57 -0700177 if self.remoteAlias:
David Pursehouse37128b62013-10-15 10:48:40 +0900178 remoteName = self.remoteAlias
Dan Willemsen96c2d652016-04-06 16:03:54 -0700179 return RemoteSpec(remoteName,
180 url=url,
Steve Raed6480452016-08-10 15:00:00 -0700181 pushUrl=self.pushUrl,
Dan Willemsen96c2d652016-04-06 16:03:54 -0700182 review=self.reviewUrl,
David Rileye0684ad2017-04-05 00:02:59 -0700183 orig_name=self.name,
184 fetchUrl=self.fetchUrl)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700185
David Pursehouse819827a2020-02-12 15:20:19 +0900186
Shawn O. Pearcec8a300f2009-05-18 13:19:57 -0700187class XmlManifest(object):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700188 """manages the repo configuration file"""
189
190 def __init__(self, repodir):
191 self.repodir = os.path.abspath(repodir)
192 self.topdir = os.path.dirname(self.repodir)
193 self.manifestFile = os.path.join(self.repodir, MANIFEST_FILE_NAME)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700194 self.globalConfig = GitConfig.ForUser()
Simran Basib9a1b732015-08-20 12:19:28 -0700195 self.isGitcClient = False
Basil Gelloc7453502018-05-25 20:23:52 +0300196 self._load_local_manifests = True
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700197
198 self.repoProject = MetaProject(self, 'repo',
David Pursehouseabdf7502020-02-12 14:58:39 +0900199 gitdir=os.path.join(repodir, 'repo/.git'),
200 worktree=os.path.join(repodir, 'repo'))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700201
Mike Frysinger979d5bd2020-02-09 02:28:34 -0500202 mp = MetaProject(self, 'manifests',
203 gitdir=os.path.join(repodir, 'manifests.git'),
204 worktree=os.path.join(repodir, 'manifests'))
205 self.manifestProject = mp
206
207 # This is a bit hacky, but we're in a chicken & egg situation: all the
208 # normal repo settings live in the manifestProject which we just setup
209 # above, so we couldn't easily query before that. We assume Project()
210 # init doesn't care if this changes afterwards.
Mike Frysingerd957ec62020-02-24 14:40:25 -0500211 if os.path.exists(mp.gitdir) and mp.config.GetBoolean('repo.worktree'):
Mike Frysinger979d5bd2020-02-09 02:28:34 -0500212 mp.use_git_worktrees = True
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700213
214 self._Unload()
215
Basil Gelloc7453502018-05-25 20:23:52 +0300216 def Override(self, name, load_local_manifests=True):
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700217 """Use a different manifest, just for the current instantiation.
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700218 """
Basil Gelloc7453502018-05-25 20:23:52 +0300219 path = None
220
221 # Look for a manifest by path in the filesystem (including the cwd).
222 if not load_local_manifests:
223 local_path = os.path.abspath(name)
224 if os.path.isfile(local_path):
225 path = local_path
226
227 # Look for manifests by name from the manifests repo.
228 if path is None:
229 path = os.path.join(self.manifestProject.worktree, name)
230 if not os.path.isfile(path):
231 raise ManifestParseError('manifest %s not found' % name)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700232
233 old = self.manifestFile
234 try:
Basil Gelloc7453502018-05-25 20:23:52 +0300235 self._load_local_manifests = load_local_manifests
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700236 self.manifestFile = path
237 self._Unload()
238 self._Load()
239 finally:
240 self.manifestFile = old
241
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700242 def Link(self, name):
243 """Update the repo metadata to use a different manifest.
244 """
245 self.Override(name)
246
Mike Frysingera269b1c2020-02-21 00:49:41 -0500247 # Old versions of repo would generate symlinks we need to clean up.
248 if os.path.lexists(self.manifestFile):
249 platform_utils.remove(self.manifestFile)
250 # This file is interpreted as if it existed inside the manifest repo.
251 # That allows us to use <include> with the relative file name.
252 with open(self.manifestFile, 'w') as fp:
253 fp.write("""<?xml version="1.0" encoding="UTF-8"?>
254<!--
255DO NOT EDIT THIS FILE! It is generated by repo and changes will be discarded.
256If you want to use a different manifest, use `repo init -m <file>` instead.
257
258If you want to customize your checkout by overriding manifest settings, use
259the local_manifests/ directory instead.
260
261For more information on repo manifests, check out:
262https://gerrit.googlesource.com/git-repo/+/HEAD/docs/manifest-format.md
263-->
264<manifest>
265 <include name="%s" />
266</manifest>
267""" % (name,))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700268
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800269 def _RemoteToXml(self, r, doc, root):
270 e = doc.createElement('remote')
271 root.appendChild(e)
272 e.setAttribute('name', r.name)
273 e.setAttribute('fetch', r.fetchUrl)
Steve Raed6480452016-08-10 15:00:00 -0700274 if r.pushUrl is not None:
275 e.setAttribute('pushurl', r.pushUrl)
Conley Owens1e7ab2a2013-10-08 17:26:57 -0700276 if r.remoteAlias is not None:
277 e.setAttribute('alias', r.remoteAlias)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800278 if r.reviewUrl is not None:
279 e.setAttribute('review', r.reviewUrl)
Anthony King36ea2fb2014-05-06 11:54:01 +0100280 if r.revision is not None:
281 e.setAttribute('revision', r.revision)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800282
Josh Triplett884a3872014-06-12 14:57:29 -0700283 def _ParseGroups(self, groups):
284 return [x for x in re.split(r'[,\s]+', groups) if x]
285
Mike Frysinger23411d32020-09-02 04:31:10 -0400286 def ToXml(self, peg_rev=False, peg_rev_upstream=True, peg_rev_dest_branch=True, groups=None):
287 """Return the current manifest XML."""
Colin Cross5acde752012-03-28 20:15:45 -0700288 mp = self.manifestProject
289
Dan Willemsen5ea32d12015-09-08 13:27:20 -0700290 if groups is None:
291 groups = mp.config.GetString('manifest.groups')
Matt Gumbel0c635bb2012-12-21 10:14:53 -0800292 if groups:
Josh Triplett884a3872014-06-12 14:57:29 -0700293 groups = self._ParseGroups(groups)
Colin Cross5acde752012-03-28 20:15:45 -0700294
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800295 doc = xml.dom.minidom.Document()
296 root = doc.createElement('manifest')
297 doc.appendChild(root)
298
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700299 # Save out the notice. There's a little bit of work here to give it the
300 # right whitespace, which assumes that the notice is automatically indented
301 # by 4 by minidom.
302 if self.notice:
303 notice_element = root.appendChild(doc.createElement('notice'))
304 notice_lines = self.notice.splitlines()
David Pursehouse54a4e602020-02-12 14:31:05 +0900305 indented_notice = ('\n'.join(" " * 4 + line for line in notice_lines))[4:]
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700306 notice_element.appendChild(doc.createTextNode(indented_notice))
307
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800308 d = self.default
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800309
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530310 for r in sorted(self.remotes):
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800311 self._RemoteToXml(self.remotes[r], doc, root)
312 if self.remotes:
313 root.appendChild(doc.createTextNode(''))
314
315 have_default = False
316 e = doc.createElement('default')
317 if d.remote:
318 have_default = True
319 e.setAttribute('remote', d.remote.name)
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700320 if d.revisionExpr:
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800321 have_default = True
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700322 e.setAttribute('revision', d.revisionExpr)
Simon Ruggier7e59de22015-07-24 12:50:06 +0200323 if d.destBranchExpr:
324 have_default = True
325 e.setAttribute('dest-branch', d.destBranchExpr)
Nasser Grainawida403412018-05-04 12:53:29 -0600326 if d.upstreamExpr:
327 have_default = True
328 e.setAttribute('upstream', d.upstreamExpr)
Shawn O. Pearce6392c872011-09-22 17:44:31 -0700329 if d.sync_j > 1:
330 have_default = True
331 e.setAttribute('sync-j', '%d' % d.sync_j)
Anatol Pomazau79770d22012-04-20 14:41:59 -0700332 if d.sync_c:
333 have_default = True
334 e.setAttribute('sync-c', 'true')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800335 if d.sync_s:
336 have_default = True
337 e.setAttribute('sync-s', 'true')
YOUNG HO CHAa32c92c2018-02-14 16:57:31 +0900338 if not d.sync_tags:
339 have_default = True
340 e.setAttribute('sync-tags', 'false')
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800341 if have_default:
342 root.appendChild(e)
343 root.appendChild(doc.createTextNode(''))
344
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700345 if self._manifest_server:
346 e = doc.createElement('manifest-server')
347 e.setAttribute('url', self._manifest_server)
348 root.appendChild(e)
349 root.appendChild(doc.createTextNode(''))
350
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800351 def output_projects(parent, parent_node, projects):
David James8d201162013-10-11 17:03:19 -0700352 for project_name in projects:
353 for project in self._projects[project_name]:
354 output_project(parent, parent_node, project)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800355
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800356 def output_project(parent, parent_node, p):
Colin Cross5acde752012-03-28 20:15:45 -0700357 if not p.MatchesGroups(groups):
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800358 return
359
360 name = p.name
361 relpath = p.relpath
362 if parent:
363 name = self._UnjoinName(parent.name, name)
364 relpath = self._UnjoinRelpath(parent.relpath, relpath)
Colin Cross5acde752012-03-28 20:15:45 -0700365
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800366 e = doc.createElement('project')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800367 parent_node.appendChild(e)
368 e.setAttribute('name', name)
369 if relpath != name:
370 e.setAttribute('path', relpath)
Conley Owensa17d7af2013-10-16 14:38:09 -0700371 remoteName = None
372 if d.remote:
Dan Willemsen96c2d652016-04-06 16:03:54 -0700373 remoteName = d.remote.name
374 if not d.remote or p.remote.orig_name != remoteName:
375 remoteName = p.remote.orig_name
Anthony King36ea2fb2014-05-06 11:54:01 +0100376 e.setAttribute('remote', remoteName)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800377 if peg_rev:
378 if self.IsMirror:
Brian Harring14a66742012-09-28 20:21:57 -0700379 value = p.bare_git.rev_parse(p.revisionExpr + '^0')
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800380 else:
Brian Harring14a66742012-09-28 20:21:57 -0700381 value = p.work_git.rev_parse(HEAD + '^0')
382 e.setAttribute('revision', value)
Conley Owens551dfec2015-07-10 14:54:54 -0700383 if peg_rev_upstream:
384 if p.upstream:
385 e.setAttribute('upstream', p.upstream)
386 elif value != p.revisionExpr:
387 # Only save the origin if the origin is not a sha1, and the default
388 # isn't our value
389 e.setAttribute('upstream', p.revisionExpr)
Sean McAllisteraf908cb2020-04-20 08:41:58 -0600390
391 if peg_rev_dest_branch:
392 if p.dest_branch:
393 e.setAttribute('dest-branch', p.dest_branch)
394 elif value != p.revisionExpr:
395 e.setAttribute('dest-branch', p.revisionExpr)
396
Anthony King36ea2fb2014-05-06 11:54:01 +0100397 else:
Dan Willemsen96c2d652016-04-06 16:03:54 -0700398 revision = self.remotes[p.remote.orig_name].revision or d.revisionExpr
Anthony King36ea2fb2014-05-06 11:54:01 +0100399 if not revision or revision != p.revisionExpr:
400 e.setAttribute('revision', p.revisionExpr)
Nasser Grainawida403412018-05-04 12:53:29 -0600401 if (p.upstream and (p.upstream != p.revisionExpr or
402 p.upstream != d.upstreamExpr)):
Mani Chandel7a91d512014-07-24 16:27:08 +0530403 e.setAttribute('upstream', p.upstream)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800404
Simon Ruggier7e59de22015-07-24 12:50:06 +0200405 if p.dest_branch and p.dest_branch != d.destBranchExpr:
406 e.setAttribute('dest-branch', p.dest_branch)
407
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800408 for c in p.copyfiles:
409 ce = doc.createElement('copyfile')
410 ce.setAttribute('src', c.src)
411 ce.setAttribute('dest', c.dest)
412 e.appendChild(ce)
413
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500414 for l in p.linkfiles:
415 le = doc.createElement('linkfile')
416 le.setAttribute('src', l.src)
417 le.setAttribute('dest', l.dest)
418 e.appendChild(le)
419
Conley Owensbb1b5f52012-08-13 13:11:18 -0700420 default_groups = ['all', 'name:%s' % p.name, 'path:%s' % p.relpath]
Dmitry Fink17f85ea2012-08-06 14:52:29 -0700421 egroups = [g for g in p.groups if g not in default_groups]
Conley Owens971de8e2012-04-16 10:36:08 -0700422 if egroups:
423 e.setAttribute('groups', ','.join(egroups))
Colin Cross5acde752012-03-28 20:15:45 -0700424
James W. Mills24c13082012-04-12 15:04:13 -0500425 for a in p.annotations:
426 if a.keep == "true":
427 ae = doc.createElement('annotation')
428 ae.setAttribute('name', a.name)
429 ae.setAttribute('value', a.value)
430 e.appendChild(ae)
431
Anatol Pomazau79770d22012-04-20 14:41:59 -0700432 if p.sync_c:
433 e.setAttribute('sync-c', 'true')
434
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800435 if p.sync_s:
436 e.setAttribute('sync-s', 'true')
437
YOUNG HO CHAa32c92c2018-02-14 16:57:31 +0900438 if not p.sync_tags:
439 e.setAttribute('sync-tags', 'false')
440
Dan Willemsen88409222015-08-17 15:29:10 -0700441 if p.clone_depth:
442 e.setAttribute('clone-depth', str(p.clone_depth))
443
Simran Basib9a1b732015-08-20 12:19:28 -0700444 self._output_manifest_project_extras(p, e)
445
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800446 if p.subprojects:
David James8d201162013-10-11 17:03:19 -0700447 subprojects = set(subp.name for subp in p.subprojects)
448 output_projects(p, e, list(sorted(subprojects)))
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800449
David James8d201162013-10-11 17:03:19 -0700450 projects = set(p.name for p in self._paths.values() if not p.parent)
451 output_projects(None, root, list(sorted(projects)))
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800452
Doug Anderson37282b42011-03-04 11:54:18 -0800453 if self._repo_hooks_project:
454 root.appendChild(doc.createTextNode(''))
455 e = doc.createElement('repo-hooks')
456 e.setAttribute('in-project', self._repo_hooks_project.name)
457 e.setAttribute('enabled-list',
458 ' '.join(self._repo_hooks_project.enabled_repo_hooks))
459 root.appendChild(e)
460
Mike Frysinger23411d32020-09-02 04:31:10 -0400461 return doc
462
463 def ToDict(self, **kwargs):
464 """Return the current manifest as a dictionary."""
465 # Elements that may only appear once.
466 SINGLE_ELEMENTS = {
467 'notice',
468 'default',
469 'manifest-server',
470 'repo-hooks',
471 }
472 # Elements that may be repeated.
473 MULTI_ELEMENTS = {
474 'remote',
475 'remove-project',
476 'project',
477 'extend-project',
478 'include',
479 # These are children of 'project' nodes.
480 'annotation',
481 'project',
482 'copyfile',
483 'linkfile',
484 }
485
486 doc = self.ToXml(**kwargs)
487 ret = {}
488
489 def append_children(ret, node):
490 for child in node.childNodes:
491 if child.nodeType == xml.dom.Node.ELEMENT_NODE:
492 attrs = child.attributes
493 element = dict((attrs.item(i).localName, attrs.item(i).value)
494 for i in range(attrs.length))
495 if child.nodeName in SINGLE_ELEMENTS:
496 ret[child.nodeName] = element
497 elif child.nodeName in MULTI_ELEMENTS:
498 ret.setdefault(child.nodeName, []).append(element)
499 else:
500 raise ManifestParseError('Unhandled element "%s"' % (child.nodeName,))
501
502 append_children(element, child)
503
504 append_children(ret, doc.firstChild)
505
506 return ret
507
508 def Save(self, fd, **kwargs):
509 """Write the current manifest out to the given file descriptor."""
510 doc = self.ToXml(**kwargs)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800511 doc.writexml(fd, '', ' ', '\n', 'UTF-8')
512
Simran Basib9a1b732015-08-20 12:19:28 -0700513 def _output_manifest_project_extras(self, p, e):
514 """Manifests can modify e if they support extra project attributes."""
515 pass
516
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700517 @property
David James8d201162013-10-11 17:03:19 -0700518 def paths(self):
519 self._Load()
520 return self._paths
521
522 @property
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700523 def projects(self):
524 self._Load()
Anthony Kingd58bfe52014-05-05 23:30:49 +0100525 return list(self._paths.values())
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700526
527 @property
528 def remotes(self):
529 self._Load()
530 return self._remotes
531
532 @property
533 def default(self):
534 self._Load()
535 return self._default
536
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800537 @property
Doug Anderson37282b42011-03-04 11:54:18 -0800538 def repo_hooks_project(self):
539 self._Load()
540 return self._repo_hooks_project
541
542 @property
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700543 def notice(self):
544 self._Load()
545 return self._notice
546
547 @property
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700548 def manifest_server(self):
549 self._Load()
Shawn O. Pearce34fb20f2011-11-30 13:41:02 -0800550 return self._manifest_server
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700551
552 @property
Xin Lid79a4bc2020-05-20 16:03:45 -0700553 def CloneBundle(self):
554 clone_bundle = self.manifestProject.config.GetBoolean('repo.clonebundle')
555 if clone_bundle is None:
556 return False if self.manifestProject.config.GetBoolean('repo.partialclone') else True
557 else:
558 return clone_bundle
559
560 @property
Xin Li745be2e2019-06-03 11:24:30 -0700561 def CloneFilter(self):
562 if self.manifestProject.config.GetBoolean('repo.partialclone'):
563 return self.manifestProject.config.GetString('repo.clonefilter')
564 return None
565
566 @property
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800567 def IsMirror(self):
568 return self.manifestProject.config.GetBoolean('repo.mirror')
569
Julien Campergue335f5ef2013-10-16 11:02:35 +0200570 @property
Mike Frysinger979d5bd2020-02-09 02:28:34 -0500571 def UseGitWorktrees(self):
572 return self.manifestProject.config.GetBoolean('repo.worktree')
573
574 @property
Julien Campergue335f5ef2013-10-16 11:02:35 +0200575 def IsArchive(self):
576 return self.manifestProject.config.GetBoolean('repo.archive')
577
Martin Kellye4e94d22017-03-21 16:05:12 -0700578 @property
579 def HasSubmodules(self):
580 return self.manifestProject.config.GetBoolean('repo.submodules')
581
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700582 def _Unload(self):
583 self._loaded = False
584 self._projects = {}
David James8d201162013-10-11 17:03:19 -0700585 self._paths = {}
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700586 self._remotes = {}
587 self._default = None
Doug Anderson37282b42011-03-04 11:54:18 -0800588 self._repo_hooks_project = None
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700589 self._notice = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700590 self.branch = None
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700591 self._manifest_server = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700592
593 def _Load(self):
594 if not self._loaded:
Shawn O. Pearce2450a292008-11-04 08:22:07 -0800595 m = self.manifestProject
596 b = m.GetBranch(m.CurrentBranch).merge
Shawn O. Pearce21c5c342009-06-25 16:47:30 -0700597 if b is not None and b.startswith(R_HEADS):
Shawn O. Pearce2450a292008-11-04 08:22:07 -0800598 b = b[len(R_HEADS):]
599 self.branch = b
600
Colin Cross23acdd32012-04-21 00:33:54 -0700601 nodes = []
Brian Harring475a47d2012-06-07 20:05:35 -0700602 nodes.append(self._ParseManifestXml(self.manifestFile,
603 self.manifestProject.worktree))
Shawn O. Pearce5cc66792008-10-23 16:19:27 -0700604
Basil Gelloc7453502018-05-25 20:23:52 +0300605 if self._load_local_manifests:
Mike Frysinger4e1fc102020-09-06 14:42:47 -0400606 if os.path.exists(os.path.join(self.repodir, LOCAL_MANIFEST_NAME)):
607 print('error: %s is not supported; put local manifests in `%s`'
608 'instead' % (LOCAL_MANIFEST_NAME,
609 os.path.join(self.repodir, LOCAL_MANIFESTS_DIR_NAME)),
610 file=sys.stderr)
611 sys.exit(1)
Colin Cross23acdd32012-04-21 00:33:54 -0700612
Basil Gelloc7453502018-05-25 20:23:52 +0300613 local_dir = os.path.abspath(os.path.join(self.repodir,
David Pursehouseabdf7502020-02-12 14:58:39 +0900614 LOCAL_MANIFESTS_DIR_NAME))
Basil Gelloc7453502018-05-25 20:23:52 +0300615 try:
616 for local_file in sorted(platform_utils.listdir(local_dir)):
617 if local_file.endswith('.xml'):
618 local = os.path.join(local_dir, local_file)
619 nodes.append(self._ParseManifestXml(local, self.repodir))
620 except OSError:
621 pass
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900622
Joe Onorato26e24752013-01-11 12:35:53 -0800623 try:
624 self._ParseManifest(nodes)
625 except ManifestParseError as e:
626 # There was a problem parsing, unload ourselves in case they catch
627 # this error and try again later, we will show the correct error
628 self._Unload()
629 raise e
Shawn O. Pearce5cc66792008-10-23 16:19:27 -0700630
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800631 if self.IsMirror:
632 self._AddMetaProjectMirror(self.repoProject)
633 self._AddMetaProjectMirror(self.manifestProject)
634
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700635 self._loaded = True
636
Brian Harring475a47d2012-06-07 20:05:35 -0700637 def _ParseManifestXml(self, path, include_root):
David Pursehousef7fc8a92012-11-13 04:00:28 +0900638 try:
639 root = xml.dom.minidom.parse(path)
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900640 except (OSError, xml.parsers.expat.ExpatError) as e:
David Pursehousef7fc8a92012-11-13 04:00:28 +0900641 raise ManifestParseError("error parsing manifest %s: %s" % (path, e))
642
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700643 if not root or not root.childNodes:
Brian Harring26448742011-04-28 05:04:41 -0700644 raise ManifestParseError("no root node in %s" % (path,))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700645
Jooncheol Park34acdd22012-08-27 02:25:59 +0900646 for manifest in root.childNodes:
647 if manifest.nodeName == 'manifest':
648 break
649 else:
Brian Harring26448742011-04-28 05:04:41 -0700650 raise ManifestParseError("no <manifest> in %s" % (path,))
651
Colin Cross23acdd32012-04-21 00:33:54 -0700652 nodes = []
David Pursehouse65b0ba52018-06-24 16:21:51 +0900653 for node in manifest.childNodes:
David Pursehousec1b86a22012-11-14 11:36:51 +0900654 if node.nodeName == 'include':
655 name = self._reqatt(node, 'name')
656 fp = os.path.join(include_root, name)
657 if not os.path.isfile(fp):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530658 raise ManifestParseError("include %s doesn't exist or isn't a file"
David Pursehouseabdf7502020-02-12 14:58:39 +0900659 % (name,))
David Pursehousec1b86a22012-11-14 11:36:51 +0900660 try:
661 nodes.extend(self._ParseManifestXml(fp, include_root))
662 # should isolate this to the exact exception, but that's
663 # tricky. actual parsing implementation may vary.
664 except (KeyboardInterrupt, RuntimeError, SystemExit):
665 raise
666 except Exception as e:
667 raise ManifestParseError(
Mike Frysingerec558df2019-07-05 01:38:05 -0400668 "failed parsing included manifest %s: %s" % (name, e))
David Pursehousec1b86a22012-11-14 11:36:51 +0900669 else:
670 nodes.append(node)
Colin Cross23acdd32012-04-21 00:33:54 -0700671 return nodes
Brian Harring26448742011-04-28 05:04:41 -0700672
Colin Cross23acdd32012-04-21 00:33:54 -0700673 def _ParseManifest(self, node_list):
674 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700675 if node.nodeName == 'remote':
676 remote = self._ParseRemote(node)
David Pursehouse717ece92012-11-13 08:49:16 +0900677 if remote:
678 if remote.name in self._remotes:
679 if remote != self._remotes[remote.name]:
680 raise ManifestParseError(
681 'remote %s already exists with different attributes' %
682 (remote.name))
683 else:
684 self._remotes[remote.name] = remote
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700685
Colin Cross23acdd32012-04-21 00:33:54 -0700686 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700687 if node.nodeName == 'default':
Julien Campergue74879922013-10-09 14:38:46 +0200688 new_default = self._ParseDefault(node)
689 if self._default is None:
690 self._default = new_default
691 elif new_default != self._default:
David Pursehouse37128b62013-10-15 10:48:40 +0900692 raise ManifestParseError('duplicate default in %s' %
693 (self.manifestFile))
Julien Campergue74879922013-10-09 14:38:46 +0200694
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700695 if self._default is None:
696 self._default = _Default()
697
Colin Cross23acdd32012-04-21 00:33:54 -0700698 for node in itertools.chain(*node_list):
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700699 if node.nodeName == 'notice':
700 if self._notice is not None:
Doug Anderson37282b42011-03-04 11:54:18 -0800701 raise ManifestParseError(
702 'duplicate notice in %s' %
703 (self.manifestFile))
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700704 self._notice = self._ParseNotice(node)
705
Colin Cross23acdd32012-04-21 00:33:54 -0700706 for node in itertools.chain(*node_list):
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700707 if node.nodeName == 'manifest-server':
708 url = self._reqatt(node, 'url')
709 if self._manifest_server is not None:
David Pursehousec1b86a22012-11-14 11:36:51 +0900710 raise ManifestParseError(
711 'duplicate manifest-server in %s' %
712 (self.manifestFile))
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700713 self._manifest_server = url
714
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800715 def recursively_add_projects(project):
David James8d201162013-10-11 17:03:19 -0700716 projects = self._projects.setdefault(project.name, [])
717 if project.relpath is None:
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800718 raise ManifestParseError(
David James8d201162013-10-11 17:03:19 -0700719 'missing path for %s in %s' %
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800720 (project.name, self.manifestFile))
David James8d201162013-10-11 17:03:19 -0700721 if project.relpath in self._paths:
722 raise ManifestParseError(
723 'duplicate path %s in %s' %
724 (project.relpath, self.manifestFile))
725 self._paths[project.relpath] = project
726 projects.append(project)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800727 for subproject in project.subprojects:
728 recursively_add_projects(subproject)
729
Colin Cross23acdd32012-04-21 00:33:54 -0700730 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700731 if node.nodeName == 'project':
732 project = self._ParseProject(node)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800733 recursively_add_projects(project)
Josh Triplett884a3872014-06-12 14:57:29 -0700734 if node.nodeName == 'extend-project':
735 name = self._reqatt(node, 'name')
736
737 if name not in self._projects:
738 raise ManifestParseError('extend-project element specifies non-existent '
739 'project: %s' % name)
740
741 path = node.getAttribute('path')
742 groups = node.getAttribute('groups')
743 if groups:
744 groups = self._ParseGroups(groups)
Luis Hector Chavez7d525852018-03-15 09:54:08 -0700745 revision = node.getAttribute('revision')
Kyunam Jobd0aae92020-02-04 11:38:53 +0900746 remote = node.getAttribute('remote')
747 if remote:
748 remote = self._get_remote(node)
Josh Triplett884a3872014-06-12 14:57:29 -0700749
750 for p in self._projects[name]:
751 if path and p.relpath != path:
752 continue
753 if groups:
754 p.groups.extend(groups)
Luis Hector Chavez7d525852018-03-15 09:54:08 -0700755 if revision:
756 p.revisionExpr = revision
Miguel Gaio1f207762020-07-17 14:09:13 +0200757 if IsId(revision):
758 p.revisionId = revision
759 else:
760 p.revisionId = None
Kyunam Jobd0aae92020-02-04 11:38:53 +0900761 if remote:
762 p.remote = remote.ToRemoteSpec(name)
Doug Anderson37282b42011-03-04 11:54:18 -0800763 if node.nodeName == 'repo-hooks':
764 # Get the name of the project and the (space-separated) list of enabled.
765 repo_hooks_project = self._reqatt(node, 'in-project')
766 enabled_repo_hooks = self._reqatt(node, 'enabled-list').split()
767
768 # Only one project can be the hooks project
769 if self._repo_hooks_project is not None:
770 raise ManifestParseError(
771 'duplicate repo-hooks in %s' %
772 (self.manifestFile))
773
774 # Store a reference to the Project.
775 try:
David James8d201162013-10-11 17:03:19 -0700776 repo_hooks_projects = self._projects[repo_hooks_project]
Doug Anderson37282b42011-03-04 11:54:18 -0800777 except KeyError:
778 raise ManifestParseError(
779 'project %s not found for repo-hooks' %
780 (repo_hooks_project))
781
David James8d201162013-10-11 17:03:19 -0700782 if len(repo_hooks_projects) != 1:
783 raise ManifestParseError(
784 'internal error parsing repo-hooks in %s' %
785 (self.manifestFile))
786 self._repo_hooks_project = repo_hooks_projects[0]
787
Doug Anderson37282b42011-03-04 11:54:18 -0800788 # Store the enabled hooks in the Project object.
789 self._repo_hooks_project.enabled_repo_hooks = enabled_repo_hooks
Colin Cross23acdd32012-04-21 00:33:54 -0700790 if node.nodeName == 'remove-project':
791 name = self._reqatt(node, 'name')
David Jamesb8433df2014-01-30 10:11:17 -0800792
793 if name not in self._projects:
David Pursehousef9107482012-11-16 19:12:32 +0900794 raise ManifestParseError('remove-project element specifies non-existent '
795 'project: %s' % name)
Colin Cross23acdd32012-04-21 00:33:54 -0700796
David Jamesb8433df2014-01-30 10:11:17 -0800797 for p in self._projects[name]:
798 del self._paths[p.relpath]
799 del self._projects[name]
800
Colin Cross23acdd32012-04-21 00:33:54 -0700801 # If the manifest removes the hooks project, treat it as if it deleted
802 # the repo-hooks element too.
803 if self._repo_hooks_project and (self._repo_hooks_project.name == name):
804 self._repo_hooks_project = None
805
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800806 def _AddMetaProjectMirror(self, m):
807 name = None
808 m_url = m.GetRemote(m.remote.name).url
809 if m_url.endswith('/.git'):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530810 raise ManifestParseError('refusing to mirror %s' % m_url)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800811
812 if self._default and self._default.remote:
Conley Owensceea3682011-10-20 10:45:47 -0700813 url = self._default.remote.resolvedFetchUrl
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800814 if not url.endswith('/'):
815 url += '/'
816 if m_url.startswith(url):
817 remote = self._default.remote
818 name = m_url[len(url):]
819
820 if name is None:
821 s = m_url.rindex('/') + 1
Conley Owensdb728cd2011-09-26 16:34:01 -0700822 manifestUrl = self.manifestProject.config.GetString('remote.origin.url')
Shawn O. Pearcef35b2d92012-08-02 11:46:22 -0700823 remote = _XmlRemote('origin', fetch=m_url[:s], manifestUrl=manifestUrl)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800824 name = m_url[s:]
825
826 if name.endswith('.git'):
827 name = name[:-4]
828
829 if name not in self._projects:
830 m.PreSync()
831 gitdir = os.path.join(self.topdir, '%s.git' % name)
David Pursehousee5913ae2020-02-12 13:56:59 +0900832 project = Project(manifest=self,
833 name=name,
834 remote=remote.ToRemoteSpec(name),
835 gitdir=gitdir,
836 objdir=gitdir,
837 worktree=None,
838 relpath=name or None,
839 revisionExpr=m.revisionExpr,
840 revisionId=None)
David James8d201162013-10-11 17:03:19 -0700841 self._projects[project.name] = [project]
Kwanhong Leeccd218c2014-02-17 13:07:32 +0900842 self._paths[project.relpath] = project
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800843
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700844 def _ParseRemote(self, node):
845 """
846 reads a <remote> element from the manifest file
847 """
848 name = self._reqatt(node, 'name')
Yestin Sunb292b982012-07-02 07:32:50 -0700849 alias = node.getAttribute('alias')
850 if alias == '':
851 alias = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700852 fetch = self._reqatt(node, 'fetch')
Steve Raed6480452016-08-10 15:00:00 -0700853 pushUrl = node.getAttribute('pushurl')
854 if pushUrl == '':
855 pushUrl = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700856 review = node.getAttribute('review')
Shawn O. Pearceae6e0942008-11-06 10:25:35 -0800857 if review == '':
858 review = None
Anthony King36ea2fb2014-05-06 11:54:01 +0100859 revision = node.getAttribute('revision')
860 if revision == '':
861 revision = None
Conley Owensdb728cd2011-09-26 16:34:01 -0700862 manifestUrl = self.manifestProject.config.GetString('remote.origin.url')
Steve Raed6480452016-08-10 15:00:00 -0700863 return _XmlRemote(name, alias, fetch, pushUrl, manifestUrl, review, revision)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700864
865 def _ParseDefault(self, node):
866 """
867 reads a <default> element from the manifest file
868 """
869 d = _Default()
870 d.remote = self._get_remote(node)
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700871 d.revisionExpr = node.getAttribute('revision')
872 if d.revisionExpr == '':
873 d.revisionExpr = None
Anatol Pomazau79770d22012-04-20 14:41:59 -0700874
Bryan Jacobsf609f912013-05-06 13:36:24 -0400875 d.destBranchExpr = node.getAttribute('dest-branch') or None
Nasser Grainawida403412018-05-04 12:53:29 -0600876 d.upstreamExpr = node.getAttribute('upstream') or None
Bryan Jacobsf609f912013-05-06 13:36:24 -0400877
Mike Frysingerbb8ee7f2020-02-22 05:30:12 -0500878 d.sync_j = XmlInt(node, 'sync-j', 1)
879 if d.sync_j <= 0:
880 raise ManifestParseError('%s: sync-j must be greater than 0, not "%s"' %
881 (self.manifestFile, d.sync_j))
Anatol Pomazau79770d22012-04-20 14:41:59 -0700882
Mike Frysingerbb8ee7f2020-02-22 05:30:12 -0500883 d.sync_c = XmlBool(node, 'sync-c', False)
884 d.sync_s = XmlBool(node, 'sync-s', False)
885 d.sync_tags = XmlBool(node, 'sync-tags', True)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700886 return d
887
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700888 def _ParseNotice(self, node):
889 """
890 reads a <notice> element from the manifest file
891
892 The <notice> element is distinct from other tags in the XML in that the
893 data is conveyed between the start and end tag (it's not an empty-element
894 tag).
895
896 The white space (carriage returns, indentation) for the notice element is
897 relevant and is parsed in a way that is based on how python docstrings work.
898 In fact, the code is remarkably similar to here:
899 http://www.python.org/dev/peps/pep-0257/
900 """
901 # Get the data out of the node...
902 notice = node.childNodes[0].data
903
904 # Figure out minimum indentation, skipping the first line (the same line
905 # as the <notice> tag)...
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530906 minIndent = sys.maxsize
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700907 lines = notice.splitlines()
908 for line in lines[1:]:
909 lstrippedLine = line.lstrip()
910 if lstrippedLine:
911 indent = len(line) - len(lstrippedLine)
912 minIndent = min(indent, minIndent)
913
914 # Strip leading / trailing blank lines and also indentation.
915 cleanLines = [lines[0].strip()]
916 for line in lines[1:]:
917 cleanLines.append(line[minIndent:].rstrip())
918
919 # Clear completely blank lines from front and back...
920 while cleanLines and not cleanLines[0]:
921 del cleanLines[0]
922 while cleanLines and not cleanLines[-1]:
923 del cleanLines[-1]
924
925 return '\n'.join(cleanLines)
926
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800927 def _JoinName(self, parent_name, name):
928 return os.path.join(parent_name, name)
929
930 def _UnjoinName(self, parent_name, name):
931 return os.path.relpath(name, parent_name)
932
David Pursehousee5913ae2020-02-12 13:56:59 +0900933 def _ParseProject(self, node, parent=None, **extra_proj_attrs):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700934 """
935 reads a <project> element from the manifest file
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700936 """
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700937 name = self._reqatt(node, 'name')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800938 if parent:
939 name = self._JoinName(parent.name, name)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700940
941 remote = self._get_remote(node)
942 if remote is None:
943 remote = self._default.remote
944 if remote is None:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530945 raise ManifestParseError("no remote for project %s within %s" %
David Pursehouseabdf7502020-02-12 14:58:39 +0900946 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700947
Anthony King36ea2fb2014-05-06 11:54:01 +0100948 revisionExpr = node.getAttribute('revision') or remote.revision
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700949 if not revisionExpr:
950 revisionExpr = self._default.revisionExpr
951 if not revisionExpr:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530952 raise ManifestParseError("no revision for project %s within %s" %
David Pursehouseabdf7502020-02-12 14:58:39 +0900953 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700954
955 path = node.getAttribute('path')
956 if not path:
957 path = name
958 if path.startswith('/'):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530959 raise ManifestParseError("project %s path cannot be absolute in %s" %
David Pursehouseabdf7502020-02-12 14:58:39 +0900960 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700961
Mike Frysingerbb8ee7f2020-02-22 05:30:12 -0500962 rebase = XmlBool(node, 'rebase', True)
963 sync_c = XmlBool(node, 'sync-c', False)
964 sync_s = XmlBool(node, 'sync-s', self._default.sync_s)
965 sync_tags = XmlBool(node, 'sync-tags', self._default.sync_tags)
Mike Pontillod3153822012-02-28 11:53:24 -0800966
Mike Frysingerbb8ee7f2020-02-22 05:30:12 -0500967 clone_depth = XmlInt(node, 'clone-depth')
968 if clone_depth is not None and clone_depth <= 0:
969 raise ManifestParseError('%s: clone-depth must be greater than 0, not "%s"' %
970 (self.manifestFile, clone_depth))
David Pursehouseede7f122012-11-27 22:25:30 +0900971
Bryan Jacobsf609f912013-05-06 13:36:24 -0400972 dest_branch = node.getAttribute('dest-branch') or self._default.destBranchExpr
973
Nasser Grainawida403412018-05-04 12:53:29 -0600974 upstream = node.getAttribute('upstream') or self._default.upstreamExpr
Brian Harring14a66742012-09-28 20:21:57 -0700975
Conley Owens971de8e2012-04-16 10:36:08 -0700976 groups = ''
977 if node.hasAttribute('groups'):
978 groups = node.getAttribute('groups')
Josh Triplett884a3872014-06-12 14:57:29 -0700979 groups = self._ParseGroups(groups)
Brian Harring7da13142012-06-15 02:24:20 -0700980
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800981 if parent is None:
Mike Frysinger979d5bd2020-02-09 02:28:34 -0500982 relpath, worktree, gitdir, objdir, use_git_worktrees = \
983 self.GetProjectPaths(name, path)
Shawn O. Pearcecd81dd62012-10-26 12:18:00 -0700984 else:
Mike Frysinger979d5bd2020-02-09 02:28:34 -0500985 use_git_worktrees = False
David James8d201162013-10-11 17:03:19 -0700986 relpath, worktree, gitdir, objdir = \
987 self.GetSubprojectPaths(parent, name, path)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800988
989 default_groups = ['all', 'name:%s' % name, 'path:%s' % relpath]
990 groups.extend(set(default_groups).difference(groups))
Shawn O. Pearcecd81dd62012-10-26 12:18:00 -0700991
Scott Fandb83b1b2013-02-28 09:34:14 +0800992 if self.IsMirror and node.hasAttribute('force-path'):
Mike Frysingerbb8ee7f2020-02-22 05:30:12 -0500993 if XmlBool(node, 'force-path', False):
Scott Fandb83b1b2013-02-28 09:34:14 +0800994 gitdir = os.path.join(self.topdir, '%s.git' % path)
995
David Pursehousee5913ae2020-02-12 13:56:59 +0900996 project = Project(manifest=self,
997 name=name,
998 remote=remote.ToRemoteSpec(name),
999 gitdir=gitdir,
1000 objdir=objdir,
1001 worktree=worktree,
1002 relpath=relpath,
1003 revisionExpr=revisionExpr,
1004 revisionId=None,
1005 rebase=rebase,
1006 groups=groups,
1007 sync_c=sync_c,
1008 sync_s=sync_s,
1009 sync_tags=sync_tags,
1010 clone_depth=clone_depth,
1011 upstream=upstream,
1012 parent=parent,
1013 dest_branch=dest_branch,
Mike Frysinger979d5bd2020-02-09 02:28:34 -05001014 use_git_worktrees=use_git_worktrees,
Simran Basib9a1b732015-08-20 12:19:28 -07001015 **extra_proj_attrs)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001016
1017 for n in node.childNodes:
Shawn O. Pearce242b5262009-05-19 13:00:29 -07001018 if n.nodeName == 'copyfile':
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001019 self._ParseCopyFile(project, n)
Jeff Hamiltone0df2322014-04-21 17:10:59 -05001020 if n.nodeName == 'linkfile':
1021 self._ParseLinkFile(project, n)
James W. Mills24c13082012-04-12 15:04:13 -05001022 if n.nodeName == 'annotation':
1023 self._ParseAnnotation(project, n)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +08001024 if n.nodeName == 'project':
David Pursehousee5913ae2020-02-12 13:56:59 +09001025 project.subprojects.append(self._ParseProject(n, parent=project))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001026
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001027 return project
1028
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +08001029 def GetProjectPaths(self, name, path):
Mike Frysingercebf2272020-05-26 01:02:29 -04001030 # The manifest entries might have trailing slashes. Normalize them to avoid
1031 # unexpected filesystem behavior since we do string concatenation below.
1032 path = path.rstrip('/')
1033 name = name.rstrip('/')
Mike Frysinger979d5bd2020-02-09 02:28:34 -05001034 use_git_worktrees = False
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +08001035 relpath = path
1036 if self.IsMirror:
1037 worktree = None
1038 gitdir = os.path.join(self.topdir, '%s.git' % name)
David James8d201162013-10-11 17:03:19 -07001039 objdir = gitdir
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +08001040 else:
1041 worktree = os.path.join(self.topdir, path).replace('\\', '/')
1042 gitdir = os.path.join(self.repodir, 'projects', '%s.git' % path)
Mike Frysinger979d5bd2020-02-09 02:28:34 -05001043 # We allow people to mix git worktrees & non-git worktrees for now.
1044 # This allows for in situ migration of repo clients.
1045 if os.path.exists(gitdir) or not self.UseGitWorktrees:
1046 objdir = os.path.join(self.repodir, 'project-objects', '%s.git' % name)
1047 else:
1048 use_git_worktrees = True
1049 gitdir = os.path.join(self.repodir, 'worktrees', '%s.git' % name)
1050 objdir = gitdir
1051 return relpath, worktree, gitdir, objdir, use_git_worktrees
David James8d201162013-10-11 17:03:19 -07001052
1053 def GetProjectsWithName(self, name):
1054 return self._projects.get(name, [])
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +08001055
1056 def GetSubprojectName(self, parent, submodule_path):
1057 return os.path.join(parent.name, submodule_path)
1058
1059 def _JoinRelpath(self, parent_relpath, relpath):
1060 return os.path.join(parent_relpath, relpath)
1061
1062 def _UnjoinRelpath(self, parent_relpath, relpath):
1063 return os.path.relpath(relpath, parent_relpath)
1064
David James8d201162013-10-11 17:03:19 -07001065 def GetSubprojectPaths(self, parent, name, path):
Mike Frysingercebf2272020-05-26 01:02:29 -04001066 # The manifest entries might have trailing slashes. Normalize them to avoid
1067 # unexpected filesystem behavior since we do string concatenation below.
1068 path = path.rstrip('/')
1069 name = name.rstrip('/')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +08001070 relpath = self._JoinRelpath(parent.relpath, path)
1071 gitdir = os.path.join(parent.gitdir, 'subprojects', '%s.git' % path)
David James8d201162013-10-11 17:03:19 -07001072 objdir = os.path.join(parent.gitdir, 'subproject-objects', '%s.git' % name)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +08001073 if self.IsMirror:
1074 worktree = None
1075 else:
1076 worktree = os.path.join(parent.worktree, path).replace('\\', '/')
David James8d201162013-10-11 17:03:19 -07001077 return relpath, worktree, gitdir, objdir
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +08001078
Mike Frysinger04122b72019-07-31 23:32:58 -04001079 @staticmethod
1080 def _CheckLocalPath(path, symlink=False):
1081 """Verify |path| is reasonable for use in <copyfile> & <linkfile>."""
1082 if '~' in path:
1083 return '~ not allowed (due to 8.3 filenames on Windows filesystems)'
1084
1085 # Some filesystems (like Apple's HFS+) try to normalize Unicode codepoints
1086 # which means there are alternative names for ".git". Reject paths with
1087 # these in it as there shouldn't be any reasonable need for them here.
1088 # The set of codepoints here was cribbed from jgit's implementation:
1089 # https://eclipse.googlesource.com/jgit/jgit/+/9110037e3e9461ff4dac22fee84ef3694ed57648/org.eclipse.jgit/src/org/eclipse/jgit/lib/ObjectChecker.java#884
1090 BAD_CODEPOINTS = {
1091 u'\u200C', # ZERO WIDTH NON-JOINER
1092 u'\u200D', # ZERO WIDTH JOINER
1093 u'\u200E', # LEFT-TO-RIGHT MARK
1094 u'\u200F', # RIGHT-TO-LEFT MARK
1095 u'\u202A', # LEFT-TO-RIGHT EMBEDDING
1096 u'\u202B', # RIGHT-TO-LEFT EMBEDDING
1097 u'\u202C', # POP DIRECTIONAL FORMATTING
1098 u'\u202D', # LEFT-TO-RIGHT OVERRIDE
1099 u'\u202E', # RIGHT-TO-LEFT OVERRIDE
1100 u'\u206A', # INHIBIT SYMMETRIC SWAPPING
1101 u'\u206B', # ACTIVATE SYMMETRIC SWAPPING
1102 u'\u206C', # INHIBIT ARABIC FORM SHAPING
1103 u'\u206D', # ACTIVATE ARABIC FORM SHAPING
1104 u'\u206E', # NATIONAL DIGIT SHAPES
1105 u'\u206F', # NOMINAL DIGIT SHAPES
1106 u'\uFEFF', # ZERO WIDTH NO-BREAK SPACE
1107 }
1108 if BAD_CODEPOINTS & set(path):
1109 # This message is more expansive than reality, but should be fine.
1110 return 'Unicode combining characters not allowed'
1111
1112 # Assume paths might be used on case-insensitive filesystems.
1113 path = path.lower()
1114
Mike Frysingerd9254592020-02-19 22:36:26 -05001115 # Split up the path by its components. We can't use os.path.sep exclusively
1116 # as some platforms (like Windows) will convert / to \ and that bypasses all
1117 # our constructed logic here. Especially since manifest authors only use
1118 # / in their paths.
1119 resep = re.compile(r'[/%s]' % re.escape(os.path.sep))
1120 parts = resep.split(path)
1121
Mike Frysingerae625412020-02-10 17:10:03 -05001122 # Some people use src="." to create stable links to projects. Lets allow
1123 # that but reject all other uses of "." to keep things simple.
Mike Frysingerae625412020-02-10 17:10:03 -05001124 if parts != ['.']:
1125 for part in set(parts):
1126 if part in {'.', '..', '.git'} or part.startswith('.repo'):
1127 return 'bad component: %s' % (part,)
Mike Frysinger04122b72019-07-31 23:32:58 -04001128
Mike Frysingerd9254592020-02-19 22:36:26 -05001129 if not symlink and resep.match(path[-1]):
Mike Frysinger04122b72019-07-31 23:32:58 -04001130 return 'dirs not allowed'
1131
Mike Frysingerd9254592020-02-19 22:36:26 -05001132 # NB: The two abspath checks here are to handle platforms with multiple
1133 # filesystem path styles (e.g. Windows).
Mike Frysinger04122b72019-07-31 23:32:58 -04001134 norm = os.path.normpath(path)
Mike Frysingerd9254592020-02-19 22:36:26 -05001135 if (norm == '..' or
1136 (len(norm) >= 3 and norm.startswith('..') and resep.match(norm[0])) or
1137 os.path.isabs(norm) or
1138 norm.startswith('/')):
Mike Frysinger04122b72019-07-31 23:32:58 -04001139 return 'path cannot be outside'
1140
1141 @classmethod
1142 def _ValidateFilePaths(cls, element, src, dest):
1143 """Verify |src| & |dest| are reasonable for <copyfile> & <linkfile>.
1144
1145 We verify the path independent of any filesystem state as we won't have a
1146 checkout available to compare to. i.e. This is for parsing validation
1147 purposes only.
1148
1149 We'll do full/live sanity checking before we do the actual filesystem
1150 modifications in _CopyFile/_LinkFile/etc...
1151 """
1152 # |dest| is the file we write to or symlink we create.
1153 # It is relative to the top of the repo client checkout.
1154 msg = cls._CheckLocalPath(dest)
1155 if msg:
1156 raise ManifestInvalidPathError(
1157 '<%s> invalid "dest": %s: %s' % (element, dest, msg))
1158
1159 # |src| is the file we read from or path we point to for symlinks.
1160 # It is relative to the top of the git project checkout.
1161 msg = cls._CheckLocalPath(src, symlink=element == 'linkfile')
1162 if msg:
1163 raise ManifestInvalidPathError(
1164 '<%s> invalid "src": %s: %s' % (element, src, msg))
1165
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001166 def _ParseCopyFile(self, project, node):
1167 src = self._reqatt(node, 'src')
1168 dest = self._reqatt(node, 'dest')
Shawn O. Pearcee284ad12008-11-04 07:37:10 -08001169 if not self.IsMirror:
1170 # src is project relative;
Mike Frysinger04122b72019-07-31 23:32:58 -04001171 # dest is relative to the top of the tree.
1172 # We only validate paths if we actually plan to process them.
1173 self._ValidateFilePaths('copyfile', src, dest)
Mike Frysingere6a202f2019-08-02 15:57:57 -04001174 project.AddCopyFile(src, dest, self.topdir)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001175
Jeff Hamiltone0df2322014-04-21 17:10:59 -05001176 def _ParseLinkFile(self, project, node):
1177 src = self._reqatt(node, 'src')
1178 dest = self._reqatt(node, 'dest')
1179 if not self.IsMirror:
1180 # src is project relative;
Mike Frysinger04122b72019-07-31 23:32:58 -04001181 # dest is relative to the top of the tree.
1182 # We only validate paths if we actually plan to process them.
1183 self._ValidateFilePaths('linkfile', src, dest)
Mike Frysingere6a202f2019-08-02 15:57:57 -04001184 project.AddLinkFile(src, dest, self.topdir)
Jeff Hamiltone0df2322014-04-21 17:10:59 -05001185
James W. Mills24c13082012-04-12 15:04:13 -05001186 def _ParseAnnotation(self, project, node):
1187 name = self._reqatt(node, 'name')
1188 value = self._reqatt(node, 'value')
1189 try:
1190 keep = self._reqatt(node, 'keep').lower()
1191 except ManifestParseError:
1192 keep = "true"
1193 if keep != "true" and keep != "false":
Chirayu Desai217ea7d2013-03-01 19:14:38 +05301194 raise ManifestParseError('optional "keep" attribute must be '
David Pursehouseabdf7502020-02-12 14:58:39 +09001195 '"true" or "false"')
James W. Mills24c13082012-04-12 15:04:13 -05001196 project.AddAnnotation(name, value, keep)
1197
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001198 def _get_remote(self, node):
1199 name = node.getAttribute('remote')
1200 if not name:
1201 return None
1202
1203 v = self._remotes.get(name)
1204 if not v:
Chirayu Desai217ea7d2013-03-01 19:14:38 +05301205 raise ManifestParseError("remote %s not defined in %s" %
David Pursehouseabdf7502020-02-12 14:58:39 +09001206 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001207 return v
1208
1209 def _reqatt(self, node, attname):
1210 """
1211 reads a required attribute from the node.
1212 """
1213 v = node.getAttribute(attname)
1214 if not v:
Chirayu Desai217ea7d2013-03-01 19:14:38 +05301215 raise ManifestParseError("no %s in <%s> within %s" %
David Pursehouseabdf7502020-02-12 14:58:39 +09001216 (attname, node.nodeName, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001217 return v
Julien Camperguedd654222014-01-09 16:21:37 +01001218
1219 def projectsDiff(self, manifest):
1220 """return the projects differences between two manifests.
1221
1222 The diff will be from self to given manifest.
1223
1224 """
1225 fromProjects = self.paths
1226 toProjects = manifest.paths
1227
Anthony King7446c592014-05-06 09:19:39 +01001228 fromKeys = sorted(fromProjects.keys())
1229 toKeys = sorted(toProjects.keys())
Julien Camperguedd654222014-01-09 16:21:37 +01001230
1231 diff = {'added': [], 'removed': [], 'changed': [], 'unreachable': []}
1232
1233 for proj in fromKeys:
David Pursehouseeeff3532020-02-12 11:24:10 +09001234 if proj not in toKeys:
Julien Camperguedd654222014-01-09 16:21:37 +01001235 diff['removed'].append(fromProjects[proj])
1236 else:
1237 fromProj = fromProjects[proj]
1238 toProj = toProjects[proj]
1239 try:
1240 fromRevId = fromProj.GetCommitRevisionId()
1241 toRevId = toProj.GetCommitRevisionId()
1242 except ManifestInvalidRevisionError:
1243 diff['unreachable'].append((fromProj, toProj))
1244 else:
1245 if fromRevId != toRevId:
1246 diff['changed'].append((fromProj, toProj))
1247 toKeys.remove(proj)
1248
1249 for proj in toKeys:
1250 diff['added'].append(toProjects[proj])
1251
1252 return diff
Simran Basib9a1b732015-08-20 12:19:28 -07001253
1254
1255class GitcManifest(XmlManifest):
1256
1257 def __init__(self, repodir, gitc_client_name):
1258 """Initialize the GitcManifest object."""
1259 super(GitcManifest, self).__init__(repodir)
1260 self.isGitcClient = True
1261 self.gitc_client_name = gitc_client_name
Simran Basi8ce50412015-08-28 14:25:44 -07001262 self.gitc_client_dir = os.path.join(gitc_utils.get_gitc_manifest_dir(),
Simran Basib9a1b732015-08-20 12:19:28 -07001263 gitc_client_name)
1264 self.manifestFile = os.path.join(self.gitc_client_dir, '.manifest')
1265
David Pursehousee5913ae2020-02-12 13:56:59 +09001266 def _ParseProject(self, node, parent=None):
Simran Basib9a1b732015-08-20 12:19:28 -07001267 """Override _ParseProject and add support for GITC specific attributes."""
1268 return super(GitcManifest, self)._ParseProject(
1269 node, parent=parent, old_revision=node.getAttribute('old-revision'))
1270
1271 def _output_manifest_project_extras(self, p, e):
1272 """Output GITC Specific Project attributes"""
1273 if p.old_revision:
Stefan Beller66851062016-06-17 16:40:08 -07001274 e.setAttribute('old-revision', str(p.old_revision))