/usr/lib/python2.7/dist-packages/cachetools/ttl.py is in python-cachetools 1.1.5-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 | import functools
import time
from .cache import Cache
class _Link(object):
__slots__ = (
'key', 'expire', 'size',
'ttl_prev', 'ttl_next',
'lru_prev', 'lru_next'
)
def __getstate__(self):
if hasattr(self, 'key'):
return (self.key, self.expire, self.size)
else:
return None
def __setstate__(self, state):
self.key, self.expire, self.size = state
def insert_lru(self, next):
self.lru_next = next
self.lru_prev = prev = next.lru_prev
prev.lru_next = next.lru_prev = self
def insert_ttl(self, next):
self.ttl_next = next
self.ttl_prev = prev = next.ttl_prev
prev.ttl_next = next.ttl_prev = self
def insert(self, next):
self.insert_lru(next)
self.insert_ttl(next)
def unlink_lru(self):
lru_next = self.lru_next
lru_prev = self.lru_prev
lru_prev.lru_next = lru_next
lru_next.lru_prev = lru_prev
def unlink_ttl(self):
ttl_next = self.ttl_next
ttl_prev = self.ttl_prev
ttl_prev.ttl_next = ttl_next
ttl_next.ttl_prev = ttl_prev
def unlink(self):
self.unlink_lru()
self.unlink_ttl()
class _NestedTimer(object):
def __init__(self, timer):
self.__timer = timer
self.__nesting = 0
def __enter__(self):
if self.__nesting == 0:
self.__time = self.__timer()
self.__nesting += 1
return self.__time
def __exit__(self, *exc):
self.__nesting -= 1
def __call__(self):
if self.__nesting == 0:
return self.__timer()
else:
return self.__time
def __getattr__(self, name):
return getattr(self.__timer, name)
def __getstate__(self):
return (self.__timer, self.__nesting)
def __setstate__(self, state):
self.__timer, self.__nesting = state
class TTLCache(Cache):
"""LRU Cache implementation with per-item time-to-live (TTL) value."""
def __init__(self, maxsize, ttl, timer=time.time, missing=None,
getsizeof=None):
Cache.__init__(self, maxsize, missing, getsizeof)
self.__root = root = _Link()
root.ttl_prev = root.ttl_next = root
root.lru_prev = root.lru_next = root
self.__links = {}
self.__timer = _NestedTimer(timer)
self.__ttl = ttl
def __repr__(self, cache_getitem=Cache.__getitem__):
# prevent item reordering/expiration
return '%s(%r, maxsize=%d, currsize=%d)' % (
self.__class__.__name__,
[(key, cache_getitem(self, key)) for key in self],
self.maxsize,
self.currsize,
)
def __getitem__(self, key,
cache_getitem=Cache.__getitem__,
cache_missing=Cache.__missing__):
with self.__timer as time:
value = cache_getitem(self, key)
link = self.__links[key]
if link.expire < time:
return cache_missing(self, key)
link.unlink_lru()
link.insert_lru(self.__root)
return value
def __setitem__(self, key, value,
cache_setitem=Cache.__setitem__,
cache_getsizeof=Cache.getsizeof):
with self.__timer as time:
self.expire(time)
cache_setitem(self, key, value)
try:
link = self.__links[key]
except KeyError:
link = self.__links[key] = _Link()
else:
link.unlink()
link.key = key
link.expire = time + self.__ttl
link.size = cache_getsizeof(self, value)
link.insert(self.__root)
def __delitem__(self, key, cache_delitem=Cache.__delitem__):
with self.__timer as time:
self.expire(time)
cache_delitem(self, key)
links = self.__links
links[key].unlink()
del links[key]
def __contains__(self, key):
with self.__timer as time:
if key not in self.__links:
return False
elif self.__links[key].expire < time:
return False
else:
return True
def __iter__(self):
timer = self.__timer
root = self.__root
curr = root.ttl_next
while curr is not root:
with timer as time:
if not (curr.expire < time):
yield curr.key
curr = curr.ttl_next
def __len__(self, cache_len=Cache.__len__):
root = self.__root
head = root.ttl_next
expired = 0
with self.__timer as time:
while head is not root and head.expire < time:
expired += 1
head = head.ttl_next
return cache_len(self) - expired
def __getstate__(self):
state = self.__dict__.copy()
root = self.__root
links = state['__links'] = [(root, root)]
lru, ttl = root.lru_next, root.ttl_next
while lru is not root:
links.append((lru, ttl))
lru = lru.lru_next
ttl = ttl.ttl_next
return state
def __setstate__(self, state):
links = state.pop('__links')
count = len(links)
for index, (lru, ttl) in enumerate(links):
lru.lru_prev, ttl.ttl_prev = links[index - 1]
lru.lru_next, ttl.ttl_next = links[(index + 1) % count]
self.__dict__.update(state)
@property
def currsize(self):
root = self.__root
head = root.ttl_next
expired = 0
with self.__timer as time:
while head is not root and head.expire < time:
expired += head.size
head = head.ttl_next
return super(TTLCache, self).currsize - expired
@property
def timer(self):
"""The timer function used by the cache."""
return self.__timer
@property
def ttl(self):
"""The time-to-live value of the cache's items."""
return self.__ttl
def expire(self, time=None):
"""Remove expired items from the cache."""
if time is None:
time = self.__timer()
root = self.__root
head = root.ttl_next
links = self.__links
cache_delitem = Cache.__delitem__
while head is not root and head.expire < time:
cache_delitem(self, head.key)
del links[head.key]
next = head.ttl_next
head.unlink()
head = next
def popitem(self):
"""Remove and return the `(key, value)` pair least recently used that
has not already expired.
"""
with self.__timer as time:
self.expire(time)
root = self.__root
link = root.lru_next
if link is root:
raise KeyError('%s is empty' % self.__class__.__name__)
key = link.key
return (key, self.pop(key))
# mixin methods
def __nested(method):
def wrapper(self, *args, **kwargs):
with self.__timer:
return method(self, *args, **kwargs)
return functools.update_wrapper(wrapper, method)
get = __nested(Cache.get)
pop = __nested(Cache.pop)
setdefault = __nested(Cache.setdefault)
|