2 * Copyright © 2017-2018 AT&T Intellectual Property.
\r
3 * Modifications Copyright © 2018 IBM.
\r
5 * Licensed under the Apache License, Version 2.0 (the "License");
\r
6 * you may not use this file except in compliance with the License.
\r
7 * You may obtain a copy of the License at
\r
9 * http://www.apache.org/licenses/LICENSE-2.0
\r
11 * Unless required by applicable law or agreed to in writing, software
\r
12 * distributed under the License is distributed on an "AS IS" BASIS,
\r
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
\r
14 * See the License for the specific language governing permissions and
\r
15 * limitations under the License.
\r
18 package org.onap.ccsdk.apps.controllerblueprints.core.service
\r
21 import com.fasterxml.jackson.databind.JsonNode
\r
22 import com.fasterxml.jackson.databind.node.NullNode
\r
23 import org.onap.ccsdk.apps.controllerblueprints.core.BluePrintConstants
\r
24 import org.onap.ccsdk.apps.controllerblueprints.core.BluePrintException
\r
25 import org.onap.ccsdk.apps.controllerblueprints.core.data.*
\r
26 import org.onap.ccsdk.apps.controllerblueprints.core.format
\r
27 import org.onap.ccsdk.apps.controllerblueprints.core.utils.JacksonUtils
\r
28 import org.onap.ccsdk.apps.controllerblueprints.core.utils.ResourceResolverUtils
\r
29 import com.att.eelf.configuration.EELFLogger
\r
30 import com.att.eelf.configuration.EELFManager
\r
35 * @author Brinda Santh
\r
37 class PropertyAssignmentService(var context: MutableMap<String, Any>,
\r
38 var bluePrintRuntimeService: BluePrintRuntimeService) {
\r
39 private val log: EELFLogger = EELFManager.getInstance().getLogger(this::class.toString())
\r
41 private var bluePrintContext: BluePrintContext = bluePrintRuntimeService.bluePrintContext
\r
45 If Property Assignment is Expression.
\r
47 Recursively resolve the expression
\r
50 fun resolveAssignmentExpression(nodeTemplateName: String, assignmentName: String,
\r
51 assignment: Any): JsonNode {
\r
52 val valueNode: JsonNode
\r
53 log.trace("Assignment ({})", assignment)
\r
54 val expressionData = BluePrintExpressionService.getExpressionData(assignment)
\r
56 if (expressionData.isExpression) {
\r
57 valueNode = resolveExpression(nodeTemplateName, assignmentName, expressionData)
\r
59 valueNode = expressionData.valueNode
\r
64 fun resolveExpression(nodeTemplateName: String, propName: String, expressionData: ExpressionData): JsonNode {
\r
66 var valueNode: JsonNode = NullNode.getInstance()
\r
68 if (expressionData.isExpression) {
\r
69 val command = expressionData.command!!
\r
72 BluePrintConstants.EXPRESSION_GET_INPUT -> {
\r
73 valueNode = bluePrintRuntimeService.getInputValue(expressionData.inputExpression?.propertyName!!)
\r
75 BluePrintConstants.EXPRESSION_GET_ATTRIBUTE -> {
\r
76 valueNode = resolveAttributeExpression(nodeTemplateName, expressionData.attributeExpression!!)
\r
78 BluePrintConstants.EXPRESSION_GET_PROPERTY -> {
\r
79 valueNode = resolvePropertyExpression(nodeTemplateName, expressionData.propertyExpression!!)
\r
81 BluePrintConstants.EXPRESSION_GET_OPERATION_OUTPUT -> {
\r
82 valueNode = resolveOperationOutputExpression(nodeTemplateName, expressionData.operationOutputExpression!!)
\r
84 BluePrintConstants.EXPRESSION_GET_ARTIFACT -> {
\r
85 valueNode = resolveArtifactExpression(nodeTemplateName, expressionData.artifactExpression!!)
\r
87 BluePrintConstants.EXPRESSION_GET_NODE_OF_TYPE -> {
\r
91 throw BluePrintException(format("for property ({}), command ({}) is not supported ", propName, command))
\r
99 get_property: [ <modelable_entity_name>, <optional_req_or_cap_name>, <property_name>,
\r
100 <nested_property_name_or_index_1>, ..., <nested_property_name_or_index_n> ]
\r
102 fun resolveAttributeExpression(nodeTemplateName: String, attributeExpression: AttributeExpression): JsonNode {
\r
103 val valueNode: JsonNode
\r
105 val attributeName = attributeExpression.attributeName
\r
106 val subAttributeName: String? = attributeExpression.subAttributeName
\r
108 var attributeNodeTemplateName = nodeTemplateName
\r
109 when (attributeExpression.modelableEntityName) {
\r
111 val environmentValue = System.getProperty(attributeName)
\r
112 valueNode = JacksonUtils.jsonNode(environmentValue)
\r
115 if (!attributeExpression.modelableEntityName.equals("SELF", true)) {
\r
116 attributeNodeTemplateName = attributeExpression.modelableEntityName
\r
118 /* Enable in ONAP Dublin Release
\r
119 val nodeTemplateAttributeExpression = bluePrintContext.nodeTemplateByName(attributeNodeTemplateName).attributes?.get(attributeName)
\r
120 ?: throw BluePrintException(format("failed to get attribute definitions for node template " +
\r
121 "({})'s property name ({}) ", nodeTemplateName, attributeName))
\r
123 var attributeDefinition: AttributeDefinition = bluePrintContext.nodeTemplateNodeType(attributeNodeTemplateName).attributes?.get(attributeName)!!
\r
125 log.info("node template name ({}), property Name ({}) resolved value ({})", attributeNodeTemplateName, attributeName, nodeTemplateAttributeExpression)
\r
128 valueNode = bluePrintRuntimeService.getNodeTemplateAttributeValue(attributeNodeTemplateName, attributeName)
\r
129 ?: throw BluePrintException(format("failed to get node template ({})'s attribute ({}) ", nodeTemplateName, attributeName))
\r
133 // subPropertyName?.let {
\r
134 // valueNode = valueNode.at(JsonPointer.valueOf(subPropertyName))
\r
140 get_property: [ <modelable_entity_name>, <optional_req_or_cap_name>, <property_name>,
\r
141 <nested_property_name_or_index_1>, ..., <nested_property_name_or_index_n> ]
\r
143 fun resolvePropertyExpression(nodeTemplateName: String, propertyExpression: PropertyExpression): JsonNode {
\r
144 val valueNode: JsonNode
\r
146 val propertyName = propertyExpression.propertyName
\r
147 val subPropertyName: String? = propertyExpression.subPropertyName
\r
149 var propertyNodeTemplateName = nodeTemplateName
\r
150 if (!propertyExpression.modelableEntityName.equals("SELF", true)) {
\r
151 propertyNodeTemplateName = propertyExpression.modelableEntityName
\r
154 val nodeTemplatePropertyExpression = bluePrintContext.nodeTemplateByName(propertyNodeTemplateName).properties?.get(propertyName)
\r
155 ?: throw BluePrintException(format("failed to get property definitions for node template ({})'s property name ({}) ", nodeTemplateName, propertyName))
\r
157 var propertyDefinition: PropertyDefinition = bluePrintContext.nodeTemplateNodeType(propertyNodeTemplateName).properties?.get(propertyName)!!
\r
159 log.info("node template name ({}), property Name ({}) resolved value ({})", propertyNodeTemplateName, propertyName, nodeTemplatePropertyExpression)
\r
161 // Check it it is a nested expression
\r
162 valueNode = resolveAssignmentExpression(propertyNodeTemplateName, propertyName, nodeTemplatePropertyExpression)
\r
164 // subPropertyName?.let {
\r
165 // valueNode = valueNode.at(JsonPointer.valueOf(subPropertyName))
\r
171 get_operation_output: <modelable_entity_name>, <interface_name>, <operation_name>, <output_variable_name>
\r
173 fun resolveOperationOutputExpression(nodeTemplateName: String, operationOutputExpression: OperationOutputExpression): JsonNode {
\r
174 var outputNodeTemplateName = nodeTemplateName
\r
175 if (!operationOutputExpression.modelableEntityName.equals("SELF", true)) {
\r
176 outputNodeTemplateName = operationOutputExpression.modelableEntityName
\r
178 return bluePrintRuntimeService.getNodeTemplateOperationOutputValue(outputNodeTemplateName,
\r
179 operationOutputExpression.interfaceName, operationOutputExpression.operationName,
\r
180 operationOutputExpression.propertyName)
\r
184 get_artifact: [ <modelable_entity_name>, <artifact_name>, <location>, <remove> ]
\r
186 fun resolveArtifactExpression(nodeTemplateName: String, artifactExpression: ArtifactExpression): JsonNode {
\r
188 var artifactNodeTemplateName = nodeTemplateName
\r
189 if (!artifactExpression.modelableEntityName.equals("SELF", true)) {
\r
190 artifactNodeTemplateName = artifactExpression.modelableEntityName
\r
192 val artifactDefinition: ArtifactDefinition = bluePrintContext.nodeTemplateByName(artifactNodeTemplateName)
\r
193 .artifacts?.get(artifactExpression.artifactName)
\r
194 ?: throw BluePrintException(format("failed to get artifact definitions for node template ({})'s " +
\r
195 "artifact name ({}) ", nodeTemplateName, artifactExpression.artifactName))
\r
197 return JacksonUtils.jsonNodeFromObject(artifactContent(artifactDefinition))
\r
200 fun artifactContent(artifactDefinition: ArtifactDefinition): String {
\r
201 val bluePrintBasePath: String = context[BluePrintConstants.PROPERTY_BLUEPRINT_BASE_PATH] as? String
\r
202 ?: throw BluePrintException(format("failed to get property (%s) from context", BluePrintConstants.PROPERTY_BLUEPRINT_BASE_PATH))
\r
204 if (artifactDefinition.repository != null) {
\r
206 } else if (artifactDefinition.file != null) {
\r
207 return ResourceResolverUtils.getFileContent(artifactDefinition.file!!, bluePrintBasePath)
\r