
git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@3784 fd906abe-77d9-0310-91a1-e0d9ade77398
98 lines
2.5 KiB
Python
98 lines
2.5 KiB
Python
#
|
|
# Copyright (c) 2010 Helmut Merz helmutm@cy55.de
|
|
#
|
|
# 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
|
|
#
|
|
|
|
"""
|
|
A simple caching mechanism.
|
|
|
|
$Id$
|
|
"""
|
|
|
|
from zope import component
|
|
try:
|
|
from lovely.memcached.interfaces import IMemcachedClient
|
|
except ImportError:
|
|
IMemcachedClient = None
|
|
|
|
|
|
# internal implementation
|
|
|
|
from cybertools.util.date import getTimeStamp
|
|
|
|
INVALID = object()
|
|
|
|
|
|
class CacheManager(dict):
|
|
|
|
pass
|
|
|
|
manager = CacheManager()
|
|
|
|
|
|
class CacheItem(object):
|
|
|
|
def __init__(self, identifier, value=INVALID, lifetime=3600):
|
|
self.identifier = identifier
|
|
self.lifetime = lifetime
|
|
self.set(value)
|
|
|
|
def set(self, value):
|
|
self.value = value
|
|
self.modified = getTimeStamp()
|
|
|
|
def get(self):
|
|
self.check()
|
|
return self.value
|
|
|
|
def check(self):
|
|
if getTimeStamp() - self.modified > self.lifetime:
|
|
self.value = INVALID
|
|
|
|
|
|
def internalCache(getIdentifier, lifetime=3600):
|
|
def _cache(fct):
|
|
def __cache(*args, **kw):
|
|
id = getIdentifier(*args, **kw)
|
|
item = manager.setdefault(id, CacheItem(id, lifetime=lifetime))
|
|
value = item.get()
|
|
if value is INVALID:
|
|
value = fct(*args, **kw)
|
|
item.set(value)
|
|
return value
|
|
return __cache
|
|
return _cache
|
|
|
|
cache = internalCache
|
|
|
|
|
|
# memcached implementation
|
|
|
|
def mcCache(getIdentifier, lifetime=3600):
|
|
def _cache(fct):
|
|
def __cache(*args, **kw):
|
|
id = getIdentifier(*args, **kw)
|
|
client = component.getUtility(IMemcachedClient)
|
|
value = client.query(id)
|
|
if value is None:
|
|
value = fct(*args, **kw)
|
|
client.set(value, id, lifetime=lifetime)
|
|
return value
|
|
return __cache
|
|
return _cache
|
|
|
|
if IMemcachedClient is not None:
|
|
cache = mcCache
|