blob: 6a6974fc5ed97ae2f55797532c9694841a7aeaae [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
Łukasz Langa6f692512013-06-05 12:20:24 +020022from types import MappingProxyType
23from 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
226def partial(func, *args, **keywords):
227 """new function with partial application of the given arguments
228 and keywords.
229 """
230 def newfunc(*fargs, **fkeywords):
231 newkeywords = keywords.copy()
232 newkeywords.update(fkeywords)
233 return func(*(args + fargs), **newkeywords)
234 newfunc.func = func
235 newfunc.args = args
236 newfunc.keywords = keywords
237 return newfunc
238
239try:
240 from _functools import partial
Brett Cannoncd171c82013-07-04 17:43:24 -0400241except ImportError:
Antoine Pitroub5b37142012-11-13 21:35:40 +0100242 pass
243
244
245################################################################################
Raymond Hettingerbc8e81d2012-03-17 00:24:09 -0700246### LRU Cache function decorator
247################################################################################
248
Raymond Hettingerdce583e2012-03-16 22:12:20 -0700249_CacheInfo = namedtuple("CacheInfo", ["hits", "misses", "maxsize", "currsize"])
Nick Coghlan234515a2010-11-30 06:19:46 +0000250
Raymond Hettinger0c9050c2012-06-04 00:21:14 -0700251class _HashedSeq(list):
Raymond Hettingerf96b2b02013-03-08 21:11:55 -0700252 """ This class guarantees that hash() will be called no more than once
253 per element. This is important because the lru_cache() will hash
254 the key multiple times on a cache miss.
255
256 """
257
Raymond Hettinger9acbb602012-04-30 22:32:16 -0700258 __slots__ = 'hashvalue'
259
Raymond Hettinger0c9050c2012-06-04 00:21:14 -0700260 def __init__(self, tup, hash=hash):
261 self[:] = tup
262 self.hashvalue = hash(tup)
Raymond Hettinger9acbb602012-04-30 22:32:16 -0700263
264 def __hash__(self):
265 return self.hashvalue
266
Raymond Hettinger0c9050c2012-06-04 00:21:14 -0700267def _make_key(args, kwds, typed,
268 kwd_mark = (object(),),
269 fasttypes = {int, str, frozenset, type(None)},
270 sorted=sorted, tuple=tuple, type=type, len=len):
Raymond Hettingerf96b2b02013-03-08 21:11:55 -0700271 """Make a cache key from optionally typed positional and keyword arguments
272
273 The key is constructed in a way that is flat as possible rather than
274 as a nested structure that would take more memory.
275
276 If there is only a single argument and its data type is known to cache
277 its hash value, then that argument is returned without a wrapper. This
278 saves space and improves lookup speed.
279
280 """
Raymond Hettinger0c9050c2012-06-04 00:21:14 -0700281 key = args
282 if kwds:
283 sorted_items = sorted(kwds.items())
284 key += kwd_mark
285 for item in sorted_items:
286 key += item
287 if typed:
288 key += tuple(type(v) for v in args)
289 if kwds:
290 key += tuple(type(v) for k, v in sorted_items)
291 elif len(key) == 1 and type(key[0]) in fasttypes:
292 return key[0]
293 return _HashedSeq(key)
294
Raymond Hettinger010ce322012-05-19 21:20:48 -0700295def lru_cache(maxsize=128, typed=False):
Benjamin Peterson1f594ad2010-08-08 13:17:07 +0000296 """Least-recently-used cache decorator.
Georg Brandl2e7346a2010-07-31 18:09:23 +0000297
Raymond Hettingerc79fb0e2010-12-01 03:45:41 +0000298 If *maxsize* is set to None, the LRU features are disabled and the cache
299 can grow without bound.
300
Raymond Hettingercd9fdfd2011-10-20 08:57:45 -0700301 If *typed* is True, arguments of different types will be cached separately.
302 For example, f(3.0) and f(3) will be treated as distinct calls with
303 distinct results.
304
Georg Brandl2e7346a2010-07-31 18:09:23 +0000305 Arguments to the cached function must be hashable.
Raymond Hettinger5fa40c02010-11-25 08:11:57 +0000306
Raymond Hettinger7f7a5a72012-03-30 21:50:40 -0700307 View the cache statistics named tuple (hits, misses, maxsize, currsize)
308 with f.cache_info(). Clear the cache and statistics with f.cache_clear().
Raymond Hettinger00f2f972010-12-01 00:47:56 +0000309 Access the underlying function with f.__wrapped__.
Raymond Hettinger5fa40c02010-11-25 08:11:57 +0000310
311 See: http://en.wikipedia.org/wiki/Cache_algorithms#Least_Recently_Used
Georg Brandl2e7346a2010-07-31 18:09:23 +0000312
Benjamin Peterson1f594ad2010-08-08 13:17:07 +0000313 """
Raymond Hettinger1ff50df2012-03-30 13:15:48 -0700314
Raymond Hettinger5fa40c02010-11-25 08:11:57 +0000315 # Users should only access the lru_cache through its public API:
Raymond Hettinger5e20bab2010-11-30 07:13:04 +0000316 # cache_info, cache_clear, and f.__wrapped__
Raymond Hettinger5fa40c02010-11-25 08:11:57 +0000317 # The internals of the lru_cache are encapsulated for thread safety and
318 # to allow the implementation to change (including a possible C version).
319
Raymond Hettinger9f0ab9f2012-04-29 14:55:27 -0700320 # Constants shared by all lru cache instances:
Raymond Hettingerb6b98c02012-04-29 18:09:02 -0700321 sentinel = object() # unique object used to signal cache misses
Raymond Hettinger0c9050c2012-06-04 00:21:14 -0700322 make_key = _make_key # build a key from the function arguments
Raymond Hettinger9f0ab9f2012-04-29 14:55:27 -0700323 PREV, NEXT, KEY, RESULT = 0, 1, 2, 3 # names for the link fields
324
Raymond Hettinger6e8c8172012-03-16 16:53:05 -0700325 def decorating_function(user_function):
Raymond Hettinger7f7a5a72012-03-30 21:50:40 -0700326 cache = {}
Raymond Hettinger832edde2013-02-17 00:08:45 -0800327 hits = misses = 0
Raymond Hettinger018b4fb2012-04-30 20:48:55 -0700328 full = False
Raymond Hettingerc6897852012-03-31 02:19:06 -0700329 cache_get = cache.get # bound method to lookup a key or return None
Raymond Hettingerfd541172013-03-01 03:47:57 -0800330 lock = RLock() # because linkedlist updates aren't threadsafe
Raymond Hettinger7f7a5a72012-03-30 21:50:40 -0700331 root = [] # root of the circular doubly linked list
332 root[:] = [root, root, None, None] # initialize by pointing to self
Raymond Hettinger6e8c8172012-03-16 16:53:05 -0700333
Raymond Hettinger7e0c5812012-03-17 15:10:24 -0700334 if maxsize == 0:
335
Raymond Hettinger7e0c5812012-03-17 15:10:24 -0700336 def wrapper(*args, **kwds):
Raymond Hettingerf96b2b02013-03-08 21:11:55 -0700337 # No caching -- just a statistics update after a successful call
Raymond Hettinger7e0c5812012-03-17 15:10:24 -0700338 nonlocal misses
Raymond Hettinger7dabfed2012-03-17 15:11:09 -0700339 result = user_function(*args, **kwds)
Raymond Hettinger7e0c5812012-03-17 15:10:24 -0700340 misses += 1
341 return result
342
343 elif maxsize is None:
Raymond Hettingerbc8e81d2012-03-17 00:24:09 -0700344
Raymond Hettingerc79fb0e2010-12-01 03:45:41 +0000345 def wrapper(*args, **kwds):
Raymond Hettingerf96b2b02013-03-08 21:11:55 -0700346 # Simple caching without ordering or size limit
Raymond Hettinger832edde2013-02-17 00:08:45 -0800347 nonlocal hits, misses
Raymond Hettinger9acbb602012-04-30 22:32:16 -0700348 key = make_key(args, kwds, typed)
Raymond Hettinger7f7a5a72012-03-30 21:50:40 -0700349 result = cache_get(key, sentinel)
350 if result is not sentinel:
Nick Coghlan234515a2010-11-30 06:19:46 +0000351 hits += 1
Raymond Hettinger4b779b32011-10-15 23:50:42 -0700352 return result
Raymond Hettinger4b779b32011-10-15 23:50:42 -0700353 result = user_function(*args, **kwds)
354 cache[key] = result
355 misses += 1
Raymond Hettingerc79fb0e2010-12-01 03:45:41 +0000356 return result
Raymond Hettingerbc8e81d2012-03-17 00:24:09 -0700357
Raymond Hettingerc79fb0e2010-12-01 03:45:41 +0000358 else:
Raymond Hettingerbc8e81d2012-03-17 00:24:09 -0700359
Raymond Hettingerc79fb0e2010-12-01 03:45:41 +0000360 def wrapper(*args, **kwds):
Raymond Hettingerf96b2b02013-03-08 21:11:55 -0700361 # Size limited caching that tracks accesses by recency
Raymond Hettinger832edde2013-02-17 00:08:45 -0800362 nonlocal root, hits, misses, full
Raymond Hettinger9acbb602012-04-30 22:32:16 -0700363 key = make_key(args, kwds, typed)
Raymond Hettinger4b779b32011-10-15 23:50:42 -0700364 with lock:
Raymond Hettingerec0e9102012-03-16 01:16:31 -0700365 link = cache_get(key)
366 if link is not None:
Raymond Hettingerf96b2b02013-03-08 21:11:55 -0700367 # Move the link to the front of the circular queue
368 link_prev, link_next, _key, result = link
Raymond Hettingerec0e9102012-03-16 01:16:31 -0700369 link_prev[NEXT] = link_next
370 link_next[PREV] = link_prev
371 last = root[PREV]
372 last[NEXT] = root[PREV] = link
373 link[PREV] = last
374 link[NEXT] = root
Raymond Hettingerc79fb0e2010-12-01 03:45:41 +0000375 hits += 1
Raymond Hettinger4b779b32011-10-15 23:50:42 -0700376 return result
Raymond Hettinger4b779b32011-10-15 23:50:42 -0700377 result = user_function(*args, **kwds)
378 with lock:
Raymond Hettinger34d94a22012-04-30 14:14:28 -0700379 if key in cache:
Raymond Hettingerf96b2b02013-03-08 21:11:55 -0700380 # Getting here means that this same key was added to the
381 # cache while the lock was released. Since the link
Raymond Hettinger34d94a22012-04-30 14:14:28 -0700382 # update is already done, we need only return the
383 # computed result and update the count of misses.
384 pass
Raymond Hettinger018b4fb2012-04-30 20:48:55 -0700385 elif full:
Raymond Hettingerf96b2b02013-03-08 21:11:55 -0700386 # Use the old root to store the new key and result.
Raymond Hettingerf2c17a92013-03-04 03:34:09 -0500387 oldroot = root
388 oldroot[KEY] = key
389 oldroot[RESULT] = result
Raymond Hettingerf96b2b02013-03-08 21:11:55 -0700390 # Empty the oldest link and make it the new root.
391 # Keep a reference to the old key and old result to
392 # prevent their ref counts from going to zero during the
393 # update. That will prevent potentially arbitrary object
394 # clean-up code (i.e. __del__) from running while we're
395 # still adjusting the links.
Raymond Hettingerf2c17a92013-03-04 03:34:09 -0500396 root = oldroot[NEXT]
397 oldkey = root[KEY]
Raymond Hettingerf96b2b02013-03-08 21:11:55 -0700398 oldresult = root[RESULT]
Raymond Hettingerc6897852012-03-31 02:19:06 -0700399 root[KEY] = root[RESULT] = None
Raymond Hettingerf96b2b02013-03-08 21:11:55 -0700400 # Now update the cache dictionary.
Raymond Hettingerf2c17a92013-03-04 03:34:09 -0500401 del cache[oldkey]
Raymond Hettingerf96b2b02013-03-08 21:11:55 -0700402 # Save the potentially reentrant cache[key] assignment
403 # for last, after the root and links have been put in
404 # a consistent state.
Raymond Hettingerf2c17a92013-03-04 03:34:09 -0500405 cache[key] = oldroot
Raymond Hettinger018b4fb2012-04-30 20:48:55 -0700406 else:
Raymond Hettingerf96b2b02013-03-08 21:11:55 -0700407 # Put result in a new link at the front of the queue.
Raymond Hettinger018b4fb2012-04-30 20:48:55 -0700408 last = root[PREV]
409 link = [last, root, key, result]
Raymond Hettingerf2c17a92013-03-04 03:34:09 -0500410 last[NEXT] = root[PREV] = cache[key] = link
Raymond Hettingerbb5f4802013-03-04 04:20:46 -0500411 full = (len(cache) >= maxsize)
Raymond Hettingerec0e9102012-03-16 01:16:31 -0700412 misses += 1
Raymond Hettingerc79fb0e2010-12-01 03:45:41 +0000413 return result
Georg Brandl2e7346a2010-07-31 18:09:23 +0000414
Nick Coghlan234515a2010-11-30 06:19:46 +0000415 def cache_info():
Raymond Hettinger5e20bab2010-11-30 07:13:04 +0000416 """Report cache statistics"""
Nick Coghlan234515a2010-11-30 06:19:46 +0000417 with lock:
Raymond Hettinger832edde2013-02-17 00:08:45 -0800418 return _CacheInfo(hits, misses, maxsize, len(cache))
Nick Coghlan234515a2010-11-30 06:19:46 +0000419
Raymond Hettinger02566ec2010-09-04 22:46:06 +0000420 def cache_clear():
Benjamin Peterson1f594ad2010-08-08 13:17:07 +0000421 """Clear the cache and cache statistics"""
Raymond Hettinger832edde2013-02-17 00:08:45 -0800422 nonlocal hits, misses, full
Raymond Hettingercbe88132010-08-14 22:22:10 +0000423 with lock:
424 cache.clear()
Benjamin Peterson954cf572012-03-16 18:22:26 -0500425 root[:] = [root, root, None, None]
Raymond Hettinger832edde2013-02-17 00:08:45 -0800426 hits = misses = 0
Raymond Hettinger018b4fb2012-04-30 20:48:55 -0700427 full = False
Georg Brandl2e7346a2010-07-31 18:09:23 +0000428
Nick Coghlan234515a2010-11-30 06:19:46 +0000429 wrapper.cache_info = cache_info
Raymond Hettinger02566ec2010-09-04 22:46:06 +0000430 wrapper.cache_clear = cache_clear
Raymond Hettinger1ff50df2012-03-30 13:15:48 -0700431 return update_wrapper(wrapper, user_function)
Raymond Hettinger5fa40c02010-11-25 08:11:57 +0000432
Georg Brandl2e7346a2010-07-31 18:09:23 +0000433 return decorating_function
Łukasz Langa6f692512013-06-05 12:20:24 +0200434
435
436################################################################################
437### singledispatch() - single-dispatch generic function decorator
438################################################################################
439
Łukasz Langa3720c772013-07-01 16:00:38 +0200440def _c3_merge(sequences):
441 """Merges MROs in *sequences* to a single MRO using the C3 algorithm.
442
443 Adapted from http://www.python.org/download/releases/2.3/mro/.
444
445 """
446 result = []
447 while True:
448 sequences = [s for s in sequences if s] # purge empty sequences
449 if not sequences:
450 return result
451 for s1 in sequences: # find merge candidates among seq heads
452 candidate = s1[0]
453 for s2 in sequences:
454 if candidate in s2[1:]:
455 candidate = None
456 break # reject the current head, it appears later
457 else:
458 break
459 if not candidate:
460 raise RuntimeError("Inconsistent hierarchy")
461 result.append(candidate)
462 # remove the chosen candidate
463 for seq in sequences:
464 if seq[0] == candidate:
465 del seq[0]
466
467def _c3_mro(cls, abcs=None):
468 """Computes the method resolution order using extended C3 linearization.
469
470 If no *abcs* are given, the algorithm works exactly like the built-in C3
471 linearization used for method resolution.
472
473 If given, *abcs* is a list of abstract base classes that should be inserted
474 into the resulting MRO. Unrelated ABCs are ignored and don't end up in the
475 result. The algorithm inserts ABCs where their functionality is introduced,
476 i.e. issubclass(cls, abc) returns True for the class itself but returns
477 False for all its direct base classes. Implicit ABCs for a given class
478 (either registered or inferred from the presence of a special method like
479 __len__) are inserted directly after the last ABC explicitly listed in the
480 MRO of said class. If two implicit ABCs end up next to each other in the
481 resulting MRO, their ordering depends on the order of types in *abcs*.
482
483 """
484 for i, base in enumerate(reversed(cls.__bases__)):
485 if hasattr(base, '__abstractmethods__'):
486 boundary = len(cls.__bases__) - i
487 break # Bases up to the last explicit ABC are considered first.
488 else:
489 boundary = 0
490 abcs = list(abcs) if abcs else []
491 explicit_bases = list(cls.__bases__[:boundary])
492 abstract_bases = []
493 other_bases = list(cls.__bases__[boundary:])
494 for base in abcs:
495 if issubclass(cls, base) and not any(
496 issubclass(b, base) for b in cls.__bases__
497 ):
498 # If *cls* is the class that introduces behaviour described by
499 # an ABC *base*, insert said ABC to its MRO.
500 abstract_bases.append(base)
501 for base in abstract_bases:
502 abcs.remove(base)
503 explicit_c3_mros = [_c3_mro(base, abcs=abcs) for base in explicit_bases]
504 abstract_c3_mros = [_c3_mro(base, abcs=abcs) for base in abstract_bases]
505 other_c3_mros = [_c3_mro(base, abcs=abcs) for base in other_bases]
506 return _c3_merge(
507 [[cls]] +
508 explicit_c3_mros + abstract_c3_mros + other_c3_mros +
509 [explicit_bases] + [abstract_bases] + [other_bases]
510 )
511
512def _compose_mro(cls, types):
513 """Calculates the method resolution order for a given class *cls*.
514
515 Includes relevant abstract base classes (with their respective bases) from
516 the *types* iterable. Uses a modified C3 linearization algorithm.
Łukasz Langa6f692512013-06-05 12:20:24 +0200517
518 """
519 bases = set(cls.__mro__)
Łukasz Langa3720c772013-07-01 16:00:38 +0200520 # Remove entries which are already present in the __mro__ or unrelated.
521 def is_related(typ):
522 return (typ not in bases and hasattr(typ, '__mro__')
523 and issubclass(cls, typ))
524 types = [n for n in types if is_related(n)]
525 # Remove entries which are strict bases of other entries (they will end up
526 # in the MRO anyway.
527 def is_strict_base(typ):
528 for other in types:
529 if typ != other and typ in other.__mro__:
530 return True
531 return False
532 types = [n for n in types if not is_strict_base(n)]
533 # Subclasses of the ABCs in *types* which are also implemented by
534 # *cls* can be used to stabilize ABC ordering.
535 type_set = set(types)
536 mro = []
537 for typ in types:
538 found = []
539 for sub in typ.__subclasses__():
540 if sub not in bases and issubclass(cls, sub):
541 found.append([s for s in sub.__mro__ if s in type_set])
542 if not found:
543 mro.append(typ)
544 continue
545 # Favor subclasses with the biggest number of useful bases
546 found.sort(key=len, reverse=True)
547 for sub in found:
548 for subcls in sub:
549 if subcls not in mro:
550 mro.append(subcls)
551 return _c3_mro(cls, abcs=mro)
Łukasz Langa6f692512013-06-05 12:20:24 +0200552
553def _find_impl(cls, registry):
Łukasz Langa3720c772013-07-01 16:00:38 +0200554 """Returns the best matching implementation from *registry* for type *cls*.
Łukasz Langa6f692512013-06-05 12:20:24 +0200555
Łukasz Langa3720c772013-07-01 16:00:38 +0200556 Where there is no registered implementation for a specific type, its method
557 resolution order is used to find a more generic implementation.
558
559 Note: if *registry* does not contain an implementation for the base
560 *object* type, this function may return None.
Łukasz Langa6f692512013-06-05 12:20:24 +0200561
562 """
563 mro = _compose_mro(cls, registry.keys())
564 match = None
565 for t in mro:
566 if match is not None:
Łukasz Langa3720c772013-07-01 16:00:38 +0200567 # If *match* is an implicit ABC but there is another unrelated,
568 # equally matching implicit ABC, refuse the temptation to guess.
569 if (t in registry and t not in cls.__mro__
570 and match not in cls.__mro__
571 and not issubclass(match, t)):
Łukasz Langa6f692512013-06-05 12:20:24 +0200572 raise RuntimeError("Ambiguous dispatch: {} or {}".format(
573 match, t))
574 break
575 if t in registry:
576 match = t
577 return registry.get(match)
578
579def singledispatch(func):
580 """Single-dispatch generic function decorator.
581
582 Transforms a function into a generic function, which can have different
583 behaviours depending upon the type of its first argument. The decorated
584 function acts as the default implementation, and additional
Łukasz Langa3720c772013-07-01 16:00:38 +0200585 implementations can be registered using the register() attribute of the
586 generic function.
Łukasz Langa6f692512013-06-05 12:20:24 +0200587
588 """
589 registry = {}
590 dispatch_cache = WeakKeyDictionary()
591 cache_token = None
592
Łukasz Langa3720c772013-07-01 16:00:38 +0200593 def dispatch(cls):
594 """generic_func.dispatch(cls) -> <function implementation>
Łukasz Langa6f692512013-06-05 12:20:24 +0200595
596 Runs the dispatch algorithm to return the best available implementation
Łukasz Langa3720c772013-07-01 16:00:38 +0200597 for the given *cls* registered on *generic_func*.
Łukasz Langa6f692512013-06-05 12:20:24 +0200598
599 """
600 nonlocal cache_token
601 if cache_token is not None:
602 current_token = get_cache_token()
603 if cache_token != current_token:
604 dispatch_cache.clear()
605 cache_token = current_token
606 try:
Łukasz Langa3720c772013-07-01 16:00:38 +0200607 impl = dispatch_cache[cls]
Łukasz Langa6f692512013-06-05 12:20:24 +0200608 except KeyError:
609 try:
Łukasz Langa3720c772013-07-01 16:00:38 +0200610 impl = registry[cls]
Łukasz Langa6f692512013-06-05 12:20:24 +0200611 except KeyError:
Łukasz Langa3720c772013-07-01 16:00:38 +0200612 impl = _find_impl(cls, registry)
613 dispatch_cache[cls] = impl
Łukasz Langa6f692512013-06-05 12:20:24 +0200614 return impl
615
Łukasz Langa3720c772013-07-01 16:00:38 +0200616 def register(cls, func=None):
617 """generic_func.register(cls, func) -> func
Łukasz Langa6f692512013-06-05 12:20:24 +0200618
Łukasz Langa3720c772013-07-01 16:00:38 +0200619 Registers a new implementation for the given *cls* on a *generic_func*.
Łukasz Langa6f692512013-06-05 12:20:24 +0200620
621 """
622 nonlocal cache_token
623 if func is None:
Łukasz Langa3720c772013-07-01 16:00:38 +0200624 return lambda f: register(cls, f)
625 registry[cls] = func
626 if cache_token is None and hasattr(cls, '__abstractmethods__'):
Łukasz Langa6f692512013-06-05 12:20:24 +0200627 cache_token = get_cache_token()
628 dispatch_cache.clear()
629 return func
630
631 def wrapper(*args, **kw):
632 return dispatch(args[0].__class__)(*args, **kw)
633
634 registry[object] = func
635 wrapper.register = register
636 wrapper.dispatch = dispatch
637 wrapper.registry = MappingProxyType(registry)
638 wrapper._clear_cache = dispatch_cache.clear
639 update_wrapper(wrapper, func)
640 return wrapper