blob: 3c80d3cebd80d3545f73329e762ca2f0c546b65b [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
Julien Camperguedd654222014-01-09 16:21:37 +010035from error import ManifestParseError, ManifestInvalidRevisionError
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070036
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('/')
Conley Owens2d0f5082014-01-31 15:03:51 -080083 # urljoin will gets confused over quite a few things. The ones we care
84 # about here are:
85 # * no scheme in the base url, like <hostname:port>
86 # * persistent-https://
87 # We handle this by replacing these with obscure protocols
88 # and then replacing them with the original when we are done.
89 # gopher -> <none>
90 # wais -> persistent-https
Conley Owensdb728cd2011-09-26 16:34:01 -070091 if manifestUrl.find(':') != manifestUrl.find('/') - 1:
David Pursehousec1b86a22012-11-14 11:36:51 +090092 manifestUrl = 'gopher://' + manifestUrl
Conley Owens2d0f5082014-01-31 15:03:51 -080093 manifestUrl = re.sub(r'^persistent-https://', 'wais://', manifestUrl)
Chirayu Desai217ea7d2013-03-01 19:14:38 +053094 url = urllib.parse.urljoin(manifestUrl, url)
Shawn Pearcea9f11b32013-01-02 15:40:48 -080095 url = re.sub(r'^gopher://', '', url)
Conley Owens2d0f5082014-01-31 15:03:51 -080096 url = re.sub(r'^wais://', 'persistent-https://', url)
Shawn Pearcea9f11b32013-01-02 15:40:48 -080097 return url
Conley Owensceea3682011-10-20 10:45:47 -070098
99 def ToRemoteSpec(self, projectName):
Conley Owens9d8f9142011-10-20 14:36:35 -0700100 url = self.resolvedFetchUrl.rstrip('/') + '/' + projectName
Yestin Sunb292b982012-07-02 07:32:50 -0700101 remoteName = self.name
Conley Owens1e7ab2a2013-10-08 17:26:57 -0700102 if self.remoteAlias:
David Pursehouse37128b62013-10-15 10:48:40 +0900103 remoteName = self.remoteAlias
Yestin Sunb292b982012-07-02 07:32:50 -0700104 return RemoteSpec(remoteName, url, self.reviewUrl)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700105
Shawn O. Pearcec8a300f2009-05-18 13:19:57 -0700106class XmlManifest(object):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700107 """manages the repo configuration file"""
108
109 def __init__(self, repodir):
110 self.repodir = os.path.abspath(repodir)
111 self.topdir = os.path.dirname(self.repodir)
112 self.manifestFile = os.path.join(self.repodir, MANIFEST_FILE_NAME)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700113 self.globalConfig = GitConfig.ForUser()
David Pursehouse4eb285c2013-02-14 16:28:44 +0900114 self.localManifestWarning = False
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700115
116 self.repoProject = MetaProject(self, 'repo',
117 gitdir = os.path.join(repodir, 'repo/.git'),
118 worktree = os.path.join(repodir, 'repo'))
119
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700120 self.manifestProject = MetaProject(self, 'manifests',
Shawn O. Pearcef5c25a62008-11-04 08:11:53 -0800121 gitdir = os.path.join(repodir, 'manifests.git'),
122 worktree = os.path.join(repodir, 'manifests'))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700123
124 self._Unload()
125
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700126 def Override(self, name):
127 """Use a different manifest, just for the current instantiation.
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700128 """
129 path = os.path.join(self.manifestProject.worktree, name)
130 if not os.path.isfile(path):
131 raise ManifestParseError('manifest %s not found' % name)
132
133 old = self.manifestFile
134 try:
135 self.manifestFile = path
136 self._Unload()
137 self._Load()
138 finally:
139 self.manifestFile = old
140
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700141 def Link(self, name):
142 """Update the repo metadata to use a different manifest.
143 """
144 self.Override(name)
145
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700146 try:
Sebastian Frias223bf962012-11-21 19:09:25 +0100147 if os.path.lexists(self.manifestFile):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700148 os.remove(self.manifestFile)
149 os.symlink('manifests/%s' % name, self.manifestFile)
Sebastian Frias223bf962012-11-21 19:09:25 +0100150 except OSError as e:
151 raise ManifestParseError('cannot link manifest %s: %s' % (name, str(e)))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700152
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800153 def _RemoteToXml(self, r, doc, root):
154 e = doc.createElement('remote')
155 root.appendChild(e)
156 e.setAttribute('name', r.name)
157 e.setAttribute('fetch', r.fetchUrl)
Conley Owens1e7ab2a2013-10-08 17:26:57 -0700158 if r.remoteAlias is not None:
159 e.setAttribute('alias', r.remoteAlias)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800160 if r.reviewUrl is not None:
161 e.setAttribute('review', r.reviewUrl)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800162
Brian Harring14a66742012-09-28 20:21:57 -0700163 def Save(self, fd, peg_rev=False, peg_rev_upstream=True):
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800164 """Write the current manifest out to the given file descriptor.
165 """
Colin Cross5acde752012-03-28 20:15:45 -0700166 mp = self.manifestProject
167
168 groups = mp.config.GetString('manifest.groups')
Matt Gumbel0c635bb2012-12-21 10:14:53 -0800169 if groups:
170 groups = [x for x in re.split(r'[,\s]+', groups) if x]
Colin Cross5acde752012-03-28 20:15:45 -0700171
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800172 doc = xml.dom.minidom.Document()
173 root = doc.createElement('manifest')
174 doc.appendChild(root)
175
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700176 # Save out the notice. There's a little bit of work here to give it the
177 # right whitespace, which assumes that the notice is automatically indented
178 # by 4 by minidom.
179 if self.notice:
180 notice_element = root.appendChild(doc.createElement('notice'))
181 notice_lines = self.notice.splitlines()
182 indented_notice = ('\n'.join(" "*4 + line for line in notice_lines))[4:]
183 notice_element.appendChild(doc.createTextNode(indented_notice))
184
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800185 d = self.default
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800186
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530187 for r in sorted(self.remotes):
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800188 self._RemoteToXml(self.remotes[r], doc, root)
189 if self.remotes:
190 root.appendChild(doc.createTextNode(''))
191
192 have_default = False
193 e = doc.createElement('default')
194 if d.remote:
195 have_default = True
196 e.setAttribute('remote', d.remote.name)
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700197 if d.revisionExpr:
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800198 have_default = True
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700199 e.setAttribute('revision', d.revisionExpr)
Shawn O. Pearce6392c872011-09-22 17:44:31 -0700200 if d.sync_j > 1:
201 have_default = True
202 e.setAttribute('sync-j', '%d' % d.sync_j)
Anatol Pomazau79770d22012-04-20 14:41:59 -0700203 if d.sync_c:
204 have_default = True
205 e.setAttribute('sync-c', 'true')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800206 if d.sync_s:
207 have_default = True
208 e.setAttribute('sync-s', 'true')
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800209 if have_default:
210 root.appendChild(e)
211 root.appendChild(doc.createTextNode(''))
212
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700213 if self._manifest_server:
214 e = doc.createElement('manifest-server')
215 e.setAttribute('url', self._manifest_server)
216 root.appendChild(e)
217 root.appendChild(doc.createTextNode(''))
218
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800219 def output_projects(parent, parent_node, projects):
David James8d201162013-10-11 17:03:19 -0700220 for project_name in projects:
221 for project in self._projects[project_name]:
222 output_project(parent, parent_node, project)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800223
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800224 def output_project(parent, parent_node, p):
Colin Cross5acde752012-03-28 20:15:45 -0700225 if not p.MatchesGroups(groups):
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800226 return
227
228 name = p.name
229 relpath = p.relpath
230 if parent:
231 name = self._UnjoinName(parent.name, name)
232 relpath = self._UnjoinRelpath(parent.relpath, relpath)
Colin Cross5acde752012-03-28 20:15:45 -0700233
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800234 e = doc.createElement('project')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800235 parent_node.appendChild(e)
236 e.setAttribute('name', name)
237 if relpath != name:
238 e.setAttribute('path', relpath)
Conley Owensa17d7af2013-10-16 14:38:09 -0700239 remoteName = None
240 if d.remote:
Conley Owensce201a52013-10-16 14:42:42 -0700241 remoteName = d.remote.remoteAlias or d.remote.name
Conley Owens1e7ab2a2013-10-08 17:26:57 -0700242 if not d.remote or p.remote.name != remoteName:
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800243 e.setAttribute('remote', p.remote.name)
244 if peg_rev:
245 if self.IsMirror:
Brian Harring14a66742012-09-28 20:21:57 -0700246 value = p.bare_git.rev_parse(p.revisionExpr + '^0')
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800247 else:
Brian Harring14a66742012-09-28 20:21:57 -0700248 value = p.work_git.rev_parse(HEAD + '^0')
249 e.setAttribute('revision', value)
250 if peg_rev_upstream and value != p.revisionExpr:
251 # Only save the origin if the origin is not a sha1, and the default
252 # isn't our value, and the if the default doesn't already have that
253 # covered.
254 e.setAttribute('upstream', p.revisionExpr)
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700255 elif not d.revisionExpr or p.revisionExpr != d.revisionExpr:
256 e.setAttribute('revision', p.revisionExpr)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800257
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800258 for c in p.copyfiles:
259 ce = doc.createElement('copyfile')
260 ce.setAttribute('src', c.src)
261 ce.setAttribute('dest', c.dest)
262 e.appendChild(ce)
263
Conley Owensbb1b5f52012-08-13 13:11:18 -0700264 default_groups = ['all', 'name:%s' % p.name, 'path:%s' % p.relpath]
Dmitry Fink17f85ea2012-08-06 14:52:29 -0700265 egroups = [g for g in p.groups if g not in default_groups]
Conley Owens971de8e2012-04-16 10:36:08 -0700266 if egroups:
267 e.setAttribute('groups', ','.join(egroups))
Colin Cross5acde752012-03-28 20:15:45 -0700268
James W. Mills24c13082012-04-12 15:04:13 -0500269 for a in p.annotations:
270 if a.keep == "true":
271 ae = doc.createElement('annotation')
272 ae.setAttribute('name', a.name)
273 ae.setAttribute('value', a.value)
274 e.appendChild(ae)
275
Anatol Pomazau79770d22012-04-20 14:41:59 -0700276 if p.sync_c:
277 e.setAttribute('sync-c', 'true')
278
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800279 if p.sync_s:
280 e.setAttribute('sync-s', 'true')
281
282 if p.subprojects:
David James8d201162013-10-11 17:03:19 -0700283 subprojects = set(subp.name for subp in p.subprojects)
284 output_projects(p, e, list(sorted(subprojects)))
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800285
David James8d201162013-10-11 17:03:19 -0700286 projects = set(p.name for p in self._paths.values() if not p.parent)
287 output_projects(None, root, list(sorted(projects)))
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800288
Doug Anderson37282b42011-03-04 11:54:18 -0800289 if self._repo_hooks_project:
290 root.appendChild(doc.createTextNode(''))
291 e = doc.createElement('repo-hooks')
292 e.setAttribute('in-project', self._repo_hooks_project.name)
293 e.setAttribute('enabled-list',
294 ' '.join(self._repo_hooks_project.enabled_repo_hooks))
295 root.appendChild(e)
296
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800297 doc.writexml(fd, '', ' ', '\n', 'UTF-8')
298
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700299 @property
David James8d201162013-10-11 17:03:19 -0700300 def paths(self):
301 self._Load()
302 return self._paths
303
304 @property
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700305 def projects(self):
306 self._Load()
David James8d201162013-10-11 17:03:19 -0700307 return self._paths.values()
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700308
309 @property
310 def remotes(self):
311 self._Load()
312 return self._remotes
313
314 @property
315 def default(self):
316 self._Load()
317 return self._default
318
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800319 @property
Doug Anderson37282b42011-03-04 11:54:18 -0800320 def repo_hooks_project(self):
321 self._Load()
322 return self._repo_hooks_project
323
324 @property
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700325 def notice(self):
326 self._Load()
327 return self._notice
328
329 @property
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700330 def manifest_server(self):
331 self._Load()
Shawn O. Pearce34fb20f2011-11-30 13:41:02 -0800332 return self._manifest_server
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700333
334 @property
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800335 def IsMirror(self):
336 return self.manifestProject.config.GetBoolean('repo.mirror')
337
Julien Campergue335f5ef2013-10-16 11:02:35 +0200338 @property
339 def IsArchive(self):
340 return self.manifestProject.config.GetBoolean('repo.archive')
341
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700342 def _Unload(self):
343 self._loaded = False
344 self._projects = {}
David James8d201162013-10-11 17:03:19 -0700345 self._paths = {}
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700346 self._remotes = {}
347 self._default = None
Doug Anderson37282b42011-03-04 11:54:18 -0800348 self._repo_hooks_project = None
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700349 self._notice = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700350 self.branch = None
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700351 self._manifest_server = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700352
353 def _Load(self):
354 if not self._loaded:
Shawn O. Pearce2450a292008-11-04 08:22:07 -0800355 m = self.manifestProject
356 b = m.GetBranch(m.CurrentBranch).merge
Shawn O. Pearce21c5c342009-06-25 16:47:30 -0700357 if b is not None and b.startswith(R_HEADS):
Shawn O. Pearce2450a292008-11-04 08:22:07 -0800358 b = b[len(R_HEADS):]
359 self.branch = b
360
Colin Cross23acdd32012-04-21 00:33:54 -0700361 nodes = []
Brian Harring475a47d2012-06-07 20:05:35 -0700362 nodes.append(self._ParseManifestXml(self.manifestFile,
363 self.manifestProject.worktree))
Shawn O. Pearce5cc66792008-10-23 16:19:27 -0700364
365 local = os.path.join(self.repodir, LOCAL_MANIFEST_NAME)
366 if os.path.exists(local):
David Pursehouse4eb285c2013-02-14 16:28:44 +0900367 if not self.localManifestWarning:
368 self.localManifestWarning = True
369 print('warning: %s is deprecated; put local manifests in `%s` instead'
370 % (LOCAL_MANIFEST_NAME, os.path.join(self.repodir, LOCAL_MANIFESTS_DIR_NAME)),
371 file=sys.stderr)
Brian Harring475a47d2012-06-07 20:05:35 -0700372 nodes.append(self._ParseManifestXml(local, self.repodir))
Colin Cross23acdd32012-04-21 00:33:54 -0700373
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900374 local_dir = os.path.abspath(os.path.join(self.repodir, LOCAL_MANIFESTS_DIR_NAME))
375 try:
David Pursehouse52f1e5d2012-11-14 04:53:24 +0900376 for local_file in sorted(os.listdir(local_dir)):
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900377 if local_file.endswith('.xml'):
David Pursehouse5f434ed2012-11-22 13:48:10 +0900378 local = os.path.join(local_dir, local_file)
379 nodes.append(self._ParseManifestXml(local, self.repodir))
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900380 except OSError:
381 pass
382
Joe Onorato26e24752013-01-11 12:35:53 -0800383 try:
384 self._ParseManifest(nodes)
385 except ManifestParseError as e:
386 # There was a problem parsing, unload ourselves in case they catch
387 # this error and try again later, we will show the correct error
388 self._Unload()
389 raise e
Shawn O. Pearce5cc66792008-10-23 16:19:27 -0700390
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800391 if self.IsMirror:
392 self._AddMetaProjectMirror(self.repoProject)
393 self._AddMetaProjectMirror(self.manifestProject)
394
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700395 self._loaded = True
396
Brian Harring475a47d2012-06-07 20:05:35 -0700397 def _ParseManifestXml(self, path, include_root):
David Pursehousef7fc8a92012-11-13 04:00:28 +0900398 try:
399 root = xml.dom.minidom.parse(path)
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900400 except (OSError, xml.parsers.expat.ExpatError) as e:
David Pursehousef7fc8a92012-11-13 04:00:28 +0900401 raise ManifestParseError("error parsing manifest %s: %s" % (path, e))
402
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700403 if not root or not root.childNodes:
Brian Harring26448742011-04-28 05:04:41 -0700404 raise ManifestParseError("no root node in %s" % (path,))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700405
Jooncheol Park34acdd22012-08-27 02:25:59 +0900406 for manifest in root.childNodes:
407 if manifest.nodeName == 'manifest':
408 break
409 else:
Brian Harring26448742011-04-28 05:04:41 -0700410 raise ManifestParseError("no <manifest> in %s" % (path,))
411
Colin Cross23acdd32012-04-21 00:33:54 -0700412 nodes = []
David Pursehouse4f7bdea2012-10-22 12:50:15 +0900413 for node in manifest.childNodes: # pylint:disable=W0631
David Pursehouse5c6eeac2012-10-11 16:44:48 +0900414 # We only get here if manifest is initialised
David Pursehousec1b86a22012-11-14 11:36:51 +0900415 if node.nodeName == 'include':
416 name = self._reqatt(node, 'name')
417 fp = os.path.join(include_root, name)
418 if not os.path.isfile(fp):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530419 raise ManifestParseError("include %s doesn't exist or isn't a file"
420 % (name,))
David Pursehousec1b86a22012-11-14 11:36:51 +0900421 try:
422 nodes.extend(self._ParseManifestXml(fp, include_root))
423 # should isolate this to the exact exception, but that's
424 # tricky. actual parsing implementation may vary.
425 except (KeyboardInterrupt, RuntimeError, SystemExit):
426 raise
427 except Exception as e:
428 raise ManifestParseError(
429 "failed parsing included manifest %s: %s", (name, e))
430 else:
431 nodes.append(node)
Colin Cross23acdd32012-04-21 00:33:54 -0700432 return nodes
Brian Harring26448742011-04-28 05:04:41 -0700433
Colin Cross23acdd32012-04-21 00:33:54 -0700434 def _ParseManifest(self, node_list):
435 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700436 if node.nodeName == 'remote':
437 remote = self._ParseRemote(node)
David Pursehouse717ece92012-11-13 08:49:16 +0900438 if remote:
439 if remote.name in self._remotes:
440 if remote != self._remotes[remote.name]:
441 raise ManifestParseError(
442 'remote %s already exists with different attributes' %
443 (remote.name))
444 else:
445 self._remotes[remote.name] = remote
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700446
Colin Cross23acdd32012-04-21 00:33:54 -0700447 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700448 if node.nodeName == 'default':
Julien Campergue74879922013-10-09 14:38:46 +0200449 new_default = self._ParseDefault(node)
450 if self._default is None:
451 self._default = new_default
452 elif new_default != self._default:
David Pursehouse37128b62013-10-15 10:48:40 +0900453 raise ManifestParseError('duplicate default in %s' %
454 (self.manifestFile))
Julien Campergue74879922013-10-09 14:38:46 +0200455
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700456 if self._default is None:
457 self._default = _Default()
458
Colin Cross23acdd32012-04-21 00:33:54 -0700459 for node in itertools.chain(*node_list):
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700460 if node.nodeName == 'notice':
461 if self._notice is not None:
Doug Anderson37282b42011-03-04 11:54:18 -0800462 raise ManifestParseError(
463 'duplicate notice in %s' %
464 (self.manifestFile))
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700465 self._notice = self._ParseNotice(node)
466
Colin Cross23acdd32012-04-21 00:33:54 -0700467 for node in itertools.chain(*node_list):
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700468 if node.nodeName == 'manifest-server':
469 url = self._reqatt(node, 'url')
470 if self._manifest_server is not None:
David Pursehousec1b86a22012-11-14 11:36:51 +0900471 raise ManifestParseError(
472 'duplicate manifest-server in %s' %
473 (self.manifestFile))
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700474 self._manifest_server = url
475
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800476 def recursively_add_projects(project):
David James8d201162013-10-11 17:03:19 -0700477 projects = self._projects.setdefault(project.name, [])
478 if project.relpath is None:
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800479 raise ManifestParseError(
David James8d201162013-10-11 17:03:19 -0700480 'missing path for %s in %s' %
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800481 (project.name, self.manifestFile))
David James8d201162013-10-11 17:03:19 -0700482 if project.relpath in self._paths:
483 raise ManifestParseError(
484 'duplicate path %s in %s' %
485 (project.relpath, self.manifestFile))
486 self._paths[project.relpath] = project
487 projects.append(project)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800488 for subproject in project.subprojects:
489 recursively_add_projects(subproject)
490
Colin Cross23acdd32012-04-21 00:33:54 -0700491 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700492 if node.nodeName == 'project':
493 project = self._ParseProject(node)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800494 recursively_add_projects(project)
Doug Anderson37282b42011-03-04 11:54:18 -0800495 if node.nodeName == 'repo-hooks':
496 # Get the name of the project and the (space-separated) list of enabled.
497 repo_hooks_project = self._reqatt(node, 'in-project')
498 enabled_repo_hooks = self._reqatt(node, 'enabled-list').split()
499
500 # Only one project can be the hooks project
501 if self._repo_hooks_project is not None:
502 raise ManifestParseError(
503 'duplicate repo-hooks in %s' %
504 (self.manifestFile))
505
506 # Store a reference to the Project.
507 try:
David James8d201162013-10-11 17:03:19 -0700508 repo_hooks_projects = self._projects[repo_hooks_project]
Doug Anderson37282b42011-03-04 11:54:18 -0800509 except KeyError:
510 raise ManifestParseError(
511 'project %s not found for repo-hooks' %
512 (repo_hooks_project))
513
David James8d201162013-10-11 17:03:19 -0700514 if len(repo_hooks_projects) != 1:
515 raise ManifestParseError(
516 'internal error parsing repo-hooks in %s' %
517 (self.manifestFile))
518 self._repo_hooks_project = repo_hooks_projects[0]
519
Doug Anderson37282b42011-03-04 11:54:18 -0800520 # Store the enabled hooks in the Project object.
521 self._repo_hooks_project.enabled_repo_hooks = enabled_repo_hooks
Colin Cross23acdd32012-04-21 00:33:54 -0700522 if node.nodeName == 'remove-project':
523 name = self._reqatt(node, 'name')
David Jamesb8433df2014-01-30 10:11:17 -0800524
525 if name not in self._projects:
David Pursehousef9107482012-11-16 19:12:32 +0900526 raise ManifestParseError('remove-project element specifies non-existent '
527 'project: %s' % name)
Colin Cross23acdd32012-04-21 00:33:54 -0700528
David Jamesb8433df2014-01-30 10:11:17 -0800529 for p in self._projects[name]:
530 del self._paths[p.relpath]
531 del self._projects[name]
532
Colin Cross23acdd32012-04-21 00:33:54 -0700533 # If the manifest removes the hooks project, treat it as if it deleted
534 # the repo-hooks element too.
535 if self._repo_hooks_project and (self._repo_hooks_project.name == name):
536 self._repo_hooks_project = None
537
Doug Anderson37282b42011-03-04 11:54:18 -0800538
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800539 def _AddMetaProjectMirror(self, m):
540 name = None
541 m_url = m.GetRemote(m.remote.name).url
542 if m_url.endswith('/.git'):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530543 raise ManifestParseError('refusing to mirror %s' % m_url)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800544
545 if self._default and self._default.remote:
Conley Owensceea3682011-10-20 10:45:47 -0700546 url = self._default.remote.resolvedFetchUrl
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800547 if not url.endswith('/'):
548 url += '/'
549 if m_url.startswith(url):
550 remote = self._default.remote
551 name = m_url[len(url):]
552
553 if name is None:
554 s = m_url.rindex('/') + 1
Conley Owensdb728cd2011-09-26 16:34:01 -0700555 manifestUrl = self.manifestProject.config.GetString('remote.origin.url')
Shawn O. Pearcef35b2d92012-08-02 11:46:22 -0700556 remote = _XmlRemote('origin', fetch=m_url[:s], manifestUrl=manifestUrl)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800557 name = m_url[s:]
558
559 if name.endswith('.git'):
560 name = name[:-4]
561
562 if name not in self._projects:
563 m.PreSync()
564 gitdir = os.path.join(self.topdir, '%s.git' % name)
565 project = Project(manifest = self,
566 name = name,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -0700567 remote = remote.ToRemoteSpec(name),
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800568 gitdir = gitdir,
David James8d201162013-10-11 17:03:19 -0700569 objdir = gitdir,
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800570 worktree = None,
571 relpath = None,
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700572 revisionExpr = m.revisionExpr,
573 revisionId = None)
David James8d201162013-10-11 17:03:19 -0700574 self._projects[project.name] = [project]
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800575
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700576 def _ParseRemote(self, node):
577 """
578 reads a <remote> element from the manifest file
579 """
580 name = self._reqatt(node, 'name')
Yestin Sunb292b982012-07-02 07:32:50 -0700581 alias = node.getAttribute('alias')
582 if alias == '':
583 alias = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700584 fetch = self._reqatt(node, 'fetch')
585 review = node.getAttribute('review')
Shawn O. Pearceae6e0942008-11-06 10:25:35 -0800586 if review == '':
587 review = None
Conley Owensdb728cd2011-09-26 16:34:01 -0700588 manifestUrl = self.manifestProject.config.GetString('remote.origin.url')
Yestin Sunb292b982012-07-02 07:32:50 -0700589 return _XmlRemote(name, alias, fetch, manifestUrl, review)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700590
591 def _ParseDefault(self, node):
592 """
593 reads a <default> element from the manifest file
594 """
595 d = _Default()
596 d.remote = self._get_remote(node)
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700597 d.revisionExpr = node.getAttribute('revision')
598 if d.revisionExpr == '':
599 d.revisionExpr = None
Anatol Pomazau79770d22012-04-20 14:41:59 -0700600
Bryan Jacobsf609f912013-05-06 13:36:24 -0400601 d.destBranchExpr = node.getAttribute('dest-branch') or None
602
Shawn O. Pearce6392c872011-09-22 17:44:31 -0700603 sync_j = node.getAttribute('sync-j')
604 if sync_j == '' or sync_j is None:
605 d.sync_j = 1
606 else:
607 d.sync_j = int(sync_j)
Anatol Pomazau79770d22012-04-20 14:41:59 -0700608
609 sync_c = node.getAttribute('sync-c')
610 if not sync_c:
611 d.sync_c = False
612 else:
613 d.sync_c = sync_c.lower() in ("yes", "true", "1")
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800614
615 sync_s = node.getAttribute('sync-s')
616 if not sync_s:
617 d.sync_s = False
618 else:
619 d.sync_s = sync_s.lower() in ("yes", "true", "1")
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700620 return d
621
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700622 def _ParseNotice(self, node):
623 """
624 reads a <notice> element from the manifest file
625
626 The <notice> element is distinct from other tags in the XML in that the
627 data is conveyed between the start and end tag (it's not an empty-element
628 tag).
629
630 The white space (carriage returns, indentation) for the notice element is
631 relevant and is parsed in a way that is based on how python docstrings work.
632 In fact, the code is remarkably similar to here:
633 http://www.python.org/dev/peps/pep-0257/
634 """
635 # Get the data out of the node...
636 notice = node.childNodes[0].data
637
638 # Figure out minimum indentation, skipping the first line (the same line
639 # as the <notice> tag)...
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530640 minIndent = sys.maxsize
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700641 lines = notice.splitlines()
642 for line in lines[1:]:
643 lstrippedLine = line.lstrip()
644 if lstrippedLine:
645 indent = len(line) - len(lstrippedLine)
646 minIndent = min(indent, minIndent)
647
648 # Strip leading / trailing blank lines and also indentation.
649 cleanLines = [lines[0].strip()]
650 for line in lines[1:]:
651 cleanLines.append(line[minIndent:].rstrip())
652
653 # Clear completely blank lines from front and back...
654 while cleanLines and not cleanLines[0]:
655 del cleanLines[0]
656 while cleanLines and not cleanLines[-1]:
657 del cleanLines[-1]
658
659 return '\n'.join(cleanLines)
660
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800661 def _JoinName(self, parent_name, name):
662 return os.path.join(parent_name, name)
663
664 def _UnjoinName(self, parent_name, name):
665 return os.path.relpath(name, parent_name)
666
667 def _ParseProject(self, node, parent = None):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700668 """
669 reads a <project> element from the manifest file
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700670 """
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700671 name = self._reqatt(node, 'name')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800672 if parent:
673 name = self._JoinName(parent.name, name)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700674
675 remote = self._get_remote(node)
676 if remote is None:
677 remote = self._default.remote
678 if remote is None:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530679 raise ManifestParseError("no remote for project %s within %s" %
680 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700681
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700682 revisionExpr = node.getAttribute('revision')
683 if not revisionExpr:
684 revisionExpr = self._default.revisionExpr
685 if not revisionExpr:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530686 raise ManifestParseError("no revision for project %s within %s" %
687 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700688
689 path = node.getAttribute('path')
690 if not path:
691 path = name
692 if path.startswith('/'):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530693 raise ManifestParseError("project %s path cannot be absolute in %s" %
694 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700695
Mike Pontillod3153822012-02-28 11:53:24 -0800696 rebase = node.getAttribute('rebase')
697 if not rebase:
698 rebase = True
699 else:
700 rebase = rebase.lower() in ("yes", "true", "1")
701
Anatol Pomazau79770d22012-04-20 14:41:59 -0700702 sync_c = node.getAttribute('sync-c')
703 if not sync_c:
704 sync_c = False
705 else:
706 sync_c = sync_c.lower() in ("yes", "true", "1")
707
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800708 sync_s = node.getAttribute('sync-s')
709 if not sync_s:
710 sync_s = self._default.sync_s
711 else:
712 sync_s = sync_s.lower() in ("yes", "true", "1")
713
David Pursehouseede7f122012-11-27 22:25:30 +0900714 clone_depth = node.getAttribute('clone-depth')
715 if clone_depth:
716 try:
717 clone_depth = int(clone_depth)
718 if clone_depth <= 0:
719 raise ValueError()
720 except ValueError:
721 raise ManifestParseError('invalid clone-depth %s in %s' %
722 (clone_depth, self.manifestFile))
723
Bryan Jacobsf609f912013-05-06 13:36:24 -0400724 dest_branch = node.getAttribute('dest-branch') or self._default.destBranchExpr
725
Brian Harring14a66742012-09-28 20:21:57 -0700726 upstream = node.getAttribute('upstream')
727
Conley Owens971de8e2012-04-16 10:36:08 -0700728 groups = ''
729 if node.hasAttribute('groups'):
730 groups = node.getAttribute('groups')
David Pursehouse1d947b32012-10-25 12:23:11 +0900731 groups = [x for x in re.split(r'[,\s]+', groups) if x]
Brian Harring7da13142012-06-15 02:24:20 -0700732
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800733 if parent is None:
David James8d201162013-10-11 17:03:19 -0700734 relpath, worktree, gitdir, objdir = self.GetProjectPaths(name, path)
Shawn O. Pearcecd81dd62012-10-26 12:18:00 -0700735 else:
David James8d201162013-10-11 17:03:19 -0700736 relpath, worktree, gitdir, objdir = \
737 self.GetSubprojectPaths(parent, name, path)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800738
739 default_groups = ['all', 'name:%s' % name, 'path:%s' % relpath]
740 groups.extend(set(default_groups).difference(groups))
Shawn O. Pearcecd81dd62012-10-26 12:18:00 -0700741
Scott Fandb83b1b2013-02-28 09:34:14 +0800742 if self.IsMirror and node.hasAttribute('force-path'):
743 if node.getAttribute('force-path').lower() in ("yes", "true", "1"):
744 gitdir = os.path.join(self.topdir, '%s.git' % path)
745
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700746 project = Project(manifest = self,
747 name = name,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -0700748 remote = remote.ToRemoteSpec(name),
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700749 gitdir = gitdir,
David James8d201162013-10-11 17:03:19 -0700750 objdir = objdir,
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700751 worktree = worktree,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800752 relpath = relpath,
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700753 revisionExpr = revisionExpr,
Mike Pontillod3153822012-02-28 11:53:24 -0800754 revisionId = None,
Colin Cross5acde752012-03-28 20:15:45 -0700755 rebase = rebase,
Anatol Pomazau79770d22012-04-20 14:41:59 -0700756 groups = groups,
Brian Harring14a66742012-09-28 20:21:57 -0700757 sync_c = sync_c,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800758 sync_s = sync_s,
David Pursehouseede7f122012-11-27 22:25:30 +0900759 clone_depth = clone_depth,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800760 upstream = upstream,
Bryan Jacobsf609f912013-05-06 13:36:24 -0400761 parent = parent,
762 dest_branch = dest_branch)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700763
764 for n in node.childNodes:
Shawn O. Pearce242b5262009-05-19 13:00:29 -0700765 if n.nodeName == 'copyfile':
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700766 self._ParseCopyFile(project, n)
James W. Mills24c13082012-04-12 15:04:13 -0500767 if n.nodeName == 'annotation':
768 self._ParseAnnotation(project, n)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800769 if n.nodeName == 'project':
770 project.subprojects.append(self._ParseProject(n, parent = project))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700771
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700772 return project
773
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800774 def GetProjectPaths(self, name, path):
775 relpath = path
776 if self.IsMirror:
777 worktree = None
778 gitdir = os.path.join(self.topdir, '%s.git' % name)
David James8d201162013-10-11 17:03:19 -0700779 objdir = gitdir
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800780 else:
781 worktree = os.path.join(self.topdir, path).replace('\\', '/')
782 gitdir = os.path.join(self.repodir, 'projects', '%s.git' % path)
David James8d201162013-10-11 17:03:19 -0700783 objdir = os.path.join(self.repodir, 'project-objects', '%s.git' % name)
784 return relpath, worktree, gitdir, objdir
785
786 def GetProjectsWithName(self, name):
787 return self._projects.get(name, [])
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800788
789 def GetSubprojectName(self, parent, submodule_path):
790 return os.path.join(parent.name, submodule_path)
791
792 def _JoinRelpath(self, parent_relpath, relpath):
793 return os.path.join(parent_relpath, relpath)
794
795 def _UnjoinRelpath(self, parent_relpath, relpath):
796 return os.path.relpath(relpath, parent_relpath)
797
David James8d201162013-10-11 17:03:19 -0700798 def GetSubprojectPaths(self, parent, name, path):
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800799 relpath = self._JoinRelpath(parent.relpath, path)
800 gitdir = os.path.join(parent.gitdir, 'subprojects', '%s.git' % path)
David James8d201162013-10-11 17:03:19 -0700801 objdir = os.path.join(parent.gitdir, 'subproject-objects', '%s.git' % name)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800802 if self.IsMirror:
803 worktree = None
804 else:
805 worktree = os.path.join(parent.worktree, path).replace('\\', '/')
David James8d201162013-10-11 17:03:19 -0700806 return relpath, worktree, gitdir, objdir
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800807
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700808 def _ParseCopyFile(self, project, node):
809 src = self._reqatt(node, 'src')
810 dest = self._reqatt(node, 'dest')
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800811 if not self.IsMirror:
812 # src is project relative;
813 # dest is relative to the top of the tree
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800814 project.AddCopyFile(src, dest, os.path.join(self.topdir, dest))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700815
James W. Mills24c13082012-04-12 15:04:13 -0500816 def _ParseAnnotation(self, project, node):
817 name = self._reqatt(node, 'name')
818 value = self._reqatt(node, 'value')
819 try:
820 keep = self._reqatt(node, 'keep').lower()
821 except ManifestParseError:
822 keep = "true"
823 if keep != "true" and keep != "false":
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530824 raise ManifestParseError('optional "keep" attribute must be '
825 '"true" or "false"')
James W. Mills24c13082012-04-12 15:04:13 -0500826 project.AddAnnotation(name, value, keep)
827
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700828 def _get_remote(self, node):
829 name = node.getAttribute('remote')
830 if not name:
831 return None
832
833 v = self._remotes.get(name)
834 if not v:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530835 raise ManifestParseError("remote %s not defined in %s" %
836 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700837 return v
838
839 def _reqatt(self, node, attname):
840 """
841 reads a required attribute from the node.
842 """
843 v = node.getAttribute(attname)
844 if not v:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530845 raise ManifestParseError("no %s in <%s> within %s" %
846 (attname, node.nodeName, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700847 return v
Julien Camperguedd654222014-01-09 16:21:37 +0100848
849 def projectsDiff(self, manifest):
850 """return the projects differences between two manifests.
851
852 The diff will be from self to given manifest.
853
854 """
855 fromProjects = self.paths
856 toProjects = manifest.paths
857
858 fromKeys = fromProjects.keys()
859 fromKeys.sort()
860 toKeys = toProjects.keys()
861 toKeys.sort()
862
863 diff = {'added': [], 'removed': [], 'changed': [], 'unreachable': []}
864
865 for proj in fromKeys:
866 if not proj in toKeys:
867 diff['removed'].append(fromProjects[proj])
868 else:
869 fromProj = fromProjects[proj]
870 toProj = toProjects[proj]
871 try:
872 fromRevId = fromProj.GetCommitRevisionId()
873 toRevId = toProj.GetCommitRevisionId()
874 except ManifestInvalidRevisionError:
875 diff['unreachable'].append((fromProj, toProj))
876 else:
877 if fromRevId != toRevId:
878 diff['changed'].append((fromProj, toProj))
879 toKeys.remove(proj)
880
881 for proj in toKeys:
882 diff['added'].append(toProjects[proj])
883
884 return diff