2019-01-10 23:43:21 +01:00
|
|
|
"""Cache for commonly shared data that is intended to be immutable."""
|
2019-07-12 08:46:20 +02:00
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
|
|
__metaclass__ = type
|
2019-01-10 23:43:21 +01:00
|
|
|
|
|
|
|
|
2019-07-12 22:17:20 +02:00
|
|
|
class CommonCache:
|
2019-01-10 23:43:21 +01:00
|
|
|
"""Common cache."""
|
|
|
|
def __init__(self, args):
|
|
|
|
"""
|
|
|
|
:param args: CommonConfig
|
|
|
|
"""
|
|
|
|
self.args = args
|
|
|
|
|
|
|
|
def get(self, key, factory):
|
|
|
|
"""
|
|
|
|
:param key: str
|
|
|
|
:param factory: () -> any
|
|
|
|
:rtype: any
|
|
|
|
"""
|
|
|
|
if key not in self.args.cache:
|
|
|
|
self.args.cache[key] = factory()
|
|
|
|
|
|
|
|
return self.args.cache[key]
|
|
|
|
|
|
|
|
def get_with_args(self, key, factory):
|
|
|
|
"""
|
|
|
|
:param key: str
|
|
|
|
:param factory: (CommonConfig) -> any
|
|
|
|
:rtype: any
|
|
|
|
"""
|
|
|
|
|
|
|
|
if key not in self.args.cache:
|
|
|
|
self.args.cache[key] = factory(self.args)
|
|
|
|
|
|
|
|
return self.args.cache[key]
|