1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

adding caching to script plugin

This commit is contained in:
Brian Coca 2017-05-24 15:08:16 -04:00 committed by Brian Coca
parent b8448fdb90
commit 110fd917d6

View file

@ -82,7 +82,12 @@ class InventoryModule(BaseInventoryPlugin):
# directory when '.' is not in PATH.
path = os.path.abspath(path)
cmd = [ path, "--list" ]
try:
cache_key = self.get_cache_prefix(path)
if cache and cache_key in inventory.cache:
data = inventory.cache[cache_key]
else:
try:
sp = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
except OSError as e:
@ -103,6 +108,9 @@ class InventoryModule(BaseInventoryPlugin):
except Exception as e:
raise AnsibleError("Inventory {0} contained characters that cannot be interpreted as UTF-8: {1}".format(path, to_native(e)))
if cache:
inventory.cache[cache_key] = data
try:
processed = self.loader.load(data)
except Exception as e: