Extracted ZeroInstallImplementation.retrieve from Fetcher.download_impl
[zeroinstall/zeroinstall-limyreth.git] / zeroinstall / injector / model.py
blob9fa6830db43f7d8670e0f487fec322c5c63a79d7
1 """In-memory representation of interfaces and other data structures.
3 The objects in this module are used to build a representation of an XML interface
4 file in memory.
6 @see: L{reader} constructs these data-structures
7 @see: U{http://0install.net/interface-spec.html} description of the domain model
9 @var defaults: Default values for the 'default' attribute for <environment> bindings of
10 well-known variables.
11 """
13 # Copyright (C) 2009, Thomas Leonard
14 # See the README file for details, or visit http://0install.net.
16 from zeroinstall import _
17 import os, re, locale
18 from logging import info, debug, warn
19 from zeroinstall import SafeException, version
20 from zeroinstall.injector.namespaces import XMLNS_IFACE
21 from zeroinstall.injector import qdom
22 from zeroinstall.zerostore import unpack
23 from zeroinstall.support import tasks
25 # Element names for bindings in feed files
26 binding_names = frozenset(['environment', 'overlay'])
28 network_offline = 'off-line'
29 network_minimal = 'minimal'
30 network_full = 'full'
31 network_levels = (network_offline, network_minimal, network_full)
33 stability_levels = {} # Name -> Stability
35 defaults = {
36 'PATH': '/bin:/usr/bin',
37 'XDG_CONFIG_DIRS': '/etc/xdg',
38 'XDG_DATA_DIRS': '/usr/local/share:/usr/share',
41 class InvalidInterface(SafeException):
42 """Raised when parsing an invalid feed."""
43 feed_url = None
45 def __init__(self, message, ex = None):
46 if ex:
47 try:
48 message += "\n\n(exact error: %s)" % ex
49 except:
50 # Some Python messages have type str but contain UTF-8 sequences.
51 # (e.g. IOException). Adding these to a Unicode 'message' (e.g.
52 # after gettext translation) will cause an error.
53 import codecs
54 decoder = codecs.lookup('utf-8')
55 decex = decoder.decode(str(ex), errors = 'replace')[0]
56 message += "\n\n(exact error: %s)" % decex
58 SafeException.__init__(self, message)
60 def __unicode__(self):
61 if hasattr(SafeException, '__unicode__'):
62 # Python >= 2.6
63 if self.feed_url:
64 return _('%s [%s]') % (SafeException.__unicode__(self), self.feed_url)
65 return SafeException.__unicode__(self)
66 else:
67 return unicode(SafeException.__str__(self))
69 def _split_arch(arch):
70 """Split an arch into an (os, machine) tuple. Either or both parts may be None."""
71 if not arch:
72 return None, None
73 elif '-' not in arch:
74 raise SafeException(_("Malformed arch '%s'") % arch)
75 else:
76 osys, machine = arch.split('-', 1)
77 if osys == '*': osys = None
78 if machine == '*': machine = None
79 return osys, machine
81 def _join_arch(osys, machine):
82 if osys == machine == None: return None
83 return "%s-%s" % (osys or '*', machine or '*')
85 def _best_language_match(options):
86 (language, encoding) = locale.getlocale()
88 if language:
89 # xml:lang uses '-', while LANG uses '_'
90 language = language.replace('_', '-')
91 else:
92 language = 'en-US'
94 return (options.get(language, None) or # Exact match (language+region)
95 options.get(language.split('-', 1)[0], None) or # Matching language
96 options.get('en', None)) # English
98 class Stability(object):
99 """A stability rating. Each implementation has an upstream stability rating and,
100 optionally, a user-set rating."""
101 __slots__ = ['level', 'name', 'description']
102 def __init__(self, level, name, description):
103 self.level = level
104 self.name = name
105 self.description = description
106 assert name not in stability_levels
107 stability_levels[name] = self
109 def __cmp__(self, other):
110 return cmp(self.level, other.level)
112 def __str__(self):
113 return self.name
115 def __repr__(self):
116 return _("<Stability: %s>") % self.description
118 def process_binding(e):
119 """Internal"""
120 if e.name == 'environment':
121 mode = {
122 None: EnvironmentBinding.PREPEND,
123 'prepend': EnvironmentBinding.PREPEND,
124 'append': EnvironmentBinding.APPEND,
125 'replace': EnvironmentBinding.REPLACE,
126 }[e.getAttribute('mode')]
128 binding = EnvironmentBinding(e.getAttribute('name'),
129 insert = e.getAttribute('insert'),
130 default = e.getAttribute('default'),
131 value = e.getAttribute('value'),
132 mode = mode,
133 separator = e.getAttribute('separator'))
134 if not binding.name: raise InvalidInterface(_("Missing 'name' in binding"))
135 if binding.insert is None and binding.value is None:
136 raise InvalidInterface(_("Missing 'insert' or 'value' in binding"))
137 if binding.insert is not None and binding.value is not None:
138 raise InvalidInterface(_("Binding contains both 'insert' and 'value'"))
139 return binding
140 elif e.name == 'overlay':
141 return OverlayBinding(e.getAttribute('src'), e.getAttribute('mount-point'))
142 else:
143 raise Exception(_("Unknown binding type '%s'") % e.name)
145 def process_depends(item, local_feed_dir):
146 """Internal"""
147 # Note: also called from selections
148 attrs = item.attrs
149 dep_iface = item.getAttribute('interface')
150 if not dep_iface:
151 raise InvalidInterface(_("Missing 'interface' on <%s>") % item.name)
152 if dep_iface.startswith('./'):
153 if local_feed_dir:
154 dep_iface = os.path.abspath(os.path.join(local_feed_dir, dep_iface))
155 # (updates the element too, in case we write it out again)
156 attrs['interface'] = dep_iface
157 else:
158 raise InvalidInterface(_('Relative interface URI "%s" in non-local feed') % dep_iface)
159 dependency = InterfaceDependency(dep_iface, element = item)
161 for e in item.childNodes:
162 if e.uri != XMLNS_IFACE: continue
163 if e.name in binding_names:
164 dependency.bindings.append(process_binding(e))
165 elif e.name == 'version':
166 dependency.restrictions.append(
167 VersionRangeRestriction(not_before = parse_version(e.getAttribute('not-before')),
168 before = parse_version(e.getAttribute('before'))))
169 return dependency
171 def N_(message): return message
173 insecure = Stability(0, N_('insecure'), _('This is a security risk'))
174 buggy = Stability(5, N_('buggy'), _('Known to have serious bugs'))
175 developer = Stability(10, N_('developer'), _('Work-in-progress - bugs likely'))
176 testing = Stability(20, N_('testing'), _('Stability unknown - please test!'))
177 stable = Stability(30, N_('stable'), _('Tested - no serious problems found'))
178 packaged = Stability(35, N_('packaged'), _('Supplied by the local package manager'))
179 preferred = Stability(40, N_('preferred'), _('Best of all - must be set manually'))
181 del N_
183 class Restriction(object):
184 """A Restriction limits the allowed implementations of an Interface."""
185 __slots__ = []
187 def meets_restriction(self, impl):
188 """Called by the L{solver.Solver} to check whether a particular implementation is acceptable.
189 @return: False if this implementation is not a possibility
190 @rtype: bool
192 raise NotImplementedError(_("Abstract"))
194 class VersionRestriction(Restriction):
195 """Only select implementations with a particular version number.
196 @since: 0.40"""
198 def __init__(self, version):
199 """@param version: the required version number
200 @see: L{parse_version}; use this to pre-process the version number
202 self.version = version
204 def meets_restriction(self, impl):
205 return impl.version == self.version
207 def __str__(self):
208 return _("(restriction: version = %s)") % format_version(self.version)
210 class VersionRangeRestriction(Restriction):
211 """Only versions within the given range are acceptable"""
212 __slots__ = ['before', 'not_before']
214 def __init__(self, before, not_before):
215 """@param before: chosen versions must be earlier than this
216 @param not_before: versions must be at least this high
217 @see: L{parse_version}; use this to pre-process the versions
219 self.before = before
220 self.not_before = not_before
222 def meets_restriction(self, impl):
223 if self.not_before and impl.version < self.not_before:
224 return False
225 if self.before and impl.version >= self.before:
226 return False
227 return True
229 def __str__(self):
230 if self.not_before is not None or self.before is not None:
231 range = ''
232 if self.not_before is not None:
233 range += format_version(self.not_before) + ' <= '
234 range += 'version'
235 if self.before is not None:
236 range += ' < ' + format_version(self.before)
237 else:
238 range = 'none'
239 return _("(restriction: %s)") % range
241 class Binding(object):
242 """Information about how the choice of a Dependency is made known
243 to the application being run."""
245 class EnvironmentBinding(Binding):
246 """Indicate the chosen implementation using an environment variable."""
247 __slots__ = ['name', 'insert', 'default', 'mode', 'value']
249 PREPEND = 'prepend'
250 APPEND = 'append'
251 REPLACE = 'replace'
253 def __init__(self, name, insert, default = None, mode = PREPEND,
254 value=None, separator=None):
256 mode argument added in version 0.28
257 value argument added in version 0.52
259 self.name = name
260 self.insert = insert
261 self.default = default
262 self.mode = mode
263 self.value = value
264 if separator is None:
265 self.separator = os.pathsep
266 else:
267 self.separator = separator
270 def __str__(self):
271 return _("<environ %(name)s %(mode)s %(insert)s %(value)s>") % {'name': self.name,'mode': self.mode, 'insert': self.insert, 'value': self.value}
273 __repr__ = __str__
275 def get_value(self, path, old_value):
276 """Calculate the new value of the environment variable after applying this binding.
277 @param path: the path to the selected implementation
278 @param old_value: the current value of the environment variable
279 @return: the new value for the environment variable"""
281 if self.insert is not None:
282 extra = os.path.join(path, self.insert)
283 else:
284 assert self.value is not None
285 extra = self.value
287 if self.mode == EnvironmentBinding.REPLACE:
288 return extra
290 if old_value is None:
291 old_value = self.default or defaults.get(self.name, None)
292 if old_value is None:
293 return extra
294 if self.mode == EnvironmentBinding.PREPEND:
295 return extra + self.separator + old_value
296 else:
297 return old_value + self.separator + extra
299 def _toxml(self, doc):
300 """Create a DOM element for this binding.
301 @param doc: document to use to create the element
302 @return: the new element
304 env_elem = doc.createElementNS(XMLNS_IFACE, 'environment')
305 env_elem.setAttributeNS(None, 'name', self.name)
306 if self.insert is not None:
307 env_elem.setAttributeNS(None, 'insert', self.insert)
308 else:
309 env_elem.setAttributeNS(None, 'value', self.value)
310 if self.default:
311 env_elem.setAttributeNS(None, 'default', self.default)
312 return env_elem
314 class OverlayBinding(Binding):
315 """Make the chosen implementation available by overlaying it onto another part of the file-system.
316 This is to support legacy programs which use hard-coded paths."""
317 __slots__ = ['src', 'mount_point']
319 def __init__(self, src, mount_point):
320 self.src = src
321 self.mount_point = mount_point
323 def __str__(self):
324 return _("<overlay %(src)s on %(mount_point)s>") % {'src': self.src or '.', 'mount_point': self.mount_point or '/'}
326 __repr__ = __str__
328 def _toxml(self, doc):
329 """Create a DOM element for this binding.
330 @param doc: document to use to create the element
331 @return: the new element
333 env_elem = doc.createElementNS(XMLNS_IFACE, 'overlay')
334 if self.src is not None:
335 env_elem.setAttributeNS(None, 'src', self.src)
336 if self.mount_point is not None:
337 env_elem.setAttributeNS(None, 'mount-point', self.mount_point)
338 return env_elem
340 class Feed(object):
341 """An interface's feeds are other interfaces whose implementations can also be
342 used as implementations of this interface."""
343 __slots__ = ['uri', 'os', 'machine', 'user_override', 'langs']
344 def __init__(self, uri, arch, user_override, langs = None):
345 self.uri = uri
346 # This indicates whether the feed comes from the user's overrides
347 # file. If true, writer.py will write it when saving.
348 self.user_override = user_override
349 self.os, self.machine = _split_arch(arch)
350 self.langs = langs
352 def __str__(self):
353 return "<Feed from %s>" % self.uri
354 __repr__ = __str__
356 arch = property(lambda self: _join_arch(self.os, self.machine))
358 class Dependency(object):
359 """A Dependency indicates that an Implementation requires some additional
360 code to function. This is an abstract base class.
361 @ivar qdom: the XML element for this Dependency (since 0launch 0.51)
362 @type qdom: L{qdom.Element}
363 @ivar metadata: any extra attributes from the XML element
364 @type metadata: {str: str}
366 __slots__ = ['qdom']
368 def __init__(self, element):
369 assert isinstance(element, qdom.Element), type(element) # Use InterfaceDependency instead!
370 self.qdom = element
372 @property
373 def metadata(self):
374 return self.qdom.attrs
376 class InterfaceDependency(Dependency):
377 """A Dependency on a Zero Install interface.
378 @ivar interface: the interface required by this dependency
379 @type interface: str
380 @ivar restrictions: a list of constraints on acceptable implementations
381 @type restrictions: [L{Restriction}]
382 @ivar bindings: how to make the choice of implementation known
383 @type bindings: [L{Binding}]
384 @since: 0.28
386 __slots__ = ['interface', 'restrictions', 'bindings']
388 def __init__(self, interface, restrictions = None, element = None):
389 Dependency.__init__(self, element)
390 assert isinstance(interface, (str, unicode))
391 assert interface
392 self.interface = interface
393 if restrictions is None:
394 self.restrictions = []
395 else:
396 self.restrictions = restrictions
397 self.bindings = []
399 def __str__(self):
400 return _("<Dependency on %(interface)s; bindings: %(bindings)s%(restrictions)s>") % {'interface': self.interface, 'bindings': self.bindings, 'restrictions': self.restrictions}
402 class RetrievalMethod(object):
403 """A RetrievalMethod provides a way to fetch an implementation."""
404 __slots__ = []
406 class DownloadSource(RetrievalMethod):
407 """A DownloadSource provides a way to fetch an implementation."""
408 __slots__ = ['implementation', 'url', 'size', 'extract', 'start_offset', 'type']
410 def __init__(self, implementation, url, size, extract, start_offset = 0, type = None):
411 self.implementation = implementation
412 self.url = url
413 self.size = size
414 self.extract = extract
415 self.start_offset = start_offset
416 self.type = type # MIME type - see unpack.py
418 def prepare(self, fetcher, force, impl_hint):
420 class StepCommand(object):
421 __slots__ = ['blocker', '_stream']
423 def __init__(s):
424 s.blocker, s._stream = fetcher.download_archive(self, force = force, impl_hint = impl_hint)
426 def run(s, tmpdir):
427 s._stream.seek(0)
428 unpack.unpack_archive_over(self.url, s._stream, tmpdir,
429 extract = self.extract,
430 type = self.type,
431 start_offset = self.start_offset or 0)
432 return StepCommand()
435 class UnpackArchive(object):
436 """An UnpackArchive step provides unpacks/extracts an archive.
438 It can be used inside a Recipe."""
439 __slots__ = ['path', 'extract', 'type']
441 def __init__(self, path, extract, type):
442 self.path = path
443 self.extract = extract
444 self.type = type
446 def prepare(self, fetcher, force, impl_hint):
448 class StepCommand(object):
449 __slots__ = ['blocker']
451 def __init__(s):
452 s.blocker = None
454 def run(s, tmpdir):
455 path = os.path.join(tmpdir, self.path)
456 stream = open(path, 'rb')
457 stream.seek(0)
459 unpack.unpack_archive_over(path, stream, tmpdir,
460 extract = self.extract,
461 type = self.type,
462 start_offset = 0)
464 os.unlink(path)
466 return StepCommand()
468 class Recipe(RetrievalMethod):
469 """Get an implementation by following a series of steps.
470 @ivar size: the combined download sizes from all the steps
471 @type size: int
472 @ivar steps: the sequence of steps which must be performed
473 @type steps: [L{RetrievalMethod}]"""
474 __slots__ = ['steps']
476 def __init__(self):
477 self.steps = []
479 size = property(lambda self: sum([x.size for x in self.steps]))
481 class DistributionSource(RetrievalMethod):
482 """A package that is installed using the distribution's tools (including PackageKit).
483 @ivar install: a function to call to install this package
484 @type install: (L{handler.Handler}) -> L{tasks.Blocker}
485 @ivar package_id: the package name, in a form recognised by the distribution's tools
486 @type package_id: str
487 @ivar size: the download size in bytes
488 @type size: int
489 @ivar needs_confirmation: whether the user should be asked to confirm before calling install()
490 @type needs_confirmation: bool"""
492 __slots__ = ['package_id', 'size', 'install', 'needs_confirmation']
494 def __init__(self, package_id, size, install, needs_confirmation = True):
495 RetrievalMethod.__init__(self)
496 self.package_id = package_id
497 self.size = size
498 self.install = install
499 self.needs_confirmation = needs_confirmation
501 class Command(object):
502 """A Command is a way of running an Implementation as a program."""
504 __slots__ = ['qdom', '_depends', '_local_dir', '_runner']
506 def __init__(self, qdom, local_dir):
507 """@param qdom: the <command> element
508 @param local_dir: the directory containing the feed (for relative dependencies), or None if not local
510 assert qdom.name == 'command', 'not <command>: %s' % qdom
511 self.qdom = qdom
512 self._local_dir = local_dir
513 self._depends = None
515 path = property(lambda self: self.qdom.attrs.get("path", None))
517 def _toxml(self, doc, prefixes):
518 return self.qdom.toDOM(doc, prefixes)
520 @property
521 def requires(self):
522 if self._depends is None:
523 self._runner = None
524 depends = []
525 for child in self.qdom.childNodes:
526 if child.name == 'requires':
527 dep = process_depends(child, self._local_dir)
528 depends.append(dep)
529 elif child.name == 'runner':
530 if self._runner:
531 raise InvalidInterface(_("Multiple <runner>s in <command>!"))
532 dep = process_depends(child, self._local_dir)
533 depends.append(dep)
534 self._runner = dep
535 self._depends = depends
536 return self._depends
538 def get_runner(self):
539 self.requires # (sets _runner)
540 return self._runner
542 class Implementation(object):
543 """An Implementation is a package which implements an Interface.
544 @ivar download_sources: list of methods of getting this implementation
545 @type download_sources: [L{RetrievalMethod}]
546 @ivar feed: the feed owning this implementation (since 0.32)
547 @type feed: [L{ZeroInstallFeed}]
548 @ivar bindings: how to tell this component where it itself is located (since 0.31)
549 @type bindings: [Binding]
550 @ivar upstream_stability: the stability reported by the packager
551 @type upstream_stability: [insecure | buggy | developer | testing | stable | packaged]
552 @ivar user_stability: the stability as set by the user
553 @type upstream_stability: [insecure | buggy | developer | testing | stable | packaged | preferred]
554 @ivar langs: natural languages supported by this package
555 @type langs: str
556 @ivar requires: interfaces this package depends on
557 @type requires: [L{Dependency}]
558 @ivar commands: ways to execute as a program
559 @type commands: {str: Command}
560 @ivar metadata: extra metadata from the feed
561 @type metadata: {"[URI ]localName": str}
562 @ivar id: a unique identifier for this Implementation
563 @ivar version: a parsed version number
564 @ivar released: release date
565 @ivar local_path: the directory containing this local implementation, or None if it isn't local (id isn't a path)
566 @type local_path: str | None
567 @ivar requires_root_install: whether the user will need admin rights to use this
568 @type requires_root_install: bool
571 # Note: user_stability shouldn't really be here
573 __slots__ = ['upstream_stability', 'user_stability', 'langs',
574 'requires', 'metadata', 'download_sources', 'commands',
575 'id', 'feed', 'version', 'released', 'bindings', 'machine']
577 def __init__(self, feed, id):
578 assert id
579 self.feed = feed
580 self.id = id
581 self.user_stability = None
582 self.upstream_stability = None
583 self.metadata = {} # [URI + " "] + localName -> value
584 self.requires = []
585 self.version = None
586 self.released = None
587 self.download_sources = []
588 self.langs = ""
589 self.machine = None
590 self.bindings = []
591 self.commands = {}
593 def get_stability(self):
594 return self.user_stability or self.upstream_stability or testing
596 def __str__(self):
597 return self.id
599 def __repr__(self):
600 return "v%s (%s)" % (self.get_version(), self.id)
602 def __cmp__(self, other):
603 """Newer versions come first"""
604 d = cmp(other.version, self.version)
605 if d: return d
606 # If the version number is the same, just give a stable sort order, and
607 # ensure that two different implementations don't compare equal.
608 d = cmp(other.feed.url, self.feed.url)
609 if d: return d
610 return cmp(other.id, self.id)
612 def get_version(self):
613 """Return the version as a string.
614 @see: L{format_version}
616 return format_version(self.version)
618 arch = property(lambda self: _join_arch(self.os, self.machine))
620 os = None
621 local_path = None
622 digests = None
623 requires_root_install = False
625 def _get_main(self):
626 """"@deprecated: use commands["run"] instead"""
627 main = self.commands.get("run", None)
628 if main is not None:
629 return main.path
630 return None
631 def _set_main(self, path):
632 """"@deprecated: use commands["run"] instead"""
633 if path is None:
634 if "run" in self.commands:
635 del self.commands["run"]
636 else:
637 self.commands["run"] = Command(qdom.Element(XMLNS_IFACE, 'command', {'path': path}), None)
638 main = property(_get_main, _set_main)
640 def is_available(self, stores):
641 """Is this Implementation available locally?
642 (a local implementation, an installed distribution package, or a cached ZeroInstallImplementation)
643 @rtype: bool
644 @since: 0.53
646 raise NotImplementedError("abstract")
648 @property
649 def best_download_source(self):
650 """Return the best download source for this implementation.
651 @rtype: L{model.RetrievalMethod}"""
652 if self.download_sources:
653 return self.download_sources[0]
654 return None
656 class DistributionImplementation(Implementation):
657 """An implementation provided by the distribution. Information such as the version
658 comes from the package manager.
659 @since: 0.28"""
660 __slots__ = ['distro', 'installed']
662 def __init__(self, feed, id, distro):
663 assert id.startswith('package:')
664 Implementation.__init__(self, feed, id)
665 self.distro = distro
666 self.installed = False
668 @property
669 def requires_root_install(self):
670 return not self.installed
672 def is_available(self, stores):
673 return self.installed
675 class ZeroInstallImplementation(Implementation):
676 """An implementation where all the information comes from Zero Install.
677 @ivar digests: a list of "algorith=value" strings (since 0.45)
678 @type digests: [str]
679 @since: 0.28"""
680 __slots__ = ['os', 'size', 'digests', 'local_path']
682 def __init__(self, feed, id, local_path):
683 """id can be a local path (string starting with /) or a manifest hash (eg "sha1=XXX")"""
684 assert not id.startswith('package:'), id
685 Implementation.__init__(self, feed, id)
686 self.size = None
687 self.os = None
688 self.digests = []
689 self.local_path = local_path
691 # Deprecated
692 dependencies = property(lambda self: dict([(x.interface, x) for x in self.requires
693 if isinstance(x, InterfaceDependency)]))
695 def add_download_source(self, url, size, extract, start_offset = 0, type = None):
696 """Add a download source."""
697 self.download_sources.append(DownloadSource(self, url, size, extract, start_offset, type))
699 def set_arch(self, arch):
700 self.os, self.machine = _split_arch(arch)
701 arch = property(lambda self: _join_arch(self.os, self.machine), set_arch)
703 def is_available(self, stores):
704 if self.local_path is not None:
705 return os.path.exists(self.local_path)
706 if self.digests:
707 path = stores.lookup_maybe(self.digests)
708 return path is not None
709 return False # (0compile creates fake entries with no digests)
711 @property
712 def best_digest(self):
713 """Return the best digest for this implementation
714 @return: tuple (alg, digest) or None"""
715 from zeroinstall.zerostore import manifest
716 best_alg = None
717 for digest in self.digests:
718 alg_name = digest.split('=', 1)[0]
719 alg = manifest.algorithms.get(alg_name, None)
720 if alg and (best_alg is None or best_alg.rating < alg.rating):
721 best_alg = alg
722 best_digest = digest
723 if best_alg:
724 return (best_alg, best_digest)
725 else:
726 return None
728 def retrieve(self, fetcher, retrieval_method, stores, force = False):
729 """Retrieve an implementation.
730 @param retrieval_method: a way of getting the implementation (e.g. an Archive or a Recipe)
731 @type retrieval_method: L{model.RetrievalMethod}
732 @param stores: where to store the downloaded implementation
733 @type stores: L{zerostore.Stores}
734 @param force: whether to abort and restart an existing download
735 @rtype: L{tasks.Blocker}"""
736 best = self.best_digest
738 if best is None:
739 if not self.digests:
740 raise SafeException(_("No <manifest-digest> given for '%(implementation)s' version %(version)s") %
741 {'implementation': self.feed.get_name(), 'version': self.get_version()})
742 raise SafeException(_("Unknown digest algorithms '%(algorithms)s' for '%(implementation)s' version %(version)s") %
743 {'algorithms': self.digests, 'implementation': self.feed.get_name(), 'version': self.get_version()})
744 else:
745 alg, required_digest = best
747 @tasks.async
748 def retrieve():
749 if isinstance(retrieval_method, DownloadSource):
750 blocker, stream = fetcher.download_archive(retrieval_method, force = force, impl_hint = self)
751 yield blocker
752 tasks.check(blocker)
754 stream.seek(0)
755 fetcher._add_to_cache(required_digest, stores, retrieval_method, stream)
756 elif isinstance(retrieval_method, Recipe):
757 blocker = fetcher.cook(required_digest, retrieval_method, stores, force, impl_hint = self)
758 yield blocker
759 tasks.check(blocker)
760 else:
761 raise Exception(_("Unknown download type for '%s'") % retrieval_method)
763 fetcher.handler.impl_added_to_store(self)
764 return retrieve()
766 class Interface(object):
767 """An Interface represents some contract of behaviour.
768 @ivar uri: the URI for this interface.
769 @ivar stability_policy: user's configured policy.
770 Implementations at this level or higher are preferred.
771 Lower levels are used only if there is no other choice.
773 __slots__ = ['uri', 'stability_policy', 'extra_feeds']
775 implementations = property(lambda self: self._main_feed.implementations)
776 name = property(lambda self: self._main_feed.name)
777 description = property(lambda self: self._main_feed.description)
778 summary = property(lambda self: self._main_feed.summary)
779 last_modified = property(lambda self: self._main_feed.last_modified)
780 feeds = property(lambda self: self.extra_feeds + self._main_feed.feeds)
781 metadata = property(lambda self: self._main_feed.metadata)
783 last_checked = property(lambda self: self._main_feed.last_checked)
785 def __init__(self, uri):
786 assert uri
787 if uri.startswith('http:') or uri.startswith('https:') or os.path.isabs(uri):
788 self.uri = uri
789 else:
790 raise SafeException(_("Interface name '%s' doesn't start "
791 "with 'http:' or 'https:'") % uri)
792 self.reset()
794 def _get_feed_for(self):
795 retval = {}
796 for key in self._main_feed.feed_for:
797 retval[key] = True
798 return retval
799 feed_for = property(_get_feed_for) # Deprecated (used by 0publish)
801 def reset(self):
802 self.extra_feeds = []
803 self.stability_policy = None
805 def get_name(self):
806 from zeroinstall.injector.iface_cache import iface_cache
807 feed = iface_cache.get_feed(self.uri)
808 if feed:
809 return feed.get_name()
810 return '(' + os.path.basename(self.uri) + ')'
812 def __repr__(self):
813 return _("<Interface %s>") % self.uri
815 def set_stability_policy(self, new):
816 assert new is None or isinstance(new, Stability)
817 self.stability_policy = new
819 def get_feed(self, url):
820 #import warnings
821 #warnings.warn("use iface_cache.get_feed instead", DeprecationWarning, 2)
822 for x in self.extra_feeds:
823 if x.uri == url:
824 return x
825 #return self._main_feed.get_feed(url)
826 return None
828 def get_metadata(self, uri, name):
829 return self._main_feed.get_metadata(uri, name)
831 @property
832 def _main_feed(self):
833 #import warnings
834 #warnings.warn("use the feed instead", DeprecationWarning, 3)
835 from zeroinstall.injector import policy
836 iface_cache = policy.get_deprecated_singleton_config().iface_cache
837 feed = iface_cache.get_feed(self.uri)
838 if feed is None:
839 return _dummy_feed
840 return feed
842 def _merge_attrs(attrs, item):
843 """Add each attribute of item to a copy of attrs and return the copy.
844 @type attrs: {str: str}
845 @type item: L{qdom.Element}
846 @rtype: {str: str}
848 new = attrs.copy()
849 for a in item.attrs:
850 new[str(a)] = item.attrs[a]
851 return new
853 def _get_long(elem, attr_name):
854 val = elem.getAttribute(attr_name)
855 if val is not None:
856 try:
857 val = int(val)
858 except ValueError:
859 raise SafeException(_("Invalid value for integer attribute '%(attribute_name)s': %(value)s") % {'attribute_name': attr_name, 'value': val})
860 return val
862 class ZeroInstallFeed(object):
863 """A feed lists available implementations of an interface.
864 @ivar url: the URL for this feed
865 @ivar implementations: Implementations in this feed, indexed by ID
866 @type implementations: {str: L{Implementation}}
867 @ivar name: human-friendly name
868 @ivar summaries: short textual description (in various languages, since 0.49)
869 @type summaries: {str: str}
870 @ivar descriptions: long textual description (in various languages, since 0.49)
871 @type descriptions: {str: str}
872 @ivar last_modified: timestamp on signature
873 @ivar last_checked: time feed was last successfully downloaded and updated
874 @ivar feeds: list of <feed> elements in this feed
875 @type feeds: [L{Feed}]
876 @ivar feed_for: interfaces for which this could be a feed
877 @type feed_for: set(str)
878 @ivar metadata: extra elements we didn't understand
880 # _main is deprecated
881 __slots__ = ['url', 'implementations', 'name', 'descriptions', 'first_description', 'summaries', 'first_summary', '_package_implementations',
882 'last_checked', 'last_modified', 'feeds', 'feed_for', 'metadata']
884 def __init__(self, feed_element, local_path = None, distro = None):
885 """Create a feed object from a DOM.
886 @param feed_element: the root element of a feed file
887 @type feed_element: L{qdom.Element}
888 @param local_path: the pathname of this local feed, or None for remote feeds"""
889 self.implementations = {}
890 self.name = None
891 self.summaries = {} # { lang: str }
892 self.first_summary = None
893 self.descriptions = {} # { lang: str }
894 self.first_description = None
895 self.last_modified = None
896 self.feeds = []
897 self.feed_for = set()
898 self.metadata = []
899 self.last_checked = None
900 self._package_implementations = []
902 if distro is not None:
903 import warnings
904 warnings.warn("distro argument is now ignored", DeprecationWarning, 2)
906 if feed_element is None:
907 return # XXX subclass?
909 assert feed_element.name in ('interface', 'feed'), "Root element should be <interface>, not %s" % feed_element
910 assert feed_element.uri == XMLNS_IFACE, "Wrong namespace on root element: %s" % feed_element.uri
912 main = feed_element.getAttribute('main')
913 #if main: warn("Setting 'main' on the root element is deprecated. Put it on a <group> instead")
915 if local_path:
916 self.url = local_path
917 local_dir = os.path.dirname(local_path)
918 else:
919 self.url = feed_element.getAttribute('uri')
920 if not self.url:
921 raise InvalidInterface(_("<interface> uri attribute missing"))
922 local_dir = None # Can't have relative paths
924 min_injector_version = feed_element.getAttribute('min-injector-version')
925 if min_injector_version:
926 if parse_version(min_injector_version) > parse_version(version):
927 raise InvalidInterface(_("This feed requires version %(min_version)s or later of "
928 "Zero Install, but I am only version %(version)s. "
929 "You can get a newer version from http://0install.net") %
930 {'min_version': min_injector_version, 'version': version})
932 for x in feed_element.childNodes:
933 if x.uri != XMLNS_IFACE:
934 self.metadata.append(x)
935 continue
936 if x.name == 'name':
937 self.name = x.content
938 elif x.name == 'description':
939 if self.first_description == None:
940 self.first_description = x.content
941 self.descriptions[x.attrs.get("http://www.w3.org/XML/1998/namespace lang", 'en')] = x.content
942 elif x.name == 'summary':
943 if self.first_summary == None:
944 self.first_summary = x.content
945 self.summaries[x.attrs.get("http://www.w3.org/XML/1998/namespace lang", 'en')] = x.content
946 elif x.name == 'feed-for':
947 feed_iface = x.getAttribute('interface')
948 if not feed_iface:
949 raise InvalidInterface(_('Missing "interface" attribute in <feed-for>'))
950 self.feed_for.add(feed_iface)
951 # Bug report from a Debian/stable user that --feed gets the wrong value.
952 # Can't reproduce (even in a Debian/stable chroot), but add some logging here
953 # in case it happens again.
954 debug(_("Is feed-for %s"), feed_iface)
955 elif x.name == 'feed':
956 feed_src = x.getAttribute('src')
957 if not feed_src:
958 raise InvalidInterface(_('Missing "src" attribute in <feed>'))
959 if feed_src.startswith('http:') or feed_src.startswith('https:') or local_path:
960 langs = x.getAttribute('langs')
961 if langs: langs = langs.replace('_', '-')
962 self.feeds.append(Feed(feed_src, x.getAttribute('arch'), False, langs = langs))
963 else:
964 raise InvalidInterface(_("Invalid feed URL '%s'") % feed_src)
965 else:
966 self.metadata.append(x)
968 if not self.name:
969 raise InvalidInterface(_("Missing <name> in feed"))
970 if not self.summary:
971 raise InvalidInterface(_("Missing <summary> in feed"))
973 def process_group(group, group_attrs, base_depends, base_bindings, base_commands):
974 for item in group.childNodes:
975 if item.uri != XMLNS_IFACE: continue
977 if item.name not in ('group', 'implementation', 'package-implementation'):
978 continue
980 # We've found a group or implementation. Scan for dependencies,
981 # bindings and commands. Doing this here means that:
982 # - We can share the code for groups and implementations here.
983 # - The order doesn't matter, because these get processed first.
984 # A side-effect is that the document root cannot contain
985 # these.
987 depends = base_depends[:]
988 bindings = base_bindings[:]
989 commands = base_commands.copy()
991 for attr, command in [('main', 'run'),
992 ('self-test', 'test')]:
993 value = item.attrs.get(attr, None)
994 if value is not None:
995 commands[command] = Command(qdom.Element(XMLNS_IFACE, 'command', {'path': value}), None)
997 for child in item.childNodes:
998 if child.uri != XMLNS_IFACE: continue
999 if child.name == 'requires':
1000 dep = process_depends(child, local_dir)
1001 depends.append(dep)
1002 elif child.name == 'command':
1003 command_name = child.attrs.get('name', None)
1004 if not command_name:
1005 raise InvalidInterface('Missing name for <command>')
1006 commands[command_name] = Command(child, local_dir)
1007 elif child.name in binding_names:
1008 bindings.append(process_binding(child))
1010 compile_command = item.attrs.get('http://zero-install.sourceforge.net/2006/namespaces/0compile command')
1011 if compile_command is not None:
1012 commands['compile'] = Command(qdom.Element(XMLNS_IFACE, 'command', {'shell-command': compile_command}), None)
1014 item_attrs = _merge_attrs(group_attrs, item)
1016 if item.name == 'group':
1017 process_group(item, item_attrs, depends, bindings, commands)
1018 elif item.name == 'implementation':
1019 process_impl(item, item_attrs, depends, bindings, commands)
1020 elif item.name == 'package-implementation':
1021 if depends:
1022 warn("A <package-implementation> with dependencies in %s!", self.url)
1023 self._package_implementations.append((item, item_attrs))
1024 else:
1025 assert 0
1027 def process_impl(item, item_attrs, depends, bindings, commands):
1028 id = item.getAttribute('id')
1029 if id is None:
1030 raise InvalidInterface(_("Missing 'id' attribute on %s") % item)
1031 local_path = item_attrs.get('local-path')
1032 if local_dir and local_path:
1033 abs_local_path = os.path.abspath(os.path.join(local_dir, local_path))
1034 impl = ZeroInstallImplementation(self, id, abs_local_path)
1035 elif local_dir and (id.startswith('/') or id.startswith('.')):
1036 # For old feeds
1037 id = os.path.abspath(os.path.join(local_dir, id))
1038 impl = ZeroInstallImplementation(self, id, id)
1039 else:
1040 impl = ZeroInstallImplementation(self, id, None)
1041 if '=' in id:
1042 # In older feeds, the ID was the (single) digest
1043 impl.digests.append(id)
1044 if id in self.implementations:
1045 warn(_("Duplicate ID '%(id)s' in feed '%(feed)s'"), {'id': id, 'feed': self})
1046 self.implementations[id] = impl
1048 impl.metadata = item_attrs
1049 try:
1050 version_mod = item_attrs.get('version-modifier', None)
1051 if version_mod:
1052 item_attrs['version'] += version_mod
1053 del item_attrs['version-modifier']
1054 version = item_attrs['version']
1055 except KeyError:
1056 raise InvalidInterface(_("Missing version attribute"))
1057 impl.version = parse_version(version)
1059 impl.commands = commands
1061 impl.released = item_attrs.get('released', None)
1062 impl.langs = item_attrs.get('langs', '').replace('_', '-')
1064 size = item.getAttribute('size')
1065 if size:
1066 impl.size = int(size)
1067 impl.arch = item_attrs.get('arch', None)
1068 try:
1069 stability = stability_levels[str(item_attrs['stability'])]
1070 except KeyError:
1071 stab = str(item_attrs['stability'])
1072 if stab != stab.lower():
1073 raise InvalidInterface(_('Stability "%s" invalid - use lower case!') % item_attrs.stability)
1074 raise InvalidInterface(_('Stability "%s" invalid') % item_attrs['stability'])
1075 if stability >= preferred:
1076 raise InvalidInterface(_("Upstream can't set stability to preferred!"))
1077 impl.upstream_stability = stability
1079 impl.bindings = bindings
1080 impl.requires = depends
1082 for elem in item.childNodes:
1083 if elem.uri != XMLNS_IFACE: continue
1084 if elem.name == 'archive':
1085 url = elem.getAttribute('href')
1086 if not url:
1087 raise InvalidInterface(_("Missing href attribute on <archive>"))
1088 size = elem.getAttribute('size')
1089 if not size:
1090 raise InvalidInterface(_("Missing size attribute on <archive>"))
1091 impl.add_download_source(url = url, size = int(size),
1092 extract = elem.getAttribute('extract'),
1093 start_offset = _get_long(elem, 'start-offset'),
1094 type = elem.getAttribute('type'))
1095 elif elem.name == 'manifest-digest':
1096 for aname, avalue in elem.attrs.iteritems():
1097 if ' ' not in aname:
1098 impl.digests.append('%s=%s' % (aname, avalue))
1099 elif elem.name == 'recipe':
1100 recipe = Recipe()
1101 for recipe_step in elem.childNodes:
1102 if recipe_step.uri == XMLNS_IFACE and recipe_step.name == 'archive':
1103 url = recipe_step.getAttribute('href')
1104 if not url:
1105 raise InvalidInterface(_("Missing href attribute on <archive>"))
1106 size = recipe_step.getAttribute('size')
1107 if not size:
1108 raise InvalidInterface(_("Missing size attribute on <archive>"))
1109 recipe.steps.append(DownloadSource(None, url = url, size = int(size),
1110 extract = recipe_step.getAttribute('extract'),
1111 start_offset = _get_long(recipe_step, 'start-offset'),
1112 type = recipe_step.getAttribute('type')))
1113 elif recipe_step.uri == XMLNS_IFACE and recipe_step.name == 'unpack':
1114 path = recipe_step.getAttribute('path')
1115 if not path:
1116 raise InvalidInterface(_("Missing path attribute on <unpack>"))
1117 recipe.steps.append(UnpackArchive(path = path,
1118 extract = recipe_step.getAttribute('extract'),
1119 type = recipe_step.getAttribute('type')))
1120 else:
1121 info(_("Unknown step '%s' in recipe; skipping recipe"), recipe_step.name)
1122 break
1123 else:
1124 impl.download_sources.append(recipe)
1126 root_attrs = {'stability': 'testing'}
1127 root_commands = {}
1128 if main:
1129 info("Note: @main on document element is deprecated in %s", self)
1130 root_commands['run'] = Command(qdom.Element(XMLNS_IFACE, 'command', {'path': main}), None)
1131 process_group(feed_element, root_attrs, [], [], root_commands)
1133 def get_distro_feed(self):
1134 """Does this feed contain any <pacakge-implementation> elements?
1135 i.e. is it worth asking the package manager for more information?
1136 @return: the URL of the virtual feed, or None
1137 @since: 0.49"""
1138 if self._package_implementations:
1139 return "distribution:" + self.url
1140 return None
1142 def get_package_impls(self, distro):
1143 """Find the best <pacakge-implementation> element(s) for the given distribution.
1144 @param distro: the distribution to use to rate them
1145 @type distro: L{distro.Distribution}
1146 @return: a list of tuples for the best ranked elements
1147 @rtype: [str]
1148 @since: 0.49"""
1149 best_score = 0
1150 best_impls = []
1152 for item, item_attrs in self._package_implementations:
1153 distro_names = item_attrs.get('distributions', '')
1154 for distro_name in distro_names.split(' '):
1155 score = distro.get_score(distro_name)
1156 if score > best_score:
1157 best_score = score
1158 best_impls = []
1159 if score == best_score:
1160 best_impls.append((item, item_attrs))
1161 return best_impls
1163 def get_name(self):
1164 return self.name or '(' + os.path.basename(self.url) + ')'
1166 def __repr__(self):
1167 return _("<Feed %s>") % self.url
1169 def set_stability_policy(self, new):
1170 assert new is None or isinstance(new, Stability)
1171 self.stability_policy = new
1173 def get_feed(self, url):
1174 for x in self.feeds:
1175 if x.uri == url:
1176 return x
1177 return None
1179 def add_metadata(self, elem):
1180 self.metadata.append(elem)
1182 def get_metadata(self, uri, name):
1183 """Return a list of interface metadata elements with this name and namespace URI."""
1184 return [m for m in self.metadata if m.name == name and m.uri == uri]
1186 @property
1187 def summary(self):
1188 return _best_language_match(self.summaries) or self.first_summary
1190 @property
1191 def description(self):
1192 return _best_language_match(self.descriptions) or self.first_description
1194 class DummyFeed(object):
1195 """Temporary class used during API transition."""
1196 last_modified = None
1197 name = '-'
1198 last_checked = property(lambda self: None)
1199 implementations = property(lambda self: {})
1200 feeds = property(lambda self: [])
1201 summary = property(lambda self: '-')
1202 description = property(lambda self: '')
1203 def get_name(self): return self.name
1204 def get_feed(self, url): return None
1205 def get_metadata(self, uri, name): return []
1206 _dummy_feed = DummyFeed()
1208 def unescape(uri):
1209 """Convert each %20 to a space, etc.
1210 @rtype: str"""
1211 uri = uri.replace('#', '/')
1212 if '%' not in uri: return uri
1213 return re.sub('%[0-9a-fA-F][0-9a-fA-F]',
1214 lambda match: chr(int(match.group(0)[1:], 16)),
1215 uri).decode('utf-8')
1217 def escape(uri):
1218 """Convert each space to %20, etc
1219 @rtype: str"""
1220 return re.sub('[^-_.a-zA-Z0-9]',
1221 lambda match: '%%%02x' % ord(match.group(0)),
1222 uri.encode('utf-8'))
1224 def _pretty_escape(uri):
1225 """Convert each space to %20, etc
1226 : is preserved and / becomes #. This makes for nicer strings,
1227 and may replace L{escape} everywhere in future.
1228 @rtype: str"""
1229 if os.name == "posix":
1230 # Only preserve : on Posix systems
1231 preserveRegex = '[^-_.a-zA-Z0-9:/]'
1232 else:
1233 # Other OSes may not allow the : character in file names
1234 preserveRegex = '[^-_.a-zA-Z0-9/]'
1235 return re.sub(preserveRegex,
1236 lambda match: '%%%02x' % ord(match.group(0)),
1237 uri.encode('utf-8')).replace('/', '#')
1239 def canonical_iface_uri(uri):
1240 """If uri is a relative path, convert to an absolute one.
1241 A "file:///foo" URI is converted to "/foo".
1242 An "alias:prog" URI expands to the URI in the 0alias script
1243 Otherwise, return it unmodified.
1244 @rtype: str
1245 @raise SafeException: if uri isn't valid
1247 if uri.startswith('http://') or uri.startswith('https://'):
1248 if uri.count("/") < 3:
1249 raise SafeException(_("Missing / after hostname in URI '%s'") % uri)
1250 return uri
1251 elif uri.startswith('file:///'):
1252 return uri[7:]
1253 elif uri.startswith('alias:'):
1254 from zeroinstall import alias, support
1255 alias_prog = uri[6:]
1256 if not os.path.isabs(alias_prog):
1257 full_path = support.find_in_path(alias_prog)
1258 if not full_path:
1259 raise alias.NotAnAliasScript("Not found in $PATH: " + alias_prog)
1260 else:
1261 full_path = alias_prog
1262 interface_uri, main = alias.parse_script(full_path)
1263 return interface_uri
1264 else:
1265 iface_uri = os.path.realpath(uri)
1266 if os.path.isfile(iface_uri):
1267 return iface_uri
1268 raise SafeException(_("Bad interface name '%(uri)s'.\n"
1269 "(doesn't start with 'http:', and "
1270 "doesn't exist as a local file '%(interface_uri)s' either)") %
1271 {'uri': uri, 'interface_uri': iface_uri})
1273 _version_mod_to_value = {
1274 'pre': -2,
1275 'rc': -1,
1276 '': 0,
1277 'post': 1,
1280 # Reverse mapping
1281 _version_value_to_mod = {}
1282 for x in _version_mod_to_value: _version_value_to_mod[_version_mod_to_value[x]] = x
1283 del x
1285 _version_re = re.compile('-([a-z]*)')
1287 def parse_version(version_string):
1288 """Convert a version string to an internal representation.
1289 The parsed format can be compared quickly using the standard Python functions.
1290 - Version := DottedList ("-" Mod DottedList?)*
1291 - DottedList := (Integer ("." Integer)*)
1292 @rtype: tuple (opaque)
1293 @raise SafeException: if the string isn't a valid version
1294 @since: 0.24 (moved from L{reader}, from where it is still available):"""
1295 if version_string is None: return None
1296 parts = _version_re.split(version_string)
1297 if parts[-1] == '':
1298 del parts[-1] # Ends with a modifier
1299 else:
1300 parts.append('')
1301 if not parts:
1302 raise SafeException(_("Empty version string!"))
1303 l = len(parts)
1304 try:
1305 for x in range(0, l, 2):
1306 part = parts[x]
1307 if part:
1308 parts[x] = map(int, parts[x].split('.'))
1309 else:
1310 parts[x] = [] # (because ''.split('.') == [''], not [])
1311 for x in range(1, l, 2):
1312 parts[x] = _version_mod_to_value[parts[x]]
1313 return parts
1314 except ValueError, ex:
1315 raise SafeException(_("Invalid version format in '%(version_string)s': %(exception)s") % {'version_string': version_string, 'exception': ex})
1316 except KeyError, ex:
1317 raise SafeException(_("Invalid version modifier in '%(version_string)s': %(exception)s") % {'version_string': version_string, 'exception': ex})
1319 def format_version(version):
1320 """Format a parsed version for display. Undoes the effect of L{parse_version}.
1321 @see: L{Implementation.get_version}
1322 @rtype: str
1323 @since: 0.24"""
1324 version = version[:]
1325 l = len(version)
1326 for x in range(0, l, 2):
1327 version[x] = '.'.join(map(str, version[x]))
1328 for x in range(1, l, 2):
1329 version[x] = '-' + _version_value_to_mod[version[x]]
1330 if version[-1] == '-': del version[-1]
1331 return ''.join(version)