[stable-2.6] ensure 'text' source assumptions (#42522) (#43341)

* [stable-2.6] ensure 'text' source assumptions (#42522)

* ensure 'text' source assumptions.
(cherry picked from commit 937e710485)

Co-authored-by: Brian Coca <bcoca@users.noreply.github.com>

* Remove piece of bugfix that depends on newer feature
pull/43346/head
Toshio Kuratomi 6 years ago committed by Matt Clay
parent bc49055f28
commit b0a4627975

@ -0,0 +1,2 @@
bugfixes:
- remove ambiguity when it comes to 'the source'

@ -223,7 +223,9 @@ class InventoryManager(object):
parsed = False
display.debug(u'Examining possible inventory source: %s' % source)
# use binary for path functions
b_source = to_bytes(source)
# process directories as a collection of inventories
if os.path.isdir(b_source):
display.debug(u'Searching for inventory files in directory: %s' % source)
@ -235,9 +237,9 @@ class InventoryManager(object):
continue
# recursively deal with directory entries
b_fullpath = os.path.join(b_source, i)
parsed_this_one = self.parse_source(b_fullpath, cache=cache)
display.debug(u'parsed %s as %s' % (to_text(b_fullpath), parsed_this_one))
fullpath = to_text(os.path.join(b_source, i), errors='surrogate_or_strict')
parsed_this_one = self.parse_source(fullpath, cache=cache)
display.debug(u'parsed %s as %s' % (fullpath, parsed_this_one))
if not parsed:
parsed = parsed_this_one
else:
@ -258,7 +260,7 @@ class InventoryManager(object):
# initialize and figure out if plugin wants to attempt parsing this file
try:
plugin_wants = bool(plugin.verify_file(to_text(source)))
plugin_wants = bool(plugin.verify_file(source))
except Exception:
plugin_wants = False
@ -267,16 +269,16 @@ class InventoryManager(object):
# in case plugin fails 1/2 way we dont want partial inventory
plugin.parse(self._inventory, self._loader, source, cache=cache)
parsed = True
display.vvv('Parsed %s inventory source with %s plugin' % (to_text(source), plugin_name))
display.vvv('Parsed %s inventory source with %s plugin' % (source, plugin_name))
break
except AnsibleParserError as e:
display.debug('%s was not parsable by %s' % (to_text(source), plugin_name))
display.debug('%s was not parsable by %s' % (source, plugin_name))
failures.append({'src': source, 'plugin': plugin_name, 'exc': e})
except Exception as e:
display.debug('%s failed to parse %s' % (plugin_name, to_text(source)))
display.debug('%s failed to parse %s' % (plugin_name, source))
failures.append({'src': source, 'plugin': plugin_name, 'exc': AnsibleError(e)})
else:
display.debug('%s did not meet %s requirements' % (to_text(source), plugin_name))
display.debug('%s did not meet %s requirements' % (source, plugin_name))
else:
if not parsed and failures:
# only if no plugin processed files should we show errors.
@ -285,7 +287,7 @@ class InventoryManager(object):
if hasattr(fail['exc'], 'tb'):
display.vvv(to_text(fail['exc'].tb))
if not parsed:
display.warning("Unable to parse %s as an inventory source" % to_text(source))
display.warning("Unable to parse %s as an inventory source" % source)
# clear up, jic
self._inventory.current_source = None

Loading…
Cancel
Save