2013-02-14 15:32:17 +04:00
|
|
|
#!/usr/bin/env python
|
2012-07-30 13:21:32 +04:00
|
|
|
|
|
|
|
"""
|
2015-01-06 17:02:16 +03:00
|
|
|
Copyright (c) 2006-2015 sqlmap developers (http://sqlmap.org/)
|
2012-07-30 13:21:32 +04:00
|
|
|
See the file 'doc/COPYING' for copying permission
|
|
|
|
"""
|
|
|
|
|
2012-07-30 12:06:14 +04:00
|
|
|
def cachedmethod(f, cache={}):
|
2012-07-30 13:21:32 +04:00
|
|
|
"""
|
|
|
|
Method with a cached content
|
|
|
|
|
|
|
|
Reference: http://code.activestate.com/recipes/325205-cache-decorator-in-python-24/
|
|
|
|
"""
|
2013-01-30 13:38:11 +04:00
|
|
|
|
2012-07-30 12:06:14 +04:00
|
|
|
def _(*args, **kwargs):
|
2013-02-22 13:49:45 +04:00
|
|
|
try:
|
|
|
|
key = (f, tuple(args), frozenset(kwargs.items()))
|
|
|
|
except:
|
|
|
|
key = "".join(str(_) for _ in (f, args, kwargs))
|
2012-07-30 12:06:14 +04:00
|
|
|
if key not in cache:
|
|
|
|
cache[key] = f(*args, **kwargs)
|
|
|
|
return cache[key]
|
2013-01-30 13:38:11 +04:00
|
|
|
|
2012-07-30 12:06:14 +04:00
|
|
|
return _
|