You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
660 B
Python
26 lines
660 B
Python
10 years ago
|
from sets import Set
|
||
|
|
||
|
|
||
|
class AccessKeyStore(object):
|
||
|
"""Storage for arbitrary data. Monitors get calls so we know if they
|
||
|
were used or not."""
|
||
|
|
||
10 years ago
|
def __init__(self, existing_data=None):
|
||
|
if not existing_data:
|
||
|
existing_data = {}
|
||
|
self.data = existing_data
|
||
10 years ago
|
self.accessed_set = Set()
|
||
|
|
||
10 years ago
|
def keys(self):
|
||
|
return self.data.keys()
|
||
|
|
||
10 years ago
|
def add(self, key, unit_dict):
|
||
|
self.data[key] = unit_dict
|
||
|
|
||
|
def get(self, key):
|
||
|
self.accessed_set.add(key)
|
||
|
return self.data[key]
|
||
|
|
||
|
def get_unaccessed_set(self):
|
||
|
data_list = Set(self.data.keys())
|
||
|
return data_list - self.accessed_set
|