ansible/test/runner/lib/cache.py
Matt Clay 3f2b766d10 Add future and metaclass boilerplate to test code.
Continue to ignore:

- test/integration/
- test/legacy/
- test/units/
2019-07-12 09:18:24 -07:00

35 lines
871 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(object):
"""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]