2014-10-02 17:07:05 +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/>.
|
|
|
|
|
2014-10-15 23:22:54 +00:00
|
|
|
# Make coding more python3-ish
|
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
|
|
__metaclass__ = type
|
|
|
|
|
2014-10-19 05:14:30 +00:00
|
|
|
from inspect import getmembers
|
2014-10-15 22:08:28 +00:00
|
|
|
from io import FileIO
|
|
|
|
|
|
|
|
from six import iteritems, string_types
|
|
|
|
|
2014-10-30 21:04:34 +00:00
|
|
|
from ansible.errors import AnsibleParserError
|
2014-10-03 20:37:32 +00:00
|
|
|
from ansible.playbook.attribute import Attribute, FieldAttribute
|
2014-10-23 20:39:27 +00:00
|
|
|
from ansible.parsing.yaml import DataLoader
|
2014-10-03 12:08:03 +00:00
|
|
|
|
2014-10-15 23:37:29 +00:00
|
|
|
class Base:
|
2014-10-02 17:07:05 +00:00
|
|
|
|
2014-10-28 19:35:29 +00:00
|
|
|
def __init__(self):
|
2014-10-19 05:14:30 +00:00
|
|
|
|
2014-10-28 19:35:29 +00:00
|
|
|
# initialize the data loader, this will be provided later
|
|
|
|
# when the object is actually loaded
|
|
|
|
self._loader = None
|
2014-10-08 19:59:24 +00:00
|
|
|
|
|
|
|
# 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-06 21:06:13 +00:00
|
|
|
|
2014-10-21 05:24:09 +00:00
|
|
|
for (name, value) in iteritems(self._get_base_attributes()):
|
2014-10-19 05:14:30 +00:00
|
|
|
self._attributes[name] = value.default
|
|
|
|
|
|
|
|
def _get_base_attributes(self):
|
|
|
|
'''
|
|
|
|
Returns the list of attributes for this class (or any subclass thereof).
|
|
|
|
If the attribute name starts with an underscore, it is removed
|
|
|
|
'''
|
|
|
|
base_attributes = dict()
|
|
|
|
for (name, value) in getmembers(self.__class__):
|
2014-10-06 21:06:13 +00:00
|
|
|
if isinstance(value, Attribute):
|
2014-10-19 05:14:30 +00:00
|
|
|
if name.startswith('_'):
|
|
|
|
name = name[1:]
|
|
|
|
base_attributes[name] = value
|
|
|
|
return base_attributes
|
2014-10-03 12:08:03 +00:00
|
|
|
|
2014-10-06 19:27:41 +00:00
|
|
|
def munge(self, ds):
|
|
|
|
''' infrequently used method to do some pre-processing of legacy terms '''
|
|
|
|
|
|
|
|
return ds
|
|
|
|
|
2014-10-28 19:35:29 +00:00
|
|
|
def load_data(self, ds, loader=None):
|
2014-10-03 20:37:32 +00:00
|
|
|
''' walk the input datastructure and assign any values '''
|
2014-10-03 18:53:28 +00:00
|
|
|
|
2014-10-03 20:37:32 +00:00
|
|
|
assert ds is not None
|
2014-10-06 20:29:02 +00:00
|
|
|
|
2014-10-28 19:35:29 +00:00
|
|
|
# the data loader class is used to parse data from strings and files
|
|
|
|
if loader is not None:
|
|
|
|
self._loader = loader
|
|
|
|
else:
|
|
|
|
self._loader = DataLoader()
|
|
|
|
|
2014-10-15 22:08:28 +00:00
|
|
|
if isinstance(ds, string_types) or isinstance(ds, FileIO):
|
2014-10-23 20:39:27 +00:00
|
|
|
ds = self._loader.load(ds)
|
2014-10-08 19:59:24 +00:00
|
|
|
|
2014-10-30 21:04:34 +00:00
|
|
|
# call the munge() function to massage the data into something
|
|
|
|
# we can more easily parse, and then call the validation function
|
|
|
|
# on it to ensure there are no incorrect key values
|
2014-10-06 19:27:41 +00:00
|
|
|
ds = self.munge(ds)
|
2014-10-30 21:04:34 +00:00
|
|
|
self._validate_attributes(ds)
|
2014-10-03 20:37:32 +00:00
|
|
|
|
2014-10-30 21:04:34 +00:00
|
|
|
# Walk all attributes in the class.
|
|
|
|
#
|
|
|
|
# FIXME: we currently don't do anything with private attributes but
|
|
|
|
# may later decide to filter them out of 'ds' here.
|
2014-10-06 19:27:41 +00:00
|
|
|
|
2014-10-30 21:04:34 +00:00
|
|
|
for (name, attribute) in iteritems(self._get_base_attributes()):
|
2014-10-19 05:14:30 +00:00
|
|
|
# copy the value over unless a _load_field method is defined
|
|
|
|
if name in ds:
|
|
|
|
method = getattr(self, '_load_%s' % name, None)
|
|
|
|
if method:
|
|
|
|
self._attributes[name] = method(name, ds[name])
|
|
|
|
else:
|
|
|
|
self._attributes[name] = ds[name]
|
2014-10-08 19:59:24 +00:00
|
|
|
|
2014-10-06 19:27:41 +00:00
|
|
|
# return the constructed object
|
|
|
|
self.validate()
|
2014-10-03 20:37:32 +00:00
|
|
|
return self
|
|
|
|
|
2014-10-28 19:35:29 +00:00
|
|
|
def get_loader(self):
|
|
|
|
return self._loader
|
2014-10-03 20:37:32 +00:00
|
|
|
|
2014-10-30 21:04:34 +00:00
|
|
|
def _validate_attributes(self, ds):
|
|
|
|
'''
|
|
|
|
Ensures that there are no keys in the datastructure which do
|
|
|
|
not map to attributes for this object.
|
|
|
|
'''
|
|
|
|
|
|
|
|
valid_attrs = [name for (name, attribute) in iteritems(self._get_base_attributes())]
|
|
|
|
for key in ds:
|
|
|
|
if key not in valid_attrs:
|
2014-11-05 14:00:00 +00:00
|
|
|
raise AnsibleParserError("'%s' is not a valid attribute for a %s" % (key, self.__class__.__name__), obj=ds)
|
2014-10-30 21:04:34 +00:00
|
|
|
|
2014-10-03 18:53:28 +00:00
|
|
|
def validate(self):
|
2014-10-08 19:59:24 +00:00
|
|
|
''' validation that is done at parse time, not load time '''
|
2014-10-06 19:27:41 +00:00
|
|
|
|
|
|
|
# walk all fields in the object
|
2014-10-21 05:24:09 +00:00
|
|
|
for (name, attribute) in iteritems(self._get_base_attributes()):
|
2014-10-08 19:59:24 +00:00
|
|
|
|
2014-10-19 05:14:30 +00:00
|
|
|
# run validator only if present
|
|
|
|
method = getattr(self, '_validate_%s' % name, None)
|
|
|
|
if method:
|
|
|
|
method(self, attribute)
|
2014-10-03 20:37:32 +00:00
|
|
|
|
|
|
|
def post_validate(self, runner_context):
|
2014-10-06 19:27:41 +00:00
|
|
|
'''
|
|
|
|
we can't tell that everything is of the right type until we have
|
2014-10-08 19:59:24 +00:00
|
|
|
all the variables. Run basic types (from isa) as well as
|
2014-10-06 19:27:41 +00:00
|
|
|
any _post_validate_<foo> functions.
|
2014-10-08 19:59:24 +00:00
|
|
|
'''
|
2014-10-06 19:27:41 +00:00
|
|
|
|
2014-10-03 20:37:32 +00:00
|
|
|
raise exception.NotImplementedError
|
2014-10-03 19:25:21 +00:00
|
|
|
|
2014-10-03 21:08:52 +00:00
|
|
|
def __getattr__(self, needle):
|
2014-10-06 19:27:41 +00:00
|
|
|
|
2014-10-06 21:06:13 +00:00
|
|
|
# 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)
|
|
|
|
|
2014-10-03 21:08:52 +00:00
|
|
|
if needle in self._attributes:
|
|
|
|
return self._attributes[needle]
|
|
|
|
|
2014-10-06 20:29:02 +00:00
|
|
|
raise AttributeError("attribute not found: %s" % needle)
|