blob: cfbd9efaa9f791f0d2f5f881ff10b9d105dc2e12 [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)
256 if peg_rev_upstream and value != p.revisionExpr:
257 # Only save the origin if the origin is not a sha1, and the default
258 # isn't our value, and the if the default doesn't already have that
259 # covered.
260 e.setAttribute('upstream', p.revisionExpr)
Anthony King36ea2fb2014-05-06 11:54:01 +0100261 else:
262 revision = self.remotes[remoteName].revision or d.revisionExpr
263 if not revision or revision != p.revisionExpr:
264 e.setAttribute('revision', p.revisionExpr)
Mani Chandel7a91d512014-07-24 16:27:08 +0530265 if p.upstream and p.upstream != p.revisionExpr:
266 e.setAttribute('upstream', p.upstream)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800267
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800268 for c in p.copyfiles:
269 ce = doc.createElement('copyfile')
270 ce.setAttribute('src', c.src)
271 ce.setAttribute('dest', c.dest)
272 e.appendChild(ce)
273
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500274 for l in p.linkfiles:
275 le = doc.createElement('linkfile')
276 le.setAttribute('src', l.src)
277 le.setAttribute('dest', l.dest)
278 e.appendChild(le)
279
Conley Owensbb1b5f52012-08-13 13:11:18 -0700280 default_groups = ['all', 'name:%s' % p.name, 'path:%s' % p.relpath]
Dmitry Fink17f85ea2012-08-06 14:52:29 -0700281 egroups = [g for g in p.groups if g not in default_groups]
Conley Owens971de8e2012-04-16 10:36:08 -0700282 if egroups:
283 e.setAttribute('groups', ','.join(egroups))
Colin Cross5acde752012-03-28 20:15:45 -0700284
James W. Mills24c13082012-04-12 15:04:13 -0500285 for a in p.annotations:
286 if a.keep == "true":
287 ae = doc.createElement('annotation')
288 ae.setAttribute('name', a.name)
289 ae.setAttribute('value', a.value)
290 e.appendChild(ae)
291
Anatol Pomazau79770d22012-04-20 14:41:59 -0700292 if p.sync_c:
293 e.setAttribute('sync-c', 'true')
294
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800295 if p.sync_s:
296 e.setAttribute('sync-s', 'true')
297
298 if p.subprojects:
David James8d201162013-10-11 17:03:19 -0700299 subprojects = set(subp.name for subp in p.subprojects)
300 output_projects(p, e, list(sorted(subprojects)))
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800301
David James8d201162013-10-11 17:03:19 -0700302 projects = set(p.name for p in self._paths.values() if not p.parent)
303 output_projects(None, root, list(sorted(projects)))
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800304
Doug Anderson37282b42011-03-04 11:54:18 -0800305 if self._repo_hooks_project:
306 root.appendChild(doc.createTextNode(''))
307 e = doc.createElement('repo-hooks')
308 e.setAttribute('in-project', self._repo_hooks_project.name)
309 e.setAttribute('enabled-list',
310 ' '.join(self._repo_hooks_project.enabled_repo_hooks))
311 root.appendChild(e)
312
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800313 doc.writexml(fd, '', ' ', '\n', 'UTF-8')
314
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700315 @property
David James8d201162013-10-11 17:03:19 -0700316 def paths(self):
317 self._Load()
318 return self._paths
319
320 @property
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700321 def projects(self):
322 self._Load()
Anthony Kingd58bfe52014-05-05 23:30:49 +0100323 return list(self._paths.values())
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700324
325 @property
326 def remotes(self):
327 self._Load()
328 return self._remotes
329
330 @property
331 def default(self):
332 self._Load()
333 return self._default
334
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800335 @property
Doug Anderson37282b42011-03-04 11:54:18 -0800336 def repo_hooks_project(self):
337 self._Load()
338 return self._repo_hooks_project
339
340 @property
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700341 def notice(self):
342 self._Load()
343 return self._notice
344
345 @property
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700346 def manifest_server(self):
347 self._Load()
Shawn O. Pearce34fb20f2011-11-30 13:41:02 -0800348 return self._manifest_server
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700349
350 @property
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800351 def IsMirror(self):
352 return self.manifestProject.config.GetBoolean('repo.mirror')
353
Julien Campergue335f5ef2013-10-16 11:02:35 +0200354 @property
355 def IsArchive(self):
356 return self.manifestProject.config.GetBoolean('repo.archive')
357
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700358 def _Unload(self):
359 self._loaded = False
360 self._projects = {}
David James8d201162013-10-11 17:03:19 -0700361 self._paths = {}
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700362 self._remotes = {}
363 self._default = None
Doug Anderson37282b42011-03-04 11:54:18 -0800364 self._repo_hooks_project = None
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700365 self._notice = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700366 self.branch = None
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700367 self._manifest_server = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700368
369 def _Load(self):
370 if not self._loaded:
Shawn O. Pearce2450a292008-11-04 08:22:07 -0800371 m = self.manifestProject
372 b = m.GetBranch(m.CurrentBranch).merge
Shawn O. Pearce21c5c342009-06-25 16:47:30 -0700373 if b is not None and b.startswith(R_HEADS):
Shawn O. Pearce2450a292008-11-04 08:22:07 -0800374 b = b[len(R_HEADS):]
375 self.branch = b
376
Colin Cross23acdd32012-04-21 00:33:54 -0700377 nodes = []
Brian Harring475a47d2012-06-07 20:05:35 -0700378 nodes.append(self._ParseManifestXml(self.manifestFile,
379 self.manifestProject.worktree))
Shawn O. Pearce5cc66792008-10-23 16:19:27 -0700380
381 local = os.path.join(self.repodir, LOCAL_MANIFEST_NAME)
382 if os.path.exists(local):
David Pursehouse4eb285c2013-02-14 16:28:44 +0900383 if not self.localManifestWarning:
384 self.localManifestWarning = True
385 print('warning: %s is deprecated; put local manifests in `%s` instead'
386 % (LOCAL_MANIFEST_NAME, os.path.join(self.repodir, LOCAL_MANIFESTS_DIR_NAME)),
387 file=sys.stderr)
Brian Harring475a47d2012-06-07 20:05:35 -0700388 nodes.append(self._ParseManifestXml(local, self.repodir))
Colin Cross23acdd32012-04-21 00:33:54 -0700389
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900390 local_dir = os.path.abspath(os.path.join(self.repodir, LOCAL_MANIFESTS_DIR_NAME))
391 try:
David Pursehouse52f1e5d2012-11-14 04:53:24 +0900392 for local_file in sorted(os.listdir(local_dir)):
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900393 if local_file.endswith('.xml'):
David Pursehouse5f434ed2012-11-22 13:48:10 +0900394 local = os.path.join(local_dir, local_file)
395 nodes.append(self._ParseManifestXml(local, self.repodir))
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900396 except OSError:
397 pass
398
Joe Onorato26e24752013-01-11 12:35:53 -0800399 try:
400 self._ParseManifest(nodes)
401 except ManifestParseError as e:
402 # There was a problem parsing, unload ourselves in case they catch
403 # this error and try again later, we will show the correct error
404 self._Unload()
405 raise e
Shawn O. Pearce5cc66792008-10-23 16:19:27 -0700406
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800407 if self.IsMirror:
408 self._AddMetaProjectMirror(self.repoProject)
409 self._AddMetaProjectMirror(self.manifestProject)
410
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700411 self._loaded = True
412
Brian Harring475a47d2012-06-07 20:05:35 -0700413 def _ParseManifestXml(self, path, include_root):
David Pursehousef7fc8a92012-11-13 04:00:28 +0900414 try:
415 root = xml.dom.minidom.parse(path)
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900416 except (OSError, xml.parsers.expat.ExpatError) as e:
David Pursehousef7fc8a92012-11-13 04:00:28 +0900417 raise ManifestParseError("error parsing manifest %s: %s" % (path, e))
418
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700419 if not root or not root.childNodes:
Brian Harring26448742011-04-28 05:04:41 -0700420 raise ManifestParseError("no root node in %s" % (path,))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700421
Jooncheol Park34acdd22012-08-27 02:25:59 +0900422 for manifest in root.childNodes:
423 if manifest.nodeName == 'manifest':
424 break
425 else:
Brian Harring26448742011-04-28 05:04:41 -0700426 raise ManifestParseError("no <manifest> in %s" % (path,))
427
Colin Cross23acdd32012-04-21 00:33:54 -0700428 nodes = []
David Pursehouse4f7bdea2012-10-22 12:50:15 +0900429 for node in manifest.childNodes: # pylint:disable=W0631
David Pursehouse5c6eeac2012-10-11 16:44:48 +0900430 # We only get here if manifest is initialised
David Pursehousec1b86a22012-11-14 11:36:51 +0900431 if node.nodeName == 'include':
432 name = self._reqatt(node, 'name')
433 fp = os.path.join(include_root, name)
434 if not os.path.isfile(fp):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530435 raise ManifestParseError("include %s doesn't exist or isn't a file"
436 % (name,))
David Pursehousec1b86a22012-11-14 11:36:51 +0900437 try:
438 nodes.extend(self._ParseManifestXml(fp, include_root))
439 # should isolate this to the exact exception, but that's
440 # tricky. actual parsing implementation may vary.
441 except (KeyboardInterrupt, RuntimeError, SystemExit):
442 raise
443 except Exception as e:
444 raise ManifestParseError(
445 "failed parsing included manifest %s: %s", (name, e))
446 else:
447 nodes.append(node)
Colin Cross23acdd32012-04-21 00:33:54 -0700448 return nodes
Brian Harring26448742011-04-28 05:04:41 -0700449
Colin Cross23acdd32012-04-21 00:33:54 -0700450 def _ParseManifest(self, node_list):
451 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700452 if node.nodeName == 'remote':
453 remote = self._ParseRemote(node)
David Pursehouse717ece92012-11-13 08:49:16 +0900454 if remote:
455 if remote.name in self._remotes:
456 if remote != self._remotes[remote.name]:
457 raise ManifestParseError(
458 'remote %s already exists with different attributes' %
459 (remote.name))
460 else:
461 self._remotes[remote.name] = remote
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700462
Colin Cross23acdd32012-04-21 00:33:54 -0700463 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700464 if node.nodeName == 'default':
Julien Campergue74879922013-10-09 14:38:46 +0200465 new_default = self._ParseDefault(node)
466 if self._default is None:
467 self._default = new_default
468 elif new_default != self._default:
David Pursehouse37128b62013-10-15 10:48:40 +0900469 raise ManifestParseError('duplicate default in %s' %
470 (self.manifestFile))
Julien Campergue74879922013-10-09 14:38:46 +0200471
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700472 if self._default is None:
473 self._default = _Default()
474
Colin Cross23acdd32012-04-21 00:33:54 -0700475 for node in itertools.chain(*node_list):
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700476 if node.nodeName == 'notice':
477 if self._notice is not None:
Doug Anderson37282b42011-03-04 11:54:18 -0800478 raise ManifestParseError(
479 'duplicate notice in %s' %
480 (self.manifestFile))
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700481 self._notice = self._ParseNotice(node)
482
Colin Cross23acdd32012-04-21 00:33:54 -0700483 for node in itertools.chain(*node_list):
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700484 if node.nodeName == 'manifest-server':
485 url = self._reqatt(node, 'url')
486 if self._manifest_server is not None:
David Pursehousec1b86a22012-11-14 11:36:51 +0900487 raise ManifestParseError(
488 'duplicate manifest-server in %s' %
489 (self.manifestFile))
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700490 self._manifest_server = url
491
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800492 def recursively_add_projects(project):
David James8d201162013-10-11 17:03:19 -0700493 projects = self._projects.setdefault(project.name, [])
494 if project.relpath is None:
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800495 raise ManifestParseError(
David James8d201162013-10-11 17:03:19 -0700496 'missing path for %s in %s' %
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800497 (project.name, self.manifestFile))
David James8d201162013-10-11 17:03:19 -0700498 if project.relpath in self._paths:
499 raise ManifestParseError(
500 'duplicate path %s in %s' %
501 (project.relpath, self.manifestFile))
502 self._paths[project.relpath] = project
503 projects.append(project)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800504 for subproject in project.subprojects:
505 recursively_add_projects(subproject)
506
Colin Cross23acdd32012-04-21 00:33:54 -0700507 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700508 if node.nodeName == 'project':
509 project = self._ParseProject(node)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800510 recursively_add_projects(project)
Josh Triplett884a3872014-06-12 14:57:29 -0700511 if node.nodeName == 'extend-project':
512 name = self._reqatt(node, 'name')
513
514 if name not in self._projects:
515 raise ManifestParseError('extend-project element specifies non-existent '
516 'project: %s' % name)
517
518 path = node.getAttribute('path')
519 groups = node.getAttribute('groups')
520 if groups:
521 groups = self._ParseGroups(groups)
522
523 for p in self._projects[name]:
524 if path and p.relpath != path:
525 continue
526 if groups:
527 p.groups.extend(groups)
Doug Anderson37282b42011-03-04 11:54:18 -0800528 if node.nodeName == 'repo-hooks':
529 # Get the name of the project and the (space-separated) list of enabled.
530 repo_hooks_project = self._reqatt(node, 'in-project')
531 enabled_repo_hooks = self._reqatt(node, 'enabled-list').split()
532
533 # Only one project can be the hooks project
534 if self._repo_hooks_project is not None:
535 raise ManifestParseError(
536 'duplicate repo-hooks in %s' %
537 (self.manifestFile))
538
539 # Store a reference to the Project.
540 try:
David James8d201162013-10-11 17:03:19 -0700541 repo_hooks_projects = self._projects[repo_hooks_project]
Doug Anderson37282b42011-03-04 11:54:18 -0800542 except KeyError:
543 raise ManifestParseError(
544 'project %s not found for repo-hooks' %
545 (repo_hooks_project))
546
David James8d201162013-10-11 17:03:19 -0700547 if len(repo_hooks_projects) != 1:
548 raise ManifestParseError(
549 'internal error parsing repo-hooks in %s' %
550 (self.manifestFile))
551 self._repo_hooks_project = repo_hooks_projects[0]
552
Doug Anderson37282b42011-03-04 11:54:18 -0800553 # Store the enabled hooks in the Project object.
554 self._repo_hooks_project.enabled_repo_hooks = enabled_repo_hooks
Colin Cross23acdd32012-04-21 00:33:54 -0700555 if node.nodeName == 'remove-project':
556 name = self._reqatt(node, 'name')
David Jamesb8433df2014-01-30 10:11:17 -0800557
558 if name not in self._projects:
David Pursehousef9107482012-11-16 19:12:32 +0900559 raise ManifestParseError('remove-project element specifies non-existent '
560 'project: %s' % name)
Colin Cross23acdd32012-04-21 00:33:54 -0700561
David Jamesb8433df2014-01-30 10:11:17 -0800562 for p in self._projects[name]:
563 del self._paths[p.relpath]
564 del self._projects[name]
565
Colin Cross23acdd32012-04-21 00:33:54 -0700566 # If the manifest removes the hooks project, treat it as if it deleted
567 # the repo-hooks element too.
568 if self._repo_hooks_project and (self._repo_hooks_project.name == name):
569 self._repo_hooks_project = None
570
Doug Anderson37282b42011-03-04 11:54:18 -0800571
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800572 def _AddMetaProjectMirror(self, m):
573 name = None
574 m_url = m.GetRemote(m.remote.name).url
575 if m_url.endswith('/.git'):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530576 raise ManifestParseError('refusing to mirror %s' % m_url)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800577
578 if self._default and self._default.remote:
Conley Owensceea3682011-10-20 10:45:47 -0700579 url = self._default.remote.resolvedFetchUrl
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800580 if not url.endswith('/'):
581 url += '/'
582 if m_url.startswith(url):
583 remote = self._default.remote
584 name = m_url[len(url):]
585
586 if name is None:
587 s = m_url.rindex('/') + 1
Conley Owensdb728cd2011-09-26 16:34:01 -0700588 manifestUrl = self.manifestProject.config.GetString('remote.origin.url')
Shawn O. Pearcef35b2d92012-08-02 11:46:22 -0700589 remote = _XmlRemote('origin', fetch=m_url[:s], manifestUrl=manifestUrl)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800590 name = m_url[s:]
591
592 if name.endswith('.git'):
593 name = name[:-4]
594
595 if name not in self._projects:
596 m.PreSync()
597 gitdir = os.path.join(self.topdir, '%s.git' % name)
598 project = Project(manifest = self,
599 name = name,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -0700600 remote = remote.ToRemoteSpec(name),
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800601 gitdir = gitdir,
David James8d201162013-10-11 17:03:19 -0700602 objdir = gitdir,
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800603 worktree = None,
Kwanhong Leeccd218c2014-02-17 13:07:32 +0900604 relpath = name or None,
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700605 revisionExpr = m.revisionExpr,
606 revisionId = None)
David James8d201162013-10-11 17:03:19 -0700607 self._projects[project.name] = [project]
Kwanhong Leeccd218c2014-02-17 13:07:32 +0900608 self._paths[project.relpath] = project
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800609
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700610 def _ParseRemote(self, node):
611 """
612 reads a <remote> element from the manifest file
613 """
614 name = self._reqatt(node, 'name')
Yestin Sunb292b982012-07-02 07:32:50 -0700615 alias = node.getAttribute('alias')
616 if alias == '':
617 alias = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700618 fetch = self._reqatt(node, 'fetch')
619 review = node.getAttribute('review')
Shawn O. Pearceae6e0942008-11-06 10:25:35 -0800620 if review == '':
621 review = None
Anthony King36ea2fb2014-05-06 11:54:01 +0100622 revision = node.getAttribute('revision')
623 if revision == '':
624 revision = None
Conley Owensdb728cd2011-09-26 16:34:01 -0700625 manifestUrl = self.manifestProject.config.GetString('remote.origin.url')
Jonathan Nieder93719792015-03-17 11:29:58 -0700626 return _XmlRemote(name, alias, fetch, manifestUrl, review, revision)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700627
628 def _ParseDefault(self, node):
629 """
630 reads a <default> element from the manifest file
631 """
632 d = _Default()
633 d.remote = self._get_remote(node)
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700634 d.revisionExpr = node.getAttribute('revision')
635 if d.revisionExpr == '':
636 d.revisionExpr = None
Anatol Pomazau79770d22012-04-20 14:41:59 -0700637
Bryan Jacobsf609f912013-05-06 13:36:24 -0400638 d.destBranchExpr = node.getAttribute('dest-branch') or None
639
Shawn O. Pearce6392c872011-09-22 17:44:31 -0700640 sync_j = node.getAttribute('sync-j')
641 if sync_j == '' or sync_j is None:
642 d.sync_j = 1
643 else:
644 d.sync_j = int(sync_j)
Anatol Pomazau79770d22012-04-20 14:41:59 -0700645
646 sync_c = node.getAttribute('sync-c')
647 if not sync_c:
648 d.sync_c = False
649 else:
650 d.sync_c = sync_c.lower() in ("yes", "true", "1")
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800651
652 sync_s = node.getAttribute('sync-s')
653 if not sync_s:
654 d.sync_s = False
655 else:
656 d.sync_s = sync_s.lower() in ("yes", "true", "1")
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700657 return d
658
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700659 def _ParseNotice(self, node):
660 """
661 reads a <notice> element from the manifest file
662
663 The <notice> element is distinct from other tags in the XML in that the
664 data is conveyed between the start and end tag (it's not an empty-element
665 tag).
666
667 The white space (carriage returns, indentation) for the notice element is
668 relevant and is parsed in a way that is based on how python docstrings work.
669 In fact, the code is remarkably similar to here:
670 http://www.python.org/dev/peps/pep-0257/
671 """
672 # Get the data out of the node...
673 notice = node.childNodes[0].data
674
675 # Figure out minimum indentation, skipping the first line (the same line
676 # as the <notice> tag)...
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530677 minIndent = sys.maxsize
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700678 lines = notice.splitlines()
679 for line in lines[1:]:
680 lstrippedLine = line.lstrip()
681 if lstrippedLine:
682 indent = len(line) - len(lstrippedLine)
683 minIndent = min(indent, minIndent)
684
685 # Strip leading / trailing blank lines and also indentation.
686 cleanLines = [lines[0].strip()]
687 for line in lines[1:]:
688 cleanLines.append(line[minIndent:].rstrip())
689
690 # Clear completely blank lines from front and back...
691 while cleanLines and not cleanLines[0]:
692 del cleanLines[0]
693 while cleanLines and not cleanLines[-1]:
694 del cleanLines[-1]
695
696 return '\n'.join(cleanLines)
697
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800698 def _JoinName(self, parent_name, name):
699 return os.path.join(parent_name, name)
700
701 def _UnjoinName(self, parent_name, name):
702 return os.path.relpath(name, parent_name)
703
704 def _ParseProject(self, node, parent = None):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700705 """
706 reads a <project> element from the manifest file
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700707 """
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700708 name = self._reqatt(node, 'name')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800709 if parent:
710 name = self._JoinName(parent.name, name)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700711
712 remote = self._get_remote(node)
713 if remote is None:
714 remote = self._default.remote
715 if remote is None:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530716 raise ManifestParseError("no remote for project %s within %s" %
717 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700718
Anthony King36ea2fb2014-05-06 11:54:01 +0100719 revisionExpr = node.getAttribute('revision') or remote.revision
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700720 if not revisionExpr:
721 revisionExpr = self._default.revisionExpr
722 if not revisionExpr:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530723 raise ManifestParseError("no revision for project %s within %s" %
724 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700725
726 path = node.getAttribute('path')
727 if not path:
728 path = name
729 if path.startswith('/'):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530730 raise ManifestParseError("project %s path cannot be absolute in %s" %
731 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700732
Mike Pontillod3153822012-02-28 11:53:24 -0800733 rebase = node.getAttribute('rebase')
734 if not rebase:
735 rebase = True
736 else:
737 rebase = rebase.lower() in ("yes", "true", "1")
738
Anatol Pomazau79770d22012-04-20 14:41:59 -0700739 sync_c = node.getAttribute('sync-c')
740 if not sync_c:
741 sync_c = False
742 else:
743 sync_c = sync_c.lower() in ("yes", "true", "1")
744
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800745 sync_s = node.getAttribute('sync-s')
746 if not sync_s:
747 sync_s = self._default.sync_s
748 else:
749 sync_s = sync_s.lower() in ("yes", "true", "1")
750
David Pursehouseede7f122012-11-27 22:25:30 +0900751 clone_depth = node.getAttribute('clone-depth')
752 if clone_depth:
753 try:
754 clone_depth = int(clone_depth)
755 if clone_depth <= 0:
756 raise ValueError()
757 except ValueError:
758 raise ManifestParseError('invalid clone-depth %s in %s' %
759 (clone_depth, self.manifestFile))
760
Bryan Jacobsf609f912013-05-06 13:36:24 -0400761 dest_branch = node.getAttribute('dest-branch') or self._default.destBranchExpr
762
Brian Harring14a66742012-09-28 20:21:57 -0700763 upstream = node.getAttribute('upstream')
764
Conley Owens971de8e2012-04-16 10:36:08 -0700765 groups = ''
766 if node.hasAttribute('groups'):
767 groups = node.getAttribute('groups')
Josh Triplett884a3872014-06-12 14:57:29 -0700768 groups = self._ParseGroups(groups)
Brian Harring7da13142012-06-15 02:24:20 -0700769
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800770 if parent is None:
David James8d201162013-10-11 17:03:19 -0700771 relpath, worktree, gitdir, objdir = self.GetProjectPaths(name, path)
Shawn O. Pearcecd81dd62012-10-26 12:18:00 -0700772 else:
David James8d201162013-10-11 17:03:19 -0700773 relpath, worktree, gitdir, objdir = \
774 self.GetSubprojectPaths(parent, name, path)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800775
776 default_groups = ['all', 'name:%s' % name, 'path:%s' % relpath]
777 groups.extend(set(default_groups).difference(groups))
Shawn O. Pearcecd81dd62012-10-26 12:18:00 -0700778
Scott Fandb83b1b2013-02-28 09:34:14 +0800779 if self.IsMirror and node.hasAttribute('force-path'):
780 if node.getAttribute('force-path').lower() in ("yes", "true", "1"):
781 gitdir = os.path.join(self.topdir, '%s.git' % path)
782
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700783 project = Project(manifest = self,
784 name = name,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -0700785 remote = remote.ToRemoteSpec(name),
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700786 gitdir = gitdir,
David James8d201162013-10-11 17:03:19 -0700787 objdir = objdir,
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700788 worktree = worktree,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800789 relpath = relpath,
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700790 revisionExpr = revisionExpr,
Mike Pontillod3153822012-02-28 11:53:24 -0800791 revisionId = None,
Colin Cross5acde752012-03-28 20:15:45 -0700792 rebase = rebase,
Anatol Pomazau79770d22012-04-20 14:41:59 -0700793 groups = groups,
Brian Harring14a66742012-09-28 20:21:57 -0700794 sync_c = sync_c,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800795 sync_s = sync_s,
David Pursehouseede7f122012-11-27 22:25:30 +0900796 clone_depth = clone_depth,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800797 upstream = upstream,
Bryan Jacobsf609f912013-05-06 13:36:24 -0400798 parent = parent,
799 dest_branch = dest_branch)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700800
801 for n in node.childNodes:
Shawn O. Pearce242b5262009-05-19 13:00:29 -0700802 if n.nodeName == 'copyfile':
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700803 self._ParseCopyFile(project, n)
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500804 if n.nodeName == 'linkfile':
805 self._ParseLinkFile(project, n)
James W. Mills24c13082012-04-12 15:04:13 -0500806 if n.nodeName == 'annotation':
807 self._ParseAnnotation(project, n)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800808 if n.nodeName == 'project':
809 project.subprojects.append(self._ParseProject(n, parent = project))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700810
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700811 return project
812
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800813 def GetProjectPaths(self, name, path):
814 relpath = path
815 if self.IsMirror:
816 worktree = None
817 gitdir = os.path.join(self.topdir, '%s.git' % name)
David James8d201162013-10-11 17:03:19 -0700818 objdir = gitdir
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800819 else:
820 worktree = os.path.join(self.topdir, path).replace('\\', '/')
821 gitdir = os.path.join(self.repodir, 'projects', '%s.git' % path)
David James8d201162013-10-11 17:03:19 -0700822 objdir = os.path.join(self.repodir, 'project-objects', '%s.git' % name)
823 return relpath, worktree, gitdir, objdir
824
825 def GetProjectsWithName(self, name):
826 return self._projects.get(name, [])
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800827
828 def GetSubprojectName(self, parent, submodule_path):
829 return os.path.join(parent.name, submodule_path)
830
831 def _JoinRelpath(self, parent_relpath, relpath):
832 return os.path.join(parent_relpath, relpath)
833
834 def _UnjoinRelpath(self, parent_relpath, relpath):
835 return os.path.relpath(relpath, parent_relpath)
836
David James8d201162013-10-11 17:03:19 -0700837 def GetSubprojectPaths(self, parent, name, path):
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800838 relpath = self._JoinRelpath(parent.relpath, path)
839 gitdir = os.path.join(parent.gitdir, 'subprojects', '%s.git' % path)
David James8d201162013-10-11 17:03:19 -0700840 objdir = os.path.join(parent.gitdir, 'subproject-objects', '%s.git' % name)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800841 if self.IsMirror:
842 worktree = None
843 else:
844 worktree = os.path.join(parent.worktree, path).replace('\\', '/')
David James8d201162013-10-11 17:03:19 -0700845 return relpath, worktree, gitdir, objdir
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800846
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700847 def _ParseCopyFile(self, project, node):
848 src = self._reqatt(node, 'src')
849 dest = self._reqatt(node, 'dest')
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800850 if not self.IsMirror:
851 # src is project relative;
852 # dest is relative to the top of the tree
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800853 project.AddCopyFile(src, dest, os.path.join(self.topdir, dest))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700854
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500855 def _ParseLinkFile(self, project, node):
856 src = self._reqatt(node, 'src')
857 dest = self._reqatt(node, 'dest')
858 if not self.IsMirror:
859 # src is project relative;
860 # dest is relative to the top of the tree
861 project.AddLinkFile(src, dest, os.path.join(self.topdir, dest))
862
James W. Mills24c13082012-04-12 15:04:13 -0500863 def _ParseAnnotation(self, project, node):
864 name = self._reqatt(node, 'name')
865 value = self._reqatt(node, 'value')
866 try:
867 keep = self._reqatt(node, 'keep').lower()
868 except ManifestParseError:
869 keep = "true"
870 if keep != "true" and keep != "false":
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530871 raise ManifestParseError('optional "keep" attribute must be '
872 '"true" or "false"')
James W. Mills24c13082012-04-12 15:04:13 -0500873 project.AddAnnotation(name, value, keep)
874
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700875 def _get_remote(self, node):
876 name = node.getAttribute('remote')
877 if not name:
878 return None
879
880 v = self._remotes.get(name)
881 if not v:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530882 raise ManifestParseError("remote %s not defined in %s" %
883 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700884 return v
885
886 def _reqatt(self, node, attname):
887 """
888 reads a required attribute from the node.
889 """
890 v = node.getAttribute(attname)
891 if not v:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530892 raise ManifestParseError("no %s in <%s> within %s" %
893 (attname, node.nodeName, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700894 return v
Julien Camperguedd654222014-01-09 16:21:37 +0100895
896 def projectsDiff(self, manifest):
897 """return the projects differences between two manifests.
898
899 The diff will be from self to given manifest.
900
901 """
902 fromProjects = self.paths
903 toProjects = manifest.paths
904
Anthony King7446c592014-05-06 09:19:39 +0100905 fromKeys = sorted(fromProjects.keys())
906 toKeys = sorted(toProjects.keys())
Julien Camperguedd654222014-01-09 16:21:37 +0100907
908 diff = {'added': [], 'removed': [], 'changed': [], 'unreachable': []}
909
910 for proj in fromKeys:
911 if not proj in toKeys:
912 diff['removed'].append(fromProjects[proj])
913 else:
914 fromProj = fromProjects[proj]
915 toProj = toProjects[proj]
916 try:
917 fromRevId = fromProj.GetCommitRevisionId()
918 toRevId = toProj.GetCommitRevisionId()
919 except ManifestInvalidRevisionError:
920 diff['unreachable'].append((fromProj, toProj))
921 else:
922 if fromRevId != toRevId:
923 diff['changed'].append((fromProj, toProj))
924 toKeys.remove(proj)
925
926 for proj in toKeys:
927 diff['added'].append(toProjects[proj])
928
929 return diff