6645054329
* Remove useless object inheritance in test code. * Remove unnecessary pass statements from test code. * Comment on why certain pylint rules are ignored. * Add more pylint test contexts. * Fix import order. * Remove unused variables. * Remove unnecessary pass statement. * Fix bad continuations. * Remove unnecessary elif. * Allow legitimate broad except statements. * Allow legitimate protected access. * Clean up names to make pylint pass.
35 lines
863 B
Python
35 lines
863 B
Python
"""Cache for commonly shared data that is intended to be immutable."""
|
|
from __future__ import (absolute_import, division, print_function)
|
|
__metaclass__ = type
|
|
|
|
|
|
class CommonCache:
|
|
"""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]
|