blob: f37732cd9f48e6e77a65c64179af214c8cfdffc7 [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
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700138
139 self.repoProject = MetaProject(self, 'repo',
140 gitdir = os.path.join(repodir, 'repo/.git'),
141 worktree = os.path.join(repodir, 'repo'))
142
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700143 self.manifestProject = MetaProject(self, 'manifests',
Shawn O. Pearcef5c25a62008-11-04 08:11:53 -0800144 gitdir = os.path.join(repodir, 'manifests.git'),
145 worktree = os.path.join(repodir, 'manifests'))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700146
147 self._Unload()
148
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700149 def Override(self, name):
150 """Use a different manifest, just for the current instantiation.
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700151 """
152 path = os.path.join(self.manifestProject.worktree, name)
153 if not os.path.isfile(path):
154 raise ManifestParseError('manifest %s not found' % name)
155
156 old = self.manifestFile
157 try:
158 self.manifestFile = path
159 self._Unload()
160 self._Load()
161 finally:
162 self.manifestFile = old
163
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700164 def Link(self, name):
165 """Update the repo metadata to use a different manifest.
166 """
167 self.Override(name)
168
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700169 try:
Sebastian Frias223bf962012-11-21 19:09:25 +0100170 if os.path.lexists(self.manifestFile):
Renaud Paquay010fed72016-11-11 14:25:29 -0800171 platform_utils.remove(self.manifestFile)
Renaud Paquayd5cec5e2016-11-01 11:24:03 -0700172 platform_utils.symlink(os.path.join('manifests', name), self.manifestFile)
Sebastian Frias223bf962012-11-21 19:09:25 +0100173 except OSError as e:
174 raise ManifestParseError('cannot link manifest %s: %s' % (name, str(e)))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700175
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800176 def _RemoteToXml(self, r, doc, root):
177 e = doc.createElement('remote')
178 root.appendChild(e)
179 e.setAttribute('name', r.name)
180 e.setAttribute('fetch', r.fetchUrl)
Steve Raed6480452016-08-10 15:00:00 -0700181 if r.pushUrl is not None:
182 e.setAttribute('pushurl', r.pushUrl)
Conley Owens1e7ab2a2013-10-08 17:26:57 -0700183 if r.remoteAlias is not None:
184 e.setAttribute('alias', r.remoteAlias)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800185 if r.reviewUrl is not None:
186 e.setAttribute('review', r.reviewUrl)
Anthony King36ea2fb2014-05-06 11:54:01 +0100187 if r.revision is not None:
188 e.setAttribute('revision', r.revision)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800189
Josh Triplett884a3872014-06-12 14:57:29 -0700190 def _ParseGroups(self, groups):
191 return [x for x in re.split(r'[,\s]+', groups) if x]
192
Dan Willemsen5ea32d12015-09-08 13:27:20 -0700193 def Save(self, fd, peg_rev=False, peg_rev_upstream=True, groups=None):
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800194 """Write the current manifest out to the given file descriptor.
195 """
Colin Cross5acde752012-03-28 20:15:45 -0700196 mp = self.manifestProject
197
Dan Willemsen5ea32d12015-09-08 13:27:20 -0700198 if groups is None:
199 groups = mp.config.GetString('manifest.groups')
Matt Gumbel0c635bb2012-12-21 10:14:53 -0800200 if groups:
Josh Triplett884a3872014-06-12 14:57:29 -0700201 groups = self._ParseGroups(groups)
Colin Cross5acde752012-03-28 20:15:45 -0700202
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800203 doc = xml.dom.minidom.Document()
204 root = doc.createElement('manifest')
205 doc.appendChild(root)
206
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700207 # Save out the notice. There's a little bit of work here to give it the
208 # right whitespace, which assumes that the notice is automatically indented
209 # by 4 by minidom.
210 if self.notice:
211 notice_element = root.appendChild(doc.createElement('notice'))
212 notice_lines = self.notice.splitlines()
213 indented_notice = ('\n'.join(" "*4 + line for line in notice_lines))[4:]
214 notice_element.appendChild(doc.createTextNode(indented_notice))
215
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800216 d = self.default
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800217
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530218 for r in sorted(self.remotes):
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800219 self._RemoteToXml(self.remotes[r], doc, root)
220 if self.remotes:
221 root.appendChild(doc.createTextNode(''))
222
223 have_default = False
224 e = doc.createElement('default')
225 if d.remote:
226 have_default = True
227 e.setAttribute('remote', d.remote.name)
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700228 if d.revisionExpr:
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800229 have_default = True
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700230 e.setAttribute('revision', d.revisionExpr)
Simon Ruggier7e59de22015-07-24 12:50:06 +0200231 if d.destBranchExpr:
232 have_default = True
233 e.setAttribute('dest-branch', d.destBranchExpr)
Nasser Grainawida403412018-05-04 12:53:29 -0600234 if d.upstreamExpr:
235 have_default = True
236 e.setAttribute('upstream', d.upstreamExpr)
Shawn O. Pearce6392c872011-09-22 17:44:31 -0700237 if d.sync_j > 1:
238 have_default = True
239 e.setAttribute('sync-j', '%d' % d.sync_j)
Anatol Pomazau79770d22012-04-20 14:41:59 -0700240 if d.sync_c:
241 have_default = True
242 e.setAttribute('sync-c', 'true')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800243 if d.sync_s:
244 have_default = True
245 e.setAttribute('sync-s', 'true')
YOUNG HO CHAa32c92c2018-02-14 16:57:31 +0900246 if not d.sync_tags:
247 have_default = True
248 e.setAttribute('sync-tags', 'false')
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800249 if have_default:
250 root.appendChild(e)
251 root.appendChild(doc.createTextNode(''))
252
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700253 if self._manifest_server:
254 e = doc.createElement('manifest-server')
255 e.setAttribute('url', self._manifest_server)
256 root.appendChild(e)
257 root.appendChild(doc.createTextNode(''))
258
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800259 def output_projects(parent, parent_node, projects):
David James8d201162013-10-11 17:03:19 -0700260 for project_name in projects:
261 for project in self._projects[project_name]:
262 output_project(parent, parent_node, project)
Che-Liang Chiou69998b02012-01-11 11:28:42 +0800263
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800264 def output_project(parent, parent_node, p):
Shawn O. Pearcecd81dd62012-10-26 12:18:00 -0700265 if not p.MatchesGroups(groups):
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800266 return
267
268 name = p.name
269 relpath = p.relpath
270 if parent:
271 name = self._UnjoinName(parent.name, name)
272 relpath = self._UnjoinRelpath(parent.relpath, relpath)
Colin Cross5acde752012-03-28 20:15:45 -0700273
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800274 e = doc.createElement('project')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800275 parent_node.appendChild(e)
276 e.setAttribute('name', name)
277 if relpath != name:
278 e.setAttribute('path', relpath)
Conley Owensa17d7af2013-10-16 14:38:09 -0700279 remoteName = None
280 if d.remote:
Dan Willemsen96c2d652016-04-06 16:03:54 -0700281 remoteName = d.remote.name
282 if not d.remote or p.remote.orig_name != remoteName:
283 remoteName = p.remote.orig_name
Anthony King36ea2fb2014-05-06 11:54:01 +0100284 e.setAttribute('remote', remoteName)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800285 if peg_rev:
286 if self.IsMirror:
Brian Harring14a66742012-09-28 20:21:57 -0700287 value = p.bare_git.rev_parse(p.revisionExpr + '^0')
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800288 else:
Brian Harring14a66742012-09-28 20:21:57 -0700289 value = p.work_git.rev_parse(HEAD + '^0')
290 e.setAttribute('revision', value)
Conley Owens551dfec2015-07-10 14:54:54 -0700291 if peg_rev_upstream:
292 if p.upstream:
293 e.setAttribute('upstream', p.upstream)
294 elif value != p.revisionExpr:
295 # Only save the origin if the origin is not a sha1, and the default
296 # isn't our value
297 e.setAttribute('upstream', p.revisionExpr)
Anthony King36ea2fb2014-05-06 11:54:01 +0100298 else:
Dan Willemsen96c2d652016-04-06 16:03:54 -0700299 revision = self.remotes[p.remote.orig_name].revision or d.revisionExpr
Anthony King36ea2fb2014-05-06 11:54:01 +0100300 if not revision or revision != p.revisionExpr:
301 e.setAttribute('revision', p.revisionExpr)
Nasser Grainawida403412018-05-04 12:53:29 -0600302 if (p.upstream and (p.upstream != p.revisionExpr or
303 p.upstream != d.upstreamExpr)):
Mani Chandel7a91d512014-07-24 16:27:08 +0530304 e.setAttribute('upstream', p.upstream)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800305
Simon Ruggier7e59de22015-07-24 12:50:06 +0200306 if p.dest_branch and p.dest_branch != d.destBranchExpr:
307 e.setAttribute('dest-branch', p.dest_branch)
308
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800309 for c in p.copyfiles:
310 ce = doc.createElement('copyfile')
311 ce.setAttribute('src', c.src)
312 ce.setAttribute('dest', c.dest)
313 e.appendChild(ce)
314
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500315 for l in p.linkfiles:
316 le = doc.createElement('linkfile')
317 le.setAttribute('src', l.src)
318 le.setAttribute('dest', l.dest)
319 e.appendChild(le)
320
Conley Owensbb1b5f52012-08-13 13:11:18 -0700321 default_groups = ['all', 'name:%s' % p.name, 'path:%s' % p.relpath]
Dmitry Fink17f85ea2012-08-06 14:52:29 -0700322 egroups = [g for g in p.groups if g not in default_groups]
Conley Owens971de8e2012-04-16 10:36:08 -0700323 if egroups:
324 e.setAttribute('groups', ','.join(egroups))
Colin Cross5acde752012-03-28 20:15:45 -0700325
James W. Mills24c13082012-04-12 15:04:13 -0500326 for a in p.annotations:
327 if a.keep == "true":
328 ae = doc.createElement('annotation')
329 ae.setAttribute('name', a.name)
330 ae.setAttribute('value', a.value)
331 e.appendChild(ae)
332
Anatol Pomazau79770d22012-04-20 14:41:59 -0700333 if p.sync_c:
334 e.setAttribute('sync-c', 'true')
335
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800336 if p.sync_s:
337 e.setAttribute('sync-s', 'true')
338
YOUNG HO CHAa32c92c2018-02-14 16:57:31 +0900339 if not p.sync_tags:
340 e.setAttribute('sync-tags', 'false')
341
Dan Willemsen88409222015-08-17 15:29:10 -0700342 if p.clone_depth:
343 e.setAttribute('clone-depth', str(p.clone_depth))
344
Simran Basib9a1b732015-08-20 12:19:28 -0700345 self._output_manifest_project_extras(p, e)
346
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800347 if p.subprojects:
David James8d201162013-10-11 17:03:19 -0700348 subprojects = set(subp.name for subp in p.subprojects)
349 output_projects(p, e, list(sorted(subprojects)))
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800350
David James8d201162013-10-11 17:03:19 -0700351 projects = set(p.name for p in self._paths.values() if not p.parent)
352 output_projects(None, root, list(sorted(projects)))
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800353
Doug Anderson37282b42011-03-04 11:54:18 -0800354 if self._repo_hooks_project:
355 root.appendChild(doc.createTextNode(''))
356 e = doc.createElement('repo-hooks')
357 e.setAttribute('in-project', self._repo_hooks_project.name)
358 e.setAttribute('enabled-list',
359 ' '.join(self._repo_hooks_project.enabled_repo_hooks))
360 root.appendChild(e)
361
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800362 doc.writexml(fd, '', ' ', '\n', 'UTF-8')
363
Simran Basib9a1b732015-08-20 12:19:28 -0700364 def _output_manifest_project_extras(self, p, e):
365 """Manifests can modify e if they support extra project attributes."""
366 pass
367
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700368 @property
David James8d201162013-10-11 17:03:19 -0700369 def paths(self):
370 self._Load()
371 return self._paths
372
373 @property
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700374 def projects(self):
375 self._Load()
Anthony Kingd58bfe52014-05-05 23:30:49 +0100376 return list(self._paths.values())
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700377
378 @property
379 def remotes(self):
380 self._Load()
381 return self._remotes
382
383 @property
384 def default(self):
385 self._Load()
386 return self._default
387
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800388 @property
Doug Anderson37282b42011-03-04 11:54:18 -0800389 def repo_hooks_project(self):
390 self._Load()
391 return self._repo_hooks_project
392
393 @property
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700394 def notice(self):
395 self._Load()
396 return self._notice
397
398 @property
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700399 def manifest_server(self):
400 self._Load()
Shawn O. Pearce34fb20f2011-11-30 13:41:02 -0800401 return self._manifest_server
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700402
403 @property
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800404 def IsMirror(self):
405 return self.manifestProject.config.GetBoolean('repo.mirror')
406
Julien Campergue335f5ef2013-10-16 11:02:35 +0200407 @property
408 def IsArchive(self):
409 return self.manifestProject.config.GetBoolean('repo.archive')
410
Martin Kellye4e94d22017-03-21 16:05:12 -0700411 @property
412 def HasSubmodules(self):
413 return self.manifestProject.config.GetBoolean('repo.submodules')
414
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700415 def _Unload(self):
416 self._loaded = False
417 self._projects = {}
David James8d201162013-10-11 17:03:19 -0700418 self._paths = {}
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700419 self._remotes = {}
420 self._default = None
Doug Anderson37282b42011-03-04 11:54:18 -0800421 self._repo_hooks_project = None
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700422 self._notice = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700423 self.branch = None
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700424 self._manifest_server = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700425
426 def _Load(self):
427 if not self._loaded:
Shawn O. Pearce2450a292008-11-04 08:22:07 -0800428 m = self.manifestProject
429 b = m.GetBranch(m.CurrentBranch).merge
Shawn O. Pearce21c5c342009-06-25 16:47:30 -0700430 if b is not None and b.startswith(R_HEADS):
Shawn O. Pearce2450a292008-11-04 08:22:07 -0800431 b = b[len(R_HEADS):]
432 self.branch = b
433
Colin Cross23acdd32012-04-21 00:33:54 -0700434 nodes = []
Brian Harring475a47d2012-06-07 20:05:35 -0700435 nodes.append(self._ParseManifestXml(self.manifestFile,
436 self.manifestProject.worktree))
Shawn O. Pearce5cc66792008-10-23 16:19:27 -0700437
438 local = os.path.join(self.repodir, LOCAL_MANIFEST_NAME)
439 if os.path.exists(local):
David Pursehouse4eb285c2013-02-14 16:28:44 +0900440 if not self.localManifestWarning:
441 self.localManifestWarning = True
442 print('warning: %s is deprecated; put local manifests in `%s` instead'
443 % (LOCAL_MANIFEST_NAME, os.path.join(self.repodir, LOCAL_MANIFESTS_DIR_NAME)),
444 file=sys.stderr)
Brian Harring475a47d2012-06-07 20:05:35 -0700445 nodes.append(self._ParseManifestXml(local, self.repodir))
Colin Cross23acdd32012-04-21 00:33:54 -0700446
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900447 local_dir = os.path.abspath(os.path.join(self.repodir, LOCAL_MANIFESTS_DIR_NAME))
448 try:
Renaud Paquaybed8b622018-09-27 10:46:58 -0700449 for local_file in sorted(platform_utils.listdir(local_dir)):
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900450 if local_file.endswith('.xml'):
David Pursehouse5f434ed2012-11-22 13:48:10 +0900451 local = os.path.join(local_dir, local_file)
452 nodes.append(self._ParseManifestXml(local, self.repodir))
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900453 except OSError:
454 pass
455
Joe Onorato26e24752013-01-11 12:35:53 -0800456 try:
457 self._ParseManifest(nodes)
458 except ManifestParseError as e:
459 # There was a problem parsing, unload ourselves in case they catch
460 # this error and try again later, we will show the correct error
461 self._Unload()
462 raise e
Shawn O. Pearce5cc66792008-10-23 16:19:27 -0700463
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800464 if self.IsMirror:
465 self._AddMetaProjectMirror(self.repoProject)
466 self._AddMetaProjectMirror(self.manifestProject)
467
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700468 self._loaded = True
469
Brian Harring475a47d2012-06-07 20:05:35 -0700470 def _ParseManifestXml(self, path, include_root):
David Pursehousef7fc8a92012-11-13 04:00:28 +0900471 try:
472 root = xml.dom.minidom.parse(path)
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900473 except (OSError, xml.parsers.expat.ExpatError) as e:
David Pursehousef7fc8a92012-11-13 04:00:28 +0900474 raise ManifestParseError("error parsing manifest %s: %s" % (path, e))
475
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700476 if not root or not root.childNodes:
Brian Harring26448742011-04-28 05:04:41 -0700477 raise ManifestParseError("no root node in %s" % (path,))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700478
Jooncheol Park34acdd22012-08-27 02:25:59 +0900479 for manifest in root.childNodes:
480 if manifest.nodeName == 'manifest':
481 break
482 else:
Brian Harring26448742011-04-28 05:04:41 -0700483 raise ManifestParseError("no <manifest> in %s" % (path,))
484
Colin Cross23acdd32012-04-21 00:33:54 -0700485 nodes = []
David Pursehouse65b0ba52018-06-24 16:21:51 +0900486 for node in manifest.childNodes:
David Pursehousec1b86a22012-11-14 11:36:51 +0900487 if node.nodeName == 'include':
488 name = self._reqatt(node, 'name')
489 fp = os.path.join(include_root, name)
490 if not os.path.isfile(fp):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530491 raise ManifestParseError("include %s doesn't exist or isn't a file"
492 % (name,))
David Pursehousec1b86a22012-11-14 11:36:51 +0900493 try:
494 nodes.extend(self._ParseManifestXml(fp, include_root))
495 # should isolate this to the exact exception, but that's
496 # tricky. actual parsing implementation may vary.
497 except (KeyboardInterrupt, RuntimeError, SystemExit):
498 raise
499 except Exception as e:
500 raise ManifestParseError(
501 "failed parsing included manifest %s: %s", (name, e))
502 else:
503 nodes.append(node)
Colin Cross23acdd32012-04-21 00:33:54 -0700504 return nodes
Shawn O. Pearce03eaf072008-11-20 11:42:22 -0800505
Colin Cross23acdd32012-04-21 00:33:54 -0700506 def _ParseManifest(self, node_list):
507 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700508 if node.nodeName == 'remote':
509 remote = self._ParseRemote(node)
David Pursehouse717ece92012-11-13 08:49:16 +0900510 if remote:
511 if remote.name in self._remotes:
512 if remote != self._remotes[remote.name]:
513 raise ManifestParseError(
514 'remote %s already exists with different attributes' %
515 (remote.name))
516 else:
517 self._remotes[remote.name] = remote
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700518
Colin Cross23acdd32012-04-21 00:33:54 -0700519 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700520 if node.nodeName == 'default':
Julien Campergue74879922013-10-09 14:38:46 +0200521 new_default = self._ParseDefault(node)
522 if self._default is None:
523 self._default = new_default
524 elif new_default != self._default:
David Pursehouse37128b62013-10-15 10:48:40 +0900525 raise ManifestParseError('duplicate default in %s' %
526 (self.manifestFile))
Julien Campergue74879922013-10-09 14:38:46 +0200527
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700528 if self._default is None:
529 self._default = _Default()
530
Colin Cross23acdd32012-04-21 00:33:54 -0700531 for node in itertools.chain(*node_list):
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700532 if node.nodeName == 'notice':
533 if self._notice is not None:
Doug Anderson37282b42011-03-04 11:54:18 -0800534 raise ManifestParseError(
535 'duplicate notice in %s' %
536 (self.manifestFile))
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700537 self._notice = self._ParseNotice(node)
538
Colin Cross23acdd32012-04-21 00:33:54 -0700539 for node in itertools.chain(*node_list):
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700540 if node.nodeName == 'manifest-server':
541 url = self._reqatt(node, 'url')
542 if self._manifest_server is not None:
David Pursehousec1b86a22012-11-14 11:36:51 +0900543 raise ManifestParseError(
544 'duplicate manifest-server in %s' %
545 (self.manifestFile))
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700546 self._manifest_server = url
547
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800548 def recursively_add_projects(project):
David James8d201162013-10-11 17:03:19 -0700549 projects = self._projects.setdefault(project.name, [])
550 if project.relpath is None:
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800551 raise ManifestParseError(
David James8d201162013-10-11 17:03:19 -0700552 'missing path for %s in %s' %
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800553 (project.name, self.manifestFile))
David James8d201162013-10-11 17:03:19 -0700554 if project.relpath in self._paths:
555 raise ManifestParseError(
556 'duplicate path %s in %s' %
557 (project.relpath, self.manifestFile))
558 self._paths[project.relpath] = project
559 projects.append(project)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800560 for subproject in project.subprojects:
561 recursively_add_projects(subproject)
562
Colin Cross23acdd32012-04-21 00:33:54 -0700563 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700564 if node.nodeName == 'project':
565 project = self._ParseProject(node)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800566 recursively_add_projects(project)
Josh Triplett884a3872014-06-12 14:57:29 -0700567 if node.nodeName == 'extend-project':
568 name = self._reqatt(node, 'name')
569
570 if name not in self._projects:
571 raise ManifestParseError('extend-project element specifies non-existent '
572 'project: %s' % name)
573
574 path = node.getAttribute('path')
575 groups = node.getAttribute('groups')
576 if groups:
577 groups = self._ParseGroups(groups)
Luis Hector Chavez7d525852018-03-15 09:54:08 -0700578 revision = node.getAttribute('revision')
Josh Triplett884a3872014-06-12 14:57:29 -0700579
580 for p in self._projects[name]:
581 if path and p.relpath != path:
582 continue
583 if groups:
584 p.groups.extend(groups)
Luis Hector Chavez7d525852018-03-15 09:54:08 -0700585 if revision:
586 p.revisionExpr = revision
Doug Anderson37282b42011-03-04 11:54:18 -0800587 if node.nodeName == 'repo-hooks':
588 # Get the name of the project and the (space-separated) list of enabled.
589 repo_hooks_project = self._reqatt(node, 'in-project')
590 enabled_repo_hooks = self._reqatt(node, 'enabled-list').split()
591
592 # Only one project can be the hooks project
593 if self._repo_hooks_project is not None:
594 raise ManifestParseError(
595 'duplicate repo-hooks in %s' %
596 (self.manifestFile))
597
598 # Store a reference to the Project.
599 try:
David James8d201162013-10-11 17:03:19 -0700600 repo_hooks_projects = self._projects[repo_hooks_project]
Doug Anderson37282b42011-03-04 11:54:18 -0800601 except KeyError:
602 raise ManifestParseError(
603 'project %s not found for repo-hooks' %
604 (repo_hooks_project))
605
David James8d201162013-10-11 17:03:19 -0700606 if len(repo_hooks_projects) != 1:
607 raise ManifestParseError(
608 'internal error parsing repo-hooks in %s' %
609 (self.manifestFile))
610 self._repo_hooks_project = repo_hooks_projects[0]
611
Doug Anderson37282b42011-03-04 11:54:18 -0800612 # Store the enabled hooks in the Project object.
613 self._repo_hooks_project.enabled_repo_hooks = enabled_repo_hooks
Colin Cross23acdd32012-04-21 00:33:54 -0700614 if node.nodeName == 'remove-project':
615 name = self._reqatt(node, 'name')
David Jamesb8433df2014-01-30 10:11:17 -0800616
617 if name not in self._projects:
David Pursehousef9107482012-11-16 19:12:32 +0900618 raise ManifestParseError('remove-project element specifies non-existent '
619 'project: %s' % name)
Colin Cross23acdd32012-04-21 00:33:54 -0700620
David Jamesb8433df2014-01-30 10:11:17 -0800621 for p in self._projects[name]:
622 del self._paths[p.relpath]
623 del self._projects[name]
624
Colin Cross23acdd32012-04-21 00:33:54 -0700625 # If the manifest removes the hooks project, treat it as if it deleted
626 # the repo-hooks element too.
627 if self._repo_hooks_project and (self._repo_hooks_project.name == name):
628 self._repo_hooks_project = None
629
Doug Anderson37282b42011-03-04 11:54:18 -0800630
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800631 def _AddMetaProjectMirror(self, m):
632 name = None
633 m_url = m.GetRemote(m.remote.name).url
634 if m_url.endswith('/.git'):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530635 raise ManifestParseError('refusing to mirror %s' % m_url)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800636
637 if self._default and self._default.remote:
Conley Owensceea3682011-10-20 10:45:47 -0700638 url = self._default.remote.resolvedFetchUrl
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800639 if not url.endswith('/'):
640 url += '/'
641 if m_url.startswith(url):
642 remote = self._default.remote
643 name = m_url[len(url):]
644
645 if name is None:
646 s = m_url.rindex('/') + 1
Conley Owensdb728cd2011-09-26 16:34:01 -0700647 manifestUrl = self.manifestProject.config.GetString('remote.origin.url')
Shawn O. Pearcef35b2d92012-08-02 11:46:22 -0700648 remote = _XmlRemote('origin', fetch=m_url[:s], manifestUrl=manifestUrl)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800649 name = m_url[s:]
650
651 if name.endswith('.git'):
652 name = name[:-4]
653
654 if name not in self._projects:
655 m.PreSync()
656 gitdir = os.path.join(self.topdir, '%s.git' % name)
657 project = Project(manifest = self,
658 name = name,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -0700659 remote = remote.ToRemoteSpec(name),
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800660 gitdir = gitdir,
David James8d201162013-10-11 17:03:19 -0700661 objdir = gitdir,
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800662 worktree = None,
Kwanhong Leeccd218c2014-02-17 13:07:32 +0900663 relpath = name or None,
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700664 revisionExpr = m.revisionExpr,
665 revisionId = None)
David James8d201162013-10-11 17:03:19 -0700666 self._projects[project.name] = [project]
Kwanhong Leeccd218c2014-02-17 13:07:32 +0900667 self._paths[project.relpath] = project
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800668
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700669 def _ParseRemote(self, node):
670 """
671 reads a <remote> element from the manifest file
672 """
673 name = self._reqatt(node, 'name')
Yestin Sunb292b982012-07-02 07:32:50 -0700674 alias = node.getAttribute('alias')
675 if alias == '':
676 alias = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700677 fetch = self._reqatt(node, 'fetch')
Steve Raed6480452016-08-10 15:00:00 -0700678 pushUrl = node.getAttribute('pushurl')
679 if pushUrl == '':
680 pushUrl = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700681 review = node.getAttribute('review')
Shawn O. Pearceae6e0942008-11-06 10:25:35 -0800682 if review == '':
683 review = None
Anthony King36ea2fb2014-05-06 11:54:01 +0100684 revision = node.getAttribute('revision')
685 if revision == '':
686 revision = None
Conley Owensdb728cd2011-09-26 16:34:01 -0700687 manifestUrl = self.manifestProject.config.GetString('remote.origin.url')
Steve Raed6480452016-08-10 15:00:00 -0700688 return _XmlRemote(name, alias, fetch, pushUrl, manifestUrl, review, revision)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700689
690 def _ParseDefault(self, node):
691 """
692 reads a <default> element from the manifest file
693 """
694 d = _Default()
695 d.remote = self._get_remote(node)
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700696 d.revisionExpr = node.getAttribute('revision')
697 if d.revisionExpr == '':
698 d.revisionExpr = None
Anatol Pomazau79770d22012-04-20 14:41:59 -0700699
Bryan Jacobsf609f912013-05-06 13:36:24 -0400700 d.destBranchExpr = node.getAttribute('dest-branch') or None
Nasser Grainawida403412018-05-04 12:53:29 -0600701 d.upstreamExpr = node.getAttribute('upstream') or None
Bryan Jacobsf609f912013-05-06 13:36:24 -0400702
Shawn O. Pearce6392c872011-09-22 17:44:31 -0700703 sync_j = node.getAttribute('sync-j')
704 if sync_j == '' or sync_j is None:
705 d.sync_j = 1
706 else:
707 d.sync_j = int(sync_j)
Anatol Pomazau79770d22012-04-20 14:41:59 -0700708
709 sync_c = node.getAttribute('sync-c')
710 if not sync_c:
711 d.sync_c = False
712 else:
713 d.sync_c = sync_c.lower() in ("yes", "true", "1")
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800714
715 sync_s = node.getAttribute('sync-s')
716 if not sync_s:
717 d.sync_s = False
718 else:
719 d.sync_s = sync_s.lower() in ("yes", "true", "1")
YOUNG HO CHAa32c92c2018-02-14 16:57:31 +0900720
721 sync_tags = node.getAttribute('sync-tags')
722 if not sync_tags:
723 d.sync_tags = True
724 else:
725 d.sync_tags = sync_tags.lower() in ("yes", "true", "1")
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700726 return d
727
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700728 def _ParseNotice(self, node):
729 """
730 reads a <notice> element from the manifest file
731
732 The <notice> element is distinct from other tags in the XML in that the
733 data is conveyed between the start and end tag (it's not an empty-element
734 tag).
735
736 The white space (carriage returns, indentation) for the notice element is
737 relevant and is parsed in a way that is based on how python docstrings work.
738 In fact, the code is remarkably similar to here:
739 http://www.python.org/dev/peps/pep-0257/
740 """
741 # Get the data out of the node...
742 notice = node.childNodes[0].data
743
744 # Figure out minimum indentation, skipping the first line (the same line
745 # as the <notice> tag)...
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530746 minIndent = sys.maxsize
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700747 lines = notice.splitlines()
748 for line in lines[1:]:
749 lstrippedLine = line.lstrip()
750 if lstrippedLine:
751 indent = len(line) - len(lstrippedLine)
752 minIndent = min(indent, minIndent)
753
754 # Strip leading / trailing blank lines and also indentation.
755 cleanLines = [lines[0].strip()]
756 for line in lines[1:]:
757 cleanLines.append(line[minIndent:].rstrip())
758
759 # Clear completely blank lines from front and back...
760 while cleanLines and not cleanLines[0]:
761 del cleanLines[0]
762 while cleanLines and not cleanLines[-1]:
763 del cleanLines[-1]
764
765 return '\n'.join(cleanLines)
766
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800767 def _JoinName(self, parent_name, name):
768 return os.path.join(parent_name, name)
769
770 def _UnjoinName(self, parent_name, name):
771 return os.path.relpath(name, parent_name)
772
Simran Basib9a1b732015-08-20 12:19:28 -0700773 def _ParseProject(self, node, parent = None, **extra_proj_attrs):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700774 """
775 reads a <project> element from the manifest file
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700776 """
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700777 name = self._reqatt(node, 'name')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800778 if parent:
779 name = self._JoinName(parent.name, name)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700780
781 remote = self._get_remote(node)
782 if remote is None:
783 remote = self._default.remote
784 if remote is None:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530785 raise ManifestParseError("no remote for project %s within %s" %
786 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700787
Anthony King36ea2fb2014-05-06 11:54:01 +0100788 revisionExpr = node.getAttribute('revision') or remote.revision
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700789 if not revisionExpr:
790 revisionExpr = self._default.revisionExpr
791 if not revisionExpr:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530792 raise ManifestParseError("no revision for project %s within %s" %
793 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700794
795 path = node.getAttribute('path')
796 if not path:
797 path = name
798 if path.startswith('/'):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530799 raise ManifestParseError("project %s path cannot be absolute in %s" %
800 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700801
Mike Pontillod3153822012-02-28 11:53:24 -0800802 rebase = node.getAttribute('rebase')
803 if not rebase:
804 rebase = True
805 else:
806 rebase = rebase.lower() in ("yes", "true", "1")
807
Anatol Pomazau79770d22012-04-20 14:41:59 -0700808 sync_c = node.getAttribute('sync-c')
809 if not sync_c:
810 sync_c = False
811 else:
812 sync_c = sync_c.lower() in ("yes", "true", "1")
813
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800814 sync_s = node.getAttribute('sync-s')
815 if not sync_s:
816 sync_s = self._default.sync_s
817 else:
818 sync_s = sync_s.lower() in ("yes", "true", "1")
819
YOUNG HO CHAa32c92c2018-02-14 16:57:31 +0900820 sync_tags = node.getAttribute('sync-tags')
821 if not sync_tags:
822 sync_tags = self._default.sync_tags
823 else:
824 sync_tags = sync_tags.lower() in ("yes", "true", "1")
825
David Pursehouseede7f122012-11-27 22:25:30 +0900826 clone_depth = node.getAttribute('clone-depth')
827 if clone_depth:
828 try:
829 clone_depth = int(clone_depth)
830 if clone_depth <= 0:
831 raise ValueError()
832 except ValueError:
833 raise ManifestParseError('invalid clone-depth %s in %s' %
834 (clone_depth, self.manifestFile))
835
Bryan Jacobsf609f912013-05-06 13:36:24 -0400836 dest_branch = node.getAttribute('dest-branch') or self._default.destBranchExpr
837
Nasser Grainawida403412018-05-04 12:53:29 -0600838 upstream = node.getAttribute('upstream') or self._default.upstreamExpr
Brian Harring14a66742012-09-28 20:21:57 -0700839
Conley Owens971de8e2012-04-16 10:36:08 -0700840 groups = ''
841 if node.hasAttribute('groups'):
842 groups = node.getAttribute('groups')
Josh Triplett884a3872014-06-12 14:57:29 -0700843 groups = self._ParseGroups(groups)
Brian Harring7da13142012-06-15 02:24:20 -0700844
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800845 if parent is None:
David James8d201162013-10-11 17:03:19 -0700846 relpath, worktree, gitdir, objdir = self.GetProjectPaths(name, path)
Shawn O. Pearcecd81dd62012-10-26 12:18:00 -0700847 else:
David James8d201162013-10-11 17:03:19 -0700848 relpath, worktree, gitdir, objdir = \
849 self.GetSubprojectPaths(parent, name, path)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800850
851 default_groups = ['all', 'name:%s' % name, 'path:%s' % relpath]
852 groups.extend(set(default_groups).difference(groups))
Shawn O. Pearcecd81dd62012-10-26 12:18:00 -0700853
Scott Fandb83b1b2013-02-28 09:34:14 +0800854 if self.IsMirror and node.hasAttribute('force-path'):
855 if node.getAttribute('force-path').lower() in ("yes", "true", "1"):
856 gitdir = os.path.join(self.topdir, '%s.git' % path)
857
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700858 project = Project(manifest = self,
859 name = name,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -0700860 remote = remote.ToRemoteSpec(name),
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700861 gitdir = gitdir,
David James8d201162013-10-11 17:03:19 -0700862 objdir = objdir,
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700863 worktree = worktree,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800864 relpath = relpath,
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700865 revisionExpr = revisionExpr,
Mike Pontillod3153822012-02-28 11:53:24 -0800866 revisionId = None,
Colin Cross5acde752012-03-28 20:15:45 -0700867 rebase = rebase,
Anatol Pomazau79770d22012-04-20 14:41:59 -0700868 groups = groups,
Brian Harring14a66742012-09-28 20:21:57 -0700869 sync_c = sync_c,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800870 sync_s = sync_s,
YOUNG HO CHAa32c92c2018-02-14 16:57:31 +0900871 sync_tags = sync_tags,
David Pursehouseede7f122012-11-27 22:25:30 +0900872 clone_depth = clone_depth,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800873 upstream = upstream,
Bryan Jacobsf609f912013-05-06 13:36:24 -0400874 parent = parent,
Simran Basib9a1b732015-08-20 12:19:28 -0700875 dest_branch = dest_branch,
876 **extra_proj_attrs)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700877
878 for n in node.childNodes:
Shawn O. Pearce242b5262009-05-19 13:00:29 -0700879 if n.nodeName == 'copyfile':
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700880 self._ParseCopyFile(project, n)
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500881 if n.nodeName == 'linkfile':
882 self._ParseLinkFile(project, n)
James W. Mills24c13082012-04-12 15:04:13 -0500883 if n.nodeName == 'annotation':
884 self._ParseAnnotation(project, n)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800885 if n.nodeName == 'project':
886 project.subprojects.append(self._ParseProject(n, parent = project))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700887
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700888 return project
889
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800890 def GetProjectPaths(self, name, path):
891 relpath = path
892 if self.IsMirror:
893 worktree = None
894 gitdir = os.path.join(self.topdir, '%s.git' % name)
David James8d201162013-10-11 17:03:19 -0700895 objdir = gitdir
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800896 else:
897 worktree = os.path.join(self.topdir, path).replace('\\', '/')
898 gitdir = os.path.join(self.repodir, 'projects', '%s.git' % path)
David James8d201162013-10-11 17:03:19 -0700899 objdir = os.path.join(self.repodir, 'project-objects', '%s.git' % name)
900 return relpath, worktree, gitdir, objdir
901
902 def GetProjectsWithName(self, name):
903 return self._projects.get(name, [])
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800904
905 def GetSubprojectName(self, parent, submodule_path):
906 return os.path.join(parent.name, submodule_path)
907
908 def _JoinRelpath(self, parent_relpath, relpath):
909 return os.path.join(parent_relpath, relpath)
910
911 def _UnjoinRelpath(self, parent_relpath, relpath):
912 return os.path.relpath(relpath, parent_relpath)
913
David James8d201162013-10-11 17:03:19 -0700914 def GetSubprojectPaths(self, parent, name, path):
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800915 relpath = self._JoinRelpath(parent.relpath, path)
916 gitdir = os.path.join(parent.gitdir, 'subprojects', '%s.git' % path)
David James8d201162013-10-11 17:03:19 -0700917 objdir = os.path.join(parent.gitdir, 'subproject-objects', '%s.git' % name)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800918 if self.IsMirror:
919 worktree = None
920 else:
921 worktree = os.path.join(parent.worktree, path).replace('\\', '/')
David James8d201162013-10-11 17:03:19 -0700922 return relpath, worktree, gitdir, objdir
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800923
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700924 def _ParseCopyFile(self, project, node):
925 src = self._reqatt(node, 'src')
926 dest = self._reqatt(node, 'dest')
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800927 if not self.IsMirror:
928 # src is project relative;
929 # dest is relative to the top of the tree
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800930 project.AddCopyFile(src, dest, os.path.join(self.topdir, dest))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700931
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500932 def _ParseLinkFile(self, project, node):
933 src = self._reqatt(node, 'src')
934 dest = self._reqatt(node, 'dest')
935 if not self.IsMirror:
936 # src is project relative;
937 # dest is relative to the top of the tree
938 project.AddLinkFile(src, dest, os.path.join(self.topdir, dest))
939
James W. Mills24c13082012-04-12 15:04:13 -0500940 def _ParseAnnotation(self, project, node):
941 name = self._reqatt(node, 'name')
942 value = self._reqatt(node, 'value')
943 try:
944 keep = self._reqatt(node, 'keep').lower()
945 except ManifestParseError:
946 keep = "true"
947 if keep != "true" and keep != "false":
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530948 raise ManifestParseError('optional "keep" attribute must be '
949 '"true" or "false"')
James W. Mills24c13082012-04-12 15:04:13 -0500950 project.AddAnnotation(name, value, keep)
951
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700952 def _get_remote(self, node):
953 name = node.getAttribute('remote')
954 if not name:
955 return None
956
957 v = self._remotes.get(name)
958 if not v:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530959 raise ManifestParseError("remote %s not defined in %s" %
960 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700961 return v
962
963 def _reqatt(self, node, attname):
964 """
965 reads a required attribute from the node.
966 """
967 v = node.getAttribute(attname)
968 if not v:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530969 raise ManifestParseError("no %s in <%s> within %s" %
970 (attname, node.nodeName, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700971 return v
Julien Camperguedd654222014-01-09 16:21:37 +0100972
973 def projectsDiff(self, manifest):
974 """return the projects differences between two manifests.
975
976 The diff will be from self to given manifest.
977
978 """
979 fromProjects = self.paths
980 toProjects = manifest.paths
981
Anthony King7446c592014-05-06 09:19:39 +0100982 fromKeys = sorted(fromProjects.keys())
983 toKeys = sorted(toProjects.keys())
Julien Camperguedd654222014-01-09 16:21:37 +0100984
985 diff = {'added': [], 'removed': [], 'changed': [], 'unreachable': []}
986
987 for proj in fromKeys:
988 if not proj in toKeys:
989 diff['removed'].append(fromProjects[proj])
990 else:
991 fromProj = fromProjects[proj]
992 toProj = toProjects[proj]
993 try:
994 fromRevId = fromProj.GetCommitRevisionId()
995 toRevId = toProj.GetCommitRevisionId()
996 except ManifestInvalidRevisionError:
997 diff['unreachable'].append((fromProj, toProj))
998 else:
999 if fromRevId != toRevId:
1000 diff['changed'].append((fromProj, toProj))
1001 toKeys.remove(proj)
1002
1003 for proj in toKeys:
1004 diff['added'].append(toProjects[proj])
1005
1006 return diff
Simran Basib9a1b732015-08-20 12:19:28 -07001007
1008
1009class GitcManifest(XmlManifest):
1010
1011 def __init__(self, repodir, gitc_client_name):
1012 """Initialize the GitcManifest object."""
1013 super(GitcManifest, self).__init__(repodir)
1014 self.isGitcClient = True
1015 self.gitc_client_name = gitc_client_name
Simran Basi8ce50412015-08-28 14:25:44 -07001016 self.gitc_client_dir = os.path.join(gitc_utils.get_gitc_manifest_dir(),
Simran Basib9a1b732015-08-20 12:19:28 -07001017 gitc_client_name)
1018 self.manifestFile = os.path.join(self.gitc_client_dir, '.manifest')
1019
1020 def _ParseProject(self, node, parent = None):
1021 """Override _ParseProject and add support for GITC specific attributes."""
1022 return super(GitcManifest, self)._ParseProject(
1023 node, parent=parent, old_revision=node.getAttribute('old-revision'))
1024
1025 def _output_manifest_project_extras(self, p, e):
1026 """Output GITC Specific Project attributes"""
1027 if p.old_revision:
Stefan Beller66851062016-06-17 16:40:08 -07001028 e.setAttribute('old-revision', str(p.old_revision))
Simran Basib9a1b732015-08-20 12:19:28 -07001029