blob: 60d61168d04498fcc19430d508be19e9705acb50 [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
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070062 remote = None
Shawn O. Pearce6392c872011-09-22 17:44:31 -070063 sync_j = 1
Anatol Pomazau79770d22012-04-20 14:41:59 -070064 sync_c = False
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +080065 sync_s = False
YOUNG HO CHAa32c92c2018-02-14 16:57:31 +090066 sync_tags = True
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070067
Julien Campergue74879922013-10-09 14:38:46 +020068 def __eq__(self, other):
69 return self.__dict__ == other.__dict__
70
71 def __ne__(self, other):
72 return self.__dict__ != other.__dict__
73
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070074class _XmlRemote(object):
75 def __init__(self,
76 name,
Yestin Sunb292b982012-07-02 07:32:50 -070077 alias=None,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070078 fetch=None,
Steve Raed6480452016-08-10 15:00:00 -070079 pushUrl=None,
Conley Owensdb728cd2011-09-26 16:34:01 -070080 manifestUrl=None,
Anthony King36ea2fb2014-05-06 11:54:01 +010081 review=None,
Jonathan Nieder93719792015-03-17 11:29:58 -070082 revision=None):
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070083 self.name = name
84 self.fetchUrl = fetch
Steve Raed6480452016-08-10 15:00:00 -070085 self.pushUrl = pushUrl
Conley Owensdb728cd2011-09-26 16:34:01 -070086 self.manifestUrl = manifestUrl
Yestin Sunb292b982012-07-02 07:32:50 -070087 self.remoteAlias = alias
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070088 self.reviewUrl = review
Anthony King36ea2fb2014-05-06 11:54:01 +010089 self.revision = revision
Conley Owensceea3682011-10-20 10:45:47 -070090 self.resolvedFetchUrl = self._resolveFetchUrl()
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070091
David Pursehouse717ece92012-11-13 08:49:16 +090092 def __eq__(self, other):
93 return self.__dict__ == other.__dict__
94
95 def __ne__(self, other):
96 return self.__dict__ != other.__dict__
97
Conley Owensceea3682011-10-20 10:45:47 -070098 def _resolveFetchUrl(self):
99 url = self.fetchUrl.rstrip('/')
Conley Owensdb728cd2011-09-26 16:34:01 -0700100 manifestUrl = self.manifestUrl.rstrip('/')
Conley Owens2d0f5082014-01-31 15:03:51 -0800101 # urljoin will gets confused over quite a few things. The ones we care
102 # about here are:
103 # * no scheme in the base url, like <hostname:port>
Anthony Kingcb07ba72015-03-28 23:26:04 +0000104 # We handle no scheme by replacing it with an obscure protocol, gopher
105 # and then replacing it with the original when we are done.
106
Conley Owensdb728cd2011-09-26 16:34:01 -0700107 if manifestUrl.find(':') != manifestUrl.find('/') - 1:
Conley Owens4ccad752015-04-29 10:45:37 -0700108 url = urllib.parse.urljoin('gopher://' + manifestUrl, url)
109 url = re.sub(r'^gopher://', '', url)
Anthony Kingcb07ba72015-03-28 23:26:04 +0000110 else:
111 url = urllib.parse.urljoin(manifestUrl, url)
Shawn Pearcea9f11b32013-01-02 15:40:48 -0800112 return url
Conley Owensceea3682011-10-20 10:45:47 -0700113
114 def ToRemoteSpec(self, projectName):
David Rileye0684ad2017-04-05 00:02:59 -0700115 fetchUrl = self.resolvedFetchUrl.rstrip('/')
116 url = fetchUrl + '/' + projectName
Yestin Sunb292b982012-07-02 07:32:50 -0700117 remoteName = self.name
Conley Owens1e7ab2a2013-10-08 17:26:57 -0700118 if self.remoteAlias:
David Pursehouse37128b62013-10-15 10:48:40 +0900119 remoteName = self.remoteAlias
Dan Willemsen96c2d652016-04-06 16:03:54 -0700120 return RemoteSpec(remoteName,
121 url=url,
Steve Raed6480452016-08-10 15:00:00 -0700122 pushUrl=self.pushUrl,
Dan Willemsen96c2d652016-04-06 16:03:54 -0700123 review=self.reviewUrl,
David Rileye0684ad2017-04-05 00:02:59 -0700124 orig_name=self.name,
125 fetchUrl=self.fetchUrl)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700126
Shawn O. Pearcec8a300f2009-05-18 13:19:57 -0700127class XmlManifest(object):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700128 """manages the repo configuration file"""
129
130 def __init__(self, repodir):
131 self.repodir = os.path.abspath(repodir)
132 self.topdir = os.path.dirname(self.repodir)
133 self.manifestFile = os.path.join(self.repodir, MANIFEST_FILE_NAME)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700134 self.globalConfig = GitConfig.ForUser()
David Pursehouse4eb285c2013-02-14 16:28:44 +0900135 self.localManifestWarning = False
Simran Basib9a1b732015-08-20 12:19:28 -0700136 self.isGitcClient = False
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700137
138 self.repoProject = MetaProject(self, 'repo',
139 gitdir = os.path.join(repodir, 'repo/.git'),
140 worktree = os.path.join(repodir, 'repo'))
141
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700142 self.manifestProject = MetaProject(self, 'manifests',
Shawn O. Pearcef5c25a62008-11-04 08:11:53 -0800143 gitdir = os.path.join(repodir, 'manifests.git'),
144 worktree = os.path.join(repodir, 'manifests'))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700145
146 self._Unload()
147
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700148 def Override(self, name):
149 """Use a different manifest, just for the current instantiation.
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700150 """
151 path = os.path.join(self.manifestProject.worktree, name)
152 if not os.path.isfile(path):
153 raise ManifestParseError('manifest %s not found' % name)
154
155 old = self.manifestFile
156 try:
157 self.manifestFile = path
158 self._Unload()
159 self._Load()
160 finally:
161 self.manifestFile = old
162
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700163 def Link(self, name):
164 """Update the repo metadata to use a different manifest.
165 """
166 self.Override(name)
167
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700168 try:
Sebastian Frias223bf962012-11-21 19:09:25 +0100169 if os.path.lexists(self.manifestFile):
Renaud Paquay010fed72016-11-11 14:25:29 -0800170 platform_utils.remove(self.manifestFile)
Renaud Paquayd5cec5e2016-11-01 11:24:03 -0700171 platform_utils.symlink(os.path.join('manifests', name), self.manifestFile)
Sebastian Frias223bf962012-11-21 19:09:25 +0100172 except OSError as e:
173 raise ManifestParseError('cannot link manifest %s: %s' % (name, str(e)))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700174
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800175 def _RemoteToXml(self, r, doc, root):
176 e = doc.createElement('remote')
177 root.appendChild(e)
178 e.setAttribute('name', r.name)
179 e.setAttribute('fetch', r.fetchUrl)
Steve Raed6480452016-08-10 15:00:00 -0700180 if r.pushUrl is not None:
181 e.setAttribute('pushurl', r.pushUrl)
Conley Owens1e7ab2a2013-10-08 17:26:57 -0700182 if r.remoteAlias is not None:
183 e.setAttribute('alias', r.remoteAlias)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800184 if r.reviewUrl is not None:
185 e.setAttribute('review', r.reviewUrl)
Anthony King36ea2fb2014-05-06 11:54:01 +0100186 if r.revision is not None:
187 e.setAttribute('revision', r.revision)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800188
Josh Triplett884a3872014-06-12 14:57:29 -0700189 def _ParseGroups(self, groups):
190 return [x for x in re.split(r'[,\s]+', groups) if x]
191
Dan Willemsen5ea32d12015-09-08 13:27:20 -0700192 def Save(self, fd, peg_rev=False, peg_rev_upstream=True, groups=None):
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800193 """Write the current manifest out to the given file descriptor.
194 """
Colin Cross5acde752012-03-28 20:15:45 -0700195 mp = self.manifestProject
196
Dan Willemsen5ea32d12015-09-08 13:27:20 -0700197 if groups is None:
198 groups = mp.config.GetString('manifest.groups')
Matt Gumbel0c635bb2012-12-21 10:14:53 -0800199 if groups:
Josh Triplett884a3872014-06-12 14:57:29 -0700200 groups = self._ParseGroups(groups)
Colin Cross5acde752012-03-28 20:15:45 -0700201
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800202 doc = xml.dom.minidom.Document()
203 root = doc.createElement('manifest')
204 doc.appendChild(root)
205
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700206 # Save out the notice. There's a little bit of work here to give it the
207 # right whitespace, which assumes that the notice is automatically indented
208 # by 4 by minidom.
209 if self.notice:
210 notice_element = root.appendChild(doc.createElement('notice'))
211 notice_lines = self.notice.splitlines()
212 indented_notice = ('\n'.join(" "*4 + line for line in notice_lines))[4:]
213 notice_element.appendChild(doc.createTextNode(indented_notice))
214
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800215 d = self.default
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800216
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530217 for r in sorted(self.remotes):
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800218 self._RemoteToXml(self.remotes[r], doc, root)
219 if self.remotes:
220 root.appendChild(doc.createTextNode(''))
221
222 have_default = False
223 e = doc.createElement('default')
224 if d.remote:
225 have_default = True
226 e.setAttribute('remote', d.remote.name)
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700227 if d.revisionExpr:
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800228 have_default = True
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700229 e.setAttribute('revision', d.revisionExpr)
Simon Ruggier7e59de22015-07-24 12:50:06 +0200230 if d.destBranchExpr:
231 have_default = True
232 e.setAttribute('dest-branch', d.destBranchExpr)
Shawn O. Pearce6392c872011-09-22 17:44:31 -0700233 if d.sync_j > 1:
234 have_default = True
235 e.setAttribute('sync-j', '%d' % d.sync_j)
Anatol Pomazau79770d22012-04-20 14:41:59 -0700236 if d.sync_c:
237 have_default = True
238 e.setAttribute('sync-c', 'true')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800239 if d.sync_s:
240 have_default = True
241 e.setAttribute('sync-s', 'true')
YOUNG HO CHAa32c92c2018-02-14 16:57:31 +0900242 if not d.sync_tags:
243 have_default = True
244 e.setAttribute('sync-tags', 'false')
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800245 if have_default:
246 root.appendChild(e)
247 root.appendChild(doc.createTextNode(''))
248
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700249 if self._manifest_server:
250 e = doc.createElement('manifest-server')
251 e.setAttribute('url', self._manifest_server)
252 root.appendChild(e)
253 root.appendChild(doc.createTextNode(''))
254
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800255 def output_projects(parent, parent_node, projects):
David James8d201162013-10-11 17:03:19 -0700256 for project_name in projects:
257 for project in self._projects[project_name]:
258 output_project(parent, parent_node, project)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800259
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800260 def output_project(parent, parent_node, p):
Colin Cross5acde752012-03-28 20:15:45 -0700261 if not p.MatchesGroups(groups):
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800262 return
263
264 name = p.name
265 relpath = p.relpath
266 if parent:
267 name = self._UnjoinName(parent.name, name)
268 relpath = self._UnjoinRelpath(parent.relpath, relpath)
Colin Cross5acde752012-03-28 20:15:45 -0700269
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800270 e = doc.createElement('project')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800271 parent_node.appendChild(e)
272 e.setAttribute('name', name)
273 if relpath != name:
274 e.setAttribute('path', relpath)
Conley Owensa17d7af2013-10-16 14:38:09 -0700275 remoteName = None
276 if d.remote:
Dan Willemsen96c2d652016-04-06 16:03:54 -0700277 remoteName = d.remote.name
278 if not d.remote or p.remote.orig_name != remoteName:
279 remoteName = p.remote.orig_name
Anthony King36ea2fb2014-05-06 11:54:01 +0100280 e.setAttribute('remote', remoteName)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800281 if peg_rev:
282 if self.IsMirror:
Brian Harring14a66742012-09-28 20:21:57 -0700283 value = p.bare_git.rev_parse(p.revisionExpr + '^0')
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800284 else:
Brian Harring14a66742012-09-28 20:21:57 -0700285 value = p.work_git.rev_parse(HEAD + '^0')
286 e.setAttribute('revision', value)
Conley Owens551dfec2015-07-10 14:54:54 -0700287 if peg_rev_upstream:
288 if p.upstream:
289 e.setAttribute('upstream', p.upstream)
290 elif value != p.revisionExpr:
291 # Only save the origin if the origin is not a sha1, and the default
292 # isn't our value
293 e.setAttribute('upstream', p.revisionExpr)
Anthony King36ea2fb2014-05-06 11:54:01 +0100294 else:
Dan Willemsen96c2d652016-04-06 16:03:54 -0700295 revision = self.remotes[p.remote.orig_name].revision or d.revisionExpr
Anthony King36ea2fb2014-05-06 11:54:01 +0100296 if not revision or revision != p.revisionExpr:
297 e.setAttribute('revision', p.revisionExpr)
Mani Chandel7a91d512014-07-24 16:27:08 +0530298 if p.upstream and p.upstream != p.revisionExpr:
299 e.setAttribute('upstream', p.upstream)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800300
Simon Ruggier7e59de22015-07-24 12:50:06 +0200301 if p.dest_branch and p.dest_branch != d.destBranchExpr:
302 e.setAttribute('dest-branch', p.dest_branch)
303
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800304 for c in p.copyfiles:
305 ce = doc.createElement('copyfile')
306 ce.setAttribute('src', c.src)
307 ce.setAttribute('dest', c.dest)
308 e.appendChild(ce)
309
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500310 for l in p.linkfiles:
311 le = doc.createElement('linkfile')
312 le.setAttribute('src', l.src)
313 le.setAttribute('dest', l.dest)
314 e.appendChild(le)
315
Conley Owensbb1b5f52012-08-13 13:11:18 -0700316 default_groups = ['all', 'name:%s' % p.name, 'path:%s' % p.relpath]
Dmitry Fink17f85ea2012-08-06 14:52:29 -0700317 egroups = [g for g in p.groups if g not in default_groups]
Conley Owens971de8e2012-04-16 10:36:08 -0700318 if egroups:
319 e.setAttribute('groups', ','.join(egroups))
Colin Cross5acde752012-03-28 20:15:45 -0700320
James W. Mills24c13082012-04-12 15:04:13 -0500321 for a in p.annotations:
322 if a.keep == "true":
323 ae = doc.createElement('annotation')
324 ae.setAttribute('name', a.name)
325 ae.setAttribute('value', a.value)
326 e.appendChild(ae)
327
Anatol Pomazau79770d22012-04-20 14:41:59 -0700328 if p.sync_c:
329 e.setAttribute('sync-c', 'true')
330
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800331 if p.sync_s:
332 e.setAttribute('sync-s', 'true')
333
YOUNG HO CHAa32c92c2018-02-14 16:57:31 +0900334 if not p.sync_tags:
335 e.setAttribute('sync-tags', 'false')
336
Dan Willemsen88409222015-08-17 15:29:10 -0700337 if p.clone_depth:
338 e.setAttribute('clone-depth', str(p.clone_depth))
339
Simran Basib9a1b732015-08-20 12:19:28 -0700340 self._output_manifest_project_extras(p, e)
341
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800342 if p.subprojects:
David James8d201162013-10-11 17:03:19 -0700343 subprojects = set(subp.name for subp in p.subprojects)
344 output_projects(p, e, list(sorted(subprojects)))
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800345
David James8d201162013-10-11 17:03:19 -0700346 projects = set(p.name for p in self._paths.values() if not p.parent)
347 output_projects(None, root, list(sorted(projects)))
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800348
Doug Anderson37282b42011-03-04 11:54:18 -0800349 if self._repo_hooks_project:
350 root.appendChild(doc.createTextNode(''))
351 e = doc.createElement('repo-hooks')
352 e.setAttribute('in-project', self._repo_hooks_project.name)
353 e.setAttribute('enabled-list',
354 ' '.join(self._repo_hooks_project.enabled_repo_hooks))
355 root.appendChild(e)
356
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800357 doc.writexml(fd, '', ' ', '\n', 'UTF-8')
358
Simran Basib9a1b732015-08-20 12:19:28 -0700359 def _output_manifest_project_extras(self, p, e):
360 """Manifests can modify e if they support extra project attributes."""
361 pass
362
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700363 @property
David James8d201162013-10-11 17:03:19 -0700364 def paths(self):
365 self._Load()
366 return self._paths
367
368 @property
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700369 def projects(self):
370 self._Load()
Anthony Kingd58bfe52014-05-05 23:30:49 +0100371 return list(self._paths.values())
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700372
373 @property
374 def remotes(self):
375 self._Load()
376 return self._remotes
377
378 @property
379 def default(self):
380 self._Load()
381 return self._default
382
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800383 @property
Doug Anderson37282b42011-03-04 11:54:18 -0800384 def repo_hooks_project(self):
385 self._Load()
386 return self._repo_hooks_project
387
388 @property
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700389 def notice(self):
390 self._Load()
391 return self._notice
392
393 @property
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700394 def manifest_server(self):
395 self._Load()
Shawn O. Pearce34fb20f2011-11-30 13:41:02 -0800396 return self._manifest_server
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700397
398 @property
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800399 def IsMirror(self):
400 return self.manifestProject.config.GetBoolean('repo.mirror')
401
Julien Campergue335f5ef2013-10-16 11:02:35 +0200402 @property
403 def IsArchive(self):
404 return self.manifestProject.config.GetBoolean('repo.archive')
405
Martin Kellye4e94d22017-03-21 16:05:12 -0700406 @property
407 def HasSubmodules(self):
408 return self.manifestProject.config.GetBoolean('repo.submodules')
409
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700410 def _Unload(self):
411 self._loaded = False
412 self._projects = {}
David James8d201162013-10-11 17:03:19 -0700413 self._paths = {}
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700414 self._remotes = {}
415 self._default = None
Doug Anderson37282b42011-03-04 11:54:18 -0800416 self._repo_hooks_project = None
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700417 self._notice = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700418 self.branch = None
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700419 self._manifest_server = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700420
421 def _Load(self):
422 if not self._loaded:
Shawn O. Pearce2450a292008-11-04 08:22:07 -0800423 m = self.manifestProject
424 b = m.GetBranch(m.CurrentBranch).merge
Shawn O. Pearce21c5c342009-06-25 16:47:30 -0700425 if b is not None and b.startswith(R_HEADS):
Shawn O. Pearce2450a292008-11-04 08:22:07 -0800426 b = b[len(R_HEADS):]
427 self.branch = b
428
Colin Cross23acdd32012-04-21 00:33:54 -0700429 nodes = []
Brian Harring475a47d2012-06-07 20:05:35 -0700430 nodes.append(self._ParseManifestXml(self.manifestFile,
431 self.manifestProject.worktree))
Shawn O. Pearce5cc66792008-10-23 16:19:27 -0700432
433 local = os.path.join(self.repodir, LOCAL_MANIFEST_NAME)
434 if os.path.exists(local):
David Pursehouse4eb285c2013-02-14 16:28:44 +0900435 if not self.localManifestWarning:
436 self.localManifestWarning = True
437 print('warning: %s is deprecated; put local manifests in `%s` instead'
438 % (LOCAL_MANIFEST_NAME, os.path.join(self.repodir, LOCAL_MANIFESTS_DIR_NAME)),
439 file=sys.stderr)
Brian Harring475a47d2012-06-07 20:05:35 -0700440 nodes.append(self._ParseManifestXml(local, self.repodir))
Colin Cross23acdd32012-04-21 00:33:54 -0700441
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900442 local_dir = os.path.abspath(os.path.join(self.repodir, LOCAL_MANIFESTS_DIR_NAME))
443 try:
David Pursehouse52f1e5d2012-11-14 04:53:24 +0900444 for local_file in sorted(os.listdir(local_dir)):
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900445 if local_file.endswith('.xml'):
David Pursehouse5f434ed2012-11-22 13:48:10 +0900446 local = os.path.join(local_dir, local_file)
447 nodes.append(self._ParseManifestXml(local, self.repodir))
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900448 except OSError:
449 pass
450
Joe Onorato26e24752013-01-11 12:35:53 -0800451 try:
452 self._ParseManifest(nodes)
453 except ManifestParseError as e:
454 # There was a problem parsing, unload ourselves in case they catch
455 # this error and try again later, we will show the correct error
456 self._Unload()
457 raise e
Shawn O. Pearce5cc66792008-10-23 16:19:27 -0700458
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800459 if self.IsMirror:
460 self._AddMetaProjectMirror(self.repoProject)
461 self._AddMetaProjectMirror(self.manifestProject)
462
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700463 self._loaded = True
464
Brian Harring475a47d2012-06-07 20:05:35 -0700465 def _ParseManifestXml(self, path, include_root):
David Pursehousef7fc8a92012-11-13 04:00:28 +0900466 try:
467 root = xml.dom.minidom.parse(path)
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900468 except (OSError, xml.parsers.expat.ExpatError) as e:
David Pursehousef7fc8a92012-11-13 04:00:28 +0900469 raise ManifestParseError("error parsing manifest %s: %s" % (path, e))
470
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700471 if not root or not root.childNodes:
Brian Harring26448742011-04-28 05:04:41 -0700472 raise ManifestParseError("no root node in %s" % (path,))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700473
Jooncheol Park34acdd22012-08-27 02:25:59 +0900474 for manifest in root.childNodes:
475 if manifest.nodeName == 'manifest':
476 break
477 else:
Brian Harring26448742011-04-28 05:04:41 -0700478 raise ManifestParseError("no <manifest> in %s" % (path,))
479
Colin Cross23acdd32012-04-21 00:33:54 -0700480 nodes = []
David Pursehouse4f7bdea2012-10-22 12:50:15 +0900481 for node in manifest.childNodes: # pylint:disable=W0631
David Pursehouse5c6eeac2012-10-11 16:44:48 +0900482 # We only get here if manifest is initialised
David Pursehousec1b86a22012-11-14 11:36:51 +0900483 if node.nodeName == 'include':
484 name = self._reqatt(node, 'name')
485 fp = os.path.join(include_root, name)
486 if not os.path.isfile(fp):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530487 raise ManifestParseError("include %s doesn't exist or isn't a file"
488 % (name,))
David Pursehousec1b86a22012-11-14 11:36:51 +0900489 try:
490 nodes.extend(self._ParseManifestXml(fp, include_root))
491 # should isolate this to the exact exception, but that's
492 # tricky. actual parsing implementation may vary.
493 except (KeyboardInterrupt, RuntimeError, SystemExit):
494 raise
495 except Exception as e:
496 raise ManifestParseError(
497 "failed parsing included manifest %s: %s", (name, e))
498 else:
499 nodes.append(node)
Colin Cross23acdd32012-04-21 00:33:54 -0700500 return nodes
Brian Harring26448742011-04-28 05:04:41 -0700501
Colin Cross23acdd32012-04-21 00:33:54 -0700502 def _ParseManifest(self, node_list):
503 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700504 if node.nodeName == 'remote':
505 remote = self._ParseRemote(node)
David Pursehouse717ece92012-11-13 08:49:16 +0900506 if remote:
507 if remote.name in self._remotes:
508 if remote != self._remotes[remote.name]:
509 raise ManifestParseError(
510 'remote %s already exists with different attributes' %
511 (remote.name))
512 else:
513 self._remotes[remote.name] = remote
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700514
Colin Cross23acdd32012-04-21 00:33:54 -0700515 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700516 if node.nodeName == 'default':
Julien Campergue74879922013-10-09 14:38:46 +0200517 new_default = self._ParseDefault(node)
518 if self._default is None:
519 self._default = new_default
520 elif new_default != self._default:
David Pursehouse37128b62013-10-15 10:48:40 +0900521 raise ManifestParseError('duplicate default in %s' %
522 (self.manifestFile))
Julien Campergue74879922013-10-09 14:38:46 +0200523
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700524 if self._default is None:
525 self._default = _Default()
526
Colin Cross23acdd32012-04-21 00:33:54 -0700527 for node in itertools.chain(*node_list):
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700528 if node.nodeName == 'notice':
529 if self._notice is not None:
Doug Anderson37282b42011-03-04 11:54:18 -0800530 raise ManifestParseError(
531 'duplicate notice in %s' %
532 (self.manifestFile))
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700533 self._notice = self._ParseNotice(node)
534
Colin Cross23acdd32012-04-21 00:33:54 -0700535 for node in itertools.chain(*node_list):
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700536 if node.nodeName == 'manifest-server':
537 url = self._reqatt(node, 'url')
538 if self._manifest_server is not None:
David Pursehousec1b86a22012-11-14 11:36:51 +0900539 raise ManifestParseError(
540 'duplicate manifest-server in %s' %
541 (self.manifestFile))
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700542 self._manifest_server = url
543
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800544 def recursively_add_projects(project):
David James8d201162013-10-11 17:03:19 -0700545 projects = self._projects.setdefault(project.name, [])
546 if project.relpath is None:
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800547 raise ManifestParseError(
David James8d201162013-10-11 17:03:19 -0700548 'missing path for %s in %s' %
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800549 (project.name, self.manifestFile))
David James8d201162013-10-11 17:03:19 -0700550 if project.relpath in self._paths:
551 raise ManifestParseError(
552 'duplicate path %s in %s' %
553 (project.relpath, self.manifestFile))
554 self._paths[project.relpath] = project
555 projects.append(project)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800556 for subproject in project.subprojects:
557 recursively_add_projects(subproject)
558
Colin Cross23acdd32012-04-21 00:33:54 -0700559 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700560 if node.nodeName == 'project':
561 project = self._ParseProject(node)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800562 recursively_add_projects(project)
Josh Triplett884a3872014-06-12 14:57:29 -0700563 if node.nodeName == 'extend-project':
564 name = self._reqatt(node, 'name')
565
566 if name not in self._projects:
567 raise ManifestParseError('extend-project element specifies non-existent '
568 'project: %s' % name)
569
570 path = node.getAttribute('path')
571 groups = node.getAttribute('groups')
572 if groups:
573 groups = self._ParseGroups(groups)
Luis Hector Chavez7d525852018-03-15 09:54:08 -0700574 revision = node.getAttribute('revision')
Josh Triplett884a3872014-06-12 14:57:29 -0700575
576 for p in self._projects[name]:
577 if path and p.relpath != path:
578 continue
579 if groups:
580 p.groups.extend(groups)
Luis Hector Chavez7d525852018-03-15 09:54:08 -0700581 if revision:
582 p.revisionExpr = revision
Doug Anderson37282b42011-03-04 11:54:18 -0800583 if node.nodeName == 'repo-hooks':
584 # Get the name of the project and the (space-separated) list of enabled.
585 repo_hooks_project = self._reqatt(node, 'in-project')
586 enabled_repo_hooks = self._reqatt(node, 'enabled-list').split()
587
588 # Only one project can be the hooks project
589 if self._repo_hooks_project is not None:
590 raise ManifestParseError(
591 'duplicate repo-hooks in %s' %
592 (self.manifestFile))
593
594 # Store a reference to the Project.
595 try:
David James8d201162013-10-11 17:03:19 -0700596 repo_hooks_projects = self._projects[repo_hooks_project]
Doug Anderson37282b42011-03-04 11:54:18 -0800597 except KeyError:
598 raise ManifestParseError(
599 'project %s not found for repo-hooks' %
600 (repo_hooks_project))
601
David James8d201162013-10-11 17:03:19 -0700602 if len(repo_hooks_projects) != 1:
603 raise ManifestParseError(
604 'internal error parsing repo-hooks in %s' %
605 (self.manifestFile))
606 self._repo_hooks_project = repo_hooks_projects[0]
607
Doug Anderson37282b42011-03-04 11:54:18 -0800608 # Store the enabled hooks in the Project object.
609 self._repo_hooks_project.enabled_repo_hooks = enabled_repo_hooks
Colin Cross23acdd32012-04-21 00:33:54 -0700610 if node.nodeName == 'remove-project':
611 name = self._reqatt(node, 'name')
David Jamesb8433df2014-01-30 10:11:17 -0800612
613 if name not in self._projects:
David Pursehousef9107482012-11-16 19:12:32 +0900614 raise ManifestParseError('remove-project element specifies non-existent '
615 'project: %s' % name)
Colin Cross23acdd32012-04-21 00:33:54 -0700616
David Jamesb8433df2014-01-30 10:11:17 -0800617 for p in self._projects[name]:
618 del self._paths[p.relpath]
619 del self._projects[name]
620
Colin Cross23acdd32012-04-21 00:33:54 -0700621 # If the manifest removes the hooks project, treat it as if it deleted
622 # the repo-hooks element too.
623 if self._repo_hooks_project and (self._repo_hooks_project.name == name):
624 self._repo_hooks_project = None
625
Doug Anderson37282b42011-03-04 11:54:18 -0800626
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800627 def _AddMetaProjectMirror(self, m):
628 name = None
629 m_url = m.GetRemote(m.remote.name).url
630 if m_url.endswith('/.git'):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530631 raise ManifestParseError('refusing to mirror %s' % m_url)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800632
633 if self._default and self._default.remote:
Conley Owensceea3682011-10-20 10:45:47 -0700634 url = self._default.remote.resolvedFetchUrl
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800635 if not url.endswith('/'):
636 url += '/'
637 if m_url.startswith(url):
638 remote = self._default.remote
639 name = m_url[len(url):]
640
641 if name is None:
642 s = m_url.rindex('/') + 1
Conley Owensdb728cd2011-09-26 16:34:01 -0700643 manifestUrl = self.manifestProject.config.GetString('remote.origin.url')
Shawn O. Pearcef35b2d92012-08-02 11:46:22 -0700644 remote = _XmlRemote('origin', fetch=m_url[:s], manifestUrl=manifestUrl)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800645 name = m_url[s:]
646
647 if name.endswith('.git'):
648 name = name[:-4]
649
650 if name not in self._projects:
651 m.PreSync()
652 gitdir = os.path.join(self.topdir, '%s.git' % name)
653 project = Project(manifest = self,
654 name = name,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -0700655 remote = remote.ToRemoteSpec(name),
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800656 gitdir = gitdir,
David James8d201162013-10-11 17:03:19 -0700657 objdir = gitdir,
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800658 worktree = None,
Kwanhong Leeccd218c2014-02-17 13:07:32 +0900659 relpath = name or None,
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700660 revisionExpr = m.revisionExpr,
661 revisionId = None)
David James8d201162013-10-11 17:03:19 -0700662 self._projects[project.name] = [project]
Kwanhong Leeccd218c2014-02-17 13:07:32 +0900663 self._paths[project.relpath] = project
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800664
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700665 def _ParseRemote(self, node):
666 """
667 reads a <remote> element from the manifest file
668 """
669 name = self._reqatt(node, 'name')
Yestin Sunb292b982012-07-02 07:32:50 -0700670 alias = node.getAttribute('alias')
671 if alias == '':
672 alias = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700673 fetch = self._reqatt(node, 'fetch')
Steve Raed6480452016-08-10 15:00:00 -0700674 pushUrl = node.getAttribute('pushurl')
675 if pushUrl == '':
676 pushUrl = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700677 review = node.getAttribute('review')
Shawn O. Pearceae6e0942008-11-06 10:25:35 -0800678 if review == '':
679 review = None
Anthony King36ea2fb2014-05-06 11:54:01 +0100680 revision = node.getAttribute('revision')
681 if revision == '':
682 revision = None
Conley Owensdb728cd2011-09-26 16:34:01 -0700683 manifestUrl = self.manifestProject.config.GetString('remote.origin.url')
Steve Raed6480452016-08-10 15:00:00 -0700684 return _XmlRemote(name, alias, fetch, pushUrl, manifestUrl, review, revision)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700685
686 def _ParseDefault(self, node):
687 """
688 reads a <default> element from the manifest file
689 """
690 d = _Default()
691 d.remote = self._get_remote(node)
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700692 d.revisionExpr = node.getAttribute('revision')
693 if d.revisionExpr == '':
694 d.revisionExpr = None
Anatol Pomazau79770d22012-04-20 14:41:59 -0700695
Bryan Jacobsf609f912013-05-06 13:36:24 -0400696 d.destBranchExpr = node.getAttribute('dest-branch') or None
697
Shawn O. Pearce6392c872011-09-22 17:44:31 -0700698 sync_j = node.getAttribute('sync-j')
699 if sync_j == '' or sync_j is None:
700 d.sync_j = 1
701 else:
702 d.sync_j = int(sync_j)
Anatol Pomazau79770d22012-04-20 14:41:59 -0700703
704 sync_c = node.getAttribute('sync-c')
705 if not sync_c:
706 d.sync_c = False
707 else:
708 d.sync_c = sync_c.lower() in ("yes", "true", "1")
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800709
710 sync_s = node.getAttribute('sync-s')
711 if not sync_s:
712 d.sync_s = False
713 else:
714 d.sync_s = sync_s.lower() in ("yes", "true", "1")
YOUNG HO CHAa32c92c2018-02-14 16:57:31 +0900715
716 sync_tags = node.getAttribute('sync-tags')
717 if not sync_tags:
718 d.sync_tags = True
719 else:
720 d.sync_tags = sync_tags.lower() in ("yes", "true", "1")
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700721 return d
722
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700723 def _ParseNotice(self, node):
724 """
725 reads a <notice> element from the manifest file
726
727 The <notice> element is distinct from other tags in the XML in that the
728 data is conveyed between the start and end tag (it's not an empty-element
729 tag).
730
731 The white space (carriage returns, indentation) for the notice element is
732 relevant and is parsed in a way that is based on how python docstrings work.
733 In fact, the code is remarkably similar to here:
734 http://www.python.org/dev/peps/pep-0257/
735 """
736 # Get the data out of the node...
737 notice = node.childNodes[0].data
738
739 # Figure out minimum indentation, skipping the first line (the same line
740 # as the <notice> tag)...
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530741 minIndent = sys.maxsize
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700742 lines = notice.splitlines()
743 for line in lines[1:]:
744 lstrippedLine = line.lstrip()
745 if lstrippedLine:
746 indent = len(line) - len(lstrippedLine)
747 minIndent = min(indent, minIndent)
748
749 # Strip leading / trailing blank lines and also indentation.
750 cleanLines = [lines[0].strip()]
751 for line in lines[1:]:
752 cleanLines.append(line[minIndent:].rstrip())
753
754 # Clear completely blank lines from front and back...
755 while cleanLines and not cleanLines[0]:
756 del cleanLines[0]
757 while cleanLines and not cleanLines[-1]:
758 del cleanLines[-1]
759
760 return '\n'.join(cleanLines)
761
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800762 def _JoinName(self, parent_name, name):
763 return os.path.join(parent_name, name)
764
765 def _UnjoinName(self, parent_name, name):
766 return os.path.relpath(name, parent_name)
767
Simran Basib9a1b732015-08-20 12:19:28 -0700768 def _ParseProject(self, node, parent = None, **extra_proj_attrs):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700769 """
770 reads a <project> element from the manifest file
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700771 """
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700772 name = self._reqatt(node, 'name')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800773 if parent:
774 name = self._JoinName(parent.name, name)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700775
776 remote = self._get_remote(node)
777 if remote is None:
778 remote = self._default.remote
779 if remote is None:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530780 raise ManifestParseError("no remote for project %s within %s" %
781 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700782
Anthony King36ea2fb2014-05-06 11:54:01 +0100783 revisionExpr = node.getAttribute('revision') or remote.revision
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700784 if not revisionExpr:
785 revisionExpr = self._default.revisionExpr
786 if not revisionExpr:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530787 raise ManifestParseError("no revision for project %s within %s" %
788 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700789
790 path = node.getAttribute('path')
791 if not path:
792 path = name
793 if path.startswith('/'):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530794 raise ManifestParseError("project %s path cannot be absolute in %s" %
795 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700796
Mike Pontillod3153822012-02-28 11:53:24 -0800797 rebase = node.getAttribute('rebase')
798 if not rebase:
799 rebase = True
800 else:
801 rebase = rebase.lower() in ("yes", "true", "1")
802
Anatol Pomazau79770d22012-04-20 14:41:59 -0700803 sync_c = node.getAttribute('sync-c')
804 if not sync_c:
805 sync_c = False
806 else:
807 sync_c = sync_c.lower() in ("yes", "true", "1")
808
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800809 sync_s = node.getAttribute('sync-s')
810 if not sync_s:
811 sync_s = self._default.sync_s
812 else:
813 sync_s = sync_s.lower() in ("yes", "true", "1")
814
YOUNG HO CHAa32c92c2018-02-14 16:57:31 +0900815 sync_tags = node.getAttribute('sync-tags')
816 if not sync_tags:
817 sync_tags = self._default.sync_tags
818 else:
819 sync_tags = sync_tags.lower() in ("yes", "true", "1")
820
David Pursehouseede7f122012-11-27 22:25:30 +0900821 clone_depth = node.getAttribute('clone-depth')
822 if clone_depth:
823 try:
824 clone_depth = int(clone_depth)
825 if clone_depth <= 0:
826 raise ValueError()
827 except ValueError:
828 raise ManifestParseError('invalid clone-depth %s in %s' %
829 (clone_depth, self.manifestFile))
830
Bryan Jacobsf609f912013-05-06 13:36:24 -0400831 dest_branch = node.getAttribute('dest-branch') or self._default.destBranchExpr
832
Brian Harring14a66742012-09-28 20:21:57 -0700833 upstream = node.getAttribute('upstream')
834
Conley Owens971de8e2012-04-16 10:36:08 -0700835 groups = ''
836 if node.hasAttribute('groups'):
837 groups = node.getAttribute('groups')
Josh Triplett884a3872014-06-12 14:57:29 -0700838 groups = self._ParseGroups(groups)
Brian Harring7da13142012-06-15 02:24:20 -0700839
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800840 if parent is None:
David James8d201162013-10-11 17:03:19 -0700841 relpath, worktree, gitdir, objdir = self.GetProjectPaths(name, path)
Shawn O. Pearcecd81dd62012-10-26 12:18:00 -0700842 else:
David James8d201162013-10-11 17:03:19 -0700843 relpath, worktree, gitdir, objdir = \
844 self.GetSubprojectPaths(parent, name, path)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800845
846 default_groups = ['all', 'name:%s' % name, 'path:%s' % relpath]
847 groups.extend(set(default_groups).difference(groups))
Shawn O. Pearcecd81dd62012-10-26 12:18:00 -0700848
Scott Fandb83b1b2013-02-28 09:34:14 +0800849 if self.IsMirror and node.hasAttribute('force-path'):
850 if node.getAttribute('force-path').lower() in ("yes", "true", "1"):
851 gitdir = os.path.join(self.topdir, '%s.git' % path)
852
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700853 project = Project(manifest = self,
854 name = name,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -0700855 remote = remote.ToRemoteSpec(name),
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700856 gitdir = gitdir,
David James8d201162013-10-11 17:03:19 -0700857 objdir = objdir,
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700858 worktree = worktree,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800859 relpath = relpath,
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700860 revisionExpr = revisionExpr,
Mike Pontillod3153822012-02-28 11:53:24 -0800861 revisionId = None,
Colin Cross5acde752012-03-28 20:15:45 -0700862 rebase = rebase,
Anatol Pomazau79770d22012-04-20 14:41:59 -0700863 groups = groups,
Brian Harring14a66742012-09-28 20:21:57 -0700864 sync_c = sync_c,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800865 sync_s = sync_s,
YOUNG HO CHAa32c92c2018-02-14 16:57:31 +0900866 sync_tags = sync_tags,
David Pursehouseede7f122012-11-27 22:25:30 +0900867 clone_depth = clone_depth,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800868 upstream = upstream,
Bryan Jacobsf609f912013-05-06 13:36:24 -0400869 parent = parent,
Simran Basib9a1b732015-08-20 12:19:28 -0700870 dest_branch = dest_branch,
871 **extra_proj_attrs)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700872
873 for n in node.childNodes:
Shawn O. Pearce242b5262009-05-19 13:00:29 -0700874 if n.nodeName == 'copyfile':
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700875 self._ParseCopyFile(project, n)
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500876 if n.nodeName == 'linkfile':
877 self._ParseLinkFile(project, n)
James W. Mills24c13082012-04-12 15:04:13 -0500878 if n.nodeName == 'annotation':
879 self._ParseAnnotation(project, n)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800880 if n.nodeName == 'project':
881 project.subprojects.append(self._ParseProject(n, parent = project))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700882
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700883 return project
884
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800885 def GetProjectPaths(self, name, path):
886 relpath = path
887 if self.IsMirror:
888 worktree = None
889 gitdir = os.path.join(self.topdir, '%s.git' % name)
David James8d201162013-10-11 17:03:19 -0700890 objdir = gitdir
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800891 else:
892 worktree = os.path.join(self.topdir, path).replace('\\', '/')
893 gitdir = os.path.join(self.repodir, 'projects', '%s.git' % path)
David James8d201162013-10-11 17:03:19 -0700894 objdir = os.path.join(self.repodir, 'project-objects', '%s.git' % name)
895 return relpath, worktree, gitdir, objdir
896
897 def GetProjectsWithName(self, name):
898 return self._projects.get(name, [])
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800899
900 def GetSubprojectName(self, parent, submodule_path):
901 return os.path.join(parent.name, submodule_path)
902
903 def _JoinRelpath(self, parent_relpath, relpath):
904 return os.path.join(parent_relpath, relpath)
905
906 def _UnjoinRelpath(self, parent_relpath, relpath):
907 return os.path.relpath(relpath, parent_relpath)
908
David James8d201162013-10-11 17:03:19 -0700909 def GetSubprojectPaths(self, parent, name, path):
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800910 relpath = self._JoinRelpath(parent.relpath, path)
911 gitdir = os.path.join(parent.gitdir, 'subprojects', '%s.git' % path)
David James8d201162013-10-11 17:03:19 -0700912 objdir = os.path.join(parent.gitdir, 'subproject-objects', '%s.git' % name)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800913 if self.IsMirror:
914 worktree = None
915 else:
916 worktree = os.path.join(parent.worktree, path).replace('\\', '/')
David James8d201162013-10-11 17:03:19 -0700917 return relpath, worktree, gitdir, objdir
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800918
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700919 def _ParseCopyFile(self, project, node):
920 src = self._reqatt(node, 'src')
921 dest = self._reqatt(node, 'dest')
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800922 if not self.IsMirror:
923 # src is project relative;
924 # dest is relative to the top of the tree
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800925 project.AddCopyFile(src, dest, os.path.join(self.topdir, dest))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700926
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500927 def _ParseLinkFile(self, project, node):
928 src = self._reqatt(node, 'src')
929 dest = self._reqatt(node, 'dest')
930 if not self.IsMirror:
931 # src is project relative;
932 # dest is relative to the top of the tree
933 project.AddLinkFile(src, dest, os.path.join(self.topdir, dest))
934
James W. Mills24c13082012-04-12 15:04:13 -0500935 def _ParseAnnotation(self, project, node):
936 name = self._reqatt(node, 'name')
937 value = self._reqatt(node, 'value')
938 try:
939 keep = self._reqatt(node, 'keep').lower()
940 except ManifestParseError:
941 keep = "true"
942 if keep != "true" and keep != "false":
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530943 raise ManifestParseError('optional "keep" attribute must be '
944 '"true" or "false"')
James W. Mills24c13082012-04-12 15:04:13 -0500945 project.AddAnnotation(name, value, keep)
946
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700947 def _get_remote(self, node):
948 name = node.getAttribute('remote')
949 if not name:
950 return None
951
952 v = self._remotes.get(name)
953 if not v:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530954 raise ManifestParseError("remote %s not defined in %s" %
955 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700956 return v
957
958 def _reqatt(self, node, attname):
959 """
960 reads a required attribute from the node.
961 """
962 v = node.getAttribute(attname)
963 if not v:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530964 raise ManifestParseError("no %s in <%s> within %s" %
965 (attname, node.nodeName, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700966 return v
Julien Camperguedd654222014-01-09 16:21:37 +0100967
968 def projectsDiff(self, manifest):
969 """return the projects differences between two manifests.
970
971 The diff will be from self to given manifest.
972
973 """
974 fromProjects = self.paths
975 toProjects = manifest.paths
976
Anthony King7446c592014-05-06 09:19:39 +0100977 fromKeys = sorted(fromProjects.keys())
978 toKeys = sorted(toProjects.keys())
Julien Camperguedd654222014-01-09 16:21:37 +0100979
980 diff = {'added': [], 'removed': [], 'changed': [], 'unreachable': []}
981
982 for proj in fromKeys:
983 if not proj in toKeys:
984 diff['removed'].append(fromProjects[proj])
985 else:
986 fromProj = fromProjects[proj]
987 toProj = toProjects[proj]
988 try:
989 fromRevId = fromProj.GetCommitRevisionId()
990 toRevId = toProj.GetCommitRevisionId()
991 except ManifestInvalidRevisionError:
992 diff['unreachable'].append((fromProj, toProj))
993 else:
994 if fromRevId != toRevId:
995 diff['changed'].append((fromProj, toProj))
996 toKeys.remove(proj)
997
998 for proj in toKeys:
999 diff['added'].append(toProjects[proj])
1000
1001 return diff
Simran Basib9a1b732015-08-20 12:19:28 -07001002
1003
1004class GitcManifest(XmlManifest):
1005
1006 def __init__(self, repodir, gitc_client_name):
1007 """Initialize the GitcManifest object."""
1008 super(GitcManifest, self).__init__(repodir)
1009 self.isGitcClient = True
1010 self.gitc_client_name = gitc_client_name
Simran Basi8ce50412015-08-28 14:25:44 -07001011 self.gitc_client_dir = os.path.join(gitc_utils.get_gitc_manifest_dir(),
Simran Basib9a1b732015-08-20 12:19:28 -07001012 gitc_client_name)
1013 self.manifestFile = os.path.join(self.gitc_client_dir, '.manifest')
1014
1015 def _ParseProject(self, node, parent = None):
1016 """Override _ParseProject and add support for GITC specific attributes."""
1017 return super(GitcManifest, self)._ParseProject(
1018 node, parent=parent, old_revision=node.getAttribute('old-revision'))
1019
1020 def _output_manifest_project_extras(self, p, e):
1021 """Output GITC Specific Project attributes"""
1022 if p.old_revision:
Stefan Beller66851062016-06-17 16:40:08 -07001023 e.setAttribute('old-revision', str(p.old_revision))
Simran Basib9a1b732015-08-20 12:19:28 -07001024