blob: 9472a08fc88757d99f33a36eba858e7abb115746 [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
David Pursehousee15c65a2012-08-22 10:46:11 +090032from git_config import GitConfig
David Pursehousee00aa6b2012-09-11 14:33:51 +090033from git_refs import R_HEADS, HEAD
34from project import RemoteSpec, Project, MetaProject
Julien Camperguedd654222014-01-09 16:21:37 +010035from error import ManifestParseError, ManifestInvalidRevisionError
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070036
37MANIFEST_FILE_NAME = 'manifest.xml'
Shawn O. Pearce5cc66792008-10-23 16:19:27 -070038LOCAL_MANIFEST_NAME = 'local_manifest.xml'
David Pursehouse2d5a0df2012-11-13 02:50:36 +090039LOCAL_MANIFESTS_DIR_NAME = 'local_manifests'
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070040
Chirayu Desai217ea7d2013-03-01 19:14:38 +053041urllib.parse.uses_relative.extend(['ssh', 'git'])
42urllib.parse.uses_netloc.extend(['ssh', 'git'])
Conley Owensdb728cd2011-09-26 16:34:01 -070043
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070044class _Default(object):
45 """Project defaults within the manifest."""
46
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -070047 revisionExpr = None
Conley Owensb6a16e62013-09-25 15:06:09 -070048 destBranchExpr = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070049 remote = None
Shawn O. Pearce6392c872011-09-22 17:44:31 -070050 sync_j = 1
Anatol Pomazau79770d22012-04-20 14:41:59 -070051 sync_c = False
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +080052 sync_s = False
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070053
Julien Campergue74879922013-10-09 14:38:46 +020054 def __eq__(self, other):
55 return self.__dict__ == other.__dict__
56
57 def __ne__(self, other):
58 return self.__dict__ != other.__dict__
59
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070060class _XmlRemote(object):
61 def __init__(self,
62 name,
Yestin Sunb292b982012-07-02 07:32:50 -070063 alias=None,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070064 fetch=None,
Conley Owensdb728cd2011-09-26 16:34:01 -070065 manifestUrl=None,
Anthony King36ea2fb2014-05-06 11:54:01 +010066 review=None,
Jimmie Wester38e43872012-10-24 14:35:05 +020067 revision=None,
68 projecthookName=None,
69 projecthookRevision=None):
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070070 self.name = name
71 self.fetchUrl = fetch
Conley Owensdb728cd2011-09-26 16:34:01 -070072 self.manifestUrl = manifestUrl
Yestin Sunb292b982012-07-02 07:32:50 -070073 self.remoteAlias = alias
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070074 self.reviewUrl = review
Anthony King36ea2fb2014-05-06 11:54:01 +010075 self.revision = revision
Conley Owensceea3682011-10-20 10:45:47 -070076 self.resolvedFetchUrl = self._resolveFetchUrl()
Jimmie Wester38e43872012-10-24 14:35:05 +020077 self.projecthookName = projecthookName
78 self.projecthookRevision = projecthookRevision
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070079
David Pursehouse717ece92012-11-13 08:49:16 +090080 def __eq__(self, other):
81 return self.__dict__ == other.__dict__
82
83 def __ne__(self, other):
84 return self.__dict__ != other.__dict__
85
Conley Owensceea3682011-10-20 10:45:47 -070086 def _resolveFetchUrl(self):
87 url = self.fetchUrl.rstrip('/')
Conley Owensdb728cd2011-09-26 16:34:01 -070088 manifestUrl = self.manifestUrl.rstrip('/')
Conley Owens2d0f5082014-01-31 15:03:51 -080089 # urljoin will gets confused over quite a few things. The ones we care
90 # about here are:
91 # * no scheme in the base url, like <hostname:port>
92 # * persistent-https://
T.R. Fullhart48633072014-09-10 13:44:39 -070093 # * rpc://
Conley Owens2d0f5082014-01-31 15:03:51 -080094 # We handle this by replacing these with obscure protocols
95 # and then replacing them with the original when we are done.
96 # gopher -> <none>
97 # wais -> persistent-https
T.R. Fullhart48633072014-09-10 13:44:39 -070098 # nntp -> rpc
Conley Owensdb728cd2011-09-26 16:34:01 -070099 if manifestUrl.find(':') != manifestUrl.find('/') - 1:
David Pursehousec1b86a22012-11-14 11:36:51 +0900100 manifestUrl = 'gopher://' + manifestUrl
Conley Owens2d0f5082014-01-31 15:03:51 -0800101 manifestUrl = re.sub(r'^persistent-https://', 'wais://', manifestUrl)
T.R. Fullhart48633072014-09-10 13:44:39 -0700102 manifestUrl = re.sub(r'^rpc://', 'nntp://', manifestUrl)
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530103 url = urllib.parse.urljoin(manifestUrl, url)
Shawn Pearcea9f11b32013-01-02 15:40:48 -0800104 url = re.sub(r'^gopher://', '', url)
Conley Owens2d0f5082014-01-31 15:03:51 -0800105 url = re.sub(r'^wais://', 'persistent-https://', url)
T.R. Fullhart48633072014-09-10 13:44:39 -0700106 url = re.sub(r'^nntp://', 'rpc://', url)
Shawn Pearcea9f11b32013-01-02 15:40:48 -0800107 return url
Conley Owensceea3682011-10-20 10:45:47 -0700108
109 def ToRemoteSpec(self, projectName):
Conley Owens9d8f9142011-10-20 14:36:35 -0700110 url = self.resolvedFetchUrl.rstrip('/') + '/' + projectName
Yestin Sunb292b982012-07-02 07:32:50 -0700111 remoteName = self.name
Conley Owens1e7ab2a2013-10-08 17:26:57 -0700112 if self.remoteAlias:
David Pursehouse37128b62013-10-15 10:48:40 +0900113 remoteName = self.remoteAlias
Yestin Sunb292b982012-07-02 07:32:50 -0700114 return RemoteSpec(remoteName, url, self.reviewUrl)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700115
Shawn O. Pearcec8a300f2009-05-18 13:19:57 -0700116class XmlManifest(object):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700117 """manages the repo configuration file"""
118
119 def __init__(self, repodir):
120 self.repodir = os.path.abspath(repodir)
121 self.topdir = os.path.dirname(self.repodir)
122 self.manifestFile = os.path.join(self.repodir, MANIFEST_FILE_NAME)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700123 self.globalConfig = GitConfig.ForUser()
David Pursehouse4eb285c2013-02-14 16:28:44 +0900124 self.localManifestWarning = False
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700125
126 self.repoProject = MetaProject(self, 'repo',
127 gitdir = os.path.join(repodir, 'repo/.git'),
128 worktree = os.path.join(repodir, 'repo'))
129
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700130 self.manifestProject = MetaProject(self, 'manifests',
Shawn O. Pearcef5c25a62008-11-04 08:11:53 -0800131 gitdir = os.path.join(repodir, 'manifests.git'),
132 worktree = os.path.join(repodir, 'manifests'))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700133
134 self._Unload()
135
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700136 def Override(self, name):
137 """Use a different manifest, just for the current instantiation.
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700138 """
139 path = os.path.join(self.manifestProject.worktree, name)
140 if not os.path.isfile(path):
141 raise ManifestParseError('manifest %s not found' % name)
142
143 old = self.manifestFile
144 try:
145 self.manifestFile = path
146 self._Unload()
147 self._Load()
148 finally:
149 self.manifestFile = old
150
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700151 def Link(self, name):
152 """Update the repo metadata to use a different manifest.
153 """
154 self.Override(name)
155
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700156 try:
Sebastian Frias223bf962012-11-21 19:09:25 +0100157 if os.path.lexists(self.manifestFile):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700158 os.remove(self.manifestFile)
159 os.symlink('manifests/%s' % name, self.manifestFile)
Sebastian Frias223bf962012-11-21 19:09:25 +0100160 except OSError as e:
161 raise ManifestParseError('cannot link manifest %s: %s' % (name, str(e)))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700162
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800163 def _RemoteToXml(self, r, doc, root):
164 e = doc.createElement('remote')
165 root.appendChild(e)
166 e.setAttribute('name', r.name)
167 e.setAttribute('fetch', r.fetchUrl)
Conley Owens1e7ab2a2013-10-08 17:26:57 -0700168 if r.remoteAlias is not None:
169 e.setAttribute('alias', r.remoteAlias)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800170 if r.reviewUrl is not None:
171 e.setAttribute('review', r.reviewUrl)
Anthony King36ea2fb2014-05-06 11:54:01 +0100172 if r.revision is not None:
173 e.setAttribute('revision', r.revision)
Jimmie Wester38e43872012-10-24 14:35:05 +0200174 if r.projecthookName is not None:
175 ph = doc.createElement('projecthook')
176 ph.setAttribute('name', r.projecthookName)
177 ph.setAttribute('revision', r.projecthookRevision)
178 e.appendChild(ph)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800179
Josh Triplett884a3872014-06-12 14:57:29 -0700180 def _ParseGroups(self, groups):
181 return [x for x in re.split(r'[,\s]+', groups) if x]
182
Brian Harring14a66742012-09-28 20:21:57 -0700183 def Save(self, fd, peg_rev=False, peg_rev_upstream=True):
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800184 """Write the current manifest out to the given file descriptor.
185 """
Colin Cross5acde752012-03-28 20:15:45 -0700186 mp = self.manifestProject
187
188 groups = mp.config.GetString('manifest.groups')
Matt Gumbel0c635bb2012-12-21 10:14:53 -0800189 if groups:
Josh Triplett884a3872014-06-12 14:57:29 -0700190 groups = self._ParseGroups(groups)
Colin Cross5acde752012-03-28 20:15:45 -0700191
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800192 doc = xml.dom.minidom.Document()
193 root = doc.createElement('manifest')
194 doc.appendChild(root)
195
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700196 # Save out the notice. There's a little bit of work here to give it the
197 # right whitespace, which assumes that the notice is automatically indented
198 # by 4 by minidom.
199 if self.notice:
200 notice_element = root.appendChild(doc.createElement('notice'))
201 notice_lines = self.notice.splitlines()
202 indented_notice = ('\n'.join(" "*4 + line for line in notice_lines))[4:]
203 notice_element.appendChild(doc.createTextNode(indented_notice))
204
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800205 d = self.default
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800206
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530207 for r in sorted(self.remotes):
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800208 self._RemoteToXml(self.remotes[r], doc, root)
209 if self.remotes:
210 root.appendChild(doc.createTextNode(''))
211
212 have_default = False
213 e = doc.createElement('default')
214 if d.remote:
215 have_default = True
216 e.setAttribute('remote', d.remote.name)
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700217 if d.revisionExpr:
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800218 have_default = True
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700219 e.setAttribute('revision', d.revisionExpr)
Shawn O. Pearce6392c872011-09-22 17:44:31 -0700220 if d.sync_j > 1:
221 have_default = True
222 e.setAttribute('sync-j', '%d' % d.sync_j)
Anatol Pomazau79770d22012-04-20 14:41:59 -0700223 if d.sync_c:
224 have_default = True
225 e.setAttribute('sync-c', 'true')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800226 if d.sync_s:
227 have_default = True
228 e.setAttribute('sync-s', 'true')
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800229 if have_default:
230 root.appendChild(e)
231 root.appendChild(doc.createTextNode(''))
232
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700233 if self._manifest_server:
234 e = doc.createElement('manifest-server')
235 e.setAttribute('url', self._manifest_server)
236 root.appendChild(e)
237 root.appendChild(doc.createTextNode(''))
238
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800239 def output_projects(parent, parent_node, projects):
David James8d201162013-10-11 17:03:19 -0700240 for project_name in projects:
241 for project in self._projects[project_name]:
242 output_project(parent, parent_node, project)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800243
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800244 def output_project(parent, parent_node, p):
Colin Cross5acde752012-03-28 20:15:45 -0700245 if not p.MatchesGroups(groups):
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800246 return
247
248 name = p.name
249 relpath = p.relpath
250 if parent:
251 name = self._UnjoinName(parent.name, name)
252 relpath = self._UnjoinRelpath(parent.relpath, relpath)
Colin Cross5acde752012-03-28 20:15:45 -0700253
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800254 e = doc.createElement('project')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800255 parent_node.appendChild(e)
256 e.setAttribute('name', name)
257 if relpath != name:
258 e.setAttribute('path', relpath)
Conley Owensa17d7af2013-10-16 14:38:09 -0700259 remoteName = None
260 if d.remote:
Conley Owensce201a52013-10-16 14:42:42 -0700261 remoteName = d.remote.remoteAlias or d.remote.name
Conley Owens1e7ab2a2013-10-08 17:26:57 -0700262 if not d.remote or p.remote.name != remoteName:
Anthony King36ea2fb2014-05-06 11:54:01 +0100263 remoteName = p.remote.name
264 e.setAttribute('remote', remoteName)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800265 if peg_rev:
266 if self.IsMirror:
Brian Harring14a66742012-09-28 20:21:57 -0700267 value = p.bare_git.rev_parse(p.revisionExpr + '^0')
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800268 else:
Brian Harring14a66742012-09-28 20:21:57 -0700269 value = p.work_git.rev_parse(HEAD + '^0')
270 e.setAttribute('revision', value)
271 if peg_rev_upstream and value != p.revisionExpr:
272 # Only save the origin if the origin is not a sha1, and the default
273 # isn't our value, and the if the default doesn't already have that
274 # covered.
275 e.setAttribute('upstream', p.revisionExpr)
Anthony King36ea2fb2014-05-06 11:54:01 +0100276 else:
277 revision = self.remotes[remoteName].revision or d.revisionExpr
278 if not revision or revision != p.revisionExpr:
279 e.setAttribute('revision', p.revisionExpr)
Mani Chandel7a91d512014-07-24 16:27:08 +0530280 if p.upstream and p.upstream != p.revisionExpr:
281 e.setAttribute('upstream', p.upstream)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800282
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800283 for c in p.copyfiles:
284 ce = doc.createElement('copyfile')
285 ce.setAttribute('src', c.src)
286 ce.setAttribute('dest', c.dest)
287 e.appendChild(ce)
288
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500289 for l in p.linkfiles:
290 le = doc.createElement('linkfile')
291 le.setAttribute('src', l.src)
292 le.setAttribute('dest', l.dest)
293 e.appendChild(le)
294
Conley Owensbb1b5f52012-08-13 13:11:18 -0700295 default_groups = ['all', 'name:%s' % p.name, 'path:%s' % p.relpath]
Dmitry Fink17f85ea2012-08-06 14:52:29 -0700296 egroups = [g for g in p.groups if g not in default_groups]
Conley Owens971de8e2012-04-16 10:36:08 -0700297 if egroups:
298 e.setAttribute('groups', ','.join(egroups))
Colin Cross5acde752012-03-28 20:15:45 -0700299
James W. Mills24c13082012-04-12 15:04:13 -0500300 for a in p.annotations:
301 if a.keep == "true":
302 ae = doc.createElement('annotation')
303 ae.setAttribute('name', a.name)
304 ae.setAttribute('value', a.value)
305 e.appendChild(ae)
306
Anatol Pomazau79770d22012-04-20 14:41:59 -0700307 if p.sync_c:
308 e.setAttribute('sync-c', 'true')
309
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800310 if p.sync_s:
311 e.setAttribute('sync-s', 'true')
312
313 if p.subprojects:
David James8d201162013-10-11 17:03:19 -0700314 subprojects = set(subp.name for subp in p.subprojects)
315 output_projects(p, e, list(sorted(subprojects)))
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800316
David James8d201162013-10-11 17:03:19 -0700317 projects = set(p.name for p in self._paths.values() if not p.parent)
318 output_projects(None, root, list(sorted(projects)))
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800319
Doug Anderson37282b42011-03-04 11:54:18 -0800320 if self._repo_hooks_project:
321 root.appendChild(doc.createTextNode(''))
322 e = doc.createElement('repo-hooks')
323 e.setAttribute('in-project', self._repo_hooks_project.name)
324 e.setAttribute('enabled-list',
325 ' '.join(self._repo_hooks_project.enabled_repo_hooks))
326 root.appendChild(e)
327
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800328 doc.writexml(fd, '', ' ', '\n', 'UTF-8')
329
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700330 @property
David James8d201162013-10-11 17:03:19 -0700331 def paths(self):
332 self._Load()
333 return self._paths
334
335 @property
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700336 def projects(self):
337 self._Load()
Anthony Kingd58bfe52014-05-05 23:30:49 +0100338 return list(self._paths.values())
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700339
340 @property
341 def remotes(self):
342 self._Load()
343 return self._remotes
344
345 @property
346 def default(self):
347 self._Load()
348 return self._default
349
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800350 @property
Doug Anderson37282b42011-03-04 11:54:18 -0800351 def repo_hooks_project(self):
352 self._Load()
353 return self._repo_hooks_project
354
355 @property
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700356 def notice(self):
357 self._Load()
358 return self._notice
359
360 @property
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700361 def manifest_server(self):
362 self._Load()
Shawn O. Pearce34fb20f2011-11-30 13:41:02 -0800363 return self._manifest_server
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700364
365 @property
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800366 def IsMirror(self):
367 return self.manifestProject.config.GetBoolean('repo.mirror')
368
Julien Campergue335f5ef2013-10-16 11:02:35 +0200369 @property
370 def IsArchive(self):
371 return self.manifestProject.config.GetBoolean('repo.archive')
372
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700373 def _Unload(self):
374 self._loaded = False
375 self._projects = {}
David James8d201162013-10-11 17:03:19 -0700376 self._paths = {}
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700377 self._remotes = {}
378 self._default = None
Doug Anderson37282b42011-03-04 11:54:18 -0800379 self._repo_hooks_project = None
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700380 self._notice = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700381 self.branch = None
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700382 self._manifest_server = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700383
384 def _Load(self):
385 if not self._loaded:
Shawn O. Pearce2450a292008-11-04 08:22:07 -0800386 m = self.manifestProject
387 b = m.GetBranch(m.CurrentBranch).merge
Shawn O. Pearce21c5c342009-06-25 16:47:30 -0700388 if b is not None and b.startswith(R_HEADS):
Shawn O. Pearce2450a292008-11-04 08:22:07 -0800389 b = b[len(R_HEADS):]
390 self.branch = b
391
Colin Cross23acdd32012-04-21 00:33:54 -0700392 nodes = []
Brian Harring475a47d2012-06-07 20:05:35 -0700393 nodes.append(self._ParseManifestXml(self.manifestFile,
394 self.manifestProject.worktree))
Shawn O. Pearce5cc66792008-10-23 16:19:27 -0700395
396 local = os.path.join(self.repodir, LOCAL_MANIFEST_NAME)
397 if os.path.exists(local):
David Pursehouse4eb285c2013-02-14 16:28:44 +0900398 if not self.localManifestWarning:
399 self.localManifestWarning = True
400 print('warning: %s is deprecated; put local manifests in `%s` instead'
401 % (LOCAL_MANIFEST_NAME, os.path.join(self.repodir, LOCAL_MANIFESTS_DIR_NAME)),
402 file=sys.stderr)
Brian Harring475a47d2012-06-07 20:05:35 -0700403 nodes.append(self._ParseManifestXml(local, self.repodir))
Colin Cross23acdd32012-04-21 00:33:54 -0700404
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900405 local_dir = os.path.abspath(os.path.join(self.repodir, LOCAL_MANIFESTS_DIR_NAME))
406 try:
David Pursehouse52f1e5d2012-11-14 04:53:24 +0900407 for local_file in sorted(os.listdir(local_dir)):
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900408 if local_file.endswith('.xml'):
David Pursehouse5f434ed2012-11-22 13:48:10 +0900409 local = os.path.join(local_dir, local_file)
410 nodes.append(self._ParseManifestXml(local, self.repodir))
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900411 except OSError:
412 pass
413
Joe Onorato26e24752013-01-11 12:35:53 -0800414 try:
415 self._ParseManifest(nodes)
416 except ManifestParseError as e:
417 # There was a problem parsing, unload ourselves in case they catch
418 # this error and try again later, we will show the correct error
419 self._Unload()
420 raise e
Shawn O. Pearce5cc66792008-10-23 16:19:27 -0700421
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800422 if self.IsMirror:
423 self._AddMetaProjectMirror(self.repoProject)
424 self._AddMetaProjectMirror(self.manifestProject)
425
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700426 self._loaded = True
427
Brian Harring475a47d2012-06-07 20:05:35 -0700428 def _ParseManifestXml(self, path, include_root):
David Pursehousef7fc8a92012-11-13 04:00:28 +0900429 try:
430 root = xml.dom.minidom.parse(path)
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900431 except (OSError, xml.parsers.expat.ExpatError) as e:
David Pursehousef7fc8a92012-11-13 04:00:28 +0900432 raise ManifestParseError("error parsing manifest %s: %s" % (path, e))
433
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700434 if not root or not root.childNodes:
Brian Harring26448742011-04-28 05:04:41 -0700435 raise ManifestParseError("no root node in %s" % (path,))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700436
Jooncheol Park34acdd22012-08-27 02:25:59 +0900437 for manifest in root.childNodes:
438 if manifest.nodeName == 'manifest':
439 break
440 else:
Brian Harring26448742011-04-28 05:04:41 -0700441 raise ManifestParseError("no <manifest> in %s" % (path,))
442
Colin Cross23acdd32012-04-21 00:33:54 -0700443 nodes = []
David Pursehouse4f7bdea2012-10-22 12:50:15 +0900444 for node in manifest.childNodes: # pylint:disable=W0631
David Pursehouse5c6eeac2012-10-11 16:44:48 +0900445 # We only get here if manifest is initialised
David Pursehousec1b86a22012-11-14 11:36:51 +0900446 if node.nodeName == 'include':
447 name = self._reqatt(node, 'name')
448 fp = os.path.join(include_root, name)
449 if not os.path.isfile(fp):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530450 raise ManifestParseError("include %s doesn't exist or isn't a file"
451 % (name,))
David Pursehousec1b86a22012-11-14 11:36:51 +0900452 try:
453 nodes.extend(self._ParseManifestXml(fp, include_root))
454 # should isolate this to the exact exception, but that's
455 # tricky. actual parsing implementation may vary.
456 except (KeyboardInterrupt, RuntimeError, SystemExit):
457 raise
458 except Exception as e:
459 raise ManifestParseError(
460 "failed parsing included manifest %s: %s", (name, e))
461 else:
462 nodes.append(node)
Colin Cross23acdd32012-04-21 00:33:54 -0700463 return nodes
Brian Harring26448742011-04-28 05:04:41 -0700464
Colin Cross23acdd32012-04-21 00:33:54 -0700465 def _ParseManifest(self, node_list):
466 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700467 if node.nodeName == 'remote':
468 remote = self._ParseRemote(node)
David Pursehouse717ece92012-11-13 08:49:16 +0900469 if remote:
470 if remote.name in self._remotes:
471 if remote != self._remotes[remote.name]:
472 raise ManifestParseError(
473 'remote %s already exists with different attributes' %
474 (remote.name))
475 else:
476 self._remotes[remote.name] = remote
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700477
Colin Cross23acdd32012-04-21 00:33:54 -0700478 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700479 if node.nodeName == 'default':
Julien Campergue74879922013-10-09 14:38:46 +0200480 new_default = self._ParseDefault(node)
481 if self._default is None:
482 self._default = new_default
483 elif new_default != self._default:
David Pursehouse37128b62013-10-15 10:48:40 +0900484 raise ManifestParseError('duplicate default in %s' %
485 (self.manifestFile))
Julien Campergue74879922013-10-09 14:38:46 +0200486
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700487 if self._default is None:
488 self._default = _Default()
489
Colin Cross23acdd32012-04-21 00:33:54 -0700490 for node in itertools.chain(*node_list):
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700491 if node.nodeName == 'notice':
492 if self._notice is not None:
Doug Anderson37282b42011-03-04 11:54:18 -0800493 raise ManifestParseError(
494 'duplicate notice in %s' %
495 (self.manifestFile))
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700496 self._notice = self._ParseNotice(node)
497
Colin Cross23acdd32012-04-21 00:33:54 -0700498 for node in itertools.chain(*node_list):
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700499 if node.nodeName == 'manifest-server':
500 url = self._reqatt(node, 'url')
501 if self._manifest_server is not None:
David Pursehousec1b86a22012-11-14 11:36:51 +0900502 raise ManifestParseError(
503 'duplicate manifest-server in %s' %
504 (self.manifestFile))
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700505 self._manifest_server = url
506
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800507 def recursively_add_projects(project):
David James8d201162013-10-11 17:03:19 -0700508 projects = self._projects.setdefault(project.name, [])
509 if project.relpath is None:
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800510 raise ManifestParseError(
David James8d201162013-10-11 17:03:19 -0700511 'missing path for %s in %s' %
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800512 (project.name, self.manifestFile))
David James8d201162013-10-11 17:03:19 -0700513 if project.relpath in self._paths:
514 raise ManifestParseError(
515 'duplicate path %s in %s' %
516 (project.relpath, self.manifestFile))
517 self._paths[project.relpath] = project
518 projects.append(project)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800519 for subproject in project.subprojects:
520 recursively_add_projects(subproject)
521
Colin Cross23acdd32012-04-21 00:33:54 -0700522 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700523 if node.nodeName == 'project':
524 project = self._ParseProject(node)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800525 recursively_add_projects(project)
Josh Triplett884a3872014-06-12 14:57:29 -0700526 if node.nodeName == 'extend-project':
527 name = self._reqatt(node, 'name')
528
529 if name not in self._projects:
530 raise ManifestParseError('extend-project element specifies non-existent '
531 'project: %s' % name)
532
533 path = node.getAttribute('path')
534 groups = node.getAttribute('groups')
535 if groups:
536 groups = self._ParseGroups(groups)
537
538 for p in self._projects[name]:
539 if path and p.relpath != path:
540 continue
541 if groups:
542 p.groups.extend(groups)
Doug Anderson37282b42011-03-04 11:54:18 -0800543 if node.nodeName == 'repo-hooks':
544 # Get the name of the project and the (space-separated) list of enabled.
545 repo_hooks_project = self._reqatt(node, 'in-project')
546 enabled_repo_hooks = self._reqatt(node, 'enabled-list').split()
547
548 # Only one project can be the hooks project
549 if self._repo_hooks_project is not None:
550 raise ManifestParseError(
551 'duplicate repo-hooks in %s' %
552 (self.manifestFile))
553
554 # Store a reference to the Project.
555 try:
David James8d201162013-10-11 17:03:19 -0700556 repo_hooks_projects = self._projects[repo_hooks_project]
Doug Anderson37282b42011-03-04 11:54:18 -0800557 except KeyError:
558 raise ManifestParseError(
559 'project %s not found for repo-hooks' %
560 (repo_hooks_project))
561
David James8d201162013-10-11 17:03:19 -0700562 if len(repo_hooks_projects) != 1:
563 raise ManifestParseError(
564 'internal error parsing repo-hooks in %s' %
565 (self.manifestFile))
566 self._repo_hooks_project = repo_hooks_projects[0]
567
Doug Anderson37282b42011-03-04 11:54:18 -0800568 # Store the enabled hooks in the Project object.
569 self._repo_hooks_project.enabled_repo_hooks = enabled_repo_hooks
Colin Cross23acdd32012-04-21 00:33:54 -0700570 if node.nodeName == 'remove-project':
571 name = self._reqatt(node, 'name')
David Jamesb8433df2014-01-30 10:11:17 -0800572
573 if name not in self._projects:
David Pursehousef9107482012-11-16 19:12:32 +0900574 raise ManifestParseError('remove-project element specifies non-existent '
575 'project: %s' % name)
Colin Cross23acdd32012-04-21 00:33:54 -0700576
David Jamesb8433df2014-01-30 10:11:17 -0800577 for p in self._projects[name]:
578 del self._paths[p.relpath]
579 del self._projects[name]
580
Colin Cross23acdd32012-04-21 00:33:54 -0700581 # If the manifest removes the hooks project, treat it as if it deleted
582 # the repo-hooks element too.
583 if self._repo_hooks_project and (self._repo_hooks_project.name == name):
584 self._repo_hooks_project = None
585
Doug Anderson37282b42011-03-04 11:54:18 -0800586
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800587 def _AddMetaProjectMirror(self, m):
588 name = None
589 m_url = m.GetRemote(m.remote.name).url
590 if m_url.endswith('/.git'):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530591 raise ManifestParseError('refusing to mirror %s' % m_url)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800592
593 if self._default and self._default.remote:
Conley Owensceea3682011-10-20 10:45:47 -0700594 url = self._default.remote.resolvedFetchUrl
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800595 if not url.endswith('/'):
596 url += '/'
597 if m_url.startswith(url):
598 remote = self._default.remote
599 name = m_url[len(url):]
600
601 if name is None:
602 s = m_url.rindex('/') + 1
Conley Owensdb728cd2011-09-26 16:34:01 -0700603 manifestUrl = self.manifestProject.config.GetString('remote.origin.url')
Shawn O. Pearcef35b2d92012-08-02 11:46:22 -0700604 remote = _XmlRemote('origin', fetch=m_url[:s], manifestUrl=manifestUrl)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800605 name = m_url[s:]
606
607 if name.endswith('.git'):
608 name = name[:-4]
609
610 if name not in self._projects:
611 m.PreSync()
612 gitdir = os.path.join(self.topdir, '%s.git' % name)
613 project = Project(manifest = self,
614 name = name,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -0700615 remote = remote.ToRemoteSpec(name),
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800616 gitdir = gitdir,
David James8d201162013-10-11 17:03:19 -0700617 objdir = gitdir,
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800618 worktree = None,
Kwanhong Leeccd218c2014-02-17 13:07:32 +0900619 relpath = name or None,
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700620 revisionExpr = m.revisionExpr,
621 revisionId = None)
David James8d201162013-10-11 17:03:19 -0700622 self._projects[project.name] = [project]
Kwanhong Leeccd218c2014-02-17 13:07:32 +0900623 self._paths[project.relpath] = project
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800624
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700625 def _ParseRemote(self, node):
626 """
627 reads a <remote> element from the manifest file
628 """
629 name = self._reqatt(node, 'name')
Yestin Sunb292b982012-07-02 07:32:50 -0700630 alias = node.getAttribute('alias')
631 if alias == '':
632 alias = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700633 fetch = self._reqatt(node, 'fetch')
634 review = node.getAttribute('review')
Shawn O. Pearceae6e0942008-11-06 10:25:35 -0800635 if review == '':
636 review = None
Anthony King36ea2fb2014-05-06 11:54:01 +0100637 revision = node.getAttribute('revision')
638 if revision == '':
639 revision = None
Conley Owensdb728cd2011-09-26 16:34:01 -0700640 manifestUrl = self.manifestProject.config.GetString('remote.origin.url')
Jimmie Wester38e43872012-10-24 14:35:05 +0200641 projecthookName = None
642 projecthookRevision = None
643 for n in node.childNodes:
644 if n.nodeName == 'projecthook':
645 projecthookName, projecthookRevision = self._ParseProjectHooks(n)
646 break
647 return _XmlRemote(name, alias, fetch, manifestUrl, review, revision, projecthookName, projecthookRevision)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700648
649 def _ParseDefault(self, node):
650 """
651 reads a <default> element from the manifest file
652 """
653 d = _Default()
654 d.remote = self._get_remote(node)
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700655 d.revisionExpr = node.getAttribute('revision')
656 if d.revisionExpr == '':
657 d.revisionExpr = None
Anatol Pomazau79770d22012-04-20 14:41:59 -0700658
Bryan Jacobsf609f912013-05-06 13:36:24 -0400659 d.destBranchExpr = node.getAttribute('dest-branch') or None
660
Shawn O. Pearce6392c872011-09-22 17:44:31 -0700661 sync_j = node.getAttribute('sync-j')
662 if sync_j == '' or sync_j is None:
663 d.sync_j = 1
664 else:
665 d.sync_j = int(sync_j)
Anatol Pomazau79770d22012-04-20 14:41:59 -0700666
667 sync_c = node.getAttribute('sync-c')
668 if not sync_c:
669 d.sync_c = False
670 else:
671 d.sync_c = sync_c.lower() in ("yes", "true", "1")
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800672
673 sync_s = node.getAttribute('sync-s')
674 if not sync_s:
675 d.sync_s = False
676 else:
677 d.sync_s = sync_s.lower() in ("yes", "true", "1")
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700678 return d
679
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700680 def _ParseNotice(self, node):
681 """
682 reads a <notice> element from the manifest file
683
684 The <notice> element is distinct from other tags in the XML in that the
685 data is conveyed between the start and end tag (it's not an empty-element
686 tag).
687
688 The white space (carriage returns, indentation) for the notice element is
689 relevant and is parsed in a way that is based on how python docstrings work.
690 In fact, the code is remarkably similar to here:
691 http://www.python.org/dev/peps/pep-0257/
692 """
693 # Get the data out of the node...
694 notice = node.childNodes[0].data
695
696 # Figure out minimum indentation, skipping the first line (the same line
697 # as the <notice> tag)...
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530698 minIndent = sys.maxsize
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700699 lines = notice.splitlines()
700 for line in lines[1:]:
701 lstrippedLine = line.lstrip()
702 if lstrippedLine:
703 indent = len(line) - len(lstrippedLine)
704 minIndent = min(indent, minIndent)
705
706 # Strip leading / trailing blank lines and also indentation.
707 cleanLines = [lines[0].strip()]
708 for line in lines[1:]:
709 cleanLines.append(line[minIndent:].rstrip())
710
711 # Clear completely blank lines from front and back...
712 while cleanLines and not cleanLines[0]:
713 del cleanLines[0]
714 while cleanLines and not cleanLines[-1]:
715 del cleanLines[-1]
716
717 return '\n'.join(cleanLines)
718
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800719 def _JoinName(self, parent_name, name):
720 return os.path.join(parent_name, name)
721
722 def _UnjoinName(self, parent_name, name):
723 return os.path.relpath(name, parent_name)
724
725 def _ParseProject(self, node, parent = None):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700726 """
727 reads a <project> element from the manifest file
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700728 """
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700729 name = self._reqatt(node, 'name')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800730 if parent:
731 name = self._JoinName(parent.name, name)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700732
733 remote = self._get_remote(node)
734 if remote is None:
735 remote = self._default.remote
736 if remote is None:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530737 raise ManifestParseError("no remote for project %s within %s" %
738 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700739
Anthony King36ea2fb2014-05-06 11:54:01 +0100740 revisionExpr = node.getAttribute('revision') or remote.revision
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700741 if not revisionExpr:
742 revisionExpr = self._default.revisionExpr
743 if not revisionExpr:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530744 raise ManifestParseError("no revision for project %s within %s" %
745 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700746
747 path = node.getAttribute('path')
748 if not path:
749 path = name
750 if path.startswith('/'):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530751 raise ManifestParseError("project %s path cannot be absolute in %s" %
752 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700753
Mike Pontillod3153822012-02-28 11:53:24 -0800754 rebase = node.getAttribute('rebase')
755 if not rebase:
756 rebase = True
757 else:
758 rebase = rebase.lower() in ("yes", "true", "1")
759
Anatol Pomazau79770d22012-04-20 14:41:59 -0700760 sync_c = node.getAttribute('sync-c')
761 if not sync_c:
762 sync_c = False
763 else:
764 sync_c = sync_c.lower() in ("yes", "true", "1")
765
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800766 sync_s = node.getAttribute('sync-s')
767 if not sync_s:
768 sync_s = self._default.sync_s
769 else:
770 sync_s = sync_s.lower() in ("yes", "true", "1")
771
David Pursehouseede7f122012-11-27 22:25:30 +0900772 clone_depth = node.getAttribute('clone-depth')
773 if clone_depth:
774 try:
775 clone_depth = int(clone_depth)
776 if clone_depth <= 0:
777 raise ValueError()
778 except ValueError:
779 raise ManifestParseError('invalid clone-depth %s in %s' %
780 (clone_depth, self.manifestFile))
781
Bryan Jacobsf609f912013-05-06 13:36:24 -0400782 dest_branch = node.getAttribute('dest-branch') or self._default.destBranchExpr
783
Brian Harring14a66742012-09-28 20:21:57 -0700784 upstream = node.getAttribute('upstream')
785
Conley Owens971de8e2012-04-16 10:36:08 -0700786 groups = ''
787 if node.hasAttribute('groups'):
788 groups = node.getAttribute('groups')
Josh Triplett884a3872014-06-12 14:57:29 -0700789 groups = self._ParseGroups(groups)
Brian Harring7da13142012-06-15 02:24:20 -0700790
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800791 if parent is None:
David James8d201162013-10-11 17:03:19 -0700792 relpath, worktree, gitdir, objdir = self.GetProjectPaths(name, path)
Shawn O. Pearcecd81dd62012-10-26 12:18:00 -0700793 else:
David James8d201162013-10-11 17:03:19 -0700794 relpath, worktree, gitdir, objdir = \
795 self.GetSubprojectPaths(parent, name, path)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800796
797 default_groups = ['all', 'name:%s' % name, 'path:%s' % relpath]
798 groups.extend(set(default_groups).difference(groups))
Shawn O. Pearcecd81dd62012-10-26 12:18:00 -0700799
Scott Fandb83b1b2013-02-28 09:34:14 +0800800 if self.IsMirror and node.hasAttribute('force-path'):
801 if node.getAttribute('force-path').lower() in ("yes", "true", "1"):
802 gitdir = os.path.join(self.topdir, '%s.git' % path)
803
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700804 project = Project(manifest = self,
805 name = name,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -0700806 remote = remote.ToRemoteSpec(name),
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700807 gitdir = gitdir,
David James8d201162013-10-11 17:03:19 -0700808 objdir = objdir,
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700809 worktree = worktree,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800810 relpath = relpath,
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700811 revisionExpr = revisionExpr,
Mike Pontillod3153822012-02-28 11:53:24 -0800812 revisionId = None,
Colin Cross5acde752012-03-28 20:15:45 -0700813 rebase = rebase,
Anatol Pomazau79770d22012-04-20 14:41:59 -0700814 groups = groups,
Brian Harring14a66742012-09-28 20:21:57 -0700815 sync_c = sync_c,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800816 sync_s = sync_s,
David Pursehouseede7f122012-11-27 22:25:30 +0900817 clone_depth = clone_depth,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800818 upstream = upstream,
Bryan Jacobsf609f912013-05-06 13:36:24 -0400819 parent = parent,
820 dest_branch = dest_branch)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700821
822 for n in node.childNodes:
Shawn O. Pearce242b5262009-05-19 13:00:29 -0700823 if n.nodeName == 'copyfile':
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700824 self._ParseCopyFile(project, n)
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500825 if n.nodeName == 'linkfile':
826 self._ParseLinkFile(project, n)
James W. Mills24c13082012-04-12 15:04:13 -0500827 if n.nodeName == 'annotation':
828 self._ParseAnnotation(project, n)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800829 if n.nodeName == 'project':
830 project.subprojects.append(self._ParseProject(n, parent = project))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700831
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700832 return project
833
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800834 def GetProjectPaths(self, name, path):
835 relpath = path
836 if self.IsMirror:
837 worktree = None
838 gitdir = os.path.join(self.topdir, '%s.git' % name)
David James8d201162013-10-11 17:03:19 -0700839 objdir = gitdir
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800840 else:
841 worktree = os.path.join(self.topdir, path).replace('\\', '/')
842 gitdir = os.path.join(self.repodir, 'projects', '%s.git' % path)
David James8d201162013-10-11 17:03:19 -0700843 objdir = os.path.join(self.repodir, 'project-objects', '%s.git' % name)
844 return relpath, worktree, gitdir, objdir
845
846 def GetProjectsWithName(self, name):
847 return self._projects.get(name, [])
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800848
849 def GetSubprojectName(self, parent, submodule_path):
850 return os.path.join(parent.name, submodule_path)
851
852 def _JoinRelpath(self, parent_relpath, relpath):
853 return os.path.join(parent_relpath, relpath)
854
855 def _UnjoinRelpath(self, parent_relpath, relpath):
856 return os.path.relpath(relpath, parent_relpath)
857
David James8d201162013-10-11 17:03:19 -0700858 def GetSubprojectPaths(self, parent, name, path):
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800859 relpath = self._JoinRelpath(parent.relpath, path)
860 gitdir = os.path.join(parent.gitdir, 'subprojects', '%s.git' % path)
David James8d201162013-10-11 17:03:19 -0700861 objdir = os.path.join(parent.gitdir, 'subproject-objects', '%s.git' % name)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800862 if self.IsMirror:
863 worktree = None
864 else:
865 worktree = os.path.join(parent.worktree, path).replace('\\', '/')
David James8d201162013-10-11 17:03:19 -0700866 return relpath, worktree, gitdir, objdir
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800867
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700868 def _ParseCopyFile(self, project, node):
869 src = self._reqatt(node, 'src')
870 dest = self._reqatt(node, 'dest')
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800871 if not self.IsMirror:
872 # src is project relative;
873 # dest is relative to the top of the tree
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800874 project.AddCopyFile(src, dest, os.path.join(self.topdir, dest))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700875
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500876 def _ParseLinkFile(self, project, node):
877 src = self._reqatt(node, 'src')
878 dest = self._reqatt(node, 'dest')
879 if not self.IsMirror:
880 # src is project relative;
881 # dest is relative to the top of the tree
882 project.AddLinkFile(src, dest, os.path.join(self.topdir, dest))
883
James W. Mills24c13082012-04-12 15:04:13 -0500884 def _ParseAnnotation(self, project, node):
885 name = self._reqatt(node, 'name')
886 value = self._reqatt(node, 'value')
887 try:
888 keep = self._reqatt(node, 'keep').lower()
889 except ManifestParseError:
890 keep = "true"
891 if keep != "true" and keep != "false":
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530892 raise ManifestParseError('optional "keep" attribute must be '
893 '"true" or "false"')
James W. Mills24c13082012-04-12 15:04:13 -0500894 project.AddAnnotation(name, value, keep)
895
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700896 def _get_remote(self, node):
897 name = node.getAttribute('remote')
898 if not name:
899 return None
900
901 v = self._remotes.get(name)
902 if not v:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530903 raise ManifestParseError("remote %s not defined in %s" %
904 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700905 return v
906
907 def _reqatt(self, node, attname):
908 """
909 reads a required attribute from the node.
910 """
911 v = node.getAttribute(attname)
912 if not v:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530913 raise ManifestParseError("no %s in <%s> within %s" %
914 (attname, node.nodeName, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700915 return v
Julien Camperguedd654222014-01-09 16:21:37 +0100916
917 def projectsDiff(self, manifest):
918 """return the projects differences between two manifests.
919
920 The diff will be from self to given manifest.
921
922 """
923 fromProjects = self.paths
924 toProjects = manifest.paths
925
Anthony King7446c592014-05-06 09:19:39 +0100926 fromKeys = sorted(fromProjects.keys())
927 toKeys = sorted(toProjects.keys())
Julien Camperguedd654222014-01-09 16:21:37 +0100928
929 diff = {'added': [], 'removed': [], 'changed': [], 'unreachable': []}
930
931 for proj in fromKeys:
932 if not proj in toKeys:
933 diff['removed'].append(fromProjects[proj])
934 else:
935 fromProj = fromProjects[proj]
936 toProj = toProjects[proj]
937 try:
938 fromRevId = fromProj.GetCommitRevisionId()
939 toRevId = toProj.GetCommitRevisionId()
940 except ManifestInvalidRevisionError:
941 diff['unreachable'].append((fromProj, toProj))
942 else:
943 if fromRevId != toRevId:
944 diff['changed'].append((fromProj, toProj))
945 toKeys.remove(proj)
946
947 for proj in toKeys:
948 diff['added'].append(toProjects[proj])
949
950 return diff
Jimmie Wester38e43872012-10-24 14:35:05 +0200951
952 def _ParseProjectHooks(self, node):
953 name = self._reqatt(node, 'name')
954 revision = self._reqatt(node, 'revision')
955 return name, revision