blob: 0654222e9ad25b2935e5a140cb008e540dcde803 [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)
574
575 for p in self._projects[name]:
576 if path and p.relpath != path:
577 continue
578 if groups:
579 p.groups.extend(groups)
Doug Anderson37282b42011-03-04 11:54:18 -0800580 if node.nodeName == 'repo-hooks':
581 # Get the name of the project and the (space-separated) list of enabled.
582 repo_hooks_project = self._reqatt(node, 'in-project')
583 enabled_repo_hooks = self._reqatt(node, 'enabled-list').split()
584
585 # Only one project can be the hooks project
586 if self._repo_hooks_project is not None:
587 raise ManifestParseError(
588 'duplicate repo-hooks in %s' %
589 (self.manifestFile))
590
591 # Store a reference to the Project.
592 try:
David James8d201162013-10-11 17:03:19 -0700593 repo_hooks_projects = self._projects[repo_hooks_project]
Doug Anderson37282b42011-03-04 11:54:18 -0800594 except KeyError:
595 raise ManifestParseError(
596 'project %s not found for repo-hooks' %
597 (repo_hooks_project))
598
David James8d201162013-10-11 17:03:19 -0700599 if len(repo_hooks_projects) != 1:
600 raise ManifestParseError(
601 'internal error parsing repo-hooks in %s' %
602 (self.manifestFile))
603 self._repo_hooks_project = repo_hooks_projects[0]
604
Doug Anderson37282b42011-03-04 11:54:18 -0800605 # Store the enabled hooks in the Project object.
606 self._repo_hooks_project.enabled_repo_hooks = enabled_repo_hooks
Colin Cross23acdd32012-04-21 00:33:54 -0700607 if node.nodeName == 'remove-project':
608 name = self._reqatt(node, 'name')
David Jamesb8433df2014-01-30 10:11:17 -0800609
610 if name not in self._projects:
David Pursehousef9107482012-11-16 19:12:32 +0900611 raise ManifestParseError('remove-project element specifies non-existent '
612 'project: %s' % name)
Colin Cross23acdd32012-04-21 00:33:54 -0700613
David Jamesb8433df2014-01-30 10:11:17 -0800614 for p in self._projects[name]:
615 del self._paths[p.relpath]
616 del self._projects[name]
617
Colin Cross23acdd32012-04-21 00:33:54 -0700618 # If the manifest removes the hooks project, treat it as if it deleted
619 # the repo-hooks element too.
620 if self._repo_hooks_project and (self._repo_hooks_project.name == name):
621 self._repo_hooks_project = None
622
Doug Anderson37282b42011-03-04 11:54:18 -0800623
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800624 def _AddMetaProjectMirror(self, m):
625 name = None
626 m_url = m.GetRemote(m.remote.name).url
627 if m_url.endswith('/.git'):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530628 raise ManifestParseError('refusing to mirror %s' % m_url)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800629
630 if self._default and self._default.remote:
Conley Owensceea3682011-10-20 10:45:47 -0700631 url = self._default.remote.resolvedFetchUrl
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800632 if not url.endswith('/'):
633 url += '/'
634 if m_url.startswith(url):
635 remote = self._default.remote
636 name = m_url[len(url):]
637
638 if name is None:
639 s = m_url.rindex('/') + 1
Conley Owensdb728cd2011-09-26 16:34:01 -0700640 manifestUrl = self.manifestProject.config.GetString('remote.origin.url')
Shawn O. Pearcef35b2d92012-08-02 11:46:22 -0700641 remote = _XmlRemote('origin', fetch=m_url[:s], manifestUrl=manifestUrl)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800642 name = m_url[s:]
643
644 if name.endswith('.git'):
645 name = name[:-4]
646
647 if name not in self._projects:
648 m.PreSync()
649 gitdir = os.path.join(self.topdir, '%s.git' % name)
650 project = Project(manifest = self,
651 name = name,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -0700652 remote = remote.ToRemoteSpec(name),
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800653 gitdir = gitdir,
David James8d201162013-10-11 17:03:19 -0700654 objdir = gitdir,
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800655 worktree = None,
Kwanhong Leeccd218c2014-02-17 13:07:32 +0900656 relpath = name or None,
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700657 revisionExpr = m.revisionExpr,
658 revisionId = None)
David James8d201162013-10-11 17:03:19 -0700659 self._projects[project.name] = [project]
Kwanhong Leeccd218c2014-02-17 13:07:32 +0900660 self._paths[project.relpath] = project
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800661
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700662 def _ParseRemote(self, node):
663 """
664 reads a <remote> element from the manifest file
665 """
666 name = self._reqatt(node, 'name')
Yestin Sunb292b982012-07-02 07:32:50 -0700667 alias = node.getAttribute('alias')
668 if alias == '':
669 alias = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700670 fetch = self._reqatt(node, 'fetch')
Steve Raed6480452016-08-10 15:00:00 -0700671 pushUrl = node.getAttribute('pushurl')
672 if pushUrl == '':
673 pushUrl = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700674 review = node.getAttribute('review')
Shawn O. Pearceae6e0942008-11-06 10:25:35 -0800675 if review == '':
676 review = None
Anthony King36ea2fb2014-05-06 11:54:01 +0100677 revision = node.getAttribute('revision')
678 if revision == '':
679 revision = None
Conley Owensdb728cd2011-09-26 16:34:01 -0700680 manifestUrl = self.manifestProject.config.GetString('remote.origin.url')
Steve Raed6480452016-08-10 15:00:00 -0700681 return _XmlRemote(name, alias, fetch, pushUrl, manifestUrl, review, revision)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700682
683 def _ParseDefault(self, node):
684 """
685 reads a <default> element from the manifest file
686 """
687 d = _Default()
688 d.remote = self._get_remote(node)
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700689 d.revisionExpr = node.getAttribute('revision')
690 if d.revisionExpr == '':
691 d.revisionExpr = None
Anatol Pomazau79770d22012-04-20 14:41:59 -0700692
Bryan Jacobsf609f912013-05-06 13:36:24 -0400693 d.destBranchExpr = node.getAttribute('dest-branch') or None
694
Shawn O. Pearce6392c872011-09-22 17:44:31 -0700695 sync_j = node.getAttribute('sync-j')
696 if sync_j == '' or sync_j is None:
697 d.sync_j = 1
698 else:
699 d.sync_j = int(sync_j)
Anatol Pomazau79770d22012-04-20 14:41:59 -0700700
701 sync_c = node.getAttribute('sync-c')
702 if not sync_c:
703 d.sync_c = False
704 else:
705 d.sync_c = sync_c.lower() in ("yes", "true", "1")
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800706
707 sync_s = node.getAttribute('sync-s')
708 if not sync_s:
709 d.sync_s = False
710 else:
711 d.sync_s = sync_s.lower() in ("yes", "true", "1")
YOUNG HO CHAa32c92c2018-02-14 16:57:31 +0900712
713 sync_tags = node.getAttribute('sync-tags')
714 if not sync_tags:
715 d.sync_tags = True
716 else:
717 d.sync_tags = sync_tags.lower() in ("yes", "true", "1")
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700718 return d
719
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700720 def _ParseNotice(self, node):
721 """
722 reads a <notice> element from the manifest file
723
724 The <notice> element is distinct from other tags in the XML in that the
725 data is conveyed between the start and end tag (it's not an empty-element
726 tag).
727
728 The white space (carriage returns, indentation) for the notice element is
729 relevant and is parsed in a way that is based on how python docstrings work.
730 In fact, the code is remarkably similar to here:
731 http://www.python.org/dev/peps/pep-0257/
732 """
733 # Get the data out of the node...
734 notice = node.childNodes[0].data
735
736 # Figure out minimum indentation, skipping the first line (the same line
737 # as the <notice> tag)...
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530738 minIndent = sys.maxsize
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700739 lines = notice.splitlines()
740 for line in lines[1:]:
741 lstrippedLine = line.lstrip()
742 if lstrippedLine:
743 indent = len(line) - len(lstrippedLine)
744 minIndent = min(indent, minIndent)
745
746 # Strip leading / trailing blank lines and also indentation.
747 cleanLines = [lines[0].strip()]
748 for line in lines[1:]:
749 cleanLines.append(line[minIndent:].rstrip())
750
751 # Clear completely blank lines from front and back...
752 while cleanLines and not cleanLines[0]:
753 del cleanLines[0]
754 while cleanLines and not cleanLines[-1]:
755 del cleanLines[-1]
756
757 return '\n'.join(cleanLines)
758
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800759 def _JoinName(self, parent_name, name):
760 return os.path.join(parent_name, name)
761
762 def _UnjoinName(self, parent_name, name):
763 return os.path.relpath(name, parent_name)
764
Simran Basib9a1b732015-08-20 12:19:28 -0700765 def _ParseProject(self, node, parent = None, **extra_proj_attrs):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700766 """
767 reads a <project> element from the manifest file
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700768 """
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700769 name = self._reqatt(node, 'name')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800770 if parent:
771 name = self._JoinName(parent.name, name)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700772
773 remote = self._get_remote(node)
774 if remote is None:
775 remote = self._default.remote
776 if remote is None:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530777 raise ManifestParseError("no remote for project %s within %s" %
778 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700779
Anthony King36ea2fb2014-05-06 11:54:01 +0100780 revisionExpr = node.getAttribute('revision') or remote.revision
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700781 if not revisionExpr:
782 revisionExpr = self._default.revisionExpr
783 if not revisionExpr:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530784 raise ManifestParseError("no revision for project %s within %s" %
785 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700786
787 path = node.getAttribute('path')
788 if not path:
789 path = name
790 if path.startswith('/'):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530791 raise ManifestParseError("project %s path cannot be absolute in %s" %
792 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700793
Mike Pontillod3153822012-02-28 11:53:24 -0800794 rebase = node.getAttribute('rebase')
795 if not rebase:
796 rebase = True
797 else:
798 rebase = rebase.lower() in ("yes", "true", "1")
799
Anatol Pomazau79770d22012-04-20 14:41:59 -0700800 sync_c = node.getAttribute('sync-c')
801 if not sync_c:
802 sync_c = False
803 else:
804 sync_c = sync_c.lower() in ("yes", "true", "1")
805
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800806 sync_s = node.getAttribute('sync-s')
807 if not sync_s:
808 sync_s = self._default.sync_s
809 else:
810 sync_s = sync_s.lower() in ("yes", "true", "1")
811
YOUNG HO CHAa32c92c2018-02-14 16:57:31 +0900812 sync_tags = node.getAttribute('sync-tags')
813 if not sync_tags:
814 sync_tags = self._default.sync_tags
815 else:
816 sync_tags = sync_tags.lower() in ("yes", "true", "1")
817
David Pursehouseede7f122012-11-27 22:25:30 +0900818 clone_depth = node.getAttribute('clone-depth')
819 if clone_depth:
820 try:
821 clone_depth = int(clone_depth)
822 if clone_depth <= 0:
823 raise ValueError()
824 except ValueError:
825 raise ManifestParseError('invalid clone-depth %s in %s' %
826 (clone_depth, self.manifestFile))
827
Bryan Jacobsf609f912013-05-06 13:36:24 -0400828 dest_branch = node.getAttribute('dest-branch') or self._default.destBranchExpr
829
Brian Harring14a66742012-09-28 20:21:57 -0700830 upstream = node.getAttribute('upstream')
831
Conley Owens971de8e2012-04-16 10:36:08 -0700832 groups = ''
833 if node.hasAttribute('groups'):
834 groups = node.getAttribute('groups')
Josh Triplett884a3872014-06-12 14:57:29 -0700835 groups = self._ParseGroups(groups)
Brian Harring7da13142012-06-15 02:24:20 -0700836
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800837 if parent is None:
David James8d201162013-10-11 17:03:19 -0700838 relpath, worktree, gitdir, objdir = self.GetProjectPaths(name, path)
Shawn O. Pearcecd81dd62012-10-26 12:18:00 -0700839 else:
David James8d201162013-10-11 17:03:19 -0700840 relpath, worktree, gitdir, objdir = \
841 self.GetSubprojectPaths(parent, name, path)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800842
843 default_groups = ['all', 'name:%s' % name, 'path:%s' % relpath]
844 groups.extend(set(default_groups).difference(groups))
Shawn O. Pearcecd81dd62012-10-26 12:18:00 -0700845
Scott Fandb83b1b2013-02-28 09:34:14 +0800846 if self.IsMirror and node.hasAttribute('force-path'):
847 if node.getAttribute('force-path').lower() in ("yes", "true", "1"):
848 gitdir = os.path.join(self.topdir, '%s.git' % path)
849
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700850 project = Project(manifest = self,
851 name = name,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -0700852 remote = remote.ToRemoteSpec(name),
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700853 gitdir = gitdir,
David James8d201162013-10-11 17:03:19 -0700854 objdir = objdir,
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700855 worktree = worktree,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800856 relpath = relpath,
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700857 revisionExpr = revisionExpr,
Mike Pontillod3153822012-02-28 11:53:24 -0800858 revisionId = None,
Colin Cross5acde752012-03-28 20:15:45 -0700859 rebase = rebase,
Anatol Pomazau79770d22012-04-20 14:41:59 -0700860 groups = groups,
Brian Harring14a66742012-09-28 20:21:57 -0700861 sync_c = sync_c,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800862 sync_s = sync_s,
YOUNG HO CHAa32c92c2018-02-14 16:57:31 +0900863 sync_tags = sync_tags,
David Pursehouseede7f122012-11-27 22:25:30 +0900864 clone_depth = clone_depth,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800865 upstream = upstream,
Bryan Jacobsf609f912013-05-06 13:36:24 -0400866 parent = parent,
Simran Basib9a1b732015-08-20 12:19:28 -0700867 dest_branch = dest_branch,
868 **extra_proj_attrs)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700869
870 for n in node.childNodes:
Shawn O. Pearce242b5262009-05-19 13:00:29 -0700871 if n.nodeName == 'copyfile':
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700872 self._ParseCopyFile(project, n)
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500873 if n.nodeName == 'linkfile':
874 self._ParseLinkFile(project, n)
James W. Mills24c13082012-04-12 15:04:13 -0500875 if n.nodeName == 'annotation':
876 self._ParseAnnotation(project, n)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800877 if n.nodeName == 'project':
878 project.subprojects.append(self._ParseProject(n, parent = project))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700879
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700880 return project
881
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800882 def GetProjectPaths(self, name, path):
883 relpath = path
884 if self.IsMirror:
885 worktree = None
886 gitdir = os.path.join(self.topdir, '%s.git' % name)
David James8d201162013-10-11 17:03:19 -0700887 objdir = gitdir
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800888 else:
889 worktree = os.path.join(self.topdir, path).replace('\\', '/')
890 gitdir = os.path.join(self.repodir, 'projects', '%s.git' % path)
David James8d201162013-10-11 17:03:19 -0700891 objdir = os.path.join(self.repodir, 'project-objects', '%s.git' % name)
892 return relpath, worktree, gitdir, objdir
893
894 def GetProjectsWithName(self, name):
895 return self._projects.get(name, [])
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800896
897 def GetSubprojectName(self, parent, submodule_path):
898 return os.path.join(parent.name, submodule_path)
899
900 def _JoinRelpath(self, parent_relpath, relpath):
901 return os.path.join(parent_relpath, relpath)
902
903 def _UnjoinRelpath(self, parent_relpath, relpath):
904 return os.path.relpath(relpath, parent_relpath)
905
David James8d201162013-10-11 17:03:19 -0700906 def GetSubprojectPaths(self, parent, name, path):
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800907 relpath = self._JoinRelpath(parent.relpath, path)
908 gitdir = os.path.join(parent.gitdir, 'subprojects', '%s.git' % path)
David James8d201162013-10-11 17:03:19 -0700909 objdir = os.path.join(parent.gitdir, 'subproject-objects', '%s.git' % name)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800910 if self.IsMirror:
911 worktree = None
912 else:
913 worktree = os.path.join(parent.worktree, path).replace('\\', '/')
David James8d201162013-10-11 17:03:19 -0700914 return relpath, worktree, gitdir, objdir
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800915
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700916 def _ParseCopyFile(self, project, node):
917 src = self._reqatt(node, 'src')
918 dest = self._reqatt(node, 'dest')
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800919 if not self.IsMirror:
920 # src is project relative;
921 # dest is relative to the top of the tree
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800922 project.AddCopyFile(src, dest, os.path.join(self.topdir, dest))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700923
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500924 def _ParseLinkFile(self, project, node):
925 src = self._reqatt(node, 'src')
926 dest = self._reqatt(node, 'dest')
927 if not self.IsMirror:
928 # src is project relative;
929 # dest is relative to the top of the tree
930 project.AddLinkFile(src, dest, os.path.join(self.topdir, dest))
931
James W. Mills24c13082012-04-12 15:04:13 -0500932 def _ParseAnnotation(self, project, node):
933 name = self._reqatt(node, 'name')
934 value = self._reqatt(node, 'value')
935 try:
936 keep = self._reqatt(node, 'keep').lower()
937 except ManifestParseError:
938 keep = "true"
939 if keep != "true" and keep != "false":
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530940 raise ManifestParseError('optional "keep" attribute must be '
941 '"true" or "false"')
James W. Mills24c13082012-04-12 15:04:13 -0500942 project.AddAnnotation(name, value, keep)
943
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700944 def _get_remote(self, node):
945 name = node.getAttribute('remote')
946 if not name:
947 return None
948
949 v = self._remotes.get(name)
950 if not v:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530951 raise ManifestParseError("remote %s not defined in %s" %
952 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700953 return v
954
955 def _reqatt(self, node, attname):
956 """
957 reads a required attribute from the node.
958 """
959 v = node.getAttribute(attname)
960 if not v:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530961 raise ManifestParseError("no %s in <%s> within %s" %
962 (attname, node.nodeName, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700963 return v
Julien Camperguedd654222014-01-09 16:21:37 +0100964
965 def projectsDiff(self, manifest):
966 """return the projects differences between two manifests.
967
968 The diff will be from self to given manifest.
969
970 """
971 fromProjects = self.paths
972 toProjects = manifest.paths
973
Anthony King7446c592014-05-06 09:19:39 +0100974 fromKeys = sorted(fromProjects.keys())
975 toKeys = sorted(toProjects.keys())
Julien Camperguedd654222014-01-09 16:21:37 +0100976
977 diff = {'added': [], 'removed': [], 'changed': [], 'unreachable': []}
978
979 for proj in fromKeys:
980 if not proj in toKeys:
981 diff['removed'].append(fromProjects[proj])
982 else:
983 fromProj = fromProjects[proj]
984 toProj = toProjects[proj]
985 try:
986 fromRevId = fromProj.GetCommitRevisionId()
987 toRevId = toProj.GetCommitRevisionId()
988 except ManifestInvalidRevisionError:
989 diff['unreachable'].append((fromProj, toProj))
990 else:
991 if fromRevId != toRevId:
992 diff['changed'].append((fromProj, toProj))
993 toKeys.remove(proj)
994
995 for proj in toKeys:
996 diff['added'].append(toProjects[proj])
997
998 return diff
Simran Basib9a1b732015-08-20 12:19:28 -0700999
1000
1001class GitcManifest(XmlManifest):
1002
1003 def __init__(self, repodir, gitc_client_name):
1004 """Initialize the GitcManifest object."""
1005 super(GitcManifest, self).__init__(repodir)
1006 self.isGitcClient = True
1007 self.gitc_client_name = gitc_client_name
Simran Basi8ce50412015-08-28 14:25:44 -07001008 self.gitc_client_dir = os.path.join(gitc_utils.get_gitc_manifest_dir(),
Simran Basib9a1b732015-08-20 12:19:28 -07001009 gitc_client_name)
1010 self.manifestFile = os.path.join(self.gitc_client_dir, '.manifest')
1011
1012 def _ParseProject(self, node, parent = None):
1013 """Override _ParseProject and add support for GITC specific attributes."""
1014 return super(GitcManifest, self)._ParseProject(
1015 node, parent=parent, old_revision=node.getAttribute('old-revision'))
1016
1017 def _output_manifest_project_extras(self, p, e):
1018 """Output GITC Specific Project attributes"""
1019 if p.old_revision:
Stefan Beller66851062016-06-17 16:40:08 -07001020 e.setAttribute('old-revision', str(p.old_revision))
Simran Basib9a1b732015-08-20 12:19:28 -07001021