blob: 7e719600fa8bac5e0aa4bf7167e07aa2f8e3b03a [file] [log] [blame]
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001#
2# Copyright (C) 2008 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
Sarah Owenscecd1d82012-11-01 22:59:27 -070016from __future__ import print_function
Colin Cross23acdd32012-04-21 00:33:54 -070017import itertools
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070018import os
Conley Owensdb728cd2011-09-26 16:34:01 -070019import re
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070020import sys
David Pursehouse59bbb582013-05-17 10:49:33 +090021import xml.dom.minidom
22
23from pyversion import is_python3
24if is_python3():
Chirayu Desai217ea7d2013-03-01 19:14:38 +053025 import urllib.parse
David Pursehouse59bbb582013-05-17 10:49:33 +090026else:
Chirayu Desai217ea7d2013-03-01 19:14:38 +053027 import imp
28 import urlparse
29 urllib = imp.new_module('urllib')
Chirayu Desaidb2ad9d2013-06-11 13:42:25 +053030 urllib.parse = urlparse
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070031
David Pursehousee15c65a2012-08-22 10:46:11 +090032from git_config import GitConfig
David Pursehousee00aa6b2012-09-11 14:33:51 +090033from git_refs import R_HEADS, HEAD
34from project import RemoteSpec, Project, MetaProject
Julien Camperguedd654222014-01-09 16:21:37 +010035from error import ManifestParseError, ManifestInvalidRevisionError
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070036
37MANIFEST_FILE_NAME = 'manifest.xml'
Shawn O. Pearce5cc66792008-10-23 16:19:27 -070038LOCAL_MANIFEST_NAME = 'local_manifest.xml'
David Pursehouse2d5a0df2012-11-13 02:50:36 +090039LOCAL_MANIFESTS_DIR_NAME = 'local_manifests'
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070040
Anthony Kingcb07ba72015-03-28 23:26:04 +000041# urljoin gets confused if the scheme is not known.
42urllib.parse.uses_relative.extend(['ssh', 'git', 'persistent-https', 'rpc'])
43urllib.parse.uses_netloc.extend(['ssh', 'git', 'persistent-https', 'rpc'])
Conley Owensdb728cd2011-09-26 16:34:01 -070044
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070045class _Default(object):
46 """Project defaults within the manifest."""
47
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -070048 revisionExpr = None
Conley Owensb6a16e62013-09-25 15:06:09 -070049 destBranchExpr = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070050 remote = None
Shawn O. Pearce6392c872011-09-22 17:44:31 -070051 sync_j = 1
Anatol Pomazau79770d22012-04-20 14:41:59 -070052 sync_c = False
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +080053 sync_s = False
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070054
Julien Campergue74879922013-10-09 14:38:46 +020055 def __eq__(self, other):
56 return self.__dict__ == other.__dict__
57
58 def __ne__(self, other):
59 return self.__dict__ != other.__dict__
60
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070061class _XmlRemote(object):
62 def __init__(self,
63 name,
Yestin Sunb292b982012-07-02 07:32:50 -070064 alias=None,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070065 fetch=None,
Conley Owensdb728cd2011-09-26 16:34:01 -070066 manifestUrl=None,
Anthony King36ea2fb2014-05-06 11:54:01 +010067 review=None,
Jonathan Nieder93719792015-03-17 11:29:58 -070068 revision=None):
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070069 self.name = name
70 self.fetchUrl = fetch
Conley Owensdb728cd2011-09-26 16:34:01 -070071 self.manifestUrl = manifestUrl
Yestin Sunb292b982012-07-02 07:32:50 -070072 self.remoteAlias = alias
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070073 self.reviewUrl = review
Anthony King36ea2fb2014-05-06 11:54:01 +010074 self.revision = revision
Conley Owensceea3682011-10-20 10:45:47 -070075 self.resolvedFetchUrl = self._resolveFetchUrl()
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070076
David Pursehouse717ece92012-11-13 08:49:16 +090077 def __eq__(self, other):
78 return self.__dict__ == other.__dict__
79
80 def __ne__(self, other):
81 return self.__dict__ != other.__dict__
82
Conley Owensceea3682011-10-20 10:45:47 -070083 def _resolveFetchUrl(self):
84 url = self.fetchUrl.rstrip('/')
Conley Owensdb728cd2011-09-26 16:34:01 -070085 manifestUrl = self.manifestUrl.rstrip('/')
Conley Owens2d0f5082014-01-31 15:03:51 -080086 # urljoin will gets confused over quite a few things. The ones we care
87 # about here are:
88 # * no scheme in the base url, like <hostname:port>
Anthony Kingcb07ba72015-03-28 23:26:04 +000089 # We handle no scheme by replacing it with an obscure protocol, gopher
90 # and then replacing it with the original when we are done.
91
Conley Owensdb728cd2011-09-26 16:34:01 -070092 if manifestUrl.find(':') != manifestUrl.find('/') - 1:
Conley Owens4ccad752015-04-29 10:45:37 -070093 url = urllib.parse.urljoin('gopher://' + manifestUrl, url)
94 url = re.sub(r'^gopher://', '', url)
Anthony Kingcb07ba72015-03-28 23:26:04 +000095 else:
96 url = urllib.parse.urljoin(manifestUrl, url)
Shawn Pearcea9f11b32013-01-02 15:40:48 -080097 return url
Conley Owensceea3682011-10-20 10:45:47 -070098
99 def ToRemoteSpec(self, projectName):
Conley Owens9d8f9142011-10-20 14:36:35 -0700100 url = self.resolvedFetchUrl.rstrip('/') + '/' + projectName
Yestin Sunb292b982012-07-02 07:32:50 -0700101 remoteName = self.name
Conley Owens1e7ab2a2013-10-08 17:26:57 -0700102 if self.remoteAlias:
David Pursehouse37128b62013-10-15 10:48:40 +0900103 remoteName = self.remoteAlias
Yestin Sunb292b982012-07-02 07:32:50 -0700104 return RemoteSpec(remoteName, url, self.reviewUrl)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700105
Shawn O. Pearcec8a300f2009-05-18 13:19:57 -0700106class XmlManifest(object):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700107 """manages the repo configuration file"""
108
109 def __init__(self, repodir):
110 self.repodir = os.path.abspath(repodir)
111 self.topdir = os.path.dirname(self.repodir)
112 self.manifestFile = os.path.join(self.repodir, MANIFEST_FILE_NAME)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700113 self.globalConfig = GitConfig.ForUser()
David Pursehouse4eb285c2013-02-14 16:28:44 +0900114 self.localManifestWarning = False
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700115
116 self.repoProject = MetaProject(self, 'repo',
117 gitdir = os.path.join(repodir, 'repo/.git'),
118 worktree = os.path.join(repodir, 'repo'))
119
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700120 self.manifestProject = MetaProject(self, 'manifests',
Shawn O. Pearcef5c25a62008-11-04 08:11:53 -0800121 gitdir = os.path.join(repodir, 'manifests.git'),
122 worktree = os.path.join(repodir, 'manifests'))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700123
124 self._Unload()
125
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700126 def Override(self, name):
127 """Use a different manifest, just for the current instantiation.
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700128 """
129 path = os.path.join(self.manifestProject.worktree, name)
130 if not os.path.isfile(path):
131 raise ManifestParseError('manifest %s not found' % name)
132
133 old = self.manifestFile
134 try:
135 self.manifestFile = path
136 self._Unload()
137 self._Load()
138 finally:
139 self.manifestFile = old
140
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700141 def Link(self, name):
142 """Update the repo metadata to use a different manifest.
143 """
144 self.Override(name)
145
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700146 try:
Sebastian Frias223bf962012-11-21 19:09:25 +0100147 if os.path.lexists(self.manifestFile):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700148 os.remove(self.manifestFile)
149 os.symlink('manifests/%s' % name, self.manifestFile)
Sebastian Frias223bf962012-11-21 19:09:25 +0100150 except OSError as e:
151 raise ManifestParseError('cannot link manifest %s: %s' % (name, str(e)))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700152
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800153 def _RemoteToXml(self, r, doc, root):
154 e = doc.createElement('remote')
155 root.appendChild(e)
156 e.setAttribute('name', r.name)
157 e.setAttribute('fetch', r.fetchUrl)
Conley Owens1e7ab2a2013-10-08 17:26:57 -0700158 if r.remoteAlias is not None:
159 e.setAttribute('alias', r.remoteAlias)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800160 if r.reviewUrl is not None:
161 e.setAttribute('review', r.reviewUrl)
Anthony King36ea2fb2014-05-06 11:54:01 +0100162 if r.revision is not None:
163 e.setAttribute('revision', r.revision)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800164
Josh Triplett884a3872014-06-12 14:57:29 -0700165 def _ParseGroups(self, groups):
166 return [x for x in re.split(r'[,\s]+', groups) if x]
167
Brian Harring14a66742012-09-28 20:21:57 -0700168 def Save(self, fd, peg_rev=False, peg_rev_upstream=True):
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800169 """Write the current manifest out to the given file descriptor.
170 """
Colin Cross5acde752012-03-28 20:15:45 -0700171 mp = self.manifestProject
172
173 groups = mp.config.GetString('manifest.groups')
Matt Gumbel0c635bb2012-12-21 10:14:53 -0800174 if groups:
Josh Triplett884a3872014-06-12 14:57:29 -0700175 groups = self._ParseGroups(groups)
Colin Cross5acde752012-03-28 20:15:45 -0700176
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800177 doc = xml.dom.minidom.Document()
178 root = doc.createElement('manifest')
179 doc.appendChild(root)
180
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700181 # Save out the notice. There's a little bit of work here to give it the
182 # right whitespace, which assumes that the notice is automatically indented
183 # by 4 by minidom.
184 if self.notice:
185 notice_element = root.appendChild(doc.createElement('notice'))
186 notice_lines = self.notice.splitlines()
187 indented_notice = ('\n'.join(" "*4 + line for line in notice_lines))[4:]
188 notice_element.appendChild(doc.createTextNode(indented_notice))
189
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800190 d = self.default
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800191
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530192 for r in sorted(self.remotes):
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800193 self._RemoteToXml(self.remotes[r], doc, root)
194 if self.remotes:
195 root.appendChild(doc.createTextNode(''))
196
197 have_default = False
198 e = doc.createElement('default')
199 if d.remote:
200 have_default = True
201 e.setAttribute('remote', d.remote.name)
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700202 if d.revisionExpr:
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800203 have_default = True
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700204 e.setAttribute('revision', d.revisionExpr)
Simon Ruggier7e59de22015-07-24 12:50:06 +0200205 if d.destBranchExpr:
206 have_default = True
207 e.setAttribute('dest-branch', d.destBranchExpr)
Shawn O. Pearce6392c872011-09-22 17:44:31 -0700208 if d.sync_j > 1:
209 have_default = True
210 e.setAttribute('sync-j', '%d' % d.sync_j)
Anatol Pomazau79770d22012-04-20 14:41:59 -0700211 if d.sync_c:
212 have_default = True
213 e.setAttribute('sync-c', 'true')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800214 if d.sync_s:
215 have_default = True
216 e.setAttribute('sync-s', 'true')
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800217 if have_default:
218 root.appendChild(e)
219 root.appendChild(doc.createTextNode(''))
220
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700221 if self._manifest_server:
222 e = doc.createElement('manifest-server')
223 e.setAttribute('url', self._manifest_server)
224 root.appendChild(e)
225 root.appendChild(doc.createTextNode(''))
226
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800227 def output_projects(parent, parent_node, projects):
David James8d201162013-10-11 17:03:19 -0700228 for project_name in projects:
229 for project in self._projects[project_name]:
230 output_project(parent, parent_node, project)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800231
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800232 def output_project(parent, parent_node, p):
Colin Cross5acde752012-03-28 20:15:45 -0700233 if not p.MatchesGroups(groups):
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800234 return
235
236 name = p.name
237 relpath = p.relpath
238 if parent:
239 name = self._UnjoinName(parent.name, name)
240 relpath = self._UnjoinRelpath(parent.relpath, relpath)
Colin Cross5acde752012-03-28 20:15:45 -0700241
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800242 e = doc.createElement('project')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800243 parent_node.appendChild(e)
244 e.setAttribute('name', name)
245 if relpath != name:
246 e.setAttribute('path', relpath)
Conley Owensa17d7af2013-10-16 14:38:09 -0700247 remoteName = None
248 if d.remote:
Conley Owensce201a52013-10-16 14:42:42 -0700249 remoteName = d.remote.remoteAlias or d.remote.name
Conley Owens1e7ab2a2013-10-08 17:26:57 -0700250 if not d.remote or p.remote.name != remoteName:
Anthony King36ea2fb2014-05-06 11:54:01 +0100251 remoteName = p.remote.name
252 e.setAttribute('remote', remoteName)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800253 if peg_rev:
254 if self.IsMirror:
Brian Harring14a66742012-09-28 20:21:57 -0700255 value = p.bare_git.rev_parse(p.revisionExpr + '^0')
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800256 else:
Brian Harring14a66742012-09-28 20:21:57 -0700257 value = p.work_git.rev_parse(HEAD + '^0')
258 e.setAttribute('revision', value)
Conley Owens551dfec2015-07-10 14:54:54 -0700259 if peg_rev_upstream:
260 if p.upstream:
261 e.setAttribute('upstream', p.upstream)
262 elif value != p.revisionExpr:
263 # Only save the origin if the origin is not a sha1, and the default
264 # isn't our value
265 e.setAttribute('upstream', p.revisionExpr)
Anthony King36ea2fb2014-05-06 11:54:01 +0100266 else:
267 revision = self.remotes[remoteName].revision or d.revisionExpr
268 if not revision or revision != p.revisionExpr:
269 e.setAttribute('revision', p.revisionExpr)
Mani Chandel7a91d512014-07-24 16:27:08 +0530270 if p.upstream and p.upstream != p.revisionExpr:
271 e.setAttribute('upstream', p.upstream)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800272
Simon Ruggier7e59de22015-07-24 12:50:06 +0200273 if p.dest_branch and p.dest_branch != d.destBranchExpr:
274 e.setAttribute('dest-branch', p.dest_branch)
275
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800276 for c in p.copyfiles:
277 ce = doc.createElement('copyfile')
278 ce.setAttribute('src', c.src)
279 ce.setAttribute('dest', c.dest)
280 e.appendChild(ce)
281
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500282 for l in p.linkfiles:
283 le = doc.createElement('linkfile')
284 le.setAttribute('src', l.src)
285 le.setAttribute('dest', l.dest)
286 e.appendChild(le)
287
Conley Owensbb1b5f52012-08-13 13:11:18 -0700288 default_groups = ['all', 'name:%s' % p.name, 'path:%s' % p.relpath]
Dmitry Fink17f85ea2012-08-06 14:52:29 -0700289 egroups = [g for g in p.groups if g not in default_groups]
Conley Owens971de8e2012-04-16 10:36:08 -0700290 if egroups:
291 e.setAttribute('groups', ','.join(egroups))
Colin Cross5acde752012-03-28 20:15:45 -0700292
James W. Mills24c13082012-04-12 15:04:13 -0500293 for a in p.annotations:
294 if a.keep == "true":
295 ae = doc.createElement('annotation')
296 ae.setAttribute('name', a.name)
297 ae.setAttribute('value', a.value)
298 e.appendChild(ae)
299
Anatol Pomazau79770d22012-04-20 14:41:59 -0700300 if p.sync_c:
301 e.setAttribute('sync-c', 'true')
302
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800303 if p.sync_s:
304 e.setAttribute('sync-s', 'true')
305
306 if p.subprojects:
David James8d201162013-10-11 17:03:19 -0700307 subprojects = set(subp.name for subp in p.subprojects)
308 output_projects(p, e, list(sorted(subprojects)))
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800309
David James8d201162013-10-11 17:03:19 -0700310 projects = set(p.name for p in self._paths.values() if not p.parent)
311 output_projects(None, root, list(sorted(projects)))
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800312
Doug Anderson37282b42011-03-04 11:54:18 -0800313 if self._repo_hooks_project:
314 root.appendChild(doc.createTextNode(''))
315 e = doc.createElement('repo-hooks')
316 e.setAttribute('in-project', self._repo_hooks_project.name)
317 e.setAttribute('enabled-list',
318 ' '.join(self._repo_hooks_project.enabled_repo_hooks))
319 root.appendChild(e)
320
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800321 doc.writexml(fd, '', ' ', '\n', 'UTF-8')
322
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700323 @property
David James8d201162013-10-11 17:03:19 -0700324 def paths(self):
325 self._Load()
326 return self._paths
327
328 @property
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700329 def projects(self):
330 self._Load()
Anthony Kingd58bfe52014-05-05 23:30:49 +0100331 return list(self._paths.values())
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700332
333 @property
334 def remotes(self):
335 self._Load()
336 return self._remotes
337
338 @property
339 def default(self):
340 self._Load()
341 return self._default
342
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800343 @property
Doug Anderson37282b42011-03-04 11:54:18 -0800344 def repo_hooks_project(self):
345 self._Load()
346 return self._repo_hooks_project
347
348 @property
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700349 def notice(self):
350 self._Load()
351 return self._notice
352
353 @property
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700354 def manifest_server(self):
355 self._Load()
Shawn O. Pearce34fb20f2011-11-30 13:41:02 -0800356 return self._manifest_server
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700357
358 @property
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800359 def IsMirror(self):
360 return self.manifestProject.config.GetBoolean('repo.mirror')
361
Julien Campergue335f5ef2013-10-16 11:02:35 +0200362 @property
363 def IsArchive(self):
364 return self.manifestProject.config.GetBoolean('repo.archive')
365
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700366 def _Unload(self):
367 self._loaded = False
368 self._projects = {}
David James8d201162013-10-11 17:03:19 -0700369 self._paths = {}
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700370 self._remotes = {}
371 self._default = None
Doug Anderson37282b42011-03-04 11:54:18 -0800372 self._repo_hooks_project = None
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700373 self._notice = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700374 self.branch = None
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700375 self._manifest_server = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700376
377 def _Load(self):
378 if not self._loaded:
Shawn O. Pearce2450a292008-11-04 08:22:07 -0800379 m = self.manifestProject
380 b = m.GetBranch(m.CurrentBranch).merge
Shawn O. Pearce21c5c342009-06-25 16:47:30 -0700381 if b is not None and b.startswith(R_HEADS):
Shawn O. Pearce2450a292008-11-04 08:22:07 -0800382 b = b[len(R_HEADS):]
383 self.branch = b
384
Colin Cross23acdd32012-04-21 00:33:54 -0700385 nodes = []
Brian Harring475a47d2012-06-07 20:05:35 -0700386 nodes.append(self._ParseManifestXml(self.manifestFile,
387 self.manifestProject.worktree))
Shawn O. Pearce5cc66792008-10-23 16:19:27 -0700388
389 local = os.path.join(self.repodir, LOCAL_MANIFEST_NAME)
390 if os.path.exists(local):
David Pursehouse4eb285c2013-02-14 16:28:44 +0900391 if not self.localManifestWarning:
392 self.localManifestWarning = True
393 print('warning: %s is deprecated; put local manifests in `%s` instead'
394 % (LOCAL_MANIFEST_NAME, os.path.join(self.repodir, LOCAL_MANIFESTS_DIR_NAME)),
395 file=sys.stderr)
Brian Harring475a47d2012-06-07 20:05:35 -0700396 nodes.append(self._ParseManifestXml(local, self.repodir))
Colin Cross23acdd32012-04-21 00:33:54 -0700397
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900398 local_dir = os.path.abspath(os.path.join(self.repodir, LOCAL_MANIFESTS_DIR_NAME))
399 try:
David Pursehouse52f1e5d2012-11-14 04:53:24 +0900400 for local_file in sorted(os.listdir(local_dir)):
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900401 if local_file.endswith('.xml'):
David Pursehouse5f434ed2012-11-22 13:48:10 +0900402 local = os.path.join(local_dir, local_file)
403 nodes.append(self._ParseManifestXml(local, self.repodir))
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900404 except OSError:
405 pass
406
Joe Onorato26e24752013-01-11 12:35:53 -0800407 try:
408 self._ParseManifest(nodes)
409 except ManifestParseError as e:
410 # There was a problem parsing, unload ourselves in case they catch
411 # this error and try again later, we will show the correct error
412 self._Unload()
413 raise e
Shawn O. Pearce5cc66792008-10-23 16:19:27 -0700414
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800415 if self.IsMirror:
416 self._AddMetaProjectMirror(self.repoProject)
417 self._AddMetaProjectMirror(self.manifestProject)
418
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700419 self._loaded = True
420
Brian Harring475a47d2012-06-07 20:05:35 -0700421 def _ParseManifestXml(self, path, include_root):
David Pursehousef7fc8a92012-11-13 04:00:28 +0900422 try:
423 root = xml.dom.minidom.parse(path)
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900424 except (OSError, xml.parsers.expat.ExpatError) as e:
David Pursehousef7fc8a92012-11-13 04:00:28 +0900425 raise ManifestParseError("error parsing manifest %s: %s" % (path, e))
426
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700427 if not root or not root.childNodes:
Brian Harring26448742011-04-28 05:04:41 -0700428 raise ManifestParseError("no root node in %s" % (path,))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700429
Jooncheol Park34acdd22012-08-27 02:25:59 +0900430 for manifest in root.childNodes:
431 if manifest.nodeName == 'manifest':
432 break
433 else:
Brian Harring26448742011-04-28 05:04:41 -0700434 raise ManifestParseError("no <manifest> in %s" % (path,))
435
Colin Cross23acdd32012-04-21 00:33:54 -0700436 nodes = []
David Pursehouse4f7bdea2012-10-22 12:50:15 +0900437 for node in manifest.childNodes: # pylint:disable=W0631
David Pursehouse5c6eeac2012-10-11 16:44:48 +0900438 # We only get here if manifest is initialised
David Pursehousec1b86a22012-11-14 11:36:51 +0900439 if node.nodeName == 'include':
440 name = self._reqatt(node, 'name')
441 fp = os.path.join(include_root, name)
442 if not os.path.isfile(fp):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530443 raise ManifestParseError("include %s doesn't exist or isn't a file"
444 % (name,))
David Pursehousec1b86a22012-11-14 11:36:51 +0900445 try:
446 nodes.extend(self._ParseManifestXml(fp, include_root))
447 # should isolate this to the exact exception, but that's
448 # tricky. actual parsing implementation may vary.
449 except (KeyboardInterrupt, RuntimeError, SystemExit):
450 raise
451 except Exception as e:
452 raise ManifestParseError(
453 "failed parsing included manifest %s: %s", (name, e))
454 else:
455 nodes.append(node)
Colin Cross23acdd32012-04-21 00:33:54 -0700456 return nodes
Brian Harring26448742011-04-28 05:04:41 -0700457
Colin Cross23acdd32012-04-21 00:33:54 -0700458 def _ParseManifest(self, node_list):
459 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700460 if node.nodeName == 'remote':
461 remote = self._ParseRemote(node)
David Pursehouse717ece92012-11-13 08:49:16 +0900462 if remote:
463 if remote.name in self._remotes:
464 if remote != self._remotes[remote.name]:
465 raise ManifestParseError(
466 'remote %s already exists with different attributes' %
467 (remote.name))
468 else:
469 self._remotes[remote.name] = remote
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700470
Colin Cross23acdd32012-04-21 00:33:54 -0700471 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700472 if node.nodeName == 'default':
Julien Campergue74879922013-10-09 14:38:46 +0200473 new_default = self._ParseDefault(node)
474 if self._default is None:
475 self._default = new_default
476 elif new_default != self._default:
David Pursehouse37128b62013-10-15 10:48:40 +0900477 raise ManifestParseError('duplicate default in %s' %
478 (self.manifestFile))
Julien Campergue74879922013-10-09 14:38:46 +0200479
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700480 if self._default is None:
481 self._default = _Default()
482
Colin Cross23acdd32012-04-21 00:33:54 -0700483 for node in itertools.chain(*node_list):
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700484 if node.nodeName == 'notice':
485 if self._notice is not None:
Doug Anderson37282b42011-03-04 11:54:18 -0800486 raise ManifestParseError(
487 'duplicate notice in %s' %
488 (self.manifestFile))
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700489 self._notice = self._ParseNotice(node)
490
Colin Cross23acdd32012-04-21 00:33:54 -0700491 for node in itertools.chain(*node_list):
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700492 if node.nodeName == 'manifest-server':
493 url = self._reqatt(node, 'url')
494 if self._manifest_server is not None:
David Pursehousec1b86a22012-11-14 11:36:51 +0900495 raise ManifestParseError(
496 'duplicate manifest-server in %s' %
497 (self.manifestFile))
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700498 self._manifest_server = url
499
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800500 def recursively_add_projects(project):
David James8d201162013-10-11 17:03:19 -0700501 projects = self._projects.setdefault(project.name, [])
502 if project.relpath is None:
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800503 raise ManifestParseError(
David James8d201162013-10-11 17:03:19 -0700504 'missing path for %s in %s' %
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800505 (project.name, self.manifestFile))
David James8d201162013-10-11 17:03:19 -0700506 if project.relpath in self._paths:
507 raise ManifestParseError(
508 'duplicate path %s in %s' %
509 (project.relpath, self.manifestFile))
510 self._paths[project.relpath] = project
511 projects.append(project)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800512 for subproject in project.subprojects:
513 recursively_add_projects(subproject)
514
Colin Cross23acdd32012-04-21 00:33:54 -0700515 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700516 if node.nodeName == 'project':
517 project = self._ParseProject(node)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800518 recursively_add_projects(project)
Josh Triplett884a3872014-06-12 14:57:29 -0700519 if node.nodeName == 'extend-project':
520 name = self._reqatt(node, 'name')
521
522 if name not in self._projects:
523 raise ManifestParseError('extend-project element specifies non-existent '
524 'project: %s' % name)
525
526 path = node.getAttribute('path')
527 groups = node.getAttribute('groups')
528 if groups:
529 groups = self._ParseGroups(groups)
530
531 for p in self._projects[name]:
532 if path and p.relpath != path:
533 continue
534 if groups:
535 p.groups.extend(groups)
Doug Anderson37282b42011-03-04 11:54:18 -0800536 if node.nodeName == 'repo-hooks':
537 # Get the name of the project and the (space-separated) list of enabled.
538 repo_hooks_project = self._reqatt(node, 'in-project')
539 enabled_repo_hooks = self._reqatt(node, 'enabled-list').split()
540
541 # Only one project can be the hooks project
542 if self._repo_hooks_project is not None:
543 raise ManifestParseError(
544 'duplicate repo-hooks in %s' %
545 (self.manifestFile))
546
547 # Store a reference to the Project.
548 try:
David James8d201162013-10-11 17:03:19 -0700549 repo_hooks_projects = self._projects[repo_hooks_project]
Doug Anderson37282b42011-03-04 11:54:18 -0800550 except KeyError:
551 raise ManifestParseError(
552 'project %s not found for repo-hooks' %
553 (repo_hooks_project))
554
David James8d201162013-10-11 17:03:19 -0700555 if len(repo_hooks_projects) != 1:
556 raise ManifestParseError(
557 'internal error parsing repo-hooks in %s' %
558 (self.manifestFile))
559 self._repo_hooks_project = repo_hooks_projects[0]
560
Doug Anderson37282b42011-03-04 11:54:18 -0800561 # Store the enabled hooks in the Project object.
562 self._repo_hooks_project.enabled_repo_hooks = enabled_repo_hooks
Colin Cross23acdd32012-04-21 00:33:54 -0700563 if node.nodeName == 'remove-project':
564 name = self._reqatt(node, 'name')
David Jamesb8433df2014-01-30 10:11:17 -0800565
566 if name not in self._projects:
David Pursehousef9107482012-11-16 19:12:32 +0900567 raise ManifestParseError('remove-project element specifies non-existent '
568 'project: %s' % name)
Colin Cross23acdd32012-04-21 00:33:54 -0700569
David Jamesb8433df2014-01-30 10:11:17 -0800570 for p in self._projects[name]:
571 del self._paths[p.relpath]
572 del self._projects[name]
573
Colin Cross23acdd32012-04-21 00:33:54 -0700574 # If the manifest removes the hooks project, treat it as if it deleted
575 # the repo-hooks element too.
576 if self._repo_hooks_project and (self._repo_hooks_project.name == name):
577 self._repo_hooks_project = None
578
Doug Anderson37282b42011-03-04 11:54:18 -0800579
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800580 def _AddMetaProjectMirror(self, m):
581 name = None
582 m_url = m.GetRemote(m.remote.name).url
583 if m_url.endswith('/.git'):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530584 raise ManifestParseError('refusing to mirror %s' % m_url)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800585
586 if self._default and self._default.remote:
Conley Owensceea3682011-10-20 10:45:47 -0700587 url = self._default.remote.resolvedFetchUrl
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800588 if not url.endswith('/'):
589 url += '/'
590 if m_url.startswith(url):
591 remote = self._default.remote
592 name = m_url[len(url):]
593
594 if name is None:
595 s = m_url.rindex('/') + 1
Conley Owensdb728cd2011-09-26 16:34:01 -0700596 manifestUrl = self.manifestProject.config.GetString('remote.origin.url')
Shawn O. Pearcef35b2d92012-08-02 11:46:22 -0700597 remote = _XmlRemote('origin', fetch=m_url[:s], manifestUrl=manifestUrl)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800598 name = m_url[s:]
599
600 if name.endswith('.git'):
601 name = name[:-4]
602
603 if name not in self._projects:
604 m.PreSync()
605 gitdir = os.path.join(self.topdir, '%s.git' % name)
606 project = Project(manifest = self,
607 name = name,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -0700608 remote = remote.ToRemoteSpec(name),
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800609 gitdir = gitdir,
David James8d201162013-10-11 17:03:19 -0700610 objdir = gitdir,
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800611 worktree = None,
Kwanhong Leeccd218c2014-02-17 13:07:32 +0900612 relpath = name or None,
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700613 revisionExpr = m.revisionExpr,
614 revisionId = None)
David James8d201162013-10-11 17:03:19 -0700615 self._projects[project.name] = [project]
Kwanhong Leeccd218c2014-02-17 13:07:32 +0900616 self._paths[project.relpath] = project
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800617
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700618 def _ParseRemote(self, node):
619 """
620 reads a <remote> element from the manifest file
621 """
622 name = self._reqatt(node, 'name')
Yestin Sunb292b982012-07-02 07:32:50 -0700623 alias = node.getAttribute('alias')
624 if alias == '':
625 alias = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700626 fetch = self._reqatt(node, 'fetch')
627 review = node.getAttribute('review')
Shawn O. Pearceae6e0942008-11-06 10:25:35 -0800628 if review == '':
629 review = None
Anthony King36ea2fb2014-05-06 11:54:01 +0100630 revision = node.getAttribute('revision')
631 if revision == '':
632 revision = None
Conley Owensdb728cd2011-09-26 16:34:01 -0700633 manifestUrl = self.manifestProject.config.GetString('remote.origin.url')
Jonathan Nieder93719792015-03-17 11:29:58 -0700634 return _XmlRemote(name, alias, fetch, manifestUrl, review, revision)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700635
636 def _ParseDefault(self, node):
637 """
638 reads a <default> element from the manifest file
639 """
640 d = _Default()
641 d.remote = self._get_remote(node)
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700642 d.revisionExpr = node.getAttribute('revision')
643 if d.revisionExpr == '':
644 d.revisionExpr = None
Anatol Pomazau79770d22012-04-20 14:41:59 -0700645
Bryan Jacobsf609f912013-05-06 13:36:24 -0400646 d.destBranchExpr = node.getAttribute('dest-branch') or None
647
Shawn O. Pearce6392c872011-09-22 17:44:31 -0700648 sync_j = node.getAttribute('sync-j')
649 if sync_j == '' or sync_j is None:
650 d.sync_j = 1
651 else:
652 d.sync_j = int(sync_j)
Anatol Pomazau79770d22012-04-20 14:41:59 -0700653
654 sync_c = node.getAttribute('sync-c')
655 if not sync_c:
656 d.sync_c = False
657 else:
658 d.sync_c = sync_c.lower() in ("yes", "true", "1")
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800659
660 sync_s = node.getAttribute('sync-s')
661 if not sync_s:
662 d.sync_s = False
663 else:
664 d.sync_s = sync_s.lower() in ("yes", "true", "1")
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700665 return d
666
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700667 def _ParseNotice(self, node):
668 """
669 reads a <notice> element from the manifest file
670
671 The <notice> element is distinct from other tags in the XML in that the
672 data is conveyed between the start and end tag (it's not an empty-element
673 tag).
674
675 The white space (carriage returns, indentation) for the notice element is
676 relevant and is parsed in a way that is based on how python docstrings work.
677 In fact, the code is remarkably similar to here:
678 http://www.python.org/dev/peps/pep-0257/
679 """
680 # Get the data out of the node...
681 notice = node.childNodes[0].data
682
683 # Figure out minimum indentation, skipping the first line (the same line
684 # as the <notice> tag)...
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530685 minIndent = sys.maxsize
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700686 lines = notice.splitlines()
687 for line in lines[1:]:
688 lstrippedLine = line.lstrip()
689 if lstrippedLine:
690 indent = len(line) - len(lstrippedLine)
691 minIndent = min(indent, minIndent)
692
693 # Strip leading / trailing blank lines and also indentation.
694 cleanLines = [lines[0].strip()]
695 for line in lines[1:]:
696 cleanLines.append(line[minIndent:].rstrip())
697
698 # Clear completely blank lines from front and back...
699 while cleanLines and not cleanLines[0]:
700 del cleanLines[0]
701 while cleanLines and not cleanLines[-1]:
702 del cleanLines[-1]
703
704 return '\n'.join(cleanLines)
705
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800706 def _JoinName(self, parent_name, name):
707 return os.path.join(parent_name, name)
708
709 def _UnjoinName(self, parent_name, name):
710 return os.path.relpath(name, parent_name)
711
712 def _ParseProject(self, node, parent = None):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700713 """
714 reads a <project> element from the manifest file
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700715 """
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700716 name = self._reqatt(node, 'name')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800717 if parent:
718 name = self._JoinName(parent.name, name)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700719
720 remote = self._get_remote(node)
721 if remote is None:
722 remote = self._default.remote
723 if remote is None:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530724 raise ManifestParseError("no remote for project %s within %s" %
725 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700726
Anthony King36ea2fb2014-05-06 11:54:01 +0100727 revisionExpr = node.getAttribute('revision') or remote.revision
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700728 if not revisionExpr:
729 revisionExpr = self._default.revisionExpr
730 if not revisionExpr:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530731 raise ManifestParseError("no revision for project %s within %s" %
732 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700733
734 path = node.getAttribute('path')
735 if not path:
736 path = name
737 if path.startswith('/'):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530738 raise ManifestParseError("project %s path cannot be absolute in %s" %
739 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700740
Mike Pontillod3153822012-02-28 11:53:24 -0800741 rebase = node.getAttribute('rebase')
742 if not rebase:
743 rebase = True
744 else:
745 rebase = rebase.lower() in ("yes", "true", "1")
746
Anatol Pomazau79770d22012-04-20 14:41:59 -0700747 sync_c = node.getAttribute('sync-c')
748 if not sync_c:
749 sync_c = False
750 else:
751 sync_c = sync_c.lower() in ("yes", "true", "1")
752
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800753 sync_s = node.getAttribute('sync-s')
754 if not sync_s:
755 sync_s = self._default.sync_s
756 else:
757 sync_s = sync_s.lower() in ("yes", "true", "1")
758
David Pursehouseede7f122012-11-27 22:25:30 +0900759 clone_depth = node.getAttribute('clone-depth')
760 if clone_depth:
761 try:
762 clone_depth = int(clone_depth)
763 if clone_depth <= 0:
764 raise ValueError()
765 except ValueError:
766 raise ManifestParseError('invalid clone-depth %s in %s' %
767 (clone_depth, self.manifestFile))
768
Bryan Jacobsf609f912013-05-06 13:36:24 -0400769 dest_branch = node.getAttribute('dest-branch') or self._default.destBranchExpr
770
Brian Harring14a66742012-09-28 20:21:57 -0700771 upstream = node.getAttribute('upstream')
772
Conley Owens971de8e2012-04-16 10:36:08 -0700773 groups = ''
774 if node.hasAttribute('groups'):
775 groups = node.getAttribute('groups')
Josh Triplett884a3872014-06-12 14:57:29 -0700776 groups = self._ParseGroups(groups)
Brian Harring7da13142012-06-15 02:24:20 -0700777
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800778 if parent is None:
David James8d201162013-10-11 17:03:19 -0700779 relpath, worktree, gitdir, objdir = self.GetProjectPaths(name, path)
Shawn O. Pearcecd81dd62012-10-26 12:18:00 -0700780 else:
David James8d201162013-10-11 17:03:19 -0700781 relpath, worktree, gitdir, objdir = \
782 self.GetSubprojectPaths(parent, name, path)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800783
784 default_groups = ['all', 'name:%s' % name, 'path:%s' % relpath]
785 groups.extend(set(default_groups).difference(groups))
Shawn O. Pearcecd81dd62012-10-26 12:18:00 -0700786
Scott Fandb83b1b2013-02-28 09:34:14 +0800787 if self.IsMirror and node.hasAttribute('force-path'):
788 if node.getAttribute('force-path').lower() in ("yes", "true", "1"):
789 gitdir = os.path.join(self.topdir, '%s.git' % path)
790
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700791 project = Project(manifest = self,
792 name = name,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -0700793 remote = remote.ToRemoteSpec(name),
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700794 gitdir = gitdir,
David James8d201162013-10-11 17:03:19 -0700795 objdir = objdir,
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700796 worktree = worktree,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800797 relpath = relpath,
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700798 revisionExpr = revisionExpr,
Mike Pontillod3153822012-02-28 11:53:24 -0800799 revisionId = None,
Colin Cross5acde752012-03-28 20:15:45 -0700800 rebase = rebase,
Anatol Pomazau79770d22012-04-20 14:41:59 -0700801 groups = groups,
Brian Harring14a66742012-09-28 20:21:57 -0700802 sync_c = sync_c,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800803 sync_s = sync_s,
David Pursehouseede7f122012-11-27 22:25:30 +0900804 clone_depth = clone_depth,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800805 upstream = upstream,
Bryan Jacobsf609f912013-05-06 13:36:24 -0400806 parent = parent,
807 dest_branch = dest_branch)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700808
809 for n in node.childNodes:
Shawn O. Pearce242b5262009-05-19 13:00:29 -0700810 if n.nodeName == 'copyfile':
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700811 self._ParseCopyFile(project, n)
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500812 if n.nodeName == 'linkfile':
813 self._ParseLinkFile(project, n)
James W. Mills24c13082012-04-12 15:04:13 -0500814 if n.nodeName == 'annotation':
815 self._ParseAnnotation(project, n)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800816 if n.nodeName == 'project':
817 project.subprojects.append(self._ParseProject(n, parent = project))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700818
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700819 return project
820
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800821 def GetProjectPaths(self, name, path):
822 relpath = path
823 if self.IsMirror:
824 worktree = None
825 gitdir = os.path.join(self.topdir, '%s.git' % name)
David James8d201162013-10-11 17:03:19 -0700826 objdir = gitdir
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800827 else:
828 worktree = os.path.join(self.topdir, path).replace('\\', '/')
829 gitdir = os.path.join(self.repodir, 'projects', '%s.git' % path)
David James8d201162013-10-11 17:03:19 -0700830 objdir = os.path.join(self.repodir, 'project-objects', '%s.git' % name)
831 return relpath, worktree, gitdir, objdir
832
833 def GetProjectsWithName(self, name):
834 return self._projects.get(name, [])
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800835
836 def GetSubprojectName(self, parent, submodule_path):
837 return os.path.join(parent.name, submodule_path)
838
839 def _JoinRelpath(self, parent_relpath, relpath):
840 return os.path.join(parent_relpath, relpath)
841
842 def _UnjoinRelpath(self, parent_relpath, relpath):
843 return os.path.relpath(relpath, parent_relpath)
844
David James8d201162013-10-11 17:03:19 -0700845 def GetSubprojectPaths(self, parent, name, path):
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800846 relpath = self._JoinRelpath(parent.relpath, path)
847 gitdir = os.path.join(parent.gitdir, 'subprojects', '%s.git' % path)
David James8d201162013-10-11 17:03:19 -0700848 objdir = os.path.join(parent.gitdir, 'subproject-objects', '%s.git' % name)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800849 if self.IsMirror:
850 worktree = None
851 else:
852 worktree = os.path.join(parent.worktree, path).replace('\\', '/')
David James8d201162013-10-11 17:03:19 -0700853 return relpath, worktree, gitdir, objdir
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800854
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700855 def _ParseCopyFile(self, project, node):
856 src = self._reqatt(node, 'src')
857 dest = self._reqatt(node, 'dest')
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800858 if not self.IsMirror:
859 # src is project relative;
860 # dest is relative to the top of the tree
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800861 project.AddCopyFile(src, dest, os.path.join(self.topdir, dest))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700862
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500863 def _ParseLinkFile(self, project, node):
864 src = self._reqatt(node, 'src')
865 dest = self._reqatt(node, 'dest')
866 if not self.IsMirror:
867 # src is project relative;
868 # dest is relative to the top of the tree
869 project.AddLinkFile(src, dest, os.path.join(self.topdir, dest))
870
James W. Mills24c13082012-04-12 15:04:13 -0500871 def _ParseAnnotation(self, project, node):
872 name = self._reqatt(node, 'name')
873 value = self._reqatt(node, 'value')
874 try:
875 keep = self._reqatt(node, 'keep').lower()
876 except ManifestParseError:
877 keep = "true"
878 if keep != "true" and keep != "false":
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530879 raise ManifestParseError('optional "keep" attribute must be '
880 '"true" or "false"')
James W. Mills24c13082012-04-12 15:04:13 -0500881 project.AddAnnotation(name, value, keep)
882
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700883 def _get_remote(self, node):
884 name = node.getAttribute('remote')
885 if not name:
886 return None
887
888 v = self._remotes.get(name)
889 if not v:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530890 raise ManifestParseError("remote %s not defined in %s" %
891 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700892 return v
893
894 def _reqatt(self, node, attname):
895 """
896 reads a required attribute from the node.
897 """
898 v = node.getAttribute(attname)
899 if not v:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530900 raise ManifestParseError("no %s in <%s> within %s" %
901 (attname, node.nodeName, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700902 return v
Julien Camperguedd654222014-01-09 16:21:37 +0100903
904 def projectsDiff(self, manifest):
905 """return the projects differences between two manifests.
906
907 The diff will be from self to given manifest.
908
909 """
910 fromProjects = self.paths
911 toProjects = manifest.paths
912
Anthony King7446c592014-05-06 09:19:39 +0100913 fromKeys = sorted(fromProjects.keys())
914 toKeys = sorted(toProjects.keys())
Julien Camperguedd654222014-01-09 16:21:37 +0100915
916 diff = {'added': [], 'removed': [], 'changed': [], 'unreachable': []}
917
918 for proj in fromKeys:
919 if not proj in toKeys:
920 diff['removed'].append(fromProjects[proj])
921 else:
922 fromProj = fromProjects[proj]
923 toProj = toProjects[proj]
924 try:
925 fromRevId = fromProj.GetCommitRevisionId()
926 toRevId = toProj.GetCommitRevisionId()
927 except ManifestInvalidRevisionError:
928 diff['unreachable'].append((fromProj, toProj))
929 else:
930 if fromRevId != toRevId:
931 diff['changed'].append((fromProj, toProj))
932 toKeys.remove(proj)
933
934 for proj in toKeys:
935 diff['added'].append(toProjects[proj])
936
937 return diff