community.general/v2/ansible/playbook/base.py

122 lines
3.9 KiB
Python
Raw Normal View History

# (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
2014-10-15 22:08:28 +00:00
from io import FileIO
from six import iteritems, string_types
2014-10-03 20:37:32 +00:00
from ansible.playbook.attribute import Attribute, FieldAttribute
from ansible.parsing import load as ds_load
2014-10-03 12:08:03 +00:00
class Base(object):
2014-10-03 20:37:32 +00:00
def __init__(self):
# each class knows attributes set upon it, see Task.py for example
2014-10-03 20:37:32 +00:00
self._attributes = dict()
2014-10-15 22:08:28 +00:00
for (name, value) in iteritems(self.__class__.__dict__):
aname = name[1:]
if isinstance(value, Attribute):
self._attributes[aname] = value.default
2014-10-03 12:08:03 +00:00
def munge(self, ds):
''' infrequently used method to do some pre-processing of legacy terms '''
return ds
2014-10-03 20:37:32 +00:00
def load_data(self, ds):
''' walk the input datastructure and assign any values '''
2014-10-03 20:37:32 +00:00
assert ds is not None
2014-10-06 20:29:02 +00:00
2014-10-15 22:08:28 +00:00
if isinstance(ds, string_types) or isinstance(ds, FileIO):
ds = ds_load(ds)
2014-10-06 20:29:02 +00:00
# we currently don't do anything with private attributes but may
# later decide to filter them out of 'ds' here.
ds = self.munge(ds)
2014-10-03 20:37:32 +00:00
# walk all attributes in the class
2014-10-15 22:08:28 +00:00
for (name, attribute) in iteritems(self.__class__.__dict__):
aname = name[1:]
2014-10-03 20:37:32 +00:00
# process Field attributes which get loaded from the YAML
2014-10-03 20:37:32 +00:00
if isinstance(attribute, FieldAttribute):
# copy the value over unless a _load_field method is defined
method = getattr(self, '_load_%s' % aname, None)
2014-10-03 20:37:32 +00:00
if method:
self._attributes[aname] = method(self, attribute)
2014-10-03 20:37:32 +00:00
else:
if aname in ds:
self._attributes[aname] = ds[aname]
# return the constructed object
self.validate()
2014-10-03 20:37:32 +00:00
return self
def validate(self):
''' validation that is done at parse time, not load time '''
# walk all fields in the object
2014-10-06 20:29:02 +00:00
for (name, attribute) in self.__dict__.iteritems():
# find any field attributes
if isinstance(attribute, FieldAttribute):
if not name.startswith("_"):
raise AnsibleError("FieldAttribute %s must start with _" % name)
aname = name[1:]
# run validator only if present
method = getattr(self, '_validate_%s' % (prefix, aname), None)
2014-10-03 20:37:32 +00:00
if method:
method(self, attribute)
def post_validate(self, runner_context):
'''
we can't tell that everything is of the right type until we have
all the variables. Run basic types (from isa) as well as
any _post_validate_<foo> functions.
'''
2014-10-03 20:37:32 +00:00
raise exception.NotImplementedError
2014-10-03 19:25:21 +00:00
def __getattr__(self, needle):
# return any attribute names as if they were real
# optionally allowing masking by accessors
if not needle.startswith("_"):
method = "get_%s" % needle
if method in self.__dict__:
return method(self)
if needle in self._attributes:
return self._attributes[needle]
2014-10-06 20:29:02 +00:00
raise AttributeError("attribute not found: %s" % needle)