blob: 23b4fb74a4b317df32c032bb97a6a092e5b12742 [file] [log] [blame]
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001#
2# Copyright (C) 2008 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
Sarah Owenscecd1d82012-11-01 22:59:27 -070016from __future__ import print_function
Colin Cross23acdd32012-04-21 00:33:54 -070017import itertools
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070018import os
Conley Owensdb728cd2011-09-26 16:34:01 -070019import re
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070020import sys
David Pursehouse59bbb582013-05-17 10:49:33 +090021import xml.dom.minidom
22
23from pyversion import is_python3
24if is_python3():
Chirayu Desai217ea7d2013-03-01 19:14:38 +053025 import urllib.parse
David Pursehouse59bbb582013-05-17 10:49:33 +090026else:
Chirayu Desai217ea7d2013-03-01 19:14:38 +053027 import imp
28 import urlparse
29 urllib = imp.new_module('urllib')
Chirayu Desaidb2ad9d2013-06-11 13:42:25 +053030 urllib.parse = urlparse
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070031
Simran Basib9a1b732015-08-20 12:19:28 -070032import gitc_utils
David Pursehousee15c65a2012-08-22 10:46:11 +090033from git_config import GitConfig
David Pursehousee00aa6b2012-09-11 14:33:51 +090034from git_refs import R_HEADS, HEAD
Renaud Paquayd5cec5e2016-11-01 11:24:03 -070035import platform_utils
David Pursehousee00aa6b2012-09-11 14:33:51 +090036from project import RemoteSpec, Project, MetaProject
Julien Camperguedd654222014-01-09 16:21:37 +010037from error import ManifestParseError, ManifestInvalidRevisionError
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070038
39MANIFEST_FILE_NAME = 'manifest.xml'
Shawn O. Pearce5cc66792008-10-23 16:19:27 -070040LOCAL_MANIFEST_NAME = 'local_manifest.xml'
David Pursehouse2d5a0df2012-11-13 02:50:36 +090041LOCAL_MANIFESTS_DIR_NAME = 'local_manifests'
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070042
Anthony Kingcb07ba72015-03-28 23:26:04 +000043# urljoin gets confused if the scheme is not known.
Joe Kilner6e310792016-10-27 15:53:53 -070044urllib.parse.uses_relative.extend([
45 'ssh',
46 'git',
47 'persistent-https',
48 'sso',
49 'rpc'])
50urllib.parse.uses_netloc.extend([
51 'ssh',
52 'git',
53 'persistent-https',
54 'sso',
55 'rpc'])
Conley Owensdb728cd2011-09-26 16:34:01 -070056
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070057class _Default(object):
58 """Project defaults within the manifest."""
59
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -070060 revisionExpr = None
Conley Owensb6a16e62013-09-25 15:06:09 -070061 destBranchExpr = None
Nasser Grainawida403412018-05-04 12:53:29 -060062 upstreamExpr = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070063 remote = None
Shawn O. Pearce6392c872011-09-22 17:44:31 -070064 sync_j = 1
Anatol Pomazau79770d22012-04-20 14:41:59 -070065 sync_c = False
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +080066 sync_s = False
YOUNG HO CHAa32c92c2018-02-14 16:57:31 +090067 sync_tags = True
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070068
Julien Campergue74879922013-10-09 14:38:46 +020069 def __eq__(self, other):
70 return self.__dict__ == other.__dict__
71
72 def __ne__(self, other):
73 return self.__dict__ != other.__dict__
74
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070075class _XmlRemote(object):
76 def __init__(self,
77 name,
Yestin Sunb292b982012-07-02 07:32:50 -070078 alias=None,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070079 fetch=None,
Steve Raed6480452016-08-10 15:00:00 -070080 pushUrl=None,
Conley Owensdb728cd2011-09-26 16:34:01 -070081 manifestUrl=None,
Anthony King36ea2fb2014-05-06 11:54:01 +010082 review=None,
Jonathan Nieder93719792015-03-17 11:29:58 -070083 revision=None):
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070084 self.name = name
85 self.fetchUrl = fetch
Steve Raed6480452016-08-10 15:00:00 -070086 self.pushUrl = pushUrl
Conley Owensdb728cd2011-09-26 16:34:01 -070087 self.manifestUrl = manifestUrl
Yestin Sunb292b982012-07-02 07:32:50 -070088 self.remoteAlias = alias
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070089 self.reviewUrl = review
Anthony King36ea2fb2014-05-06 11:54:01 +010090 self.revision = revision
Conley Owensceea3682011-10-20 10:45:47 -070091 self.resolvedFetchUrl = self._resolveFetchUrl()
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070092
David Pursehouse717ece92012-11-13 08:49:16 +090093 def __eq__(self, other):
94 return self.__dict__ == other.__dict__
95
96 def __ne__(self, other):
97 return self.__dict__ != other.__dict__
98
Conley Owensceea3682011-10-20 10:45:47 -070099 def _resolveFetchUrl(self):
100 url = self.fetchUrl.rstrip('/')
Conley Owensdb728cd2011-09-26 16:34:01 -0700101 manifestUrl = self.manifestUrl.rstrip('/')
Conley Owens2d0f5082014-01-31 15:03:51 -0800102 # urljoin will gets confused over quite a few things. The ones we care
103 # about here are:
104 # * no scheme in the base url, like <hostname:port>
Anthony Kingcb07ba72015-03-28 23:26:04 +0000105 # We handle no scheme by replacing it with an obscure protocol, gopher
106 # and then replacing it with the original when we are done.
107
Conley Owensdb728cd2011-09-26 16:34:01 -0700108 if manifestUrl.find(':') != manifestUrl.find('/') - 1:
Conley Owens4ccad752015-04-29 10:45:37 -0700109 url = urllib.parse.urljoin('gopher://' + manifestUrl, url)
110 url = re.sub(r'^gopher://', '', url)
Anthony Kingcb07ba72015-03-28 23:26:04 +0000111 else:
112 url = urllib.parse.urljoin(manifestUrl, url)
Shawn Pearcea9f11b32013-01-02 15:40:48 -0800113 return url
Conley Owensceea3682011-10-20 10:45:47 -0700114
115 def ToRemoteSpec(self, projectName):
David Rileye0684ad2017-04-05 00:02:59 -0700116 fetchUrl = self.resolvedFetchUrl.rstrip('/')
117 url = fetchUrl + '/' + projectName
Yestin Sunb292b982012-07-02 07:32:50 -0700118 remoteName = self.name
Conley Owens1e7ab2a2013-10-08 17:26:57 -0700119 if self.remoteAlias:
David Pursehouse37128b62013-10-15 10:48:40 +0900120 remoteName = self.remoteAlias
Dan Willemsen96c2d652016-04-06 16:03:54 -0700121 return RemoteSpec(remoteName,
122 url=url,
Steve Raed6480452016-08-10 15:00:00 -0700123 pushUrl=self.pushUrl,
Dan Willemsen96c2d652016-04-06 16:03:54 -0700124 review=self.reviewUrl,
David Rileye0684ad2017-04-05 00:02:59 -0700125 orig_name=self.name,
126 fetchUrl=self.fetchUrl)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700127
Shawn O. Pearcec8a300f2009-05-18 13:19:57 -0700128class XmlManifest(object):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700129 """manages the repo configuration file"""
130
131 def __init__(self, repodir):
132 self.repodir = os.path.abspath(repodir)
133 self.topdir = os.path.dirname(self.repodir)
134 self.manifestFile = os.path.join(self.repodir, MANIFEST_FILE_NAME)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700135 self.globalConfig = GitConfig.ForUser()
David Pursehouse4eb285c2013-02-14 16:28:44 +0900136 self.localManifestWarning = False
Simran Basib9a1b732015-08-20 12:19:28 -0700137 self.isGitcClient = False
Basil Gelloc7453502018-05-25 20:23:52 +0300138 self._load_local_manifests = True
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700139
140 self.repoProject = MetaProject(self, 'repo',
141 gitdir = os.path.join(repodir, 'repo/.git'),
142 worktree = os.path.join(repodir, 'repo'))
143
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700144 self.manifestProject = MetaProject(self, 'manifests',
Shawn O. Pearcef5c25a62008-11-04 08:11:53 -0800145 gitdir = os.path.join(repodir, 'manifests.git'),
146 worktree = os.path.join(repodir, 'manifests'))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700147
148 self._Unload()
149
Basil Gelloc7453502018-05-25 20:23:52 +0300150 def Override(self, name, load_local_manifests=True):
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700151 """Use a different manifest, just for the current instantiation.
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700152 """
Basil Gelloc7453502018-05-25 20:23:52 +0300153 path = None
154
155 # Look for a manifest by path in the filesystem (including the cwd).
156 if not load_local_manifests:
157 local_path = os.path.abspath(name)
158 if os.path.isfile(local_path):
159 path = local_path
160
161 # Look for manifests by name from the manifests repo.
162 if path is None:
163 path = os.path.join(self.manifestProject.worktree, name)
164 if not os.path.isfile(path):
165 raise ManifestParseError('manifest %s not found' % name)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700166
167 old = self.manifestFile
168 try:
Basil Gelloc7453502018-05-25 20:23:52 +0300169 self._load_local_manifests = load_local_manifests
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700170 self.manifestFile = path
171 self._Unload()
172 self._Load()
173 finally:
174 self.manifestFile = old
175
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700176 def Link(self, name):
177 """Update the repo metadata to use a different manifest.
178 """
179 self.Override(name)
180
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700181 try:
Sebastian Frias223bf962012-11-21 19:09:25 +0100182 if os.path.lexists(self.manifestFile):
Renaud Paquay010fed72016-11-11 14:25:29 -0800183 platform_utils.remove(self.manifestFile)
Renaud Paquayd5cec5e2016-11-01 11:24:03 -0700184 platform_utils.symlink(os.path.join('manifests', name), self.manifestFile)
Sebastian Frias223bf962012-11-21 19:09:25 +0100185 except OSError as e:
186 raise ManifestParseError('cannot link manifest %s: %s' % (name, str(e)))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700187
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800188 def _RemoteToXml(self, r, doc, root):
189 e = doc.createElement('remote')
190 root.appendChild(e)
191 e.setAttribute('name', r.name)
192 e.setAttribute('fetch', r.fetchUrl)
Steve Raed6480452016-08-10 15:00:00 -0700193 if r.pushUrl is not None:
194 e.setAttribute('pushurl', r.pushUrl)
Conley Owens1e7ab2a2013-10-08 17:26:57 -0700195 if r.remoteAlias is not None:
196 e.setAttribute('alias', r.remoteAlias)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800197 if r.reviewUrl is not None:
198 e.setAttribute('review', r.reviewUrl)
Anthony King36ea2fb2014-05-06 11:54:01 +0100199 if r.revision is not None:
200 e.setAttribute('revision', r.revision)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800201
Josh Triplett884a3872014-06-12 14:57:29 -0700202 def _ParseGroups(self, groups):
203 return [x for x in re.split(r'[,\s]+', groups) if x]
204
Dan Willemsen5ea32d12015-09-08 13:27:20 -0700205 def Save(self, fd, peg_rev=False, peg_rev_upstream=True, groups=None):
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800206 """Write the current manifest out to the given file descriptor.
207 """
Colin Cross5acde752012-03-28 20:15:45 -0700208 mp = self.manifestProject
209
Dan Willemsen5ea32d12015-09-08 13:27:20 -0700210 if groups is None:
211 groups = mp.config.GetString('manifest.groups')
Matt Gumbel0c635bb2012-12-21 10:14:53 -0800212 if groups:
Josh Triplett884a3872014-06-12 14:57:29 -0700213 groups = self._ParseGroups(groups)
Colin Cross5acde752012-03-28 20:15:45 -0700214
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800215 doc = xml.dom.minidom.Document()
216 root = doc.createElement('manifest')
217 doc.appendChild(root)
218
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700219 # Save out the notice. There's a little bit of work here to give it the
220 # right whitespace, which assumes that the notice is automatically indented
221 # by 4 by minidom.
222 if self.notice:
223 notice_element = root.appendChild(doc.createElement('notice'))
224 notice_lines = self.notice.splitlines()
225 indented_notice = ('\n'.join(" "*4 + line for line in notice_lines))[4:]
226 notice_element.appendChild(doc.createTextNode(indented_notice))
227
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800228 d = self.default
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800229
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530230 for r in sorted(self.remotes):
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800231 self._RemoteToXml(self.remotes[r], doc, root)
232 if self.remotes:
233 root.appendChild(doc.createTextNode(''))
234
235 have_default = False
236 e = doc.createElement('default')
237 if d.remote:
238 have_default = True
239 e.setAttribute('remote', d.remote.name)
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700240 if d.revisionExpr:
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800241 have_default = True
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700242 e.setAttribute('revision', d.revisionExpr)
Simon Ruggier7e59de22015-07-24 12:50:06 +0200243 if d.destBranchExpr:
244 have_default = True
245 e.setAttribute('dest-branch', d.destBranchExpr)
Nasser Grainawida403412018-05-04 12:53:29 -0600246 if d.upstreamExpr:
247 have_default = True
248 e.setAttribute('upstream', d.upstreamExpr)
Shawn O. Pearce6392c872011-09-22 17:44:31 -0700249 if d.sync_j > 1:
250 have_default = True
251 e.setAttribute('sync-j', '%d' % d.sync_j)
Anatol Pomazau79770d22012-04-20 14:41:59 -0700252 if d.sync_c:
253 have_default = True
254 e.setAttribute('sync-c', 'true')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800255 if d.sync_s:
256 have_default = True
257 e.setAttribute('sync-s', 'true')
YOUNG HO CHAa32c92c2018-02-14 16:57:31 +0900258 if not d.sync_tags:
259 have_default = True
260 e.setAttribute('sync-tags', 'false')
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800261 if have_default:
262 root.appendChild(e)
263 root.appendChild(doc.createTextNode(''))
264
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700265 if self._manifest_server:
266 e = doc.createElement('manifest-server')
267 e.setAttribute('url', self._manifest_server)
268 root.appendChild(e)
269 root.appendChild(doc.createTextNode(''))
270
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800271 def output_projects(parent, parent_node, projects):
David James8d201162013-10-11 17:03:19 -0700272 for project_name in projects:
273 for project in self._projects[project_name]:
274 output_project(parent, parent_node, project)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800275
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800276 def output_project(parent, parent_node, p):
Colin Cross5acde752012-03-28 20:15:45 -0700277 if not p.MatchesGroups(groups):
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800278 return
279
280 name = p.name
281 relpath = p.relpath
282 if parent:
283 name = self._UnjoinName(parent.name, name)
284 relpath = self._UnjoinRelpath(parent.relpath, relpath)
Colin Cross5acde752012-03-28 20:15:45 -0700285
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800286 e = doc.createElement('project')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800287 parent_node.appendChild(e)
288 e.setAttribute('name', name)
289 if relpath != name:
290 e.setAttribute('path', relpath)
Conley Owensa17d7af2013-10-16 14:38:09 -0700291 remoteName = None
292 if d.remote:
Dan Willemsen96c2d652016-04-06 16:03:54 -0700293 remoteName = d.remote.name
294 if not d.remote or p.remote.orig_name != remoteName:
295 remoteName = p.remote.orig_name
Anthony King36ea2fb2014-05-06 11:54:01 +0100296 e.setAttribute('remote', remoteName)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800297 if peg_rev:
298 if self.IsMirror:
Brian Harring14a66742012-09-28 20:21:57 -0700299 value = p.bare_git.rev_parse(p.revisionExpr + '^0')
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800300 else:
Brian Harring14a66742012-09-28 20:21:57 -0700301 value = p.work_git.rev_parse(HEAD + '^0')
302 e.setAttribute('revision', value)
Conley Owens551dfec2015-07-10 14:54:54 -0700303 if peg_rev_upstream:
304 if p.upstream:
305 e.setAttribute('upstream', p.upstream)
306 elif value != p.revisionExpr:
307 # Only save the origin if the origin is not a sha1, and the default
308 # isn't our value
309 e.setAttribute('upstream', p.revisionExpr)
Anthony King36ea2fb2014-05-06 11:54:01 +0100310 else:
Dan Willemsen96c2d652016-04-06 16:03:54 -0700311 revision = self.remotes[p.remote.orig_name].revision or d.revisionExpr
Anthony King36ea2fb2014-05-06 11:54:01 +0100312 if not revision or revision != p.revisionExpr:
313 e.setAttribute('revision', p.revisionExpr)
Nasser Grainawida403412018-05-04 12:53:29 -0600314 if (p.upstream and (p.upstream != p.revisionExpr or
315 p.upstream != d.upstreamExpr)):
Mani Chandel7a91d512014-07-24 16:27:08 +0530316 e.setAttribute('upstream', p.upstream)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800317
Simon Ruggier7e59de22015-07-24 12:50:06 +0200318 if p.dest_branch and p.dest_branch != d.destBranchExpr:
319 e.setAttribute('dest-branch', p.dest_branch)
320
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800321 for c in p.copyfiles:
322 ce = doc.createElement('copyfile')
323 ce.setAttribute('src', c.src)
324 ce.setAttribute('dest', c.dest)
325 e.appendChild(ce)
326
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500327 for l in p.linkfiles:
328 le = doc.createElement('linkfile')
329 le.setAttribute('src', l.src)
330 le.setAttribute('dest', l.dest)
331 e.appendChild(le)
332
Conley Owensbb1b5f52012-08-13 13:11:18 -0700333 default_groups = ['all', 'name:%s' % p.name, 'path:%s' % p.relpath]
Dmitry Fink17f85ea2012-08-06 14:52:29 -0700334 egroups = [g for g in p.groups if g not in default_groups]
Conley Owens971de8e2012-04-16 10:36:08 -0700335 if egroups:
336 e.setAttribute('groups', ','.join(egroups))
Colin Cross5acde752012-03-28 20:15:45 -0700337
James W. Mills24c13082012-04-12 15:04:13 -0500338 for a in p.annotations:
339 if a.keep == "true":
340 ae = doc.createElement('annotation')
341 ae.setAttribute('name', a.name)
342 ae.setAttribute('value', a.value)
343 e.appendChild(ae)
344
Anatol Pomazau79770d22012-04-20 14:41:59 -0700345 if p.sync_c:
346 e.setAttribute('sync-c', 'true')
347
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800348 if p.sync_s:
349 e.setAttribute('sync-s', 'true')
350
YOUNG HO CHAa32c92c2018-02-14 16:57:31 +0900351 if not p.sync_tags:
352 e.setAttribute('sync-tags', 'false')
353
Dan Willemsen88409222015-08-17 15:29:10 -0700354 if p.clone_depth:
355 e.setAttribute('clone-depth', str(p.clone_depth))
356
Simran Basib9a1b732015-08-20 12:19:28 -0700357 self._output_manifest_project_extras(p, e)
358
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800359 if p.subprojects:
David James8d201162013-10-11 17:03:19 -0700360 subprojects = set(subp.name for subp in p.subprojects)
361 output_projects(p, e, list(sorted(subprojects)))
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800362
David James8d201162013-10-11 17:03:19 -0700363 projects = set(p.name for p in self._paths.values() if not p.parent)
364 output_projects(None, root, list(sorted(projects)))
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800365
Doug Anderson37282b42011-03-04 11:54:18 -0800366 if self._repo_hooks_project:
367 root.appendChild(doc.createTextNode(''))
368 e = doc.createElement('repo-hooks')
369 e.setAttribute('in-project', self._repo_hooks_project.name)
370 e.setAttribute('enabled-list',
371 ' '.join(self._repo_hooks_project.enabled_repo_hooks))
372 root.appendChild(e)
373
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800374 doc.writexml(fd, '', ' ', '\n', 'UTF-8')
375
Simran Basib9a1b732015-08-20 12:19:28 -0700376 def _output_manifest_project_extras(self, p, e):
377 """Manifests can modify e if they support extra project attributes."""
378 pass
379
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700380 @property
David James8d201162013-10-11 17:03:19 -0700381 def paths(self):
382 self._Load()
383 return self._paths
384
385 @property
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700386 def projects(self):
387 self._Load()
Anthony Kingd58bfe52014-05-05 23:30:49 +0100388 return list(self._paths.values())
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700389
390 @property
391 def remotes(self):
392 self._Load()
393 return self._remotes
394
395 @property
396 def default(self):
397 self._Load()
398 return self._default
399
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800400 @property
Doug Anderson37282b42011-03-04 11:54:18 -0800401 def repo_hooks_project(self):
402 self._Load()
403 return self._repo_hooks_project
404
405 @property
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700406 def notice(self):
407 self._Load()
408 return self._notice
409
410 @property
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700411 def manifest_server(self):
412 self._Load()
Shawn O. Pearce34fb20f2011-11-30 13:41:02 -0800413 return self._manifest_server
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700414
415 @property
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800416 def IsMirror(self):
417 return self.manifestProject.config.GetBoolean('repo.mirror')
418
Julien Campergue335f5ef2013-10-16 11:02:35 +0200419 @property
420 def IsArchive(self):
421 return self.manifestProject.config.GetBoolean('repo.archive')
422
Martin Kellye4e94d22017-03-21 16:05:12 -0700423 @property
424 def HasSubmodules(self):
425 return self.manifestProject.config.GetBoolean('repo.submodules')
426
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700427 def _Unload(self):
428 self._loaded = False
429 self._projects = {}
David James8d201162013-10-11 17:03:19 -0700430 self._paths = {}
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700431 self._remotes = {}
432 self._default = None
Doug Anderson37282b42011-03-04 11:54:18 -0800433 self._repo_hooks_project = None
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700434 self._notice = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700435 self.branch = None
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700436 self._manifest_server = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700437
438 def _Load(self):
439 if not self._loaded:
Shawn O. Pearce2450a292008-11-04 08:22:07 -0800440 m = self.manifestProject
441 b = m.GetBranch(m.CurrentBranch).merge
Shawn O. Pearce21c5c342009-06-25 16:47:30 -0700442 if b is not None and b.startswith(R_HEADS):
Shawn O. Pearce2450a292008-11-04 08:22:07 -0800443 b = b[len(R_HEADS):]
444 self.branch = b
445
Colin Cross23acdd32012-04-21 00:33:54 -0700446 nodes = []
Brian Harring475a47d2012-06-07 20:05:35 -0700447 nodes.append(self._ParseManifestXml(self.manifestFile,
448 self.manifestProject.worktree))
Shawn O. Pearce5cc66792008-10-23 16:19:27 -0700449
Basil Gelloc7453502018-05-25 20:23:52 +0300450 if self._load_local_manifests:
451 local = os.path.join(self.repodir, LOCAL_MANIFEST_NAME)
452 if os.path.exists(local):
453 if not self.localManifestWarning:
454 self.localManifestWarning = True
455 print('warning: %s is deprecated; put local manifests '
456 'in `%s` instead' % (LOCAL_MANIFEST_NAME,
457 os.path.join(self.repodir, LOCAL_MANIFESTS_DIR_NAME)),
458 file=sys.stderr)
459 nodes.append(self._ParseManifestXml(local, self.repodir))
Colin Cross23acdd32012-04-21 00:33:54 -0700460
Basil Gelloc7453502018-05-25 20:23:52 +0300461 local_dir = os.path.abspath(os.path.join(self.repodir,
462 LOCAL_MANIFESTS_DIR_NAME))
463 try:
464 for local_file in sorted(platform_utils.listdir(local_dir)):
465 if local_file.endswith('.xml'):
466 local = os.path.join(local_dir, local_file)
467 nodes.append(self._ParseManifestXml(local, self.repodir))
468 except OSError:
469 pass
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900470
Joe Onorato26e24752013-01-11 12:35:53 -0800471 try:
472 self._ParseManifest(nodes)
473 except ManifestParseError as e:
474 # There was a problem parsing, unload ourselves in case they catch
475 # this error and try again later, we will show the correct error
476 self._Unload()
477 raise e
Shawn O. Pearce5cc66792008-10-23 16:19:27 -0700478
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800479 if self.IsMirror:
480 self._AddMetaProjectMirror(self.repoProject)
481 self._AddMetaProjectMirror(self.manifestProject)
482
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700483 self._loaded = True
484
Brian Harring475a47d2012-06-07 20:05:35 -0700485 def _ParseManifestXml(self, path, include_root):
David Pursehousef7fc8a92012-11-13 04:00:28 +0900486 try:
487 root = xml.dom.minidom.parse(path)
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900488 except (OSError, xml.parsers.expat.ExpatError) as e:
David Pursehousef7fc8a92012-11-13 04:00:28 +0900489 raise ManifestParseError("error parsing manifest %s: %s" % (path, e))
490
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700491 if not root or not root.childNodes:
Brian Harring26448742011-04-28 05:04:41 -0700492 raise ManifestParseError("no root node in %s" % (path,))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700493
Jooncheol Park34acdd22012-08-27 02:25:59 +0900494 for manifest in root.childNodes:
495 if manifest.nodeName == 'manifest':
496 break
497 else:
Brian Harring26448742011-04-28 05:04:41 -0700498 raise ManifestParseError("no <manifest> in %s" % (path,))
499
Colin Cross23acdd32012-04-21 00:33:54 -0700500 nodes = []
David Pursehouse65b0ba52018-06-24 16:21:51 +0900501 for node in manifest.childNodes:
David Pursehousec1b86a22012-11-14 11:36:51 +0900502 if node.nodeName == 'include':
503 name = self._reqatt(node, 'name')
504 fp = os.path.join(include_root, name)
505 if not os.path.isfile(fp):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530506 raise ManifestParseError("include %s doesn't exist or isn't a file"
507 % (name,))
David Pursehousec1b86a22012-11-14 11:36:51 +0900508 try:
509 nodes.extend(self._ParseManifestXml(fp, include_root))
510 # should isolate this to the exact exception, but that's
511 # tricky. actual parsing implementation may vary.
512 except (KeyboardInterrupt, RuntimeError, SystemExit):
513 raise
514 except Exception as e:
515 raise ManifestParseError(
516 "failed parsing included manifest %s: %s", (name, e))
517 else:
518 nodes.append(node)
Colin Cross23acdd32012-04-21 00:33:54 -0700519 return nodes
Brian Harring26448742011-04-28 05:04:41 -0700520
Colin Cross23acdd32012-04-21 00:33:54 -0700521 def _ParseManifest(self, node_list):
522 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700523 if node.nodeName == 'remote':
524 remote = self._ParseRemote(node)
David Pursehouse717ece92012-11-13 08:49:16 +0900525 if remote:
526 if remote.name in self._remotes:
527 if remote != self._remotes[remote.name]:
528 raise ManifestParseError(
529 'remote %s already exists with different attributes' %
530 (remote.name))
531 else:
532 self._remotes[remote.name] = remote
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700533
Colin Cross23acdd32012-04-21 00:33:54 -0700534 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700535 if node.nodeName == 'default':
Julien Campergue74879922013-10-09 14:38:46 +0200536 new_default = self._ParseDefault(node)
537 if self._default is None:
538 self._default = new_default
539 elif new_default != self._default:
David Pursehouse37128b62013-10-15 10:48:40 +0900540 raise ManifestParseError('duplicate default in %s' %
541 (self.manifestFile))
Julien Campergue74879922013-10-09 14:38:46 +0200542
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700543 if self._default is None:
544 self._default = _Default()
545
Colin Cross23acdd32012-04-21 00:33:54 -0700546 for node in itertools.chain(*node_list):
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700547 if node.nodeName == 'notice':
548 if self._notice is not None:
Doug Anderson37282b42011-03-04 11:54:18 -0800549 raise ManifestParseError(
550 'duplicate notice in %s' %
551 (self.manifestFile))
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700552 self._notice = self._ParseNotice(node)
553
Colin Cross23acdd32012-04-21 00:33:54 -0700554 for node in itertools.chain(*node_list):
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700555 if node.nodeName == 'manifest-server':
556 url = self._reqatt(node, 'url')
557 if self._manifest_server is not None:
David Pursehousec1b86a22012-11-14 11:36:51 +0900558 raise ManifestParseError(
559 'duplicate manifest-server in %s' %
560 (self.manifestFile))
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700561 self._manifest_server = url
562
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800563 def recursively_add_projects(project):
David James8d201162013-10-11 17:03:19 -0700564 projects = self._projects.setdefault(project.name, [])
565 if project.relpath is None:
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800566 raise ManifestParseError(
David James8d201162013-10-11 17:03:19 -0700567 'missing path for %s in %s' %
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800568 (project.name, self.manifestFile))
David James8d201162013-10-11 17:03:19 -0700569 if project.relpath in self._paths:
570 raise ManifestParseError(
571 'duplicate path %s in %s' %
572 (project.relpath, self.manifestFile))
573 self._paths[project.relpath] = project
574 projects.append(project)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800575 for subproject in project.subprojects:
576 recursively_add_projects(subproject)
577
Colin Cross23acdd32012-04-21 00:33:54 -0700578 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700579 if node.nodeName == 'project':
580 project = self._ParseProject(node)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800581 recursively_add_projects(project)
Josh Triplett884a3872014-06-12 14:57:29 -0700582 if node.nodeName == 'extend-project':
583 name = self._reqatt(node, 'name')
584
585 if name not in self._projects:
586 raise ManifestParseError('extend-project element specifies non-existent '
587 'project: %s' % name)
588
589 path = node.getAttribute('path')
590 groups = node.getAttribute('groups')
591 if groups:
592 groups = self._ParseGroups(groups)
Luis Hector Chavez7d525852018-03-15 09:54:08 -0700593 revision = node.getAttribute('revision')
Josh Triplett884a3872014-06-12 14:57:29 -0700594
595 for p in self._projects[name]:
596 if path and p.relpath != path:
597 continue
598 if groups:
599 p.groups.extend(groups)
Luis Hector Chavez7d525852018-03-15 09:54:08 -0700600 if revision:
601 p.revisionExpr = revision
Doug Anderson37282b42011-03-04 11:54:18 -0800602 if node.nodeName == 'repo-hooks':
603 # Get the name of the project and the (space-separated) list of enabled.
604 repo_hooks_project = self._reqatt(node, 'in-project')
605 enabled_repo_hooks = self._reqatt(node, 'enabled-list').split()
606
607 # Only one project can be the hooks project
608 if self._repo_hooks_project is not None:
609 raise ManifestParseError(
610 'duplicate repo-hooks in %s' %
611 (self.manifestFile))
612
613 # Store a reference to the Project.
614 try:
David James8d201162013-10-11 17:03:19 -0700615 repo_hooks_projects = self._projects[repo_hooks_project]
Doug Anderson37282b42011-03-04 11:54:18 -0800616 except KeyError:
617 raise ManifestParseError(
618 'project %s not found for repo-hooks' %
619 (repo_hooks_project))
620
David James8d201162013-10-11 17:03:19 -0700621 if len(repo_hooks_projects) != 1:
622 raise ManifestParseError(
623 'internal error parsing repo-hooks in %s' %
624 (self.manifestFile))
625 self._repo_hooks_project = repo_hooks_projects[0]
626
Doug Anderson37282b42011-03-04 11:54:18 -0800627 # Store the enabled hooks in the Project object.
628 self._repo_hooks_project.enabled_repo_hooks = enabled_repo_hooks
Colin Cross23acdd32012-04-21 00:33:54 -0700629 if node.nodeName == 'remove-project':
630 name = self._reqatt(node, 'name')
David Jamesb8433df2014-01-30 10:11:17 -0800631
632 if name not in self._projects:
David Pursehousef9107482012-11-16 19:12:32 +0900633 raise ManifestParseError('remove-project element specifies non-existent '
634 'project: %s' % name)
Colin Cross23acdd32012-04-21 00:33:54 -0700635
David Jamesb8433df2014-01-30 10:11:17 -0800636 for p in self._projects[name]:
637 del self._paths[p.relpath]
638 del self._projects[name]
639
Colin Cross23acdd32012-04-21 00:33:54 -0700640 # If the manifest removes the hooks project, treat it as if it deleted
641 # the repo-hooks element too.
642 if self._repo_hooks_project and (self._repo_hooks_project.name == name):
643 self._repo_hooks_project = None
644
Doug Anderson37282b42011-03-04 11:54:18 -0800645
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800646 def _AddMetaProjectMirror(self, m):
647 name = None
648 m_url = m.GetRemote(m.remote.name).url
649 if m_url.endswith('/.git'):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530650 raise ManifestParseError('refusing to mirror %s' % m_url)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800651
652 if self._default and self._default.remote:
Conley Owensceea3682011-10-20 10:45:47 -0700653 url = self._default.remote.resolvedFetchUrl
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800654 if not url.endswith('/'):
655 url += '/'
656 if m_url.startswith(url):
657 remote = self._default.remote
658 name = m_url[len(url):]
659
660 if name is None:
661 s = m_url.rindex('/') + 1
Conley Owensdb728cd2011-09-26 16:34:01 -0700662 manifestUrl = self.manifestProject.config.GetString('remote.origin.url')
Shawn O. Pearcef35b2d92012-08-02 11:46:22 -0700663 remote = _XmlRemote('origin', fetch=m_url[:s], manifestUrl=manifestUrl)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800664 name = m_url[s:]
665
666 if name.endswith('.git'):
667 name = name[:-4]
668
669 if name not in self._projects:
670 m.PreSync()
671 gitdir = os.path.join(self.topdir, '%s.git' % name)
672 project = Project(manifest = self,
673 name = name,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -0700674 remote = remote.ToRemoteSpec(name),
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800675 gitdir = gitdir,
David James8d201162013-10-11 17:03:19 -0700676 objdir = gitdir,
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800677 worktree = None,
Kwanhong Leeccd218c2014-02-17 13:07:32 +0900678 relpath = name or None,
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700679 revisionExpr = m.revisionExpr,
680 revisionId = None)
David James8d201162013-10-11 17:03:19 -0700681 self._projects[project.name] = [project]
Kwanhong Leeccd218c2014-02-17 13:07:32 +0900682 self._paths[project.relpath] = project
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800683
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700684 def _ParseRemote(self, node):
685 """
686 reads a <remote> element from the manifest file
687 """
688 name = self._reqatt(node, 'name')
Yestin Sunb292b982012-07-02 07:32:50 -0700689 alias = node.getAttribute('alias')
690 if alias == '':
691 alias = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700692 fetch = self._reqatt(node, 'fetch')
Steve Raed6480452016-08-10 15:00:00 -0700693 pushUrl = node.getAttribute('pushurl')
694 if pushUrl == '':
695 pushUrl = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700696 review = node.getAttribute('review')
Shawn O. Pearceae6e0942008-11-06 10:25:35 -0800697 if review == '':
698 review = None
Anthony King36ea2fb2014-05-06 11:54:01 +0100699 revision = node.getAttribute('revision')
700 if revision == '':
701 revision = None
Conley Owensdb728cd2011-09-26 16:34:01 -0700702 manifestUrl = self.manifestProject.config.GetString('remote.origin.url')
Steve Raed6480452016-08-10 15:00:00 -0700703 return _XmlRemote(name, alias, fetch, pushUrl, manifestUrl, review, revision)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700704
705 def _ParseDefault(self, node):
706 """
707 reads a <default> element from the manifest file
708 """
709 d = _Default()
710 d.remote = self._get_remote(node)
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700711 d.revisionExpr = node.getAttribute('revision')
712 if d.revisionExpr == '':
713 d.revisionExpr = None
Anatol Pomazau79770d22012-04-20 14:41:59 -0700714
Bryan Jacobsf609f912013-05-06 13:36:24 -0400715 d.destBranchExpr = node.getAttribute('dest-branch') or None
Nasser Grainawida403412018-05-04 12:53:29 -0600716 d.upstreamExpr = node.getAttribute('upstream') or None
Bryan Jacobsf609f912013-05-06 13:36:24 -0400717
Shawn O. Pearce6392c872011-09-22 17:44:31 -0700718 sync_j = node.getAttribute('sync-j')
719 if sync_j == '' or sync_j is None:
720 d.sync_j = 1
721 else:
722 d.sync_j = int(sync_j)
Anatol Pomazau79770d22012-04-20 14:41:59 -0700723
724 sync_c = node.getAttribute('sync-c')
725 if not sync_c:
726 d.sync_c = False
727 else:
728 d.sync_c = sync_c.lower() in ("yes", "true", "1")
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800729
730 sync_s = node.getAttribute('sync-s')
731 if not sync_s:
732 d.sync_s = False
733 else:
734 d.sync_s = sync_s.lower() in ("yes", "true", "1")
YOUNG HO CHAa32c92c2018-02-14 16:57:31 +0900735
736 sync_tags = node.getAttribute('sync-tags')
737 if not sync_tags:
738 d.sync_tags = True
739 else:
740 d.sync_tags = sync_tags.lower() in ("yes", "true", "1")
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700741 return d
742
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700743 def _ParseNotice(self, node):
744 """
745 reads a <notice> element from the manifest file
746
747 The <notice> element is distinct from other tags in the XML in that the
748 data is conveyed between the start and end tag (it's not an empty-element
749 tag).
750
751 The white space (carriage returns, indentation) for the notice element is
752 relevant and is parsed in a way that is based on how python docstrings work.
753 In fact, the code is remarkably similar to here:
754 http://www.python.org/dev/peps/pep-0257/
755 """
756 # Get the data out of the node...
757 notice = node.childNodes[0].data
758
759 # Figure out minimum indentation, skipping the first line (the same line
760 # as the <notice> tag)...
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530761 minIndent = sys.maxsize
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700762 lines = notice.splitlines()
763 for line in lines[1:]:
764 lstrippedLine = line.lstrip()
765 if lstrippedLine:
766 indent = len(line) - len(lstrippedLine)
767 minIndent = min(indent, minIndent)
768
769 # Strip leading / trailing blank lines and also indentation.
770 cleanLines = [lines[0].strip()]
771 for line in lines[1:]:
772 cleanLines.append(line[minIndent:].rstrip())
773
774 # Clear completely blank lines from front and back...
775 while cleanLines and not cleanLines[0]:
776 del cleanLines[0]
777 while cleanLines and not cleanLines[-1]:
778 del cleanLines[-1]
779
780 return '\n'.join(cleanLines)
781
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800782 def _JoinName(self, parent_name, name):
783 return os.path.join(parent_name, name)
784
785 def _UnjoinName(self, parent_name, name):
786 return os.path.relpath(name, parent_name)
787
Simran Basib9a1b732015-08-20 12:19:28 -0700788 def _ParseProject(self, node, parent = None, **extra_proj_attrs):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700789 """
790 reads a <project> element from the manifest file
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700791 """
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700792 name = self._reqatt(node, 'name')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800793 if parent:
794 name = self._JoinName(parent.name, name)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700795
796 remote = self._get_remote(node)
797 if remote is None:
798 remote = self._default.remote
799 if remote is None:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530800 raise ManifestParseError("no remote for project %s within %s" %
801 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700802
Anthony King36ea2fb2014-05-06 11:54:01 +0100803 revisionExpr = node.getAttribute('revision') or remote.revision
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700804 if not revisionExpr:
805 revisionExpr = self._default.revisionExpr
806 if not revisionExpr:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530807 raise ManifestParseError("no revision for project %s within %s" %
808 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700809
810 path = node.getAttribute('path')
811 if not path:
812 path = name
813 if path.startswith('/'):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530814 raise ManifestParseError("project %s path cannot be absolute in %s" %
815 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700816
Mike Pontillod3153822012-02-28 11:53:24 -0800817 rebase = node.getAttribute('rebase')
818 if not rebase:
819 rebase = True
820 else:
821 rebase = rebase.lower() in ("yes", "true", "1")
822
Anatol Pomazau79770d22012-04-20 14:41:59 -0700823 sync_c = node.getAttribute('sync-c')
824 if not sync_c:
825 sync_c = False
826 else:
827 sync_c = sync_c.lower() in ("yes", "true", "1")
828
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800829 sync_s = node.getAttribute('sync-s')
830 if not sync_s:
831 sync_s = self._default.sync_s
832 else:
833 sync_s = sync_s.lower() in ("yes", "true", "1")
834
YOUNG HO CHAa32c92c2018-02-14 16:57:31 +0900835 sync_tags = node.getAttribute('sync-tags')
836 if not sync_tags:
837 sync_tags = self._default.sync_tags
838 else:
839 sync_tags = sync_tags.lower() in ("yes", "true", "1")
840
David Pursehouseede7f122012-11-27 22:25:30 +0900841 clone_depth = node.getAttribute('clone-depth')
842 if clone_depth:
843 try:
844 clone_depth = int(clone_depth)
845 if clone_depth <= 0:
846 raise ValueError()
847 except ValueError:
848 raise ManifestParseError('invalid clone-depth %s in %s' %
849 (clone_depth, self.manifestFile))
850
Bryan Jacobsf609f912013-05-06 13:36:24 -0400851 dest_branch = node.getAttribute('dest-branch') or self._default.destBranchExpr
852
Nasser Grainawida403412018-05-04 12:53:29 -0600853 upstream = node.getAttribute('upstream') or self._default.upstreamExpr
Brian Harring14a66742012-09-28 20:21:57 -0700854
Conley Owens971de8e2012-04-16 10:36:08 -0700855 groups = ''
856 if node.hasAttribute('groups'):
857 groups = node.getAttribute('groups')
Josh Triplett884a3872014-06-12 14:57:29 -0700858 groups = self._ParseGroups(groups)
Brian Harring7da13142012-06-15 02:24:20 -0700859
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800860 if parent is None:
David James8d201162013-10-11 17:03:19 -0700861 relpath, worktree, gitdir, objdir = self.GetProjectPaths(name, path)
Shawn O. Pearcecd81dd62012-10-26 12:18:00 -0700862 else:
David James8d201162013-10-11 17:03:19 -0700863 relpath, worktree, gitdir, objdir = \
864 self.GetSubprojectPaths(parent, name, path)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800865
866 default_groups = ['all', 'name:%s' % name, 'path:%s' % relpath]
867 groups.extend(set(default_groups).difference(groups))
Shawn O. Pearcecd81dd62012-10-26 12:18:00 -0700868
Scott Fandb83b1b2013-02-28 09:34:14 +0800869 if self.IsMirror and node.hasAttribute('force-path'):
870 if node.getAttribute('force-path').lower() in ("yes", "true", "1"):
871 gitdir = os.path.join(self.topdir, '%s.git' % path)
872
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700873 project = Project(manifest = self,
874 name = name,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -0700875 remote = remote.ToRemoteSpec(name),
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700876 gitdir = gitdir,
David James8d201162013-10-11 17:03:19 -0700877 objdir = objdir,
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700878 worktree = worktree,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800879 relpath = relpath,
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700880 revisionExpr = revisionExpr,
Mike Pontillod3153822012-02-28 11:53:24 -0800881 revisionId = None,
Colin Cross5acde752012-03-28 20:15:45 -0700882 rebase = rebase,
Anatol Pomazau79770d22012-04-20 14:41:59 -0700883 groups = groups,
Brian Harring14a66742012-09-28 20:21:57 -0700884 sync_c = sync_c,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800885 sync_s = sync_s,
YOUNG HO CHAa32c92c2018-02-14 16:57:31 +0900886 sync_tags = sync_tags,
David Pursehouseede7f122012-11-27 22:25:30 +0900887 clone_depth = clone_depth,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800888 upstream = upstream,
Bryan Jacobsf609f912013-05-06 13:36:24 -0400889 parent = parent,
Simran Basib9a1b732015-08-20 12:19:28 -0700890 dest_branch = dest_branch,
891 **extra_proj_attrs)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700892
893 for n in node.childNodes:
Shawn O. Pearce242b5262009-05-19 13:00:29 -0700894 if n.nodeName == 'copyfile':
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700895 self._ParseCopyFile(project, n)
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500896 if n.nodeName == 'linkfile':
897 self._ParseLinkFile(project, n)
James W. Mills24c13082012-04-12 15:04:13 -0500898 if n.nodeName == 'annotation':
899 self._ParseAnnotation(project, n)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800900 if n.nodeName == 'project':
901 project.subprojects.append(self._ParseProject(n, parent = project))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700902
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700903 return project
904
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800905 def GetProjectPaths(self, name, path):
906 relpath = path
907 if self.IsMirror:
908 worktree = None
909 gitdir = os.path.join(self.topdir, '%s.git' % name)
David James8d201162013-10-11 17:03:19 -0700910 objdir = gitdir
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800911 else:
912 worktree = os.path.join(self.topdir, path).replace('\\', '/')
913 gitdir = os.path.join(self.repodir, 'projects', '%s.git' % path)
David James8d201162013-10-11 17:03:19 -0700914 objdir = os.path.join(self.repodir, 'project-objects', '%s.git' % name)
915 return relpath, worktree, gitdir, objdir
916
917 def GetProjectsWithName(self, name):
918 return self._projects.get(name, [])
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800919
920 def GetSubprojectName(self, parent, submodule_path):
921 return os.path.join(parent.name, submodule_path)
922
923 def _JoinRelpath(self, parent_relpath, relpath):
924 return os.path.join(parent_relpath, relpath)
925
926 def _UnjoinRelpath(self, parent_relpath, relpath):
927 return os.path.relpath(relpath, parent_relpath)
928
David James8d201162013-10-11 17:03:19 -0700929 def GetSubprojectPaths(self, parent, name, path):
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800930 relpath = self._JoinRelpath(parent.relpath, path)
931 gitdir = os.path.join(parent.gitdir, 'subprojects', '%s.git' % path)
David James8d201162013-10-11 17:03:19 -0700932 objdir = os.path.join(parent.gitdir, 'subproject-objects', '%s.git' % name)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800933 if self.IsMirror:
934 worktree = None
935 else:
936 worktree = os.path.join(parent.worktree, path).replace('\\', '/')
David James8d201162013-10-11 17:03:19 -0700937 return relpath, worktree, gitdir, objdir
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800938
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700939 def _ParseCopyFile(self, project, node):
940 src = self._reqatt(node, 'src')
941 dest = self._reqatt(node, 'dest')
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800942 if not self.IsMirror:
943 # src is project relative;
944 # dest is relative to the top of the tree
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800945 project.AddCopyFile(src, dest, os.path.join(self.topdir, dest))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700946
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500947 def _ParseLinkFile(self, project, node):
948 src = self._reqatt(node, 'src')
949 dest = self._reqatt(node, 'dest')
950 if not self.IsMirror:
951 # src is project relative;
952 # dest is relative to the top of the tree
953 project.AddLinkFile(src, dest, os.path.join(self.topdir, dest))
954
James W. Mills24c13082012-04-12 15:04:13 -0500955 def _ParseAnnotation(self, project, node):
956 name = self._reqatt(node, 'name')
957 value = self._reqatt(node, 'value')
958 try:
959 keep = self._reqatt(node, 'keep').lower()
960 except ManifestParseError:
961 keep = "true"
962 if keep != "true" and keep != "false":
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530963 raise ManifestParseError('optional "keep" attribute must be '
964 '"true" or "false"')
James W. Mills24c13082012-04-12 15:04:13 -0500965 project.AddAnnotation(name, value, keep)
966
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700967 def _get_remote(self, node):
968 name = node.getAttribute('remote')
969 if not name:
970 return None
971
972 v = self._remotes.get(name)
973 if not v:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530974 raise ManifestParseError("remote %s not defined in %s" %
975 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700976 return v
977
978 def _reqatt(self, node, attname):
979 """
980 reads a required attribute from the node.
981 """
982 v = node.getAttribute(attname)
983 if not v:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530984 raise ManifestParseError("no %s in <%s> within %s" %
985 (attname, node.nodeName, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700986 return v
Julien Camperguedd654222014-01-09 16:21:37 +0100987
988 def projectsDiff(self, manifest):
989 """return the projects differences between two manifests.
990
991 The diff will be from self to given manifest.
992
993 """
994 fromProjects = self.paths
995 toProjects = manifest.paths
996
Anthony King7446c592014-05-06 09:19:39 +0100997 fromKeys = sorted(fromProjects.keys())
998 toKeys = sorted(toProjects.keys())
Julien Camperguedd654222014-01-09 16:21:37 +0100999
1000 diff = {'added': [], 'removed': [], 'changed': [], 'unreachable': []}
1001
1002 for proj in fromKeys:
1003 if not proj in toKeys:
1004 diff['removed'].append(fromProjects[proj])
1005 else:
1006 fromProj = fromProjects[proj]
1007 toProj = toProjects[proj]
1008 try:
1009 fromRevId = fromProj.GetCommitRevisionId()
1010 toRevId = toProj.GetCommitRevisionId()
1011 except ManifestInvalidRevisionError:
1012 diff['unreachable'].append((fromProj, toProj))
1013 else:
1014 if fromRevId != toRevId:
1015 diff['changed'].append((fromProj, toProj))
1016 toKeys.remove(proj)
1017
1018 for proj in toKeys:
1019 diff['added'].append(toProjects[proj])
1020
1021 return diff
Simran Basib9a1b732015-08-20 12:19:28 -07001022
1023
1024class GitcManifest(XmlManifest):
1025
1026 def __init__(self, repodir, gitc_client_name):
1027 """Initialize the GitcManifest object."""
1028 super(GitcManifest, self).__init__(repodir)
1029 self.isGitcClient = True
1030 self.gitc_client_name = gitc_client_name
Simran Basi8ce50412015-08-28 14:25:44 -07001031 self.gitc_client_dir = os.path.join(gitc_utils.get_gitc_manifest_dir(),
Simran Basib9a1b732015-08-20 12:19:28 -07001032 gitc_client_name)
1033 self.manifestFile = os.path.join(self.gitc_client_dir, '.manifest')
1034
1035 def _ParseProject(self, node, parent = None):
1036 """Override _ParseProject and add support for GITC specific attributes."""
1037 return super(GitcManifest, self)._ParseProject(
1038 node, parent=parent, old_revision=node.getAttribute('old-revision'))
1039
1040 def _output_manifest_project_extras(self, p, e):
1041 """Output GITC Specific Project attributes"""
1042 if p.old_revision:
Stefan Beller66851062016-06-17 16:40:08 -07001043 e.setAttribute('old-revision', str(p.old_revision))
Simran Basib9a1b732015-08-20 12:19:28 -07001044