-
Notifications
You must be signed in to change notification settings - Fork 0
/
trivialcache.py
157 lines (127 loc) · 4.9 KB
/
trivialcache.py
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
'''
Copyright (c) 2016, Theodor-Iulian Ciobanu
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
'''
from collections import OrderedDict
from threading import RLock, Thread, Event
from time import time
import pickle
class TrivialCache(object):
def __init__(self, threshold = 500, timeout = 300):
self._cache = OrderedDict()
self.clear = self._cache.clear
self._threshold = threshold
self._timeout = timeout
self._lock = RLock()
self.autopurge = self._setautopurge()
def size(self):
return len(self._cache)
def has(self, key):
with self._lock:
if key in self._cache:
exp, _ = self._cache[key]
if (not exp) or (exp > time()):
return True
else:
self._delete(key)
return False
def get(self, key):
with self._lock:
if key in self._cache:
exp, val = self._cache[key]
if (not exp) or (exp > time()):
return pickle.loads(val)
else:
self._delete(key)
return None
def pop(self, key):
with self._lock:
return self._cache.pop(key, None)
def set(self, key, value, timeout = None):
with self._lock:
timeout = timeout or self._timeout
if timeout:
exp = time() + timeout
else:
exp = None
if len(self._cache) + (key not in self._cache) > self._threshold:
self.purge()
if len(self._cache) + (key not in self._cache) > self._threshold:
return False
else:
self.purge()
pickled = pickle.dumps(value, pickle.HIGHEST_PROTOCOL)
size = len(pickled) + 1
self._cache[key] = (exp, pickled)
return True
def update(self, key, value, timeout = None):
with self._lock:
if key in self._cache:
exp, _ = self._cache[key]
if exp and (not timeout):
exp -= time()
if (exp > 0):
timeout = exp
else:
self._delete(key)
return False
return self.set(key, value, timeout)
def _delete(self, key):
del self._cache[key]
def delete(self, key, autopurge = True):
with self._lock:
if autopurge:
self.purge()
if key in self._cache:
_, val = self._cache[key]
self._delete(key)
return True
else:
return False
def purge(self, aggressive = False):
with self._lock:
size = len(self._cache)
threshold = (self._threshold or size) * (2 + (not aggressive)) / 3
if not(aggressive or (size > threshold)):
return False
purged = 0
now = time()
for k, (exp, _) in self._cache.items():
if (exp and (exp <= now)):
self._delete(key)
size -= 1
purged += 1
if aggressive:
while (size > threshold):
self._cache.popitem(False)
size -= 1
purged += 1
return purged
def _setautopurge(self):
def loop():
while not stopped.wait(300):
self.purge()
if not self._timeout:
return None
stopped = Event()
thread = Thread(target = loop)
thread.daemon = True
thread.start()
return stopped