| # 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'} |
| |
| @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: |
| import_locations += [self.SPECIAL_IMPORTS.get(i.file, i.file) for i in imports] |
| 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) |