blob: 3814a25a83a622933e6a04cc3fb30d56e71de18a [file] [log] [blame]
Mike Frysingerf6013762019-06-13 02:30:51 -04001# -*- coding:utf-8 -*-
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002#
3# Copyright (C) 2008 The Android Open Source Project
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
Sarah Owenscecd1d82012-11-01 22:59:27 -070017from __future__ import print_function
Colin Cross23acdd32012-04-21 00:33:54 -070018import itertools
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070019import os
Conley Owensdb728cd2011-09-26 16:34:01 -070020import re
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070021import sys
David Pursehouse59bbb582013-05-17 10:49:33 +090022import xml.dom.minidom
23
24from pyversion import is_python3
25if is_python3():
Chirayu Desai217ea7d2013-03-01 19:14:38 +053026 import urllib.parse
David Pursehouse59bbb582013-05-17 10:49:33 +090027else:
Chirayu Desai217ea7d2013-03-01 19:14:38 +053028 import imp
29 import urlparse
30 urllib = imp.new_module('urllib')
Chirayu Desaidb2ad9d2013-06-11 13:42:25 +053031 urllib.parse = urlparse
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070032
Simran Basib9a1b732015-08-20 12:19:28 -070033import gitc_utils
David Pursehousee15c65a2012-08-22 10:46:11 +090034from git_config import GitConfig
David Pursehousee00aa6b2012-09-11 14:33:51 +090035from git_refs import R_HEADS, HEAD
Renaud Paquayd5cec5e2016-11-01 11:24:03 -070036import platform_utils
David Pursehousee00aa6b2012-09-11 14:33:51 +090037from project import RemoteSpec, Project, MetaProject
Julien Camperguedd654222014-01-09 16:21:37 +010038from error import ManifestParseError, ManifestInvalidRevisionError
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070039
40MANIFEST_FILE_NAME = 'manifest.xml'
Shawn O. Pearce5cc66792008-10-23 16:19:27 -070041LOCAL_MANIFEST_NAME = 'local_manifest.xml'
David Pursehouse2d5a0df2012-11-13 02:50:36 +090042LOCAL_MANIFESTS_DIR_NAME = 'local_manifests'
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070043
Anthony Kingcb07ba72015-03-28 23:26:04 +000044# urljoin gets confused if the scheme is not known.
Joe Kilner6e310792016-10-27 15:53:53 -070045urllib.parse.uses_relative.extend([
46 'ssh',
47 'git',
48 'persistent-https',
49 'sso',
50 'rpc'])
51urllib.parse.uses_netloc.extend([
52 'ssh',
53 'git',
54 'persistent-https',
55 'sso',
56 'rpc'])
Conley Owensdb728cd2011-09-26 16:34:01 -070057
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070058class _Default(object):
59 """Project defaults within the manifest."""
60
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -070061 revisionExpr = None
Conley Owensb6a16e62013-09-25 15:06:09 -070062 destBranchExpr = None
Nasser Grainawida403412018-05-04 12:53:29 -060063 upstreamExpr = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070064 remote = None
Shawn O. Pearce6392c872011-09-22 17:44:31 -070065 sync_j = 1
Anatol Pomazau79770d22012-04-20 14:41:59 -070066 sync_c = False
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +080067 sync_s = False
YOUNG HO CHAa32c92c2018-02-14 16:57:31 +090068 sync_tags = True
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070069
Julien Campergue74879922013-10-09 14:38:46 +020070 def __eq__(self, other):
71 return self.__dict__ == other.__dict__
72
73 def __ne__(self, other):
74 return self.__dict__ != other.__dict__
75
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070076class _XmlRemote(object):
77 def __init__(self,
78 name,
Yestin Sunb292b982012-07-02 07:32:50 -070079 alias=None,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070080 fetch=None,
Steve Raed6480452016-08-10 15:00:00 -070081 pushUrl=None,
Conley Owensdb728cd2011-09-26 16:34:01 -070082 manifestUrl=None,
Anthony King36ea2fb2014-05-06 11:54:01 +010083 review=None,
Jonathan Nieder93719792015-03-17 11:29:58 -070084 revision=None):
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070085 self.name = name
86 self.fetchUrl = fetch
Steve Raed6480452016-08-10 15:00:00 -070087 self.pushUrl = pushUrl
Conley Owensdb728cd2011-09-26 16:34:01 -070088 self.manifestUrl = manifestUrl
Yestin Sunb292b982012-07-02 07:32:50 -070089 self.remoteAlias = alias
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070090 self.reviewUrl = review
Anthony King36ea2fb2014-05-06 11:54:01 +010091 self.revision = revision
Conley Owensceea3682011-10-20 10:45:47 -070092 self.resolvedFetchUrl = self._resolveFetchUrl()
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070093
David Pursehouse717ece92012-11-13 08:49:16 +090094 def __eq__(self, other):
95 return self.__dict__ == other.__dict__
96
97 def __ne__(self, other):
98 return self.__dict__ != other.__dict__
99
Conley Owensceea3682011-10-20 10:45:47 -0700100 def _resolveFetchUrl(self):
101 url = self.fetchUrl.rstrip('/')
Conley Owensdb728cd2011-09-26 16:34:01 -0700102 manifestUrl = self.manifestUrl.rstrip('/')
Conley Owens2d0f5082014-01-31 15:03:51 -0800103 # urljoin will gets confused over quite a few things. The ones we care
104 # about here are:
105 # * no scheme in the base url, like <hostname:port>
Anthony Kingcb07ba72015-03-28 23:26:04 +0000106 # We handle no scheme by replacing it with an obscure protocol, gopher
107 # and then replacing it with the original when we are done.
108
Conley Owensdb728cd2011-09-26 16:34:01 -0700109 if manifestUrl.find(':') != manifestUrl.find('/') - 1:
Conley Owens4ccad752015-04-29 10:45:37 -0700110 url = urllib.parse.urljoin('gopher://' + manifestUrl, url)
111 url = re.sub(r'^gopher://', '', url)
Anthony Kingcb07ba72015-03-28 23:26:04 +0000112 else:
113 url = urllib.parse.urljoin(manifestUrl, url)
Shawn Pearcea9f11b32013-01-02 15:40:48 -0800114 return url
Conley Owensceea3682011-10-20 10:45:47 -0700115
116 def ToRemoteSpec(self, projectName):
David Rileye0684ad2017-04-05 00:02:59 -0700117 fetchUrl = self.resolvedFetchUrl.rstrip('/')
118 url = fetchUrl + '/' + projectName
Yestin Sunb292b982012-07-02 07:32:50 -0700119 remoteName = self.name
Conley Owens1e7ab2a2013-10-08 17:26:57 -0700120 if self.remoteAlias:
David Pursehouse37128b62013-10-15 10:48:40 +0900121 remoteName = self.remoteAlias
Dan Willemsen96c2d652016-04-06 16:03:54 -0700122 return RemoteSpec(remoteName,
123 url=url,
Steve Raed6480452016-08-10 15:00:00 -0700124 pushUrl=self.pushUrl,
Dan Willemsen96c2d652016-04-06 16:03:54 -0700125 review=self.reviewUrl,
David Rileye0684ad2017-04-05 00:02:59 -0700126 orig_name=self.name,
127 fetchUrl=self.fetchUrl)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700128
Shawn O. Pearcec8a300f2009-05-18 13:19:57 -0700129class XmlManifest(object):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700130 """manages the repo configuration file"""
131
132 def __init__(self, repodir):
133 self.repodir = os.path.abspath(repodir)
134 self.topdir = os.path.dirname(self.repodir)
135 self.manifestFile = os.path.join(self.repodir, MANIFEST_FILE_NAME)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700136 self.globalConfig = GitConfig.ForUser()
David Pursehouse4eb285c2013-02-14 16:28:44 +0900137 self.localManifestWarning = False
Simran Basib9a1b732015-08-20 12:19:28 -0700138 self.isGitcClient = False
Basil Gelloc7453502018-05-25 20:23:52 +0300139 self._load_local_manifests = True
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700140
141 self.repoProject = MetaProject(self, 'repo',
142 gitdir = os.path.join(repodir, 'repo/.git'),
143 worktree = os.path.join(repodir, 'repo'))
144
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700145 self.manifestProject = MetaProject(self, 'manifests',
Shawn O. Pearcef5c25a62008-11-04 08:11:53 -0800146 gitdir = os.path.join(repodir, 'manifests.git'),
147 worktree = os.path.join(repodir, 'manifests'))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700148
149 self._Unload()
150
Basil Gelloc7453502018-05-25 20:23:52 +0300151 def Override(self, name, load_local_manifests=True):
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700152 """Use a different manifest, just for the current instantiation.
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700153 """
Basil Gelloc7453502018-05-25 20:23:52 +0300154 path = None
155
156 # Look for a manifest by path in the filesystem (including the cwd).
157 if not load_local_manifests:
158 local_path = os.path.abspath(name)
159 if os.path.isfile(local_path):
160 path = local_path
161
162 # Look for manifests by name from the manifests repo.
163 if path is None:
164 path = os.path.join(self.manifestProject.worktree, name)
165 if not os.path.isfile(path):
166 raise ManifestParseError('manifest %s not found' % name)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700167
168 old = self.manifestFile
169 try:
Basil Gelloc7453502018-05-25 20:23:52 +0300170 self._load_local_manifests = load_local_manifests
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700171 self.manifestFile = path
172 self._Unload()
173 self._Load()
174 finally:
175 self.manifestFile = old
176
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700177 def Link(self, name):
178 """Update the repo metadata to use a different manifest.
179 """
180 self.Override(name)
181
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700182 try:
Sebastian Frias223bf962012-11-21 19:09:25 +0100183 if os.path.lexists(self.manifestFile):
Renaud Paquay010fed72016-11-11 14:25:29 -0800184 platform_utils.remove(self.manifestFile)
Renaud Paquayd5cec5e2016-11-01 11:24:03 -0700185 platform_utils.symlink(os.path.join('manifests', name), self.manifestFile)
Sebastian Frias223bf962012-11-21 19:09:25 +0100186 except OSError as e:
187 raise ManifestParseError('cannot link manifest %s: %s' % (name, str(e)))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700188
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800189 def _RemoteToXml(self, r, doc, root):
190 e = doc.createElement('remote')
191 root.appendChild(e)
192 e.setAttribute('name', r.name)
193 e.setAttribute('fetch', r.fetchUrl)
Steve Raed6480452016-08-10 15:00:00 -0700194 if r.pushUrl is not None:
195 e.setAttribute('pushurl', r.pushUrl)
Conley Owens1e7ab2a2013-10-08 17:26:57 -0700196 if r.remoteAlias is not None:
197 e.setAttribute('alias', r.remoteAlias)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800198 if r.reviewUrl is not None:
199 e.setAttribute('review', r.reviewUrl)
Anthony King36ea2fb2014-05-06 11:54:01 +0100200 if r.revision is not None:
201 e.setAttribute('revision', r.revision)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800202
Josh Triplett884a3872014-06-12 14:57:29 -0700203 def _ParseGroups(self, groups):
204 return [x for x in re.split(r'[,\s]+', groups) if x]
205
Dan Willemsen5ea32d12015-09-08 13:27:20 -0700206 def Save(self, fd, peg_rev=False, peg_rev_upstream=True, groups=None):
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800207 """Write the current manifest out to the given file descriptor.
208 """
Colin Cross5acde752012-03-28 20:15:45 -0700209 mp = self.manifestProject
210
Dan Willemsen5ea32d12015-09-08 13:27:20 -0700211 if groups is None:
212 groups = mp.config.GetString('manifest.groups')
Matt Gumbel0c635bb2012-12-21 10:14:53 -0800213 if groups:
Josh Triplett884a3872014-06-12 14:57:29 -0700214 groups = self._ParseGroups(groups)
Colin Cross5acde752012-03-28 20:15:45 -0700215
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800216 doc = xml.dom.minidom.Document()
217 root = doc.createElement('manifest')
218 doc.appendChild(root)
219
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700220 # Save out the notice. There's a little bit of work here to give it the
221 # right whitespace, which assumes that the notice is automatically indented
222 # by 4 by minidom.
223 if self.notice:
224 notice_element = root.appendChild(doc.createElement('notice'))
225 notice_lines = self.notice.splitlines()
226 indented_notice = ('\n'.join(" "*4 + line for line in notice_lines))[4:]
227 notice_element.appendChild(doc.createTextNode(indented_notice))
228
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800229 d = self.default
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800230
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530231 for r in sorted(self.remotes):
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800232 self._RemoteToXml(self.remotes[r], doc, root)
233 if self.remotes:
234 root.appendChild(doc.createTextNode(''))
235
236 have_default = False
237 e = doc.createElement('default')
238 if d.remote:
239 have_default = True
240 e.setAttribute('remote', d.remote.name)
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700241 if d.revisionExpr:
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800242 have_default = True
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700243 e.setAttribute('revision', d.revisionExpr)
Simon Ruggier7e59de22015-07-24 12:50:06 +0200244 if d.destBranchExpr:
245 have_default = True
246 e.setAttribute('dest-branch', d.destBranchExpr)
Nasser Grainawida403412018-05-04 12:53:29 -0600247 if d.upstreamExpr:
248 have_default = True
249 e.setAttribute('upstream', d.upstreamExpr)
Shawn O. Pearce6392c872011-09-22 17:44:31 -0700250 if d.sync_j > 1:
251 have_default = True
252 e.setAttribute('sync-j', '%d' % d.sync_j)
Anatol Pomazau79770d22012-04-20 14:41:59 -0700253 if d.sync_c:
254 have_default = True
255 e.setAttribute('sync-c', 'true')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800256 if d.sync_s:
257 have_default = True
258 e.setAttribute('sync-s', 'true')
YOUNG HO CHAa32c92c2018-02-14 16:57:31 +0900259 if not d.sync_tags:
260 have_default = True
261 e.setAttribute('sync-tags', 'false')
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800262 if have_default:
263 root.appendChild(e)
264 root.appendChild(doc.createTextNode(''))
265
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700266 if self._manifest_server:
267 e = doc.createElement('manifest-server')
268 e.setAttribute('url', self._manifest_server)
269 root.appendChild(e)
270 root.appendChild(doc.createTextNode(''))
271
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800272 def output_projects(parent, parent_node, projects):
David James8d201162013-10-11 17:03:19 -0700273 for project_name in projects:
274 for project in self._projects[project_name]:
275 output_project(parent, parent_node, project)
Che-Liang Chiou69998b02012-01-11 11:28:42 +0800276
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800277 def output_project(parent, parent_node, p):
Shawn O. Pearcecd81dd62012-10-26 12:18:00 -0700278 if not p.MatchesGroups(groups):
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800279 return
280
281 name = p.name
282 relpath = p.relpath
283 if parent:
284 name = self._UnjoinName(parent.name, name)
285 relpath = self._UnjoinRelpath(parent.relpath, relpath)
Colin Cross5acde752012-03-28 20:15:45 -0700286
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800287 e = doc.createElement('project')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800288 parent_node.appendChild(e)
289 e.setAttribute('name', name)
290 if relpath != name:
291 e.setAttribute('path', relpath)
Conley Owensa17d7af2013-10-16 14:38:09 -0700292 remoteName = None
293 if d.remote:
Dan Willemsen96c2d652016-04-06 16:03:54 -0700294 remoteName = d.remote.name
295 if not d.remote or p.remote.orig_name != remoteName:
296 remoteName = p.remote.orig_name
Anthony King36ea2fb2014-05-06 11:54:01 +0100297 e.setAttribute('remote', remoteName)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800298 if peg_rev:
299 if self.IsMirror:
Brian Harring14a66742012-09-28 20:21:57 -0700300 value = p.bare_git.rev_parse(p.revisionExpr + '^0')
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800301 else:
Brian Harring14a66742012-09-28 20:21:57 -0700302 value = p.work_git.rev_parse(HEAD + '^0')
303 e.setAttribute('revision', value)
Conley Owens551dfec2015-07-10 14:54:54 -0700304 if peg_rev_upstream:
305 if p.upstream:
306 e.setAttribute('upstream', p.upstream)
307 elif value != p.revisionExpr:
308 # Only save the origin if the origin is not a sha1, and the default
309 # isn't our value
310 e.setAttribute('upstream', p.revisionExpr)
Anthony King36ea2fb2014-05-06 11:54:01 +0100311 else:
Dan Willemsen96c2d652016-04-06 16:03:54 -0700312 revision = self.remotes[p.remote.orig_name].revision or d.revisionExpr
Anthony King36ea2fb2014-05-06 11:54:01 +0100313 if not revision or revision != p.revisionExpr:
314 e.setAttribute('revision', p.revisionExpr)
Nasser Grainawida403412018-05-04 12:53:29 -0600315 if (p.upstream and (p.upstream != p.revisionExpr or
316 p.upstream != d.upstreamExpr)):
Mani Chandel7a91d512014-07-24 16:27:08 +0530317 e.setAttribute('upstream', p.upstream)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800318
Simon Ruggier7e59de22015-07-24 12:50:06 +0200319 if p.dest_branch and p.dest_branch != d.destBranchExpr:
320 e.setAttribute('dest-branch', p.dest_branch)
321
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800322 for c in p.copyfiles:
323 ce = doc.createElement('copyfile')
324 ce.setAttribute('src', c.src)
325 ce.setAttribute('dest', c.dest)
326 e.appendChild(ce)
327
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500328 for l in p.linkfiles:
329 le = doc.createElement('linkfile')
330 le.setAttribute('src', l.src)
331 le.setAttribute('dest', l.dest)
332 e.appendChild(le)
333
Conley Owensbb1b5f52012-08-13 13:11:18 -0700334 default_groups = ['all', 'name:%s' % p.name, 'path:%s' % p.relpath]
Dmitry Fink17f85ea2012-08-06 14:52:29 -0700335 egroups = [g for g in p.groups if g not in default_groups]
Conley Owens971de8e2012-04-16 10:36:08 -0700336 if egroups:
337 e.setAttribute('groups', ','.join(egroups))
Colin Cross5acde752012-03-28 20:15:45 -0700338
James W. Mills24c13082012-04-12 15:04:13 -0500339 for a in p.annotations:
340 if a.keep == "true":
341 ae = doc.createElement('annotation')
342 ae.setAttribute('name', a.name)
343 ae.setAttribute('value', a.value)
344 e.appendChild(ae)
345
Anatol Pomazau79770d22012-04-20 14:41:59 -0700346 if p.sync_c:
347 e.setAttribute('sync-c', 'true')
348
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800349 if p.sync_s:
350 e.setAttribute('sync-s', 'true')
351
YOUNG HO CHAa32c92c2018-02-14 16:57:31 +0900352 if not p.sync_tags:
353 e.setAttribute('sync-tags', 'false')
354
Dan Willemsen88409222015-08-17 15:29:10 -0700355 if p.clone_depth:
356 e.setAttribute('clone-depth', str(p.clone_depth))
357
Simran Basib9a1b732015-08-20 12:19:28 -0700358 self._output_manifest_project_extras(p, e)
359
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800360 if p.subprojects:
David James8d201162013-10-11 17:03:19 -0700361 subprojects = set(subp.name for subp in p.subprojects)
362 output_projects(p, e, list(sorted(subprojects)))
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800363
David James8d201162013-10-11 17:03:19 -0700364 projects = set(p.name for p in self._paths.values() if not p.parent)
365 output_projects(None, root, list(sorted(projects)))
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800366
Doug Anderson37282b42011-03-04 11:54:18 -0800367 if self._repo_hooks_project:
368 root.appendChild(doc.createTextNode(''))
369 e = doc.createElement('repo-hooks')
370 e.setAttribute('in-project', self._repo_hooks_project.name)
371 e.setAttribute('enabled-list',
372 ' '.join(self._repo_hooks_project.enabled_repo_hooks))
373 root.appendChild(e)
374
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800375 doc.writexml(fd, '', ' ', '\n', 'UTF-8')
376
Simran Basib9a1b732015-08-20 12:19:28 -0700377 def _output_manifest_project_extras(self, p, e):
378 """Manifests can modify e if they support extra project attributes."""
379 pass
380
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700381 @property
David James8d201162013-10-11 17:03:19 -0700382 def paths(self):
383 self._Load()
384 return self._paths
385
386 @property
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700387 def projects(self):
388 self._Load()
Anthony Kingd58bfe52014-05-05 23:30:49 +0100389 return list(self._paths.values())
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700390
391 @property
392 def remotes(self):
393 self._Load()
394 return self._remotes
395
396 @property
397 def default(self):
398 self._Load()
399 return self._default
400
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800401 @property
Doug Anderson37282b42011-03-04 11:54:18 -0800402 def repo_hooks_project(self):
403 self._Load()
404 return self._repo_hooks_project
405
406 @property
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700407 def notice(self):
408 self._Load()
409 return self._notice
410
411 @property
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700412 def manifest_server(self):
413 self._Load()
Shawn O. Pearce34fb20f2011-11-30 13:41:02 -0800414 return self._manifest_server
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700415
416 @property
Xin Li745be2e2019-06-03 11:24:30 -0700417 def CloneFilter(self):
418 if self.manifestProject.config.GetBoolean('repo.partialclone'):
419 return self.manifestProject.config.GetString('repo.clonefilter')
420 return None
421
422 @property
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800423 def IsMirror(self):
424 return self.manifestProject.config.GetBoolean('repo.mirror')
425
Julien Campergue335f5ef2013-10-16 11:02:35 +0200426 @property
427 def IsArchive(self):
428 return self.manifestProject.config.GetBoolean('repo.archive')
429
Martin Kellye4e94d22017-03-21 16:05:12 -0700430 @property
431 def HasSubmodules(self):
432 return self.manifestProject.config.GetBoolean('repo.submodules')
433
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700434 def _Unload(self):
435 self._loaded = False
436 self._projects = {}
David James8d201162013-10-11 17:03:19 -0700437 self._paths = {}
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700438 self._remotes = {}
439 self._default = None
Doug Anderson37282b42011-03-04 11:54:18 -0800440 self._repo_hooks_project = None
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700441 self._notice = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700442 self.branch = None
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700443 self._manifest_server = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700444
445 def _Load(self):
446 if not self._loaded:
Shawn O. Pearce2450a292008-11-04 08:22:07 -0800447 m = self.manifestProject
448 b = m.GetBranch(m.CurrentBranch).merge
Shawn O. Pearce21c5c342009-06-25 16:47:30 -0700449 if b is not None and b.startswith(R_HEADS):
Shawn O. Pearce2450a292008-11-04 08:22:07 -0800450 b = b[len(R_HEADS):]
451 self.branch = b
452
Colin Cross23acdd32012-04-21 00:33:54 -0700453 nodes = []
Brian Harring475a47d2012-06-07 20:05:35 -0700454 nodes.append(self._ParseManifestXml(self.manifestFile,
455 self.manifestProject.worktree))
Shawn O. Pearce5cc66792008-10-23 16:19:27 -0700456
Basil Gelloc7453502018-05-25 20:23:52 +0300457 if self._load_local_manifests:
458 local = os.path.join(self.repodir, LOCAL_MANIFEST_NAME)
459 if os.path.exists(local):
460 if not self.localManifestWarning:
461 self.localManifestWarning = True
462 print('warning: %s is deprecated; put local manifests '
463 'in `%s` instead' % (LOCAL_MANIFEST_NAME,
464 os.path.join(self.repodir, LOCAL_MANIFESTS_DIR_NAME)),
465 file=sys.stderr)
466 nodes.append(self._ParseManifestXml(local, self.repodir))
Colin Cross23acdd32012-04-21 00:33:54 -0700467
Basil Gelloc7453502018-05-25 20:23:52 +0300468 local_dir = os.path.abspath(os.path.join(self.repodir,
469 LOCAL_MANIFESTS_DIR_NAME))
470 try:
471 for local_file in sorted(platform_utils.listdir(local_dir)):
472 if local_file.endswith('.xml'):
473 local = os.path.join(local_dir, local_file)
474 nodes.append(self._ParseManifestXml(local, self.repodir))
475 except OSError:
476 pass
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900477
Joe Onorato26e24752013-01-11 12:35:53 -0800478 try:
479 self._ParseManifest(nodes)
480 except ManifestParseError as e:
481 # There was a problem parsing, unload ourselves in case they catch
482 # this error and try again later, we will show the correct error
483 self._Unload()
484 raise e
Shawn O. Pearce5cc66792008-10-23 16:19:27 -0700485
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800486 if self.IsMirror:
487 self._AddMetaProjectMirror(self.repoProject)
488 self._AddMetaProjectMirror(self.manifestProject)
489
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700490 self._loaded = True
491
Brian Harring475a47d2012-06-07 20:05:35 -0700492 def _ParseManifestXml(self, path, include_root):
David Pursehousef7fc8a92012-11-13 04:00:28 +0900493 try:
494 root = xml.dom.minidom.parse(path)
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900495 except (OSError, xml.parsers.expat.ExpatError) as e:
David Pursehousef7fc8a92012-11-13 04:00:28 +0900496 raise ManifestParseError("error parsing manifest %s: %s" % (path, e))
497
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700498 if not root or not root.childNodes:
Brian Harring26448742011-04-28 05:04:41 -0700499 raise ManifestParseError("no root node in %s" % (path,))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700500
Jooncheol Park34acdd22012-08-27 02:25:59 +0900501 for manifest in root.childNodes:
502 if manifest.nodeName == 'manifest':
503 break
504 else:
Brian Harring26448742011-04-28 05:04:41 -0700505 raise ManifestParseError("no <manifest> in %s" % (path,))
506
Colin Cross23acdd32012-04-21 00:33:54 -0700507 nodes = []
David Pursehouse65b0ba52018-06-24 16:21:51 +0900508 for node in manifest.childNodes:
David Pursehousec1b86a22012-11-14 11:36:51 +0900509 if node.nodeName == 'include':
510 name = self._reqatt(node, 'name')
511 fp = os.path.join(include_root, name)
512 if not os.path.isfile(fp):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530513 raise ManifestParseError("include %s doesn't exist or isn't a file"
514 % (name,))
David Pursehousec1b86a22012-11-14 11:36:51 +0900515 try:
516 nodes.extend(self._ParseManifestXml(fp, include_root))
517 # should isolate this to the exact exception, but that's
518 # tricky. actual parsing implementation may vary.
519 except (KeyboardInterrupt, RuntimeError, SystemExit):
520 raise
521 except Exception as e:
522 raise ManifestParseError(
Mike Frysingerec558df2019-07-05 01:38:05 -0400523 "failed parsing included manifest %s: %s" % (name, e))
David Pursehousec1b86a22012-11-14 11:36:51 +0900524 else:
525 nodes.append(node)
Colin Cross23acdd32012-04-21 00:33:54 -0700526 return nodes
Shawn O. Pearce03eaf072008-11-20 11:42:22 -0800527
Colin Cross23acdd32012-04-21 00:33:54 -0700528 def _ParseManifest(self, node_list):
529 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700530 if node.nodeName == 'remote':
531 remote = self._ParseRemote(node)
David Pursehouse717ece92012-11-13 08:49:16 +0900532 if remote:
533 if remote.name in self._remotes:
534 if remote != self._remotes[remote.name]:
535 raise ManifestParseError(
536 'remote %s already exists with different attributes' %
537 (remote.name))
538 else:
539 self._remotes[remote.name] = remote
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700540
Colin Cross23acdd32012-04-21 00:33:54 -0700541 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700542 if node.nodeName == 'default':
Julien Campergue74879922013-10-09 14:38:46 +0200543 new_default = self._ParseDefault(node)
544 if self._default is None:
545 self._default = new_default
546 elif new_default != self._default:
David Pursehouse37128b62013-10-15 10:48:40 +0900547 raise ManifestParseError('duplicate default in %s' %
548 (self.manifestFile))
Julien Campergue74879922013-10-09 14:38:46 +0200549
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700550 if self._default is None:
551 self._default = _Default()
552
Colin Cross23acdd32012-04-21 00:33:54 -0700553 for node in itertools.chain(*node_list):
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700554 if node.nodeName == 'notice':
555 if self._notice is not None:
Doug Anderson37282b42011-03-04 11:54:18 -0800556 raise ManifestParseError(
557 'duplicate notice in %s' %
558 (self.manifestFile))
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700559 self._notice = self._ParseNotice(node)
560
Colin Cross23acdd32012-04-21 00:33:54 -0700561 for node in itertools.chain(*node_list):
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700562 if node.nodeName == 'manifest-server':
563 url = self._reqatt(node, 'url')
564 if self._manifest_server is not None:
David Pursehousec1b86a22012-11-14 11:36:51 +0900565 raise ManifestParseError(
566 'duplicate manifest-server in %s' %
567 (self.manifestFile))
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700568 self._manifest_server = url
569
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800570 def recursively_add_projects(project):
David James8d201162013-10-11 17:03:19 -0700571 projects = self._projects.setdefault(project.name, [])
572 if project.relpath is None:
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800573 raise ManifestParseError(
David James8d201162013-10-11 17:03:19 -0700574 'missing path for %s in %s' %
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800575 (project.name, self.manifestFile))
David James8d201162013-10-11 17:03:19 -0700576 if project.relpath in self._paths:
577 raise ManifestParseError(
578 'duplicate path %s in %s' %
579 (project.relpath, self.manifestFile))
580 self._paths[project.relpath] = project
581 projects.append(project)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800582 for subproject in project.subprojects:
583 recursively_add_projects(subproject)
584
Colin Cross23acdd32012-04-21 00:33:54 -0700585 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700586 if node.nodeName == 'project':
587 project = self._ParseProject(node)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800588 recursively_add_projects(project)
Josh Triplett884a3872014-06-12 14:57:29 -0700589 if node.nodeName == 'extend-project':
590 name = self._reqatt(node, 'name')
591
592 if name not in self._projects:
593 raise ManifestParseError('extend-project element specifies non-existent '
594 'project: %s' % name)
595
596 path = node.getAttribute('path')
597 groups = node.getAttribute('groups')
598 if groups:
599 groups = self._ParseGroups(groups)
Luis Hector Chavez7d525852018-03-15 09:54:08 -0700600 revision = node.getAttribute('revision')
Josh Triplett884a3872014-06-12 14:57:29 -0700601
602 for p in self._projects[name]:
603 if path and p.relpath != path:
604 continue
605 if groups:
606 p.groups.extend(groups)
Luis Hector Chavez7d525852018-03-15 09:54:08 -0700607 if revision:
608 p.revisionExpr = revision
Doug Anderson37282b42011-03-04 11:54:18 -0800609 if node.nodeName == 'repo-hooks':
610 # Get the name of the project and the (space-separated) list of enabled.
611 repo_hooks_project = self._reqatt(node, 'in-project')
612 enabled_repo_hooks = self._reqatt(node, 'enabled-list').split()
613
614 # Only one project can be the hooks project
615 if self._repo_hooks_project is not None:
616 raise ManifestParseError(
617 'duplicate repo-hooks in %s' %
618 (self.manifestFile))
619
620 # Store a reference to the Project.
621 try:
David James8d201162013-10-11 17:03:19 -0700622 repo_hooks_projects = self._projects[repo_hooks_project]
Doug Anderson37282b42011-03-04 11:54:18 -0800623 except KeyError:
624 raise ManifestParseError(
625 'project %s not found for repo-hooks' %
626 (repo_hooks_project))
627
David James8d201162013-10-11 17:03:19 -0700628 if len(repo_hooks_projects) != 1:
629 raise ManifestParseError(
630 'internal error parsing repo-hooks in %s' %
631 (self.manifestFile))
632 self._repo_hooks_project = repo_hooks_projects[0]
633
Doug Anderson37282b42011-03-04 11:54:18 -0800634 # Store the enabled hooks in the Project object.
635 self._repo_hooks_project.enabled_repo_hooks = enabled_repo_hooks
Colin Cross23acdd32012-04-21 00:33:54 -0700636 if node.nodeName == 'remove-project':
637 name = self._reqatt(node, 'name')
David Jamesb8433df2014-01-30 10:11:17 -0800638
639 if name not in self._projects:
David Pursehousef9107482012-11-16 19:12:32 +0900640 raise ManifestParseError('remove-project element specifies non-existent '
641 'project: %s' % name)
Colin Cross23acdd32012-04-21 00:33:54 -0700642
David Jamesb8433df2014-01-30 10:11:17 -0800643 for p in self._projects[name]:
644 del self._paths[p.relpath]
645 del self._projects[name]
646
Colin Cross23acdd32012-04-21 00:33:54 -0700647 # If the manifest removes the hooks project, treat it as if it deleted
648 # the repo-hooks element too.
649 if self._repo_hooks_project and (self._repo_hooks_project.name == name):
650 self._repo_hooks_project = None
651
Doug Anderson37282b42011-03-04 11:54:18 -0800652
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800653 def _AddMetaProjectMirror(self, m):
654 name = None
655 m_url = m.GetRemote(m.remote.name).url
656 if m_url.endswith('/.git'):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530657 raise ManifestParseError('refusing to mirror %s' % m_url)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800658
659 if self._default and self._default.remote:
Conley Owensceea3682011-10-20 10:45:47 -0700660 url = self._default.remote.resolvedFetchUrl
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800661 if not url.endswith('/'):
662 url += '/'
663 if m_url.startswith(url):
664 remote = self._default.remote
665 name = m_url[len(url):]
666
667 if name is None:
668 s = m_url.rindex('/') + 1
Conley Owensdb728cd2011-09-26 16:34:01 -0700669 manifestUrl = self.manifestProject.config.GetString('remote.origin.url')
Shawn O. Pearcef35b2d92012-08-02 11:46:22 -0700670 remote = _XmlRemote('origin', fetch=m_url[:s], manifestUrl=manifestUrl)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800671 name = m_url[s:]
672
673 if name.endswith('.git'):
674 name = name[:-4]
675
676 if name not in self._projects:
677 m.PreSync()
678 gitdir = os.path.join(self.topdir, '%s.git' % name)
679 project = Project(manifest = self,
680 name = name,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -0700681 remote = remote.ToRemoteSpec(name),
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800682 gitdir = gitdir,
David James8d201162013-10-11 17:03:19 -0700683 objdir = gitdir,
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800684 worktree = None,
Kwanhong Leeccd218c2014-02-17 13:07:32 +0900685 relpath = name or None,
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700686 revisionExpr = m.revisionExpr,
687 revisionId = None)
David James8d201162013-10-11 17:03:19 -0700688 self._projects[project.name] = [project]
Kwanhong Leeccd218c2014-02-17 13:07:32 +0900689 self._paths[project.relpath] = project
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800690
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700691 def _ParseRemote(self, node):
692 """
693 reads a <remote> element from the manifest file
694 """
695 name = self._reqatt(node, 'name')
Yestin Sunb292b982012-07-02 07:32:50 -0700696 alias = node.getAttribute('alias')
697 if alias == '':
698 alias = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700699 fetch = self._reqatt(node, 'fetch')
Steve Raed6480452016-08-10 15:00:00 -0700700 pushUrl = node.getAttribute('pushurl')
701 if pushUrl == '':
702 pushUrl = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700703 review = node.getAttribute('review')
Shawn O. Pearceae6e0942008-11-06 10:25:35 -0800704 if review == '':
705 review = None
Anthony King36ea2fb2014-05-06 11:54:01 +0100706 revision = node.getAttribute('revision')
707 if revision == '':
708 revision = None
Conley Owensdb728cd2011-09-26 16:34:01 -0700709 manifestUrl = self.manifestProject.config.GetString('remote.origin.url')
Steve Raed6480452016-08-10 15:00:00 -0700710 return _XmlRemote(name, alias, fetch, pushUrl, manifestUrl, review, revision)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700711
712 def _ParseDefault(self, node):
713 """
714 reads a <default> element from the manifest file
715 """
716 d = _Default()
717 d.remote = self._get_remote(node)
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700718 d.revisionExpr = node.getAttribute('revision')
719 if d.revisionExpr == '':
720 d.revisionExpr = None
Anatol Pomazau79770d22012-04-20 14:41:59 -0700721
Bryan Jacobsf609f912013-05-06 13:36:24 -0400722 d.destBranchExpr = node.getAttribute('dest-branch') or None
Nasser Grainawida403412018-05-04 12:53:29 -0600723 d.upstreamExpr = node.getAttribute('upstream') or None
Bryan Jacobsf609f912013-05-06 13:36:24 -0400724
Shawn O. Pearce6392c872011-09-22 17:44:31 -0700725 sync_j = node.getAttribute('sync-j')
726 if sync_j == '' or sync_j is None:
727 d.sync_j = 1
728 else:
729 d.sync_j = int(sync_j)
Anatol Pomazau79770d22012-04-20 14:41:59 -0700730
731 sync_c = node.getAttribute('sync-c')
732 if not sync_c:
733 d.sync_c = False
734 else:
735 d.sync_c = sync_c.lower() in ("yes", "true", "1")
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800736
737 sync_s = node.getAttribute('sync-s')
738 if not sync_s:
739 d.sync_s = False
740 else:
741 d.sync_s = sync_s.lower() in ("yes", "true", "1")
YOUNG HO CHAa32c92c2018-02-14 16:57:31 +0900742
743 sync_tags = node.getAttribute('sync-tags')
744 if not sync_tags:
745 d.sync_tags = True
746 else:
747 d.sync_tags = sync_tags.lower() in ("yes", "true", "1")
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700748 return d
749
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700750 def _ParseNotice(self, node):
751 """
752 reads a <notice> element from the manifest file
753
754 The <notice> element is distinct from other tags in the XML in that the
755 data is conveyed between the start and end tag (it's not an empty-element
756 tag).
757
758 The white space (carriage returns, indentation) for the notice element is
759 relevant and is parsed in a way that is based on how python docstrings work.
760 In fact, the code is remarkably similar to here:
761 http://www.python.org/dev/peps/pep-0257/
762 """
763 # Get the data out of the node...
764 notice = node.childNodes[0].data
765
766 # Figure out minimum indentation, skipping the first line (the same line
767 # as the <notice> tag)...
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530768 minIndent = sys.maxsize
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700769 lines = notice.splitlines()
770 for line in lines[1:]:
771 lstrippedLine = line.lstrip()
772 if lstrippedLine:
773 indent = len(line) - len(lstrippedLine)
774 minIndent = min(indent, minIndent)
775
776 # Strip leading / trailing blank lines and also indentation.
777 cleanLines = [lines[0].strip()]
778 for line in lines[1:]:
779 cleanLines.append(line[minIndent:].rstrip())
780
781 # Clear completely blank lines from front and back...
782 while cleanLines and not cleanLines[0]:
783 del cleanLines[0]
784 while cleanLines and not cleanLines[-1]:
785 del cleanLines[-1]
786
787 return '\n'.join(cleanLines)
788
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800789 def _JoinName(self, parent_name, name):
790 return os.path.join(parent_name, name)
791
792 def _UnjoinName(self, parent_name, name):
793 return os.path.relpath(name, parent_name)
794
Simran Basib9a1b732015-08-20 12:19:28 -0700795 def _ParseProject(self, node, parent = None, **extra_proj_attrs):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700796 """
797 reads a <project> element from the manifest file
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700798 """
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700799 name = self._reqatt(node, 'name')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800800 if parent:
801 name = self._JoinName(parent.name, name)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700802
803 remote = self._get_remote(node)
804 if remote is None:
805 remote = self._default.remote
806 if remote is None:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530807 raise ManifestParseError("no remote for project %s within %s" %
808 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700809
Anthony King36ea2fb2014-05-06 11:54:01 +0100810 revisionExpr = node.getAttribute('revision') or remote.revision
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700811 if not revisionExpr:
812 revisionExpr = self._default.revisionExpr
813 if not revisionExpr:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530814 raise ManifestParseError("no revision for project %s within %s" %
815 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700816
817 path = node.getAttribute('path')
818 if not path:
819 path = name
820 if path.startswith('/'):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530821 raise ManifestParseError("project %s path cannot be absolute in %s" %
822 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700823
Mike Pontillod3153822012-02-28 11:53:24 -0800824 rebase = node.getAttribute('rebase')
825 if not rebase:
826 rebase = True
827 else:
828 rebase = rebase.lower() in ("yes", "true", "1")
829
Anatol Pomazau79770d22012-04-20 14:41:59 -0700830 sync_c = node.getAttribute('sync-c')
831 if not sync_c:
832 sync_c = False
833 else:
834 sync_c = sync_c.lower() in ("yes", "true", "1")
835
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800836 sync_s = node.getAttribute('sync-s')
837 if not sync_s:
838 sync_s = self._default.sync_s
839 else:
840 sync_s = sync_s.lower() in ("yes", "true", "1")
841
YOUNG HO CHAa32c92c2018-02-14 16:57:31 +0900842 sync_tags = node.getAttribute('sync-tags')
843 if not sync_tags:
844 sync_tags = self._default.sync_tags
845 else:
846 sync_tags = sync_tags.lower() in ("yes", "true", "1")
847
David Pursehouseede7f122012-11-27 22:25:30 +0900848 clone_depth = node.getAttribute('clone-depth')
849 if clone_depth:
850 try:
851 clone_depth = int(clone_depth)
852 if clone_depth <= 0:
853 raise ValueError()
854 except ValueError:
855 raise ManifestParseError('invalid clone-depth %s in %s' %
856 (clone_depth, self.manifestFile))
857
Bryan Jacobsf609f912013-05-06 13:36:24 -0400858 dest_branch = node.getAttribute('dest-branch') or self._default.destBranchExpr
859
Nasser Grainawida403412018-05-04 12:53:29 -0600860 upstream = node.getAttribute('upstream') or self._default.upstreamExpr
Brian Harring14a66742012-09-28 20:21:57 -0700861
Conley Owens971de8e2012-04-16 10:36:08 -0700862 groups = ''
863 if node.hasAttribute('groups'):
864 groups = node.getAttribute('groups')
Josh Triplett884a3872014-06-12 14:57:29 -0700865 groups = self._ParseGroups(groups)
Brian Harring7da13142012-06-15 02:24:20 -0700866
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800867 if parent is None:
David James8d201162013-10-11 17:03:19 -0700868 relpath, worktree, gitdir, objdir = self.GetProjectPaths(name, path)
Shawn O. Pearcecd81dd62012-10-26 12:18:00 -0700869 else:
David James8d201162013-10-11 17:03:19 -0700870 relpath, worktree, gitdir, objdir = \
871 self.GetSubprojectPaths(parent, name, path)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800872
873 default_groups = ['all', 'name:%s' % name, 'path:%s' % relpath]
874 groups.extend(set(default_groups).difference(groups))
Shawn O. Pearcecd81dd62012-10-26 12:18:00 -0700875
Scott Fandb83b1b2013-02-28 09:34:14 +0800876 if self.IsMirror and node.hasAttribute('force-path'):
877 if node.getAttribute('force-path').lower() in ("yes", "true", "1"):
878 gitdir = os.path.join(self.topdir, '%s.git' % path)
879
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700880 project = Project(manifest = self,
881 name = name,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -0700882 remote = remote.ToRemoteSpec(name),
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700883 gitdir = gitdir,
David James8d201162013-10-11 17:03:19 -0700884 objdir = objdir,
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700885 worktree = worktree,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800886 relpath = relpath,
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700887 revisionExpr = revisionExpr,
Mike Pontillod3153822012-02-28 11:53:24 -0800888 revisionId = None,
Colin Cross5acde752012-03-28 20:15:45 -0700889 rebase = rebase,
Anatol Pomazau79770d22012-04-20 14:41:59 -0700890 groups = groups,
Brian Harring14a66742012-09-28 20:21:57 -0700891 sync_c = sync_c,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800892 sync_s = sync_s,
YOUNG HO CHAa32c92c2018-02-14 16:57:31 +0900893 sync_tags = sync_tags,
David Pursehouseede7f122012-11-27 22:25:30 +0900894 clone_depth = clone_depth,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800895 upstream = upstream,
Bryan Jacobsf609f912013-05-06 13:36:24 -0400896 parent = parent,
Simran Basib9a1b732015-08-20 12:19:28 -0700897 dest_branch = dest_branch,
898 **extra_proj_attrs)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700899
900 for n in node.childNodes:
Shawn O. Pearce242b5262009-05-19 13:00:29 -0700901 if n.nodeName == 'copyfile':
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700902 self._ParseCopyFile(project, n)
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500903 if n.nodeName == 'linkfile':
904 self._ParseLinkFile(project, n)
James W. Mills24c13082012-04-12 15:04:13 -0500905 if n.nodeName == 'annotation':
906 self._ParseAnnotation(project, n)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800907 if n.nodeName == 'project':
908 project.subprojects.append(self._ParseProject(n, parent = project))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700909
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700910 return project
911
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800912 def GetProjectPaths(self, name, path):
913 relpath = path
914 if self.IsMirror:
915 worktree = None
916 gitdir = os.path.join(self.topdir, '%s.git' % name)
David James8d201162013-10-11 17:03:19 -0700917 objdir = gitdir
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800918 else:
919 worktree = os.path.join(self.topdir, path).replace('\\', '/')
920 gitdir = os.path.join(self.repodir, 'projects', '%s.git' % path)
David James8d201162013-10-11 17:03:19 -0700921 objdir = os.path.join(self.repodir, 'project-objects', '%s.git' % name)
922 return relpath, worktree, gitdir, objdir
923
924 def GetProjectsWithName(self, name):
925 return self._projects.get(name, [])
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800926
927 def GetSubprojectName(self, parent, submodule_path):
928 return os.path.join(parent.name, submodule_path)
929
930 def _JoinRelpath(self, parent_relpath, relpath):
931 return os.path.join(parent_relpath, relpath)
932
933 def _UnjoinRelpath(self, parent_relpath, relpath):
934 return os.path.relpath(relpath, parent_relpath)
935
David James8d201162013-10-11 17:03:19 -0700936 def GetSubprojectPaths(self, parent, name, path):
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800937 relpath = self._JoinRelpath(parent.relpath, path)
938 gitdir = os.path.join(parent.gitdir, 'subprojects', '%s.git' % path)
David James8d201162013-10-11 17:03:19 -0700939 objdir = os.path.join(parent.gitdir, 'subproject-objects', '%s.git' % name)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800940 if self.IsMirror:
941 worktree = None
942 else:
943 worktree = os.path.join(parent.worktree, path).replace('\\', '/')
David James8d201162013-10-11 17:03:19 -0700944 return relpath, worktree, gitdir, objdir
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800945
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700946 def _ParseCopyFile(self, project, node):
947 src = self._reqatt(node, 'src')
948 dest = self._reqatt(node, 'dest')
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800949 if not self.IsMirror:
950 # src is project relative;
951 # dest is relative to the top of the tree
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800952 project.AddCopyFile(src, dest, os.path.join(self.topdir, dest))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700953
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500954 def _ParseLinkFile(self, project, node):
955 src = self._reqatt(node, 'src')
956 dest = self._reqatt(node, 'dest')
957 if not self.IsMirror:
958 # src is project relative;
959 # dest is relative to the top of the tree
960 project.AddLinkFile(src, dest, os.path.join(self.topdir, dest))
961
James W. Mills24c13082012-04-12 15:04:13 -0500962 def _ParseAnnotation(self, project, node):
963 name = self._reqatt(node, 'name')
964 value = self._reqatt(node, 'value')
965 try:
966 keep = self._reqatt(node, 'keep').lower()
967 except ManifestParseError:
968 keep = "true"
969 if keep != "true" and keep != "false":
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530970 raise ManifestParseError('optional "keep" attribute must be '
971 '"true" or "false"')
James W. Mills24c13082012-04-12 15:04:13 -0500972 project.AddAnnotation(name, value, keep)
973
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700974 def _get_remote(self, node):
975 name = node.getAttribute('remote')
976 if not name:
977 return None
978
979 v = self._remotes.get(name)
980 if not v:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530981 raise ManifestParseError("remote %s not defined in %s" %
982 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700983 return v
984
985 def _reqatt(self, node, attname):
986 """
987 reads a required attribute from the node.
988 """
989 v = node.getAttribute(attname)
990 if not v:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530991 raise ManifestParseError("no %s in <%s> within %s" %
992 (attname, node.nodeName, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700993 return v
Julien Camperguedd654222014-01-09 16:21:37 +0100994
995 def projectsDiff(self, manifest):
996 """return the projects differences between two manifests.
997
998 The diff will be from self to given manifest.
999
1000 """
1001 fromProjects = self.paths
1002 toProjects = manifest.paths
1003
Anthony King7446c592014-05-06 09:19:39 +01001004 fromKeys = sorted(fromProjects.keys())
1005 toKeys = sorted(toProjects.keys())
Julien Camperguedd654222014-01-09 16:21:37 +01001006
1007 diff = {'added': [], 'removed': [], 'changed': [], 'unreachable': []}
1008
1009 for proj in fromKeys:
1010 if not proj in toKeys:
1011 diff['removed'].append(fromProjects[proj])
1012 else:
1013 fromProj = fromProjects[proj]
1014 toProj = toProjects[proj]
1015 try:
1016 fromRevId = fromProj.GetCommitRevisionId()
1017 toRevId = toProj.GetCommitRevisionId()
1018 except ManifestInvalidRevisionError:
1019 diff['unreachable'].append((fromProj, toProj))
1020 else:
1021 if fromRevId != toRevId:
1022 diff['changed'].append((fromProj, toProj))
1023 toKeys.remove(proj)
1024
1025 for proj in toKeys:
1026 diff['added'].append(toProjects[proj])
1027
1028 return diff
Simran Basib9a1b732015-08-20 12:19:28 -07001029
1030
1031class GitcManifest(XmlManifest):
1032
1033 def __init__(self, repodir, gitc_client_name):
1034 """Initialize the GitcManifest object."""
1035 super(GitcManifest, self).__init__(repodir)
1036 self.isGitcClient = True
1037 self.gitc_client_name = gitc_client_name
Simran Basi8ce50412015-08-28 14:25:44 -07001038 self.gitc_client_dir = os.path.join(gitc_utils.get_gitc_manifest_dir(),
Simran Basib9a1b732015-08-20 12:19:28 -07001039 gitc_client_name)
1040 self.manifestFile = os.path.join(self.gitc_client_dir, '.manifest')
1041
1042 def _ParseProject(self, node, parent = None):
1043 """Override _ParseProject and add support for GITC specific attributes."""
1044 return super(GitcManifest, self)._ParseProject(
1045 node, parent=parent, old_revision=node.getAttribute('old-revision'))
1046
1047 def _output_manifest_project_extras(self, p, e):
1048 """Output GITC Specific Project attributes"""
1049 if p.old_revision:
Stefan Beller66851062016-06-17 16:40:08 -07001050 e.setAttribute('old-revision', str(p.old_revision))
Simran Basib9a1b732015-08-20 12:19:28 -07001051