blob: 8e9efd1375d0b9eca2441e73f416bed8d579cafe [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
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070024from project import RemoteSpec, Project, MetaProject, R_HEADS, HEAD
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070025from error import ManifestParseError
26
27MANIFEST_FILE_NAME = 'manifest.xml'
Shawn O. Pearce5cc66792008-10-23 16:19:27 -070028LOCAL_MANIFEST_NAME = 'local_manifest.xml'
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070029
Conley Owensdb728cd2011-09-26 16:34:01 -070030urlparse.uses_relative.extend(['ssh', 'git'])
31urlparse.uses_netloc.extend(['ssh', 'git'])
32
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070033class _Default(object):
34 """Project defaults within the manifest."""
35
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -070036 revisionExpr = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070037 remote = None
Shawn O. Pearce6392c872011-09-22 17:44:31 -070038 sync_j = 1
Anatol Pomazau79770d22012-04-20 14:41:59 -070039 sync_c = False
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070040
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070041class _XmlRemote(object):
42 def __init__(self,
43 name,
Yestin Sunb292b982012-07-02 07:32:50 -070044 alias=None,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070045 fetch=None,
Conley Owensdb728cd2011-09-26 16:34:01 -070046 manifestUrl=None,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070047 review=None):
48 self.name = name
49 self.fetchUrl = fetch
Conley Owensdb728cd2011-09-26 16:34:01 -070050 self.manifestUrl = manifestUrl
Yestin Sunb292b982012-07-02 07:32:50 -070051 self.remoteAlias = alias
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070052 self.reviewUrl = review
Conley Owensceea3682011-10-20 10:45:47 -070053 self.resolvedFetchUrl = self._resolveFetchUrl()
Shawn O. Pearced1f70d92009-05-19 14:58:02 -070054
Conley Owensceea3682011-10-20 10:45:47 -070055 def _resolveFetchUrl(self):
56 url = self.fetchUrl.rstrip('/')
Conley Owensdb728cd2011-09-26 16:34:01 -070057 manifestUrl = self.manifestUrl.rstrip('/')
58 # urljoin will get confused if there is no scheme in the base url
59 # ie, if manifestUrl is of the form <hostname:port>
60 if manifestUrl.find(':') != manifestUrl.find('/') - 1:
61 manifestUrl = 'gopher://' + manifestUrl
62 url = urlparse.urljoin(manifestUrl, url)
Conley Owensceea3682011-10-20 10:45:47 -070063 return re.sub(r'^gopher://', '', url)
64
65 def ToRemoteSpec(self, projectName):
Conley Owens9d8f9142011-10-20 14:36:35 -070066 url = self.resolvedFetchUrl.rstrip('/') + '/' + projectName
Yestin Sunb292b982012-07-02 07:32:50 -070067 remoteName = self.name
68 if self.remoteAlias:
69 remoteName = self.remoteAlias
70 return RemoteSpec(remoteName, url, self.reviewUrl)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070071
Shawn O. Pearcec8a300f2009-05-18 13:19:57 -070072class XmlManifest(object):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070073 """manages the repo configuration file"""
74
75 def __init__(self, repodir):
76 self.repodir = os.path.abspath(repodir)
77 self.topdir = os.path.dirname(self.repodir)
78 self.manifestFile = os.path.join(self.repodir, MANIFEST_FILE_NAME)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070079 self.globalConfig = GitConfig.ForUser()
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070080
81 self.repoProject = MetaProject(self, 'repo',
82 gitdir = os.path.join(repodir, 'repo/.git'),
83 worktree = os.path.join(repodir, 'repo'))
84
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070085 self.manifestProject = MetaProject(self, 'manifests',
Shawn O. Pearcef5c25a62008-11-04 08:11:53 -080086 gitdir = os.path.join(repodir, 'manifests.git'),
87 worktree = os.path.join(repodir, 'manifests'))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070088
89 self._Unload()
90
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -070091 def Override(self, name):
92 """Use a different manifest, just for the current instantiation.
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070093 """
94 path = os.path.join(self.manifestProject.worktree, name)
95 if not os.path.isfile(path):
96 raise ManifestParseError('manifest %s not found' % name)
97
98 old = self.manifestFile
99 try:
100 self.manifestFile = path
101 self._Unload()
102 self._Load()
103 finally:
104 self.manifestFile = old
105
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700106 def Link(self, name):
107 """Update the repo metadata to use a different manifest.
108 """
109 self.Override(name)
110
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700111 try:
112 if os.path.exists(self.manifestFile):
113 os.remove(self.manifestFile)
114 os.symlink('manifests/%s' % name, self.manifestFile)
115 except OSError, e:
116 raise ManifestParseError('cannot link manifest %s' % name)
117
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800118 def _RemoteToXml(self, r, doc, root):
119 e = doc.createElement('remote')
120 root.appendChild(e)
121 e.setAttribute('name', r.name)
122 e.setAttribute('fetch', r.fetchUrl)
123 if r.reviewUrl is not None:
124 e.setAttribute('review', r.reviewUrl)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800125
126 def Save(self, fd, peg_rev=False):
127 """Write the current manifest out to the given file descriptor.
128 """
Colin Cross5acde752012-03-28 20:15:45 -0700129 mp = self.manifestProject
130
131 groups = mp.config.GetString('manifest.groups')
Colin Crossc39864f2012-04-23 13:41:58 -0700132 if not groups:
Conley Owensbb1b5f52012-08-13 13:11:18 -0700133 groups = 'all'
Conley Owens971de8e2012-04-16 10:36:08 -0700134 groups = [x for x in re.split(r'[,\s]+', groups) if x]
Colin Cross5acde752012-03-28 20:15:45 -0700135
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800136 doc = xml.dom.minidom.Document()
137 root = doc.createElement('manifest')
138 doc.appendChild(root)
139
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700140 # Save out the notice. There's a little bit of work here to give it the
141 # right whitespace, which assumes that the notice is automatically indented
142 # by 4 by minidom.
143 if self.notice:
144 notice_element = root.appendChild(doc.createElement('notice'))
145 notice_lines = self.notice.splitlines()
146 indented_notice = ('\n'.join(" "*4 + line for line in notice_lines))[4:]
147 notice_element.appendChild(doc.createTextNode(indented_notice))
148
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800149 d = self.default
150 sort_remotes = list(self.remotes.keys())
151 sort_remotes.sort()
152
153 for r in sort_remotes:
154 self._RemoteToXml(self.remotes[r], doc, root)
155 if self.remotes:
156 root.appendChild(doc.createTextNode(''))
157
158 have_default = False
159 e = doc.createElement('default')
160 if d.remote:
161 have_default = True
162 e.setAttribute('remote', d.remote.name)
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700163 if d.revisionExpr:
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800164 have_default = True
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700165 e.setAttribute('revision', d.revisionExpr)
Shawn O. Pearce6392c872011-09-22 17:44:31 -0700166 if d.sync_j > 1:
167 have_default = True
168 e.setAttribute('sync-j', '%d' % d.sync_j)
Anatol Pomazau79770d22012-04-20 14:41:59 -0700169 if d.sync_c:
170 have_default = True
171 e.setAttribute('sync-c', 'true')
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800172 if have_default:
173 root.appendChild(e)
174 root.appendChild(doc.createTextNode(''))
175
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700176 if self._manifest_server:
177 e = doc.createElement('manifest-server')
178 e.setAttribute('url', self._manifest_server)
179 root.appendChild(e)
180 root.appendChild(doc.createTextNode(''))
181
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800182 sort_projects = list(self.projects.keys())
183 sort_projects.sort()
184
185 for p in sort_projects:
186 p = self.projects[p]
Colin Cross5acde752012-03-28 20:15:45 -0700187
188 if not p.MatchesGroups(groups):
189 continue
190
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800191 e = doc.createElement('project')
192 root.appendChild(e)
193 e.setAttribute('name', p.name)
194 if p.relpath != p.name:
195 e.setAttribute('path', p.relpath)
196 if not d.remote or p.remote.name != d.remote.name:
197 e.setAttribute('remote', p.remote.name)
198 if peg_rev:
199 if self.IsMirror:
200 e.setAttribute('revision',
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700201 p.bare_git.rev_parse(p.revisionExpr + '^0'))
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800202 else:
203 e.setAttribute('revision',
204 p.work_git.rev_parse(HEAD + '^0'))
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700205 elif not d.revisionExpr or p.revisionExpr != d.revisionExpr:
206 e.setAttribute('revision', p.revisionExpr)
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800207
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800208 for c in p.copyfiles:
209 ce = doc.createElement('copyfile')
210 ce.setAttribute('src', c.src)
211 ce.setAttribute('dest', c.dest)
212 e.appendChild(ce)
213
Conley Owensbb1b5f52012-08-13 13:11:18 -0700214 default_groups = ['all', 'name:%s' % p.name, 'path:%s' % p.relpath]
Dmitry Fink17f85ea2012-08-06 14:52:29 -0700215 egroups = [g for g in p.groups if g not in default_groups]
Conley Owens971de8e2012-04-16 10:36:08 -0700216 if egroups:
217 e.setAttribute('groups', ','.join(egroups))
Colin Cross5acde752012-03-28 20:15:45 -0700218
James W. Mills24c13082012-04-12 15:04:13 -0500219 for a in p.annotations:
220 if a.keep == "true":
221 ae = doc.createElement('annotation')
222 ae.setAttribute('name', a.name)
223 ae.setAttribute('value', a.value)
224 e.appendChild(ae)
225
Anatol Pomazau79770d22012-04-20 14:41:59 -0700226 if p.sync_c:
227 e.setAttribute('sync-c', 'true')
228
Doug Anderson37282b42011-03-04 11:54:18 -0800229 if self._repo_hooks_project:
230 root.appendChild(doc.createTextNode(''))
231 e = doc.createElement('repo-hooks')
232 e.setAttribute('in-project', self._repo_hooks_project.name)
233 e.setAttribute('enabled-list',
234 ' '.join(self._repo_hooks_project.enabled_repo_hooks))
235 root.appendChild(e)
236
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800237 doc.writexml(fd, '', ' ', '\n', 'UTF-8')
238
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700239 @property
240 def projects(self):
241 self._Load()
242 return self._projects
243
244 @property
245 def remotes(self):
246 self._Load()
247 return self._remotes
248
249 @property
250 def default(self):
251 self._Load()
252 return self._default
253
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800254 @property
Doug Anderson37282b42011-03-04 11:54:18 -0800255 def repo_hooks_project(self):
256 self._Load()
257 return self._repo_hooks_project
258
259 @property
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700260 def notice(self):
261 self._Load()
262 return self._notice
263
264 @property
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700265 def manifest_server(self):
266 self._Load()
Shawn O. Pearce34fb20f2011-11-30 13:41:02 -0800267 return self._manifest_server
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700268
269 @property
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800270 def IsMirror(self):
271 return self.manifestProject.config.GetBoolean('repo.mirror')
272
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700273 def _Unload(self):
274 self._loaded = False
275 self._projects = {}
276 self._remotes = {}
277 self._default = None
Doug Anderson37282b42011-03-04 11:54:18 -0800278 self._repo_hooks_project = None
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700279 self._notice = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700280 self.branch = None
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700281 self._manifest_server = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700282
283 def _Load(self):
284 if not self._loaded:
Shawn O. Pearce2450a292008-11-04 08:22:07 -0800285 m = self.manifestProject
286 b = m.GetBranch(m.CurrentBranch).merge
Shawn O. Pearce21c5c342009-06-25 16:47:30 -0700287 if b is not None and b.startswith(R_HEADS):
Shawn O. Pearce2450a292008-11-04 08:22:07 -0800288 b = b[len(R_HEADS):]
289 self.branch = b
290
Colin Cross23acdd32012-04-21 00:33:54 -0700291 nodes = []
Brian Harring475a47d2012-06-07 20:05:35 -0700292 nodes.append(self._ParseManifestXml(self.manifestFile,
293 self.manifestProject.worktree))
Shawn O. Pearce5cc66792008-10-23 16:19:27 -0700294
295 local = os.path.join(self.repodir, LOCAL_MANIFEST_NAME)
296 if os.path.exists(local):
Brian Harring475a47d2012-06-07 20:05:35 -0700297 nodes.append(self._ParseManifestXml(local, self.repodir))
Colin Cross23acdd32012-04-21 00:33:54 -0700298
299 self._ParseManifest(nodes)
Shawn O. Pearce5cc66792008-10-23 16:19:27 -0700300
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800301 if self.IsMirror:
302 self._AddMetaProjectMirror(self.repoProject)
303 self._AddMetaProjectMirror(self.manifestProject)
304
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700305 self._loaded = True
306
Brian Harring475a47d2012-06-07 20:05:35 -0700307 def _ParseManifestXml(self, path, include_root):
Brian Harring26448742011-04-28 05:04:41 -0700308 root = xml.dom.minidom.parse(path)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700309 if not root or not root.childNodes:
Brian Harring26448742011-04-28 05:04:41 -0700310 raise ManifestParseError("no root node in %s" % (path,))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700311
Jooncheol Park34acdd22012-08-27 02:25:59 +0900312 for manifest in root.childNodes:
313 if manifest.nodeName == 'manifest':
314 break
315 else:
Brian Harring26448742011-04-28 05:04:41 -0700316 raise ManifestParseError("no <manifest> in %s" % (path,))
317
Colin Cross23acdd32012-04-21 00:33:54 -0700318 nodes = []
Jooncheol Park34acdd22012-08-27 02:25:59 +0900319 for node in manifest.childNodes:
Brian Harring26448742011-04-28 05:04:41 -0700320 if node.nodeName == 'include':
321 name = self._reqatt(node, 'name')
Brian Harring475a47d2012-06-07 20:05:35 -0700322 fp = os.path.join(include_root, name)
Brian Harring26448742011-04-28 05:04:41 -0700323 if not os.path.isfile(fp):
324 raise ManifestParseError, \
325 "include %s doesn't exist or isn't a file" % \
326 (name,)
327 try:
Brian Harring475a47d2012-06-07 20:05:35 -0700328 nodes.extend(self._ParseManifestXml(fp, include_root))
Brian Harring26448742011-04-28 05:04:41 -0700329 # should isolate this to the exact exception, but that's
330 # tricky. actual parsing implementation may vary.
331 except (KeyboardInterrupt, RuntimeError, SystemExit):
332 raise
333 except Exception, e:
334 raise ManifestParseError(
335 "failed parsing included manifest %s: %s", (name, e))
Colin Cross23acdd32012-04-21 00:33:54 -0700336 else:
337 nodes.append(node)
338 return nodes
Brian Harring26448742011-04-28 05:04:41 -0700339
Colin Cross23acdd32012-04-21 00:33:54 -0700340 def _ParseManifest(self, node_list):
341 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700342 if node.nodeName == 'remote':
343 remote = self._ParseRemote(node)
344 if self._remotes.get(remote.name):
Doug Anderson37282b42011-03-04 11:54:18 -0800345 raise ManifestParseError(
346 'duplicate remote %s in %s' %
347 (remote.name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700348 self._remotes[remote.name] = remote
349
Colin Cross23acdd32012-04-21 00:33:54 -0700350 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700351 if node.nodeName == 'default':
352 if self._default is not None:
Doug Anderson37282b42011-03-04 11:54:18 -0800353 raise ManifestParseError(
354 'duplicate default in %s' %
355 (self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700356 self._default = self._ParseDefault(node)
357 if self._default is None:
358 self._default = _Default()
359
Colin Cross23acdd32012-04-21 00:33:54 -0700360 for node in itertools.chain(*node_list):
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700361 if node.nodeName == 'notice':
362 if self._notice is not None:
Doug Anderson37282b42011-03-04 11:54:18 -0800363 raise ManifestParseError(
364 'duplicate notice in %s' %
365 (self.manifestFile))
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700366 self._notice = self._ParseNotice(node)
367
Colin Cross23acdd32012-04-21 00:33:54 -0700368 for node in itertools.chain(*node_list):
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700369 if node.nodeName == 'manifest-server':
370 url = self._reqatt(node, 'url')
371 if self._manifest_server is not None:
Doug Anderson37282b42011-03-04 11:54:18 -0800372 raise ManifestParseError(
373 'duplicate manifest-server in %s' %
374 (self.manifestFile))
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700375 self._manifest_server = url
376
Colin Cross23acdd32012-04-21 00:33:54 -0700377 for node in itertools.chain(*node_list):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700378 if node.nodeName == 'project':
379 project = self._ParseProject(node)
380 if self._projects.get(project.name):
Doug Anderson37282b42011-03-04 11:54:18 -0800381 raise ManifestParseError(
382 'duplicate project %s in %s' %
383 (project.name, self.manifestFile))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700384 self._projects[project.name] = project
Doug Anderson37282b42011-03-04 11:54:18 -0800385 if node.nodeName == 'repo-hooks':
386 # Get the name of the project and the (space-separated) list of enabled.
387 repo_hooks_project = self._reqatt(node, 'in-project')
388 enabled_repo_hooks = self._reqatt(node, 'enabled-list').split()
389
390 # Only one project can be the hooks project
391 if self._repo_hooks_project is not None:
392 raise ManifestParseError(
393 'duplicate repo-hooks in %s' %
394 (self.manifestFile))
395
396 # Store a reference to the Project.
397 try:
398 self._repo_hooks_project = self._projects[repo_hooks_project]
399 except KeyError:
400 raise ManifestParseError(
401 'project %s not found for repo-hooks' %
402 (repo_hooks_project))
403
404 # Store the enabled hooks in the Project object.
405 self._repo_hooks_project.enabled_repo_hooks = enabled_repo_hooks
Colin Cross23acdd32012-04-21 00:33:54 -0700406 if node.nodeName == 'remove-project':
407 name = self._reqatt(node, 'name')
408 try:
409 del self._projects[name]
410 except KeyError:
411 raise ManifestParseError(
412 'project %s not found' %
413 (name))
414
415 # If the manifest removes the hooks project, treat it as if it deleted
416 # the repo-hooks element too.
417 if self._repo_hooks_project and (self._repo_hooks_project.name == name):
418 self._repo_hooks_project = None
419
Doug Anderson37282b42011-03-04 11:54:18 -0800420
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800421 def _AddMetaProjectMirror(self, m):
422 name = None
423 m_url = m.GetRemote(m.remote.name).url
424 if m_url.endswith('/.git'):
425 raise ManifestParseError, 'refusing to mirror %s' % m_url
426
427 if self._default and self._default.remote:
Conley Owensceea3682011-10-20 10:45:47 -0700428 url = self._default.remote.resolvedFetchUrl
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800429 if not url.endswith('/'):
430 url += '/'
431 if m_url.startswith(url):
432 remote = self._default.remote
433 name = m_url[len(url):]
434
435 if name is None:
436 s = m_url.rindex('/') + 1
Conley Owensdb728cd2011-09-26 16:34:01 -0700437 manifestUrl = self.manifestProject.config.GetString('remote.origin.url')
Shawn O. Pearcef35b2d92012-08-02 11:46:22 -0700438 remote = _XmlRemote('origin', fetch=m_url[:s], manifestUrl=manifestUrl)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800439 name = m_url[s:]
440
441 if name.endswith('.git'):
442 name = name[:-4]
443
444 if name not in self._projects:
445 m.PreSync()
446 gitdir = os.path.join(self.topdir, '%s.git' % name)
447 project = Project(manifest = self,
448 name = name,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -0700449 remote = remote.ToRemoteSpec(name),
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800450 gitdir = gitdir,
451 worktree = None,
452 relpath = None,
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700453 revisionExpr = m.revisionExpr,
454 revisionId = None)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800455 self._projects[project.name] = project
456
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700457 def _ParseRemote(self, node):
458 """
459 reads a <remote> element from the manifest file
460 """
461 name = self._reqatt(node, 'name')
Yestin Sunb292b982012-07-02 07:32:50 -0700462 alias = node.getAttribute('alias')
463 if alias == '':
464 alias = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700465 fetch = self._reqatt(node, 'fetch')
466 review = node.getAttribute('review')
Shawn O. Pearceae6e0942008-11-06 10:25:35 -0800467 if review == '':
468 review = None
Conley Owensdb728cd2011-09-26 16:34:01 -0700469 manifestUrl = self.manifestProject.config.GetString('remote.origin.url')
Yestin Sunb292b982012-07-02 07:32:50 -0700470 return _XmlRemote(name, alias, fetch, manifestUrl, review)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700471
472 def _ParseDefault(self, node):
473 """
474 reads a <default> element from the manifest file
475 """
476 d = _Default()
477 d.remote = self._get_remote(node)
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700478 d.revisionExpr = node.getAttribute('revision')
479 if d.revisionExpr == '':
480 d.revisionExpr = None
Anatol Pomazau79770d22012-04-20 14:41:59 -0700481
Shawn O. Pearce6392c872011-09-22 17:44:31 -0700482 sync_j = node.getAttribute('sync-j')
483 if sync_j == '' or sync_j is None:
484 d.sync_j = 1
485 else:
486 d.sync_j = int(sync_j)
Anatol Pomazau79770d22012-04-20 14:41:59 -0700487
488 sync_c = node.getAttribute('sync-c')
489 if not sync_c:
490 d.sync_c = False
491 else:
492 d.sync_c = sync_c.lower() in ("yes", "true", "1")
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700493 return d
494
Doug Anderson2b8db3c2010-11-01 15:08:06 -0700495 def _ParseNotice(self, node):
496 """
497 reads a <notice> element from the manifest file
498
499 The <notice> element is distinct from other tags in the XML in that the
500 data is conveyed between the start and end tag (it's not an empty-element
501 tag).
502
503 The white space (carriage returns, indentation) for the notice element is
504 relevant and is parsed in a way that is based on how python docstrings work.
505 In fact, the code is remarkably similar to here:
506 http://www.python.org/dev/peps/pep-0257/
507 """
508 # Get the data out of the node...
509 notice = node.childNodes[0].data
510
511 # Figure out minimum indentation, skipping the first line (the same line
512 # as the <notice> tag)...
513 minIndent = sys.maxint
514 lines = notice.splitlines()
515 for line in lines[1:]:
516 lstrippedLine = line.lstrip()
517 if lstrippedLine:
518 indent = len(line) - len(lstrippedLine)
519 minIndent = min(indent, minIndent)
520
521 # Strip leading / trailing blank lines and also indentation.
522 cleanLines = [lines[0].strip()]
523 for line in lines[1:]:
524 cleanLines.append(line[minIndent:].rstrip())
525
526 # Clear completely blank lines from front and back...
527 while cleanLines and not cleanLines[0]:
528 del cleanLines[0]
529 while cleanLines and not cleanLines[-1]:
530 del cleanLines[-1]
531
532 return '\n'.join(cleanLines)
533
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700534 def _ParseProject(self, node):
535 """
536 reads a <project> element from the manifest file
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700537 """
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700538 name = self._reqatt(node, 'name')
539
540 remote = self._get_remote(node)
541 if remote is None:
542 remote = self._default.remote
543 if remote is None:
544 raise ManifestParseError, \
545 "no remote for project %s within %s" % \
546 (name, self.manifestFile)
547
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700548 revisionExpr = node.getAttribute('revision')
549 if not revisionExpr:
550 revisionExpr = self._default.revisionExpr
551 if not revisionExpr:
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700552 raise ManifestParseError, \
553 "no revision for project %s within %s" % \
554 (name, self.manifestFile)
555
556 path = node.getAttribute('path')
557 if not path:
558 path = name
559 if path.startswith('/'):
560 raise ManifestParseError, \
561 "project %s path cannot be absolute in %s" % \
562 (name, self.manifestFile)
563
Mike Pontillod3153822012-02-28 11:53:24 -0800564 rebase = node.getAttribute('rebase')
565 if not rebase:
566 rebase = True
567 else:
568 rebase = rebase.lower() in ("yes", "true", "1")
569
Anatol Pomazau79770d22012-04-20 14:41:59 -0700570 sync_c = node.getAttribute('sync-c')
571 if not sync_c:
572 sync_c = False
573 else:
574 sync_c = sync_c.lower() in ("yes", "true", "1")
575
Conley Owens971de8e2012-04-16 10:36:08 -0700576 groups = ''
577 if node.hasAttribute('groups'):
578 groups = node.getAttribute('groups')
579 groups = [x for x in re.split('[,\s]+', groups) if x]
Brian Harring7da13142012-06-15 02:24:20 -0700580
581 default_groups = ['default', 'name:%s' % name, 'path:%s' % path]
582 groups.extend(set(default_groups).difference(groups))
Colin Cross5acde752012-03-28 20:15:45 -0700583
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800584 if self.IsMirror:
585 relpath = None
586 worktree = None
587 gitdir = os.path.join(self.topdir, '%s.git' % name)
588 else:
Anthony Newnamdf14a702011-01-09 17:31:57 -0800589 worktree = os.path.join(self.topdir, path).replace('\\', '/')
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800590 gitdir = os.path.join(self.repodir, 'projects/%s.git' % path)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700591
592 project = Project(manifest = self,
593 name = name,
Shawn O. Pearced1f70d92009-05-19 14:58:02 -0700594 remote = remote.ToRemoteSpec(name),
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700595 gitdir = gitdir,
596 worktree = worktree,
597 relpath = path,
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700598 revisionExpr = revisionExpr,
Mike Pontillod3153822012-02-28 11:53:24 -0800599 revisionId = None,
Colin Cross5acde752012-03-28 20:15:45 -0700600 rebase = rebase,
Anatol Pomazau79770d22012-04-20 14:41:59 -0700601 groups = groups,
602 sync_c = sync_c)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700603
604 for n in node.childNodes:
Shawn O. Pearce242b5262009-05-19 13:00:29 -0700605 if n.nodeName == 'copyfile':
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700606 self._ParseCopyFile(project, n)
James W. Mills24c13082012-04-12 15:04:13 -0500607 if n.nodeName == 'annotation':
608 self._ParseAnnotation(project, n)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700609
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700610 return project
611
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700612 def _ParseCopyFile(self, project, node):
613 src = self._reqatt(node, 'src')
614 dest = self._reqatt(node, 'dest')
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800615 if not self.IsMirror:
616 # src is project relative;
617 # dest is relative to the top of the tree
Shawn O. Pearcec7a4eef2009-03-05 10:32:38 -0800618 project.AddCopyFile(src, dest, os.path.join(self.topdir, dest))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700619
James W. Mills24c13082012-04-12 15:04:13 -0500620 def _ParseAnnotation(self, project, node):
621 name = self._reqatt(node, 'name')
622 value = self._reqatt(node, 'value')
623 try:
624 keep = self._reqatt(node, 'keep').lower()
625 except ManifestParseError:
626 keep = "true"
627 if keep != "true" and keep != "false":
628 raise ManifestParseError, "optional \"keep\" attribute must be \"true\" or \"false\""
629 project.AddAnnotation(name, value, keep)
630
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700631 def _get_remote(self, node):
632 name = node.getAttribute('remote')
633 if not name:
634 return None
635
636 v = self._remotes.get(name)
637 if not v:
638 raise ManifestParseError, \
639 "remote %s not defined in %s" % \
640 (name, self.manifestFile)
641 return v
642
643 def _reqatt(self, node, attname):
644 """
645 reads a required attribute from the node.
646 """
647 v = node.getAttribute(attname)
648 if not v:
649 raise ManifestParseError, \
650 "no %s in <%s> within %s" % \
651 (attname, node.nodeName, self.manifestFile)
652 return v