blob: d0211eaf86b78b173910662b43a1e07b3cbbb7b4 [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
Renaud Paquayd5cec5e2016-11-01 11:24:03 -070035import platform_utils
David Pursehousee00aa6b2012-09-11 14:33:51 +090036from project import RemoteSpec, Project, MetaProject
Julien Camperguedd654222014-01-09 16:21:37 +010037from error import ManifestParseError, ManifestInvalidRevisionError
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070038
39MANIFEST_FILE_NAME = 'manifest.xml'
Shawn O. Pearce5cc66792008-10-23 16:19:27 -070040LOCAL_MANIFEST_NAME = 'local_manifest.xml'
David Pursehouse2d5a0df2012-11-13 02:50:36 +090041LOCAL_MANIFESTS_DIR_NAME = 'local_manifests'
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070042
Anthony Kingcb07ba72015-03-28 23:26:04 +000043# urljoin gets confused if the scheme is not known.
Joe Kilner6e310792016-10-27 15:53:53 -070044urllib.parse.uses_relative.extend([
45 'ssh',
46 'git',
47 'persistent-https',
48 'sso',
49 'rpc'])
50urllib.parse.uses_netloc.extend([
51 'ssh',
52 'git',
53 'persistent-https',
54 'sso',
55 'rpc'])
Conley Owensdb728cd2011-09-26 16:34:01 -070056
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070057class _Default(object):
58 """Project defaults within the manifest."""
59
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -070060 revisionExpr = None
Conley Owensb6a16e62013-09-25 15:06:09 -070061 destBranchExpr = None
Nasser Grainawida403412018-05-04 12:53:29 -060062 upstreamExpr = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070063 remote = None
Shawn O. Pearce6392c872011-09-22 17:44:31 -070064 sync_j = 1
Anatol Pomazau79770d22012-04-20 14:41:59 -070065 sync_c = False
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +080066 sync_s = False
YOUNG HO CHAa32c92c2018-02-14 16:57:31 +090067 sync_tags = True
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070068
Julien Campergue74879922013-10-09 14:38:46 +020069 def __eq__(self, other):
70 return self.__dict__ == other.__dict__
71
72 def __ne__(self, other):
73 return self.__dict__ != other.__dict__
74
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070075class _XmlRemote(object):
76 def __init__(self,
77 name,
Yestin Sunb292b982012-07-02 07:32:50 -070078 alias=None,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070079 fetch=None,
Steve Raed6480452016-08-10 15:00:00 -070080 pushUrl=None,
Conley Owensdb728cd2011-09-26 16:34:01 -070081 manifestUrl=None,
Anthony King36ea2fb2014-05-06 11:54:01 +010082 review=None,
Jonathan Nieder93719792015-03-17 11:29:58 -070083 revision=None):
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070084 self.name = name
85 self.fetchUrl = fetch
Steve Raed6480452016-08-10 15:00:00 -070086 self.pushUrl = pushUrl
Conley Owensdb728cd2011-09-26 16:34:01 -070087 self.manifestUrl = manifestUrl
Yestin Sunb292b982012-07-02 07:32:50 -070088 self.remoteAlias = alias
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070089 self.reviewUrl = review
Anthony King36ea2fb2014-05-06 11:54:01 +010090 self.revision = revision
Conley Owensceea3682011-10-20 10:45:47 -070091 self.resolvedFetchUrl = self._resolveFetchUrl()
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070092
David Pursehouse717ece92012-11-13 08:49:16 +090093 def __eq__(self, other):
94 return self.__dict__ == other.__dict__
95
96 def __ne__(self, other):
97 return self.__dict__ != other.__dict__
98
Conley Owensceea3682011-10-20 10:45:47 -070099 def _resolveFetchUrl(self):
100 url = self.fetchUrl.rstrip('/')
Conley Owensdb728cd2011-09-26 16:34:01 -0700101 manifestUrl = self.manifestUrl.rstrip('/')
Conley Owens2d0f5082014-01-31 15:03:51 -0800102 # urljoin will gets confused over quite a few things. The ones we care
103 # about here are:
104 # * no scheme in the base url, like <hostname:port>
Anthony Kingcb07ba72015-03-28 23:26:04 +0000105 # We handle no scheme by replacing it with an obscure protocol, gopher
106 # and then replacing it with the original when we are done.
107
Conley Owensdb728cd2011-09-26 16:34:01 -0700108 if manifestUrl.find(':') != manifestUrl.find('/') - 1:
Conley Owens4ccad752015-04-29 10:45:37 -0700109 url = urllib.parse.urljoin('gopher://' + manifestUrl, url)
110 url = re.sub(r'^gopher://', '', url)
Anthony Kingcb07ba72015-03-28 23:26:04 +0000111 else:
112 url = urllib.parse.urljoin(manifestUrl, url)
Shawn Pearcea9f11b32013-01-02 15:40:48 -0800113 return url
Conley Owensceea3682011-10-20 10:45:47 -0700114
115 def ToRemoteSpec(self, projectName):
David Rileye0684ad2017-04-05 00:02:59 -0700116 fetchUrl = self.resolvedFetchUrl.rstrip('/')
117 url = fetchUrl + '/' + projectName
Yestin Sunb292b982012-07-02 07:32:50 -0700118 remoteName = self.name
Conley Owens1e7ab2a2013-10-08 17:26:57 -0700119 if self.remoteAlias:
David Pursehouse37128b62013-10-15 10:48:40 +0900120 remoteName = self.remoteAlias
Dan Willemsen96c2d652016-04-06 16:03:54 -0700121 return RemoteSpec(remoteName,
122 url=url,
Steve Raed6480452016-08-10 15:00:00 -0700123 pushUrl=self.pushUrl,
Dan Willemsen96c2d652016-04-06 16:03:54 -0700124 review=self.reviewUrl,
David Rileye0684ad2017-04-05 00:02:59 -0700125 orig_name=self.name,
126 fetchUrl=self.fetchUrl)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700127
Shawn O. Pearcec8a300f2009-05-18 13:19:57 -0700128class XmlManifest(object):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700129 """manages the repo configuration file"""
130
131 def __init__(self, repodir):
132 self.repodir = os.path.abspath(repodir)
133 self.topdir = os.path.dirname(self.repodir)
134 self.manifestFile = os.path.join(self.repodir, MANIFEST_FILE_NAME)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700135 self.globalConfig = GitConfig.ForUser()
David Pursehouse4eb285c2013-02-14 16:28:44 +0900136 self.localManifestWarning = False
Simran Basib9a1b732015-08-20 12:19:28 -0700137 self.isGitcClient = False
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700138
139 self.repoProject = MetaProject(self, 'repo',
140 gitdir = os.path.join(repodir, 'repo/.git'),
141 worktree = os.path.join(repodir, 'repo'))
142
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700143 self.manifestProject = MetaProject(self, 'manifests',
Shawn O. Pearcef5c25a62008-11-04 08:11:53 -0800144 gitdir = os.path.join(repodir, 'manifests.git'),
145 worktree = os.path.join(repodir, 'manifests'))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700146
147 self._Unload()
148
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700149 def Override(self, name):
150 """Use a different manifest, just for the current instantiation.
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700151 """
152 path = os.path.join(self.manifestProject.worktree, name)
153 if not os.path.isfile(path):
154 raise ManifestParseError('manifest %s not found' % name)
155
156 old = self.manifestFile
157 try:
158 self.manifestFile = path
159 self._Unload()
160 self._Load()
161 finally:
162 self.manifestFile = old
163
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700164 def Link(self, name):
165 """Update the repo metadata to use a different manifest.
166 """
167 self.Override(name)
168
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700169 try:
Sebastian Frias223bf962012-11-21 19:09:25 +0100170 if os.path.lexists(self.manifestFile):
Renaud Paquay010fed72016-11-11 14:25:29 -0800171 platform_utils.remove(self.manifestFile)
Renaud Paquayd5cec5e2016-11-01 11:24:03 -0700172 platform_utils.symlink(os.path.join('manifests', name), self.manifestFile)
Sebastian Frias223bf962012-11-21 19:09:25 +0100173 except OSError as e:
174 raise ManifestParseError('cannot link manifest %s: %s' % (name, str(e)))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700175
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800176 def _RemoteToXml(self, r, doc, root):
177 e = doc.createElement('remote')
178 root.appendChild(e)
179 e.setAttribute('name', r.name)
180 e.setAttribute('fetch', r.fetchUrl)
Steve Raed6480452016-08-10 15:00:00 -0700181 if r.pushUrl is not None:
182 e.setAttribute('pushurl', r.pushUrl)
Conley Owens1e7ab2a2013-10-08 17:26:57 -0700183 if r.remoteAlias is not None:
184 e.setAttribute('alias', r.remoteAlias)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800185 if r.reviewUrl is not None:
186 e.setAttribute('review', r.reviewUrl)
Anthony King36ea2fb2014-05-06 11:54:01 +0100187 if r.revision is not None:
188 e.setAttribute('revision', r.revision)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800189
Josh Triplett884a3872014-06-12 14:57:29 -0700190 def _ParseGroups(self, groups):
191 return [x for x in re.split(r'[,\s]+', groups) if x]
192
Dan Willemsen5ea32d12015-09-08 13:27:20 -0700193 def Save(self, fd, peg_rev=False, peg_rev_upstream=True, groups=None):
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800194 """Write the current manifest out to the given file descriptor.
195 """
Colin Cross5acde752012-03-28 20:15:45 -0700196 mp = self.manifestProject
197
Dan Willemsen5ea32d12015-09-08 13:27:20 -0700198 if groups is None:
199 groups = mp.config.GetString('manifest.groups')
Matt Gumbel0c635bb2012-12-21 10:14:53 -0800200 if groups:
Josh Triplett884a3872014-06-12 14:57:29 -0700201 groups = self._ParseGroups(groups)
Colin Cross5acde752012-03-28 20:15:45 -0700202
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800203 doc = xml.dom.minidom.Document()
204 root = doc.createElement('manifest')
205 doc.appendChild(root)
206
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700207 # Save out the notice. There's a little bit of work here to give it the
208 # right whitespace, which assumes that the notice is automatically indented
209 # by 4 by minidom.
210 if self.notice:
211 notice_element = root.appendChild(doc.createElement('notice'))
212 notice_lines = self.notice.splitlines()
213 indented_notice = ('\n'.join(" "*4 + line for line in notice_lines))[4:]
214 notice_element.appendChild(doc.createTextNode(indented_notice))
215
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800216 d = self.default
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800217
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530218 for r in sorted(self.remotes):
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800219 self._RemoteToXml(self.remotes[r], doc, root)
220 if self.remotes:
221 root.appendChild(doc.createTextNode(''))
222
223 have_default = False
224 e = doc.createElement('default')
225 if d.remote:
226 have_default = True
227 e.setAttribute('remote', d.remote.name)
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700228 if d.revisionExpr:
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800229 have_default = True
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700230 e.setAttribute('revision', d.revisionExpr)
Simon Ruggier7e59de22015-07-24 12:50:06 +0200231 if d.destBranchExpr:
232 have_default = True
233 e.setAttribute('dest-branch', d.destBranchExpr)
Nasser Grainawida403412018-05-04 12:53:29 -0600234 if d.upstreamExpr:
235 have_default = True
236 e.setAttribute('upstream', d.upstreamExpr)
Shawn O. Pearce6392c872011-09-22 17:44:31 -0700237 if d.sync_j > 1:
238 have_default = True
239 e.setAttribute('sync-j', '%d' % d.sync_j)
Anatol Pomazau79770d22012-04-20 14:41:59 -0700240 if d.sync_c:
241 have_default = True
242 e.setAttribute('sync-c', 'true')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800243 if d.sync_s:
244 have_default = True
245 e.setAttribute('sync-s', 'true')
YOUNG HO CHAa32c92c2018-02-14 16:57:31 +0900246 if not d.sync_tags:
247 have_default = True
248 e.setAttribute('sync-tags', 'false')
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800249 if have_default:
250 root.appendChild(e)
251 root.appendChild(doc.createTextNode(''))
252
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700253 if self._manifest_server:
254 e = doc.createElement('manifest-server')
255 e.setAttribute('url', self._manifest_server)
256 root.appendChild(e)
257 root.appendChild(doc.createTextNode(''))
258
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800259 def output_projects(parent, parent_node, projects):
David James8d201162013-10-11 17:03:19 -0700260 for project_name in projects:
261 for project in self._projects[project_name]:
262 output_project(parent, parent_node, project)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800263
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800264 def output_project(parent, parent_node, p):
Colin Cross5acde752012-03-28 20:15:45 -0700265 if not p.MatchesGroups(groups):
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800266 return
267
268 name = p.name
269 relpath = p.relpath
270 if parent:
271 name = self._UnjoinName(parent.name, name)
272 relpath = self._UnjoinRelpath(parent.relpath, relpath)
Colin Cross5acde752012-03-28 20:15:45 -0700273
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800274 e = doc.createElement('project')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800275 parent_node.appendChild(e)
276 e.setAttribute('name', name)
277 if relpath != name:
278 e.setAttribute('path', relpath)
Conley Owensa17d7af2013-10-16 14:38:09 -0700279 remoteName = None
280 if d.remote:
Dan Willemsen96c2d652016-04-06 16:03:54 -0700281 remoteName = d.remote.name
282 if not d.remote or p.remote.orig_name != remoteName:
283 remoteName = p.remote.orig_name
Anthony King36ea2fb2014-05-06 11:54:01 +0100284 e.setAttribute('remote', remoteName)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800285 if peg_rev:
286 if self.IsMirror:
Brian Harring14a66742012-09-28 20:21:57 -0700287 value = p.bare_git.rev_parse(p.revisionExpr + '^0')
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800288 else:
Brian Harring14a66742012-09-28 20:21:57 -0700289 value = p.work_git.rev_parse(HEAD + '^0')
290 e.setAttribute('revision', value)
Conley Owens551dfec2015-07-10 14:54:54 -0700291 if peg_rev_upstream:
292 if p.upstream:
293 e.setAttribute('upstream', p.upstream)
294 elif value != p.revisionExpr:
295 # Only save the origin if the origin is not a sha1, and the default
296 # isn't our value
297 e.setAttribute('upstream', p.revisionExpr)
Anthony King36ea2fb2014-05-06 11:54:01 +0100298 else:
Dan Willemsen96c2d652016-04-06 16:03:54 -0700299 revision = self.remotes[p.remote.orig_name].revision or d.revisionExpr
Anthony King36ea2fb2014-05-06 11:54:01 +0100300 if not revision or revision != p.revisionExpr:
301 e.setAttribute('revision', p.revisionExpr)
Nasser Grainawida403412018-05-04 12:53:29 -0600302 if (p.upstream and (p.upstream != p.revisionExpr or
303 p.upstream != d.upstreamExpr)):
Mani Chandel7a91d512014-07-24 16:27:08 +0530304 e.setAttribute('upstream', p.upstream)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800305
Simon Ruggier7e59de22015-07-24 12:50:06 +0200306 if p.dest_branch and p.dest_branch != d.destBranchExpr:
307 e.setAttribute('dest-branch', p.dest_branch)
308
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800309 for c in p.copyfiles:
310 ce = doc.createElement('copyfile')
311 ce.setAttribute('src', c.src)
312 ce.setAttribute('dest', c.dest)
313 e.appendChild(ce)
314
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500315 for l in p.linkfiles:
316 le = doc.createElement('linkfile')
317 le.setAttribute('src', l.src)
318 le.setAttribute('dest', l.dest)
319 e.appendChild(le)
320
Conley Owensbb1b5f52012-08-13 13:11:18 -0700321 default_groups = ['all', 'name:%s' % p.name, 'path:%s' % p.relpath]
Dmitry Fink17f85ea2012-08-06 14:52:29 -0700322 egroups = [g for g in p.groups if g not in default_groups]
Conley Owens971de8e2012-04-16 10:36:08 -0700323 if egroups:
324 e.setAttribute('groups', ','.join(egroups))
Colin Cross5acde752012-03-28 20:15:45 -0700325
James W. Mills24c13082012-04-12 15:04:13 -0500326 for a in p.annotations:
327 if a.keep == "true":
328 ae = doc.createElement('annotation')
329 ae.setAttribute('name', a.name)
330 ae.setAttribute('value', a.value)
331 e.appendChild(ae)
332
Anatol Pomazau79770d22012-04-20 14:41:59 -0700333 if p.sync_c:
334 e.setAttribute('sync-c', 'true')
335
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800336 if p.sync_s:
337 e.setAttribute('sync-s', 'true')
338
YOUNG HO CHAa32c92c2018-02-14 16:57:31 +0900339 if not p.sync_tags:
340 e.setAttribute('sync-tags', 'false')
341
Dan Willemsen88409222015-08-17 15:29:10 -0700342 if p.clone_depth:
343 e.setAttribute('clone-depth', str(p.clone_depth))
344
Simran Basib9a1b732015-08-20 12:19:28 -0700345 self._output_manifest_project_extras(p, e)
346
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800347 if p.subprojects:
David James8d201162013-10-11 17:03:19 -0700348 subprojects = set(subp.name for subp in p.subprojects)
349 output_projects(p, e, list(sorted(subprojects)))
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800350
David James8d201162013-10-11 17:03:19 -0700351 projects = set(p.name for p in self._paths.values() if not p.parent)
352 output_projects(None, root, list(sorted(projects)))
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800353
Doug Anderson37282b42011-03-04 11:54:18 -0800354 if self._repo_hooks_project:
355 root.appendChild(doc.createTextNode(''))
356 e = doc.createElement('repo-hooks')
357 e.setAttribute('in-project', self._repo_hooks_project.name)
358 e.setAttribute('enabled-list',
359 ' '.join(self._repo_hooks_project.enabled_repo_hooks))
360 root.appendChild(e)
361
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800362 doc.writexml(fd, '', ' ', '\n', 'UTF-8')
363
Simran Basib9a1b732015-08-20 12:19:28 -0700364 def _output_manifest_project_extras(self, p, e):
365 """Manifests can modify e if they support extra project attributes."""
366 pass
367
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700368 @property
David James8d201162013-10-11 17:03:19 -0700369 def paths(self):
370 self._Load()
371 return self._paths
372
373 @property
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700374 def projects(self):
375 self._Load()
Anthony Kingd58bfe52014-05-05 23:30:49 +0100376 return list(self._paths.values())
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700377
378 @property
379 def remotes(self):
380 self._Load()
381 return self._remotes
382
383 @property
384 def default(self):
385 self._Load()
386 return self._default
387
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800388 @property
Doug Anderson37282b42011-03-04 11:54:18 -0800389 def repo_hooks_project(self):
390 self._Load()
391 return self._repo_hooks_project
392
393 @property
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700394 def notice(self):
395 self._Load()
396 return self._notice
397
398 @property
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700399 def manifest_server(self):
400 self._Load()
Shawn O. Pearce34fb20f2011-11-30 13:41:02 -0800401 return self._manifest_server
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700402
403 @property
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800404 def IsMirror(self):
405 return self.manifestProject.config.GetBoolean('repo.mirror')
406
Julien Campergue335f5ef2013-10-16 11:02:35 +0200407 @property
408 def IsArchive(self):
409 return self.manifestProject.config.GetBoolean('repo.archive')
410
Martin Kellye4e94d22017-03-21 16:05:12 -0700411 @property
412 def HasSubmodules(self):
413 return self.manifestProject.config.GetBoolean('repo.submodules')
414
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700415 def _Unload(self):
416 self._loaded = False
417 self._projects = {}
David James8d201162013-10-11 17:03:19 -0700418 self._paths = {}
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700419 self._remotes = {}
420 self._default = None
Doug Anderson37282b42011-03-04 11:54:18 -0800421 self._repo_hooks_project = None
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700422 self._notice = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700423 self.branch = None
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700424 self._manifest_server = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700425
426 def _Load(self):
427 if not self._loaded:
Shawn O. Pearce2450a292008-11-04 08:22:07 -0800428 m = self.manifestProject
429 b = m.GetBranch(m.CurrentBranch).merge
Shawn O. Pearce21c5c342009-06-25 16:47:30 -0700430 if b is not None and b.startswith(R_HEADS):
Shawn O. Pearce2450a292008-11-04 08:22:07 -0800431 b = b[len(R_HEADS):]
432 self.branch = b
433
Colin Cross23acdd32012-04-21 00:33:54 -0700434 nodes = []
Brian Harring475a47d2012-06-07 20:05:35 -0700435 nodes.append(self._ParseManifestXml(self.manifestFile,
436 self.manifestProject.worktree))
Shawn O. Pearce5cc66792008-10-23 16:19:27 -0700437
438 local = os.path.join(self.repodir, LOCAL_MANIFEST_NAME)
439 if os.path.exists(local):
David Pursehouse4eb285c2013-02-14 16:28:44 +0900440 if not self.localManifestWarning:
441 self.localManifestWarning = True
442 print('warning: %s is deprecated; put local manifests in `%s` instead'
443 % (LOCAL_MANIFEST_NAME, os.path.join(self.repodir, LOCAL_MANIFESTS_DIR_NAME)),
444 file=sys.stderr)
Brian Harring475a47d2012-06-07 20:05:35 -0700445 nodes.append(self._ParseManifestXml(local, self.repodir))
Colin Cross23acdd32012-04-21 00:33:54 -0700446
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900447 local_dir = os.path.abspath(os.path.join(self.repodir, LOCAL_MANIFESTS_DIR_NAME))
448 try:
David Pursehouse52f1e5d2012-11-14 04:53:24 +0900449 for local_file in sorted(os.listdir(local_dir)):
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900450 if local_file.endswith('.xml'):
David Pursehouse5f434ed2012-11-22 13:48:10 +0900451 local = os.path.join(local_dir, local_file)
452 nodes.append(self._ParseManifestXml(local, self.repodir))
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900453 except OSError:
454 pass
455
Joe Onorato26e24752013-01-11 12:35:53 -0800456 try:
457 self._ParseManifest(nodes)
458 except ManifestParseError as e:
459 # There was a problem parsing, unload ourselves in case they catch
460 # this error and try again later, we will show the correct error
461 self._Unload()
462 raise e
Shawn O. Pearce5cc66792008-10-23 16:19:27 -0700463
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800464 if self.IsMirror:
465 self._AddMetaProjectMirror(self.repoProject)
466 self._AddMetaProjectMirror(self.manifestProject)
467
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700468 self._loaded = True
469
Brian Harring475a47d2012-06-07 20:05:35 -0700470 def _ParseManifestXml(self, path, include_root):
David Pursehousef7fc8a92012-11-13 04:00:28 +0900471 try:
472 root = xml.dom.minidom.parse(path)
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900473 except (OSError, xml.parsers.expat.ExpatError) as e:
David Pursehousef7fc8a92012-11-13 04:00:28 +0900474 raise ManifestParseError("error parsing manifest %s: %s" % (path, e))
475
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700476 if not root or not root.childNodes:
Brian Harring26448742011-04-28 05:04:41 -0700477 raise ManifestParseError("no root node in %s" % (path,))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700478
Jooncheol Park34acdd22012-08-27 02:25:59 +0900479 for manifest in root.childNodes:
480 if manifest.nodeName == 'manifest':
481 break
482 else:
Brian Harring26448742011-04-28 05:04:41 -0700483 raise ManifestParseError("no <manifest> in %s" % (path,))
484
Colin Cross23acdd32012-04-21 00:33:54 -0700485 nodes = []
David Pursehouse4f7bdea2012-10-22 12:50:15 +0900486 for node in manifest.childNodes: # pylint:disable=W0631
David Pursehouse5c6eeac2012-10-11 16:44:48 +0900487 # We only get here if manifest is initialised
David Pursehousec1b86a22012-11-14 11:36:51 +0900488 if node.nodeName == 'include':
489 name = self._reqatt(node, 'name')
490 fp = os.path.join(include_root, name)
491 if not os.path.isfile(fp):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530492 raise ManifestParseError("include %s doesn't exist or isn't a file"
493 % (name,))
David Pursehousec1b86a22012-11-14 11:36:51 +0900494 try:
495 nodes.extend(self._ParseManifestXml(fp, include_root))
496 # should isolate this to the exact exception, but that's
497 # tricky. actual parsing implementation may vary.
498 except (KeyboardInterrupt, RuntimeError, SystemExit):
499 raise
500 except Exception as e:
501 raise ManifestParseError(
502 "failed parsing included manifest %s: %s", (name, e))
503 else:
504 nodes.append(node)
Colin Cross23acdd32012-04-21 00:33:54 -0700505 return nodes
Brian Harring26448742011-04-28 05:04:41 -0700506
Colin Cross23acdd32012-04-21 00:33:54 -0700507 def _ParseManifest(self, node_list):
508 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700509 if node.nodeName == 'remote':
510 remote = self._ParseRemote(node)
David Pursehouse717ece92012-11-13 08:49:16 +0900511 if remote:
512 if remote.name in self._remotes:
513 if remote != self._remotes[remote.name]:
514 raise ManifestParseError(
515 'remote %s already exists with different attributes' %
516 (remote.name))
517 else:
518 self._remotes[remote.name] = remote
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700519
Colin Cross23acdd32012-04-21 00:33:54 -0700520 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700521 if node.nodeName == 'default':
Julien Campergue74879922013-10-09 14:38:46 +0200522 new_default = self._ParseDefault(node)
523 if self._default is None:
524 self._default = new_default
525 elif new_default != self._default:
David Pursehouse37128b62013-10-15 10:48:40 +0900526 raise ManifestParseError('duplicate default in %s' %
527 (self.manifestFile))
Julien Campergue74879922013-10-09 14:38:46 +0200528
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700529 if self._default is None:
530 self._default = _Default()
531
Colin Cross23acdd32012-04-21 00:33:54 -0700532 for node in itertools.chain(*node_list):
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700533 if node.nodeName == 'notice':
534 if self._notice is not None:
Doug Anderson37282b42011-03-04 11:54:18 -0800535 raise ManifestParseError(
536 'duplicate notice in %s' %
537 (self.manifestFile))
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700538 self._notice = self._ParseNotice(node)
539
Colin Cross23acdd32012-04-21 00:33:54 -0700540 for node in itertools.chain(*node_list):
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700541 if node.nodeName == 'manifest-server':
542 url = self._reqatt(node, 'url')
543 if self._manifest_server is not None:
David Pursehousec1b86a22012-11-14 11:36:51 +0900544 raise ManifestParseError(
545 'duplicate manifest-server in %s' %
546 (self.manifestFile))
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700547 self._manifest_server = url
548
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800549 def recursively_add_projects(project):
David James8d201162013-10-11 17:03:19 -0700550 projects = self._projects.setdefault(project.name, [])
551 if project.relpath is None:
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800552 raise ManifestParseError(
David James8d201162013-10-11 17:03:19 -0700553 'missing path for %s in %s' %
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800554 (project.name, self.manifestFile))
David James8d201162013-10-11 17:03:19 -0700555 if project.relpath in self._paths:
556 raise ManifestParseError(
557 'duplicate path %s in %s' %
558 (project.relpath, self.manifestFile))
559 self._paths[project.relpath] = project
560 projects.append(project)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800561 for subproject in project.subprojects:
562 recursively_add_projects(subproject)
563
Colin Cross23acdd32012-04-21 00:33:54 -0700564 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700565 if node.nodeName == 'project':
566 project = self._ParseProject(node)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800567 recursively_add_projects(project)
Josh Triplett884a3872014-06-12 14:57:29 -0700568 if node.nodeName == 'extend-project':
569 name = self._reqatt(node, 'name')
570
571 if name not in self._projects:
572 raise ManifestParseError('extend-project element specifies non-existent '
573 'project: %s' % name)
574
575 path = node.getAttribute('path')
576 groups = node.getAttribute('groups')
577 if groups:
578 groups = self._ParseGroups(groups)
Luis Hector Chavez7d525852018-03-15 09:54:08 -0700579 revision = node.getAttribute('revision')
Josh Triplett884a3872014-06-12 14:57:29 -0700580
581 for p in self._projects[name]:
582 if path and p.relpath != path:
583 continue
584 if groups:
585 p.groups.extend(groups)
Luis Hector Chavez7d525852018-03-15 09:54:08 -0700586 if revision:
587 p.revisionExpr = revision
Doug Anderson37282b42011-03-04 11:54:18 -0800588 if node.nodeName == 'repo-hooks':
589 # Get the name of the project and the (space-separated) list of enabled.
590 repo_hooks_project = self._reqatt(node, 'in-project')
591 enabled_repo_hooks = self._reqatt(node, 'enabled-list').split()
592
593 # Only one project can be the hooks project
594 if self._repo_hooks_project is not None:
595 raise ManifestParseError(
596 'duplicate repo-hooks in %s' %
597 (self.manifestFile))
598
599 # Store a reference to the Project.
600 try:
David James8d201162013-10-11 17:03:19 -0700601 repo_hooks_projects = self._projects[repo_hooks_project]
Doug Anderson37282b42011-03-04 11:54:18 -0800602 except KeyError:
603 raise ManifestParseError(
604 'project %s not found for repo-hooks' %
605 (repo_hooks_project))
606
David James8d201162013-10-11 17:03:19 -0700607 if len(repo_hooks_projects) != 1:
608 raise ManifestParseError(
609 'internal error parsing repo-hooks in %s' %
610 (self.manifestFile))
611 self._repo_hooks_project = repo_hooks_projects[0]
612
Doug Anderson37282b42011-03-04 11:54:18 -0800613 # Store the enabled hooks in the Project object.
614 self._repo_hooks_project.enabled_repo_hooks = enabled_repo_hooks
Colin Cross23acdd32012-04-21 00:33:54 -0700615 if node.nodeName == 'remove-project':
616 name = self._reqatt(node, 'name')
David Jamesb8433df2014-01-30 10:11:17 -0800617
618 if name not in self._projects:
David Pursehousef9107482012-11-16 19:12:32 +0900619 raise ManifestParseError('remove-project element specifies non-existent '
620 'project: %s' % name)
Colin Cross23acdd32012-04-21 00:33:54 -0700621
David Jamesb8433df2014-01-30 10:11:17 -0800622 for p in self._projects[name]:
623 del self._paths[p.relpath]
624 del self._projects[name]
625
Colin Cross23acdd32012-04-21 00:33:54 -0700626 # If the manifest removes the hooks project, treat it as if it deleted
627 # the repo-hooks element too.
628 if self._repo_hooks_project and (self._repo_hooks_project.name == name):
629 self._repo_hooks_project = None
630
Doug Anderson37282b42011-03-04 11:54:18 -0800631
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800632 def _AddMetaProjectMirror(self, m):
633 name = None
634 m_url = m.GetRemote(m.remote.name).url
635 if m_url.endswith('/.git'):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530636 raise ManifestParseError('refusing to mirror %s' % m_url)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800637
638 if self._default and self._default.remote:
Conley Owensceea3682011-10-20 10:45:47 -0700639 url = self._default.remote.resolvedFetchUrl
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800640 if not url.endswith('/'):
641 url += '/'
642 if m_url.startswith(url):
643 remote = self._default.remote
644 name = m_url[len(url):]
645
646 if name is None:
647 s = m_url.rindex('/') + 1
Conley Owensdb728cd2011-09-26 16:34:01 -0700648 manifestUrl = self.manifestProject.config.GetString('remote.origin.url')
Shawn O. Pearcef35b2d92012-08-02 11:46:22 -0700649 remote = _XmlRemote('origin', fetch=m_url[:s], manifestUrl=manifestUrl)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800650 name = m_url[s:]
651
652 if name.endswith('.git'):
653 name = name[:-4]
654
655 if name not in self._projects:
656 m.PreSync()
657 gitdir = os.path.join(self.topdir, '%s.git' % name)
658 project = Project(manifest = self,
659 name = name,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -0700660 remote = remote.ToRemoteSpec(name),
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800661 gitdir = gitdir,
David James8d201162013-10-11 17:03:19 -0700662 objdir = gitdir,
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800663 worktree = None,
Kwanhong Leeccd218c2014-02-17 13:07:32 +0900664 relpath = name or None,
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700665 revisionExpr = m.revisionExpr,
666 revisionId = None)
David James8d201162013-10-11 17:03:19 -0700667 self._projects[project.name] = [project]
Kwanhong Leeccd218c2014-02-17 13:07:32 +0900668 self._paths[project.relpath] = project
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800669
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700670 def _ParseRemote(self, node):
671 """
672 reads a <remote> element from the manifest file
673 """
674 name = self._reqatt(node, 'name')
Yestin Sunb292b982012-07-02 07:32:50 -0700675 alias = node.getAttribute('alias')
676 if alias == '':
677 alias = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700678 fetch = self._reqatt(node, 'fetch')
Steve Raed6480452016-08-10 15:00:00 -0700679 pushUrl = node.getAttribute('pushurl')
680 if pushUrl == '':
681 pushUrl = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700682 review = node.getAttribute('review')
Shawn O. Pearceae6e0942008-11-06 10:25:35 -0800683 if review == '':
684 review = None
Anthony King36ea2fb2014-05-06 11:54:01 +0100685 revision = node.getAttribute('revision')
686 if revision == '':
687 revision = None
Conley Owensdb728cd2011-09-26 16:34:01 -0700688 manifestUrl = self.manifestProject.config.GetString('remote.origin.url')
Steve Raed6480452016-08-10 15:00:00 -0700689 return _XmlRemote(name, alias, fetch, pushUrl, manifestUrl, review, revision)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700690
691 def _ParseDefault(self, node):
692 """
693 reads a <default> element from the manifest file
694 """
695 d = _Default()
696 d.remote = self._get_remote(node)
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700697 d.revisionExpr = node.getAttribute('revision')
698 if d.revisionExpr == '':
699 d.revisionExpr = None
Anatol Pomazau79770d22012-04-20 14:41:59 -0700700
Bryan Jacobsf609f912013-05-06 13:36:24 -0400701 d.destBranchExpr = node.getAttribute('dest-branch') or None
Nasser Grainawida403412018-05-04 12:53:29 -0600702 d.upstreamExpr = node.getAttribute('upstream') or None
Bryan Jacobsf609f912013-05-06 13:36:24 -0400703
Shawn O. Pearce6392c872011-09-22 17:44:31 -0700704 sync_j = node.getAttribute('sync-j')
705 if sync_j == '' or sync_j is None:
706 d.sync_j = 1
707 else:
708 d.sync_j = int(sync_j)
Anatol Pomazau79770d22012-04-20 14:41:59 -0700709
710 sync_c = node.getAttribute('sync-c')
711 if not sync_c:
712 d.sync_c = False
713 else:
714 d.sync_c = sync_c.lower() in ("yes", "true", "1")
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800715
716 sync_s = node.getAttribute('sync-s')
717 if not sync_s:
718 d.sync_s = False
719 else:
720 d.sync_s = sync_s.lower() in ("yes", "true", "1")
YOUNG HO CHAa32c92c2018-02-14 16:57:31 +0900721
722 sync_tags = node.getAttribute('sync-tags')
723 if not sync_tags:
724 d.sync_tags = True
725 else:
726 d.sync_tags = sync_tags.lower() in ("yes", "true", "1")
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700727 return d
728
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700729 def _ParseNotice(self, node):
730 """
731 reads a <notice> element from the manifest file
732
733 The <notice> element is distinct from other tags in the XML in that the
734 data is conveyed between the start and end tag (it's not an empty-element
735 tag).
736
737 The white space (carriage returns, indentation) for the notice element is
738 relevant and is parsed in a way that is based on how python docstrings work.
739 In fact, the code is remarkably similar to here:
740 http://www.python.org/dev/peps/pep-0257/
741 """
742 # Get the data out of the node...
743 notice = node.childNodes[0].data
744
745 # Figure out minimum indentation, skipping the first line (the same line
746 # as the <notice> tag)...
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530747 minIndent = sys.maxsize
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700748 lines = notice.splitlines()
749 for line in lines[1:]:
750 lstrippedLine = line.lstrip()
751 if lstrippedLine:
752 indent = len(line) - len(lstrippedLine)
753 minIndent = min(indent, minIndent)
754
755 # Strip leading / trailing blank lines and also indentation.
756 cleanLines = [lines[0].strip()]
757 for line in lines[1:]:
758 cleanLines.append(line[minIndent:].rstrip())
759
760 # Clear completely blank lines from front and back...
761 while cleanLines and not cleanLines[0]:
762 del cleanLines[0]
763 while cleanLines and not cleanLines[-1]:
764 del cleanLines[-1]
765
766 return '\n'.join(cleanLines)
767
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800768 def _JoinName(self, parent_name, name):
769 return os.path.join(parent_name, name)
770
771 def _UnjoinName(self, parent_name, name):
772 return os.path.relpath(name, parent_name)
773
Simran Basib9a1b732015-08-20 12:19:28 -0700774 def _ParseProject(self, node, parent = None, **extra_proj_attrs):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700775 """
776 reads a <project> element from the manifest file
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700777 """
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700778 name = self._reqatt(node, 'name')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800779 if parent:
780 name = self._JoinName(parent.name, name)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700781
782 remote = self._get_remote(node)
783 if remote is None:
784 remote = self._default.remote
785 if remote is None:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530786 raise ManifestParseError("no remote for project %s within %s" %
787 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700788
Anthony King36ea2fb2014-05-06 11:54:01 +0100789 revisionExpr = node.getAttribute('revision') or remote.revision
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700790 if not revisionExpr:
791 revisionExpr = self._default.revisionExpr
792 if not revisionExpr:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530793 raise ManifestParseError("no revision for project %s within %s" %
794 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700795
796 path = node.getAttribute('path')
797 if not path:
798 path = name
799 if path.startswith('/'):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530800 raise ManifestParseError("project %s path cannot be absolute in %s" %
801 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700802
Mike Pontillod3153822012-02-28 11:53:24 -0800803 rebase = node.getAttribute('rebase')
804 if not rebase:
805 rebase = True
806 else:
807 rebase = rebase.lower() in ("yes", "true", "1")
808
Anatol Pomazau79770d22012-04-20 14:41:59 -0700809 sync_c = node.getAttribute('sync-c')
810 if not sync_c:
811 sync_c = False
812 else:
813 sync_c = sync_c.lower() in ("yes", "true", "1")
814
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800815 sync_s = node.getAttribute('sync-s')
816 if not sync_s:
817 sync_s = self._default.sync_s
818 else:
819 sync_s = sync_s.lower() in ("yes", "true", "1")
820
YOUNG HO CHAa32c92c2018-02-14 16:57:31 +0900821 sync_tags = node.getAttribute('sync-tags')
822 if not sync_tags:
823 sync_tags = self._default.sync_tags
824 else:
825 sync_tags = sync_tags.lower() in ("yes", "true", "1")
826
David Pursehouseede7f122012-11-27 22:25:30 +0900827 clone_depth = node.getAttribute('clone-depth')
828 if clone_depth:
829 try:
830 clone_depth = int(clone_depth)
831 if clone_depth <= 0:
832 raise ValueError()
833 except ValueError:
834 raise ManifestParseError('invalid clone-depth %s in %s' %
835 (clone_depth, self.manifestFile))
836
Bryan Jacobsf609f912013-05-06 13:36:24 -0400837 dest_branch = node.getAttribute('dest-branch') or self._default.destBranchExpr
838
Nasser Grainawida403412018-05-04 12:53:29 -0600839 upstream = node.getAttribute('upstream') or self._default.upstreamExpr
Brian Harring14a66742012-09-28 20:21:57 -0700840
Conley Owens971de8e2012-04-16 10:36:08 -0700841 groups = ''
842 if node.hasAttribute('groups'):
843 groups = node.getAttribute('groups')
Josh Triplett884a3872014-06-12 14:57:29 -0700844 groups = self._ParseGroups(groups)
Brian Harring7da13142012-06-15 02:24:20 -0700845
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800846 if parent is None:
David James8d201162013-10-11 17:03:19 -0700847 relpath, worktree, gitdir, objdir = self.GetProjectPaths(name, path)
Shawn O. Pearcecd81dd62012-10-26 12:18:00 -0700848 else:
David James8d201162013-10-11 17:03:19 -0700849 relpath, worktree, gitdir, objdir = \
850 self.GetSubprojectPaths(parent, name, path)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800851
852 default_groups = ['all', 'name:%s' % name, 'path:%s' % relpath]
853 groups.extend(set(default_groups).difference(groups))
Shawn O. Pearcecd81dd62012-10-26 12:18:00 -0700854
Scott Fandb83b1b2013-02-28 09:34:14 +0800855 if self.IsMirror and node.hasAttribute('force-path'):
856 if node.getAttribute('force-path').lower() in ("yes", "true", "1"):
857 gitdir = os.path.join(self.topdir, '%s.git' % path)
858
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700859 project = Project(manifest = self,
860 name = name,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -0700861 remote = remote.ToRemoteSpec(name),
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700862 gitdir = gitdir,
David James8d201162013-10-11 17:03:19 -0700863 objdir = objdir,
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700864 worktree = worktree,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800865 relpath = relpath,
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700866 revisionExpr = revisionExpr,
Mike Pontillod3153822012-02-28 11:53:24 -0800867 revisionId = None,
Colin Cross5acde752012-03-28 20:15:45 -0700868 rebase = rebase,
Anatol Pomazau79770d22012-04-20 14:41:59 -0700869 groups = groups,
Brian Harring14a66742012-09-28 20:21:57 -0700870 sync_c = sync_c,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800871 sync_s = sync_s,
YOUNG HO CHAa32c92c2018-02-14 16:57:31 +0900872 sync_tags = sync_tags,
David Pursehouseede7f122012-11-27 22:25:30 +0900873 clone_depth = clone_depth,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800874 upstream = upstream,
Bryan Jacobsf609f912013-05-06 13:36:24 -0400875 parent = parent,
Simran Basib9a1b732015-08-20 12:19:28 -0700876 dest_branch = dest_branch,
877 **extra_proj_attrs)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700878
879 for n in node.childNodes:
Shawn O. Pearce242b5262009-05-19 13:00:29 -0700880 if n.nodeName == 'copyfile':
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700881 self._ParseCopyFile(project, n)
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500882 if n.nodeName == 'linkfile':
883 self._ParseLinkFile(project, n)
James W. Mills24c13082012-04-12 15:04:13 -0500884 if n.nodeName == 'annotation':
885 self._ParseAnnotation(project, n)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800886 if n.nodeName == 'project':
887 project.subprojects.append(self._ParseProject(n, parent = project))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700888
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700889 return project
890
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800891 def GetProjectPaths(self, name, path):
892 relpath = path
893 if self.IsMirror:
894 worktree = None
895 gitdir = os.path.join(self.topdir, '%s.git' % name)
David James8d201162013-10-11 17:03:19 -0700896 objdir = gitdir
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800897 else:
898 worktree = os.path.join(self.topdir, path).replace('\\', '/')
899 gitdir = os.path.join(self.repodir, 'projects', '%s.git' % path)
David James8d201162013-10-11 17:03:19 -0700900 objdir = os.path.join(self.repodir, 'project-objects', '%s.git' % name)
901 return relpath, worktree, gitdir, objdir
902
903 def GetProjectsWithName(self, name):
904 return self._projects.get(name, [])
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800905
906 def GetSubprojectName(self, parent, submodule_path):
907 return os.path.join(parent.name, submodule_path)
908
909 def _JoinRelpath(self, parent_relpath, relpath):
910 return os.path.join(parent_relpath, relpath)
911
912 def _UnjoinRelpath(self, parent_relpath, relpath):
913 return os.path.relpath(relpath, parent_relpath)
914
David James8d201162013-10-11 17:03:19 -0700915 def GetSubprojectPaths(self, parent, name, path):
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800916 relpath = self._JoinRelpath(parent.relpath, path)
917 gitdir = os.path.join(parent.gitdir, 'subprojects', '%s.git' % path)
David James8d201162013-10-11 17:03:19 -0700918 objdir = os.path.join(parent.gitdir, 'subproject-objects', '%s.git' % name)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800919 if self.IsMirror:
920 worktree = None
921 else:
922 worktree = os.path.join(parent.worktree, path).replace('\\', '/')
David James8d201162013-10-11 17:03:19 -0700923 return relpath, worktree, gitdir, objdir
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800924
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700925 def _ParseCopyFile(self, project, node):
926 src = self._reqatt(node, 'src')
927 dest = self._reqatt(node, 'dest')
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800928 if not self.IsMirror:
929 # src is project relative;
930 # dest is relative to the top of the tree
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800931 project.AddCopyFile(src, dest, os.path.join(self.topdir, dest))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700932
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500933 def _ParseLinkFile(self, project, node):
934 src = self._reqatt(node, 'src')
935 dest = self._reqatt(node, 'dest')
936 if not self.IsMirror:
937 # src is project relative;
938 # dest is relative to the top of the tree
939 project.AddLinkFile(src, dest, os.path.join(self.topdir, dest))
940
James W. Mills24c13082012-04-12 15:04:13 -0500941 def _ParseAnnotation(self, project, node):
942 name = self._reqatt(node, 'name')
943 value = self._reqatt(node, 'value')
944 try:
945 keep = self._reqatt(node, 'keep').lower()
946 except ManifestParseError:
947 keep = "true"
948 if keep != "true" and keep != "false":
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530949 raise ManifestParseError('optional "keep" attribute must be '
950 '"true" or "false"')
James W. Mills24c13082012-04-12 15:04:13 -0500951 project.AddAnnotation(name, value, keep)
952
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700953 def _get_remote(self, node):
954 name = node.getAttribute('remote')
955 if not name:
956 return None
957
958 v = self._remotes.get(name)
959 if not v:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530960 raise ManifestParseError("remote %s not defined in %s" %
961 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700962 return v
963
964 def _reqatt(self, node, attname):
965 """
966 reads a required attribute from the node.
967 """
968 v = node.getAttribute(attname)
969 if not v:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530970 raise ManifestParseError("no %s in <%s> within %s" %
971 (attname, node.nodeName, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700972 return v
Julien Camperguedd654222014-01-09 16:21:37 +0100973
974 def projectsDiff(self, manifest):
975 """return the projects differences between two manifests.
976
977 The diff will be from self to given manifest.
978
979 """
980 fromProjects = self.paths
981 toProjects = manifest.paths
982
Anthony King7446c592014-05-06 09:19:39 +0100983 fromKeys = sorted(fromProjects.keys())
984 toKeys = sorted(toProjects.keys())
Julien Camperguedd654222014-01-09 16:21:37 +0100985
986 diff = {'added': [], 'removed': [], 'changed': [], 'unreachable': []}
987
988 for proj in fromKeys:
989 if not proj in toKeys:
990 diff['removed'].append(fromProjects[proj])
991 else:
992 fromProj = fromProjects[proj]
993 toProj = toProjects[proj]
994 try:
995 fromRevId = fromProj.GetCommitRevisionId()
996 toRevId = toProj.GetCommitRevisionId()
997 except ManifestInvalidRevisionError:
998 diff['unreachable'].append((fromProj, toProj))
999 else:
1000 if fromRevId != toRevId:
1001 diff['changed'].append((fromProj, toProj))
1002 toKeys.remove(proj)
1003
1004 for proj in toKeys:
1005 diff['added'].append(toProjects[proj])
1006
1007 return diff
Simran Basib9a1b732015-08-20 12:19:28 -07001008
1009
1010class GitcManifest(XmlManifest):
1011
1012 def __init__(self, repodir, gitc_client_name):
1013 """Initialize the GitcManifest object."""
1014 super(GitcManifest, self).__init__(repodir)
1015 self.isGitcClient = True
1016 self.gitc_client_name = gitc_client_name
Simran Basi8ce50412015-08-28 14:25:44 -07001017 self.gitc_client_dir = os.path.join(gitc_utils.get_gitc_manifest_dir(),
Simran Basib9a1b732015-08-20 12:19:28 -07001018 gitc_client_name)
1019 self.manifestFile = os.path.join(self.gitc_client_dir, '.manifest')
1020
1021 def _ParseProject(self, node, parent = None):
1022 """Override _ParseProject and add support for GITC specific attributes."""
1023 return super(GitcManifest, self)._ParseProject(
1024 node, parent=parent, old_revision=node.getAttribute('old-revision'))
1025
1026 def _output_manifest_project_extras(self, p, e):
1027 """Output GITC Specific Project attributes"""
1028 if p.old_revision:
Stefan Beller66851062016-06-17 16:40:08 -07001029 e.setAttribute('old-revision', str(p.old_revision))
Simran Basib9a1b732015-08-20 12:19:28 -07001030