-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcache.py
More file actions
executable file
·85 lines (74 loc) · 2.5 KB
/
cache.py
File metadata and controls
executable file
·85 lines (74 loc) · 2.5 KB
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
#!/usr/bin/env python3
#
# cache.py - Simple caching decorator for pure python functions
# (note that you probably don't want this, but instead
# you want to use functools.lru_cache)
#
# Note: There is no maximum size for the cache, so that's a denial
# of service (DoS) waiting to happen.
#
# Example:
# @cache
# def my_pure_func(n)
# return 37 * n
#
# Copyright (C) 2014 Michael Davies <michael@the-davies.net>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# Or try here: http://www.fsf.org/copyleft/gpl.html
#
from functools import wraps
CACHE_DEBUG = False
def cache(func):
cached = {}
@wraps(func)
def localfunc(*args):
if args in cached:
if CACHE_DEBUG:
return cached[args], True
else:
return cached[args]
result = func(*args)
cached[args] = result
if CACHE_DEBUG:
return result, False
else:
return result
return localfunc
if __name__ == '__main__':
import unittest
CACHE_DEBUG = True
@cache
def my_pure_func(n):
return 37 * n
class TestCaching(unittest.TestCase):
def test_caching(self):
result, cached = my_pure_func(6)
self.assertFalse(cached)
result, cached = my_pure_func(6)
self.assertTrue(cached)
result, cached = my_pure_func(7)
self.assertFalse(cached)
result, cached = my_pure_func(8)
self.assertFalse(cached)
result, cached = my_pure_func(6)
self.assertTrue(cached)
result, cached = my_pure_func(6)
self.assertTrue(cached)
result, cached = my_pure_func(8)
self.assertTrue(cached)
result, cached = my_pure_func(1)
self.assertFalse(cached)
unittest.main()