heat/heat/engine/resources/software_config/structured_config.py
Steve Baker 66d701564c Document software config classes
These doc descriptions are used in the generated reference for
the template guide.

Change-Id: I2dcd3c53b274777d172ed0464ad09befd85f8426
Partial-Bug: #1294086
2014-03-25 09:08:43 +13:00

130 lines
4.8 KiB
Python

# vim: tabstop=4 shiftwidth=4 softtabstop=4
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import collections
import functools
from heat.engine import properties
from heat.engine.resources.software_config import software_config as sc
from heat.engine.resources.software_config import software_deployment as sd
PROPERTIES = (
INPUT_KEY
) = (
'input_key'
)
DEFAULT_INPUT_KEY = 'get_input'
class StructuredConfig(sc.SoftwareConfig):
'''
This resource is like OS::Heat::SoftwareConfig except that the config
property is represented by a Map rather than a String.
This is useful for configuration tools which use YAML or JSON as their
configuration syntax. The resulting configuration is transferred,
stored and returned by the software_configs API as parsed JSON.
'''
properties_schema = {
sc.SoftwareConfig.GROUP: sc.SoftwareConfig.properties_schema[
sc.SoftwareConfig.GROUP],
sc.SoftwareConfig.OPTIONS: sc.SoftwareConfig.properties_schema[
sc.SoftwareConfig.OPTIONS],
sc.SoftwareConfig.INPUTS: sc.SoftwareConfig.properties_schema[
sc.SoftwareConfig.INPUTS],
sc.SoftwareConfig.OUTPUTS: sc.SoftwareConfig.properties_schema[
sc.SoftwareConfig.OUTPUTS],
sc.SoftwareConfig.CONFIG: properties.Schema(
properties.Schema.MAP,
_('Map representing the configuration data structure which will '
'be serialized to the chosen format.')
)
}
class StructuredDeployment(sd.SoftwareDeployment):
'''
A deployment resource like OS::Heat::SoftwareDeployment, but which
performs input value substitution on the config defined by a
OS::Heat::StructuredConfig resource.
Some configuration tools have no concept of inputs, so the input value
substitution needs to occur in the deployment resource. An example of this
is the JSON metadata consumed by the cfn-init tool.
Where the config contains {get_input: input_name} this will be substituted
with the value of input_name in this resource's input_values. If get_input
needs to be passed through to the substituted configuration then a
different input_key property value can be specified.
'''
_sd_ps = sd.SoftwareDeployment.properties_schema
properties_schema = {
sd.SoftwareDeployment.CONFIG: _sd_ps[
sd.SoftwareDeployment.CONFIG],
sd.SoftwareDeployment.SERVER: _sd_ps[
sd.SoftwareDeployment.SERVER],
sd.SoftwareDeployment.INPUT_VALUES: _sd_ps[
sd.SoftwareDeployment.INPUT_VALUES],
sd.SoftwareDeployment.DEPLOY_ACTIONS: _sd_ps[
sd.SoftwareDeployment.DEPLOY_ACTIONS],
sd.SoftwareDeployment.SIGNAL_TRANSPORT: _sd_ps[
sd.SoftwareDeployment.SIGNAL_TRANSPORT],
sd.SoftwareDeployment.NAME: _sd_ps[
sd.SoftwareDeployment.NAME],
INPUT_KEY: properties.Schema(
properties.Schema.STRING,
_('Name of key to use for substituting inputs during deployment'),
default=DEFAULT_INPUT_KEY,
)
}
def _build_derived_config(self, action, source,
derived_inputs, derived_options):
cfg = source.get(sc.SoftwareConfig.CONFIG)
input_key = self.properties.get(INPUT_KEY)
inputs = dict((i['name'], i['value']) for i in derived_inputs)
return self.parse(inputs, input_key, cfg)
@staticmethod
def parse(inputs, input_key, snippet):
parse = functools.partial(
StructuredDeployment.parse, inputs, input_key)
if isinstance(snippet, collections.Mapping):
if len(snippet) == 1:
fn_name, args = next(snippet.iteritems())
if fn_name == input_key:
if isinstance(args, basestring):
return inputs.get(args)
return dict((k, parse(v)) for k, v in snippet.iteritems())
elif (not isinstance(snippet, basestring) and
isinstance(snippet, collections.Iterable)):
return [parse(v) for v in snippet]
else:
return snippet
def resource_mapping():
return {
'OS::Heat::StructuredConfig': StructuredConfig,
'OS::Heat::StructuredDeployment': StructuredDeployment,
}