Clout: Cloud Topology ("clou-" + "t") Representation Language
Clout is "agnostic raw data" that can be stored as YAML/JSON/XML/etc.
version
(string)
Must be "1.0" to conform with this document.
General metadata for the whole topology. It may include information about which frontend or
processor generated the Clout file, a timestamp, etc.
properties
(map of string to anything)
General implementation-specific properties for the whole topology.
The difference between metadata
and properties
is a matter of convention. Generally, properties
should be used for data that is implementation-specific while metadata
should be used for tooling.
It is understood that this distinction might not always be clear and thus you should not treat the
two areas differently in terms of state management.
vertexes
(map of string to Vertex)
It is very important that you do not treat the keys of this map as data, for example as the
unique name of a vertex. If you need a "name" for the vertex, it should be a property within the
vertex. The vertex map keys are an internal implementation detail of Clout.
The reason for this is critical to Clout's intended use. The vertex key is used only as a way to
map the topology internally within an instance of Clout. More specifically, it is used for the
targetID
field in an edge so that the topology can graphed.
But a Clout processor may very well transform a Clout file and modify the topology. This could
involve adding new vertexes and edges or moving them around, for example to optimize a topology,
to heal a broken implementation, to scale out an overloaded system, etc. In doing so it may
regenerate these IDs. These IDs need only be unique to one specific Clout file, not generally.
If you do need to lookup a vertex by, say, its name
property, then the correct way to do so is to
iterate through all vertexes and look for the first vertex that has that particular name. Indeed, it
is reasonable for Clout parsers to entirely hide these IDs from the user and perhaps represent the
vertex map as a list.
Vertex
Often you'll find information here about what kind of vertex this is, e.g. a TOSCA node.
properties
(map of string to anything)
Implementation-specific properties for the vertex.
edgesOut
(list of Edge)
Clout edges are directional, though you may choose to semantically ignore the direction. The edges
are stored in the source vertex, which is why this field is named edgesOut
.
As a convenience, Clout parsers may very well add an in-memory edgesIn
field, which would also be
a list of edges, after mapping the targetID
fields of all edges to vertexes, or otherwise provide
a tool for looking up edges for which a certain vertex is a target.
Edge
Often you'll find information here about what kind of edge this is, e.g. a TOSCA relationship.
properties
(map of string to anything)
Implementation-specific properties for the vertex.
targetID
(string)
The key in the vertexes map to which this edge is the target.
Note that there is no need for a sourceID
because the edge is already located in the edgesOut
field of its source vertex. Clout parsers may very well add such a field for convenience.
Better yet, Clout parsers may do the ID lookup internally, provide direct access to the source and
target vertexes, and hide the targetID
field.
Coercibles
A common feature in many Clout use cases is the inclusion of values that are meant to be "coerced"
at runtime. Coercion could include evaluating an expression, calling a function, testing for
validity of the value by applying constraints, etc.
Clout does not enforce a notation for such coercible values, however we do suggest a convention.
Puccini comes with tools to help you parse according to this notation and to perform the coercion
using JavaScript.
The convention is recursive and assumes that each value is a map with one (and only one) of
the following fields:
$value
: this is an ARD literal value (boolean, integer, float, string, list, map, etc.)
$list
: this is a list of coercibles
$map
: this is a list of coercibles whereby each entry must also include a $key
field,
which itself is also a coercible
$functionCall
: this is a function call (see notation below)
The following additional fields are optional for all coercibles:
$description
: a human-readable description of the coercible
$constraints
: a list of coercibles in the $functionCall
format (see notation below)
The following additional field is optional for $value
:
$type
: type name, which can help with interpreting the value
If the $value
is a map, it may have one or more of the following special fields in addition to the
custom map fields:
$string
: textual representation of the value for human-readability, comparison, sorting, etc.
$number
: numeric representation of the value (float or integer) for comparison, sorting, etc.
$originalString
: if the value was parsed from a string then this would be that string
$comparer
: name of scriptlet to be used for value comparisons
The following additional fields are optional for $list
coercibles:
$entryDescription
: a human-readable description of the list entries
$entryConstraints
: a list of coercibles in the $functionCall
format (see notation below) intended
to be applied to each entry in the list
The following additional fields are optional for $map
coercibles:
$valueDescription
: a human-readable description of the map values
$valueConstraints
: a list of coercibles in the $functionCall
format (see notation below) intended
to be applied to each value in the map
$keyDescription
: a human-readable description of the map keys
$keyConstraints
: a list of coercibles in the $functionCall
format (see notation below) intended
to be applied to each key in the map
The $functionCall
notation is a map with the following required fields:
name
: a string representing the name of the function
arguments
: a list of coercibles (can be an empty list but not null)
The following $functionCall
fields are optional and are intended for providing debugging information
about where the function call was placed in the source, used for example to display a detailed error
report in case the function call fails:
path
: a string representing a semantic path within the source document (implementation-specific)
url
: a string representing the URL of the source document
row
: an integer representing the row within the source document
column
: an integer representing the column within the source document
Example (generated by TOSCA):
lowercase_string_map:
$map:
- $value: Hello
$key:
$value: greeting
- $value: Puccini
$key:
$functionCall:
name: concat
arguments:
- $value: recip
- $value: ient
path: topology_template.node_templates["data"].properties["lowercase_string_map"]["mykey"]
url: file:examples/tosca/data-types.yaml
row: 159
column: 9
$description: A map of lowercase strings to arbtirary strings
$keyDescription: Lowercase string
$keyConstraints:
- $functionCall:
name: pattern
arguments:
- $value: '[a-z]*'
path: topology_template.node_templates["data"].properties["lowercase_string_map"]
url: file:examples/tosca/data-types.yaml
row: 159
column: 9