blob: 8989361f4ca9965e5b446fa9ecea1fb58144fcd9 [file] [log] [blame]
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001"""functools.py - Tools for working with functions and callable objects
Thomas Wouters4d70c3d2006-06-08 14:42:34 +00002"""
3# Python module wrapper for _functools C module
4# to allow utilities written in Python to be added
5# to the functools module.
Łukasz Langa6f692512013-06-05 12:20:24 +02006# Written by Nick Coghlan <ncoghlan at gmail.com>,
7# Raymond Hettinger <python at rcn.com>,
8# and Łukasz Langa <lukasz at langa.pl>.
9# Copyright (C) 2006-2013 Python Software Foundation.
Thomas Wouters73e5a5b2006-06-08 15:35:45 +000010# See C source code for _functools credits/copyright
Thomas Wouters4d70c3d2006-06-08 14:42:34 +000011
Georg Brandl2e7346a2010-07-31 18:09:23 +000012__all__ = ['update_wrapper', 'wraps', 'WRAPPER_ASSIGNMENTS', 'WRAPPER_UPDATES',
Łukasz Langa6f692512013-06-05 12:20:24 +020013 'total_ordering', 'cmp_to_key', 'lru_cache', 'reduce', 'partial',
14 'singledispatch']
Georg Brandl2e7346a2010-07-31 18:09:23 +000015
Antoine Pitroub5b37142012-11-13 21:35:40 +010016try:
17 from _functools import reduce
Brett Cannoncd171c82013-07-04 17:43:24 -040018except ImportError:
Antoine Pitroub5b37142012-11-13 21:35:40 +010019 pass
Łukasz Langa6f692512013-06-05 12:20:24 +020020from abc import get_cache_token
Raymond Hettingerec0e9102012-03-16 01:16:31 -070021from collections import namedtuple
Nick Coghlanf4cb48a2013-11-03 16:41:46 +100022from types import MappingProxyType, MethodType
Łukasz Langa6f692512013-06-05 12:20:24 +020023from weakref import WeakKeyDictionary
Raymond Hettingercbe88132010-08-14 22:22:10 +000024try:
Raymond Hettingerfd541172013-03-01 03:47:57 -080025 from _thread import RLock
Raymond Hettingercbe88132010-08-14 22:22:10 +000026except:
Raymond Hettinger409f6632013-03-01 23:20:13 -080027 class RLock:
Raymond Hettingerf96b2b02013-03-08 21:11:55 -070028 'Dummy reentrant lock for builds without threads'
Raymond Hettinger409f6632013-03-01 23:20:13 -080029 def __enter__(self): pass
30 def __exit__(self, exctype, excinst, exctb): pass
Thomas Wouters4d70c3d2006-06-08 14:42:34 +000031
Raymond Hettingerbc8e81d2012-03-17 00:24:09 -070032
33################################################################################
34### update_wrapper() and wraps() decorator
35################################################################################
36
Thomas Wouters73e5a5b2006-06-08 15:35:45 +000037# update_wrapper() and wraps() are tools to help write
38# wrapper functions that can handle naive introspection
39
Meador Ingeff7f64c2011-12-11 22:37:31 -060040WRAPPER_ASSIGNMENTS = ('__module__', '__name__', '__qualname__', '__doc__',
41 '__annotations__')
Thomas Wouters73e5a5b2006-06-08 15:35:45 +000042WRAPPER_UPDATES = ('__dict__',)
43def update_wrapper(wrapper,
44 wrapped,
45 assigned = WRAPPER_ASSIGNMENTS,
46 updated = WRAPPER_UPDATES):
47 """Update a wrapper function to look like the wrapped function
48
49 wrapper is the function to be updated
50 wrapped is the original function
51 assigned is a tuple naming the attributes assigned directly
52 from the wrapped function to the wrapper function (defaults to
53 functools.WRAPPER_ASSIGNMENTS)
Thomas Wouters89f507f2006-12-13 04:49:30 +000054 updated is a tuple naming the attributes of the wrapper that
Thomas Wouters73e5a5b2006-06-08 15:35:45 +000055 are updated with the corresponding attribute from the wrapped
56 function (defaults to functools.WRAPPER_UPDATES)
57 """
58 for attr in assigned:
Nick Coghlan98876832010-08-17 06:17:18 +000059 try:
60 value = getattr(wrapped, attr)
61 except AttributeError:
62 pass
63 else:
64 setattr(wrapper, attr, value)
Thomas Wouters73e5a5b2006-06-08 15:35:45 +000065 for attr in updated:
Thomas Wouters89f507f2006-12-13 04:49:30 +000066 getattr(wrapper, attr).update(getattr(wrapped, attr, {}))
Nick Coghlan24c05bc2013-07-15 21:13:08 +100067 # Issue #17482: set __wrapped__ last so we don't inadvertently copy it
68 # from the wrapped function when updating __dict__
69 wrapper.__wrapped__ = wrapped
Thomas Wouters73e5a5b2006-06-08 15:35:45 +000070 # Return the wrapper so this can be used as a decorator via partial()
71 return wrapper
72
73def wraps(wrapped,
74 assigned = WRAPPER_ASSIGNMENTS,
75 updated = WRAPPER_UPDATES):
76 """Decorator factory to apply update_wrapper() to a wrapper function
77
78 Returns a decorator that invokes update_wrapper() with the decorated
79 function as the wrapper argument and the arguments to wraps() as the
80 remaining arguments. Default arguments are as for update_wrapper().
81 This is a convenience function to simplify applying partial() to
82 update_wrapper().
83 """
84 return partial(update_wrapper, wrapped=wrapped,
85 assigned=assigned, updated=updated)
Raymond Hettingerc50846a2010-04-05 18:56:31 +000086
Raymond Hettingerbc8e81d2012-03-17 00:24:09 -070087
88################################################################################
89### total_ordering class decorator
90################################################################################
91
Nick Coghlanf05d9812013-10-02 00:02:03 +100092# The correct way to indicate that a comparison operation doesn't
93# recognise the other type is to return NotImplemented and let the
94# interpreter handle raising TypeError if both operands return
95# NotImplemented from their respective comparison methods
96#
97# This makes the implementation of total_ordering more complicated, since
98# we need to be careful not to trigger infinite recursion when two
99# different types that both use this decorator encounter each other.
100#
101# For example, if a type implements __lt__, it's natural to define
102# __gt__ as something like:
103#
104# lambda self, other: not self < other and not self == other
105#
106# However, using the operator syntax like that ends up invoking the full
107# type checking machinery again and means we can end up bouncing back and
108# forth between the two operands until we run out of stack space.
109#
110# The solution is to define helper functions that invoke the appropriate
111# magic methods directly, ensuring we only try each operand once, and
112# return NotImplemented immediately if it is returned from the
113# underlying user provided method. Using this scheme, the __gt__ derived
114# from a user provided __lt__ becomes:
115#
116# lambda self, other: _not_op_and_not_eq(self.__lt__, self, other))
117
118def _not_op(op, other):
119 # "not a < b" handles "a >= b"
120 # "not a <= b" handles "a > b"
121 # "not a >= b" handles "a < b"
122 # "not a > b" handles "a <= b"
123 op_result = op(other)
124 if op_result is NotImplemented:
125 return NotImplemented
126 return not op_result
127
128def _op_or_eq(op, self, other):
129 # "a < b or a == b" handles "a <= b"
130 # "a > b or a == b" handles "a >= b"
131 op_result = op(other)
132 if op_result is NotImplemented:
133 return NotImplemented
134 return op_result or self == other
135
136def _not_op_and_not_eq(op, self, other):
137 # "not (a < b or a == b)" handles "a > b"
138 # "not a < b and a != b" is equivalent
139 # "not (a > b or a == b)" handles "a < b"
140 # "not a > b and a != b" is equivalent
141 op_result = op(other)
142 if op_result is NotImplemented:
143 return NotImplemented
144 return not op_result and self != other
145
146def _not_op_or_eq(op, self, other):
147 # "not a <= b or a == b" handles "a >= b"
148 # "not a >= b or a == b" handles "a <= b"
149 op_result = op(other)
150 if op_result is NotImplemented:
151 return NotImplemented
152 return not op_result or self == other
153
154def _op_and_not_eq(op, self, other):
155 # "a <= b and not a == b" handles "a < b"
156 # "a >= b and not a == b" handles "a > b"
157 op_result = op(other)
158 if op_result is NotImplemented:
159 return NotImplemented
160 return op_result and self != other
161
Raymond Hettingerc50846a2010-04-05 18:56:31 +0000162def total_ordering(cls):
Georg Brandle5a26732010-05-19 21:06:36 +0000163 """Class decorator that fills in missing ordering methods"""
Raymond Hettingerc50846a2010-04-05 18:56:31 +0000164 convert = {
Nick Coghlanf05d9812013-10-02 00:02:03 +1000165 '__lt__': [('__gt__', lambda self, other: _not_op_and_not_eq(self.__lt__, self, other)),
166 ('__le__', lambda self, other: _op_or_eq(self.__lt__, self, other)),
167 ('__ge__', lambda self, other: _not_op(self.__lt__, other))],
168 '__le__': [('__ge__', lambda self, other: _not_op_or_eq(self.__le__, self, other)),
169 ('__lt__', lambda self, other: _op_and_not_eq(self.__le__, self, other)),
170 ('__gt__', lambda self, other: _not_op(self.__le__, other))],
171 '__gt__': [('__lt__', lambda self, other: _not_op_and_not_eq(self.__gt__, self, other)),
172 ('__ge__', lambda self, other: _op_or_eq(self.__gt__, self, other)),
173 ('__le__', lambda self, other: _not_op(self.__gt__, other))],
174 '__ge__': [('__le__', lambda self, other: _not_op_or_eq(self.__ge__, self, other)),
175 ('__gt__', lambda self, other: _op_and_not_eq(self.__ge__, self, other)),
176 ('__lt__', lambda self, other: _not_op(self.__ge__, other))]
Raymond Hettingerc50846a2010-04-05 18:56:31 +0000177 }
Raymond Hettinger3255c632010-09-16 00:31:21 +0000178 # Find user-defined comparisons (not those inherited from object).
Raymond Hettinger1006bd42010-09-14 22:55:13 +0000179 roots = [op for op in convert if getattr(cls, op, None) is not getattr(object, op, None)]
Raymond Hettinger56de7e22010-04-10 16:59:03 +0000180 if not roots:
181 raise ValueError('must define at least one ordering operation: < > <= >=')
182 root = max(roots) # prefer __lt__ to __le__ to __gt__ to __ge__
Raymond Hettingerc50846a2010-04-05 18:56:31 +0000183 for opname, opfunc in convert[root]:
184 if opname not in roots:
185 opfunc.__name__ = opname
186 opfunc.__doc__ = getattr(int, opname).__doc__
187 setattr(cls, opname, opfunc)
188 return cls
189
Raymond Hettingerbc8e81d2012-03-17 00:24:09 -0700190
191################################################################################
192### cmp_to_key() function converter
193################################################################################
194
Raymond Hettingerc50846a2010-04-05 18:56:31 +0000195def cmp_to_key(mycmp):
Georg Brandle5a26732010-05-19 21:06:36 +0000196 """Convert a cmp= function into a key= function"""
Raymond Hettingerc50846a2010-04-05 18:56:31 +0000197 class K(object):
Raymond Hettingera0d1d962011-03-21 17:50:28 -0700198 __slots__ = ['obj']
Raymond Hettinger7ab9e222011-04-05 02:33:54 -0700199 def __init__(self, obj):
Raymond Hettingerc50846a2010-04-05 18:56:31 +0000200 self.obj = obj
201 def __lt__(self, other):
202 return mycmp(self.obj, other.obj) < 0
203 def __gt__(self, other):
204 return mycmp(self.obj, other.obj) > 0
205 def __eq__(self, other):
206 return mycmp(self.obj, other.obj) == 0
207 def __le__(self, other):
208 return mycmp(self.obj, other.obj) <= 0
209 def __ge__(self, other):
210 return mycmp(self.obj, other.obj) >= 0
211 def __ne__(self, other):
212 return mycmp(self.obj, other.obj) != 0
Raymond Hettinger003be522011-05-03 11:01:32 -0700213 __hash__ = None
Raymond Hettingerc50846a2010-04-05 18:56:31 +0000214 return K
Georg Brandl2e7346a2010-07-31 18:09:23 +0000215
Raymond Hettinger7ab9e222011-04-05 02:33:54 -0700216try:
217 from _functools import cmp_to_key
Brett Cannoncd171c82013-07-04 17:43:24 -0400218except ImportError:
Raymond Hettinger7ab9e222011-04-05 02:33:54 -0700219 pass
220
Raymond Hettingerbc8e81d2012-03-17 00:24:09 -0700221
222################################################################################
Antoine Pitroub5b37142012-11-13 21:35:40 +0100223### partial() argument application
224################################################################################
225
Nick Coghlanf4cb48a2013-11-03 16:41:46 +1000226# Purely functional, no descriptor behaviour
Antoine Pitroub5b37142012-11-13 21:35:40 +0100227def partial(func, *args, **keywords):
Nick Coghlanf4cb48a2013-11-03 16:41:46 +1000228 """New function with partial application of the given arguments
Antoine Pitroub5b37142012-11-13 21:35:40 +0100229 and keywords.
230 """
231 def newfunc(*fargs, **fkeywords):
232 newkeywords = keywords.copy()
233 newkeywords.update(fkeywords)
234 return func(*(args + fargs), **newkeywords)
235 newfunc.func = func
236 newfunc.args = args
237 newfunc.keywords = keywords
238 return newfunc
239
240try:
241 from _functools import partial
Brett Cannoncd171c82013-07-04 17:43:24 -0400242except ImportError:
Antoine Pitroub5b37142012-11-13 21:35:40 +0100243 pass
244
Nick Coghlanf4cb48a2013-11-03 16:41:46 +1000245# Descriptor version
246class partialmethod(object):
247 """Method descriptor with partial application of the given arguments
248 and keywords.
249
250 Supports wrapping existing descriptors and handles non-descriptor
251 callables as instance methods.
252 """
253
254 def __init__(self, func, *args, **keywords):
255 if not callable(func) and not hasattr(func, "__get__"):
256 raise TypeError("{!r} is not callable or a descriptor"
257 .format(func))
258
259 # func could be a descriptor like classmethod which isn't callable,
260 # so we can't inherit from partial (it verifies func is callable)
261 if isinstance(func, partialmethod):
262 # flattening is mandatory in order to place cls/self before all
263 # other arguments
264 # it's also more efficient since only one function will be called
265 self.func = func.func
266 self.args = func.args + args
267 self.keywords = func.keywords.copy()
268 self.keywords.update(keywords)
269 else:
270 self.func = func
271 self.args = args
272 self.keywords = keywords
273
274 def __repr__(self):
275 args = ", ".join(map(repr, self.args))
276 keywords = ", ".join("{}={!r}".format(k, v)
277 for k, v in self.keywords.items())
278 format_string = "{module}.{cls}({func}, {args}, {keywords})"
279 return format_string.format(module=self.__class__.__module__,
280 cls=self.__class__.__name__,
281 func=self.func,
282 args=args,
283 keywords=keywords)
284
285 def _make_unbound_method(self):
286 def _method(*args, **keywords):
287 call_keywords = self.keywords.copy()
288 call_keywords.update(keywords)
289 cls_or_self, *rest = args
290 call_args = (cls_or_self,) + self.args + tuple(rest)
291 return self.func(*call_args, **call_keywords)
292 _method.__isabstractmethod__ = self.__isabstractmethod__
293 return _method
294
295 def __get__(self, obj, cls):
296 get = getattr(self.func, "__get__", None)
297 result = None
298 if get is not None:
299 new_func = get(obj, cls)
300 if new_func is not self.func:
301 # Assume __get__ returning something new indicates the
302 # creation of an appropriate callable
303 result = partial(new_func, *self.args, **self.keywords)
304 try:
305 result.__self__ = new_func.__self__
306 except AttributeError:
307 pass
308 if result is None:
309 # If the underlying descriptor didn't do anything, treat this
310 # like an instance method
311 result = self._make_unbound_method().__get__(obj, cls)
312 return result
313
314 @property
315 def __isabstractmethod__(self):
316 return getattr(self.func, "__isabstractmethod__", False)
317
Antoine Pitroub5b37142012-11-13 21:35:40 +0100318
319################################################################################
Raymond Hettingerbc8e81d2012-03-17 00:24:09 -0700320### LRU Cache function decorator
321################################################################################
322
Raymond Hettingerdce583e2012-03-16 22:12:20 -0700323_CacheInfo = namedtuple("CacheInfo", ["hits", "misses", "maxsize", "currsize"])
Nick Coghlan234515a2010-11-30 06:19:46 +0000324
Raymond Hettinger0c9050c2012-06-04 00:21:14 -0700325class _HashedSeq(list):
Raymond Hettingerf96b2b02013-03-08 21:11:55 -0700326 """ This class guarantees that hash() will be called no more than once
327 per element. This is important because the lru_cache() will hash
328 the key multiple times on a cache miss.
329
330 """
331
Raymond Hettinger9acbb602012-04-30 22:32:16 -0700332 __slots__ = 'hashvalue'
333
Raymond Hettinger0c9050c2012-06-04 00:21:14 -0700334 def __init__(self, tup, hash=hash):
335 self[:] = tup
336 self.hashvalue = hash(tup)
Raymond Hettinger9acbb602012-04-30 22:32:16 -0700337
338 def __hash__(self):
339 return self.hashvalue
340
Raymond Hettinger0c9050c2012-06-04 00:21:14 -0700341def _make_key(args, kwds, typed,
342 kwd_mark = (object(),),
343 fasttypes = {int, str, frozenset, type(None)},
344 sorted=sorted, tuple=tuple, type=type, len=len):
Raymond Hettingerf96b2b02013-03-08 21:11:55 -0700345 """Make a cache key from optionally typed positional and keyword arguments
346
347 The key is constructed in a way that is flat as possible rather than
348 as a nested structure that would take more memory.
349
350 If there is only a single argument and its data type is known to cache
351 its hash value, then that argument is returned without a wrapper. This
352 saves space and improves lookup speed.
353
354 """
Raymond Hettinger0c9050c2012-06-04 00:21:14 -0700355 key = args
356 if kwds:
357 sorted_items = sorted(kwds.items())
358 key += kwd_mark
359 for item in sorted_items:
360 key += item
361 if typed:
362 key += tuple(type(v) for v in args)
363 if kwds:
364 key += tuple(type(v) for k, v in sorted_items)
365 elif len(key) == 1 and type(key[0]) in fasttypes:
366 return key[0]
367 return _HashedSeq(key)
368
Raymond Hettinger010ce322012-05-19 21:20:48 -0700369def lru_cache(maxsize=128, typed=False):
Benjamin Peterson1f594ad2010-08-08 13:17:07 +0000370 """Least-recently-used cache decorator.
Georg Brandl2e7346a2010-07-31 18:09:23 +0000371
Raymond Hettingerc79fb0e2010-12-01 03:45:41 +0000372 If *maxsize* is set to None, the LRU features are disabled and the cache
373 can grow without bound.
374
Raymond Hettingercd9fdfd2011-10-20 08:57:45 -0700375 If *typed* is True, arguments of different types will be cached separately.
376 For example, f(3.0) and f(3) will be treated as distinct calls with
377 distinct results.
378
Georg Brandl2e7346a2010-07-31 18:09:23 +0000379 Arguments to the cached function must be hashable.
Raymond Hettinger5fa40c02010-11-25 08:11:57 +0000380
Raymond Hettinger7f7a5a72012-03-30 21:50:40 -0700381 View the cache statistics named tuple (hits, misses, maxsize, currsize)
382 with f.cache_info(). Clear the cache and statistics with f.cache_clear().
Raymond Hettinger00f2f972010-12-01 00:47:56 +0000383 Access the underlying function with f.__wrapped__.
Raymond Hettinger5fa40c02010-11-25 08:11:57 +0000384
385 See: http://en.wikipedia.org/wiki/Cache_algorithms#Least_Recently_Used
Georg Brandl2e7346a2010-07-31 18:09:23 +0000386
Benjamin Peterson1f594ad2010-08-08 13:17:07 +0000387 """
Raymond Hettinger1ff50df2012-03-30 13:15:48 -0700388
Raymond Hettinger5fa40c02010-11-25 08:11:57 +0000389 # Users should only access the lru_cache through its public API:
Raymond Hettinger5e20bab2010-11-30 07:13:04 +0000390 # cache_info, cache_clear, and f.__wrapped__
Raymond Hettinger5fa40c02010-11-25 08:11:57 +0000391 # The internals of the lru_cache are encapsulated for thread safety and
392 # to allow the implementation to change (including a possible C version).
393
Raymond Hettinger9f0ab9f2012-04-29 14:55:27 -0700394 # Constants shared by all lru cache instances:
Raymond Hettingerb6b98c02012-04-29 18:09:02 -0700395 sentinel = object() # unique object used to signal cache misses
Raymond Hettinger0c9050c2012-06-04 00:21:14 -0700396 make_key = _make_key # build a key from the function arguments
Raymond Hettinger9f0ab9f2012-04-29 14:55:27 -0700397 PREV, NEXT, KEY, RESULT = 0, 1, 2, 3 # names for the link fields
398
Raymond Hettinger6e8c8172012-03-16 16:53:05 -0700399 def decorating_function(user_function):
Raymond Hettinger7f7a5a72012-03-30 21:50:40 -0700400 cache = {}
Raymond Hettinger832edde2013-02-17 00:08:45 -0800401 hits = misses = 0
Raymond Hettinger018b4fb2012-04-30 20:48:55 -0700402 full = False
Raymond Hettingerc6897852012-03-31 02:19:06 -0700403 cache_get = cache.get # bound method to lookup a key or return None
Raymond Hettingerfd541172013-03-01 03:47:57 -0800404 lock = RLock() # because linkedlist updates aren't threadsafe
Raymond Hettinger7f7a5a72012-03-30 21:50:40 -0700405 root = [] # root of the circular doubly linked list
406 root[:] = [root, root, None, None] # initialize by pointing to self
Raymond Hettinger6e8c8172012-03-16 16:53:05 -0700407
Raymond Hettinger7e0c5812012-03-17 15:10:24 -0700408 if maxsize == 0:
409
Raymond Hettinger7e0c5812012-03-17 15:10:24 -0700410 def wrapper(*args, **kwds):
Raymond Hettingerf96b2b02013-03-08 21:11:55 -0700411 # No caching -- just a statistics update after a successful call
Raymond Hettinger7e0c5812012-03-17 15:10:24 -0700412 nonlocal misses
Raymond Hettinger7dabfed2012-03-17 15:11:09 -0700413 result = user_function(*args, **kwds)
Raymond Hettinger7e0c5812012-03-17 15:10:24 -0700414 misses += 1
415 return result
416
417 elif maxsize is None:
Raymond Hettingerbc8e81d2012-03-17 00:24:09 -0700418
Raymond Hettingerc79fb0e2010-12-01 03:45:41 +0000419 def wrapper(*args, **kwds):
Raymond Hettingerf96b2b02013-03-08 21:11:55 -0700420 # Simple caching without ordering or size limit
Raymond Hettinger832edde2013-02-17 00:08:45 -0800421 nonlocal hits, misses
Raymond Hettinger9acbb602012-04-30 22:32:16 -0700422 key = make_key(args, kwds, typed)
Raymond Hettinger7f7a5a72012-03-30 21:50:40 -0700423 result = cache_get(key, sentinel)
424 if result is not sentinel:
Nick Coghlan234515a2010-11-30 06:19:46 +0000425 hits += 1
Raymond Hettinger4b779b32011-10-15 23:50:42 -0700426 return result
Raymond Hettinger4b779b32011-10-15 23:50:42 -0700427 result = user_function(*args, **kwds)
428 cache[key] = result
429 misses += 1
Raymond Hettingerc79fb0e2010-12-01 03:45:41 +0000430 return result
Raymond Hettingerbc8e81d2012-03-17 00:24:09 -0700431
Raymond Hettingerc79fb0e2010-12-01 03:45:41 +0000432 else:
Raymond Hettingerbc8e81d2012-03-17 00:24:09 -0700433
Raymond Hettingerc79fb0e2010-12-01 03:45:41 +0000434 def wrapper(*args, **kwds):
Raymond Hettingerf96b2b02013-03-08 21:11:55 -0700435 # Size limited caching that tracks accesses by recency
Raymond Hettinger832edde2013-02-17 00:08:45 -0800436 nonlocal root, hits, misses, full
Raymond Hettinger9acbb602012-04-30 22:32:16 -0700437 key = make_key(args, kwds, typed)
Raymond Hettinger4b779b32011-10-15 23:50:42 -0700438 with lock:
Raymond Hettingerec0e9102012-03-16 01:16:31 -0700439 link = cache_get(key)
440 if link is not None:
Raymond Hettingerf96b2b02013-03-08 21:11:55 -0700441 # Move the link to the front of the circular queue
442 link_prev, link_next, _key, result = link
Raymond Hettingerec0e9102012-03-16 01:16:31 -0700443 link_prev[NEXT] = link_next
444 link_next[PREV] = link_prev
445 last = root[PREV]
446 last[NEXT] = root[PREV] = link
447 link[PREV] = last
448 link[NEXT] = root
Raymond Hettingerc79fb0e2010-12-01 03:45:41 +0000449 hits += 1
Raymond Hettinger4b779b32011-10-15 23:50:42 -0700450 return result
Raymond Hettinger4b779b32011-10-15 23:50:42 -0700451 result = user_function(*args, **kwds)
452 with lock:
Raymond Hettinger34d94a22012-04-30 14:14:28 -0700453 if key in cache:
Raymond Hettingerf96b2b02013-03-08 21:11:55 -0700454 # Getting here means that this same key was added to the
455 # cache while the lock was released. Since the link
Raymond Hettinger34d94a22012-04-30 14:14:28 -0700456 # update is already done, we need only return the
457 # computed result and update the count of misses.
458 pass
Raymond Hettinger018b4fb2012-04-30 20:48:55 -0700459 elif full:
Raymond Hettingerf96b2b02013-03-08 21:11:55 -0700460 # Use the old root to store the new key and result.
Raymond Hettingerf2c17a92013-03-04 03:34:09 -0500461 oldroot = root
462 oldroot[KEY] = key
463 oldroot[RESULT] = result
Raymond Hettingerf96b2b02013-03-08 21:11:55 -0700464 # Empty the oldest link and make it the new root.
465 # Keep a reference to the old key and old result to
466 # prevent their ref counts from going to zero during the
467 # update. That will prevent potentially arbitrary object
468 # clean-up code (i.e. __del__) from running while we're
469 # still adjusting the links.
Raymond Hettingerf2c17a92013-03-04 03:34:09 -0500470 root = oldroot[NEXT]
471 oldkey = root[KEY]
Raymond Hettingerf96b2b02013-03-08 21:11:55 -0700472 oldresult = root[RESULT]
Raymond Hettingerc6897852012-03-31 02:19:06 -0700473 root[KEY] = root[RESULT] = None
Raymond Hettingerf96b2b02013-03-08 21:11:55 -0700474 # Now update the cache dictionary.
Raymond Hettingerf2c17a92013-03-04 03:34:09 -0500475 del cache[oldkey]
Raymond Hettingerf96b2b02013-03-08 21:11:55 -0700476 # Save the potentially reentrant cache[key] assignment
477 # for last, after the root and links have been put in
478 # a consistent state.
Raymond Hettingerf2c17a92013-03-04 03:34:09 -0500479 cache[key] = oldroot
Raymond Hettinger018b4fb2012-04-30 20:48:55 -0700480 else:
Raymond Hettingerf96b2b02013-03-08 21:11:55 -0700481 # Put result in a new link at the front of the queue.
Raymond Hettinger018b4fb2012-04-30 20:48:55 -0700482 last = root[PREV]
483 link = [last, root, key, result]
Raymond Hettingerf2c17a92013-03-04 03:34:09 -0500484 last[NEXT] = root[PREV] = cache[key] = link
Raymond Hettingerbb5f4802013-03-04 04:20:46 -0500485 full = (len(cache) >= maxsize)
Raymond Hettingerec0e9102012-03-16 01:16:31 -0700486 misses += 1
Raymond Hettingerc79fb0e2010-12-01 03:45:41 +0000487 return result
Georg Brandl2e7346a2010-07-31 18:09:23 +0000488
Nick Coghlan234515a2010-11-30 06:19:46 +0000489 def cache_info():
Raymond Hettinger5e20bab2010-11-30 07:13:04 +0000490 """Report cache statistics"""
Nick Coghlan234515a2010-11-30 06:19:46 +0000491 with lock:
Raymond Hettinger832edde2013-02-17 00:08:45 -0800492 return _CacheInfo(hits, misses, maxsize, len(cache))
Nick Coghlan234515a2010-11-30 06:19:46 +0000493
Raymond Hettinger02566ec2010-09-04 22:46:06 +0000494 def cache_clear():
Benjamin Peterson1f594ad2010-08-08 13:17:07 +0000495 """Clear the cache and cache statistics"""
Raymond Hettinger832edde2013-02-17 00:08:45 -0800496 nonlocal hits, misses, full
Raymond Hettingercbe88132010-08-14 22:22:10 +0000497 with lock:
498 cache.clear()
Benjamin Peterson954cf572012-03-16 18:22:26 -0500499 root[:] = [root, root, None, None]
Raymond Hettinger832edde2013-02-17 00:08:45 -0800500 hits = misses = 0
Raymond Hettinger018b4fb2012-04-30 20:48:55 -0700501 full = False
Georg Brandl2e7346a2010-07-31 18:09:23 +0000502
Nick Coghlan234515a2010-11-30 06:19:46 +0000503 wrapper.cache_info = cache_info
Raymond Hettinger02566ec2010-09-04 22:46:06 +0000504 wrapper.cache_clear = cache_clear
Raymond Hettinger1ff50df2012-03-30 13:15:48 -0700505 return update_wrapper(wrapper, user_function)
Raymond Hettinger5fa40c02010-11-25 08:11:57 +0000506
Georg Brandl2e7346a2010-07-31 18:09:23 +0000507 return decorating_function
Łukasz Langa6f692512013-06-05 12:20:24 +0200508
509
510################################################################################
511### singledispatch() - single-dispatch generic function decorator
512################################################################################
513
Łukasz Langa3720c772013-07-01 16:00:38 +0200514def _c3_merge(sequences):
515 """Merges MROs in *sequences* to a single MRO using the C3 algorithm.
516
517 Adapted from http://www.python.org/download/releases/2.3/mro/.
518
519 """
520 result = []
521 while True:
522 sequences = [s for s in sequences if s] # purge empty sequences
523 if not sequences:
524 return result
525 for s1 in sequences: # find merge candidates among seq heads
526 candidate = s1[0]
527 for s2 in sequences:
528 if candidate in s2[1:]:
529 candidate = None
530 break # reject the current head, it appears later
531 else:
532 break
533 if not candidate:
534 raise RuntimeError("Inconsistent hierarchy")
535 result.append(candidate)
536 # remove the chosen candidate
537 for seq in sequences:
538 if seq[0] == candidate:
539 del seq[0]
540
541def _c3_mro(cls, abcs=None):
542 """Computes the method resolution order using extended C3 linearization.
543
544 If no *abcs* are given, the algorithm works exactly like the built-in C3
545 linearization used for method resolution.
546
547 If given, *abcs* is a list of abstract base classes that should be inserted
548 into the resulting MRO. Unrelated ABCs are ignored and don't end up in the
549 result. The algorithm inserts ABCs where their functionality is introduced,
550 i.e. issubclass(cls, abc) returns True for the class itself but returns
551 False for all its direct base classes. Implicit ABCs for a given class
552 (either registered or inferred from the presence of a special method like
553 __len__) are inserted directly after the last ABC explicitly listed in the
554 MRO of said class. If two implicit ABCs end up next to each other in the
555 resulting MRO, their ordering depends on the order of types in *abcs*.
556
557 """
558 for i, base in enumerate(reversed(cls.__bases__)):
559 if hasattr(base, '__abstractmethods__'):
560 boundary = len(cls.__bases__) - i
561 break # Bases up to the last explicit ABC are considered first.
562 else:
563 boundary = 0
564 abcs = list(abcs) if abcs else []
565 explicit_bases = list(cls.__bases__[:boundary])
566 abstract_bases = []
567 other_bases = list(cls.__bases__[boundary:])
568 for base in abcs:
569 if issubclass(cls, base) and not any(
570 issubclass(b, base) for b in cls.__bases__
571 ):
572 # If *cls* is the class that introduces behaviour described by
573 # an ABC *base*, insert said ABC to its MRO.
574 abstract_bases.append(base)
575 for base in abstract_bases:
576 abcs.remove(base)
577 explicit_c3_mros = [_c3_mro(base, abcs=abcs) for base in explicit_bases]
578 abstract_c3_mros = [_c3_mro(base, abcs=abcs) for base in abstract_bases]
579 other_c3_mros = [_c3_mro(base, abcs=abcs) for base in other_bases]
580 return _c3_merge(
581 [[cls]] +
582 explicit_c3_mros + abstract_c3_mros + other_c3_mros +
583 [explicit_bases] + [abstract_bases] + [other_bases]
584 )
585
586def _compose_mro(cls, types):
587 """Calculates the method resolution order for a given class *cls*.
588
589 Includes relevant abstract base classes (with their respective bases) from
590 the *types* iterable. Uses a modified C3 linearization algorithm.
Łukasz Langa6f692512013-06-05 12:20:24 +0200591
592 """
593 bases = set(cls.__mro__)
Łukasz Langa3720c772013-07-01 16:00:38 +0200594 # Remove entries which are already present in the __mro__ or unrelated.
595 def is_related(typ):
596 return (typ not in bases and hasattr(typ, '__mro__')
597 and issubclass(cls, typ))
598 types = [n for n in types if is_related(n)]
599 # Remove entries which are strict bases of other entries (they will end up
600 # in the MRO anyway.
601 def is_strict_base(typ):
602 for other in types:
603 if typ != other and typ in other.__mro__:
604 return True
605 return False
606 types = [n for n in types if not is_strict_base(n)]
607 # Subclasses of the ABCs in *types* which are also implemented by
608 # *cls* can be used to stabilize ABC ordering.
609 type_set = set(types)
610 mro = []
611 for typ in types:
612 found = []
613 for sub in typ.__subclasses__():
614 if sub not in bases and issubclass(cls, sub):
615 found.append([s for s in sub.__mro__ if s in type_set])
616 if not found:
617 mro.append(typ)
618 continue
619 # Favor subclasses with the biggest number of useful bases
620 found.sort(key=len, reverse=True)
621 for sub in found:
622 for subcls in sub:
623 if subcls not in mro:
624 mro.append(subcls)
625 return _c3_mro(cls, abcs=mro)
Łukasz Langa6f692512013-06-05 12:20:24 +0200626
627def _find_impl(cls, registry):
Łukasz Langa3720c772013-07-01 16:00:38 +0200628 """Returns the best matching implementation from *registry* for type *cls*.
Łukasz Langa6f692512013-06-05 12:20:24 +0200629
Łukasz Langa3720c772013-07-01 16:00:38 +0200630 Where there is no registered implementation for a specific type, its method
631 resolution order is used to find a more generic implementation.
632
633 Note: if *registry* does not contain an implementation for the base
634 *object* type, this function may return None.
Łukasz Langa6f692512013-06-05 12:20:24 +0200635
636 """
637 mro = _compose_mro(cls, registry.keys())
638 match = None
639 for t in mro:
640 if match is not None:
Łukasz Langa3720c772013-07-01 16:00:38 +0200641 # If *match* is an implicit ABC but there is another unrelated,
642 # equally matching implicit ABC, refuse the temptation to guess.
643 if (t in registry and t not in cls.__mro__
644 and match not in cls.__mro__
645 and not issubclass(match, t)):
Łukasz Langa6f692512013-06-05 12:20:24 +0200646 raise RuntimeError("Ambiguous dispatch: {} or {}".format(
647 match, t))
648 break
649 if t in registry:
650 match = t
651 return registry.get(match)
652
653def singledispatch(func):
654 """Single-dispatch generic function decorator.
655
656 Transforms a function into a generic function, which can have different
657 behaviours depending upon the type of its first argument. The decorated
658 function acts as the default implementation, and additional
Łukasz Langa3720c772013-07-01 16:00:38 +0200659 implementations can be registered using the register() attribute of the
660 generic function.
Łukasz Langa6f692512013-06-05 12:20:24 +0200661
662 """
663 registry = {}
664 dispatch_cache = WeakKeyDictionary()
665 cache_token = None
666
Łukasz Langa3720c772013-07-01 16:00:38 +0200667 def dispatch(cls):
668 """generic_func.dispatch(cls) -> <function implementation>
Łukasz Langa6f692512013-06-05 12:20:24 +0200669
670 Runs the dispatch algorithm to return the best available implementation
Łukasz Langa3720c772013-07-01 16:00:38 +0200671 for the given *cls* registered on *generic_func*.
Łukasz Langa6f692512013-06-05 12:20:24 +0200672
673 """
674 nonlocal cache_token
675 if cache_token is not None:
676 current_token = get_cache_token()
677 if cache_token != current_token:
678 dispatch_cache.clear()
679 cache_token = current_token
680 try:
Łukasz Langa3720c772013-07-01 16:00:38 +0200681 impl = dispatch_cache[cls]
Łukasz Langa6f692512013-06-05 12:20:24 +0200682 except KeyError:
683 try:
Łukasz Langa3720c772013-07-01 16:00:38 +0200684 impl = registry[cls]
Łukasz Langa6f692512013-06-05 12:20:24 +0200685 except KeyError:
Łukasz Langa3720c772013-07-01 16:00:38 +0200686 impl = _find_impl(cls, registry)
687 dispatch_cache[cls] = impl
Łukasz Langa6f692512013-06-05 12:20:24 +0200688 return impl
689
Łukasz Langa3720c772013-07-01 16:00:38 +0200690 def register(cls, func=None):
691 """generic_func.register(cls, func) -> func
Łukasz Langa6f692512013-06-05 12:20:24 +0200692
Łukasz Langa3720c772013-07-01 16:00:38 +0200693 Registers a new implementation for the given *cls* on a *generic_func*.
Łukasz Langa6f692512013-06-05 12:20:24 +0200694
695 """
696 nonlocal cache_token
697 if func is None:
Łukasz Langa3720c772013-07-01 16:00:38 +0200698 return lambda f: register(cls, f)
699 registry[cls] = func
700 if cache_token is None and hasattr(cls, '__abstractmethods__'):
Łukasz Langa6f692512013-06-05 12:20:24 +0200701 cache_token = get_cache_token()
702 dispatch_cache.clear()
703 return func
704
705 def wrapper(*args, **kw):
706 return dispatch(args[0].__class__)(*args, **kw)
707
708 registry[object] = func
709 wrapper.register = register
710 wrapper.dispatch = dispatch
711 wrapper.registry = MappingProxyType(registry)
712 wrapper._clear_cache = dispatch_cache.clear
713 update_wrapper(wrapper, func)
714 return wrapper