summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToshio Kuratomi <toshio@fedoraproject.org>2015-11-11 08:38:49 -0800
committerToshio Kuratomi <toshio@fedoraproject.org>2015-11-11 08:38:49 -0800
commitbf5f571910315681be36f152d31ca47f4dbfd56c (patch)
treec9668dd4d4e8b56666b8b20d8c5c929b8d9e63e5
parent705646ea4c6cf0b879d02006441daab32969d37e (diff)
downloadansible-global-display.tar.gz
Port cache plugins to global displayglobal-display
-rw-r--r--lib/ansible/plugins/cache/__init__.py5
-rw-r--r--lib/ansible/plugins/cache/jsonfile.py26
2 files changed, 20 insertions, 11 deletions
diff --git a/lib/ansible/plugins/cache/__init__.py b/lib/ansible/plugins/cache/__init__.py
index d4a605c08f..9cda7ca044 100644
--- a/lib/ansible/plugins/cache/__init__.py
+++ b/lib/ansible/plugins/cache/__init__.py
@@ -20,7 +20,6 @@ __metaclass__ = type
from collections import MutableMapping
from ansible import constants as C
-from ansible.errors import AnsibleError
from ansible.plugins import cache_loader
try:
@@ -29,14 +28,16 @@ except ImportError:
from ansible.utils.display import Display
display = Display()
+
class FactCache(MutableMapping):
def __init__(self, *args, **kwargs):
self._plugin = cache_loader.get(C.CACHE_PLUGIN)
+ # Backwards compat: self._display isn't really needed, just import the global display and use that.
self._display = display
if self._plugin is None:
- self._display.warning("Failed to load fact cache plugins")
+ display.warning("Failed to load fact cache plugins")
return
def __getitem__(self, key):
diff --git a/lib/ansible/plugins/cache/jsonfile.py b/lib/ansible/plugins/cache/jsonfile.py
index 71a30e8f86..e09042c1a8 100644
--- a/lib/ansible/plugins/cache/jsonfile.py
+++ b/lib/ansible/plugins/cache/jsonfile.py
@@ -35,6 +35,13 @@ from ansible.parsing.utils.jsonify import jsonify
from ansible.plugins.cache.base import BaseCacheModule
from ansible.utils.unicode import to_bytes
+try:
+ from __main__ import display
+ display = display
+except ImportError:
+ from ansible.utils.display import Display
+ display = Display()
+
class CacheModule(BaseCacheModule):
"""
@@ -52,13 +59,13 @@ class CacheModule(BaseCacheModule):
try:
os.makedirs(self._cache_dir)
except (OSError,IOError) as e:
- self._display.warning("error while trying to create cache dir %s : %s" % (self._cache_dir, to_bytes(e)))
+ display.warning("error while trying to create cache dir %s : %s" % (self._cache_dir, to_bytes(e)))
return None
def get(self, key):
if self.has_expired(key) or key == "":
- raise KeyError
+ raise KeyError
if key in self._cache:
return self._cache.get(key)
@@ -71,11 +78,12 @@ class CacheModule(BaseCacheModule):
self._cache[key] = value
return value
except ValueError as e:
- self._display.warning("error while trying to read %s : %s. Most likely a corrupt file, so erasing and failing." % (cachefile, to_bytes(e)))
+ display.warning("error while trying to read %s : %s. Most likely a corrupt file, so erasing and failing." % (cachefile, to_bytes(e)))
self.delete(key)
- raise AnsibleError("The JSON cache file %s was corrupt, or did not otherwise contain valid JSON data. It has been removed, so you can re-run your command now." % cachefile)
+ raise AnsibleError("The JSON cache file %s was corrupt, or did not otherwise contain valid JSON data."
+ " It has been removed, so you can re-run your command now." % cachefile)
except (OSError,IOError) as e:
- self._display.warning("error while trying to read %s : %s" % (cachefile, to_bytes(e)))
+ display.warning("error while trying to read %s : %s" % (cachefile, to_bytes(e)))
raise KeyError
def set(self, key, value):
@@ -86,7 +94,7 @@ class CacheModule(BaseCacheModule):
try:
f = codecs.open(cachefile, 'w', encoding='utf-8')
except (OSError,IOError) as e:
- self._display.warning("error while trying to write to %s : %s" % (cachefile, to_bytes(e)))
+ display.warning("error while trying to write to %s : %s" % (cachefile, to_bytes(e)))
pass
else:
f.write(jsonify(value))
@@ -102,7 +110,7 @@ class CacheModule(BaseCacheModule):
if e.errno == errno.ENOENT:
return False
else:
- self._display.warning("error while trying to stat %s : %s" % (cachefile, to_bytes(e)))
+ display.warning("error while trying to stat %s : %s" % (cachefile, to_bytes(e)))
pass
if time.time() - st.st_mtime <= self._timeout:
@@ -128,13 +136,13 @@ class CacheModule(BaseCacheModule):
if self.has_expired(key):
return False
try:
- st = os.stat(cachefile)
+ os.stat(cachefile)
return True
except (OSError,IOError) as e:
if e.errno == errno.ENOENT:
return False
else:
- self._display.warning("error while trying to stat %s : %s" % (cachefile, to_bytes(e)))
+ display.warning("error while trying to stat %s : %s" % (cachefile, to_bytes(e)))
pass
def delete(self, key):