Source code for kiwi.component

#
# Kiwi: a Framework and Enhanced Widgets for Python
#
# Copyright (C) 2006 Async Open Source
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
# USA
#
# Author(s): Johan Dahlin <jdahlin@async.com.br>
#            Ali Afshar <aafshar@gmail.com>

import sys

from kiwi import ValueUnset

try:
    from zope.interface import implements, Attribute, Interface
    # pyflakes
    implements, Attribute, Interface
except ImportError:
    class Interface(object):
        def providedBy(cls, impl):
            candidates = (impl,) + impl.__class__.__bases__
            for candidate in candidates:
                for iface in getattr(candidate, '__interfaces__', []):
                    if issubclass(iface, cls):
                        return True
            return False

        providedBy = classmethod(providedBy)

    class Attribute(object):
        def __init__(self, __name__, __doc__=''):
            self.__name__=__name__
            self.__doc__=__doc__

    def implements(iface):
        frame = sys._getframe(1)
        try:
            frame.f_locals.setdefault('__interfaces__', []).append(iface)
        finally:
            del frame

[docs]class AlreadyImplementedError(Exception): """Called when a utility already exists."""
class _UtilityHandler(object): def __init__(self): self._utilities = {} # FIXME: How to replace a utility properly def provide(self, iface, obj, replace=False): if not issubclass(iface, Interface): raise TypeError( "iface must be an Interface subclass and not %r" % iface) if not replace: if iface in self._utilities: raise AlreadyImplementedError("%s is already implemented" % iface) self._utilities[iface] = obj def get(self, iface, default): if not issubclass(iface, Interface): raise TypeError( "iface must be an Interface subclass and not %r" % iface) if not iface in self._utilities: if default is ValueUnset: raise NotImplementedError("No utility provided for %r" % iface) else: return default return self._utilities[iface] def remove(self, iface): if not issubclass(iface, Interface): raise TypeError( "iface must be an Interface subclass and not %r" % iface) if not iface in self._utilities: raise NotImplementedError("No utility provided for %r" % iface) return self._utilities.pop(iface) def clean(self): self._utilities = {}
[docs]def provide_utility(iface, utility, replace=False): """ Set the utility for the named interface. If the utility is already set, an {AlreadyImplementedError} is raised. :param iface: interface to set the utility for. :param utility: utility providing the interface. """ utilities.provide(iface, utility, replace)
[docs]def get_utility(iface, default=ValueUnset): """ Get the utility for the named interface. If the utility is not available (has not been set) a {NotImplementedError} is raised unless default is set. :param iface: an interface :param default: optional, if set return if a utility is not found :returns: the utility """ return utilities.get(iface, default)
[docs]def remove_utility(iface): """ Remove the utility provided for an interface If the utility is not available (has not been set) {NotImplementedError} is raised. :param iface: the interface :returns: the removed utility """ return utilities.remove(iface)
utilities = _UtilityHandler()