blob: fef30d1da054926860a280e4a29a82afdc089b20 [file] [log] [blame]
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You 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.
from aria.utils.collections import (FrozenList, EMPTY_READ_ONLY_LIST)
from aria.utils.caching import cachedmethod
from aria.parser.presentation import Presenter
from .modeling import create_service_template_model
from .modeling.functions import (Concat, Token, GetInput, GetProperty, GetAttribute,
GetOperationOutput, GetNodesOfType, GetArtifact)
from .templates import ServiceTemplate
class ToscaSimplePresenter1_0(Presenter): # pylint: disable=invalid-name,abstract-method
"""
ARIA presenter for the `TOSCA Simple Profile v1.0 cos01 <http://docs.oasis-open.org/tosca
/TOSCA-Simple-Profile-YAML/v1.0/cos01/TOSCA-Simple-Profile-YAML-v1.0-cos01.html>`__.
Supported ``tosca_definitions_version`` values:
* ``tosca_simple_yaml_1_0``
"""
DSL_VERSIONS = ('tosca_simple_yaml_1_0',)
ALLOWED_IMPORTED_DSL_VERSIONS = ('tosca_simple_yaml_1_0',)
SIMPLE_PROFILE_LOCATION = 'tosca-simple-1.0/tosca-simple-1.0.yaml'
SPECIAL_IMPORTS = {
'aria-1.0': 'aria-1.0/aria-1.0.yaml'}
PLUGIN_IMPORT_FILE = '/plugin.yaml'
PLUGIN_REPOSITORY = 'plugins'
@property
@cachedmethod
def service_template(self):
return ServiceTemplate(raw=self._raw)
@property
@cachedmethod
def functions(self):
return {
'concat': Concat,
'token': Token,
'get_input': GetInput,
'get_property': GetProperty,
'get_attribute': GetAttribute,
'get_operation_output': GetOperationOutput,
'get_nodes_of_type': GetNodesOfType,
'get_artifact': GetArtifact}
# Presentation
def _dump(self, context):
self.service_template._dump(context)
def _validate(self, context):
self.service_template._validate(context)
# Presenter
@cachedmethod
def _get_import_locations(self, context):
import_locations = []
if context.presentation.configuration.get('tosca.import_profile', True):
import_locations.append(self.SIMPLE_PROFILE_LOCATION)
imports = self._get('service_template', 'imports')
if imports:
for i in imports:
if i.repository == self.PLUGIN_REPOSITORY:
#Add plugin.yaml from plugin resource storage to import locations
import_locations += [i.file + self.PLUGIN_IMPORT_FILE]
else:
import_locations += [self.SPECIAL_IMPORTS.get(i.file, i.file)]
return FrozenList(import_locations) if import_locations else EMPTY_READ_ONLY_LIST
@cachedmethod
def _get_model(self, context): # pylint: disable=no-self-use
return create_service_template_model(context)