blob: eed689ffed792c5d2a562560a63e8d24036abd8b (
plain)
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
|
#
# This file is part of pysnmp software.
#
# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pysnmp/license.html
#
from pysnmp.proto import error
class Cache(object):
def __init__(self):
self._cacheRepository = {}
def add(self, index, **kwargs):
self._cacheRepository[index] = kwargs
return index
def pop(self, index):
if index in self._cacheRepository:
cachedParams = self._cacheRepository[index]
else:
return
del self._cacheRepository[index]
return cachedParams
def update(self, index, **kwargs):
if index not in self._cacheRepository:
raise error.ProtocolError(
'Cache miss on update for %s' % kwargs
)
self._cacheRepository[index].update(kwargs)
def expire(self, cbFun, cbCtx):
for index, cachedParams in list(self._cacheRepository.items()):
if cbFun:
if cbFun(index, cachedParams, cbCtx):
if index in self._cacheRepository:
del self._cacheRepository[index]
|