blob: 3517c15151ee84c4f9fe978c4fd9b9db615ae418 [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,
Anthony King36ea2fb2014-05-06 11:54:01 +010066 review=None,
67 revision=None):
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070068 self.name = name
69 self.fetchUrl = fetch
Conley Owensdb728cd2011-09-26 16:34:01 -070070 self.manifestUrl = manifestUrl
Yestin Sunb292b982012-07-02 07:32:50 -070071 self.remoteAlias = alias
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070072 self.reviewUrl = review
Anthony King36ea2fb2014-05-06 11:54:01 +010073 self.revision = revision
Conley Owensceea3682011-10-20 10:45:47 -070074 self.resolvedFetchUrl = self._resolveFetchUrl()
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070075
David Pursehouse717ece92012-11-13 08:49:16 +090076 def __eq__(self, other):
77 return self.__dict__ == other.__dict__
78
79 def __ne__(self, other):
80 return self.__dict__ != other.__dict__
81
Conley Owensceea3682011-10-20 10:45:47 -070082 def _resolveFetchUrl(self):
83 url = self.fetchUrl.rstrip('/')
Conley Owensdb728cd2011-09-26 16:34:01 -070084 manifestUrl = self.manifestUrl.rstrip('/')
Conley Owens2d0f5082014-01-31 15:03:51 -080085 # urljoin will gets confused over quite a few things. The ones we care
86 # about here are:
87 # * no scheme in the base url, like <hostname:port>
88 # * persistent-https://
89 # We handle this by replacing these with obscure protocols
90 # and then replacing them with the original when we are done.
91 # gopher -> <none>
92 # wais -> persistent-https
Conley Owensdb728cd2011-09-26 16:34:01 -070093 if manifestUrl.find(':') != manifestUrl.find('/') - 1:
David Pursehousec1b86a22012-11-14 11:36:51 +090094 manifestUrl = 'gopher://' + manifestUrl
Conley Owens2d0f5082014-01-31 15:03:51 -080095 manifestUrl = re.sub(r'^persistent-https://', 'wais://', manifestUrl)
Chirayu Desai217ea7d2013-03-01 19:14:38 +053096 url = urllib.parse.urljoin(manifestUrl, url)
Shawn Pearcea9f11b32013-01-02 15:40:48 -080097 url = re.sub(r'^gopher://', '', url)
Conley Owens2d0f5082014-01-31 15:03:51 -080098 url = re.sub(r'^wais://', 'persistent-https://', url)
Shawn Pearcea9f11b32013-01-02 15:40:48 -080099 return url
Conley Owensceea3682011-10-20 10:45:47 -0700100
101 def ToRemoteSpec(self, projectName):
Conley Owens9d8f9142011-10-20 14:36:35 -0700102 url = self.resolvedFetchUrl.rstrip('/') + '/' + projectName
Yestin Sunb292b982012-07-02 07:32:50 -0700103 remoteName = self.name
Conley Owens1e7ab2a2013-10-08 17:26:57 -0700104 if self.remoteAlias:
David Pursehouse37128b62013-10-15 10:48:40 +0900105 remoteName = self.remoteAlias
Yestin Sunb292b982012-07-02 07:32:50 -0700106 return RemoteSpec(remoteName, url, self.reviewUrl)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700107
Shawn O. Pearcec8a300f2009-05-18 13:19:57 -0700108class XmlManifest(object):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700109 """manages the repo configuration file"""
110
111 def __init__(self, repodir):
112 self.repodir = os.path.abspath(repodir)
113 self.topdir = os.path.dirname(self.repodir)
114 self.manifestFile = os.path.join(self.repodir, MANIFEST_FILE_NAME)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700115 self.globalConfig = GitConfig.ForUser()
David Pursehouse4eb285c2013-02-14 16:28:44 +0900116 self.localManifestWarning = False
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700117
118 self.repoProject = MetaProject(self, 'repo',
119 gitdir = os.path.join(repodir, 'repo/.git'),
120 worktree = os.path.join(repodir, 'repo'))
121
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700122 self.manifestProject = MetaProject(self, 'manifests',
Shawn O. Pearcef5c25a62008-11-04 08:11:53 -0800123 gitdir = os.path.join(repodir, 'manifests.git'),
124 worktree = os.path.join(repodir, 'manifests'))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700125
126 self._Unload()
127
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700128 def Override(self, name):
129 """Use a different manifest, just for the current instantiation.
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700130 """
131 path = os.path.join(self.manifestProject.worktree, name)
132 if not os.path.isfile(path):
133 raise ManifestParseError('manifest %s not found' % name)
134
135 old = self.manifestFile
136 try:
137 self.manifestFile = path
138 self._Unload()
139 self._Load()
140 finally:
141 self.manifestFile = old
142
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700143 def Link(self, name):
144 """Update the repo metadata to use a different manifest.
145 """
146 self.Override(name)
147
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700148 try:
Sebastian Frias223bf962012-11-21 19:09:25 +0100149 if os.path.lexists(self.manifestFile):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700150 os.remove(self.manifestFile)
151 os.symlink('manifests/%s' % name, self.manifestFile)
Sebastian Frias223bf962012-11-21 19:09:25 +0100152 except OSError as e:
153 raise ManifestParseError('cannot link manifest %s: %s' % (name, str(e)))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700154
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800155 def _RemoteToXml(self, r, doc, root):
156 e = doc.createElement('remote')
157 root.appendChild(e)
158 e.setAttribute('name', r.name)
159 e.setAttribute('fetch', r.fetchUrl)
Conley Owens1e7ab2a2013-10-08 17:26:57 -0700160 if r.remoteAlias is not None:
161 e.setAttribute('alias', r.remoteAlias)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800162 if r.reviewUrl is not None:
163 e.setAttribute('review', r.reviewUrl)
Anthony King36ea2fb2014-05-06 11:54:01 +0100164 if r.revision is not None:
165 e.setAttribute('revision', r.revision)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800166
Brian Harring14a66742012-09-28 20:21:57 -0700167 def Save(self, fd, peg_rev=False, peg_rev_upstream=True):
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800168 """Write the current manifest out to the given file descriptor.
169 """
Colin Cross5acde752012-03-28 20:15:45 -0700170 mp = self.manifestProject
171
172 groups = mp.config.GetString('manifest.groups')
Matt Gumbel0c635bb2012-12-21 10:14:53 -0800173 if groups:
174 groups = [x for x in re.split(r'[,\s]+', groups) if x]
Colin Cross5acde752012-03-28 20:15:45 -0700175
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800176 doc = xml.dom.minidom.Document()
177 root = doc.createElement('manifest')
178 doc.appendChild(root)
179
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700180 # Save out the notice. There's a little bit of work here to give it the
181 # right whitespace, which assumes that the notice is automatically indented
182 # by 4 by minidom.
183 if self.notice:
184 notice_element = root.appendChild(doc.createElement('notice'))
185 notice_lines = self.notice.splitlines()
186 indented_notice = ('\n'.join(" "*4 + line for line in notice_lines))[4:]
187 notice_element.appendChild(doc.createTextNode(indented_notice))
188
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800189 d = self.default
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800190
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530191 for r in sorted(self.remotes):
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800192 self._RemoteToXml(self.remotes[r], doc, root)
193 if self.remotes:
194 root.appendChild(doc.createTextNode(''))
195
196 have_default = False
197 e = doc.createElement('default')
198 if d.remote:
199 have_default = True
200 e.setAttribute('remote', d.remote.name)
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700201 if d.revisionExpr:
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800202 have_default = True
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700203 e.setAttribute('revision', d.revisionExpr)
Shawn O. Pearce6392c872011-09-22 17:44:31 -0700204 if d.sync_j > 1:
205 have_default = True
206 e.setAttribute('sync-j', '%d' % d.sync_j)
Anatol Pomazau79770d22012-04-20 14:41:59 -0700207 if d.sync_c:
208 have_default = True
209 e.setAttribute('sync-c', 'true')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800210 if d.sync_s:
211 have_default = True
212 e.setAttribute('sync-s', 'true')
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800213 if have_default:
214 root.appendChild(e)
215 root.appendChild(doc.createTextNode(''))
216
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700217 if self._manifest_server:
218 e = doc.createElement('manifest-server')
219 e.setAttribute('url', self._manifest_server)
220 root.appendChild(e)
221 root.appendChild(doc.createTextNode(''))
222
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800223 def output_projects(parent, parent_node, projects):
David James8d201162013-10-11 17:03:19 -0700224 for project_name in projects:
225 for project in self._projects[project_name]:
226 output_project(parent, parent_node, project)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800227
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800228 def output_project(parent, parent_node, p):
Colin Cross5acde752012-03-28 20:15:45 -0700229 if not p.MatchesGroups(groups):
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800230 return
231
232 name = p.name
233 relpath = p.relpath
234 if parent:
235 name = self._UnjoinName(parent.name, name)
236 relpath = self._UnjoinRelpath(parent.relpath, relpath)
Colin Cross5acde752012-03-28 20:15:45 -0700237
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800238 e = doc.createElement('project')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800239 parent_node.appendChild(e)
240 e.setAttribute('name', name)
241 if relpath != name:
242 e.setAttribute('path', relpath)
Conley Owensa17d7af2013-10-16 14:38:09 -0700243 remoteName = None
244 if d.remote:
Conley Owensce201a52013-10-16 14:42:42 -0700245 remoteName = d.remote.remoteAlias or d.remote.name
Conley Owens1e7ab2a2013-10-08 17:26:57 -0700246 if not d.remote or p.remote.name != remoteName:
Anthony King36ea2fb2014-05-06 11:54:01 +0100247 remoteName = p.remote.name
248 e.setAttribute('remote', remoteName)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800249 if peg_rev:
250 if self.IsMirror:
Brian Harring14a66742012-09-28 20:21:57 -0700251 value = p.bare_git.rev_parse(p.revisionExpr + '^0')
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800252 else:
Brian Harring14a66742012-09-28 20:21:57 -0700253 value = p.work_git.rev_parse(HEAD + '^0')
254 e.setAttribute('revision', value)
255 if peg_rev_upstream and value != p.revisionExpr:
256 # Only save the origin if the origin is not a sha1, and the default
257 # isn't our value, and the if the default doesn't already have that
258 # covered.
259 e.setAttribute('upstream', p.revisionExpr)
Anthony King36ea2fb2014-05-06 11:54:01 +0100260 else:
261 revision = self.remotes[remoteName].revision or d.revisionExpr
262 if not revision or revision != p.revisionExpr:
263 e.setAttribute('revision', p.revisionExpr)
Mani Chandel7a91d512014-07-24 16:27:08 +0530264 if p.upstream and p.upstream != p.revisionExpr:
265 e.setAttribute('upstream', p.upstream)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800266
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800267 for c in p.copyfiles:
268 ce = doc.createElement('copyfile')
269 ce.setAttribute('src', c.src)
270 ce.setAttribute('dest', c.dest)
271 e.appendChild(ce)
272
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500273 for l in p.linkfiles:
274 le = doc.createElement('linkfile')
275 le.setAttribute('src', l.src)
276 le.setAttribute('dest', l.dest)
277 e.appendChild(le)
278
Conley Owensbb1b5f52012-08-13 13:11:18 -0700279 default_groups = ['all', 'name:%s' % p.name, 'path:%s' % p.relpath]
Dmitry Fink17f85ea2012-08-06 14:52:29 -0700280 egroups = [g for g in p.groups if g not in default_groups]
Conley Owens971de8e2012-04-16 10:36:08 -0700281 if egroups:
282 e.setAttribute('groups', ','.join(egroups))
Colin Cross5acde752012-03-28 20:15:45 -0700283
James W. Mills24c13082012-04-12 15:04:13 -0500284 for a in p.annotations:
285 if a.keep == "true":
286 ae = doc.createElement('annotation')
287 ae.setAttribute('name', a.name)
288 ae.setAttribute('value', a.value)
289 e.appendChild(ae)
290
Anatol Pomazau79770d22012-04-20 14:41:59 -0700291 if p.sync_c:
292 e.setAttribute('sync-c', 'true')
293
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800294 if p.sync_s:
295 e.setAttribute('sync-s', 'true')
296
297 if p.subprojects:
David James8d201162013-10-11 17:03:19 -0700298 subprojects = set(subp.name for subp in p.subprojects)
299 output_projects(p, e, list(sorted(subprojects)))
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800300
David James8d201162013-10-11 17:03:19 -0700301 projects = set(p.name for p in self._paths.values() if not p.parent)
302 output_projects(None, root, list(sorted(projects)))
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800303
Doug Anderson37282b42011-03-04 11:54:18 -0800304 if self._repo_hooks_project:
305 root.appendChild(doc.createTextNode(''))
306 e = doc.createElement('repo-hooks')
307 e.setAttribute('in-project', self._repo_hooks_project.name)
308 e.setAttribute('enabled-list',
309 ' '.join(self._repo_hooks_project.enabled_repo_hooks))
310 root.appendChild(e)
311
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800312 doc.writexml(fd, '', ' ', '\n', 'UTF-8')
313
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700314 @property
David James8d201162013-10-11 17:03:19 -0700315 def paths(self):
316 self._Load()
317 return self._paths
318
319 @property
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700320 def projects(self):
321 self._Load()
Anthony Kingd58bfe52014-05-05 23:30:49 +0100322 return list(self._paths.values())
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700323
324 @property
325 def remotes(self):
326 self._Load()
327 return self._remotes
328
329 @property
330 def default(self):
331 self._Load()
332 return self._default
333
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800334 @property
Doug Anderson37282b42011-03-04 11:54:18 -0800335 def repo_hooks_project(self):
336 self._Load()
337 return self._repo_hooks_project
338
339 @property
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700340 def notice(self):
341 self._Load()
342 return self._notice
343
344 @property
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700345 def manifest_server(self):
346 self._Load()
Shawn O. Pearce34fb20f2011-11-30 13:41:02 -0800347 return self._manifest_server
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700348
349 @property
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800350 def IsMirror(self):
351 return self.manifestProject.config.GetBoolean('repo.mirror')
352
Julien Campergue335f5ef2013-10-16 11:02:35 +0200353 @property
354 def IsArchive(self):
355 return self.manifestProject.config.GetBoolean('repo.archive')
356
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700357 def _Unload(self):
358 self._loaded = False
359 self._projects = {}
David James8d201162013-10-11 17:03:19 -0700360 self._paths = {}
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700361 self._remotes = {}
362 self._default = None
Doug Anderson37282b42011-03-04 11:54:18 -0800363 self._repo_hooks_project = None
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700364 self._notice = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700365 self.branch = None
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700366 self._manifest_server = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700367
368 def _Load(self):
369 if not self._loaded:
Shawn O. Pearce2450a292008-11-04 08:22:07 -0800370 m = self.manifestProject
371 b = m.GetBranch(m.CurrentBranch).merge
Shawn O. Pearce21c5c342009-06-25 16:47:30 -0700372 if b is not None and b.startswith(R_HEADS):
Shawn O. Pearce2450a292008-11-04 08:22:07 -0800373 b = b[len(R_HEADS):]
374 self.branch = b
375
Colin Cross23acdd32012-04-21 00:33:54 -0700376 nodes = []
Brian Harring475a47d2012-06-07 20:05:35 -0700377 nodes.append(self._ParseManifestXml(self.manifestFile,
378 self.manifestProject.worktree))
Shawn O. Pearce5cc66792008-10-23 16:19:27 -0700379
380 local = os.path.join(self.repodir, LOCAL_MANIFEST_NAME)
381 if os.path.exists(local):
David Pursehouse4eb285c2013-02-14 16:28:44 +0900382 if not self.localManifestWarning:
383 self.localManifestWarning = True
384 print('warning: %s is deprecated; put local manifests in `%s` instead'
385 % (LOCAL_MANIFEST_NAME, os.path.join(self.repodir, LOCAL_MANIFESTS_DIR_NAME)),
386 file=sys.stderr)
Brian Harring475a47d2012-06-07 20:05:35 -0700387 nodes.append(self._ParseManifestXml(local, self.repodir))
Colin Cross23acdd32012-04-21 00:33:54 -0700388
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900389 local_dir = os.path.abspath(os.path.join(self.repodir, LOCAL_MANIFESTS_DIR_NAME))
390 try:
David Pursehouse52f1e5d2012-11-14 04:53:24 +0900391 for local_file in sorted(os.listdir(local_dir)):
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900392 if local_file.endswith('.xml'):
David Pursehouse5f434ed2012-11-22 13:48:10 +0900393 local = os.path.join(local_dir, local_file)
394 nodes.append(self._ParseManifestXml(local, self.repodir))
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900395 except OSError:
396 pass
397
Joe Onorato26e24752013-01-11 12:35:53 -0800398 try:
399 self._ParseManifest(nodes)
400 except ManifestParseError as e:
401 # There was a problem parsing, unload ourselves in case they catch
402 # this error and try again later, we will show the correct error
403 self._Unload()
404 raise e
Shawn O. Pearce5cc66792008-10-23 16:19:27 -0700405
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800406 if self.IsMirror:
407 self._AddMetaProjectMirror(self.repoProject)
408 self._AddMetaProjectMirror(self.manifestProject)
409
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700410 self._loaded = True
411
Brian Harring475a47d2012-06-07 20:05:35 -0700412 def _ParseManifestXml(self, path, include_root):
David Pursehousef7fc8a92012-11-13 04:00:28 +0900413 try:
414 root = xml.dom.minidom.parse(path)
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900415 except (OSError, xml.parsers.expat.ExpatError) as e:
David Pursehousef7fc8a92012-11-13 04:00:28 +0900416 raise ManifestParseError("error parsing manifest %s: %s" % (path, e))
417
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700418 if not root or not root.childNodes:
Brian Harring26448742011-04-28 05:04:41 -0700419 raise ManifestParseError("no root node in %s" % (path,))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700420
Jooncheol Park34acdd22012-08-27 02:25:59 +0900421 for manifest in root.childNodes:
422 if manifest.nodeName == 'manifest':
423 break
424 else:
Brian Harring26448742011-04-28 05:04:41 -0700425 raise ManifestParseError("no <manifest> in %s" % (path,))
426
Colin Cross23acdd32012-04-21 00:33:54 -0700427 nodes = []
David Pursehouse4f7bdea2012-10-22 12:50:15 +0900428 for node in manifest.childNodes: # pylint:disable=W0631
David Pursehouse5c6eeac2012-10-11 16:44:48 +0900429 # We only get here if manifest is initialised
David Pursehousec1b86a22012-11-14 11:36:51 +0900430 if node.nodeName == 'include':
431 name = self._reqatt(node, 'name')
432 fp = os.path.join(include_root, name)
433 if not os.path.isfile(fp):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530434 raise ManifestParseError("include %s doesn't exist or isn't a file"
435 % (name,))
David Pursehousec1b86a22012-11-14 11:36:51 +0900436 try:
437 nodes.extend(self._ParseManifestXml(fp, include_root))
438 # should isolate this to the exact exception, but that's
439 # tricky. actual parsing implementation may vary.
440 except (KeyboardInterrupt, RuntimeError, SystemExit):
441 raise
442 except Exception as e:
443 raise ManifestParseError(
444 "failed parsing included manifest %s: %s", (name, e))
445 else:
446 nodes.append(node)
Colin Cross23acdd32012-04-21 00:33:54 -0700447 return nodes
Brian Harring26448742011-04-28 05:04:41 -0700448
Colin Cross23acdd32012-04-21 00:33:54 -0700449 def _ParseManifest(self, node_list):
450 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700451 if node.nodeName == 'remote':
452 remote = self._ParseRemote(node)
David Pursehouse717ece92012-11-13 08:49:16 +0900453 if remote:
454 if remote.name in self._remotes:
455 if remote != self._remotes[remote.name]:
456 raise ManifestParseError(
457 'remote %s already exists with different attributes' %
458 (remote.name))
459 else:
460 self._remotes[remote.name] = remote
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700461
Colin Cross23acdd32012-04-21 00:33:54 -0700462 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700463 if node.nodeName == 'default':
Julien Campergue74879922013-10-09 14:38:46 +0200464 new_default = self._ParseDefault(node)
465 if self._default is None:
466 self._default = new_default
467 elif new_default != self._default:
David Pursehouse37128b62013-10-15 10:48:40 +0900468 raise ManifestParseError('duplicate default in %s' %
469 (self.manifestFile))
Julien Campergue74879922013-10-09 14:38:46 +0200470
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700471 if self._default is None:
472 self._default = _Default()
473
Colin Cross23acdd32012-04-21 00:33:54 -0700474 for node in itertools.chain(*node_list):
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700475 if node.nodeName == 'notice':
476 if self._notice is not None:
Doug Anderson37282b42011-03-04 11:54:18 -0800477 raise ManifestParseError(
478 'duplicate notice in %s' %
479 (self.manifestFile))
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700480 self._notice = self._ParseNotice(node)
481
Colin Cross23acdd32012-04-21 00:33:54 -0700482 for node in itertools.chain(*node_list):
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700483 if node.nodeName == 'manifest-server':
484 url = self._reqatt(node, 'url')
485 if self._manifest_server is not None:
David Pursehousec1b86a22012-11-14 11:36:51 +0900486 raise ManifestParseError(
487 'duplicate manifest-server in %s' %
488 (self.manifestFile))
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700489 self._manifest_server = url
490
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800491 def recursively_add_projects(project):
David James8d201162013-10-11 17:03:19 -0700492 projects = self._projects.setdefault(project.name, [])
493 if project.relpath is None:
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800494 raise ManifestParseError(
David James8d201162013-10-11 17:03:19 -0700495 'missing path for %s in %s' %
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800496 (project.name, self.manifestFile))
David James8d201162013-10-11 17:03:19 -0700497 if project.relpath in self._paths:
498 raise ManifestParseError(
499 'duplicate path %s in %s' %
500 (project.relpath, self.manifestFile))
501 self._paths[project.relpath] = project
502 projects.append(project)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800503 for subproject in project.subprojects:
504 recursively_add_projects(subproject)
505
Colin Cross23acdd32012-04-21 00:33:54 -0700506 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700507 if node.nodeName == 'project':
508 project = self._ParseProject(node)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800509 recursively_add_projects(project)
Doug Anderson37282b42011-03-04 11:54:18 -0800510 if node.nodeName == 'repo-hooks':
511 # Get the name of the project and the (space-separated) list of enabled.
512 repo_hooks_project = self._reqatt(node, 'in-project')
513 enabled_repo_hooks = self._reqatt(node, 'enabled-list').split()
514
515 # Only one project can be the hooks project
516 if self._repo_hooks_project is not None:
517 raise ManifestParseError(
518 'duplicate repo-hooks in %s' %
519 (self.manifestFile))
520
521 # Store a reference to the Project.
522 try:
David James8d201162013-10-11 17:03:19 -0700523 repo_hooks_projects = self._projects[repo_hooks_project]
Doug Anderson37282b42011-03-04 11:54:18 -0800524 except KeyError:
525 raise ManifestParseError(
526 'project %s not found for repo-hooks' %
527 (repo_hooks_project))
528
David James8d201162013-10-11 17:03:19 -0700529 if len(repo_hooks_projects) != 1:
530 raise ManifestParseError(
531 'internal error parsing repo-hooks in %s' %
532 (self.manifestFile))
533 self._repo_hooks_project = repo_hooks_projects[0]
534
Doug Anderson37282b42011-03-04 11:54:18 -0800535 # Store the enabled hooks in the Project object.
536 self._repo_hooks_project.enabled_repo_hooks = enabled_repo_hooks
Colin Cross23acdd32012-04-21 00:33:54 -0700537 if node.nodeName == 'remove-project':
538 name = self._reqatt(node, 'name')
David Jamesb8433df2014-01-30 10:11:17 -0800539
540 if name not in self._projects:
David Pursehousef9107482012-11-16 19:12:32 +0900541 raise ManifestParseError('remove-project element specifies non-existent '
542 'project: %s' % name)
Colin Cross23acdd32012-04-21 00:33:54 -0700543
David Jamesb8433df2014-01-30 10:11:17 -0800544 for p in self._projects[name]:
545 del self._paths[p.relpath]
546 del self._projects[name]
547
Colin Cross23acdd32012-04-21 00:33:54 -0700548 # If the manifest removes the hooks project, treat it as if it deleted
549 # the repo-hooks element too.
550 if self._repo_hooks_project and (self._repo_hooks_project.name == name):
551 self._repo_hooks_project = None
552
Doug Anderson37282b42011-03-04 11:54:18 -0800553
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800554 def _AddMetaProjectMirror(self, m):
555 name = None
556 m_url = m.GetRemote(m.remote.name).url
557 if m_url.endswith('/.git'):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530558 raise ManifestParseError('refusing to mirror %s' % m_url)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800559
560 if self._default and self._default.remote:
Conley Owensceea3682011-10-20 10:45:47 -0700561 url = self._default.remote.resolvedFetchUrl
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800562 if not url.endswith('/'):
563 url += '/'
564 if m_url.startswith(url):
565 remote = self._default.remote
566 name = m_url[len(url):]
567
568 if name is None:
569 s = m_url.rindex('/') + 1
Conley Owensdb728cd2011-09-26 16:34:01 -0700570 manifestUrl = self.manifestProject.config.GetString('remote.origin.url')
Shawn O. Pearcef35b2d92012-08-02 11:46:22 -0700571 remote = _XmlRemote('origin', fetch=m_url[:s], manifestUrl=manifestUrl)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800572 name = m_url[s:]
573
574 if name.endswith('.git'):
575 name = name[:-4]
576
577 if name not in self._projects:
578 m.PreSync()
579 gitdir = os.path.join(self.topdir, '%s.git' % name)
580 project = Project(manifest = self,
581 name = name,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -0700582 remote = remote.ToRemoteSpec(name),
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800583 gitdir = gitdir,
David James8d201162013-10-11 17:03:19 -0700584 objdir = gitdir,
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800585 worktree = None,
Kwanhong Leeccd218c2014-02-17 13:07:32 +0900586 relpath = name or None,
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700587 revisionExpr = m.revisionExpr,
588 revisionId = None)
David James8d201162013-10-11 17:03:19 -0700589 self._projects[project.name] = [project]
Kwanhong Leeccd218c2014-02-17 13:07:32 +0900590 self._paths[project.relpath] = project
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800591
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700592 def _ParseRemote(self, node):
593 """
594 reads a <remote> element from the manifest file
595 """
596 name = self._reqatt(node, 'name')
Yestin Sunb292b982012-07-02 07:32:50 -0700597 alias = node.getAttribute('alias')
598 if alias == '':
599 alias = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700600 fetch = self._reqatt(node, 'fetch')
601 review = node.getAttribute('review')
Shawn O. Pearceae6e0942008-11-06 10:25:35 -0800602 if review == '':
603 review = None
Anthony King36ea2fb2014-05-06 11:54:01 +0100604 revision = node.getAttribute('revision')
605 if revision == '':
606 revision = None
Conley Owensdb728cd2011-09-26 16:34:01 -0700607 manifestUrl = self.manifestProject.config.GetString('remote.origin.url')
Anthony King36ea2fb2014-05-06 11:54:01 +0100608 return _XmlRemote(name, alias, fetch, manifestUrl, review, revision)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700609
610 def _ParseDefault(self, node):
611 """
612 reads a <default> element from the manifest file
613 """
614 d = _Default()
615 d.remote = self._get_remote(node)
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700616 d.revisionExpr = node.getAttribute('revision')
617 if d.revisionExpr == '':
618 d.revisionExpr = None
Anatol Pomazau79770d22012-04-20 14:41:59 -0700619
Bryan Jacobsf609f912013-05-06 13:36:24 -0400620 d.destBranchExpr = node.getAttribute('dest-branch') or None
621
Shawn O. Pearce6392c872011-09-22 17:44:31 -0700622 sync_j = node.getAttribute('sync-j')
623 if sync_j == '' or sync_j is None:
624 d.sync_j = 1
625 else:
626 d.sync_j = int(sync_j)
Anatol Pomazau79770d22012-04-20 14:41:59 -0700627
628 sync_c = node.getAttribute('sync-c')
629 if not sync_c:
630 d.sync_c = False
631 else:
632 d.sync_c = sync_c.lower() in ("yes", "true", "1")
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800633
634 sync_s = node.getAttribute('sync-s')
635 if not sync_s:
636 d.sync_s = False
637 else:
638 d.sync_s = sync_s.lower() in ("yes", "true", "1")
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700639 return d
640
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700641 def _ParseNotice(self, node):
642 """
643 reads a <notice> element from the manifest file
644
645 The <notice> element is distinct from other tags in the XML in that the
646 data is conveyed between the start and end tag (it's not an empty-element
647 tag).
648
649 The white space (carriage returns, indentation) for the notice element is
650 relevant and is parsed in a way that is based on how python docstrings work.
651 In fact, the code is remarkably similar to here:
652 http://www.python.org/dev/peps/pep-0257/
653 """
654 # Get the data out of the node...
655 notice = node.childNodes[0].data
656
657 # Figure out minimum indentation, skipping the first line (the same line
658 # as the <notice> tag)...
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530659 minIndent = sys.maxsize
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700660 lines = notice.splitlines()
661 for line in lines[1:]:
662 lstrippedLine = line.lstrip()
663 if lstrippedLine:
664 indent = len(line) - len(lstrippedLine)
665 minIndent = min(indent, minIndent)
666
667 # Strip leading / trailing blank lines and also indentation.
668 cleanLines = [lines[0].strip()]
669 for line in lines[1:]:
670 cleanLines.append(line[minIndent:].rstrip())
671
672 # Clear completely blank lines from front and back...
673 while cleanLines and not cleanLines[0]:
674 del cleanLines[0]
675 while cleanLines and not cleanLines[-1]:
676 del cleanLines[-1]
677
678 return '\n'.join(cleanLines)
679
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800680 def _JoinName(self, parent_name, name):
681 return os.path.join(parent_name, name)
682
683 def _UnjoinName(self, parent_name, name):
684 return os.path.relpath(name, parent_name)
685
686 def _ParseProject(self, node, parent = None):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700687 """
688 reads a <project> element from the manifest file
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700689 """
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700690 name = self._reqatt(node, 'name')
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800691 if parent:
692 name = self._JoinName(parent.name, name)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700693
694 remote = self._get_remote(node)
695 if remote is None:
696 remote = self._default.remote
697 if remote is None:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530698 raise ManifestParseError("no remote for project %s within %s" %
699 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700700
Anthony King36ea2fb2014-05-06 11:54:01 +0100701 revisionExpr = node.getAttribute('revision') or remote.revision
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700702 if not revisionExpr:
703 revisionExpr = self._default.revisionExpr
704 if not revisionExpr:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530705 raise ManifestParseError("no revision for project %s within %s" %
706 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700707
708 path = node.getAttribute('path')
709 if not path:
710 path = name
711 if path.startswith('/'):
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530712 raise ManifestParseError("project %s path cannot be absolute in %s" %
713 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700714
Mike Pontillod3153822012-02-28 11:53:24 -0800715 rebase = node.getAttribute('rebase')
716 if not rebase:
717 rebase = True
718 else:
719 rebase = rebase.lower() in ("yes", "true", "1")
720
Anatol Pomazau79770d22012-04-20 14:41:59 -0700721 sync_c = node.getAttribute('sync-c')
722 if not sync_c:
723 sync_c = False
724 else:
725 sync_c = sync_c.lower() in ("yes", "true", "1")
726
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800727 sync_s = node.getAttribute('sync-s')
728 if not sync_s:
729 sync_s = self._default.sync_s
730 else:
731 sync_s = sync_s.lower() in ("yes", "true", "1")
732
David Pursehouseede7f122012-11-27 22:25:30 +0900733 clone_depth = node.getAttribute('clone-depth')
734 if clone_depth:
735 try:
736 clone_depth = int(clone_depth)
737 if clone_depth <= 0:
738 raise ValueError()
739 except ValueError:
740 raise ManifestParseError('invalid clone-depth %s in %s' %
741 (clone_depth, self.manifestFile))
742
Bryan Jacobsf609f912013-05-06 13:36:24 -0400743 dest_branch = node.getAttribute('dest-branch') or self._default.destBranchExpr
744
Brian Harring14a66742012-09-28 20:21:57 -0700745 upstream = node.getAttribute('upstream')
746
Conley Owens971de8e2012-04-16 10:36:08 -0700747 groups = ''
748 if node.hasAttribute('groups'):
749 groups = node.getAttribute('groups')
David Pursehouse1d947b32012-10-25 12:23:11 +0900750 groups = [x for x in re.split(r'[,\s]+', groups) if x]
Brian Harring7da13142012-06-15 02:24:20 -0700751
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800752 if parent is None:
David James8d201162013-10-11 17:03:19 -0700753 relpath, worktree, gitdir, objdir = self.GetProjectPaths(name, path)
Shawn O. Pearcecd81dd62012-10-26 12:18:00 -0700754 else:
David James8d201162013-10-11 17:03:19 -0700755 relpath, worktree, gitdir, objdir = \
756 self.GetSubprojectPaths(parent, name, path)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800757
758 default_groups = ['all', 'name:%s' % name, 'path:%s' % relpath]
759 groups.extend(set(default_groups).difference(groups))
Shawn O. Pearcecd81dd62012-10-26 12:18:00 -0700760
Scott Fandb83b1b2013-02-28 09:34:14 +0800761 if self.IsMirror and node.hasAttribute('force-path'):
762 if node.getAttribute('force-path').lower() in ("yes", "true", "1"):
763 gitdir = os.path.join(self.topdir, '%s.git' % path)
764
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700765 project = Project(manifest = self,
766 name = name,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -0700767 remote = remote.ToRemoteSpec(name),
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700768 gitdir = gitdir,
David James8d201162013-10-11 17:03:19 -0700769 objdir = objdir,
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700770 worktree = worktree,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800771 relpath = relpath,
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700772 revisionExpr = revisionExpr,
Mike Pontillod3153822012-02-28 11:53:24 -0800773 revisionId = None,
Colin Cross5acde752012-03-28 20:15:45 -0700774 rebase = rebase,
Anatol Pomazau79770d22012-04-20 14:41:59 -0700775 groups = groups,
Brian Harring14a66742012-09-28 20:21:57 -0700776 sync_c = sync_c,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800777 sync_s = sync_s,
David Pursehouseede7f122012-11-27 22:25:30 +0900778 clone_depth = clone_depth,
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800779 upstream = upstream,
Bryan Jacobsf609f912013-05-06 13:36:24 -0400780 parent = parent,
781 dest_branch = dest_branch)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700782
783 for n in node.childNodes:
Shawn O. Pearce242b5262009-05-19 13:00:29 -0700784 if n.nodeName == 'copyfile':
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700785 self._ParseCopyFile(project, n)
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500786 if n.nodeName == 'linkfile':
787 self._ParseLinkFile(project, n)
James W. Mills24c13082012-04-12 15:04:13 -0500788 if n.nodeName == 'annotation':
789 self._ParseAnnotation(project, n)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800790 if n.nodeName == 'project':
791 project.subprojects.append(self._ParseProject(n, parent = project))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700792
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700793 return project
794
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800795 def GetProjectPaths(self, name, path):
796 relpath = path
797 if self.IsMirror:
798 worktree = None
799 gitdir = os.path.join(self.topdir, '%s.git' % name)
David James8d201162013-10-11 17:03:19 -0700800 objdir = gitdir
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800801 else:
802 worktree = os.path.join(self.topdir, path).replace('\\', '/')
803 gitdir = os.path.join(self.repodir, 'projects', '%s.git' % path)
David James8d201162013-10-11 17:03:19 -0700804 objdir = os.path.join(self.repodir, 'project-objects', '%s.git' % name)
805 return relpath, worktree, gitdir, objdir
806
807 def GetProjectsWithName(self, name):
808 return self._projects.get(name, [])
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800809
810 def GetSubprojectName(self, parent, submodule_path):
811 return os.path.join(parent.name, submodule_path)
812
813 def _JoinRelpath(self, parent_relpath, relpath):
814 return os.path.join(parent_relpath, relpath)
815
816 def _UnjoinRelpath(self, parent_relpath, relpath):
817 return os.path.relpath(relpath, parent_relpath)
818
David James8d201162013-10-11 17:03:19 -0700819 def GetSubprojectPaths(self, parent, name, path):
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800820 relpath = self._JoinRelpath(parent.relpath, path)
821 gitdir = os.path.join(parent.gitdir, 'subprojects', '%s.git' % path)
David James8d201162013-10-11 17:03:19 -0700822 objdir = os.path.join(parent.gitdir, 'subproject-objects', '%s.git' % name)
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800823 if self.IsMirror:
824 worktree = None
825 else:
826 worktree = os.path.join(parent.worktree, path).replace('\\', '/')
David James8d201162013-10-11 17:03:19 -0700827 return relpath, worktree, gitdir, objdir
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800828
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700829 def _ParseCopyFile(self, project, node):
830 src = self._reqatt(node, 'src')
831 dest = self._reqatt(node, 'dest')
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800832 if not self.IsMirror:
833 # src is project relative;
834 # dest is relative to the top of the tree
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800835 project.AddCopyFile(src, dest, os.path.join(self.topdir, dest))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700836
Jeff Hamiltone0df2322014-04-21 17:10:59 -0500837 def _ParseLinkFile(self, project, node):
838 src = self._reqatt(node, 'src')
839 dest = self._reqatt(node, 'dest')
840 if not self.IsMirror:
841 # src is project relative;
842 # dest is relative to the top of the tree
843 project.AddLinkFile(src, dest, os.path.join(self.topdir, dest))
844
James W. Mills24c13082012-04-12 15:04:13 -0500845 def _ParseAnnotation(self, project, node):
846 name = self._reqatt(node, 'name')
847 value = self._reqatt(node, 'value')
848 try:
849 keep = self._reqatt(node, 'keep').lower()
850 except ManifestParseError:
851 keep = "true"
852 if keep != "true" and keep != "false":
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530853 raise ManifestParseError('optional "keep" attribute must be '
854 '"true" or "false"')
James W. Mills24c13082012-04-12 15:04:13 -0500855 project.AddAnnotation(name, value, keep)
856
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700857 def _get_remote(self, node):
858 name = node.getAttribute('remote')
859 if not name:
860 return None
861
862 v = self._remotes.get(name)
863 if not v:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530864 raise ManifestParseError("remote %s not defined in %s" %
865 (name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700866 return v
867
868 def _reqatt(self, node, attname):
869 """
870 reads a required attribute from the node.
871 """
872 v = node.getAttribute(attname)
873 if not v:
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530874 raise ManifestParseError("no %s in <%s> within %s" %
875 (attname, node.nodeName, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700876 return v
Julien Camperguedd654222014-01-09 16:21:37 +0100877
878 def projectsDiff(self, manifest):
879 """return the projects differences between two manifests.
880
881 The diff will be from self to given manifest.
882
883 """
884 fromProjects = self.paths
885 toProjects = manifest.paths
886
Anthony King7446c592014-05-06 09:19:39 +0100887 fromKeys = sorted(fromProjects.keys())
888 toKeys = sorted(toProjects.keys())
Julien Camperguedd654222014-01-09 16:21:37 +0100889
890 diff = {'added': [], 'removed': [], 'changed': [], 'unreachable': []}
891
892 for proj in fromKeys:
893 if not proj in toKeys:
894 diff['removed'].append(fromProjects[proj])
895 else:
896 fromProj = fromProjects[proj]
897 toProj = toProjects[proj]
898 try:
899 fromRevId = fromProj.GetCommitRevisionId()
900 toRevId = toProj.GetCommitRevisionId()
901 except ManifestInvalidRevisionError:
902 diff['unreachable'].append((fromProj, toProj))
903 else:
904 if fromRevId != toRevId:
905 diff['changed'].append((fromProj, toProj))
906 toKeys.remove(proj)
907
908 for proj in toKeys:
909 diff['added'].append(toProjects[proj])
910
911 return diff