blob: 73e349647631a7236b326e9d417d2cbf5bfbefaa [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
Simran Basib9a1b732015-08-20 12:19:28 -070032import gitc_utils
David Pursehousee15c65a2012-08-22 10:46:11 +090033from git_config import GitConfig
David Pursehousee00aa6b2012-09-11 14:33:51 +090034from git_refs import R_HEADS, HEAD
35from project import RemoteSpec, Project, MetaProject
Julien Camperguedd654222014-01-09 16:21:37 +010036from error import ManifestParseError, ManifestInvalidRevisionError
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070037
38MANIFEST_FILE_NAME = 'manifest.xml'
Shawn O. Pearce5cc66792008-10-23 16:19:27 -070039LOCAL_MANIFEST_NAME = 'local_manifest.xml'
David Pursehouse2d5a0df2012-11-13 02:50:36 +090040LOCAL_MANIFESTS_DIR_NAME = 'local_manifests'
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070041
Anthony Kingcb07ba72015-03-28 23:26:04 +000042# urljoin gets confused if the scheme is not known.
Joe Kilner6e310792016-10-27 15:53:53 -070043urllib.parse.uses_relative.extend([
44 'ssh',
45 'git',
46 'persistent-https',
47 'sso',
48 'rpc'])
49urllib.parse.uses_netloc.extend([
50 'ssh',
51 'git',
52 'persistent-https',
53 'sso',
54 'rpc'])
Conley Owensdb728cd2011-09-26 16:34:01 -070055
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070056class _Default(object):
57 """Project defaults within the manifest."""
58
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -070059 revisionExpr = None
Conley Owensb6a16e62013-09-25 15:06:09 -070060 destBranchExpr = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070061 remote = None
Shawn O. Pearce6392c872011-09-22 17:44:31 -070062 sync_j = 1
Anatol Pomazau79770d22012-04-20 14:41:59 -070063 sync_c = False
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +080064 sync_s = False
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070065
Julien Campergue74879922013-10-09 14:38:46 +020066 def __eq__(self, other):
67 return self.__dict__ == other.__dict__
68
69 def __ne__(self, other):
70 return self.__dict__ != other.__dict__
71
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070072class _XmlRemote(object):
73 def __init__(self,
74 name,
Yestin Sunb292b982012-07-02 07:32:50 -070075 alias=None,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070076 fetch=None,
Steve Raed6480452016-08-10 15:00:00 -070077 pushUrl=None,
Conley Owensdb728cd2011-09-26 16:34:01 -070078 manifestUrl=None,
Anthony King36ea2fb2014-05-06 11:54:01 +010079 review=None,
Jonathan Nieder93719792015-03-17 11:29:58 -070080 revision=None):
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070081 self.name = name
82 self.fetchUrl = fetch
Steve Raed6480452016-08-10 15:00:00 -070083 self.pushUrl = pushUrl
Conley Owensdb728cd2011-09-26 16:34:01 -070084 self.manifestUrl = manifestUrl
Yestin Sunb292b982012-07-02 07:32:50 -070085 self.remoteAlias = alias
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070086 self.reviewUrl = review
Anthony King36ea2fb2014-05-06 11:54:01 +010087 self.revision = revision
Conley Owensceea3682011-10-20 10:45:47 -070088 self.resolvedFetchUrl = self._resolveFetchUrl()
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070089
David Pursehouse717ece92012-11-13 08:49:16 +090090 def __eq__(self, other):
91 return self.__dict__ == other.__dict__
92
93 def __ne__(self, other):
94 return self.__dict__ != other.__dict__
95
Conley Owensceea3682011-10-20 10:45:47 -070096 def _resolveFetchUrl(self):
97 url = self.fetchUrl.rstrip('/')
Conley Owensdb728cd2011-09-26 16:34:01 -070098 manifestUrl = self.manifestUrl.rstrip('/')
Conley Owens2d0f5082014-01-31 15:03:51 -080099 # urljoin will gets confused over quite a few things. The ones we care
100 # about here are:
101 # * no scheme in the base url, like <hostname:port>
Anthony Kingcb07ba72015-03-28 23:26:04 +0000102 # We handle no scheme by replacing it with an obscure protocol, gopher
103 # and then replacing it with the original when we are done.
104
Conley Owensdb728cd2011-09-26 16:34:01 -0700105 if manifestUrl.find(':') != manifestUrl.find('/') - 1:
Conley Owens4ccad752015-04-29 10:45:37 -0700106 url = urllib.parse.urljoin('gopher://' + manifestUrl, url)
107 url = re.sub(r'^gopher://', '', url)
Anthony Kingcb07ba72015-03-28 23:26:04 +0000108 else:
109 url = urllib.parse.urljoin(manifestUrl, url)
Shawn Pearcea9f11b32013-01-02 15:40:48 -0800110 return url
Conley Owensceea3682011-10-20 10:45:47 -0700111
112 def ToRemoteSpec(self, projectName):
Conley Owens9d8f9142011-10-20 14:36:35 -0700113 url = self.resolvedFetchUrl.rstrip('/') + '/' + projectName
Yestin Sunb292b982012-07-02 07:32:50 -0700114 remoteName = self.name
Conley Owens1e7ab2a2013-10-08 17:26:57 -0700115 if self.remoteAlias:
David Pursehouse37128b62013-10-15 10:48:40 +0900116 remoteName = self.remoteAlias
Dan Willemsen96c2d652016-04-06 16:03:54 -0700117 return RemoteSpec(remoteName,
118 url=url,
Steve Raed6480452016-08-10 15:00:00 -0700119 pushUrl=self.pushUrl,
Dan Willemsen96c2d652016-04-06 16:03:54 -0700120 review=self.reviewUrl,
121 orig_name=self.name)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700122
Shawn O. Pearcec8a300f2009-05-18 13:19:57 -0700123class XmlManifest(object):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700124 """manages the repo configuration file"""
125
126 def __init__(self, repodir):
127 self.repodir = os.path.abspath(repodir)
128 self.topdir = os.path.dirname(self.repodir)
129 self.manifestFile = os.path.join(self.repodir, MANIFEST_FILE_NAME)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700130 self.globalConfig = GitConfig.ForUser()
David Pursehouse4eb285c2013-02-14 16:28:44 +0900131 self.localManifestWarning = False
Simran Basib9a1b732015-08-20 12:19:28 -0700132 self.isGitcClient = False
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700133
134 self.repoProject = MetaProject(self, 'repo',
135 gitdir = os.path.join(repodir, 'repo/.git'),
136 worktree = os.path.join(repodir, 'repo'))
137
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700138 self.manifestProject = MetaProject(self, 'manifests',
Shawn O. Pearcef5c25a62008-11-04 08:11:53 -0800139 gitdir = os.path.join(repodir, 'manifests.git'),
140 worktree = os.path.join(repodir, 'manifests'))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700141
142 self._Unload()
143
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700144 def Override(self, name):
145 """Use a different manifest, just for the current instantiation.
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700146 """
147 path = os.path.join(self.manifestProject.worktree, name)
148 if not os.path.isfile(path):
149 raise ManifestParseError('manifest %s not found' % name)
150
151 old = self.manifestFile
152 try:
153 self.manifestFile = path
154 self._Unload()
155 self._Load()
156 finally:
157 self.manifestFile = old
158
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700159 def Link(self, name):
160 """Update the repo metadata to use a different manifest.
161 """
162 self.Override(name)
163
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700164 try:
Sebastian Frias223bf962012-11-21 19:09:25 +0100165 if os.path.lexists(self.manifestFile):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700166 os.remove(self.manifestFile)
167 os.symlink('manifests/%s' % name, self.manifestFile)
Sebastian Frias223bf962012-11-21 19:09:25 +0100168 except OSError as e:
169 raise ManifestParseError('cannot link manifest %s: %s' % (name, str(e)))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700170
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800171 def _RemoteToXml(self, r, doc, root):
172 e = doc.createElement('remote')
173 root.appendChild(e)
174 e.setAttribute('name', r.name)
175 e.setAttribute('fetch', r.fetchUrl)
Steve Raed6480452016-08-10 15:00:00 -0700176 if r.pushUrl is not None:
177 e.setAttribute('pushurl', r.pushUrl)
Conley Owens1e7ab2a2013-10-08 17:26:57 -0700178 if r.remoteAlias is not None:
179 e.setAttribute('alias', r.remoteAlias)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800180 if r.reviewUrl is not None:
181 e.setAttribute('review', r.reviewUrl)
Anthony King36ea2fb2014-05-06 11:54:01 +0100182 if r.revision is not None:
183 e.setAttribute('revision', r.revision)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800184
Josh Triplett884a3872014-06-12 14:57:29 -0700185 def _ParseGroups(self, groups):
186 return [x for x in re.split(r'[,\s]+', groups) if x]
187
Dan Willemsen5ea32d12015-09-08 13:27:20 -0700188 def Save(self, fd, peg_rev=False, peg_rev_upstream=True, groups=None):
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800189 """Write the current manifest out to the given file descriptor.
190 """
Colin Cross5acde752012-03-28 20:15:45 -0700191 mp = self.manifestProject
192
Dan Willemsen5ea32d12015-09-08 13:27:20 -0700193 if groups is None:
194 groups = mp.config.GetString('manifest.groups')
Matt Gumbel0c635bb2012-12-21 10:14:53 -0800195 if groups:
Josh Triplett884a3872014-06-12 14:57:29 -0700196 groups = self._ParseGroups(groups)
Colin Cross5acde752012-03-28 20:15:45 -0700197
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800198 doc = xml.dom.minidom.Document()
199 root = doc.createElement('manifest')
200 doc.appendChild(root)
201
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700202 # Save out the notice. There's a little bit of work here to give it the
203 # right whitespace, which assumes that the notice is automatically indented
204 # by 4 by minidom.
205 if self.notice:
206 notice_element = root.appendChild(doc.createElement('notice'))
207 notice_lines = self.notice.splitlines()
208 indented_notice = ('\n'.join(" "*4 + line for line in notice_lines))[4:]
209 notice_element.appendChild(doc.createTextNode(indented_notice))
210
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800211 d = self.default
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800212
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530213 for r in sorted(self.remotes):
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800214 self._RemoteToXml(self.remotes[r], doc, root)
215 if self.remotes:
216 root.appendChild(doc.createTextNode(''))
217
218 have_default = False
219 e = doc.createElement('default')
220 if d.remote:
221 have_default = True
222 e.setAttribute('remote', d.remote.name)
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700223 if d.revisionExpr:
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800224 have_default = True
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700225 e.setAttribute('revision', d.revisionExpr)
Simon Ruggier7e59de22015-07-24 12:50:06 +0200226 if d.destBranchExpr:
227 have_default = True
228 e.setAttribute('dest-branch', d.destBranchExpr)
Shawn O. Pearce6392c872011-09-22 17:44:31 -0700229 if d.sync_j > 1:
230 have_default = True
231 e.setAttribute('sync-j', '%d' % d.sync_j)
Anatol Pomazau79770d22012-04-20 14:41:59 -0700232 if d.sync_c:
233 have_default = True
234 e.setAttribute('sync-c', 'true')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800235 if d.sync_s:
236 have_default = True
237 e.setAttribute('sync-s', 'true')
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800238 if have_default:
239 root.appendChild(e)
240 root.appendChild(doc.createTextNode(''))
241
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700242 if self._manifest_server:
243 e = doc.createElement('manifest-server')
244 e.setAttribute('url', self._manifest_server)
245 root.appendChild(e)
246 root.appendChild(doc.createTextNode(''))
247
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800248 def output_projects(parent, parent_node, projects):
David James8d201162013-10-11 17:03:19 -0700249 for project_name in projects:
250 for project in self._projects[project_name]:
251 output_project(parent, parent_node, project)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800252
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800253 def output_project(parent, parent_node, p):
Colin Cross5acde752012-03-28 20:15:45 -0700254 if not p.MatchesGroups(groups):
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800255 return
256
257 name = p.name
258 relpath = p.relpath
259 if parent:
260 name = self._UnjoinName(parent.name, name)
261 relpath = self._UnjoinRelpath(parent.relpath, relpath)
Colin Cross5acde752012-03-28 20:15:45 -0700262
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800263 e = doc.createElement('project')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800264 parent_node.appendChild(e)
265 e.setAttribute('name', name)
266 if relpath != name:
267 e.setAttribute('path', relpath)
Conley Owensa17d7af2013-10-16 14:38:09 -0700268 remoteName = None
269 if d.remote:
Dan Willemsen96c2d652016-04-06 16:03:54 -0700270 remoteName = d.remote.name
271 if not d.remote or p.remote.orig_name != remoteName:
272 remoteName = p.remote.orig_name
Anthony King36ea2fb2014-05-06 11:54:01 +0100273 e.setAttribute('remote', remoteName)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800274 if peg_rev:
275 if self.IsMirror:
Brian Harring14a66742012-09-28 20:21:57 -0700276 value = p.bare_git.rev_parse(p.revisionExpr + '^0')
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800277 else:
Brian Harring14a66742012-09-28 20:21:57 -0700278 value = p.work_git.rev_parse(HEAD + '^0')
279 e.setAttribute('revision', value)
Conley Owens551dfec2015-07-10 14:54:54 -0700280 if peg_rev_upstream:
281 if p.upstream:
282 e.setAttribute('upstream', p.upstream)
283 elif value != p.revisionExpr:
284 # Only save the origin if the origin is not a sha1, and the default
285 # isn't our value
286 e.setAttribute('upstream', p.revisionExpr)
Anthony King36ea2fb2014-05-06 11:54:01 +0100287 else:
Dan Willemsen96c2d652016-04-06 16:03:54 -0700288 revision = self.remotes[p.remote.orig_name].revision or d.revisionExpr
Anthony King36ea2fb2014-05-06 11:54:01 +0100289 if not revision or revision != p.revisionExpr:
290 e.setAttribute('revision', p.revisionExpr)
Mani Chandel7a91d512014-07-24 16:27:08 +0530291 if p.upstream and p.upstream != p.revisionExpr:
292 e.setAttribute('upstream', p.upstream)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800293
Simon Ruggier7e59de22015-07-24 12:50:06 +0200294 if p.dest_branch and p.dest_branch != d.destBranchExpr:
295 e.setAttribute('dest-branch', p.dest_branch)
296
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800297 for c in p.copyfiles:
298 ce = doc.createElement('copyfile')
299 ce.setAttribute('src', c.src)
300 ce.setAttribute('dest', c.dest)
301 e.appendChild(ce)
302
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500303 for l in p.linkfiles:
304 le = doc.createElement('linkfile')
305 le.setAttribute('src', l.src)
306 le.setAttribute('dest', l.dest)
307 e.appendChild(le)
308
Conley Owensbb1b5f52012-08-13 13:11:18 -0700309 default_groups = ['all', 'name:%s' % p.name, 'path:%s' % p.relpath]
Dmitry Fink17f85ea2012-08-06 14:52:29 -0700310 egroups = [g for g in p.groups if g not in default_groups]
Conley Owens971de8e2012-04-16 10:36:08 -0700311 if egroups:
312 e.setAttribute('groups', ','.join(egroups))
Colin Cross5acde752012-03-28 20:15:45 -0700313
James W. Mills24c13082012-04-12 15:04:13 -0500314 for a in p.annotations:
315 if a.keep == "true":
316 ae = doc.createElement('annotation')
317 ae.setAttribute('name', a.name)
318 ae.setAttribute('value', a.value)
319 e.appendChild(ae)
320
Anatol Pomazau79770d22012-04-20 14:41:59 -0700321 if p.sync_c:
322 e.setAttribute('sync-c', 'true')
323
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800324 if p.sync_s:
325 e.setAttribute('sync-s', 'true')
326
Dan Willemsen88409222015-08-17 15:29:10 -0700327 if p.clone_depth:
328 e.setAttribute('clone-depth', str(p.clone_depth))
329
Simran Basib9a1b732015-08-20 12:19:28 -0700330 self._output_manifest_project_extras(p, e)
331
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800332 if p.subprojects:
David James8d201162013-10-11 17:03:19 -0700333 subprojects = set(subp.name for subp in p.subprojects)
334 output_projects(p, e, list(sorted(subprojects)))
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800335
David James8d201162013-10-11 17:03:19 -0700336 projects = set(p.name for p in self._paths.values() if not p.parent)
337 output_projects(None, root, list(sorted(projects)))
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800338
Doug Anderson37282b42011-03-04 11:54:18 -0800339 if self._repo_hooks_project:
340 root.appendChild(doc.createTextNode(''))
341 e = doc.createElement('repo-hooks')
342 e.setAttribute('in-project', self._repo_hooks_project.name)
343 e.setAttribute('enabled-list',
344 ' '.join(self._repo_hooks_project.enabled_repo_hooks))
345 root.appendChild(e)
346
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800347 doc.writexml(fd, '', ' ', '\n', 'UTF-8')
348
Simran Basib9a1b732015-08-20 12:19:28 -0700349 def _output_manifest_project_extras(self, p, e):
350 """Manifests can modify e if they support extra project attributes."""
351 pass
352
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700353 @property
David James8d201162013-10-11 17:03:19 -0700354 def paths(self):
355 self._Load()
356 return self._paths
357
358 @property
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700359 def projects(self):
360 self._Load()
Anthony Kingd58bfe52014-05-05 23:30:49 +0100361 return list(self._paths.values())
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700362
363 @property
364 def remotes(self):
365 self._Load()
366 return self._remotes
367
368 @property
369 def default(self):
370 self._Load()
371 return self._default
372
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800373 @property
Doug Anderson37282b42011-03-04 11:54:18 -0800374 def repo_hooks_project(self):
375 self._Load()
376 return self._repo_hooks_project
377
378 @property
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700379 def notice(self):
380 self._Load()
381 return self._notice
382
383 @property
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700384 def manifest_server(self):
385 self._Load()
Shawn O. Pearce34fb20f2011-11-30 13:41:02 -0800386 return self._manifest_server
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700387
388 @property
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800389 def IsMirror(self):
390 return self.manifestProject.config.GetBoolean('repo.mirror')
391
Julien Campergue335f5ef2013-10-16 11:02:35 +0200392 @property
393 def IsArchive(self):
394 return self.manifestProject.config.GetBoolean('repo.archive')
395
Martin Kellye4e94d22017-03-21 16:05:12 -0700396 @property
397 def HasSubmodules(self):
398 return self.manifestProject.config.GetBoolean('repo.submodules')
399
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700400 def _Unload(self):
401 self._loaded = False
402 self._projects = {}
David James8d201162013-10-11 17:03:19 -0700403 self._paths = {}
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700404 self._remotes = {}
405 self._default = None
Doug Anderson37282b42011-03-04 11:54:18 -0800406 self._repo_hooks_project = None
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700407 self._notice = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700408 self.branch = None
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700409 self._manifest_server = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700410
411 def _Load(self):
412 if not self._loaded:
Shawn O. Pearce2450a292008-11-04 08:22:07 -0800413 m = self.manifestProject
414 b = m.GetBranch(m.CurrentBranch).merge
Shawn O. Pearce21c5c342009-06-25 16:47:30 -0700415 if b is not None and b.startswith(R_HEADS):
Shawn O. Pearce2450a292008-11-04 08:22:07 -0800416 b = b[len(R_HEADS):]
417 self.branch = b
418
Colin Cross23acdd32012-04-21 00:33:54 -0700419 nodes = []
Brian Harring475a47d2012-06-07 20:05:35 -0700420 nodes.append(self._ParseManifestXml(self.manifestFile,
421 self.manifestProject.worktree))
Shawn O. Pearce5cc66792008-10-23 16:19:27 -0700422
423 local = os.path.join(self.repodir, LOCAL_MANIFEST_NAME)
424 if os.path.exists(local):
David Pursehouse4eb285c2013-02-14 16:28:44 +0900425 if not self.localManifestWarning:
426 self.localManifestWarning = True
427 print('warning: %s is deprecated; put local manifests in `%s` instead'
428 % (LOCAL_MANIFEST_NAME, os.path.join(self.repodir, LOCAL_MANIFESTS_DIR_NAME)),
429 file=sys.stderr)
Brian Harring475a47d2012-06-07 20:05:35 -0700430 nodes.append(self._ParseManifestXml(local, self.repodir))
Colin Cross23acdd32012-04-21 00:33:54 -0700431
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900432 local_dir = os.path.abspath(os.path.join(self.repodir, LOCAL_MANIFESTS_DIR_NAME))
433 try:
David Pursehouse52f1e5d2012-11-14 04:53:24 +0900434 for local_file in sorted(os.listdir(local_dir)):
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900435 if local_file.endswith('.xml'):
David Pursehouse5f434ed2012-11-22 13:48:10 +0900436 local = os.path.join(local_dir, local_file)
437 nodes.append(self._ParseManifestXml(local, self.repodir))
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900438 except OSError:
439 pass
440
Joe Onorato26e24752013-01-11 12:35:53 -0800441 try:
442 self._ParseManifest(nodes)
443 except ManifestParseError as e:
444 # There was a problem parsing, unload ourselves in case they catch
445 # this error and try again later, we will show the correct error
446 self._Unload()
447 raise e
Shawn O. Pearce5cc66792008-10-23 16:19:27 -0700448
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800449 if self.IsMirror:
450 self._AddMetaProjectMirror(self.repoProject)
451 self._AddMetaProjectMirror(self.manifestProject)
452
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700453 self._loaded = True
454
Brian Harring475a47d2012-06-07 20:05:35 -0700455 def _ParseManifestXml(self, path, include_root):
David Pursehousef7fc8a92012-11-13 04:00:28 +0900456 try:
457 root = xml.dom.minidom.parse(path)
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900458 except (OSError, xml.parsers.expat.ExpatError) as e:
David Pursehousef7fc8a92012-11-13 04:00:28 +0900459 raise ManifestParseError("error parsing manifest %s: %s" % (path, e))
460
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700461 if not root or not root.childNodes:
Brian Harring26448742011-04-28 05:04:41 -0700462 raise ManifestParseError("no root node in %s" % (path,))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700463
Jooncheol Park34acdd22012-08-27 02:25:59 +0900464 for manifest in root.childNodes:
465 if manifest.nodeName == 'manifest':
466 break
467 else:
Brian Harring26448742011-04-28 05:04:41 -0700468 raise ManifestParseError("no <manifest> in %s" % (path,))
469
Colin Cross23acdd32012-04-21 00:33:54 -0700470 nodes = []
David Pursehouse4f7bdea2012-10-22 12:50:15 +0900471 for node in manifest.childNodes: # pylint:disable=W0631
David Pursehouse5c6eeac2012-10-11 16:44:48 +0900472 # We only get here if manifest is initialised
David Pursehousec1b86a22012-11-14 11:36:51 +0900473 if node.nodeName == 'include':
474 name = self._reqatt(node, 'name')
475 fp = os.path.join(include_root, name)
476 if not os.path.isfile(fp):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530477 raise ManifestParseError("include %s doesn't exist or isn't a file"
478 % (name,))
David Pursehousec1b86a22012-11-14 11:36:51 +0900479 try:
480 nodes.extend(self._ParseManifestXml(fp, include_root))
481 # should isolate this to the exact exception, but that's
482 # tricky. actual parsing implementation may vary.
483 except (KeyboardInterrupt, RuntimeError, SystemExit):
484 raise
485 except Exception as e:
486 raise ManifestParseError(
487 "failed parsing included manifest %s: %s", (name, e))
488 else:
489 nodes.append(node)
Colin Cross23acdd32012-04-21 00:33:54 -0700490 return nodes
Brian Harring26448742011-04-28 05:04:41 -0700491
Colin Cross23acdd32012-04-21 00:33:54 -0700492 def _ParseManifest(self, node_list):
493 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700494 if node.nodeName == 'remote':
495 remote = self._ParseRemote(node)
David Pursehouse717ece92012-11-13 08:49:16 +0900496 if remote:
497 if remote.name in self._remotes:
498 if remote != self._remotes[remote.name]:
499 raise ManifestParseError(
500 'remote %s already exists with different attributes' %
501 (remote.name))
502 else:
503 self._remotes[remote.name] = remote
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700504
Colin Cross23acdd32012-04-21 00:33:54 -0700505 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700506 if node.nodeName == 'default':
Julien Campergue74879922013-10-09 14:38:46 +0200507 new_default = self._ParseDefault(node)
508 if self._default is None:
509 self._default = new_default
510 elif new_default != self._default:
David Pursehouse37128b62013-10-15 10:48:40 +0900511 raise ManifestParseError('duplicate default in %s' %
512 (self.manifestFile))
Julien Campergue74879922013-10-09 14:38:46 +0200513
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700514 if self._default is None:
515 self._default = _Default()
516
Colin Cross23acdd32012-04-21 00:33:54 -0700517 for node in itertools.chain(*node_list):
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700518 if node.nodeName == 'notice':
519 if self._notice is not None:
Doug Anderson37282b42011-03-04 11:54:18 -0800520 raise ManifestParseError(
521 'duplicate notice in %s' %
522 (self.manifestFile))
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700523 self._notice = self._ParseNotice(node)
524
Colin Cross23acdd32012-04-21 00:33:54 -0700525 for node in itertools.chain(*node_list):
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700526 if node.nodeName == 'manifest-server':
527 url = self._reqatt(node, 'url')
528 if self._manifest_server is not None:
David Pursehousec1b86a22012-11-14 11:36:51 +0900529 raise ManifestParseError(
530 'duplicate manifest-server in %s' %
531 (self.manifestFile))
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700532 self._manifest_server = url
533
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800534 def recursively_add_projects(project):
David James8d201162013-10-11 17:03:19 -0700535 projects = self._projects.setdefault(project.name, [])
536 if project.relpath is None:
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800537 raise ManifestParseError(
David James8d201162013-10-11 17:03:19 -0700538 'missing path for %s in %s' %
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800539 (project.name, self.manifestFile))
David James8d201162013-10-11 17:03:19 -0700540 if project.relpath in self._paths:
541 raise ManifestParseError(
542 'duplicate path %s in %s' %
543 (project.relpath, self.manifestFile))
544 self._paths[project.relpath] = project
545 projects.append(project)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800546 for subproject in project.subprojects:
547 recursively_add_projects(subproject)
548
Colin Cross23acdd32012-04-21 00:33:54 -0700549 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700550 if node.nodeName == 'project':
551 project = self._ParseProject(node)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800552 recursively_add_projects(project)
Josh Triplett884a3872014-06-12 14:57:29 -0700553 if node.nodeName == 'extend-project':
554 name = self._reqatt(node, 'name')
555
556 if name not in self._projects:
557 raise ManifestParseError('extend-project element specifies non-existent '
558 'project: %s' % name)
559
560 path = node.getAttribute('path')
561 groups = node.getAttribute('groups')
562 if groups:
563 groups = self._ParseGroups(groups)
564
565 for p in self._projects[name]:
566 if path and p.relpath != path:
567 continue
568 if groups:
569 p.groups.extend(groups)
Doug Anderson37282b42011-03-04 11:54:18 -0800570 if node.nodeName == 'repo-hooks':
571 # Get the name of the project and the (space-separated) list of enabled.
572 repo_hooks_project = self._reqatt(node, 'in-project')
573 enabled_repo_hooks = self._reqatt(node, 'enabled-list').split()
574
575 # Only one project can be the hooks project
576 if self._repo_hooks_project is not None:
577 raise ManifestParseError(
578 'duplicate repo-hooks in %s' %
579 (self.manifestFile))
580
581 # Store a reference to the Project.
582 try:
David James8d201162013-10-11 17:03:19 -0700583 repo_hooks_projects = self._projects[repo_hooks_project]
Doug Anderson37282b42011-03-04 11:54:18 -0800584 except KeyError:
585 raise ManifestParseError(
586 'project %s not found for repo-hooks' %
587 (repo_hooks_project))
588
David James8d201162013-10-11 17:03:19 -0700589 if len(repo_hooks_projects) != 1:
590 raise ManifestParseError(
591 'internal error parsing repo-hooks in %s' %
592 (self.manifestFile))
593 self._repo_hooks_project = repo_hooks_projects[0]
594
Doug Anderson37282b42011-03-04 11:54:18 -0800595 # Store the enabled hooks in the Project object.
596 self._repo_hooks_project.enabled_repo_hooks = enabled_repo_hooks
Colin Cross23acdd32012-04-21 00:33:54 -0700597 if node.nodeName == 'remove-project':
598 name = self._reqatt(node, 'name')
David Jamesb8433df2014-01-30 10:11:17 -0800599
600 if name not in self._projects:
David Pursehousef9107482012-11-16 19:12:32 +0900601 raise ManifestParseError('remove-project element specifies non-existent '
602 'project: %s' % name)
Colin Cross23acdd32012-04-21 00:33:54 -0700603
David Jamesb8433df2014-01-30 10:11:17 -0800604 for p in self._projects[name]:
605 del self._paths[p.relpath]
606 del self._projects[name]
607
Colin Cross23acdd32012-04-21 00:33:54 -0700608 # If the manifest removes the hooks project, treat it as if it deleted
609 # the repo-hooks element too.
610 if self._repo_hooks_project and (self._repo_hooks_project.name == name):
611 self._repo_hooks_project = None
612
Doug Anderson37282b42011-03-04 11:54:18 -0800613
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800614 def _AddMetaProjectMirror(self, m):
615 name = None
616 m_url = m.GetRemote(m.remote.name).url
617 if m_url.endswith('/.git'):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530618 raise ManifestParseError('refusing to mirror %s' % m_url)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800619
620 if self._default and self._default.remote:
Conley Owensceea3682011-10-20 10:45:47 -0700621 url = self._default.remote.resolvedFetchUrl
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800622 if not url.endswith('/'):
623 url += '/'
624 if m_url.startswith(url):
625 remote = self._default.remote
626 name = m_url[len(url):]
627
628 if name is None:
629 s = m_url.rindex('/') + 1
Conley Owensdb728cd2011-09-26 16:34:01 -0700630 manifestUrl = self.manifestProject.config.GetString('remote.origin.url')
Shawn O. Pearcef35b2d92012-08-02 11:46:22 -0700631 remote = _XmlRemote('origin', fetch=m_url[:s], manifestUrl=manifestUrl)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800632 name = m_url[s:]
633
634 if name.endswith('.git'):
635 name = name[:-4]
636
637 if name not in self._projects:
638 m.PreSync()
639 gitdir = os.path.join(self.topdir, '%s.git' % name)
640 project = Project(manifest = self,
641 name = name,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -0700642 remote = remote.ToRemoteSpec(name),
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800643 gitdir = gitdir,
David James8d201162013-10-11 17:03:19 -0700644 objdir = gitdir,
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800645 worktree = None,
Kwanhong Leeccd218c2014-02-17 13:07:32 +0900646 relpath = name or None,
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700647 revisionExpr = m.revisionExpr,
648 revisionId = None)
David James8d201162013-10-11 17:03:19 -0700649 self._projects[project.name] = [project]
Kwanhong Leeccd218c2014-02-17 13:07:32 +0900650 self._paths[project.relpath] = project
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800651
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700652 def _ParseRemote(self, node):
653 """
654 reads a <remote> element from the manifest file
655 """
656 name = self._reqatt(node, 'name')
Yestin Sunb292b982012-07-02 07:32:50 -0700657 alias = node.getAttribute('alias')
658 if alias == '':
659 alias = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700660 fetch = self._reqatt(node, 'fetch')
Steve Raed6480452016-08-10 15:00:00 -0700661 pushUrl = node.getAttribute('pushurl')
662 if pushUrl == '':
663 pushUrl = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700664 review = node.getAttribute('review')
Shawn O. Pearceae6e0942008-11-06 10:25:35 -0800665 if review == '':
666 review = None
Anthony King36ea2fb2014-05-06 11:54:01 +0100667 revision = node.getAttribute('revision')
668 if revision == '':
669 revision = None
Conley Owensdb728cd2011-09-26 16:34:01 -0700670 manifestUrl = self.manifestProject.config.GetString('remote.origin.url')
Steve Raed6480452016-08-10 15:00:00 -0700671 return _XmlRemote(name, alias, fetch, pushUrl, manifestUrl, review, revision)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700672
673 def _ParseDefault(self, node):
674 """
675 reads a <default> element from the manifest file
676 """
677 d = _Default()
678 d.remote = self._get_remote(node)
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700679 d.revisionExpr = node.getAttribute('revision')
680 if d.revisionExpr == '':
681 d.revisionExpr = None
Anatol Pomazau79770d22012-04-20 14:41:59 -0700682
Bryan Jacobsf609f912013-05-06 13:36:24 -0400683 d.destBranchExpr = node.getAttribute('dest-branch') or None
684
Shawn O. Pearce6392c872011-09-22 17:44:31 -0700685 sync_j = node.getAttribute('sync-j')
686 if sync_j == '' or sync_j is None:
687 d.sync_j = 1
688 else:
689 d.sync_j = int(sync_j)
Anatol Pomazau79770d22012-04-20 14:41:59 -0700690
691 sync_c = node.getAttribute('sync-c')
692 if not sync_c:
693 d.sync_c = False
694 else:
695 d.sync_c = sync_c.lower() in ("yes", "true", "1")
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800696
697 sync_s = node.getAttribute('sync-s')
698 if not sync_s:
699 d.sync_s = False
700 else:
701 d.sync_s = sync_s.lower() in ("yes", "true", "1")
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700702 return d
703
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700704 def _ParseNotice(self, node):
705 """
706 reads a <notice> element from the manifest file
707
708 The <notice> element is distinct from other tags in the XML in that the
709 data is conveyed between the start and end tag (it's not an empty-element
710 tag).
711
712 The white space (carriage returns, indentation) for the notice element is
713 relevant and is parsed in a way that is based on how python docstrings work.
714 In fact, the code is remarkably similar to here:
715 http://www.python.org/dev/peps/pep-0257/
716 """
717 # Get the data out of the node...
718 notice = node.childNodes[0].data
719
720 # Figure out minimum indentation, skipping the first line (the same line
721 # as the <notice> tag)...
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530722 minIndent = sys.maxsize
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700723 lines = notice.splitlines()
724 for line in lines[1:]:
725 lstrippedLine = line.lstrip()
726 if lstrippedLine:
727 indent = len(line) - len(lstrippedLine)
728 minIndent = min(indent, minIndent)
729
730 # Strip leading / trailing blank lines and also indentation.
731 cleanLines = [lines[0].strip()]
732 for line in lines[1:]:
733 cleanLines.append(line[minIndent:].rstrip())
734
735 # Clear completely blank lines from front and back...
736 while cleanLines and not cleanLines[0]:
737 del cleanLines[0]
738 while cleanLines and not cleanLines[-1]:
739 del cleanLines[-1]
740
741 return '\n'.join(cleanLines)
742
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800743 def _JoinName(self, parent_name, name):
744 return os.path.join(parent_name, name)
745
746 def _UnjoinName(self, parent_name, name):
747 return os.path.relpath(name, parent_name)
748
Simran Basib9a1b732015-08-20 12:19:28 -0700749 def _ParseProject(self, node, parent = None, **extra_proj_attrs):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700750 """
751 reads a <project> element from the manifest file
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700752 """
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700753 name = self._reqatt(node, 'name')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800754 if parent:
755 name = self._JoinName(parent.name, name)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700756
757 remote = self._get_remote(node)
758 if remote is None:
759 remote = self._default.remote
760 if remote is None:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530761 raise ManifestParseError("no remote for project %s within %s" %
762 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700763
Anthony King36ea2fb2014-05-06 11:54:01 +0100764 revisionExpr = node.getAttribute('revision') or remote.revision
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700765 if not revisionExpr:
766 revisionExpr = self._default.revisionExpr
767 if not revisionExpr:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530768 raise ManifestParseError("no revision for project %s within %s" %
769 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700770
771 path = node.getAttribute('path')
772 if not path:
773 path = name
774 if path.startswith('/'):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530775 raise ManifestParseError("project %s path cannot be absolute in %s" %
776 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700777
Mike Pontillod3153822012-02-28 11:53:24 -0800778 rebase = node.getAttribute('rebase')
779 if not rebase:
780 rebase = True
781 else:
782 rebase = rebase.lower() in ("yes", "true", "1")
783
Anatol Pomazau79770d22012-04-20 14:41:59 -0700784 sync_c = node.getAttribute('sync-c')
785 if not sync_c:
786 sync_c = False
787 else:
788 sync_c = sync_c.lower() in ("yes", "true", "1")
789
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800790 sync_s = node.getAttribute('sync-s')
791 if not sync_s:
792 sync_s = self._default.sync_s
793 else:
794 sync_s = sync_s.lower() in ("yes", "true", "1")
795
David Pursehouseede7f122012-11-27 22:25:30 +0900796 clone_depth = node.getAttribute('clone-depth')
797 if clone_depth:
798 try:
799 clone_depth = int(clone_depth)
800 if clone_depth <= 0:
801 raise ValueError()
802 except ValueError:
803 raise ManifestParseError('invalid clone-depth %s in %s' %
804 (clone_depth, self.manifestFile))
805
Bryan Jacobsf609f912013-05-06 13:36:24 -0400806 dest_branch = node.getAttribute('dest-branch') or self._default.destBranchExpr
807
Brian Harring14a66742012-09-28 20:21:57 -0700808 upstream = node.getAttribute('upstream')
809
Conley Owens971de8e2012-04-16 10:36:08 -0700810 groups = ''
811 if node.hasAttribute('groups'):
812 groups = node.getAttribute('groups')
Josh Triplett884a3872014-06-12 14:57:29 -0700813 groups = self._ParseGroups(groups)
Brian Harring7da13142012-06-15 02:24:20 -0700814
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800815 if parent is None:
David James8d201162013-10-11 17:03:19 -0700816 relpath, worktree, gitdir, objdir = self.GetProjectPaths(name, path)
Shawn O. Pearcecd81dd62012-10-26 12:18:00 -0700817 else:
David James8d201162013-10-11 17:03:19 -0700818 relpath, worktree, gitdir, objdir = \
819 self.GetSubprojectPaths(parent, name, path)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800820
821 default_groups = ['all', 'name:%s' % name, 'path:%s' % relpath]
822 groups.extend(set(default_groups).difference(groups))
Shawn O. Pearcecd81dd62012-10-26 12:18:00 -0700823
Scott Fandb83b1b2013-02-28 09:34:14 +0800824 if self.IsMirror and node.hasAttribute('force-path'):
825 if node.getAttribute('force-path').lower() in ("yes", "true", "1"):
826 gitdir = os.path.join(self.topdir, '%s.git' % path)
827
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700828 project = Project(manifest = self,
829 name = name,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -0700830 remote = remote.ToRemoteSpec(name),
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700831 gitdir = gitdir,
David James8d201162013-10-11 17:03:19 -0700832 objdir = objdir,
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700833 worktree = worktree,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800834 relpath = relpath,
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700835 revisionExpr = revisionExpr,
Mike Pontillod3153822012-02-28 11:53:24 -0800836 revisionId = None,
Colin Cross5acde752012-03-28 20:15:45 -0700837 rebase = rebase,
Anatol Pomazau79770d22012-04-20 14:41:59 -0700838 groups = groups,
Brian Harring14a66742012-09-28 20:21:57 -0700839 sync_c = sync_c,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800840 sync_s = sync_s,
David Pursehouseede7f122012-11-27 22:25:30 +0900841 clone_depth = clone_depth,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800842 upstream = upstream,
Bryan Jacobsf609f912013-05-06 13:36:24 -0400843 parent = parent,
Simran Basib9a1b732015-08-20 12:19:28 -0700844 dest_branch = dest_branch,
845 **extra_proj_attrs)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700846
847 for n in node.childNodes:
Shawn O. Pearce242b5262009-05-19 13:00:29 -0700848 if n.nodeName == 'copyfile':
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700849 self._ParseCopyFile(project, n)
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500850 if n.nodeName == 'linkfile':
851 self._ParseLinkFile(project, n)
James W. Mills24c13082012-04-12 15:04:13 -0500852 if n.nodeName == 'annotation':
853 self._ParseAnnotation(project, n)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800854 if n.nodeName == 'project':
855 project.subprojects.append(self._ParseProject(n, parent = project))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700856
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700857 return project
858
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800859 def GetProjectPaths(self, name, path):
860 relpath = path
861 if self.IsMirror:
862 worktree = None
863 gitdir = os.path.join(self.topdir, '%s.git' % name)
David James8d201162013-10-11 17:03:19 -0700864 objdir = gitdir
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800865 else:
866 worktree = os.path.join(self.topdir, path).replace('\\', '/')
867 gitdir = os.path.join(self.repodir, 'projects', '%s.git' % path)
David James8d201162013-10-11 17:03:19 -0700868 objdir = os.path.join(self.repodir, 'project-objects', '%s.git' % name)
869 return relpath, worktree, gitdir, objdir
870
871 def GetProjectsWithName(self, name):
872 return self._projects.get(name, [])
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800873
874 def GetSubprojectName(self, parent, submodule_path):
875 return os.path.join(parent.name, submodule_path)
876
877 def _JoinRelpath(self, parent_relpath, relpath):
878 return os.path.join(parent_relpath, relpath)
879
880 def _UnjoinRelpath(self, parent_relpath, relpath):
881 return os.path.relpath(relpath, parent_relpath)
882
David James8d201162013-10-11 17:03:19 -0700883 def GetSubprojectPaths(self, parent, name, path):
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800884 relpath = self._JoinRelpath(parent.relpath, path)
885 gitdir = os.path.join(parent.gitdir, 'subprojects', '%s.git' % path)
David James8d201162013-10-11 17:03:19 -0700886 objdir = os.path.join(parent.gitdir, 'subproject-objects', '%s.git' % name)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800887 if self.IsMirror:
888 worktree = None
889 else:
890 worktree = os.path.join(parent.worktree, path).replace('\\', '/')
David James8d201162013-10-11 17:03:19 -0700891 return relpath, worktree, gitdir, objdir
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800892
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700893 def _ParseCopyFile(self, project, node):
894 src = self._reqatt(node, 'src')
895 dest = self._reqatt(node, 'dest')
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800896 if not self.IsMirror:
897 # src is project relative;
898 # dest is relative to the top of the tree
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800899 project.AddCopyFile(src, dest, os.path.join(self.topdir, dest))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700900
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500901 def _ParseLinkFile(self, project, node):
902 src = self._reqatt(node, 'src')
903 dest = self._reqatt(node, 'dest')
904 if not self.IsMirror:
905 # src is project relative;
906 # dest is relative to the top of the tree
907 project.AddLinkFile(src, dest, os.path.join(self.topdir, dest))
908
James W. Mills24c13082012-04-12 15:04:13 -0500909 def _ParseAnnotation(self, project, node):
910 name = self._reqatt(node, 'name')
911 value = self._reqatt(node, 'value')
912 try:
913 keep = self._reqatt(node, 'keep').lower()
914 except ManifestParseError:
915 keep = "true"
916 if keep != "true" and keep != "false":
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530917 raise ManifestParseError('optional "keep" attribute must be '
918 '"true" or "false"')
James W. Mills24c13082012-04-12 15:04:13 -0500919 project.AddAnnotation(name, value, keep)
920
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700921 def _get_remote(self, node):
922 name = node.getAttribute('remote')
923 if not name:
924 return None
925
926 v = self._remotes.get(name)
927 if not v:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530928 raise ManifestParseError("remote %s not defined in %s" %
929 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700930 return v
931
932 def _reqatt(self, node, attname):
933 """
934 reads a required attribute from the node.
935 """
936 v = node.getAttribute(attname)
937 if not v:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530938 raise ManifestParseError("no %s in <%s> within %s" %
939 (attname, node.nodeName, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700940 return v
Julien Camperguedd654222014-01-09 16:21:37 +0100941
942 def projectsDiff(self, manifest):
943 """return the projects differences between two manifests.
944
945 The diff will be from self to given manifest.
946
947 """
948 fromProjects = self.paths
949 toProjects = manifest.paths
950
Anthony King7446c592014-05-06 09:19:39 +0100951 fromKeys = sorted(fromProjects.keys())
952 toKeys = sorted(toProjects.keys())
Julien Camperguedd654222014-01-09 16:21:37 +0100953
954 diff = {'added': [], 'removed': [], 'changed': [], 'unreachable': []}
955
956 for proj in fromKeys:
957 if not proj in toKeys:
958 diff['removed'].append(fromProjects[proj])
959 else:
960 fromProj = fromProjects[proj]
961 toProj = toProjects[proj]
962 try:
963 fromRevId = fromProj.GetCommitRevisionId()
964 toRevId = toProj.GetCommitRevisionId()
965 except ManifestInvalidRevisionError:
966 diff['unreachable'].append((fromProj, toProj))
967 else:
968 if fromRevId != toRevId:
969 diff['changed'].append((fromProj, toProj))
970 toKeys.remove(proj)
971
972 for proj in toKeys:
973 diff['added'].append(toProjects[proj])
974
975 return diff
Simran Basib9a1b732015-08-20 12:19:28 -0700976
977
978class GitcManifest(XmlManifest):
979
980 def __init__(self, repodir, gitc_client_name):
981 """Initialize the GitcManifest object."""
982 super(GitcManifest, self).__init__(repodir)
983 self.isGitcClient = True
984 self.gitc_client_name = gitc_client_name
Simran Basi8ce50412015-08-28 14:25:44 -0700985 self.gitc_client_dir = os.path.join(gitc_utils.get_gitc_manifest_dir(),
Simran Basib9a1b732015-08-20 12:19:28 -0700986 gitc_client_name)
987 self.manifestFile = os.path.join(self.gitc_client_dir, '.manifest')
988
989 def _ParseProject(self, node, parent = None):
990 """Override _ParseProject and add support for GITC specific attributes."""
991 return super(GitcManifest, self)._ParseProject(
992 node, parent=parent, old_revision=node.getAttribute('old-revision'))
993
994 def _output_manifest_project_extras(self, p, e):
995 """Output GITC Specific Project attributes"""
996 if p.old_revision:
Stefan Beller66851062016-06-17 16:40:08 -0700997 e.setAttribute('old-revision', str(p.old_revision))
Simran Basib9a1b732015-08-20 12:19:28 -0700998