blob: 130e17c2e98791a02fc1484667aec05abc2a486b [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)
Shawn O. Pearce6392c872011-09-22 17:44:31 -0700205 if d.sync_j > 1:
206 have_default = True
207 e.setAttribute('sync-j', '%d' % d.sync_j)
Anatol Pomazau79770d22012-04-20 14:41:59 -0700208 if d.sync_c:
209 have_default = True
210 e.setAttribute('sync-c', 'true')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800211 if d.sync_s:
212 have_default = True
213 e.setAttribute('sync-s', 'true')
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800214 if have_default:
215 root.appendChild(e)
216 root.appendChild(doc.createTextNode(''))
217
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700218 if self._manifest_server:
219 e = doc.createElement('manifest-server')
220 e.setAttribute('url', self._manifest_server)
221 root.appendChild(e)
222 root.appendChild(doc.createTextNode(''))
223
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800224 def output_projects(parent, parent_node, projects):
David James8d201162013-10-11 17:03:19 -0700225 for project_name in projects:
226 for project in self._projects[project_name]:
227 output_project(parent, parent_node, project)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800228
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800229 def output_project(parent, parent_node, p):
Colin Cross5acde752012-03-28 20:15:45 -0700230 if not p.MatchesGroups(groups):
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800231 return
232
233 name = p.name
234 relpath = p.relpath
235 if parent:
236 name = self._UnjoinName(parent.name, name)
237 relpath = self._UnjoinRelpath(parent.relpath, relpath)
Colin Cross5acde752012-03-28 20:15:45 -0700238
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800239 e = doc.createElement('project')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800240 parent_node.appendChild(e)
241 e.setAttribute('name', name)
242 if relpath != name:
243 e.setAttribute('path', relpath)
Conley Owensa17d7af2013-10-16 14:38:09 -0700244 remoteName = None
245 if d.remote:
Conley Owensce201a52013-10-16 14:42:42 -0700246 remoteName = d.remote.remoteAlias or d.remote.name
Conley Owens1e7ab2a2013-10-08 17:26:57 -0700247 if not d.remote or p.remote.name != remoteName:
Anthony King36ea2fb2014-05-06 11:54:01 +0100248 remoteName = p.remote.name
249 e.setAttribute('remote', remoteName)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800250 if peg_rev:
251 if self.IsMirror:
Brian Harring14a66742012-09-28 20:21:57 -0700252 value = p.bare_git.rev_parse(p.revisionExpr + '^0')
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800253 else:
Brian Harring14a66742012-09-28 20:21:57 -0700254 value = p.work_git.rev_parse(HEAD + '^0')
255 e.setAttribute('revision', value)
Conley Owens551dfec2015-07-10 14:54:54 -0700256 if peg_rev_upstream:
257 if p.upstream:
258 e.setAttribute('upstream', p.upstream)
259 elif value != p.revisionExpr:
260 # Only save the origin if the origin is not a sha1, and the default
261 # isn't our value
262 e.setAttribute('upstream', p.revisionExpr)
Anthony King36ea2fb2014-05-06 11:54:01 +0100263 else:
264 revision = self.remotes[remoteName].revision or d.revisionExpr
265 if not revision or revision != p.revisionExpr:
266 e.setAttribute('revision', p.revisionExpr)
Mani Chandel7a91d512014-07-24 16:27:08 +0530267 if p.upstream and p.upstream != p.revisionExpr:
268 e.setAttribute('upstream', p.upstream)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800269
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800270 for c in p.copyfiles:
271 ce = doc.createElement('copyfile')
272 ce.setAttribute('src', c.src)
273 ce.setAttribute('dest', c.dest)
274 e.appendChild(ce)
275
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500276 for l in p.linkfiles:
277 le = doc.createElement('linkfile')
278 le.setAttribute('src', l.src)
279 le.setAttribute('dest', l.dest)
280 e.appendChild(le)
281
Conley Owensbb1b5f52012-08-13 13:11:18 -0700282 default_groups = ['all', 'name:%s' % p.name, 'path:%s' % p.relpath]
Dmitry Fink17f85ea2012-08-06 14:52:29 -0700283 egroups = [g for g in p.groups if g not in default_groups]
Conley Owens971de8e2012-04-16 10:36:08 -0700284 if egroups:
285 e.setAttribute('groups', ','.join(egroups))
Colin Cross5acde752012-03-28 20:15:45 -0700286
James W. Mills24c13082012-04-12 15:04:13 -0500287 for a in p.annotations:
288 if a.keep == "true":
289 ae = doc.createElement('annotation')
290 ae.setAttribute('name', a.name)
291 ae.setAttribute('value', a.value)
292 e.appendChild(ae)
293
Anatol Pomazau79770d22012-04-20 14:41:59 -0700294 if p.sync_c:
295 e.setAttribute('sync-c', 'true')
296
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800297 if p.sync_s:
298 e.setAttribute('sync-s', 'true')
299
300 if p.subprojects:
David James8d201162013-10-11 17:03:19 -0700301 subprojects = set(subp.name for subp in p.subprojects)
302 output_projects(p, e, list(sorted(subprojects)))
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800303
David James8d201162013-10-11 17:03:19 -0700304 projects = set(p.name for p in self._paths.values() if not p.parent)
305 output_projects(None, root, list(sorted(projects)))
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800306
Doug Anderson37282b42011-03-04 11:54:18 -0800307 if self._repo_hooks_project:
308 root.appendChild(doc.createTextNode(''))
309 e = doc.createElement('repo-hooks')
310 e.setAttribute('in-project', self._repo_hooks_project.name)
311 e.setAttribute('enabled-list',
312 ' '.join(self._repo_hooks_project.enabled_repo_hooks))
313 root.appendChild(e)
314
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800315 doc.writexml(fd, '', ' ', '\n', 'UTF-8')
316
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700317 @property
David James8d201162013-10-11 17:03:19 -0700318 def paths(self):
319 self._Load()
320 return self._paths
321
322 @property
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700323 def projects(self):
324 self._Load()
Anthony Kingd58bfe52014-05-05 23:30:49 +0100325 return list(self._paths.values())
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700326
327 @property
328 def remotes(self):
329 self._Load()
330 return self._remotes
331
332 @property
333 def default(self):
334 self._Load()
335 return self._default
336
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800337 @property
Doug Anderson37282b42011-03-04 11:54:18 -0800338 def repo_hooks_project(self):
339 self._Load()
340 return self._repo_hooks_project
341
342 @property
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700343 def notice(self):
344 self._Load()
345 return self._notice
346
347 @property
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700348 def manifest_server(self):
349 self._Load()
Shawn O. Pearce34fb20f2011-11-30 13:41:02 -0800350 return self._manifest_server
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700351
352 @property
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800353 def IsMirror(self):
354 return self.manifestProject.config.GetBoolean('repo.mirror')
355
Julien Campergue335f5ef2013-10-16 11:02:35 +0200356 @property
357 def IsArchive(self):
358 return self.manifestProject.config.GetBoolean('repo.archive')
359
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700360 def _Unload(self):
361 self._loaded = False
362 self._projects = {}
David James8d201162013-10-11 17:03:19 -0700363 self._paths = {}
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700364 self._remotes = {}
365 self._default = None
Doug Anderson37282b42011-03-04 11:54:18 -0800366 self._repo_hooks_project = None
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700367 self._notice = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700368 self.branch = None
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700369 self._manifest_server = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700370
371 def _Load(self):
372 if not self._loaded:
Shawn O. Pearce2450a292008-11-04 08:22:07 -0800373 m = self.manifestProject
374 b = m.GetBranch(m.CurrentBranch).merge
Shawn O. Pearce21c5c342009-06-25 16:47:30 -0700375 if b is not None and b.startswith(R_HEADS):
Shawn O. Pearce2450a292008-11-04 08:22:07 -0800376 b = b[len(R_HEADS):]
377 self.branch = b
378
Colin Cross23acdd32012-04-21 00:33:54 -0700379 nodes = []
Brian Harring475a47d2012-06-07 20:05:35 -0700380 nodes.append(self._ParseManifestXml(self.manifestFile,
381 self.manifestProject.worktree))
Shawn O. Pearce5cc66792008-10-23 16:19:27 -0700382
383 local = os.path.join(self.repodir, LOCAL_MANIFEST_NAME)
384 if os.path.exists(local):
David Pursehouse4eb285c2013-02-14 16:28:44 +0900385 if not self.localManifestWarning:
386 self.localManifestWarning = True
387 print('warning: %s is deprecated; put local manifests in `%s` instead'
388 % (LOCAL_MANIFEST_NAME, os.path.join(self.repodir, LOCAL_MANIFESTS_DIR_NAME)),
389 file=sys.stderr)
Brian Harring475a47d2012-06-07 20:05:35 -0700390 nodes.append(self._ParseManifestXml(local, self.repodir))
Colin Cross23acdd32012-04-21 00:33:54 -0700391
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900392 local_dir = os.path.abspath(os.path.join(self.repodir, LOCAL_MANIFESTS_DIR_NAME))
393 try:
David Pursehouse52f1e5d2012-11-14 04:53:24 +0900394 for local_file in sorted(os.listdir(local_dir)):
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900395 if local_file.endswith('.xml'):
David Pursehouse5f434ed2012-11-22 13:48:10 +0900396 local = os.path.join(local_dir, local_file)
397 nodes.append(self._ParseManifestXml(local, self.repodir))
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900398 except OSError:
399 pass
400
Joe Onorato26e24752013-01-11 12:35:53 -0800401 try:
402 self._ParseManifest(nodes)
403 except ManifestParseError as e:
404 # There was a problem parsing, unload ourselves in case they catch
405 # this error and try again later, we will show the correct error
406 self._Unload()
407 raise e
Shawn O. Pearce5cc66792008-10-23 16:19:27 -0700408
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800409 if self.IsMirror:
410 self._AddMetaProjectMirror(self.repoProject)
411 self._AddMetaProjectMirror(self.manifestProject)
412
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700413 self._loaded = True
414
Brian Harring475a47d2012-06-07 20:05:35 -0700415 def _ParseManifestXml(self, path, include_root):
David Pursehousef7fc8a92012-11-13 04:00:28 +0900416 try:
417 root = xml.dom.minidom.parse(path)
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900418 except (OSError, xml.parsers.expat.ExpatError) as e:
David Pursehousef7fc8a92012-11-13 04:00:28 +0900419 raise ManifestParseError("error parsing manifest %s: %s" % (path, e))
420
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700421 if not root or not root.childNodes:
Brian Harring26448742011-04-28 05:04:41 -0700422 raise ManifestParseError("no root node in %s" % (path,))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700423
Jooncheol Park34acdd22012-08-27 02:25:59 +0900424 for manifest in root.childNodes:
425 if manifest.nodeName == 'manifest':
426 break
427 else:
Brian Harring26448742011-04-28 05:04:41 -0700428 raise ManifestParseError("no <manifest> in %s" % (path,))
429
Colin Cross23acdd32012-04-21 00:33:54 -0700430 nodes = []
David Pursehouse4f7bdea2012-10-22 12:50:15 +0900431 for node in manifest.childNodes: # pylint:disable=W0631
David Pursehouse5c6eeac2012-10-11 16:44:48 +0900432 # We only get here if manifest is initialised
David Pursehousec1b86a22012-11-14 11:36:51 +0900433 if node.nodeName == 'include':
434 name = self._reqatt(node, 'name')
435 fp = os.path.join(include_root, name)
436 if not os.path.isfile(fp):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530437 raise ManifestParseError("include %s doesn't exist or isn't a file"
438 % (name,))
David Pursehousec1b86a22012-11-14 11:36:51 +0900439 try:
440 nodes.extend(self._ParseManifestXml(fp, include_root))
441 # should isolate this to the exact exception, but that's
442 # tricky. actual parsing implementation may vary.
443 except (KeyboardInterrupt, RuntimeError, SystemExit):
444 raise
445 except Exception as e:
446 raise ManifestParseError(
447 "failed parsing included manifest %s: %s", (name, e))
448 else:
449 nodes.append(node)
Colin Cross23acdd32012-04-21 00:33:54 -0700450 return nodes
Brian Harring26448742011-04-28 05:04:41 -0700451
Colin Cross23acdd32012-04-21 00:33:54 -0700452 def _ParseManifest(self, node_list):
453 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700454 if node.nodeName == 'remote':
455 remote = self._ParseRemote(node)
David Pursehouse717ece92012-11-13 08:49:16 +0900456 if remote:
457 if remote.name in self._remotes:
458 if remote != self._remotes[remote.name]:
459 raise ManifestParseError(
460 'remote %s already exists with different attributes' %
461 (remote.name))
462 else:
463 self._remotes[remote.name] = remote
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700464
Colin Cross23acdd32012-04-21 00:33:54 -0700465 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700466 if node.nodeName == 'default':
Julien Campergue74879922013-10-09 14:38:46 +0200467 new_default = self._ParseDefault(node)
468 if self._default is None:
469 self._default = new_default
470 elif new_default != self._default:
David Pursehouse37128b62013-10-15 10:48:40 +0900471 raise ManifestParseError('duplicate default in %s' %
472 (self.manifestFile))
Julien Campergue74879922013-10-09 14:38:46 +0200473
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700474 if self._default is None:
475 self._default = _Default()
476
Colin Cross23acdd32012-04-21 00:33:54 -0700477 for node in itertools.chain(*node_list):
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700478 if node.nodeName == 'notice':
479 if self._notice is not None:
Doug Anderson37282b42011-03-04 11:54:18 -0800480 raise ManifestParseError(
481 'duplicate notice in %s' %
482 (self.manifestFile))
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700483 self._notice = self._ParseNotice(node)
484
Colin Cross23acdd32012-04-21 00:33:54 -0700485 for node in itertools.chain(*node_list):
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700486 if node.nodeName == 'manifest-server':
487 url = self._reqatt(node, 'url')
488 if self._manifest_server is not None:
David Pursehousec1b86a22012-11-14 11:36:51 +0900489 raise ManifestParseError(
490 'duplicate manifest-server in %s' %
491 (self.manifestFile))
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700492 self._manifest_server = url
493
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800494 def recursively_add_projects(project):
David James8d201162013-10-11 17:03:19 -0700495 projects = self._projects.setdefault(project.name, [])
496 if project.relpath is None:
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800497 raise ManifestParseError(
David James8d201162013-10-11 17:03:19 -0700498 'missing path for %s in %s' %
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800499 (project.name, self.manifestFile))
David James8d201162013-10-11 17:03:19 -0700500 if project.relpath in self._paths:
501 raise ManifestParseError(
502 'duplicate path %s in %s' %
503 (project.relpath, self.manifestFile))
504 self._paths[project.relpath] = project
505 projects.append(project)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800506 for subproject in project.subprojects:
507 recursively_add_projects(subproject)
508
Colin Cross23acdd32012-04-21 00:33:54 -0700509 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700510 if node.nodeName == 'project':
511 project = self._ParseProject(node)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800512 recursively_add_projects(project)
Josh Triplett884a3872014-06-12 14:57:29 -0700513 if node.nodeName == 'extend-project':
514 name = self._reqatt(node, 'name')
515
516 if name not in self._projects:
517 raise ManifestParseError('extend-project element specifies non-existent '
518 'project: %s' % name)
519
520 path = node.getAttribute('path')
521 groups = node.getAttribute('groups')
522 if groups:
523 groups = self._ParseGroups(groups)
524
525 for p in self._projects[name]:
526 if path and p.relpath != path:
527 continue
528 if groups:
529 p.groups.extend(groups)
Doug Anderson37282b42011-03-04 11:54:18 -0800530 if node.nodeName == 'repo-hooks':
531 # Get the name of the project and the (space-separated) list of enabled.
532 repo_hooks_project = self._reqatt(node, 'in-project')
533 enabled_repo_hooks = self._reqatt(node, 'enabled-list').split()
534
535 # Only one project can be the hooks project
536 if self._repo_hooks_project is not None:
537 raise ManifestParseError(
538 'duplicate repo-hooks in %s' %
539 (self.manifestFile))
540
541 # Store a reference to the Project.
542 try:
David James8d201162013-10-11 17:03:19 -0700543 repo_hooks_projects = self._projects[repo_hooks_project]
Doug Anderson37282b42011-03-04 11:54:18 -0800544 except KeyError:
545 raise ManifestParseError(
546 'project %s not found for repo-hooks' %
547 (repo_hooks_project))
548
David James8d201162013-10-11 17:03:19 -0700549 if len(repo_hooks_projects) != 1:
550 raise ManifestParseError(
551 'internal error parsing repo-hooks in %s' %
552 (self.manifestFile))
553 self._repo_hooks_project = repo_hooks_projects[0]
554
Doug Anderson37282b42011-03-04 11:54:18 -0800555 # Store the enabled hooks in the Project object.
556 self._repo_hooks_project.enabled_repo_hooks = enabled_repo_hooks
Colin Cross23acdd32012-04-21 00:33:54 -0700557 if node.nodeName == 'remove-project':
558 name = self._reqatt(node, 'name')
David Jamesb8433df2014-01-30 10:11:17 -0800559
560 if name not in self._projects:
David Pursehousef9107482012-11-16 19:12:32 +0900561 raise ManifestParseError('remove-project element specifies non-existent '
562 'project: %s' % name)
Colin Cross23acdd32012-04-21 00:33:54 -0700563
David Jamesb8433df2014-01-30 10:11:17 -0800564 for p in self._projects[name]:
565 del self._paths[p.relpath]
566 del self._projects[name]
567
Colin Cross23acdd32012-04-21 00:33:54 -0700568 # If the manifest removes the hooks project, treat it as if it deleted
569 # the repo-hooks element too.
570 if self._repo_hooks_project and (self._repo_hooks_project.name == name):
571 self._repo_hooks_project = None
572
Doug Anderson37282b42011-03-04 11:54:18 -0800573
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800574 def _AddMetaProjectMirror(self, m):
575 name = None
576 m_url = m.GetRemote(m.remote.name).url
577 if m_url.endswith('/.git'):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530578 raise ManifestParseError('refusing to mirror %s' % m_url)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800579
580 if self._default and self._default.remote:
Conley Owensceea3682011-10-20 10:45:47 -0700581 url = self._default.remote.resolvedFetchUrl
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800582 if not url.endswith('/'):
583 url += '/'
584 if m_url.startswith(url):
585 remote = self._default.remote
586 name = m_url[len(url):]
587
588 if name is None:
589 s = m_url.rindex('/') + 1
Conley Owensdb728cd2011-09-26 16:34:01 -0700590 manifestUrl = self.manifestProject.config.GetString('remote.origin.url')
Shawn O. Pearcef35b2d92012-08-02 11:46:22 -0700591 remote = _XmlRemote('origin', fetch=m_url[:s], manifestUrl=manifestUrl)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800592 name = m_url[s:]
593
594 if name.endswith('.git'):
595 name = name[:-4]
596
597 if name not in self._projects:
598 m.PreSync()
599 gitdir = os.path.join(self.topdir, '%s.git' % name)
600 project = Project(manifest = self,
601 name = name,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -0700602 remote = remote.ToRemoteSpec(name),
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800603 gitdir = gitdir,
David James8d201162013-10-11 17:03:19 -0700604 objdir = gitdir,
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800605 worktree = None,
Kwanhong Leeccd218c2014-02-17 13:07:32 +0900606 relpath = name or None,
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700607 revisionExpr = m.revisionExpr,
608 revisionId = None)
David James8d201162013-10-11 17:03:19 -0700609 self._projects[project.name] = [project]
Kwanhong Leeccd218c2014-02-17 13:07:32 +0900610 self._paths[project.relpath] = project
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800611
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700612 def _ParseRemote(self, node):
613 """
614 reads a <remote> element from the manifest file
615 """
616 name = self._reqatt(node, 'name')
Yestin Sunb292b982012-07-02 07:32:50 -0700617 alias = node.getAttribute('alias')
618 if alias == '':
619 alias = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700620 fetch = self._reqatt(node, 'fetch')
621 review = node.getAttribute('review')
Shawn O. Pearceae6e0942008-11-06 10:25:35 -0800622 if review == '':
623 review = None
Anthony King36ea2fb2014-05-06 11:54:01 +0100624 revision = node.getAttribute('revision')
625 if revision == '':
626 revision = None
Conley Owensdb728cd2011-09-26 16:34:01 -0700627 manifestUrl = self.manifestProject.config.GetString('remote.origin.url')
Jonathan Nieder93719792015-03-17 11:29:58 -0700628 return _XmlRemote(name, alias, fetch, manifestUrl, review, revision)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700629
630 def _ParseDefault(self, node):
631 """
632 reads a <default> element from the manifest file
633 """
634 d = _Default()
635 d.remote = self._get_remote(node)
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700636 d.revisionExpr = node.getAttribute('revision')
637 if d.revisionExpr == '':
638 d.revisionExpr = None
Anatol Pomazau79770d22012-04-20 14:41:59 -0700639
Bryan Jacobsf609f912013-05-06 13:36:24 -0400640 d.destBranchExpr = node.getAttribute('dest-branch') or None
641
Shawn O. Pearce6392c872011-09-22 17:44:31 -0700642 sync_j = node.getAttribute('sync-j')
643 if sync_j == '' or sync_j is None:
644 d.sync_j = 1
645 else:
646 d.sync_j = int(sync_j)
Anatol Pomazau79770d22012-04-20 14:41:59 -0700647
648 sync_c = node.getAttribute('sync-c')
649 if not sync_c:
650 d.sync_c = False
651 else:
652 d.sync_c = sync_c.lower() in ("yes", "true", "1")
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800653
654 sync_s = node.getAttribute('sync-s')
655 if not sync_s:
656 d.sync_s = False
657 else:
658 d.sync_s = sync_s.lower() in ("yes", "true", "1")
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700659 return d
660
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700661 def _ParseNotice(self, node):
662 """
663 reads a <notice> element from the manifest file
664
665 The <notice> element is distinct from other tags in the XML in that the
666 data is conveyed between the start and end tag (it's not an empty-element
667 tag).
668
669 The white space (carriage returns, indentation) for the notice element is
670 relevant and is parsed in a way that is based on how python docstrings work.
671 In fact, the code is remarkably similar to here:
672 http://www.python.org/dev/peps/pep-0257/
673 """
674 # Get the data out of the node...
675 notice = node.childNodes[0].data
676
677 # Figure out minimum indentation, skipping the first line (the same line
678 # as the <notice> tag)...
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530679 minIndent = sys.maxsize
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700680 lines = notice.splitlines()
681 for line in lines[1:]:
682 lstrippedLine = line.lstrip()
683 if lstrippedLine:
684 indent = len(line) - len(lstrippedLine)
685 minIndent = min(indent, minIndent)
686
687 # Strip leading / trailing blank lines and also indentation.
688 cleanLines = [lines[0].strip()]
689 for line in lines[1:]:
690 cleanLines.append(line[minIndent:].rstrip())
691
692 # Clear completely blank lines from front and back...
693 while cleanLines and not cleanLines[0]:
694 del cleanLines[0]
695 while cleanLines and not cleanLines[-1]:
696 del cleanLines[-1]
697
698 return '\n'.join(cleanLines)
699
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800700 def _JoinName(self, parent_name, name):
701 return os.path.join(parent_name, name)
702
703 def _UnjoinName(self, parent_name, name):
704 return os.path.relpath(name, parent_name)
705
706 def _ParseProject(self, node, parent = None):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700707 """
708 reads a <project> element from the manifest file
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700709 """
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700710 name = self._reqatt(node, 'name')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800711 if parent:
712 name = self._JoinName(parent.name, name)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700713
714 remote = self._get_remote(node)
715 if remote is None:
716 remote = self._default.remote
717 if remote is None:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530718 raise ManifestParseError("no remote for project %s within %s" %
719 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700720
Anthony King36ea2fb2014-05-06 11:54:01 +0100721 revisionExpr = node.getAttribute('revision') or remote.revision
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700722 if not revisionExpr:
723 revisionExpr = self._default.revisionExpr
724 if not revisionExpr:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530725 raise ManifestParseError("no revision for project %s within %s" %
726 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700727
728 path = node.getAttribute('path')
729 if not path:
730 path = name
731 if path.startswith('/'):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530732 raise ManifestParseError("project %s path cannot be absolute in %s" %
733 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700734
Mike Pontillod3153822012-02-28 11:53:24 -0800735 rebase = node.getAttribute('rebase')
736 if not rebase:
737 rebase = True
738 else:
739 rebase = rebase.lower() in ("yes", "true", "1")
740
Anatol Pomazau79770d22012-04-20 14:41:59 -0700741 sync_c = node.getAttribute('sync-c')
742 if not sync_c:
743 sync_c = False
744 else:
745 sync_c = sync_c.lower() in ("yes", "true", "1")
746
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800747 sync_s = node.getAttribute('sync-s')
748 if not sync_s:
749 sync_s = self._default.sync_s
750 else:
751 sync_s = sync_s.lower() in ("yes", "true", "1")
752
David Pursehouseede7f122012-11-27 22:25:30 +0900753 clone_depth = node.getAttribute('clone-depth')
754 if clone_depth:
755 try:
756 clone_depth = int(clone_depth)
757 if clone_depth <= 0:
758 raise ValueError()
759 except ValueError:
760 raise ManifestParseError('invalid clone-depth %s in %s' %
761 (clone_depth, self.manifestFile))
762
Bryan Jacobsf609f912013-05-06 13:36:24 -0400763 dest_branch = node.getAttribute('dest-branch') or self._default.destBranchExpr
764
Brian Harring14a66742012-09-28 20:21:57 -0700765 upstream = node.getAttribute('upstream')
766
Conley Owens971de8e2012-04-16 10:36:08 -0700767 groups = ''
768 if node.hasAttribute('groups'):
769 groups = node.getAttribute('groups')
Josh Triplett884a3872014-06-12 14:57:29 -0700770 groups = self._ParseGroups(groups)
Brian Harring7da13142012-06-15 02:24:20 -0700771
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800772 if parent is None:
David James8d201162013-10-11 17:03:19 -0700773 relpath, worktree, gitdir, objdir = self.GetProjectPaths(name, path)
Shawn O. Pearcecd81dd62012-10-26 12:18:00 -0700774 else:
David James8d201162013-10-11 17:03:19 -0700775 relpath, worktree, gitdir, objdir = \
776 self.GetSubprojectPaths(parent, name, path)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800777
778 default_groups = ['all', 'name:%s' % name, 'path:%s' % relpath]
779 groups.extend(set(default_groups).difference(groups))
Shawn O. Pearcecd81dd62012-10-26 12:18:00 -0700780
Scott Fandb83b1b2013-02-28 09:34:14 +0800781 if self.IsMirror and node.hasAttribute('force-path'):
782 if node.getAttribute('force-path').lower() in ("yes", "true", "1"):
783 gitdir = os.path.join(self.topdir, '%s.git' % path)
784
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700785 project = Project(manifest = self,
786 name = name,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -0700787 remote = remote.ToRemoteSpec(name),
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700788 gitdir = gitdir,
David James8d201162013-10-11 17:03:19 -0700789 objdir = objdir,
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700790 worktree = worktree,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800791 relpath = relpath,
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700792 revisionExpr = revisionExpr,
Mike Pontillod3153822012-02-28 11:53:24 -0800793 revisionId = None,
Colin Cross5acde752012-03-28 20:15:45 -0700794 rebase = rebase,
Anatol Pomazau79770d22012-04-20 14:41:59 -0700795 groups = groups,
Brian Harring14a66742012-09-28 20:21:57 -0700796 sync_c = sync_c,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800797 sync_s = sync_s,
David Pursehouseede7f122012-11-27 22:25:30 +0900798 clone_depth = clone_depth,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800799 upstream = upstream,
Bryan Jacobsf609f912013-05-06 13:36:24 -0400800 parent = parent,
801 dest_branch = dest_branch)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700802
803 for n in node.childNodes:
Shawn O. Pearce242b5262009-05-19 13:00:29 -0700804 if n.nodeName == 'copyfile':
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700805 self._ParseCopyFile(project, n)
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500806 if n.nodeName == 'linkfile':
807 self._ParseLinkFile(project, n)
James W. Mills24c13082012-04-12 15:04:13 -0500808 if n.nodeName == 'annotation':
809 self._ParseAnnotation(project, n)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800810 if n.nodeName == 'project':
811 project.subprojects.append(self._ParseProject(n, parent = project))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700812
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700813 return project
814
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800815 def GetProjectPaths(self, name, path):
816 relpath = path
817 if self.IsMirror:
818 worktree = None
819 gitdir = os.path.join(self.topdir, '%s.git' % name)
David James8d201162013-10-11 17:03:19 -0700820 objdir = gitdir
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800821 else:
822 worktree = os.path.join(self.topdir, path).replace('\\', '/')
823 gitdir = os.path.join(self.repodir, 'projects', '%s.git' % path)
David James8d201162013-10-11 17:03:19 -0700824 objdir = os.path.join(self.repodir, 'project-objects', '%s.git' % name)
825 return relpath, worktree, gitdir, objdir
826
827 def GetProjectsWithName(self, name):
828 return self._projects.get(name, [])
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800829
830 def GetSubprojectName(self, parent, submodule_path):
831 return os.path.join(parent.name, submodule_path)
832
833 def _JoinRelpath(self, parent_relpath, relpath):
834 return os.path.join(parent_relpath, relpath)
835
836 def _UnjoinRelpath(self, parent_relpath, relpath):
837 return os.path.relpath(relpath, parent_relpath)
838
David James8d201162013-10-11 17:03:19 -0700839 def GetSubprojectPaths(self, parent, name, path):
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800840 relpath = self._JoinRelpath(parent.relpath, path)
841 gitdir = os.path.join(parent.gitdir, 'subprojects', '%s.git' % path)
David James8d201162013-10-11 17:03:19 -0700842 objdir = os.path.join(parent.gitdir, 'subproject-objects', '%s.git' % name)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800843 if self.IsMirror:
844 worktree = None
845 else:
846 worktree = os.path.join(parent.worktree, path).replace('\\', '/')
David James8d201162013-10-11 17:03:19 -0700847 return relpath, worktree, gitdir, objdir
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800848
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700849 def _ParseCopyFile(self, project, node):
850 src = self._reqatt(node, 'src')
851 dest = self._reqatt(node, 'dest')
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800852 if not self.IsMirror:
853 # src is project relative;
854 # dest is relative to the top of the tree
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800855 project.AddCopyFile(src, dest, os.path.join(self.topdir, dest))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700856
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500857 def _ParseLinkFile(self, project, node):
858 src = self._reqatt(node, 'src')
859 dest = self._reqatt(node, 'dest')
860 if not self.IsMirror:
861 # src is project relative;
862 # dest is relative to the top of the tree
863 project.AddLinkFile(src, dest, os.path.join(self.topdir, dest))
864
James W. Mills24c13082012-04-12 15:04:13 -0500865 def _ParseAnnotation(self, project, node):
866 name = self._reqatt(node, 'name')
867 value = self._reqatt(node, 'value')
868 try:
869 keep = self._reqatt(node, 'keep').lower()
870 except ManifestParseError:
871 keep = "true"
872 if keep != "true" and keep != "false":
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530873 raise ManifestParseError('optional "keep" attribute must be '
874 '"true" or "false"')
James W. Mills24c13082012-04-12 15:04:13 -0500875 project.AddAnnotation(name, value, keep)
876
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700877 def _get_remote(self, node):
878 name = node.getAttribute('remote')
879 if not name:
880 return None
881
882 v = self._remotes.get(name)
883 if not v:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530884 raise ManifestParseError("remote %s not defined in %s" %
885 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700886 return v
887
888 def _reqatt(self, node, attname):
889 """
890 reads a required attribute from the node.
891 """
892 v = node.getAttribute(attname)
893 if not v:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530894 raise ManifestParseError("no %s in <%s> within %s" %
895 (attname, node.nodeName, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700896 return v
Julien Camperguedd654222014-01-09 16:21:37 +0100897
898 def projectsDiff(self, manifest):
899 """return the projects differences between two manifests.
900
901 The diff will be from self to given manifest.
902
903 """
904 fromProjects = self.paths
905 toProjects = manifest.paths
906
Anthony King7446c592014-05-06 09:19:39 +0100907 fromKeys = sorted(fromProjects.keys())
908 toKeys = sorted(toProjects.keys())
Julien Camperguedd654222014-01-09 16:21:37 +0100909
910 diff = {'added': [], 'removed': [], 'changed': [], 'unreachable': []}
911
912 for proj in fromKeys:
913 if not proj in toKeys:
914 diff['removed'].append(fromProjects[proj])
915 else:
916 fromProj = fromProjects[proj]
917 toProj = toProjects[proj]
918 try:
919 fromRevId = fromProj.GetCommitRevisionId()
920 toRevId = toProj.GetCommitRevisionId()
921 except ManifestInvalidRevisionError:
922 diff['unreachable'].append((fromProj, toProj))
923 else:
924 if fromRevId != toRevId:
925 diff['changed'].append((fromProj, toProj))
926 toKeys.remove(proj)
927
928 for proj in toKeys:
929 diff['added'].append(toProjects[proj])
930
931 return diff