2006-09-08 02:26:00 +08:00
|
|
|
def curry(_curried_func, *args, **kwargs):
|
2005-08-02 05:29:52 +08:00
|
|
|
def _curried(*moreargs, **morekwargs):
|
2006-09-08 02:26:00 +08:00
|
|
|
return _curried_func(*(args+moreargs), **dict(kwargs, **morekwargs))
|
2005-08-02 05:29:52 +08:00
|
|
|
return _curried
|
2005-11-04 12:59:46 +08:00
|
|
|
|
2007-07-08 08:39:32 +08:00
|
|
|
def memoize(func, cache, num_args):
|
2007-06-23 13:40:28 +08:00
|
|
|
"""
|
|
|
|
Wrap a function so that results for any argument tuple are stored in
|
|
|
|
'cache'. Note that the args to the function must be usable as dictionary
|
|
|
|
keys.
|
2007-07-08 08:39:32 +08:00
|
|
|
|
|
|
|
Only the first num_args are considered when creating the key.
|
2007-06-23 13:40:28 +08:00
|
|
|
"""
|
|
|
|
def wrapper(*args):
|
2007-07-08 08:39:32 +08:00
|
|
|
mem_args = args[:num_args]
|
|
|
|
if mem_args in cache:
|
|
|
|
return cache[mem_args]
|
2007-06-23 13:40:28 +08:00
|
|
|
result = func(*args)
|
2007-07-08 08:39:32 +08:00
|
|
|
cache[mem_args] = result
|
2007-06-23 13:40:28 +08:00
|
|
|
return result
|
|
|
|
return wrapper
|
|
|
|
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
class Promise(object):
|
2005-11-21 18:41:54 +08:00
|
|
|
"""
|
|
|
|
This is just a base class for the proxy class created in
|
|
|
|
the closure of the lazy function. It can be used to recognize
|
|
|
|
promises in code.
|
|
|
|
"""
|
|
|
|
pass
|
|
|
|
|
2005-11-04 12:59:46 +08:00
|
|
|
def lazy(func, *resultclasses):
|
|
|
|
"""
|
2005-11-07 06:22:02 +08:00
|
|
|
Turns any callable into a lazy evaluated callable. You need to give result
|
|
|
|
classes or types -- at least one is needed so that the automatic forcing of
|
|
|
|
the lazy evaluation code is triggered. Results are not memoized; the
|
|
|
|
function is evaluated on every access.
|
2005-11-04 12:59:46 +08:00
|
|
|
"""
|
2005-11-21 18:41:54 +08:00
|
|
|
class __proxy__(Promise):
|
2005-11-07 06:22:02 +08:00
|
|
|
# This inner class encapsulates the code that should be evaluated
|
|
|
|
# lazily. On calling of one of the magic methods it will force
|
|
|
|
# the evaluation and store the result. Afterwards, the result
|
|
|
|
# is delivered directly. So the result is memoized.
|
2005-11-04 12:59:46 +08:00
|
|
|
def __init__(self, args, kw):
|
2006-05-02 09:31:56 +08:00
|
|
|
self.__func = func
|
|
|
|
self.__args = args
|
|
|
|
self.__kw = kw
|
|
|
|
self.__dispatch = {}
|
|
|
|
for resultclass in resultclasses:
|
|
|
|
self.__dispatch[resultclass] = {}
|
|
|
|
for (k, v) in resultclass.__dict__.items():
|
|
|
|
setattr(self, k, self.__promise__(resultclass, k, v))
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
self._delegate_str = str in resultclasses
|
|
|
|
self._delegate_unicode = unicode in resultclasses
|
|
|
|
assert not (self._delegate_str and self._delegate_unicode), "Cannot call lazy() with both str and unicode return types."
|
|
|
|
if self._delegate_unicode:
|
|
|
|
self.__unicode__ = self.__unicode_cast
|
2005-11-07 06:22:02 +08:00
|
|
|
|
2005-11-04 12:59:46 +08:00
|
|
|
def __promise__(self, klass, funcname, func):
|
2005-11-07 06:22:02 +08:00
|
|
|
# Builds a wrapper around some magic method and registers that magic
|
|
|
|
# method for the given type and method name.
|
2005-11-04 12:59:46 +08:00
|
|
|
def __wrapper__(*args, **kw):
|
2005-11-07 06:22:02 +08:00
|
|
|
# Automatically triggers the evaluation of a lazy value and
|
|
|
|
# applies the given magic method of the result type.
|
2005-11-04 12:59:46 +08:00
|
|
|
res = self.__func(*self.__args, **self.__kw)
|
|
|
|
return self.__dispatch[type(res)][funcname](res, *args, **kw)
|
2005-11-07 06:22:02 +08:00
|
|
|
|
2007-04-26 21:30:48 +08:00
|
|
|
if klass not in self.__dispatch:
|
2005-11-04 12:59:46 +08:00
|
|
|
self.__dispatch[klass] = {}
|
|
|
|
self.__dispatch[klass][funcname] = func
|
|
|
|
return __wrapper__
|
2005-11-07 06:22:02 +08:00
|
|
|
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
def __unicode_cast(self):
|
|
|
|
return self.__func(*self.__args, **self.__kw)
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
# As __str__ is always a method on the type (class), it is looked
|
|
|
|
# up (and found) there first. So we can't just assign to it on a
|
|
|
|
# per-instance basis in __init__.
|
|
|
|
if self._delegate_str:
|
|
|
|
return str(self.__func(*self.__args, **self.__kw))
|
|
|
|
else:
|
|
|
|
return Promise.__str__(self)
|
|
|
|
|
|
|
|
def __cmp__(self, rhs):
|
|
|
|
if self._delegate_str:
|
|
|
|
s = str(self.__func(*self.__args, **self.__kw))
|
|
|
|
elif self._delegate_unicode:
|
|
|
|
s = unicode(self.__func(*self.__args, **self.__kw))
|
|
|
|
else:
|
|
|
|
s = self.__func(*self.__args, **self.__kw)
|
|
|
|
if isinstance(rhs, Promise):
|
|
|
|
return -cmp(rhs, s)
|
|
|
|
else:
|
|
|
|
return cmp(s, rhs)
|
|
|
|
|
|
|
|
def __mod__(self, rhs):
|
|
|
|
if self._delegate_str:
|
|
|
|
return str(self) % rhs
|
|
|
|
elif self._delegate_unicode:
|
|
|
|
return unicode(self) % rhs
|
|
|
|
else:
|
|
|
|
raise AssertionError('__mod__ not supported for non-string types')
|
|
|
|
|
2005-11-04 12:59:46 +08:00
|
|
|
def __wrapper__(*args, **kw):
|
2005-11-07 06:22:02 +08:00
|
|
|
# Creates the proxy object, instead of the actual value.
|
2005-11-04 12:59:46 +08:00
|
|
|
return __proxy__(args, kw)
|
|
|
|
|
|
|
|
return __wrapper__
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
|
|
|
|
def allow_lazy(func, *resultclasses):
|
|
|
|
"""
|
|
|
|
A decorator that allows a function to be called with one or more lazy
|
|
|
|
arguments. If none of the args are lazy, the function is evaluated
|
|
|
|
immediately, otherwise a __proxy__ is returned that will evaluate the
|
|
|
|
function when needed.
|
|
|
|
"""
|
|
|
|
def wrapper(*args, **kwargs):
|
|
|
|
for arg in list(args) + kwargs.values():
|
|
|
|
if isinstance(arg, Promise):
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
return func(*args, **kwargs)
|
|
|
|
return lazy(func, *resultclasses)(*args, **kwargs)
|
|
|
|
return wrapper
|