2015-01-23 03:45:25 +00:00
|
|
|
# (c) 2012-2014, Michael DeHaan <michael.dehaan@gmail.com>
|
|
|
|
#
|
|
|
|
# This file is part of Ansible
|
|
|
|
#
|
|
|
|
# Ansible is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# Ansible is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
# Make coding more python3-ish
|
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
|
|
__metaclass__ = type
|
|
|
|
|
2015-07-31 19:47:54 +00:00
|
|
|
import collections
|
2015-08-21 14:59:32 +00:00
|
|
|
import sys
|
2015-07-31 19:47:54 +00:00
|
|
|
|
2015-07-15 18:36:42 +00:00
|
|
|
from jinja2 import Undefined as j2undefined
|
|
|
|
|
2015-08-21 14:59:32 +00:00
|
|
|
from ansible import constants as C
|
|
|
|
from ansible.inventory.host import Host
|
2015-01-23 03:45:25 +00:00
|
|
|
from ansible.template import Templar
|
|
|
|
|
|
|
|
__all__ = ['HostVars']
|
|
|
|
|
2015-07-31 19:47:54 +00:00
|
|
|
# Note -- this is a Mapping, not a MutableMapping
|
|
|
|
class HostVars(collections.Mapping):
|
2015-01-23 03:45:25 +00:00
|
|
|
''' A special view of vars_cache that adds values from the inventory when needed. '''
|
|
|
|
|
2015-09-24 17:53:44 +00:00
|
|
|
def __init__(self, play, inventory, variable_manager, loader):
|
|
|
|
self._lookup = dict()
|
2015-08-21 14:59:32 +00:00
|
|
|
self._loader = loader
|
2015-09-24 17:53:44 +00:00
|
|
|
self._play = play
|
|
|
|
self._variable_manager = variable_manager
|
2015-08-21 14:59:32 +00:00
|
|
|
|
2015-08-26 18:41:52 +00:00
|
|
|
hosts = inventory.get_hosts(ignore_limits_and_restrictions=True)
|
2015-08-21 14:59:32 +00:00
|
|
|
|
|
|
|
# check to see if localhost is in the hosts list, as we
|
|
|
|
# may have it referenced via hostvars but if created implicitly
|
|
|
|
# it doesn't sow up in the hosts list
|
|
|
|
has_localhost = False
|
|
|
|
for host in hosts:
|
|
|
|
if host.name in C.LOCALHOST:
|
|
|
|
has_localhost = True
|
|
|
|
break
|
|
|
|
|
|
|
|
if not has_localhost:
|
|
|
|
new_host = Host(name='localhost')
|
|
|
|
new_host.set_variable("ansible_python_interpreter", sys.executable)
|
|
|
|
new_host.set_variable("ansible_connection", "local")
|
2015-09-17 17:30:05 +00:00
|
|
|
new_host.address = '127.0.0.1'
|
2015-08-21 14:59:32 +00:00
|
|
|
hosts.append(new_host)
|
|
|
|
|
|
|
|
for host in hosts:
|
2015-09-24 17:53:44 +00:00
|
|
|
self._lookup[host.name] = host
|
2015-01-23 03:45:25 +00:00
|
|
|
|
|
|
|
def __getitem__(self, host_name):
|
2015-07-31 19:47:54 +00:00
|
|
|
|
2015-01-23 03:45:25 +00:00
|
|
|
if host_name not in self._lookup:
|
2015-08-21 14:59:32 +00:00
|
|
|
return j2undefined
|
|
|
|
|
2015-09-24 17:53:44 +00:00
|
|
|
host = self._lookup.get(host_name)
|
|
|
|
data = self._variable_manager.get_vars(loader=self._loader, host=host, play=self._play, include_hostvars=False)
|
2015-08-21 14:59:32 +00:00
|
|
|
templar = Templar(variables=data, loader=self._loader)
|
|
|
|
return templar.template(data, fail_on_undefined=False)
|
2015-01-23 03:45:25 +00:00
|
|
|
|
2015-07-31 19:47:54 +00:00
|
|
|
def __contains__(self, host_name):
|
|
|
|
item = self.get(host_name)
|
|
|
|
if item and item is not j2undefined:
|
|
|
|
return True
|
|
|
|
return False
|
2015-08-17 17:45:07 +00:00
|
|
|
|
2015-07-31 19:47:54 +00:00
|
|
|
def __iter__(self):
|
2015-10-18 14:07:20 +00:00
|
|
|
for host in self._lookup:
|
|
|
|
yield host
|
2015-07-31 19:47:54 +00:00
|
|
|
|
|
|
|
def __len__(self):
|
2015-10-18 14:07:20 +00:00
|
|
|
return len(self._lookup)
|
2015-08-17 17:45:07 +00:00
|
|
|
|
|
|
|
def __getstate__(self):
|
2015-09-24 17:53:44 +00:00
|
|
|
return dict(loader=self._loader, lookup=self._lookup, play=self._play, var_manager=self._variable_manager)
|
2015-08-17 17:45:07 +00:00
|
|
|
|
|
|
|
def __setstate__(self, data):
|
2015-09-24 17:53:44 +00:00
|
|
|
self._play = data.get('play')
|
2015-08-21 14:59:32 +00:00
|
|
|
self._loader = data.get('loader')
|
2015-09-24 17:53:44 +00:00
|
|
|
self._lookup = data.get('lookup')
|
|
|
|
self._variable_manager = data.get('var_manager')
|