blob: 6dc01a47c564a1c2cdf7558bfd0792c4caca06f9 [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
Anthony Kingcb07ba72015-03-28 23:26:04 +000041# urljoin gets confused if the scheme is not known.
42urllib.parse.uses_relative.extend(['ssh', 'git', 'persistent-https', 'rpc'])
43urllib.parse.uses_netloc.extend(['ssh', 'git', 'persistent-https', 'rpc'])
Conley Owensdb728cd2011-09-26 16:34:01 -070044
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070045class _Default(object):
46 """Project defaults within the manifest."""
47
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -070048 revisionExpr = None
Conley Owensb6a16e62013-09-25 15:06:09 -070049 destBranchExpr = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070050 remote = None
Shawn O. Pearce6392c872011-09-22 17:44:31 -070051 sync_j = 1
Anatol Pomazau79770d22012-04-20 14:41:59 -070052 sync_c = False
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +080053 sync_s = False
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070054
Julien Campergue74879922013-10-09 14:38:46 +020055 def __eq__(self, other):
56 return self.__dict__ == other.__dict__
57
58 def __ne__(self, other):
59 return self.__dict__ != other.__dict__
60
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070061class _XmlRemote(object):
62 def __init__(self,
63 name,
Yestin Sunb292b982012-07-02 07:32:50 -070064 alias=None,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070065 fetch=None,
Conley Owensdb728cd2011-09-26 16:34:01 -070066 manifestUrl=None,
Anthony King36ea2fb2014-05-06 11:54:01 +010067 review=None,
Jonathan Nieder93719792015-03-17 11:29:58 -070068 revision=None):
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070069 self.name = name
70 self.fetchUrl = fetch
Conley Owensdb728cd2011-09-26 16:34:01 -070071 self.manifestUrl = manifestUrl
Yestin Sunb292b982012-07-02 07:32:50 -070072 self.remoteAlias = alias
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070073 self.reviewUrl = review
Anthony King36ea2fb2014-05-06 11:54:01 +010074 self.revision = revision
Conley Owensceea3682011-10-20 10:45:47 -070075 self.resolvedFetchUrl = self._resolveFetchUrl()
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070076
David Pursehouse717ece92012-11-13 08:49:16 +090077 def __eq__(self, other):
78 return self.__dict__ == other.__dict__
79
80 def __ne__(self, other):
81 return self.__dict__ != other.__dict__
82
Conley Owensceea3682011-10-20 10:45:47 -070083 def _resolveFetchUrl(self):
84 url = self.fetchUrl.rstrip('/')
Conley Owensdb728cd2011-09-26 16:34:01 -070085 manifestUrl = self.manifestUrl.rstrip('/')
Conley Owens2d0f5082014-01-31 15:03:51 -080086 # urljoin will gets confused over quite a few things. The ones we care
87 # about here are:
88 # * no scheme in the base url, like <hostname:port>
Anthony Kingcb07ba72015-03-28 23:26:04 +000089 # We handle no scheme by replacing it with an obscure protocol, gopher
90 # and then replacing it with the original when we are done.
91
Conley Owensdb728cd2011-09-26 16:34:01 -070092 if manifestUrl.find(':') != manifestUrl.find('/') - 1:
Conley Owens4ccad752015-04-29 10:45:37 -070093 url = urllib.parse.urljoin('gopher://' + manifestUrl, url)
94 url = re.sub(r'^gopher://', '', url)
Anthony Kingcb07ba72015-03-28 23:26:04 +000095 else:
96 url = urllib.parse.urljoin(manifestUrl, url)
Shawn Pearcea9f11b32013-01-02 15:40:48 -080097 return url
Conley Owensceea3682011-10-20 10:45:47 -070098
99 def ToRemoteSpec(self, projectName):
Conley Owens9d8f9142011-10-20 14:36:35 -0700100 url = self.resolvedFetchUrl.rstrip('/') + '/' + projectName
Yestin Sunb292b982012-07-02 07:32:50 -0700101 remoteName = self.name
Conley Owens1e7ab2a2013-10-08 17:26:57 -0700102 if self.remoteAlias:
David Pursehouse37128b62013-10-15 10:48:40 +0900103 remoteName = self.remoteAlias
Yestin Sunb292b982012-07-02 07:32:50 -0700104 return RemoteSpec(remoteName, url, self.reviewUrl)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700105
Shawn O. Pearcec8a300f2009-05-18 13:19:57 -0700106class XmlManifest(object):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700107 """manages the repo configuration file"""
108
109 def __init__(self, repodir):
110 self.repodir = os.path.abspath(repodir)
111 self.topdir = os.path.dirname(self.repodir)
112 self.manifestFile = os.path.join(self.repodir, MANIFEST_FILE_NAME)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700113 self.globalConfig = GitConfig.ForUser()
David Pursehouse4eb285c2013-02-14 16:28:44 +0900114 self.localManifestWarning = False
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700115
116 self.repoProject = MetaProject(self, 'repo',
117 gitdir = os.path.join(repodir, 'repo/.git'),
118 worktree = os.path.join(repodir, 'repo'))
119
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700120 self.manifestProject = MetaProject(self, 'manifests',
Shawn O. Pearcef5c25a62008-11-04 08:11:53 -0800121 gitdir = os.path.join(repodir, 'manifests.git'),
122 worktree = os.path.join(repodir, 'manifests'))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700123
124 self._Unload()
125
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700126 def Override(self, name):
127 """Use a different manifest, just for the current instantiation.
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700128 """
129 path = os.path.join(self.manifestProject.worktree, name)
130 if not os.path.isfile(path):
131 raise ManifestParseError('manifest %s not found' % name)
132
133 old = self.manifestFile
134 try:
135 self.manifestFile = path
136 self._Unload()
137 self._Load()
138 finally:
139 self.manifestFile = old
140
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700141 def Link(self, name):
142 """Update the repo metadata to use a different manifest.
143 """
144 self.Override(name)
145
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700146 try:
Sebastian Frias223bf962012-11-21 19:09:25 +0100147 if os.path.lexists(self.manifestFile):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700148 os.remove(self.manifestFile)
149 os.symlink('manifests/%s' % name, self.manifestFile)
Sebastian Frias223bf962012-11-21 19:09:25 +0100150 except OSError as e:
151 raise ManifestParseError('cannot link manifest %s: %s' % (name, str(e)))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700152
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800153 def _RemoteToXml(self, r, doc, root):
154 e = doc.createElement('remote')
155 root.appendChild(e)
156 e.setAttribute('name', r.name)
157 e.setAttribute('fetch', r.fetchUrl)
Conley Owens1e7ab2a2013-10-08 17:26:57 -0700158 if r.remoteAlias is not None:
159 e.setAttribute('alias', r.remoteAlias)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800160 if r.reviewUrl is not None:
161 e.setAttribute('review', r.reviewUrl)
Anthony King36ea2fb2014-05-06 11:54:01 +0100162 if r.revision is not None:
163 e.setAttribute('revision', r.revision)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800164
Josh Triplett884a3872014-06-12 14:57:29 -0700165 def _ParseGroups(self, groups):
166 return [x for x in re.split(r'[,\s]+', groups) if x]
167
Brian Harring14a66742012-09-28 20:21:57 -0700168 def Save(self, fd, peg_rev=False, peg_rev_upstream=True):
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800169 """Write the current manifest out to the given file descriptor.
170 """
Colin Cross5acde752012-03-28 20:15:45 -0700171 mp = self.manifestProject
172
173 groups = mp.config.GetString('manifest.groups')
Matt Gumbel0c635bb2012-12-21 10:14:53 -0800174 if groups:
Josh Triplett884a3872014-06-12 14:57:29 -0700175 groups = self._ParseGroups(groups)
Colin Cross5acde752012-03-28 20:15:45 -0700176
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800177 doc = xml.dom.minidom.Document()
178 root = doc.createElement('manifest')
179 doc.appendChild(root)
180
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700181 # Save out the notice. There's a little bit of work here to give it the
182 # right whitespace, which assumes that the notice is automatically indented
183 # by 4 by minidom.
184 if self.notice:
185 notice_element = root.appendChild(doc.createElement('notice'))
186 notice_lines = self.notice.splitlines()
187 indented_notice = ('\n'.join(" "*4 + line for line in notice_lines))[4:]
188 notice_element.appendChild(doc.createTextNode(indented_notice))
189
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800190 d = self.default
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800191
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530192 for r in sorted(self.remotes):
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800193 self._RemoteToXml(self.remotes[r], doc, root)
194 if self.remotes:
195 root.appendChild(doc.createTextNode(''))
196
197 have_default = False
198 e = doc.createElement('default')
199 if d.remote:
200 have_default = True
201 e.setAttribute('remote', d.remote.name)
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700202 if d.revisionExpr:
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800203 have_default = True
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700204 e.setAttribute('revision', d.revisionExpr)
Simon Ruggier7e59de22015-07-24 12:50:06 +0200205 if d.destBranchExpr:
206 have_default = True
207 e.setAttribute('dest-branch', d.destBranchExpr)
Shawn O. Pearce6392c872011-09-22 17:44:31 -0700208 if d.sync_j > 1:
209 have_default = True
210 e.setAttribute('sync-j', '%d' % d.sync_j)
Anatol Pomazau79770d22012-04-20 14:41:59 -0700211 if d.sync_c:
212 have_default = True
213 e.setAttribute('sync-c', 'true')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800214 if d.sync_s:
215 have_default = True
216 e.setAttribute('sync-s', 'true')
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800217 if have_default:
218 root.appendChild(e)
219 root.appendChild(doc.createTextNode(''))
220
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700221 if self._manifest_server:
222 e = doc.createElement('manifest-server')
223 e.setAttribute('url', self._manifest_server)
224 root.appendChild(e)
225 root.appendChild(doc.createTextNode(''))
226
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800227 def output_projects(parent, parent_node, projects):
David James8d201162013-10-11 17:03:19 -0700228 for project_name in projects:
229 for project in self._projects[project_name]:
230 output_project(parent, parent_node, project)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800231
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800232 def output_project(parent, parent_node, p):
Colin Cross5acde752012-03-28 20:15:45 -0700233 if not p.MatchesGroups(groups):
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800234 return
235
236 name = p.name
237 relpath = p.relpath
238 if parent:
239 name = self._UnjoinName(parent.name, name)
240 relpath = self._UnjoinRelpath(parent.relpath, relpath)
Colin Cross5acde752012-03-28 20:15:45 -0700241
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800242 e = doc.createElement('project')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800243 parent_node.appendChild(e)
244 e.setAttribute('name', name)
245 if relpath != name:
246 e.setAttribute('path', relpath)
Conley Owensa17d7af2013-10-16 14:38:09 -0700247 remoteName = None
248 if d.remote:
Conley Owensce201a52013-10-16 14:42:42 -0700249 remoteName = d.remote.remoteAlias or d.remote.name
Conley Owens1e7ab2a2013-10-08 17:26:57 -0700250 if not d.remote or p.remote.name != remoteName:
Anthony King36ea2fb2014-05-06 11:54:01 +0100251 remoteName = p.remote.name
252 e.setAttribute('remote', remoteName)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800253 if peg_rev:
254 if self.IsMirror:
Brian Harring14a66742012-09-28 20:21:57 -0700255 value = p.bare_git.rev_parse(p.revisionExpr + '^0')
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800256 else:
Brian Harring14a66742012-09-28 20:21:57 -0700257 value = p.work_git.rev_parse(HEAD + '^0')
258 e.setAttribute('revision', value)
Conley Owens551dfec2015-07-10 14:54:54 -0700259 if peg_rev_upstream:
260 if p.upstream:
261 e.setAttribute('upstream', p.upstream)
262 elif value != p.revisionExpr:
263 # Only save the origin if the origin is not a sha1, and the default
264 # isn't our value
265 e.setAttribute('upstream', p.revisionExpr)
Anthony King36ea2fb2014-05-06 11:54:01 +0100266 else:
267 revision = self.remotes[remoteName].revision or d.revisionExpr
268 if not revision or revision != p.revisionExpr:
269 e.setAttribute('revision', p.revisionExpr)
Mani Chandel7a91d512014-07-24 16:27:08 +0530270 if p.upstream and p.upstream != p.revisionExpr:
271 e.setAttribute('upstream', p.upstream)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800272
Simon Ruggier7e59de22015-07-24 12:50:06 +0200273 if p.dest_branch and p.dest_branch != d.destBranchExpr:
274 e.setAttribute('dest-branch', p.dest_branch)
275
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800276 for c in p.copyfiles:
277 ce = doc.createElement('copyfile')
278 ce.setAttribute('src', c.src)
279 ce.setAttribute('dest', c.dest)
280 e.appendChild(ce)
281
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500282 for l in p.linkfiles:
283 le = doc.createElement('linkfile')
284 le.setAttribute('src', l.src)
285 le.setAttribute('dest', l.dest)
286 e.appendChild(le)
287
Conley Owensbb1b5f52012-08-13 13:11:18 -0700288 default_groups = ['all', 'name:%s' % p.name, 'path:%s' % p.relpath]
Dmitry Fink17f85ea2012-08-06 14:52:29 -0700289 egroups = [g for g in p.groups if g not in default_groups]
Conley Owens971de8e2012-04-16 10:36:08 -0700290 if egroups:
291 e.setAttribute('groups', ','.join(egroups))
Colin Cross5acde752012-03-28 20:15:45 -0700292
James W. Mills24c13082012-04-12 15:04:13 -0500293 for a in p.annotations:
294 if a.keep == "true":
295 ae = doc.createElement('annotation')
296 ae.setAttribute('name', a.name)
297 ae.setAttribute('value', a.value)
298 e.appendChild(ae)
299
Anatol Pomazau79770d22012-04-20 14:41:59 -0700300 if p.sync_c:
301 e.setAttribute('sync-c', 'true')
302
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800303 if p.sync_s:
304 e.setAttribute('sync-s', 'true')
305
Dan Willemsen88409222015-08-17 15:29:10 -0700306 if p.clone_depth:
307 e.setAttribute('clone-depth', str(p.clone_depth))
308
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800309 if p.subprojects:
David James8d201162013-10-11 17:03:19 -0700310 subprojects = set(subp.name for subp in p.subprojects)
311 output_projects(p, e, list(sorted(subprojects)))
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800312
David James8d201162013-10-11 17:03:19 -0700313 projects = set(p.name for p in self._paths.values() if not p.parent)
314 output_projects(None, root, list(sorted(projects)))
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800315
Doug Anderson37282b42011-03-04 11:54:18 -0800316 if self._repo_hooks_project:
317 root.appendChild(doc.createTextNode(''))
318 e = doc.createElement('repo-hooks')
319 e.setAttribute('in-project', self._repo_hooks_project.name)
320 e.setAttribute('enabled-list',
321 ' '.join(self._repo_hooks_project.enabled_repo_hooks))
322 root.appendChild(e)
323
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800324 doc.writexml(fd, '', ' ', '\n', 'UTF-8')
325
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700326 @property
David James8d201162013-10-11 17:03:19 -0700327 def paths(self):
328 self._Load()
329 return self._paths
330
331 @property
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700332 def projects(self):
333 self._Load()
Anthony Kingd58bfe52014-05-05 23:30:49 +0100334 return list(self._paths.values())
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700335
336 @property
337 def remotes(self):
338 self._Load()
339 return self._remotes
340
341 @property
342 def default(self):
343 self._Load()
344 return self._default
345
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800346 @property
Doug Anderson37282b42011-03-04 11:54:18 -0800347 def repo_hooks_project(self):
348 self._Load()
349 return self._repo_hooks_project
350
351 @property
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700352 def notice(self):
353 self._Load()
354 return self._notice
355
356 @property
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700357 def manifest_server(self):
358 self._Load()
Shawn O. Pearce34fb20f2011-11-30 13:41:02 -0800359 return self._manifest_server
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700360
361 @property
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800362 def IsMirror(self):
363 return self.manifestProject.config.GetBoolean('repo.mirror')
364
Julien Campergue335f5ef2013-10-16 11:02:35 +0200365 @property
366 def IsArchive(self):
367 return self.manifestProject.config.GetBoolean('repo.archive')
368
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700369 def _Unload(self):
370 self._loaded = False
371 self._projects = {}
David James8d201162013-10-11 17:03:19 -0700372 self._paths = {}
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700373 self._remotes = {}
374 self._default = None
Doug Anderson37282b42011-03-04 11:54:18 -0800375 self._repo_hooks_project = None
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700376 self._notice = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700377 self.branch = None
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700378 self._manifest_server = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700379
380 def _Load(self):
381 if not self._loaded:
Shawn O. Pearce2450a292008-11-04 08:22:07 -0800382 m = self.manifestProject
383 b = m.GetBranch(m.CurrentBranch).merge
Shawn O. Pearce21c5c342009-06-25 16:47:30 -0700384 if b is not None and b.startswith(R_HEADS):
Shawn O. Pearce2450a292008-11-04 08:22:07 -0800385 b = b[len(R_HEADS):]
386 self.branch = b
387
Colin Cross23acdd32012-04-21 00:33:54 -0700388 nodes = []
Brian Harring475a47d2012-06-07 20:05:35 -0700389 nodes.append(self._ParseManifestXml(self.manifestFile,
390 self.manifestProject.worktree))
Shawn O. Pearce5cc66792008-10-23 16:19:27 -0700391
392 local = os.path.join(self.repodir, LOCAL_MANIFEST_NAME)
393 if os.path.exists(local):
David Pursehouse4eb285c2013-02-14 16:28:44 +0900394 if not self.localManifestWarning:
395 self.localManifestWarning = True
396 print('warning: %s is deprecated; put local manifests in `%s` instead'
397 % (LOCAL_MANIFEST_NAME, os.path.join(self.repodir, LOCAL_MANIFESTS_DIR_NAME)),
398 file=sys.stderr)
Brian Harring475a47d2012-06-07 20:05:35 -0700399 nodes.append(self._ParseManifestXml(local, self.repodir))
Colin Cross23acdd32012-04-21 00:33:54 -0700400
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900401 local_dir = os.path.abspath(os.path.join(self.repodir, LOCAL_MANIFESTS_DIR_NAME))
402 try:
David Pursehouse52f1e5d2012-11-14 04:53:24 +0900403 for local_file in sorted(os.listdir(local_dir)):
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900404 if local_file.endswith('.xml'):
David Pursehouse5f434ed2012-11-22 13:48:10 +0900405 local = os.path.join(local_dir, local_file)
406 nodes.append(self._ParseManifestXml(local, self.repodir))
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900407 except OSError:
408 pass
409
Joe Onorato26e24752013-01-11 12:35:53 -0800410 try:
411 self._ParseManifest(nodes)
412 except ManifestParseError as e:
413 # There was a problem parsing, unload ourselves in case they catch
414 # this error and try again later, we will show the correct error
415 self._Unload()
416 raise e
Shawn O. Pearce5cc66792008-10-23 16:19:27 -0700417
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800418 if self.IsMirror:
419 self._AddMetaProjectMirror(self.repoProject)
420 self._AddMetaProjectMirror(self.manifestProject)
421
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700422 self._loaded = True
423
Brian Harring475a47d2012-06-07 20:05:35 -0700424 def _ParseManifestXml(self, path, include_root):
David Pursehousef7fc8a92012-11-13 04:00:28 +0900425 try:
426 root = xml.dom.minidom.parse(path)
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900427 except (OSError, xml.parsers.expat.ExpatError) as e:
David Pursehousef7fc8a92012-11-13 04:00:28 +0900428 raise ManifestParseError("error parsing manifest %s: %s" % (path, e))
429
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700430 if not root or not root.childNodes:
Brian Harring26448742011-04-28 05:04:41 -0700431 raise ManifestParseError("no root node in %s" % (path,))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700432
Jooncheol Park34acdd22012-08-27 02:25:59 +0900433 for manifest in root.childNodes:
434 if manifest.nodeName == 'manifest':
435 break
436 else:
Brian Harring26448742011-04-28 05:04:41 -0700437 raise ManifestParseError("no <manifest> in %s" % (path,))
438
Colin Cross23acdd32012-04-21 00:33:54 -0700439 nodes = []
David Pursehouse4f7bdea2012-10-22 12:50:15 +0900440 for node in manifest.childNodes: # pylint:disable=W0631
David Pursehouse5c6eeac2012-10-11 16:44:48 +0900441 # We only get here if manifest is initialised
David Pursehousec1b86a22012-11-14 11:36:51 +0900442 if node.nodeName == 'include':
443 name = self._reqatt(node, 'name')
444 fp = os.path.join(include_root, name)
445 if not os.path.isfile(fp):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530446 raise ManifestParseError("include %s doesn't exist or isn't a file"
447 % (name,))
David Pursehousec1b86a22012-11-14 11:36:51 +0900448 try:
449 nodes.extend(self._ParseManifestXml(fp, include_root))
450 # should isolate this to the exact exception, but that's
451 # tricky. actual parsing implementation may vary.
452 except (KeyboardInterrupt, RuntimeError, SystemExit):
453 raise
454 except Exception as e:
455 raise ManifestParseError(
456 "failed parsing included manifest %s: %s", (name, e))
457 else:
458 nodes.append(node)
Colin Cross23acdd32012-04-21 00:33:54 -0700459 return nodes
Brian Harring26448742011-04-28 05:04:41 -0700460
Colin Cross23acdd32012-04-21 00:33:54 -0700461 def _ParseManifest(self, node_list):
462 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700463 if node.nodeName == 'remote':
464 remote = self._ParseRemote(node)
David Pursehouse717ece92012-11-13 08:49:16 +0900465 if remote:
466 if remote.name in self._remotes:
467 if remote != self._remotes[remote.name]:
468 raise ManifestParseError(
469 'remote %s already exists with different attributes' %
470 (remote.name))
471 else:
472 self._remotes[remote.name] = remote
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700473
Colin Cross23acdd32012-04-21 00:33:54 -0700474 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700475 if node.nodeName == 'default':
Julien Campergue74879922013-10-09 14:38:46 +0200476 new_default = self._ParseDefault(node)
477 if self._default is None:
478 self._default = new_default
479 elif new_default != self._default:
David Pursehouse37128b62013-10-15 10:48:40 +0900480 raise ManifestParseError('duplicate default in %s' %
481 (self.manifestFile))
Julien Campergue74879922013-10-09 14:38:46 +0200482
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700483 if self._default is None:
484 self._default = _Default()
485
Colin Cross23acdd32012-04-21 00:33:54 -0700486 for node in itertools.chain(*node_list):
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700487 if node.nodeName == 'notice':
488 if self._notice is not None:
Doug Anderson37282b42011-03-04 11:54:18 -0800489 raise ManifestParseError(
490 'duplicate notice in %s' %
491 (self.manifestFile))
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700492 self._notice = self._ParseNotice(node)
493
Colin Cross23acdd32012-04-21 00:33:54 -0700494 for node in itertools.chain(*node_list):
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700495 if node.nodeName == 'manifest-server':
496 url = self._reqatt(node, 'url')
497 if self._manifest_server is not None:
David Pursehousec1b86a22012-11-14 11:36:51 +0900498 raise ManifestParseError(
499 'duplicate manifest-server in %s' %
500 (self.manifestFile))
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700501 self._manifest_server = url
502
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800503 def recursively_add_projects(project):
David James8d201162013-10-11 17:03:19 -0700504 projects = self._projects.setdefault(project.name, [])
505 if project.relpath is None:
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800506 raise ManifestParseError(
David James8d201162013-10-11 17:03:19 -0700507 'missing path for %s in %s' %
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800508 (project.name, self.manifestFile))
David James8d201162013-10-11 17:03:19 -0700509 if project.relpath in self._paths:
510 raise ManifestParseError(
511 'duplicate path %s in %s' %
512 (project.relpath, self.manifestFile))
513 self._paths[project.relpath] = project
514 projects.append(project)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800515 for subproject in project.subprojects:
516 recursively_add_projects(subproject)
517
Colin Cross23acdd32012-04-21 00:33:54 -0700518 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700519 if node.nodeName == 'project':
520 project = self._ParseProject(node)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800521 recursively_add_projects(project)
Josh Triplett884a3872014-06-12 14:57:29 -0700522 if node.nodeName == 'extend-project':
523 name = self._reqatt(node, 'name')
524
525 if name not in self._projects:
526 raise ManifestParseError('extend-project element specifies non-existent '
527 'project: %s' % name)
528
529 path = node.getAttribute('path')
530 groups = node.getAttribute('groups')
531 if groups:
532 groups = self._ParseGroups(groups)
533
534 for p in self._projects[name]:
535 if path and p.relpath != path:
536 continue
537 if groups:
538 p.groups.extend(groups)
Doug Anderson37282b42011-03-04 11:54:18 -0800539 if node.nodeName == 'repo-hooks':
540 # Get the name of the project and the (space-separated) list of enabled.
541 repo_hooks_project = self._reqatt(node, 'in-project')
542 enabled_repo_hooks = self._reqatt(node, 'enabled-list').split()
543
544 # Only one project can be the hooks project
545 if self._repo_hooks_project is not None:
546 raise ManifestParseError(
547 'duplicate repo-hooks in %s' %
548 (self.manifestFile))
549
550 # Store a reference to the Project.
551 try:
David James8d201162013-10-11 17:03:19 -0700552 repo_hooks_projects = self._projects[repo_hooks_project]
Doug Anderson37282b42011-03-04 11:54:18 -0800553 except KeyError:
554 raise ManifestParseError(
555 'project %s not found for repo-hooks' %
556 (repo_hooks_project))
557
David James8d201162013-10-11 17:03:19 -0700558 if len(repo_hooks_projects) != 1:
559 raise ManifestParseError(
560 'internal error parsing repo-hooks in %s' %
561 (self.manifestFile))
562 self._repo_hooks_project = repo_hooks_projects[0]
563
Doug Anderson37282b42011-03-04 11:54:18 -0800564 # Store the enabled hooks in the Project object.
565 self._repo_hooks_project.enabled_repo_hooks = enabled_repo_hooks
Colin Cross23acdd32012-04-21 00:33:54 -0700566 if node.nodeName == 'remove-project':
567 name = self._reqatt(node, 'name')
David Jamesb8433df2014-01-30 10:11:17 -0800568
569 if name not in self._projects:
David Pursehousef9107482012-11-16 19:12:32 +0900570 raise ManifestParseError('remove-project element specifies non-existent '
571 'project: %s' % name)
Colin Cross23acdd32012-04-21 00:33:54 -0700572
David Jamesb8433df2014-01-30 10:11:17 -0800573 for p in self._projects[name]:
574 del self._paths[p.relpath]
575 del self._projects[name]
576
Colin Cross23acdd32012-04-21 00:33:54 -0700577 # If the manifest removes the hooks project, treat it as if it deleted
578 # the repo-hooks element too.
579 if self._repo_hooks_project and (self._repo_hooks_project.name == name):
580 self._repo_hooks_project = None
581
Doug Anderson37282b42011-03-04 11:54:18 -0800582
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800583 def _AddMetaProjectMirror(self, m):
584 name = None
585 m_url = m.GetRemote(m.remote.name).url
586 if m_url.endswith('/.git'):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530587 raise ManifestParseError('refusing to mirror %s' % m_url)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800588
589 if self._default and self._default.remote:
Conley Owensceea3682011-10-20 10:45:47 -0700590 url = self._default.remote.resolvedFetchUrl
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800591 if not url.endswith('/'):
592 url += '/'
593 if m_url.startswith(url):
594 remote = self._default.remote
595 name = m_url[len(url):]
596
597 if name is None:
598 s = m_url.rindex('/') + 1
Conley Owensdb728cd2011-09-26 16:34:01 -0700599 manifestUrl = self.manifestProject.config.GetString('remote.origin.url')
Shawn O. Pearcef35b2d92012-08-02 11:46:22 -0700600 remote = _XmlRemote('origin', fetch=m_url[:s], manifestUrl=manifestUrl)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800601 name = m_url[s:]
602
603 if name.endswith('.git'):
604 name = name[:-4]
605
606 if name not in self._projects:
607 m.PreSync()
608 gitdir = os.path.join(self.topdir, '%s.git' % name)
609 project = Project(manifest = self,
610 name = name,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -0700611 remote = remote.ToRemoteSpec(name),
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800612 gitdir = gitdir,
David James8d201162013-10-11 17:03:19 -0700613 objdir = gitdir,
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800614 worktree = None,
Kwanhong Leeccd218c2014-02-17 13:07:32 +0900615 relpath = name or None,
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700616 revisionExpr = m.revisionExpr,
617 revisionId = None)
David James8d201162013-10-11 17:03:19 -0700618 self._projects[project.name] = [project]
Kwanhong Leeccd218c2014-02-17 13:07:32 +0900619 self._paths[project.relpath] = project
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800620
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700621 def _ParseRemote(self, node):
622 """
623 reads a <remote> element from the manifest file
624 """
625 name = self._reqatt(node, 'name')
Yestin Sunb292b982012-07-02 07:32:50 -0700626 alias = node.getAttribute('alias')
627 if alias == '':
628 alias = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700629 fetch = self._reqatt(node, 'fetch')
630 review = node.getAttribute('review')
Shawn O. Pearceae6e0942008-11-06 10:25:35 -0800631 if review == '':
632 review = None
Anthony King36ea2fb2014-05-06 11:54:01 +0100633 revision = node.getAttribute('revision')
634 if revision == '':
635 revision = None
Conley Owensdb728cd2011-09-26 16:34:01 -0700636 manifestUrl = self.manifestProject.config.GetString('remote.origin.url')
Jonathan Nieder93719792015-03-17 11:29:58 -0700637 return _XmlRemote(name, alias, fetch, manifestUrl, review, revision)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700638
639 def _ParseDefault(self, node):
640 """
641 reads a <default> element from the manifest file
642 """
643 d = _Default()
644 d.remote = self._get_remote(node)
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700645 d.revisionExpr = node.getAttribute('revision')
646 if d.revisionExpr == '':
647 d.revisionExpr = None
Anatol Pomazau79770d22012-04-20 14:41:59 -0700648
Bryan Jacobsf609f912013-05-06 13:36:24 -0400649 d.destBranchExpr = node.getAttribute('dest-branch') or None
650
Shawn O. Pearce6392c872011-09-22 17:44:31 -0700651 sync_j = node.getAttribute('sync-j')
652 if sync_j == '' or sync_j is None:
653 d.sync_j = 1
654 else:
655 d.sync_j = int(sync_j)
Anatol Pomazau79770d22012-04-20 14:41:59 -0700656
657 sync_c = node.getAttribute('sync-c')
658 if not sync_c:
659 d.sync_c = False
660 else:
661 d.sync_c = sync_c.lower() in ("yes", "true", "1")
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800662
663 sync_s = node.getAttribute('sync-s')
664 if not sync_s:
665 d.sync_s = False
666 else:
667 d.sync_s = sync_s.lower() in ("yes", "true", "1")
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700668 return d
669
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700670 def _ParseNotice(self, node):
671 """
672 reads a <notice> element from the manifest file
673
674 The <notice> element is distinct from other tags in the XML in that the
675 data is conveyed between the start and end tag (it's not an empty-element
676 tag).
677
678 The white space (carriage returns, indentation) for the notice element is
679 relevant and is parsed in a way that is based on how python docstrings work.
680 In fact, the code is remarkably similar to here:
681 http://www.python.org/dev/peps/pep-0257/
682 """
683 # Get the data out of the node...
684 notice = node.childNodes[0].data
685
686 # Figure out minimum indentation, skipping the first line (the same line
687 # as the <notice> tag)...
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530688 minIndent = sys.maxsize
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700689 lines = notice.splitlines()
690 for line in lines[1:]:
691 lstrippedLine = line.lstrip()
692 if lstrippedLine:
693 indent = len(line) - len(lstrippedLine)
694 minIndent = min(indent, minIndent)
695
696 # Strip leading / trailing blank lines and also indentation.
697 cleanLines = [lines[0].strip()]
698 for line in lines[1:]:
699 cleanLines.append(line[minIndent:].rstrip())
700
701 # Clear completely blank lines from front and back...
702 while cleanLines and not cleanLines[0]:
703 del cleanLines[0]
704 while cleanLines and not cleanLines[-1]:
705 del cleanLines[-1]
706
707 return '\n'.join(cleanLines)
708
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800709 def _JoinName(self, parent_name, name):
710 return os.path.join(parent_name, name)
711
712 def _UnjoinName(self, parent_name, name):
713 return os.path.relpath(name, parent_name)
714
715 def _ParseProject(self, node, parent = None):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700716 """
717 reads a <project> element from the manifest file
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700718 """
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700719 name = self._reqatt(node, 'name')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800720 if parent:
721 name = self._JoinName(parent.name, name)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700722
723 remote = self._get_remote(node)
724 if remote is None:
725 remote = self._default.remote
726 if remote is None:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530727 raise ManifestParseError("no remote for project %s within %s" %
728 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700729
Anthony King36ea2fb2014-05-06 11:54:01 +0100730 revisionExpr = node.getAttribute('revision') or remote.revision
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700731 if not revisionExpr:
732 revisionExpr = self._default.revisionExpr
733 if not revisionExpr:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530734 raise ManifestParseError("no revision for project %s within %s" %
735 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700736
737 path = node.getAttribute('path')
738 if not path:
739 path = name
740 if path.startswith('/'):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530741 raise ManifestParseError("project %s path cannot be absolute in %s" %
742 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700743
Mike Pontillod3153822012-02-28 11:53:24 -0800744 rebase = node.getAttribute('rebase')
745 if not rebase:
746 rebase = True
747 else:
748 rebase = rebase.lower() in ("yes", "true", "1")
749
Anatol Pomazau79770d22012-04-20 14:41:59 -0700750 sync_c = node.getAttribute('sync-c')
751 if not sync_c:
752 sync_c = False
753 else:
754 sync_c = sync_c.lower() in ("yes", "true", "1")
755
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800756 sync_s = node.getAttribute('sync-s')
757 if not sync_s:
758 sync_s = self._default.sync_s
759 else:
760 sync_s = sync_s.lower() in ("yes", "true", "1")
761
David Pursehouseede7f122012-11-27 22:25:30 +0900762 clone_depth = node.getAttribute('clone-depth')
763 if clone_depth:
764 try:
765 clone_depth = int(clone_depth)
766 if clone_depth <= 0:
767 raise ValueError()
768 except ValueError:
769 raise ManifestParseError('invalid clone-depth %s in %s' %
770 (clone_depth, self.manifestFile))
771
Bryan Jacobsf609f912013-05-06 13:36:24 -0400772 dest_branch = node.getAttribute('dest-branch') or self._default.destBranchExpr
773
Brian Harring14a66742012-09-28 20:21:57 -0700774 upstream = node.getAttribute('upstream')
775
Conley Owens971de8e2012-04-16 10:36:08 -0700776 groups = ''
777 if node.hasAttribute('groups'):
778 groups = node.getAttribute('groups')
Josh Triplett884a3872014-06-12 14:57:29 -0700779 groups = self._ParseGroups(groups)
Brian Harring7da13142012-06-15 02:24:20 -0700780
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800781 if parent is None:
David James8d201162013-10-11 17:03:19 -0700782 relpath, worktree, gitdir, objdir = self.GetProjectPaths(name, path)
Shawn O. Pearcecd81dd62012-10-26 12:18:00 -0700783 else:
David James8d201162013-10-11 17:03:19 -0700784 relpath, worktree, gitdir, objdir = \
785 self.GetSubprojectPaths(parent, name, path)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800786
787 default_groups = ['all', 'name:%s' % name, 'path:%s' % relpath]
788 groups.extend(set(default_groups).difference(groups))
Shawn O. Pearcecd81dd62012-10-26 12:18:00 -0700789
Scott Fandb83b1b2013-02-28 09:34:14 +0800790 if self.IsMirror and node.hasAttribute('force-path'):
791 if node.getAttribute('force-path').lower() in ("yes", "true", "1"):
792 gitdir = os.path.join(self.topdir, '%s.git' % path)
793
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700794 project = Project(manifest = self,
795 name = name,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -0700796 remote = remote.ToRemoteSpec(name),
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700797 gitdir = gitdir,
David James8d201162013-10-11 17:03:19 -0700798 objdir = objdir,
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700799 worktree = worktree,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800800 relpath = relpath,
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700801 revisionExpr = revisionExpr,
Mike Pontillod3153822012-02-28 11:53:24 -0800802 revisionId = None,
Colin Cross5acde752012-03-28 20:15:45 -0700803 rebase = rebase,
Anatol Pomazau79770d22012-04-20 14:41:59 -0700804 groups = groups,
Brian Harring14a66742012-09-28 20:21:57 -0700805 sync_c = sync_c,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800806 sync_s = sync_s,
David Pursehouseede7f122012-11-27 22:25:30 +0900807 clone_depth = clone_depth,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800808 upstream = upstream,
Bryan Jacobsf609f912013-05-06 13:36:24 -0400809 parent = parent,
810 dest_branch = dest_branch)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700811
812 for n in node.childNodes:
Shawn O. Pearce242b5262009-05-19 13:00:29 -0700813 if n.nodeName == 'copyfile':
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700814 self._ParseCopyFile(project, n)
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500815 if n.nodeName == 'linkfile':
816 self._ParseLinkFile(project, n)
James W. Mills24c13082012-04-12 15:04:13 -0500817 if n.nodeName == 'annotation':
818 self._ParseAnnotation(project, n)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800819 if n.nodeName == 'project':
820 project.subprojects.append(self._ParseProject(n, parent = project))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700821
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700822 return project
823
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800824 def GetProjectPaths(self, name, path):
825 relpath = path
826 if self.IsMirror:
827 worktree = None
828 gitdir = os.path.join(self.topdir, '%s.git' % name)
David James8d201162013-10-11 17:03:19 -0700829 objdir = gitdir
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800830 else:
831 worktree = os.path.join(self.topdir, path).replace('\\', '/')
832 gitdir = os.path.join(self.repodir, 'projects', '%s.git' % path)
David James8d201162013-10-11 17:03:19 -0700833 objdir = os.path.join(self.repodir, 'project-objects', '%s.git' % name)
834 return relpath, worktree, gitdir, objdir
835
836 def GetProjectsWithName(self, name):
837 return self._projects.get(name, [])
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800838
839 def GetSubprojectName(self, parent, submodule_path):
840 return os.path.join(parent.name, submodule_path)
841
842 def _JoinRelpath(self, parent_relpath, relpath):
843 return os.path.join(parent_relpath, relpath)
844
845 def _UnjoinRelpath(self, parent_relpath, relpath):
846 return os.path.relpath(relpath, parent_relpath)
847
David James8d201162013-10-11 17:03:19 -0700848 def GetSubprojectPaths(self, parent, name, path):
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800849 relpath = self._JoinRelpath(parent.relpath, path)
850 gitdir = os.path.join(parent.gitdir, 'subprojects', '%s.git' % path)
David James8d201162013-10-11 17:03:19 -0700851 objdir = os.path.join(parent.gitdir, 'subproject-objects', '%s.git' % name)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800852 if self.IsMirror:
853 worktree = None
854 else:
855 worktree = os.path.join(parent.worktree, path).replace('\\', '/')
David James8d201162013-10-11 17:03:19 -0700856 return relpath, worktree, gitdir, objdir
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800857
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700858 def _ParseCopyFile(self, project, node):
859 src = self._reqatt(node, 'src')
860 dest = self._reqatt(node, 'dest')
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800861 if not self.IsMirror:
862 # src is project relative;
863 # dest is relative to the top of the tree
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800864 project.AddCopyFile(src, dest, os.path.join(self.topdir, dest))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700865
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500866 def _ParseLinkFile(self, project, node):
867 src = self._reqatt(node, 'src')
868 dest = self._reqatt(node, 'dest')
869 if not self.IsMirror:
870 # src is project relative;
871 # dest is relative to the top of the tree
872 project.AddLinkFile(src, dest, os.path.join(self.topdir, dest))
873
James W. Mills24c13082012-04-12 15:04:13 -0500874 def _ParseAnnotation(self, project, node):
875 name = self._reqatt(node, 'name')
876 value = self._reqatt(node, 'value')
877 try:
878 keep = self._reqatt(node, 'keep').lower()
879 except ManifestParseError:
880 keep = "true"
881 if keep != "true" and keep != "false":
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530882 raise ManifestParseError('optional "keep" attribute must be '
883 '"true" or "false"')
James W. Mills24c13082012-04-12 15:04:13 -0500884 project.AddAnnotation(name, value, keep)
885
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700886 def _get_remote(self, node):
887 name = node.getAttribute('remote')
888 if not name:
889 return None
890
891 v = self._remotes.get(name)
892 if not v:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530893 raise ManifestParseError("remote %s not defined in %s" %
894 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700895 return v
896
897 def _reqatt(self, node, attname):
898 """
899 reads a required attribute from the node.
900 """
901 v = node.getAttribute(attname)
902 if not v:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530903 raise ManifestParseError("no %s in <%s> within %s" %
904 (attname, node.nodeName, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700905 return v
Julien Camperguedd654222014-01-09 16:21:37 +0100906
907 def projectsDiff(self, manifest):
908 """return the projects differences between two manifests.
909
910 The diff will be from self to given manifest.
911
912 """
913 fromProjects = self.paths
914 toProjects = manifest.paths
915
Anthony King7446c592014-05-06 09:19:39 +0100916 fromKeys = sorted(fromProjects.keys())
917 toKeys = sorted(toProjects.keys())
Julien Camperguedd654222014-01-09 16:21:37 +0100918
919 diff = {'added': [], 'removed': [], 'changed': [], 'unreachable': []}
920
921 for proj in fromKeys:
922 if not proj in toKeys:
923 diff['removed'].append(fromProjects[proj])
924 else:
925 fromProj = fromProjects[proj]
926 toProj = toProjects[proj]
927 try:
928 fromRevId = fromProj.GetCommitRevisionId()
929 toRevId = toProj.GetCommitRevisionId()
930 except ManifestInvalidRevisionError:
931 diff['unreachable'].append((fromProj, toProj))
932 else:
933 if fromRevId != toRevId:
934 diff['changed'].append((fromProj, toProj))
935 toKeys.remove(proj)
936
937 for proj in toKeys:
938 diff['added'].append(toProjects[proj])
939
940 return diff