summaryrefslogtreecommitdiff
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-02-21 19:09:05 +0000
committerZac Medico <zmedico@gentoo.org>2009-02-21 19:09:05 +0000
commite708e87e1a5d4e1e2411241382020dbcf4753494 (patch)
tree42dc8ec73a0e609775c1dd7618ace3c2de340932 /pym
parentRevert r12639 and use string.ascii_letters for python-3.0 compatibility. (diff)
downloadportage-idfetch-e708e87e1a5d4e1e2411241382020dbcf4753494.tar.gz
portage-idfetch-e708e87e1a5d4e1e2411241382020dbcf4753494.tar.bz2
portage-idfetch-e708e87e1a5d4e1e2411241382020dbcf4753494.zip
In LazyItemsDict, when a singleton is instantiated, replace the wrapper with
the singleton since the wrapper is no longer needed at this point. svn path=/main/trunk/; revision=12672
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/util.py34
1 files changed, 22 insertions, 12 deletions
diff --git a/pym/portage/util.py b/pym/portage/util.py
index 9a594451..33a61a26 100644
--- a/pym/portage/util.py
+++ b/pym/portage/util.py
@@ -1199,6 +1199,9 @@ class LazyItemsDict(dict):
"""A mapping object that behaves like a standard dict except that it allows
for lazy initialization of values via callable objects. Lazy items can be
overwritten and deleted just as normal items."""
+
+ __slots__ = ('lazy_items',)
+
def __init__(self, initial_items=None):
dict.__init__(self)
self.lazy_items = {}
@@ -1213,18 +1216,9 @@ class LazyItemsDict(dict):
def addLazySingleton(self, item_key, value_callable, *pargs, **kwargs):
"""This is like addLazyItem except value_callable will only be called
a maximum of 1 time and the result will be cached for future requests."""
- class SingletonItem(object):
- def __init__(self, value_callable, *pargs, **kwargs):
- self._callable = value_callable
- self._pargs = pargs
- self._kwargs = kwargs
- self._called = False
- def __call__(self):
- if not self._called:
- self._called = True
- self._value = self._callable(*self._pargs, **self._kwargs)
- return self._value
- self.addLazyItem(item_key, SingletonItem(value_callable, *pargs, **kwargs))
+ self.addLazyItem(item_key,
+ self._SingletonWrapper(self, item_key, value_callable,
+ *pargs, **kwargs))
def update(self, map_obj):
if isinstance(map_obj, LazyItemsDict):
for k in map_obj:
@@ -1250,6 +1244,22 @@ class LazyItemsDict(dict):
del self.lazy_items[item_key]
dict.__delitem__(self, item_key)
+ class _SingletonWrapper(object):
+
+ __slots__ = ('_parent', '_key', '_callable', '_pargs', '_kwargs')
+
+ def __init__(self, parent, key, value_callable, *pargs, **kwargs):
+ self._parent = parent
+ self._key = key
+ self._callable = value_callable
+ self._pargs = pargs
+ self._kwargs = kwargs
+
+ def __call__(self):
+ value = self._callable(*self._pargs, **self._kwargs)
+ self._parent[self._key] = value
+ return value
+
class ConfigProtect(object):
def __init__(self, myroot, protect_list, mask_list):
self.myroot = myroot