blob: 8b57bf52c68d7872f873caa6773dd1245e4f1e17 [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:
Anthony Kingcb07ba72015-03-28 23:26:04 +000093 url = urllib.parse.urljoin('gopher://' + manifestUrl, url)[9:]
94 else:
95 url = urllib.parse.urljoin(manifestUrl, url)
Shawn Pearcea9f11b32013-01-02 15:40:48 -080096 return url
Conley Owensceea3682011-10-20 10:45:47 -070097
98 def ToRemoteSpec(self, projectName):
Conley Owens9d8f9142011-10-20 14:36:35 -070099 url = self.resolvedFetchUrl.rstrip('/') + '/' + projectName
Yestin Sunb292b982012-07-02 07:32:50 -0700100 remoteName = self.name
Conley Owens1e7ab2a2013-10-08 17:26:57 -0700101 if self.remoteAlias:
David Pursehouse37128b62013-10-15 10:48:40 +0900102 remoteName = self.remoteAlias
Yestin Sunb292b982012-07-02 07:32:50 -0700103 return RemoteSpec(remoteName, url, self.reviewUrl)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700104
Shawn O. Pearcec8a300f2009-05-18 13:19:57 -0700105class XmlManifest(object):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700106 """manages the repo configuration file"""
107
108 def __init__(self, repodir):
109 self.repodir = os.path.abspath(repodir)
110 self.topdir = os.path.dirname(self.repodir)
111 self.manifestFile = os.path.join(self.repodir, MANIFEST_FILE_NAME)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700112 self.globalConfig = GitConfig.ForUser()
David Pursehouse4eb285c2013-02-14 16:28:44 +0900113 self.localManifestWarning = False
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700114
115 self.repoProject = MetaProject(self, 'repo',
116 gitdir = os.path.join(repodir, 'repo/.git'),
117 worktree = os.path.join(repodir, 'repo'))
118
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700119 self.manifestProject = MetaProject(self, 'manifests',
Shawn O. Pearcef5c25a62008-11-04 08:11:53 -0800120 gitdir = os.path.join(repodir, 'manifests.git'),
121 worktree = os.path.join(repodir, 'manifests'))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700122
123 self._Unload()
124
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700125 def Override(self, name):
126 """Use a different manifest, just for the current instantiation.
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700127 """
128 path = os.path.join(self.manifestProject.worktree, name)
129 if not os.path.isfile(path):
130 raise ManifestParseError('manifest %s not found' % name)
131
132 old = self.manifestFile
133 try:
134 self.manifestFile = path
135 self._Unload()
136 self._Load()
137 finally:
138 self.manifestFile = old
139
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700140 def Link(self, name):
141 """Update the repo metadata to use a different manifest.
142 """
143 self.Override(name)
144
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700145 try:
Sebastian Frias223bf962012-11-21 19:09:25 +0100146 if os.path.lexists(self.manifestFile):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700147 os.remove(self.manifestFile)
148 os.symlink('manifests/%s' % name, self.manifestFile)
Sebastian Frias223bf962012-11-21 19:09:25 +0100149 except OSError as e:
150 raise ManifestParseError('cannot link manifest %s: %s' % (name, str(e)))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700151
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800152 def _RemoteToXml(self, r, doc, root):
153 e = doc.createElement('remote')
154 root.appendChild(e)
155 e.setAttribute('name', r.name)
156 e.setAttribute('fetch', r.fetchUrl)
Conley Owens1e7ab2a2013-10-08 17:26:57 -0700157 if r.remoteAlias is not None:
158 e.setAttribute('alias', r.remoteAlias)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800159 if r.reviewUrl is not None:
160 e.setAttribute('review', r.reviewUrl)
Anthony King36ea2fb2014-05-06 11:54:01 +0100161 if r.revision is not None:
162 e.setAttribute('revision', r.revision)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800163
Josh Triplett884a3872014-06-12 14:57:29 -0700164 def _ParseGroups(self, groups):
165 return [x for x in re.split(r'[,\s]+', groups) if x]
166
Brian Harring14a66742012-09-28 20:21:57 -0700167 def Save(self, fd, peg_rev=False, peg_rev_upstream=True):
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800168 """Write the current manifest out to the given file descriptor.
169 """
Colin Cross5acde752012-03-28 20:15:45 -0700170 mp = self.manifestProject
171
172 groups = mp.config.GetString('manifest.groups')
Matt Gumbel0c635bb2012-12-21 10:14:53 -0800173 if groups:
Josh Triplett884a3872014-06-12 14:57:29 -0700174 groups = self._ParseGroups(groups)
Colin Cross5acde752012-03-28 20:15:45 -0700175
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800176 doc = xml.dom.minidom.Document()
177 root = doc.createElement('manifest')
178 doc.appendChild(root)
179
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700180 # Save out the notice. There's a little bit of work here to give it the
181 # right whitespace, which assumes that the notice is automatically indented
182 # by 4 by minidom.
183 if self.notice:
184 notice_element = root.appendChild(doc.createElement('notice'))
185 notice_lines = self.notice.splitlines()
186 indented_notice = ('\n'.join(" "*4 + line for line in notice_lines))[4:]
187 notice_element.appendChild(doc.createTextNode(indented_notice))
188
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800189 d = self.default
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800190
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530191 for r in sorted(self.remotes):
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800192 self._RemoteToXml(self.remotes[r], doc, root)
193 if self.remotes:
194 root.appendChild(doc.createTextNode(''))
195
196 have_default = False
197 e = doc.createElement('default')
198 if d.remote:
199 have_default = True
200 e.setAttribute('remote', d.remote.name)
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700201 if d.revisionExpr:
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800202 have_default = True
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700203 e.setAttribute('revision', d.revisionExpr)
Shawn O. Pearce6392c872011-09-22 17:44:31 -0700204 if d.sync_j > 1:
205 have_default = True
206 e.setAttribute('sync-j', '%d' % d.sync_j)
Anatol Pomazau79770d22012-04-20 14:41:59 -0700207 if d.sync_c:
208 have_default = True
209 e.setAttribute('sync-c', 'true')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800210 if d.sync_s:
211 have_default = True
212 e.setAttribute('sync-s', 'true')
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800213 if have_default:
214 root.appendChild(e)
215 root.appendChild(doc.createTextNode(''))
216
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700217 if self._manifest_server:
218 e = doc.createElement('manifest-server')
219 e.setAttribute('url', self._manifest_server)
220 root.appendChild(e)
221 root.appendChild(doc.createTextNode(''))
222
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800223 def output_projects(parent, parent_node, projects):
David James8d201162013-10-11 17:03:19 -0700224 for project_name in projects:
225 for project in self._projects[project_name]:
226 output_project(parent, parent_node, project)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800227
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800228 def output_project(parent, parent_node, p):
Colin Cross5acde752012-03-28 20:15:45 -0700229 if not p.MatchesGroups(groups):
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800230 return
231
232 name = p.name
233 relpath = p.relpath
234 if parent:
235 name = self._UnjoinName(parent.name, name)
236 relpath = self._UnjoinRelpath(parent.relpath, relpath)
Colin Cross5acde752012-03-28 20:15:45 -0700237
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800238 e = doc.createElement('project')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800239 parent_node.appendChild(e)
240 e.setAttribute('name', name)
241 if relpath != name:
242 e.setAttribute('path', relpath)
Conley Owensa17d7af2013-10-16 14:38:09 -0700243 remoteName = None
244 if d.remote:
Conley Owensce201a52013-10-16 14:42:42 -0700245 remoteName = d.remote.remoteAlias or d.remote.name
Conley Owens1e7ab2a2013-10-08 17:26:57 -0700246 if not d.remote or p.remote.name != remoteName:
Anthony King36ea2fb2014-05-06 11:54:01 +0100247 remoteName = p.remote.name
248 e.setAttribute('remote', remoteName)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800249 if peg_rev:
250 if self.IsMirror:
Brian Harring14a66742012-09-28 20:21:57 -0700251 value = p.bare_git.rev_parse(p.revisionExpr + '^0')
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800252 else:
Brian Harring14a66742012-09-28 20:21:57 -0700253 value = p.work_git.rev_parse(HEAD + '^0')
254 e.setAttribute('revision', value)
255 if peg_rev_upstream and value != p.revisionExpr:
256 # Only save the origin if the origin is not a sha1, and the default
257 # isn't our value, and the if the default doesn't already have that
258 # covered.
259 e.setAttribute('upstream', p.revisionExpr)
Anthony King36ea2fb2014-05-06 11:54:01 +0100260 else:
261 revision = self.remotes[remoteName].revision or d.revisionExpr
262 if not revision or revision != p.revisionExpr:
263 e.setAttribute('revision', p.revisionExpr)
Mani Chandel7a91d512014-07-24 16:27:08 +0530264 if p.upstream and p.upstream != p.revisionExpr:
265 e.setAttribute('upstream', p.upstream)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800266
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800267 for c in p.copyfiles:
268 ce = doc.createElement('copyfile')
269 ce.setAttribute('src', c.src)
270 ce.setAttribute('dest', c.dest)
271 e.appendChild(ce)
272
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500273 for l in p.linkfiles:
274 le = doc.createElement('linkfile')
275 le.setAttribute('src', l.src)
276 le.setAttribute('dest', l.dest)
277 e.appendChild(le)
278
Conley Owensbb1b5f52012-08-13 13:11:18 -0700279 default_groups = ['all', 'name:%s' % p.name, 'path:%s' % p.relpath]
Dmitry Fink17f85ea2012-08-06 14:52:29 -0700280 egroups = [g for g in p.groups if g not in default_groups]
Conley Owens971de8e2012-04-16 10:36:08 -0700281 if egroups:
282 e.setAttribute('groups', ','.join(egroups))
Colin Cross5acde752012-03-28 20:15:45 -0700283
James W. Mills24c13082012-04-12 15:04:13 -0500284 for a in p.annotations:
285 if a.keep == "true":
286 ae = doc.createElement('annotation')
287 ae.setAttribute('name', a.name)
288 ae.setAttribute('value', a.value)
289 e.appendChild(ae)
290
Anatol Pomazau79770d22012-04-20 14:41:59 -0700291 if p.sync_c:
292 e.setAttribute('sync-c', 'true')
293
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800294 if p.sync_s:
295 e.setAttribute('sync-s', 'true')
296
297 if p.subprojects:
David James8d201162013-10-11 17:03:19 -0700298 subprojects = set(subp.name for subp in p.subprojects)
299 output_projects(p, e, list(sorted(subprojects)))
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800300
David James8d201162013-10-11 17:03:19 -0700301 projects = set(p.name for p in self._paths.values() if not p.parent)
302 output_projects(None, root, list(sorted(projects)))
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800303
Doug Anderson37282b42011-03-04 11:54:18 -0800304 if self._repo_hooks_project:
305 root.appendChild(doc.createTextNode(''))
306 e = doc.createElement('repo-hooks')
307 e.setAttribute('in-project', self._repo_hooks_project.name)
308 e.setAttribute('enabled-list',
309 ' '.join(self._repo_hooks_project.enabled_repo_hooks))
310 root.appendChild(e)
311
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800312 doc.writexml(fd, '', ' ', '\n', 'UTF-8')
313
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700314 @property
David James8d201162013-10-11 17:03:19 -0700315 def paths(self):
316 self._Load()
317 return self._paths
318
319 @property
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700320 def projects(self):
321 self._Load()
Anthony Kingd58bfe52014-05-05 23:30:49 +0100322 return list(self._paths.values())
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700323
324 @property
325 def remotes(self):
326 self._Load()
327 return self._remotes
328
329 @property
330 def default(self):
331 self._Load()
332 return self._default
333
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800334 @property
Doug Anderson37282b42011-03-04 11:54:18 -0800335 def repo_hooks_project(self):
336 self._Load()
337 return self._repo_hooks_project
338
339 @property
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700340 def notice(self):
341 self._Load()
342 return self._notice
343
344 @property
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700345 def manifest_server(self):
346 self._Load()
Shawn O. Pearce34fb20f2011-11-30 13:41:02 -0800347 return self._manifest_server
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700348
349 @property
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800350 def IsMirror(self):
351 return self.manifestProject.config.GetBoolean('repo.mirror')
352
Julien Campergue335f5ef2013-10-16 11:02:35 +0200353 @property
354 def IsArchive(self):
355 return self.manifestProject.config.GetBoolean('repo.archive')
356
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700357 def _Unload(self):
358 self._loaded = False
359 self._projects = {}
David James8d201162013-10-11 17:03:19 -0700360 self._paths = {}
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700361 self._remotes = {}
362 self._default = None
Doug Anderson37282b42011-03-04 11:54:18 -0800363 self._repo_hooks_project = None
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700364 self._notice = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700365 self.branch = None
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700366 self._manifest_server = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700367
368 def _Load(self):
369 if not self._loaded:
Shawn O. Pearce2450a292008-11-04 08:22:07 -0800370 m = self.manifestProject
371 b = m.GetBranch(m.CurrentBranch).merge
Shawn O. Pearce21c5c342009-06-25 16:47:30 -0700372 if b is not None and b.startswith(R_HEADS):
Shawn O. Pearce2450a292008-11-04 08:22:07 -0800373 b = b[len(R_HEADS):]
374 self.branch = b
375
Colin Cross23acdd32012-04-21 00:33:54 -0700376 nodes = []
Brian Harring475a47d2012-06-07 20:05:35 -0700377 nodes.append(self._ParseManifestXml(self.manifestFile,
378 self.manifestProject.worktree))
Shawn O. Pearce5cc66792008-10-23 16:19:27 -0700379
380 local = os.path.join(self.repodir, LOCAL_MANIFEST_NAME)
381 if os.path.exists(local):
David Pursehouse4eb285c2013-02-14 16:28:44 +0900382 if not self.localManifestWarning:
383 self.localManifestWarning = True
384 print('warning: %s is deprecated; put local manifests in `%s` instead'
385 % (LOCAL_MANIFEST_NAME, os.path.join(self.repodir, LOCAL_MANIFESTS_DIR_NAME)),
386 file=sys.stderr)
Brian Harring475a47d2012-06-07 20:05:35 -0700387 nodes.append(self._ParseManifestXml(local, self.repodir))
Colin Cross23acdd32012-04-21 00:33:54 -0700388
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900389 local_dir = os.path.abspath(os.path.join(self.repodir, LOCAL_MANIFESTS_DIR_NAME))
390 try:
David Pursehouse52f1e5d2012-11-14 04:53:24 +0900391 for local_file in sorted(os.listdir(local_dir)):
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900392 if local_file.endswith('.xml'):
David Pursehouse5f434ed2012-11-22 13:48:10 +0900393 local = os.path.join(local_dir, local_file)
394 nodes.append(self._ParseManifestXml(local, self.repodir))
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900395 except OSError:
396 pass
397
Joe Onorato26e24752013-01-11 12:35:53 -0800398 try:
399 self._ParseManifest(nodes)
400 except ManifestParseError as e:
401 # There was a problem parsing, unload ourselves in case they catch
402 # this error and try again later, we will show the correct error
403 self._Unload()
404 raise e
Shawn O. Pearce5cc66792008-10-23 16:19:27 -0700405
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800406 if self.IsMirror:
407 self._AddMetaProjectMirror(self.repoProject)
408 self._AddMetaProjectMirror(self.manifestProject)
409
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700410 self._loaded = True
411
Brian Harring475a47d2012-06-07 20:05:35 -0700412 def _ParseManifestXml(self, path, include_root):
David Pursehousef7fc8a92012-11-13 04:00:28 +0900413 try:
414 root = xml.dom.minidom.parse(path)
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900415 except (OSError, xml.parsers.expat.ExpatError) as e:
David Pursehousef7fc8a92012-11-13 04:00:28 +0900416 raise ManifestParseError("error parsing manifest %s: %s" % (path, e))
417
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700418 if not root or not root.childNodes:
Brian Harring26448742011-04-28 05:04:41 -0700419 raise ManifestParseError("no root node in %s" % (path,))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700420
Jooncheol Park34acdd22012-08-27 02:25:59 +0900421 for manifest in root.childNodes:
422 if manifest.nodeName == 'manifest':
423 break
424 else:
Brian Harring26448742011-04-28 05:04:41 -0700425 raise ManifestParseError("no <manifest> in %s" % (path,))
426
Colin Cross23acdd32012-04-21 00:33:54 -0700427 nodes = []
David Pursehouse4f7bdea2012-10-22 12:50:15 +0900428 for node in manifest.childNodes: # pylint:disable=W0631
David Pursehouse5c6eeac2012-10-11 16:44:48 +0900429 # We only get here if manifest is initialised
David Pursehousec1b86a22012-11-14 11:36:51 +0900430 if node.nodeName == 'include':
431 name = self._reqatt(node, 'name')
432 fp = os.path.join(include_root, name)
433 if not os.path.isfile(fp):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530434 raise ManifestParseError("include %s doesn't exist or isn't a file"
435 % (name,))
David Pursehousec1b86a22012-11-14 11:36:51 +0900436 try:
437 nodes.extend(self._ParseManifestXml(fp, include_root))
438 # should isolate this to the exact exception, but that's
439 # tricky. actual parsing implementation may vary.
440 except (KeyboardInterrupt, RuntimeError, SystemExit):
441 raise
442 except Exception as e:
443 raise ManifestParseError(
444 "failed parsing included manifest %s: %s", (name, e))
445 else:
446 nodes.append(node)
Colin Cross23acdd32012-04-21 00:33:54 -0700447 return nodes
Brian Harring26448742011-04-28 05:04:41 -0700448
Colin Cross23acdd32012-04-21 00:33:54 -0700449 def _ParseManifest(self, node_list):
450 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700451 if node.nodeName == 'remote':
452 remote = self._ParseRemote(node)
David Pursehouse717ece92012-11-13 08:49:16 +0900453 if remote:
454 if remote.name in self._remotes:
455 if remote != self._remotes[remote.name]:
456 raise ManifestParseError(
457 'remote %s already exists with different attributes' %
458 (remote.name))
459 else:
460 self._remotes[remote.name] = remote
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700461
Colin Cross23acdd32012-04-21 00:33:54 -0700462 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700463 if node.nodeName == 'default':
Julien Campergue74879922013-10-09 14:38:46 +0200464 new_default = self._ParseDefault(node)
465 if self._default is None:
466 self._default = new_default
467 elif new_default != self._default:
David Pursehouse37128b62013-10-15 10:48:40 +0900468 raise ManifestParseError('duplicate default in %s' %
469 (self.manifestFile))
Julien Campergue74879922013-10-09 14:38:46 +0200470
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700471 if self._default is None:
472 self._default = _Default()
473
Colin Cross23acdd32012-04-21 00:33:54 -0700474 for node in itertools.chain(*node_list):
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700475 if node.nodeName == 'notice':
476 if self._notice is not None:
Doug Anderson37282b42011-03-04 11:54:18 -0800477 raise ManifestParseError(
478 'duplicate notice in %s' %
479 (self.manifestFile))
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700480 self._notice = self._ParseNotice(node)
481
Colin Cross23acdd32012-04-21 00:33:54 -0700482 for node in itertools.chain(*node_list):
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700483 if node.nodeName == 'manifest-server':
484 url = self._reqatt(node, 'url')
485 if self._manifest_server is not None:
David Pursehousec1b86a22012-11-14 11:36:51 +0900486 raise ManifestParseError(
487 'duplicate manifest-server in %s' %
488 (self.manifestFile))
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700489 self._manifest_server = url
490
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800491 def recursively_add_projects(project):
David James8d201162013-10-11 17:03:19 -0700492 projects = self._projects.setdefault(project.name, [])
493 if project.relpath is None:
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800494 raise ManifestParseError(
David James8d201162013-10-11 17:03:19 -0700495 'missing path for %s in %s' %
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800496 (project.name, self.manifestFile))
David James8d201162013-10-11 17:03:19 -0700497 if project.relpath in self._paths:
498 raise ManifestParseError(
499 'duplicate path %s in %s' %
500 (project.relpath, self.manifestFile))
501 self._paths[project.relpath] = project
502 projects.append(project)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800503 for subproject in project.subprojects:
504 recursively_add_projects(subproject)
505
Colin Cross23acdd32012-04-21 00:33:54 -0700506 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700507 if node.nodeName == 'project':
508 project = self._ParseProject(node)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800509 recursively_add_projects(project)
Josh Triplett884a3872014-06-12 14:57:29 -0700510 if node.nodeName == 'extend-project':
511 name = self._reqatt(node, 'name')
512
513 if name not in self._projects:
514 raise ManifestParseError('extend-project element specifies non-existent '
515 'project: %s' % name)
516
517 path = node.getAttribute('path')
518 groups = node.getAttribute('groups')
519 if groups:
520 groups = self._ParseGroups(groups)
521
522 for p in self._projects[name]:
523 if path and p.relpath != path:
524 continue
525 if groups:
526 p.groups.extend(groups)
Doug Anderson37282b42011-03-04 11:54:18 -0800527 if node.nodeName == 'repo-hooks':
528 # Get the name of the project and the (space-separated) list of enabled.
529 repo_hooks_project = self._reqatt(node, 'in-project')
530 enabled_repo_hooks = self._reqatt(node, 'enabled-list').split()
531
532 # Only one project can be the hooks project
533 if self._repo_hooks_project is not None:
534 raise ManifestParseError(
535 'duplicate repo-hooks in %s' %
536 (self.manifestFile))
537
538 # Store a reference to the Project.
539 try:
David James8d201162013-10-11 17:03:19 -0700540 repo_hooks_projects = self._projects[repo_hooks_project]
Doug Anderson37282b42011-03-04 11:54:18 -0800541 except KeyError:
542 raise ManifestParseError(
543 'project %s not found for repo-hooks' %
544 (repo_hooks_project))
545
David James8d201162013-10-11 17:03:19 -0700546 if len(repo_hooks_projects) != 1:
547 raise ManifestParseError(
548 'internal error parsing repo-hooks in %s' %
549 (self.manifestFile))
550 self._repo_hooks_project = repo_hooks_projects[0]
551
Doug Anderson37282b42011-03-04 11:54:18 -0800552 # Store the enabled hooks in the Project object.
553 self._repo_hooks_project.enabled_repo_hooks = enabled_repo_hooks
Colin Cross23acdd32012-04-21 00:33:54 -0700554 if node.nodeName == 'remove-project':
555 name = self._reqatt(node, 'name')
David Jamesb8433df2014-01-30 10:11:17 -0800556
557 if name not in self._projects:
David Pursehousef9107482012-11-16 19:12:32 +0900558 raise ManifestParseError('remove-project element specifies non-existent '
559 'project: %s' % name)
Colin Cross23acdd32012-04-21 00:33:54 -0700560
David Jamesb8433df2014-01-30 10:11:17 -0800561 for p in self._projects[name]:
562 del self._paths[p.relpath]
563 del self._projects[name]
564
Colin Cross23acdd32012-04-21 00:33:54 -0700565 # If the manifest removes the hooks project, treat it as if it deleted
566 # the repo-hooks element too.
567 if self._repo_hooks_project and (self._repo_hooks_project.name == name):
568 self._repo_hooks_project = None
569
Doug Anderson37282b42011-03-04 11:54:18 -0800570
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800571 def _AddMetaProjectMirror(self, m):
572 name = None
573 m_url = m.GetRemote(m.remote.name).url
574 if m_url.endswith('/.git'):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530575 raise ManifestParseError('refusing to mirror %s' % m_url)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800576
577 if self._default and self._default.remote:
Conley Owensceea3682011-10-20 10:45:47 -0700578 url = self._default.remote.resolvedFetchUrl
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800579 if not url.endswith('/'):
580 url += '/'
581 if m_url.startswith(url):
582 remote = self._default.remote
583 name = m_url[len(url):]
584
585 if name is None:
586 s = m_url.rindex('/') + 1
Conley Owensdb728cd2011-09-26 16:34:01 -0700587 manifestUrl = self.manifestProject.config.GetString('remote.origin.url')
Shawn O. Pearcef35b2d92012-08-02 11:46:22 -0700588 remote = _XmlRemote('origin', fetch=m_url[:s], manifestUrl=manifestUrl)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800589 name = m_url[s:]
590
591 if name.endswith('.git'):
592 name = name[:-4]
593
594 if name not in self._projects:
595 m.PreSync()
596 gitdir = os.path.join(self.topdir, '%s.git' % name)
597 project = Project(manifest = self,
598 name = name,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -0700599 remote = remote.ToRemoteSpec(name),
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800600 gitdir = gitdir,
David James8d201162013-10-11 17:03:19 -0700601 objdir = gitdir,
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800602 worktree = None,
Kwanhong Leeccd218c2014-02-17 13:07:32 +0900603 relpath = name or None,
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700604 revisionExpr = m.revisionExpr,
605 revisionId = None)
David James8d201162013-10-11 17:03:19 -0700606 self._projects[project.name] = [project]
Kwanhong Leeccd218c2014-02-17 13:07:32 +0900607 self._paths[project.relpath] = project
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800608
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700609 def _ParseRemote(self, node):
610 """
611 reads a <remote> element from the manifest file
612 """
613 name = self._reqatt(node, 'name')
Yestin Sunb292b982012-07-02 07:32:50 -0700614 alias = node.getAttribute('alias')
615 if alias == '':
616 alias = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700617 fetch = self._reqatt(node, 'fetch')
618 review = node.getAttribute('review')
Shawn O. Pearceae6e0942008-11-06 10:25:35 -0800619 if review == '':
620 review = None
Anthony King36ea2fb2014-05-06 11:54:01 +0100621 revision = node.getAttribute('revision')
622 if revision == '':
623 revision = None
Conley Owensdb728cd2011-09-26 16:34:01 -0700624 manifestUrl = self.manifestProject.config.GetString('remote.origin.url')
Jonathan Nieder93719792015-03-17 11:29:58 -0700625 return _XmlRemote(name, alias, fetch, manifestUrl, review, revision)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700626
627 def _ParseDefault(self, node):
628 """
629 reads a <default> element from the manifest file
630 """
631 d = _Default()
632 d.remote = self._get_remote(node)
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700633 d.revisionExpr = node.getAttribute('revision')
634 if d.revisionExpr == '':
635 d.revisionExpr = None
Anatol Pomazau79770d22012-04-20 14:41:59 -0700636
Bryan Jacobsf609f912013-05-06 13:36:24 -0400637 d.destBranchExpr = node.getAttribute('dest-branch') or None
638
Shawn O. Pearce6392c872011-09-22 17:44:31 -0700639 sync_j = node.getAttribute('sync-j')
640 if sync_j == '' or sync_j is None:
641 d.sync_j = 1
642 else:
643 d.sync_j = int(sync_j)
Anatol Pomazau79770d22012-04-20 14:41:59 -0700644
645 sync_c = node.getAttribute('sync-c')
646 if not sync_c:
647 d.sync_c = False
648 else:
649 d.sync_c = sync_c.lower() in ("yes", "true", "1")
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800650
651 sync_s = node.getAttribute('sync-s')
652 if not sync_s:
653 d.sync_s = False
654 else:
655 d.sync_s = sync_s.lower() in ("yes", "true", "1")
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700656 return d
657
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700658 def _ParseNotice(self, node):
659 """
660 reads a <notice> element from the manifest file
661
662 The <notice> element is distinct from other tags in the XML in that the
663 data is conveyed between the start and end tag (it's not an empty-element
664 tag).
665
666 The white space (carriage returns, indentation) for the notice element is
667 relevant and is parsed in a way that is based on how python docstrings work.
668 In fact, the code is remarkably similar to here:
669 http://www.python.org/dev/peps/pep-0257/
670 """
671 # Get the data out of the node...
672 notice = node.childNodes[0].data
673
674 # Figure out minimum indentation, skipping the first line (the same line
675 # as the <notice> tag)...
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530676 minIndent = sys.maxsize
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700677 lines = notice.splitlines()
678 for line in lines[1:]:
679 lstrippedLine = line.lstrip()
680 if lstrippedLine:
681 indent = len(line) - len(lstrippedLine)
682 minIndent = min(indent, minIndent)
683
684 # Strip leading / trailing blank lines and also indentation.
685 cleanLines = [lines[0].strip()]
686 for line in lines[1:]:
687 cleanLines.append(line[minIndent:].rstrip())
688
689 # Clear completely blank lines from front and back...
690 while cleanLines and not cleanLines[0]:
691 del cleanLines[0]
692 while cleanLines and not cleanLines[-1]:
693 del cleanLines[-1]
694
695 return '\n'.join(cleanLines)
696
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800697 def _JoinName(self, parent_name, name):
698 return os.path.join(parent_name, name)
699
700 def _UnjoinName(self, parent_name, name):
701 return os.path.relpath(name, parent_name)
702
703 def _ParseProject(self, node, parent = None):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700704 """
705 reads a <project> element from the manifest file
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700706 """
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700707 name = self._reqatt(node, 'name')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800708 if parent:
709 name = self._JoinName(parent.name, name)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700710
711 remote = self._get_remote(node)
712 if remote is None:
713 remote = self._default.remote
714 if remote is None:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530715 raise ManifestParseError("no remote for project %s within %s" %
716 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700717
Anthony King36ea2fb2014-05-06 11:54:01 +0100718 revisionExpr = node.getAttribute('revision') or remote.revision
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700719 if not revisionExpr:
720 revisionExpr = self._default.revisionExpr
721 if not revisionExpr:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530722 raise ManifestParseError("no revision for project %s within %s" %
723 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700724
725 path = node.getAttribute('path')
726 if not path:
727 path = name
728 if path.startswith('/'):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530729 raise ManifestParseError("project %s path cannot be absolute in %s" %
730 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700731
Mike Pontillod3153822012-02-28 11:53:24 -0800732 rebase = node.getAttribute('rebase')
733 if not rebase:
734 rebase = True
735 else:
736 rebase = rebase.lower() in ("yes", "true", "1")
737
Anatol Pomazau79770d22012-04-20 14:41:59 -0700738 sync_c = node.getAttribute('sync-c')
739 if not sync_c:
740 sync_c = False
741 else:
742 sync_c = sync_c.lower() in ("yes", "true", "1")
743
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800744 sync_s = node.getAttribute('sync-s')
745 if not sync_s:
746 sync_s = self._default.sync_s
747 else:
748 sync_s = sync_s.lower() in ("yes", "true", "1")
749
David Pursehouseede7f122012-11-27 22:25:30 +0900750 clone_depth = node.getAttribute('clone-depth')
751 if clone_depth:
752 try:
753 clone_depth = int(clone_depth)
754 if clone_depth <= 0:
755 raise ValueError()
756 except ValueError:
757 raise ManifestParseError('invalid clone-depth %s in %s' %
758 (clone_depth, self.manifestFile))
759
Bryan Jacobsf609f912013-05-06 13:36:24 -0400760 dest_branch = node.getAttribute('dest-branch') or self._default.destBranchExpr
761
Brian Harring14a66742012-09-28 20:21:57 -0700762 upstream = node.getAttribute('upstream')
763
Conley Owens971de8e2012-04-16 10:36:08 -0700764 groups = ''
765 if node.hasAttribute('groups'):
766 groups = node.getAttribute('groups')
Josh Triplett884a3872014-06-12 14:57:29 -0700767 groups = self._ParseGroups(groups)
Brian Harring7da13142012-06-15 02:24:20 -0700768
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800769 if parent is None:
David James8d201162013-10-11 17:03:19 -0700770 relpath, worktree, gitdir, objdir = self.GetProjectPaths(name, path)
Shawn O. Pearcecd81dd62012-10-26 12:18:00 -0700771 else:
David James8d201162013-10-11 17:03:19 -0700772 relpath, worktree, gitdir, objdir = \
773 self.GetSubprojectPaths(parent, name, path)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800774
775 default_groups = ['all', 'name:%s' % name, 'path:%s' % relpath]
776 groups.extend(set(default_groups).difference(groups))
Shawn O. Pearcecd81dd62012-10-26 12:18:00 -0700777
Scott Fandb83b1b2013-02-28 09:34:14 +0800778 if self.IsMirror and node.hasAttribute('force-path'):
779 if node.getAttribute('force-path').lower() in ("yes", "true", "1"):
780 gitdir = os.path.join(self.topdir, '%s.git' % path)
781
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700782 project = Project(manifest = self,
783 name = name,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -0700784 remote = remote.ToRemoteSpec(name),
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700785 gitdir = gitdir,
David James8d201162013-10-11 17:03:19 -0700786 objdir = objdir,
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700787 worktree = worktree,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800788 relpath = relpath,
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700789 revisionExpr = revisionExpr,
Mike Pontillod3153822012-02-28 11:53:24 -0800790 revisionId = None,
Colin Cross5acde752012-03-28 20:15:45 -0700791 rebase = rebase,
Anatol Pomazau79770d22012-04-20 14:41:59 -0700792 groups = groups,
Brian Harring14a66742012-09-28 20:21:57 -0700793 sync_c = sync_c,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800794 sync_s = sync_s,
David Pursehouseede7f122012-11-27 22:25:30 +0900795 clone_depth = clone_depth,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800796 upstream = upstream,
Bryan Jacobsf609f912013-05-06 13:36:24 -0400797 parent = parent,
798 dest_branch = dest_branch)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700799
800 for n in node.childNodes:
Shawn O. Pearce242b5262009-05-19 13:00:29 -0700801 if n.nodeName == 'copyfile':
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700802 self._ParseCopyFile(project, n)
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500803 if n.nodeName == 'linkfile':
804 self._ParseLinkFile(project, n)
James W. Mills24c13082012-04-12 15:04:13 -0500805 if n.nodeName == 'annotation':
806 self._ParseAnnotation(project, n)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800807 if n.nodeName == 'project':
808 project.subprojects.append(self._ParseProject(n, parent = project))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700809
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700810 return project
811
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800812 def GetProjectPaths(self, name, path):
813 relpath = path
814 if self.IsMirror:
815 worktree = None
816 gitdir = os.path.join(self.topdir, '%s.git' % name)
David James8d201162013-10-11 17:03:19 -0700817 objdir = gitdir
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800818 else:
819 worktree = os.path.join(self.topdir, path).replace('\\', '/')
820 gitdir = os.path.join(self.repodir, 'projects', '%s.git' % path)
David James8d201162013-10-11 17:03:19 -0700821 objdir = os.path.join(self.repodir, 'project-objects', '%s.git' % name)
822 return relpath, worktree, gitdir, objdir
823
824 def GetProjectsWithName(self, name):
825 return self._projects.get(name, [])
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800826
827 def GetSubprojectName(self, parent, submodule_path):
828 return os.path.join(parent.name, submodule_path)
829
830 def _JoinRelpath(self, parent_relpath, relpath):
831 return os.path.join(parent_relpath, relpath)
832
833 def _UnjoinRelpath(self, parent_relpath, relpath):
834 return os.path.relpath(relpath, parent_relpath)
835
David James8d201162013-10-11 17:03:19 -0700836 def GetSubprojectPaths(self, parent, name, path):
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800837 relpath = self._JoinRelpath(parent.relpath, path)
838 gitdir = os.path.join(parent.gitdir, 'subprojects', '%s.git' % path)
David James8d201162013-10-11 17:03:19 -0700839 objdir = os.path.join(parent.gitdir, 'subproject-objects', '%s.git' % name)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800840 if self.IsMirror:
841 worktree = None
842 else:
843 worktree = os.path.join(parent.worktree, path).replace('\\', '/')
David James8d201162013-10-11 17:03:19 -0700844 return relpath, worktree, gitdir, objdir
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800845
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700846 def _ParseCopyFile(self, project, node):
847 src = self._reqatt(node, 'src')
848 dest = self._reqatt(node, 'dest')
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800849 if not self.IsMirror:
850 # src is project relative;
851 # dest is relative to the top of the tree
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800852 project.AddCopyFile(src, dest, os.path.join(self.topdir, dest))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700853
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500854 def _ParseLinkFile(self, project, node):
855 src = self._reqatt(node, 'src')
856 dest = self._reqatt(node, 'dest')
857 if not self.IsMirror:
858 # src is project relative;
859 # dest is relative to the top of the tree
860 project.AddLinkFile(src, dest, os.path.join(self.topdir, dest))
861
James W. Mills24c13082012-04-12 15:04:13 -0500862 def _ParseAnnotation(self, project, node):
863 name = self._reqatt(node, 'name')
864 value = self._reqatt(node, 'value')
865 try:
866 keep = self._reqatt(node, 'keep').lower()
867 except ManifestParseError:
868 keep = "true"
869 if keep != "true" and keep != "false":
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530870 raise ManifestParseError('optional "keep" attribute must be '
871 '"true" or "false"')
James W. Mills24c13082012-04-12 15:04:13 -0500872 project.AddAnnotation(name, value, keep)
873
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700874 def _get_remote(self, node):
875 name = node.getAttribute('remote')
876 if not name:
877 return None
878
879 v = self._remotes.get(name)
880 if not v:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530881 raise ManifestParseError("remote %s not defined in %s" %
882 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700883 return v
884
885 def _reqatt(self, node, attname):
886 """
887 reads a required attribute from the node.
888 """
889 v = node.getAttribute(attname)
890 if not v:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530891 raise ManifestParseError("no %s in <%s> within %s" %
892 (attname, node.nodeName, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700893 return v
Julien Camperguedd654222014-01-09 16:21:37 +0100894
895 def projectsDiff(self, manifest):
896 """return the projects differences between two manifests.
897
898 The diff will be from self to given manifest.
899
900 """
901 fromProjects = self.paths
902 toProjects = manifest.paths
903
Anthony King7446c592014-05-06 09:19:39 +0100904 fromKeys = sorted(fromProjects.keys())
905 toKeys = sorted(toProjects.keys())
Julien Camperguedd654222014-01-09 16:21:37 +0100906
907 diff = {'added': [], 'removed': [], 'changed': [], 'unreachable': []}
908
909 for proj in fromKeys:
910 if not proj in toKeys:
911 diff['removed'].append(fromProjects[proj])
912 else:
913 fromProj = fromProjects[proj]
914 toProj = toProjects[proj]
915 try:
916 fromRevId = fromProj.GetCommitRevisionId()
917 toRevId = toProj.GetCommitRevisionId()
918 except ManifestInvalidRevisionError:
919 diff['unreachable'].append((fromProj, toProj))
920 else:
921 if fromRevId != toRevId:
922 diff['changed'].append((fromProj, toProj))
923 toKeys.remove(proj)
924
925 for proj in toKeys:
926 diff['added'].append(toProjects[proj])
927
928 return diff