blob: f4f6a755c2fced0e25a4a7a22259847b1707d7dc [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
Colin Cross23acdd32012-04-21 00:33:54 -070016import itertools
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070017import os
Conley Owensdb728cd2011-09-26 16:34:01 -070018import re
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070019import sys
Conley Owensdb728cd2011-09-26 16:34:01 -070020import urlparse
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070021import xml.dom.minidom
22
David Pursehousee15c65a2012-08-22 10:46:11 +090023from git_config import GitConfig
David Pursehousee00aa6b2012-09-11 14:33:51 +090024from git_refs import R_HEADS, HEAD
25from project import RemoteSpec, Project, MetaProject
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070026from error import ManifestParseError
27
28MANIFEST_FILE_NAME = 'manifest.xml'
Shawn O. Pearce5cc66792008-10-23 16:19:27 -070029LOCAL_MANIFEST_NAME = 'local_manifest.xml'
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070030
Conley Owensdb728cd2011-09-26 16:34:01 -070031urlparse.uses_relative.extend(['ssh', 'git'])
32urlparse.uses_netloc.extend(['ssh', 'git'])
33
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070034class _Default(object):
35 """Project defaults within the manifest."""
36
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -070037 revisionExpr = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070038 remote = None
Shawn O. Pearce6392c872011-09-22 17:44:31 -070039 sync_j = 1
Anatol Pomazau79770d22012-04-20 14:41:59 -070040 sync_c = False
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070041
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070042class _XmlRemote(object):
43 def __init__(self,
44 name,
Yestin Sunb292b982012-07-02 07:32:50 -070045 alias=None,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070046 fetch=None,
Conley Owensdb728cd2011-09-26 16:34:01 -070047 manifestUrl=None,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070048 review=None):
49 self.name = name
50 self.fetchUrl = fetch
Conley Owensdb728cd2011-09-26 16:34:01 -070051 self.manifestUrl = manifestUrl
Yestin Sunb292b982012-07-02 07:32:50 -070052 self.remoteAlias = alias
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070053 self.reviewUrl = review
Conley Owensceea3682011-10-20 10:45:47 -070054 self.resolvedFetchUrl = self._resolveFetchUrl()
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070055
Conley Owensceea3682011-10-20 10:45:47 -070056 def _resolveFetchUrl(self):
57 url = self.fetchUrl.rstrip('/')
Conley Owensdb728cd2011-09-26 16:34:01 -070058 manifestUrl = self.manifestUrl.rstrip('/')
59 # urljoin will get confused if there is no scheme in the base url
60 # ie, if manifestUrl is of the form <hostname:port>
61 if manifestUrl.find(':') != manifestUrl.find('/') - 1:
62 manifestUrl = 'gopher://' + manifestUrl
63 url = urlparse.urljoin(manifestUrl, url)
Conley Owensceea3682011-10-20 10:45:47 -070064 return re.sub(r'^gopher://', '', url)
65
66 def ToRemoteSpec(self, projectName):
Conley Owens9d8f9142011-10-20 14:36:35 -070067 url = self.resolvedFetchUrl.rstrip('/') + '/' + projectName
Yestin Sunb292b982012-07-02 07:32:50 -070068 remoteName = self.name
69 if self.remoteAlias:
70 remoteName = self.remoteAlias
71 return RemoteSpec(remoteName, url, self.reviewUrl)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070072
Shawn O. Pearcec8a300f2009-05-18 13:19:57 -070073class XmlManifest(object):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070074 """manages the repo configuration file"""
75
76 def __init__(self, repodir):
77 self.repodir = os.path.abspath(repodir)
78 self.topdir = os.path.dirname(self.repodir)
79 self.manifestFile = os.path.join(self.repodir, MANIFEST_FILE_NAME)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070080 self.globalConfig = GitConfig.ForUser()
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070081
82 self.repoProject = MetaProject(self, 'repo',
83 gitdir = os.path.join(repodir, 'repo/.git'),
84 worktree = os.path.join(repodir, 'repo'))
85
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070086 self.manifestProject = MetaProject(self, 'manifests',
Shawn O. Pearcef5c25a62008-11-04 08:11:53 -080087 gitdir = os.path.join(repodir, 'manifests.git'),
88 worktree = os.path.join(repodir, 'manifests'))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070089
90 self._Unload()
91
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -070092 def Override(self, name):
93 """Use a different manifest, just for the current instantiation.
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070094 """
95 path = os.path.join(self.manifestProject.worktree, name)
96 if not os.path.isfile(path):
97 raise ManifestParseError('manifest %s not found' % name)
98
99 old = self.manifestFile
100 try:
101 self.manifestFile = path
102 self._Unload()
103 self._Load()
104 finally:
105 self.manifestFile = old
106
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700107 def Link(self, name):
108 """Update the repo metadata to use a different manifest.
109 """
110 self.Override(name)
111
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700112 try:
113 if os.path.exists(self.manifestFile):
114 os.remove(self.manifestFile)
115 os.symlink('manifests/%s' % name, self.manifestFile)
116 except OSError, e:
117 raise ManifestParseError('cannot link manifest %s' % name)
118
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800119 def _RemoteToXml(self, r, doc, root):
120 e = doc.createElement('remote')
121 root.appendChild(e)
122 e.setAttribute('name', r.name)
123 e.setAttribute('fetch', r.fetchUrl)
124 if r.reviewUrl is not None:
125 e.setAttribute('review', r.reviewUrl)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800126
127 def Save(self, fd, peg_rev=False):
128 """Write the current manifest out to the given file descriptor.
129 """
Colin Cross5acde752012-03-28 20:15:45 -0700130 mp = self.manifestProject
131
132 groups = mp.config.GetString('manifest.groups')
Colin Crossc39864f2012-04-23 13:41:58 -0700133 if not groups:
Conley Owensbb1b5f52012-08-13 13:11:18 -0700134 groups = 'all'
Conley Owens971de8e2012-04-16 10:36:08 -0700135 groups = [x for x in re.split(r'[,\s]+', groups) if x]
Colin Cross5acde752012-03-28 20:15:45 -0700136
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800137 doc = xml.dom.minidom.Document()
138 root = doc.createElement('manifest')
139 doc.appendChild(root)
140
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700141 # Save out the notice. There's a little bit of work here to give it the
142 # right whitespace, which assumes that the notice is automatically indented
143 # by 4 by minidom.
144 if self.notice:
145 notice_element = root.appendChild(doc.createElement('notice'))
146 notice_lines = self.notice.splitlines()
147 indented_notice = ('\n'.join(" "*4 + line for line in notice_lines))[4:]
148 notice_element.appendChild(doc.createTextNode(indented_notice))
149
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800150 d = self.default
151 sort_remotes = list(self.remotes.keys())
152 sort_remotes.sort()
153
154 for r in sort_remotes:
155 self._RemoteToXml(self.remotes[r], doc, root)
156 if self.remotes:
157 root.appendChild(doc.createTextNode(''))
158
159 have_default = False
160 e = doc.createElement('default')
161 if d.remote:
162 have_default = True
163 e.setAttribute('remote', d.remote.name)
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700164 if d.revisionExpr:
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800165 have_default = True
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700166 e.setAttribute('revision', d.revisionExpr)
Shawn O. Pearce6392c872011-09-22 17:44:31 -0700167 if d.sync_j > 1:
168 have_default = True
169 e.setAttribute('sync-j', '%d' % d.sync_j)
Anatol Pomazau79770d22012-04-20 14:41:59 -0700170 if d.sync_c:
171 have_default = True
172 e.setAttribute('sync-c', 'true')
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800173 if have_default:
174 root.appendChild(e)
175 root.appendChild(doc.createTextNode(''))
176
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700177 if self._manifest_server:
178 e = doc.createElement('manifest-server')
179 e.setAttribute('url', self._manifest_server)
180 root.appendChild(e)
181 root.appendChild(doc.createTextNode(''))
182
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800183 sort_projects = list(self.projects.keys())
184 sort_projects.sort()
185
186 for p in sort_projects:
187 p = self.projects[p]
Colin Cross5acde752012-03-28 20:15:45 -0700188
189 if not p.MatchesGroups(groups):
190 continue
191
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800192 e = doc.createElement('project')
193 root.appendChild(e)
194 e.setAttribute('name', p.name)
195 if p.relpath != p.name:
196 e.setAttribute('path', p.relpath)
197 if not d.remote or p.remote.name != d.remote.name:
198 e.setAttribute('remote', p.remote.name)
199 if peg_rev:
200 if self.IsMirror:
201 e.setAttribute('revision',
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700202 p.bare_git.rev_parse(p.revisionExpr + '^0'))
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800203 else:
204 e.setAttribute('revision',
205 p.work_git.rev_parse(HEAD + '^0'))
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700206 elif not d.revisionExpr or p.revisionExpr != d.revisionExpr:
207 e.setAttribute('revision', p.revisionExpr)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800208
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800209 for c in p.copyfiles:
210 ce = doc.createElement('copyfile')
211 ce.setAttribute('src', c.src)
212 ce.setAttribute('dest', c.dest)
213 e.appendChild(ce)
214
Conley Owensbb1b5f52012-08-13 13:11:18 -0700215 default_groups = ['all', 'name:%s' % p.name, 'path:%s' % p.relpath]
Dmitry Fink17f85ea2012-08-06 14:52:29 -0700216 egroups = [g for g in p.groups if g not in default_groups]
Conley Owens971de8e2012-04-16 10:36:08 -0700217 if egroups:
218 e.setAttribute('groups', ','.join(egroups))
Colin Cross5acde752012-03-28 20:15:45 -0700219
James W. Mills24c13082012-04-12 15:04:13 -0500220 for a in p.annotations:
221 if a.keep == "true":
222 ae = doc.createElement('annotation')
223 ae.setAttribute('name', a.name)
224 ae.setAttribute('value', a.value)
225 e.appendChild(ae)
226
Anatol Pomazau79770d22012-04-20 14:41:59 -0700227 if p.sync_c:
228 e.setAttribute('sync-c', 'true')
229
Doug Anderson37282b42011-03-04 11:54:18 -0800230 if self._repo_hooks_project:
231 root.appendChild(doc.createTextNode(''))
232 e = doc.createElement('repo-hooks')
233 e.setAttribute('in-project', self._repo_hooks_project.name)
234 e.setAttribute('enabled-list',
235 ' '.join(self._repo_hooks_project.enabled_repo_hooks))
236 root.appendChild(e)
237
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800238 doc.writexml(fd, '', ' ', '\n', 'UTF-8')
239
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700240 @property
241 def projects(self):
242 self._Load()
243 return self._projects
244
245 @property
246 def remotes(self):
247 self._Load()
248 return self._remotes
249
250 @property
251 def default(self):
252 self._Load()
253 return self._default
254
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800255 @property
Doug Anderson37282b42011-03-04 11:54:18 -0800256 def repo_hooks_project(self):
257 self._Load()
258 return self._repo_hooks_project
259
260 @property
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700261 def notice(self):
262 self._Load()
263 return self._notice
264
265 @property
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700266 def manifest_server(self):
267 self._Load()
Shawn O. Pearce34fb20f2011-11-30 13:41:02 -0800268 return self._manifest_server
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700269
270 @property
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800271 def IsMirror(self):
272 return self.manifestProject.config.GetBoolean('repo.mirror')
273
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700274 def _Unload(self):
275 self._loaded = False
276 self._projects = {}
277 self._remotes = {}
278 self._default = None
Doug Anderson37282b42011-03-04 11:54:18 -0800279 self._repo_hooks_project = None
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700280 self._notice = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700281 self.branch = None
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700282 self._manifest_server = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700283
284 def _Load(self):
285 if not self._loaded:
Shawn O. Pearce2450a292008-11-04 08:22:07 -0800286 m = self.manifestProject
287 b = m.GetBranch(m.CurrentBranch).merge
Shawn O. Pearce21c5c342009-06-25 16:47:30 -0700288 if b is not None and b.startswith(R_HEADS):
Shawn O. Pearce2450a292008-11-04 08:22:07 -0800289 b = b[len(R_HEADS):]
290 self.branch = b
291
Colin Cross23acdd32012-04-21 00:33:54 -0700292 nodes = []
Brian Harring475a47d2012-06-07 20:05:35 -0700293 nodes.append(self._ParseManifestXml(self.manifestFile,
294 self.manifestProject.worktree))
Shawn O. Pearce5cc66792008-10-23 16:19:27 -0700295
296 local = os.path.join(self.repodir, LOCAL_MANIFEST_NAME)
297 if os.path.exists(local):
Brian Harring475a47d2012-06-07 20:05:35 -0700298 nodes.append(self._ParseManifestXml(local, self.repodir))
Colin Cross23acdd32012-04-21 00:33:54 -0700299
300 self._ParseManifest(nodes)
Shawn O. Pearce5cc66792008-10-23 16:19:27 -0700301
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800302 if self.IsMirror:
303 self._AddMetaProjectMirror(self.repoProject)
304 self._AddMetaProjectMirror(self.manifestProject)
305
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700306 self._loaded = True
307
Brian Harring475a47d2012-06-07 20:05:35 -0700308 def _ParseManifestXml(self, path, include_root):
Brian Harring26448742011-04-28 05:04:41 -0700309 root = xml.dom.minidom.parse(path)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700310 if not root or not root.childNodes:
Brian Harring26448742011-04-28 05:04:41 -0700311 raise ManifestParseError("no root node in %s" % (path,))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700312
Jooncheol Park34acdd22012-08-27 02:25:59 +0900313 for manifest in root.childNodes:
314 if manifest.nodeName == 'manifest':
315 break
316 else:
Brian Harring26448742011-04-28 05:04:41 -0700317 raise ManifestParseError("no <manifest> in %s" % (path,))
318
Colin Cross23acdd32012-04-21 00:33:54 -0700319 nodes = []
Jooncheol Park34acdd22012-08-27 02:25:59 +0900320 for node in manifest.childNodes:
Brian Harring26448742011-04-28 05:04:41 -0700321 if node.nodeName == 'include':
322 name = self._reqatt(node, 'name')
Brian Harring475a47d2012-06-07 20:05:35 -0700323 fp = os.path.join(include_root, name)
Brian Harring26448742011-04-28 05:04:41 -0700324 if not os.path.isfile(fp):
325 raise ManifestParseError, \
326 "include %s doesn't exist or isn't a file" % \
327 (name,)
328 try:
Brian Harring475a47d2012-06-07 20:05:35 -0700329 nodes.extend(self._ParseManifestXml(fp, include_root))
Brian Harring26448742011-04-28 05:04:41 -0700330 # should isolate this to the exact exception, but that's
331 # tricky. actual parsing implementation may vary.
332 except (KeyboardInterrupt, RuntimeError, SystemExit):
333 raise
334 except Exception, e:
335 raise ManifestParseError(
336 "failed parsing included manifest %s: %s", (name, e))
Colin Cross23acdd32012-04-21 00:33:54 -0700337 else:
338 nodes.append(node)
339 return nodes
Brian Harring26448742011-04-28 05:04:41 -0700340
Colin Cross23acdd32012-04-21 00:33:54 -0700341 def _ParseManifest(self, node_list):
342 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700343 if node.nodeName == 'remote':
344 remote = self._ParseRemote(node)
345 if self._remotes.get(remote.name):
Doug Anderson37282b42011-03-04 11:54:18 -0800346 raise ManifestParseError(
347 'duplicate remote %s in %s' %
348 (remote.name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700349 self._remotes[remote.name] = remote
350
Colin Cross23acdd32012-04-21 00:33:54 -0700351 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700352 if node.nodeName == 'default':
353 if self._default is not None:
Doug Anderson37282b42011-03-04 11:54:18 -0800354 raise ManifestParseError(
355 'duplicate default in %s' %
356 (self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700357 self._default = self._ParseDefault(node)
358 if self._default is None:
359 self._default = _Default()
360
Colin Cross23acdd32012-04-21 00:33:54 -0700361 for node in itertools.chain(*node_list):
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700362 if node.nodeName == 'notice':
363 if self._notice is not None:
Doug Anderson37282b42011-03-04 11:54:18 -0800364 raise ManifestParseError(
365 'duplicate notice in %s' %
366 (self.manifestFile))
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700367 self._notice = self._ParseNotice(node)
368
Colin Cross23acdd32012-04-21 00:33:54 -0700369 for node in itertools.chain(*node_list):
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700370 if node.nodeName == 'manifest-server':
371 url = self._reqatt(node, 'url')
372 if self._manifest_server is not None:
Doug Anderson37282b42011-03-04 11:54:18 -0800373 raise ManifestParseError(
374 'duplicate manifest-server in %s' %
375 (self.manifestFile))
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700376 self._manifest_server = url
377
Colin Cross23acdd32012-04-21 00:33:54 -0700378 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700379 if node.nodeName == 'project':
380 project = self._ParseProject(node)
381 if self._projects.get(project.name):
Doug Anderson37282b42011-03-04 11:54:18 -0800382 raise ManifestParseError(
383 'duplicate project %s in %s' %
384 (project.name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700385 self._projects[project.name] = project
Doug Anderson37282b42011-03-04 11:54:18 -0800386 if node.nodeName == 'repo-hooks':
387 # Get the name of the project and the (space-separated) list of enabled.
388 repo_hooks_project = self._reqatt(node, 'in-project')
389 enabled_repo_hooks = self._reqatt(node, 'enabled-list').split()
390
391 # Only one project can be the hooks project
392 if self._repo_hooks_project is not None:
393 raise ManifestParseError(
394 'duplicate repo-hooks in %s' %
395 (self.manifestFile))
396
397 # Store a reference to the Project.
398 try:
399 self._repo_hooks_project = self._projects[repo_hooks_project]
400 except KeyError:
401 raise ManifestParseError(
402 'project %s not found for repo-hooks' %
403 (repo_hooks_project))
404
405 # Store the enabled hooks in the Project object.
406 self._repo_hooks_project.enabled_repo_hooks = enabled_repo_hooks
Colin Cross23acdd32012-04-21 00:33:54 -0700407 if node.nodeName == 'remove-project':
408 name = self._reqatt(node, 'name')
409 try:
410 del self._projects[name]
411 except KeyError:
412 raise ManifestParseError(
413 'project %s not found' %
414 (name))
415
416 # If the manifest removes the hooks project, treat it as if it deleted
417 # the repo-hooks element too.
418 if self._repo_hooks_project and (self._repo_hooks_project.name == name):
419 self._repo_hooks_project = None
420
Doug Anderson37282b42011-03-04 11:54:18 -0800421
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800422 def _AddMetaProjectMirror(self, m):
423 name = None
424 m_url = m.GetRemote(m.remote.name).url
425 if m_url.endswith('/.git'):
426 raise ManifestParseError, 'refusing to mirror %s' % m_url
427
428 if self._default and self._default.remote:
Conley Owensceea3682011-10-20 10:45:47 -0700429 url = self._default.remote.resolvedFetchUrl
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800430 if not url.endswith('/'):
431 url += '/'
432 if m_url.startswith(url):
433 remote = self._default.remote
434 name = m_url[len(url):]
435
436 if name is None:
437 s = m_url.rindex('/') + 1
Conley Owensdb728cd2011-09-26 16:34:01 -0700438 manifestUrl = self.manifestProject.config.GetString('remote.origin.url')
Shawn O. Pearcef35b2d92012-08-02 11:46:22 -0700439 remote = _XmlRemote('origin', fetch=m_url[:s], manifestUrl=manifestUrl)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800440 name = m_url[s:]
441
442 if name.endswith('.git'):
443 name = name[:-4]
444
445 if name not in self._projects:
446 m.PreSync()
447 gitdir = os.path.join(self.topdir, '%s.git' % name)
448 project = Project(manifest = self,
449 name = name,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -0700450 remote = remote.ToRemoteSpec(name),
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800451 gitdir = gitdir,
452 worktree = None,
453 relpath = None,
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700454 revisionExpr = m.revisionExpr,
455 revisionId = None)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800456 self._projects[project.name] = project
457
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700458 def _ParseRemote(self, node):
459 """
460 reads a <remote> element from the manifest file
461 """
462 name = self._reqatt(node, 'name')
Yestin Sunb292b982012-07-02 07:32:50 -0700463 alias = node.getAttribute('alias')
464 if alias == '':
465 alias = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700466 fetch = self._reqatt(node, 'fetch')
467 review = node.getAttribute('review')
Shawn O. Pearceae6e0942008-11-06 10:25:35 -0800468 if review == '':
469 review = None
Conley Owensdb728cd2011-09-26 16:34:01 -0700470 manifestUrl = self.manifestProject.config.GetString('remote.origin.url')
Yestin Sunb292b982012-07-02 07:32:50 -0700471 return _XmlRemote(name, alias, fetch, manifestUrl, review)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700472
473 def _ParseDefault(self, node):
474 """
475 reads a <default> element from the manifest file
476 """
477 d = _Default()
478 d.remote = self._get_remote(node)
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700479 d.revisionExpr = node.getAttribute('revision')
480 if d.revisionExpr == '':
481 d.revisionExpr = None
Anatol Pomazau79770d22012-04-20 14:41:59 -0700482
Shawn O. Pearce6392c872011-09-22 17:44:31 -0700483 sync_j = node.getAttribute('sync-j')
484 if sync_j == '' or sync_j is None:
485 d.sync_j = 1
486 else:
487 d.sync_j = int(sync_j)
Anatol Pomazau79770d22012-04-20 14:41:59 -0700488
489 sync_c = node.getAttribute('sync-c')
490 if not sync_c:
491 d.sync_c = False
492 else:
493 d.sync_c = sync_c.lower() in ("yes", "true", "1")
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700494 return d
495
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700496 def _ParseNotice(self, node):
497 """
498 reads a <notice> element from the manifest file
499
500 The <notice> element is distinct from other tags in the XML in that the
501 data is conveyed between the start and end tag (it's not an empty-element
502 tag).
503
504 The white space (carriage returns, indentation) for the notice element is
505 relevant and is parsed in a way that is based on how python docstrings work.
506 In fact, the code is remarkably similar to here:
507 http://www.python.org/dev/peps/pep-0257/
508 """
509 # Get the data out of the node...
510 notice = node.childNodes[0].data
511
512 # Figure out minimum indentation, skipping the first line (the same line
513 # as the <notice> tag)...
514 minIndent = sys.maxint
515 lines = notice.splitlines()
516 for line in lines[1:]:
517 lstrippedLine = line.lstrip()
518 if lstrippedLine:
519 indent = len(line) - len(lstrippedLine)
520 minIndent = min(indent, minIndent)
521
522 # Strip leading / trailing blank lines and also indentation.
523 cleanLines = [lines[0].strip()]
524 for line in lines[1:]:
525 cleanLines.append(line[minIndent:].rstrip())
526
527 # Clear completely blank lines from front and back...
528 while cleanLines and not cleanLines[0]:
529 del cleanLines[0]
530 while cleanLines and not cleanLines[-1]:
531 del cleanLines[-1]
532
533 return '\n'.join(cleanLines)
534
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700535 def _ParseProject(self, node):
536 """
537 reads a <project> element from the manifest file
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700538 """
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700539 name = self._reqatt(node, 'name')
540
541 remote = self._get_remote(node)
542 if remote is None:
543 remote = self._default.remote
544 if remote is None:
545 raise ManifestParseError, \
546 "no remote for project %s within %s" % \
547 (name, self.manifestFile)
548
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700549 revisionExpr = node.getAttribute('revision')
550 if not revisionExpr:
551 revisionExpr = self._default.revisionExpr
552 if not revisionExpr:
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700553 raise ManifestParseError, \
554 "no revision for project %s within %s" % \
555 (name, self.manifestFile)
556
557 path = node.getAttribute('path')
558 if not path:
559 path = name
560 if path.startswith('/'):
561 raise ManifestParseError, \
562 "project %s path cannot be absolute in %s" % \
563 (name, self.manifestFile)
564
Mike Pontillod3153822012-02-28 11:53:24 -0800565 rebase = node.getAttribute('rebase')
566 if not rebase:
567 rebase = True
568 else:
569 rebase = rebase.lower() in ("yes", "true", "1")
570
Anatol Pomazau79770d22012-04-20 14:41:59 -0700571 sync_c = node.getAttribute('sync-c')
572 if not sync_c:
573 sync_c = False
574 else:
575 sync_c = sync_c.lower() in ("yes", "true", "1")
576
Conley Owens971de8e2012-04-16 10:36:08 -0700577 groups = ''
578 if node.hasAttribute('groups'):
579 groups = node.getAttribute('groups')
580 groups = [x for x in re.split('[,\s]+', groups) if x]
Brian Harring7da13142012-06-15 02:24:20 -0700581
582 default_groups = ['default', 'name:%s' % name, 'path:%s' % path]
583 groups.extend(set(default_groups).difference(groups))
Colin Cross5acde752012-03-28 20:15:45 -0700584
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800585 if self.IsMirror:
586 relpath = None
587 worktree = None
588 gitdir = os.path.join(self.topdir, '%s.git' % name)
589 else:
Anthony Newnamdf14a702011-01-09 17:31:57 -0800590 worktree = os.path.join(self.topdir, path).replace('\\', '/')
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800591 gitdir = os.path.join(self.repodir, 'projects/%s.git' % path)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700592
593 project = Project(manifest = self,
594 name = name,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -0700595 remote = remote.ToRemoteSpec(name),
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700596 gitdir = gitdir,
597 worktree = worktree,
598 relpath = path,
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700599 revisionExpr = revisionExpr,
Mike Pontillod3153822012-02-28 11:53:24 -0800600 revisionId = None,
Colin Cross5acde752012-03-28 20:15:45 -0700601 rebase = rebase,
Anatol Pomazau79770d22012-04-20 14:41:59 -0700602 groups = groups,
603 sync_c = sync_c)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700604
605 for n in node.childNodes:
Shawn O. Pearce242b5262009-05-19 13:00:29 -0700606 if n.nodeName == 'copyfile':
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700607 self._ParseCopyFile(project, n)
James W. Mills24c13082012-04-12 15:04:13 -0500608 if n.nodeName == 'annotation':
609 self._ParseAnnotation(project, n)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700610
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700611 return project
612
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700613 def _ParseCopyFile(self, project, node):
614 src = self._reqatt(node, 'src')
615 dest = self._reqatt(node, 'dest')
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800616 if not self.IsMirror:
617 # src is project relative;
618 # dest is relative to the top of the tree
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800619 project.AddCopyFile(src, dest, os.path.join(self.topdir, dest))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700620
James W. Mills24c13082012-04-12 15:04:13 -0500621 def _ParseAnnotation(self, project, node):
622 name = self._reqatt(node, 'name')
623 value = self._reqatt(node, 'value')
624 try:
625 keep = self._reqatt(node, 'keep').lower()
626 except ManifestParseError:
627 keep = "true"
628 if keep != "true" and keep != "false":
629 raise ManifestParseError, "optional \"keep\" attribute must be \"true\" or \"false\""
630 project.AddAnnotation(name, value, keep)
631
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700632 def _get_remote(self, node):
633 name = node.getAttribute('remote')
634 if not name:
635 return None
636
637 v = self._remotes.get(name)
638 if not v:
639 raise ManifestParseError, \
640 "remote %s not defined in %s" % \
641 (name, self.manifestFile)
642 return v
643
644 def _reqatt(self, node, attname):
645 """
646 reads a required attribute from the node.
647 """
648 v = node.getAttribute(attname)
649 if not v:
650 raise ManifestParseError, \
651 "no %s in <%s> within %s" % \
652 (attname, node.nodeName, self.manifestFile)
653 return v