File: cache.py

package info (click to toggle)
python-pysnmp4 7.1.21-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 3,564 kB
  • sloc: python: 33,654; makefile: 166; javascript: 4
file content (43 lines) | stat: -rw-r--r-- 1,314 bytes parent folder | download
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
#
# This file is part of pysnmp software.
#
# Copyright (c) 2005-2020, Ilya Etingof <etingof@gmail.com>
# License: https://www.pysnmp.com/pysnmp/license.html
#
from pysnmp.proto import error


class Cache:
    """Cache class."""

    def __init__(self):
        """Create a cache object."""
        self.__cacheRepository = {}

    def add(self, index, **kwargs):
        """Add cache entry."""
        self.__cacheRepository[index] = kwargs
        return index

    def pop(self, index):
        """Pop cache entry."""
        if index in self.__cacheRepository:
            cachedParams = self.__cacheRepository[index]
        else:
            return
        del self.__cacheRepository[index]
        return cachedParams

    def update(self, index, **kwargs):
        """Update cache entry."""
        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):
        """Expire cache entries."""
        for index, cachedParams in list(self.__cacheRepository.items()):
            if cbFun:
                if cbFun(index, cachedParams, cbCtx):
                    if index in self.__cacheRepository:
                        del self.__cacheRepository[index]