blob: eb4908da384f38253450a0cdd5d164e31b097f8e [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
David Pursehousee15c65a2012-08-22 10:46:11 +090032from git_config import GitConfig
David Pursehousee00aa6b2012-09-11 14:33:51 +090033from git_refs import R_HEADS, HEAD
34from project import RemoteSpec, Project, MetaProject
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070035from error import ManifestParseError
36
37MANIFEST_FILE_NAME = 'manifest.xml'
Shawn O. Pearce5cc66792008-10-23 16:19:27 -070038LOCAL_MANIFEST_NAME = 'local_manifest.xml'
David Pursehouse2d5a0df2012-11-13 02:50:36 +090039LOCAL_MANIFESTS_DIR_NAME = 'local_manifests'
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070040
Chirayu Desai217ea7d2013-03-01 19:14:38 +053041urllib.parse.uses_relative.extend(['ssh', 'git'])
42urllib.parse.uses_netloc.extend(['ssh', 'git'])
Conley Owensdb728cd2011-09-26 16:34:01 -070043
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070044class _Default(object):
45 """Project defaults within the manifest."""
46
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -070047 revisionExpr = None
Conley Owensb6a16e62013-09-25 15:06:09 -070048 destBranchExpr = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070049 remote = None
Shawn O. Pearce6392c872011-09-22 17:44:31 -070050 sync_j = 1
Anatol Pomazau79770d22012-04-20 14:41:59 -070051 sync_c = False
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +080052 sync_s = False
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070053
Julien Campergue74879922013-10-09 14:38:46 +020054 def __eq__(self, other):
55 return self.__dict__ == other.__dict__
56
57 def __ne__(self, other):
58 return self.__dict__ != other.__dict__
59
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070060class _XmlRemote(object):
61 def __init__(self,
62 name,
Yestin Sunb292b982012-07-02 07:32:50 -070063 alias=None,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070064 fetch=None,
Conley Owensdb728cd2011-09-26 16:34:01 -070065 manifestUrl=None,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070066 review=None):
67 self.name = name
68 self.fetchUrl = fetch
Conley Owensdb728cd2011-09-26 16:34:01 -070069 self.manifestUrl = manifestUrl
Yestin Sunb292b982012-07-02 07:32:50 -070070 self.remoteAlias = alias
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070071 self.reviewUrl = review
Conley Owensceea3682011-10-20 10:45:47 -070072 self.resolvedFetchUrl = self._resolveFetchUrl()
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070073
David Pursehouse717ece92012-11-13 08:49:16 +090074 def __eq__(self, other):
75 return self.__dict__ == other.__dict__
76
77 def __ne__(self, other):
78 return self.__dict__ != other.__dict__
79
Conley Owensceea3682011-10-20 10:45:47 -070080 def _resolveFetchUrl(self):
81 url = self.fetchUrl.rstrip('/')
Conley Owensdb728cd2011-09-26 16:34:01 -070082 manifestUrl = self.manifestUrl.rstrip('/')
Shawn Pearcea9f11b32013-01-02 15:40:48 -080083 p = manifestUrl.startswith('persistent-http')
84 if p:
85 manifestUrl = manifestUrl[len('persistent-'):]
86
Conley Owensdb728cd2011-09-26 16:34:01 -070087 # urljoin will get confused if there is no scheme in the base url
88 # ie, if manifestUrl is of the form <hostname:port>
89 if manifestUrl.find(':') != manifestUrl.find('/') - 1:
David Pursehousec1b86a22012-11-14 11:36:51 +090090 manifestUrl = 'gopher://' + manifestUrl
Chirayu Desai217ea7d2013-03-01 19:14:38 +053091 url = urllib.parse.urljoin(manifestUrl, url)
Shawn Pearcea9f11b32013-01-02 15:40:48 -080092 url = re.sub(r'^gopher://', '', url)
93 if p:
94 url = 'persistent-' + url
95 return url
Conley Owensceea3682011-10-20 10:45:47 -070096
97 def ToRemoteSpec(self, projectName):
Conley Owens9d8f9142011-10-20 14:36:35 -070098 url = self.resolvedFetchUrl.rstrip('/') + '/' + projectName
Yestin Sunb292b982012-07-02 07:32:50 -070099 remoteName = self.name
Yestin Sunb292b982012-07-02 07:32:50 -0700100 return RemoteSpec(remoteName, url, self.reviewUrl)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700101
Shawn O. Pearcec8a300f2009-05-18 13:19:57 -0700102class XmlManifest(object):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700103 """manages the repo configuration file"""
104
105 def __init__(self, repodir):
106 self.repodir = os.path.abspath(repodir)
107 self.topdir = os.path.dirname(self.repodir)
108 self.manifestFile = os.path.join(self.repodir, MANIFEST_FILE_NAME)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700109 self.globalConfig = GitConfig.ForUser()
David Pursehouse4eb285c2013-02-14 16:28:44 +0900110 self.localManifestWarning = False
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700111
112 self.repoProject = MetaProject(self, 'repo',
113 gitdir = os.path.join(repodir, 'repo/.git'),
114 worktree = os.path.join(repodir, 'repo'))
115
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700116 self.manifestProject = MetaProject(self, 'manifests',
Shawn O. Pearcef5c25a62008-11-04 08:11:53 -0800117 gitdir = os.path.join(repodir, 'manifests.git'),
118 worktree = os.path.join(repodir, 'manifests'))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700119
120 self._Unload()
121
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700122 def Override(self, name):
123 """Use a different manifest, just for the current instantiation.
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700124 """
125 path = os.path.join(self.manifestProject.worktree, name)
126 if not os.path.isfile(path):
127 raise ManifestParseError('manifest %s not found' % name)
128
129 old = self.manifestFile
130 try:
131 self.manifestFile = path
132 self._Unload()
133 self._Load()
134 finally:
135 self.manifestFile = old
136
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700137 def Link(self, name):
138 """Update the repo metadata to use a different manifest.
139 """
140 self.Override(name)
141
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700142 try:
Sebastian Frias223bf962012-11-21 19:09:25 +0100143 if os.path.lexists(self.manifestFile):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700144 os.remove(self.manifestFile)
145 os.symlink('manifests/%s' % name, self.manifestFile)
Sebastian Frias223bf962012-11-21 19:09:25 +0100146 except OSError as e:
147 raise ManifestParseError('cannot link manifest %s: %s' % (name, str(e)))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700148
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800149 def _RemoteToXml(self, r, doc, root):
150 e = doc.createElement('remote')
151 root.appendChild(e)
152 e.setAttribute('name', r.name)
153 e.setAttribute('fetch', r.fetchUrl)
154 if r.reviewUrl is not None:
155 e.setAttribute('review', r.reviewUrl)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800156
Brian Harring14a66742012-09-28 20:21:57 -0700157 def Save(self, fd, peg_rev=False, peg_rev_upstream=True):
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800158 """Write the current manifest out to the given file descriptor.
159 """
Colin Cross5acde752012-03-28 20:15:45 -0700160 mp = self.manifestProject
161
162 groups = mp.config.GetString('manifest.groups')
Matt Gumbel0c635bb2012-12-21 10:14:53 -0800163 if groups:
164 groups = [x for x in re.split(r'[,\s]+', groups) if x]
Colin Cross5acde752012-03-28 20:15:45 -0700165
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800166 doc = xml.dom.minidom.Document()
167 root = doc.createElement('manifest')
168 doc.appendChild(root)
169
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700170 # Save out the notice. There's a little bit of work here to give it the
171 # right whitespace, which assumes that the notice is automatically indented
172 # by 4 by minidom.
173 if self.notice:
174 notice_element = root.appendChild(doc.createElement('notice'))
175 notice_lines = self.notice.splitlines()
176 indented_notice = ('\n'.join(" "*4 + line for line in notice_lines))[4:]
177 notice_element.appendChild(doc.createTextNode(indented_notice))
178
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800179 d = self.default
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800180
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530181 for r in sorted(self.remotes):
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800182 self._RemoteToXml(self.remotes[r], doc, root)
183 if self.remotes:
184 root.appendChild(doc.createTextNode(''))
185
186 have_default = False
187 e = doc.createElement('default')
188 if d.remote:
189 have_default = True
190 e.setAttribute('remote', d.remote.name)
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700191 if d.revisionExpr:
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800192 have_default = True
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700193 e.setAttribute('revision', d.revisionExpr)
Shawn O. Pearce6392c872011-09-22 17:44:31 -0700194 if d.sync_j > 1:
195 have_default = True
196 e.setAttribute('sync-j', '%d' % d.sync_j)
Anatol Pomazau79770d22012-04-20 14:41:59 -0700197 if d.sync_c:
198 have_default = True
199 e.setAttribute('sync-c', 'true')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800200 if d.sync_s:
201 have_default = True
202 e.setAttribute('sync-s', 'true')
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800203 if have_default:
204 root.appendChild(e)
205 root.appendChild(doc.createTextNode(''))
206
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700207 if self._manifest_server:
208 e = doc.createElement('manifest-server')
209 e.setAttribute('url', self._manifest_server)
210 root.appendChild(e)
211 root.appendChild(doc.createTextNode(''))
212
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800213 def output_projects(parent, parent_node, projects):
214 for p in projects:
215 output_project(parent, parent_node, self.projects[p])
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800216
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800217 def output_project(parent, parent_node, p):
Colin Cross5acde752012-03-28 20:15:45 -0700218 if not p.MatchesGroups(groups):
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800219 return
220
221 name = p.name
222 relpath = p.relpath
223 if parent:
224 name = self._UnjoinName(parent.name, name)
225 relpath = self._UnjoinRelpath(parent.relpath, relpath)
Colin Cross5acde752012-03-28 20:15:45 -0700226
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800227 e = doc.createElement('project')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800228 parent_node.appendChild(e)
229 e.setAttribute('name', name)
230 if relpath != name:
231 e.setAttribute('path', relpath)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800232 if not d.remote or p.remote.name != d.remote.name:
233 e.setAttribute('remote', p.remote.name)
234 if peg_rev:
235 if self.IsMirror:
Brian Harring14a66742012-09-28 20:21:57 -0700236 value = p.bare_git.rev_parse(p.revisionExpr + '^0')
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800237 else:
Brian Harring14a66742012-09-28 20:21:57 -0700238 value = p.work_git.rev_parse(HEAD + '^0')
239 e.setAttribute('revision', value)
240 if peg_rev_upstream and value != p.revisionExpr:
241 # Only save the origin if the origin is not a sha1, and the default
242 # isn't our value, and the if the default doesn't already have that
243 # covered.
244 e.setAttribute('upstream', p.revisionExpr)
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700245 elif not d.revisionExpr or p.revisionExpr != d.revisionExpr:
246 e.setAttribute('revision', p.revisionExpr)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800247
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800248 for c in p.copyfiles:
249 ce = doc.createElement('copyfile')
250 ce.setAttribute('src', c.src)
251 ce.setAttribute('dest', c.dest)
252 e.appendChild(ce)
253
Conley Owensbb1b5f52012-08-13 13:11:18 -0700254 default_groups = ['all', 'name:%s' % p.name, 'path:%s' % p.relpath]
Dmitry Fink17f85ea2012-08-06 14:52:29 -0700255 egroups = [g for g in p.groups if g not in default_groups]
Conley Owens971de8e2012-04-16 10:36:08 -0700256 if egroups:
257 e.setAttribute('groups', ','.join(egroups))
Colin Cross5acde752012-03-28 20:15:45 -0700258
James W. Mills24c13082012-04-12 15:04:13 -0500259 for a in p.annotations:
260 if a.keep == "true":
261 ae = doc.createElement('annotation')
262 ae.setAttribute('name', a.name)
263 ae.setAttribute('value', a.value)
264 e.appendChild(ae)
265
Anatol Pomazau79770d22012-04-20 14:41:59 -0700266 if p.sync_c:
267 e.setAttribute('sync-c', 'true')
268
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800269 if p.sync_s:
270 e.setAttribute('sync-s', 'true')
271
272 if p.subprojects:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530273 sort_projects = list(sorted([subp.name for subp in p.subprojects]))
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800274 output_projects(p, e, sort_projects)
275
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530276 sort_projects = list(sorted([key for key, value in self.projects.items()
277 if not value.parent]))
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800278 sort_projects.sort()
279 output_projects(None, root, sort_projects)
280
Doug Anderson37282b42011-03-04 11:54:18 -0800281 if self._repo_hooks_project:
282 root.appendChild(doc.createTextNode(''))
283 e = doc.createElement('repo-hooks')
284 e.setAttribute('in-project', self._repo_hooks_project.name)
285 e.setAttribute('enabled-list',
286 ' '.join(self._repo_hooks_project.enabled_repo_hooks))
287 root.appendChild(e)
288
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800289 doc.writexml(fd, '', ' ', '\n', 'UTF-8')
290
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700291 @property
292 def projects(self):
293 self._Load()
294 return self._projects
295
296 @property
297 def remotes(self):
298 self._Load()
299 return self._remotes
300
301 @property
302 def default(self):
303 self._Load()
304 return self._default
305
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800306 @property
Doug Anderson37282b42011-03-04 11:54:18 -0800307 def repo_hooks_project(self):
308 self._Load()
309 return self._repo_hooks_project
310
311 @property
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700312 def notice(self):
313 self._Load()
314 return self._notice
315
316 @property
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700317 def manifest_server(self):
318 self._Load()
Shawn O. Pearce34fb20f2011-11-30 13:41:02 -0800319 return self._manifest_server
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700320
321 @property
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800322 def IsMirror(self):
323 return self.manifestProject.config.GetBoolean('repo.mirror')
324
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700325 def _Unload(self):
326 self._loaded = False
327 self._projects = {}
328 self._remotes = {}
329 self._default = None
Doug Anderson37282b42011-03-04 11:54:18 -0800330 self._repo_hooks_project = None
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700331 self._notice = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700332 self.branch = None
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700333 self._manifest_server = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700334
335 def _Load(self):
336 if not self._loaded:
Shawn O. Pearce2450a292008-11-04 08:22:07 -0800337 m = self.manifestProject
338 b = m.GetBranch(m.CurrentBranch).merge
Shawn O. Pearce21c5c342009-06-25 16:47:30 -0700339 if b is not None and b.startswith(R_HEADS):
Shawn O. Pearce2450a292008-11-04 08:22:07 -0800340 b = b[len(R_HEADS):]
341 self.branch = b
342
Colin Cross23acdd32012-04-21 00:33:54 -0700343 nodes = []
Brian Harring475a47d2012-06-07 20:05:35 -0700344 nodes.append(self._ParseManifestXml(self.manifestFile,
345 self.manifestProject.worktree))
Shawn O. Pearce5cc66792008-10-23 16:19:27 -0700346
347 local = os.path.join(self.repodir, LOCAL_MANIFEST_NAME)
348 if os.path.exists(local):
David Pursehouse4eb285c2013-02-14 16:28:44 +0900349 if not self.localManifestWarning:
350 self.localManifestWarning = True
351 print('warning: %s is deprecated; put local manifests in `%s` instead'
352 % (LOCAL_MANIFEST_NAME, os.path.join(self.repodir, LOCAL_MANIFESTS_DIR_NAME)),
353 file=sys.stderr)
Brian Harring475a47d2012-06-07 20:05:35 -0700354 nodes.append(self._ParseManifestXml(local, self.repodir))
Colin Cross23acdd32012-04-21 00:33:54 -0700355
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900356 local_dir = os.path.abspath(os.path.join(self.repodir, LOCAL_MANIFESTS_DIR_NAME))
357 try:
David Pursehouse52f1e5d2012-11-14 04:53:24 +0900358 for local_file in sorted(os.listdir(local_dir)):
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900359 if local_file.endswith('.xml'):
David Pursehouse5f434ed2012-11-22 13:48:10 +0900360 local = os.path.join(local_dir, local_file)
361 nodes.append(self._ParseManifestXml(local, self.repodir))
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900362 except OSError:
363 pass
364
Joe Onorato26e24752013-01-11 12:35:53 -0800365 try:
366 self._ParseManifest(nodes)
367 except ManifestParseError as e:
368 # There was a problem parsing, unload ourselves in case they catch
369 # this error and try again later, we will show the correct error
370 self._Unload()
371 raise e
Shawn O. Pearce5cc66792008-10-23 16:19:27 -0700372
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800373 if self.IsMirror:
374 self._AddMetaProjectMirror(self.repoProject)
375 self._AddMetaProjectMirror(self.manifestProject)
376
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700377 self._loaded = True
378
Brian Harring475a47d2012-06-07 20:05:35 -0700379 def _ParseManifestXml(self, path, include_root):
David Pursehousef7fc8a92012-11-13 04:00:28 +0900380 try:
381 root = xml.dom.minidom.parse(path)
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900382 except (OSError, xml.parsers.expat.ExpatError) as e:
David Pursehousef7fc8a92012-11-13 04:00:28 +0900383 raise ManifestParseError("error parsing manifest %s: %s" % (path, e))
384
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700385 if not root or not root.childNodes:
Brian Harring26448742011-04-28 05:04:41 -0700386 raise ManifestParseError("no root node in %s" % (path,))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700387
Jooncheol Park34acdd22012-08-27 02:25:59 +0900388 for manifest in root.childNodes:
389 if manifest.nodeName == 'manifest':
390 break
391 else:
Brian Harring26448742011-04-28 05:04:41 -0700392 raise ManifestParseError("no <manifest> in %s" % (path,))
393
Colin Cross23acdd32012-04-21 00:33:54 -0700394 nodes = []
David Pursehouse4f7bdea2012-10-22 12:50:15 +0900395 for node in manifest.childNodes: # pylint:disable=W0631
David Pursehouse5c6eeac2012-10-11 16:44:48 +0900396 # We only get here if manifest is initialised
David Pursehousec1b86a22012-11-14 11:36:51 +0900397 if node.nodeName == 'include':
398 name = self._reqatt(node, 'name')
399 fp = os.path.join(include_root, name)
400 if not os.path.isfile(fp):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530401 raise ManifestParseError("include %s doesn't exist or isn't a file"
402 % (name,))
David Pursehousec1b86a22012-11-14 11:36:51 +0900403 try:
404 nodes.extend(self._ParseManifestXml(fp, include_root))
405 # should isolate this to the exact exception, but that's
406 # tricky. actual parsing implementation may vary.
407 except (KeyboardInterrupt, RuntimeError, SystemExit):
408 raise
409 except Exception as e:
410 raise ManifestParseError(
411 "failed parsing included manifest %s: %s", (name, e))
412 else:
413 nodes.append(node)
Colin Cross23acdd32012-04-21 00:33:54 -0700414 return nodes
Brian Harring26448742011-04-28 05:04:41 -0700415
Colin Cross23acdd32012-04-21 00:33:54 -0700416 def _ParseManifest(self, node_list):
417 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700418 if node.nodeName == 'remote':
419 remote = self._ParseRemote(node)
David Pursehouse717ece92012-11-13 08:49:16 +0900420 if remote:
421 if remote.name in self._remotes:
422 if remote != self._remotes[remote.name]:
423 raise ManifestParseError(
424 'remote %s already exists with different attributes' %
425 (remote.name))
426 else:
427 self._remotes[remote.name] = remote
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700428
Colin Cross23acdd32012-04-21 00:33:54 -0700429 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700430 if node.nodeName == 'default':
Julien Campergue74879922013-10-09 14:38:46 +0200431 new_default = self._ParseDefault(node)
432 if self._default is None:
433 self._default = new_default
434 elif new_default != self._default:
435 raise ManifestParseError(
436 'duplicate default in %s' %
437 (self.manifestFile))
438
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700439 if self._default is None:
440 self._default = _Default()
441
Colin Cross23acdd32012-04-21 00:33:54 -0700442 for node in itertools.chain(*node_list):
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700443 if node.nodeName == 'notice':
444 if self._notice is not None:
Doug Anderson37282b42011-03-04 11:54:18 -0800445 raise ManifestParseError(
446 'duplicate notice in %s' %
447 (self.manifestFile))
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700448 self._notice = self._ParseNotice(node)
449
Colin Cross23acdd32012-04-21 00:33:54 -0700450 for node in itertools.chain(*node_list):
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700451 if node.nodeName == 'manifest-server':
452 url = self._reqatt(node, 'url')
453 if self._manifest_server is not None:
David Pursehousec1b86a22012-11-14 11:36:51 +0900454 raise ManifestParseError(
455 'duplicate manifest-server in %s' %
456 (self.manifestFile))
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700457 self._manifest_server = url
458
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800459 def recursively_add_projects(project):
460 if self._projects.get(project.name):
461 raise ManifestParseError(
462 'duplicate project %s in %s' %
463 (project.name, self.manifestFile))
464 self._projects[project.name] = project
465 for subproject in project.subprojects:
466 recursively_add_projects(subproject)
467
Colin Cross23acdd32012-04-21 00:33:54 -0700468 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700469 if node.nodeName == 'project':
470 project = self._ParseProject(node)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800471 recursively_add_projects(project)
Doug Anderson37282b42011-03-04 11:54:18 -0800472 if node.nodeName == 'repo-hooks':
473 # Get the name of the project and the (space-separated) list of enabled.
474 repo_hooks_project = self._reqatt(node, 'in-project')
475 enabled_repo_hooks = self._reqatt(node, 'enabled-list').split()
476
477 # Only one project can be the hooks project
478 if self._repo_hooks_project is not None:
479 raise ManifestParseError(
480 'duplicate repo-hooks in %s' %
481 (self.manifestFile))
482
483 # Store a reference to the Project.
484 try:
485 self._repo_hooks_project = self._projects[repo_hooks_project]
486 except KeyError:
487 raise ManifestParseError(
488 'project %s not found for repo-hooks' %
489 (repo_hooks_project))
490
491 # Store the enabled hooks in the Project object.
492 self._repo_hooks_project.enabled_repo_hooks = enabled_repo_hooks
Colin Cross23acdd32012-04-21 00:33:54 -0700493 if node.nodeName == 'remove-project':
494 name = self._reqatt(node, 'name')
495 try:
496 del self._projects[name]
497 except KeyError:
David Pursehousef9107482012-11-16 19:12:32 +0900498 raise ManifestParseError('remove-project element specifies non-existent '
499 'project: %s' % name)
Colin Cross23acdd32012-04-21 00:33:54 -0700500
501 # If the manifest removes the hooks project, treat it as if it deleted
502 # the repo-hooks element too.
503 if self._repo_hooks_project and (self._repo_hooks_project.name == name):
504 self._repo_hooks_project = None
505
Doug Anderson37282b42011-03-04 11:54:18 -0800506
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800507 def _AddMetaProjectMirror(self, m):
508 name = None
509 m_url = m.GetRemote(m.remote.name).url
510 if m_url.endswith('/.git'):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530511 raise ManifestParseError('refusing to mirror %s' % m_url)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800512
513 if self._default and self._default.remote:
Conley Owensceea3682011-10-20 10:45:47 -0700514 url = self._default.remote.resolvedFetchUrl
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800515 if not url.endswith('/'):
516 url += '/'
517 if m_url.startswith(url):
518 remote = self._default.remote
519 name = m_url[len(url):]
520
521 if name is None:
522 s = m_url.rindex('/') + 1
Conley Owensdb728cd2011-09-26 16:34:01 -0700523 manifestUrl = self.manifestProject.config.GetString('remote.origin.url')
Shawn O. Pearcef35b2d92012-08-02 11:46:22 -0700524 remote = _XmlRemote('origin', fetch=m_url[:s], manifestUrl=manifestUrl)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800525 name = m_url[s:]
526
527 if name.endswith('.git'):
528 name = name[:-4]
529
530 if name not in self._projects:
531 m.PreSync()
532 gitdir = os.path.join(self.topdir, '%s.git' % name)
533 project = Project(manifest = self,
534 name = name,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -0700535 remote = remote.ToRemoteSpec(name),
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800536 gitdir = gitdir,
537 worktree = None,
538 relpath = None,
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700539 revisionExpr = m.revisionExpr,
540 revisionId = None)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800541 self._projects[project.name] = project
542
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700543 def _ParseRemote(self, node):
544 """
545 reads a <remote> element from the manifest file
546 """
547 name = self._reqatt(node, 'name')
Yestin Sunb292b982012-07-02 07:32:50 -0700548 alias = node.getAttribute('alias')
549 if alias == '':
550 alias = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700551 fetch = self._reqatt(node, 'fetch')
552 review = node.getAttribute('review')
Shawn O. Pearceae6e0942008-11-06 10:25:35 -0800553 if review == '':
554 review = None
Conley Owensdb728cd2011-09-26 16:34:01 -0700555 manifestUrl = self.manifestProject.config.GetString('remote.origin.url')
Yestin Sunb292b982012-07-02 07:32:50 -0700556 return _XmlRemote(name, alias, fetch, manifestUrl, review)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700557
558 def _ParseDefault(self, node):
559 """
560 reads a <default> element from the manifest file
561 """
562 d = _Default()
563 d.remote = self._get_remote(node)
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700564 d.revisionExpr = node.getAttribute('revision')
565 if d.revisionExpr == '':
566 d.revisionExpr = None
Anatol Pomazau79770d22012-04-20 14:41:59 -0700567
Bryan Jacobsf609f912013-05-06 13:36:24 -0400568 d.destBranchExpr = node.getAttribute('dest-branch') or None
569
Shawn O. Pearce6392c872011-09-22 17:44:31 -0700570 sync_j = node.getAttribute('sync-j')
571 if sync_j == '' or sync_j is None:
572 d.sync_j = 1
573 else:
574 d.sync_j = int(sync_j)
Anatol Pomazau79770d22012-04-20 14:41:59 -0700575
576 sync_c = node.getAttribute('sync-c')
577 if not sync_c:
578 d.sync_c = False
579 else:
580 d.sync_c = sync_c.lower() in ("yes", "true", "1")
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800581
582 sync_s = node.getAttribute('sync-s')
583 if not sync_s:
584 d.sync_s = False
585 else:
586 d.sync_s = sync_s.lower() in ("yes", "true", "1")
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700587 return d
588
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700589 def _ParseNotice(self, node):
590 """
591 reads a <notice> element from the manifest file
592
593 The <notice> element is distinct from other tags in the XML in that the
594 data is conveyed between the start and end tag (it's not an empty-element
595 tag).
596
597 The white space (carriage returns, indentation) for the notice element is
598 relevant and is parsed in a way that is based on how python docstrings work.
599 In fact, the code is remarkably similar to here:
600 http://www.python.org/dev/peps/pep-0257/
601 """
602 # Get the data out of the node...
603 notice = node.childNodes[0].data
604
605 # Figure out minimum indentation, skipping the first line (the same line
606 # as the <notice> tag)...
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530607 minIndent = sys.maxsize
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700608 lines = notice.splitlines()
609 for line in lines[1:]:
610 lstrippedLine = line.lstrip()
611 if lstrippedLine:
612 indent = len(line) - len(lstrippedLine)
613 minIndent = min(indent, minIndent)
614
615 # Strip leading / trailing blank lines and also indentation.
616 cleanLines = [lines[0].strip()]
617 for line in lines[1:]:
618 cleanLines.append(line[minIndent:].rstrip())
619
620 # Clear completely blank lines from front and back...
621 while cleanLines and not cleanLines[0]:
622 del cleanLines[0]
623 while cleanLines and not cleanLines[-1]:
624 del cleanLines[-1]
625
626 return '\n'.join(cleanLines)
627
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800628 def _JoinName(self, parent_name, name):
629 return os.path.join(parent_name, name)
630
631 def _UnjoinName(self, parent_name, name):
632 return os.path.relpath(name, parent_name)
633
634 def _ParseProject(self, node, parent = None):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700635 """
636 reads a <project> element from the manifest file
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700637 """
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700638 name = self._reqatt(node, 'name')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800639 if parent:
640 name = self._JoinName(parent.name, name)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700641
642 remote = self._get_remote(node)
643 if remote is None:
644 remote = self._default.remote
645 if remote is None:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530646 raise ManifestParseError("no remote for project %s within %s" %
647 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700648
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700649 revisionExpr = node.getAttribute('revision')
650 if not revisionExpr:
651 revisionExpr = self._default.revisionExpr
652 if not revisionExpr:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530653 raise ManifestParseError("no revision for project %s within %s" %
654 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700655
656 path = node.getAttribute('path')
657 if not path:
658 path = name
659 if path.startswith('/'):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530660 raise ManifestParseError("project %s path cannot be absolute in %s" %
661 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700662
Mike Pontillod3153822012-02-28 11:53:24 -0800663 rebase = node.getAttribute('rebase')
664 if not rebase:
665 rebase = True
666 else:
667 rebase = rebase.lower() in ("yes", "true", "1")
668
Anatol Pomazau79770d22012-04-20 14:41:59 -0700669 sync_c = node.getAttribute('sync-c')
670 if not sync_c:
671 sync_c = False
672 else:
673 sync_c = sync_c.lower() in ("yes", "true", "1")
674
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800675 sync_s = node.getAttribute('sync-s')
676 if not sync_s:
677 sync_s = self._default.sync_s
678 else:
679 sync_s = sync_s.lower() in ("yes", "true", "1")
680
David Pursehouseede7f122012-11-27 22:25:30 +0900681 clone_depth = node.getAttribute('clone-depth')
682 if clone_depth:
683 try:
684 clone_depth = int(clone_depth)
685 if clone_depth <= 0:
686 raise ValueError()
687 except ValueError:
688 raise ManifestParseError('invalid clone-depth %s in %s' %
689 (clone_depth, self.manifestFile))
690
Bryan Jacobsf609f912013-05-06 13:36:24 -0400691 dest_branch = node.getAttribute('dest-branch') or self._default.destBranchExpr
692
Brian Harring14a66742012-09-28 20:21:57 -0700693 upstream = node.getAttribute('upstream')
694
Conley Owens971de8e2012-04-16 10:36:08 -0700695 groups = ''
696 if node.hasAttribute('groups'):
697 groups = node.getAttribute('groups')
David Pursehouse1d947b32012-10-25 12:23:11 +0900698 groups = [x for x in re.split(r'[,\s]+', groups) if x]
Brian Harring7da13142012-06-15 02:24:20 -0700699
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800700 if parent is None:
701 relpath, worktree, gitdir = self.GetProjectPaths(name, path)
Shawn O. Pearcecd81dd62012-10-26 12:18:00 -0700702 else:
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800703 relpath, worktree, gitdir = self.GetSubprojectPaths(parent, path)
704
705 default_groups = ['all', 'name:%s' % name, 'path:%s' % relpath]
706 groups.extend(set(default_groups).difference(groups))
Shawn O. Pearcecd81dd62012-10-26 12:18:00 -0700707
Scott Fandb83b1b2013-02-28 09:34:14 +0800708 if self.IsMirror and node.hasAttribute('force-path'):
709 if node.getAttribute('force-path').lower() in ("yes", "true", "1"):
710 gitdir = os.path.join(self.topdir, '%s.git' % path)
711
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700712 project = Project(manifest = self,
713 name = name,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -0700714 remote = remote.ToRemoteSpec(name),
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700715 gitdir = gitdir,
716 worktree = worktree,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800717 relpath = relpath,
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700718 revisionExpr = revisionExpr,
Mike Pontillod3153822012-02-28 11:53:24 -0800719 revisionId = None,
Colin Cross5acde752012-03-28 20:15:45 -0700720 rebase = rebase,
Anatol Pomazau79770d22012-04-20 14:41:59 -0700721 groups = groups,
Brian Harring14a66742012-09-28 20:21:57 -0700722 sync_c = sync_c,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800723 sync_s = sync_s,
David Pursehouseede7f122012-11-27 22:25:30 +0900724 clone_depth = clone_depth,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800725 upstream = upstream,
Bryan Jacobsf609f912013-05-06 13:36:24 -0400726 parent = parent,
727 dest_branch = dest_branch)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700728
729 for n in node.childNodes:
Shawn O. Pearce242b5262009-05-19 13:00:29 -0700730 if n.nodeName == 'copyfile':
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700731 self._ParseCopyFile(project, n)
James W. Mills24c13082012-04-12 15:04:13 -0500732 if n.nodeName == 'annotation':
733 self._ParseAnnotation(project, n)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800734 if n.nodeName == 'project':
735 project.subprojects.append(self._ParseProject(n, parent = project))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700736
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700737 return project
738
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800739 def GetProjectPaths(self, name, path):
740 relpath = path
741 if self.IsMirror:
742 worktree = None
743 gitdir = os.path.join(self.topdir, '%s.git' % name)
744 else:
745 worktree = os.path.join(self.topdir, path).replace('\\', '/')
746 gitdir = os.path.join(self.repodir, 'projects', '%s.git' % path)
747 return relpath, worktree, gitdir
748
749 def GetSubprojectName(self, parent, submodule_path):
750 return os.path.join(parent.name, submodule_path)
751
752 def _JoinRelpath(self, parent_relpath, relpath):
753 return os.path.join(parent_relpath, relpath)
754
755 def _UnjoinRelpath(self, parent_relpath, relpath):
756 return os.path.relpath(relpath, parent_relpath)
757
758 def GetSubprojectPaths(self, parent, path):
759 relpath = self._JoinRelpath(parent.relpath, path)
760 gitdir = os.path.join(parent.gitdir, 'subprojects', '%s.git' % path)
761 if self.IsMirror:
762 worktree = None
763 else:
764 worktree = os.path.join(parent.worktree, path).replace('\\', '/')
765 return relpath, worktree, gitdir
766
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700767 def _ParseCopyFile(self, project, node):
768 src = self._reqatt(node, 'src')
769 dest = self._reqatt(node, 'dest')
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800770 if not self.IsMirror:
771 # src is project relative;
772 # dest is relative to the top of the tree
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800773 project.AddCopyFile(src, dest, os.path.join(self.topdir, dest))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700774
James W. Mills24c13082012-04-12 15:04:13 -0500775 def _ParseAnnotation(self, project, node):
776 name = self._reqatt(node, 'name')
777 value = self._reqatt(node, 'value')
778 try:
779 keep = self._reqatt(node, 'keep').lower()
780 except ManifestParseError:
781 keep = "true"
782 if keep != "true" and keep != "false":
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530783 raise ManifestParseError('optional "keep" attribute must be '
784 '"true" or "false"')
James W. Mills24c13082012-04-12 15:04:13 -0500785 project.AddAnnotation(name, value, keep)
786
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700787 def _get_remote(self, node):
788 name = node.getAttribute('remote')
789 if not name:
790 return None
791
792 v = self._remotes.get(name)
793 if not v:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530794 raise ManifestParseError("remote %s not defined in %s" %
795 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700796 return v
797
798 def _reqatt(self, node, attname):
799 """
800 reads a required attribute from the node.
801 """
802 v = node.getAttribute(attname)
803 if not v:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530804 raise ManifestParseError("no %s in <%s> within %s" %
805 (attname, node.nodeName, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700806 return v