mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 12:50:22 -07:00
Creating playbook executor and dependent classes
This commit is contained in:
parent
b6c3670f8a
commit
62d79568be
158 changed files with 22486 additions and 2353 deletions
87
v2/ansible/template/vars.py
Normal file
87
v2/ansible/template/vars.py
Normal file
|
@ -0,0 +1,87 @@
|
|||
# (c) 2012, 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
|
||||
|
||||
|
||||
__all__ = ['AnsibleJ2Vars']
|
||||
|
||||
|
||||
class AnsibleJ2Vars:
|
||||
'''
|
||||
Helper class to template all variable content before jinja2 sees it. This is
|
||||
done by hijacking the variable storage that jinja2 uses, and overriding __contains__
|
||||
and __getitem__ to look like a dict. Added bonus is avoiding duplicating the large
|
||||
hashes that inject tends to be.
|
||||
|
||||
To facilitate using builtin jinja2 things like range, globals are also handled here.
|
||||
'''
|
||||
|
||||
def __init__(self, templar, globals, *extras):
|
||||
'''
|
||||
Initializes this object with a valid Templar() object, as
|
||||
well as several dictionaries of variables representing
|
||||
different scopes (in jinja2 terminology).
|
||||
'''
|
||||
|
||||
self._templar = templar
|
||||
self._globals = globals
|
||||
self._extras = extras
|
||||
|
||||
def __contains__(self, k):
|
||||
if k in self._templar._available_variables:
|
||||
return True
|
||||
for i in self._extras:
|
||||
if k in i:
|
||||
return True
|
||||
if k in self._globals:
|
||||
return True
|
||||
return False
|
||||
|
||||
def __getitem__(self, varname):
|
||||
# FIXME: are we still going to need HostVars?
|
||||
#from ansible.runner import HostVars
|
||||
|
||||
if varname not in self._templar._available_variables:
|
||||
for i in self._extras:
|
||||
if varname in i:
|
||||
return i[varname]
|
||||
if varname in self._globals:
|
||||
return self._globals[varname]
|
||||
else:
|
||||
raise KeyError("undefined variable: %s" % varname)
|
||||
|
||||
variable = self._templar._available_variables[varname]
|
||||
|
||||
# HostVars is special, return it as-is, as is the special variable
|
||||
# 'vars', which contains the vars structure
|
||||
if isinstance(variable, dict) and varname == "vars": # or isinstance(var, HostVars):
|
||||
return variable
|
||||
else:
|
||||
return self._templar.template(variable)
|
||||
|
||||
def add_locals(self, locals):
|
||||
'''
|
||||
If locals are provided, create a copy of self containing those
|
||||
locals in addition to what is already in this variable proxy.
|
||||
'''
|
||||
if locals is None:
|
||||
return self
|
||||
return AnsibleJ2Vars(self._templar, self._globals, locals, *self._extras)
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue