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.BluePrintException
\r
24 import org.onap.ccsdk.apps.controllerblueprints.core.data.*
\r
25 import org.onap.ccsdk.apps.controllerblueprints.core.format
\r
26 import org.onap.ccsdk.apps.controllerblueprints.core.utils.JacksonUtils
\r
27 import org.onap.ccsdk.apps.controllerblueprints.core.utils.ResourceResolverUtils
\r
28 import com.att.eelf.configuration.EELFLogger
\r
29 import com.att.eelf.configuration.EELFManager
\r
33 * @author Brinda Santh
\r
35 class PropertyAssignmentService(var context: MutableMap<String, Any>,
\r
36 var bluePrintRuntimeService: BluePrintRuntimeService) {
\r
37 private val log: EELFLogger = EELFManager.getInstance().getLogger(this::class.toString())
\r
39 private var bluePrintContext: BluePrintContext = bluePrintRuntimeService.bluePrintContext
\r
43 If Property Assignment is Expression.
\r
45 Recurssely resolve the expression
\r
48 fun resolveAssignmentExpression(nodeTemplateName: String, assignmentName: String,
\r
49 assignment: Any): JsonNode {
\r
50 val valueNode: JsonNode
\r
51 log.trace("Assignment ({})", assignment)
\r
52 val expressionData = BluePrintExpressionService.getExpressionData(assignment)
\r
54 if (expressionData.isExpression) {
\r
55 valueNode = resolveExpression(nodeTemplateName, assignmentName, expressionData)
\r
57 valueNode = expressionData.valueNode
\r
62 fun resolveExpression(nodeTemplateName: String, propName: String, expressionData: ExpressionData): JsonNode {
\r
64 var valueNode: JsonNode = NullNode.getInstance()
\r
66 if(expressionData.isExpression) {
\r
67 val command = expressionData.command!!
\r
70 org.onap.ccsdk.apps.controllerblueprints.core.BluePrintConstants.EXPRESSION_GET_INPUT ->{
\r
71 valueNode = bluePrintRuntimeService.getInputValue(expressionData.inputExpression?.propertyName!!)
\r
73 org.onap.ccsdk.apps.controllerblueprints.core.BluePrintConstants.EXPRESSION_GET_ATTRIBUTE ->{
\r
74 valueNode = resolveAttributeExpression(nodeTemplateName, expressionData.attributeExpression!!)
\r
76 org.onap.ccsdk.apps.controllerblueprints.core.BluePrintConstants.EXPRESSION_GET_PROPERTY ->{
\r
77 valueNode = resolvePropertyExpression(nodeTemplateName, expressionData.propertyExpression!!)
\r
79 org.onap.ccsdk.apps.controllerblueprints.core.BluePrintConstants.EXPRESSION_GET_OPERATION_OUTPUT ->{
\r
80 valueNode = resolveOperationOutputExpression(nodeTemplateName, expressionData.operationOutputExpression!!)
\r
82 org.onap.ccsdk.apps.controllerblueprints.core.BluePrintConstants.EXPRESSION_GET_ARTIFACT ->{
\r
83 valueNode = resolveArtifactExpression(nodeTemplateName, expressionData.artifactExpression!!)
\r
85 org.onap.ccsdk.apps.controllerblueprints.core.BluePrintConstants.EXPRESSION_GET_NODE_OF_TYPE ->{
\r
89 throw BluePrintException(String.format("for property ({}), command ({}) is not supported ", propName, command))
\r
97 get_property: [ <modelable_entity_name>, <optional_req_or_cap_name>, <property_name>,
\r
98 <nested_property_name_or_index_1>, ..., <nested_property_name_or_index_n> ]
\r
100 fun resolveAttributeExpression(nodeTemplateName: String, attributeExpression: AttributeExpression): JsonNode {
\r
101 val valueNode: JsonNode
\r
103 val attributeName = attributeExpression.attributeName
\r
104 val subAttributeName: String? = attributeExpression.subAttributeName
\r
106 var attributeNodeTemplateName = nodeTemplateName
\r
107 if (!attributeExpression.modelableEntityName.equals("SELF", true)) {
\r
108 attributeNodeTemplateName = attributeExpression.modelableEntityName
\r
111 val nodeTemplateAttributeExpression = bluePrintContext.nodeTemplateByName(attributeNodeTemplateName).attributes?.get(attributeName)
\r
112 ?: throw BluePrintException(String.format("failed to get property definitions for node template ({})'s property name ({}) ", nodeTemplateName, attributeName))
\r
114 var propertyDefinition: AttributeDefinition = bluePrintContext.nodeTemplateNodeType(attributeNodeTemplateName).attributes?.get(attributeName)!!
\r
116 log.info("node template name ({}), property Name ({}) resolved value ({})", attributeNodeTemplateName, attributeName, nodeTemplateAttributeExpression)
\r
118 // Check it it is a nested expression
\r
119 valueNode = resolveAssignmentExpression(attributeNodeTemplateName, attributeName, nodeTemplateAttributeExpression)
\r
121 // subPropertyName?.let {
\r
122 // valueNode = valueNode.at(JsonPointer.valueOf(subPropertyName))
\r
128 get_property: [ <modelable_entity_name>, <optional_req_or_cap_name>, <property_name>,
\r
129 <nested_property_name_or_index_1>, ..., <nested_property_name_or_index_n> ]
\r
131 fun resolvePropertyExpression(nodeTemplateName: String, propertyExpression: PropertyExpression): JsonNode {
\r
132 val valueNode: JsonNode
\r
134 val propertyName = propertyExpression.propertyName
\r
135 val subPropertyName: String? = propertyExpression.subPropertyName
\r
137 var propertyNodeTemplateName = nodeTemplateName
\r
138 if (!propertyExpression.modelableEntityName.equals("SELF", true)) {
\r
139 propertyNodeTemplateName = propertyExpression.modelableEntityName
\r
142 val nodeTemplatePropertyExpression = bluePrintContext.nodeTemplateByName(propertyNodeTemplateName).properties?.get(propertyName)
\r
143 ?: throw BluePrintException(format("failed to get property definitions for node template ({})'s property name ({}) ", nodeTemplateName, propertyName))
\r
145 var propertyDefinition: PropertyDefinition = bluePrintContext.nodeTemplateNodeType(propertyNodeTemplateName).properties?.get(propertyName)!!
\r
147 log.info("node template name ({}), property Name ({}) resolved value ({})", propertyNodeTemplateName, propertyName, nodeTemplatePropertyExpression)
\r
149 // Check it it is a nested expression
\r
150 valueNode = resolveAssignmentExpression(propertyNodeTemplateName, propertyName, nodeTemplatePropertyExpression)
\r
152 // subPropertyName?.let {
\r
153 // valueNode = valueNode.at(JsonPointer.valueOf(subPropertyName))
\r
159 get_operation_output: <modelable_entity_name>, <interface_name>, <operation_name>, <output_variable_name>
\r
161 fun resolveOperationOutputExpression(nodeTemplateName: String, operationOutputExpression: OperationOutputExpression): JsonNode {
\r
162 var outputNodeTemplateName = nodeTemplateName
\r
163 if (!operationOutputExpression.modelableEntityName.equals("SELF", true)) {
\r
164 outputNodeTemplateName = operationOutputExpression.modelableEntityName
\r
166 return bluePrintRuntimeService.getNodeTemplateOperationOutputValue(outputNodeTemplateName,
\r
167 operationOutputExpression.interfaceName, operationOutputExpression.operationName,
\r
168 operationOutputExpression.propertyName)
\r
172 get_artifact: [ <modelable_entity_name>, <artifact_name>, <location>, <remove> ]
\r
174 fun resolveArtifactExpression(nodeTemplateName: String, artifactExpression: ArtifactExpression): JsonNode {
\r
176 var artifactNodeTemplateName = nodeTemplateName
\r
177 if (!artifactExpression.modelableEntityName.equals("SELF", true)) {
\r
178 artifactNodeTemplateName = artifactExpression.modelableEntityName
\r
180 val artifactDefinition: ArtifactDefinition = bluePrintContext.nodeTemplateByName(artifactNodeTemplateName)
\r
181 .artifacts?.get(artifactExpression.artifactName)
\r
182 ?: throw BluePrintException(String.format("failed to get artifact definitions for node template ({})'s " +
\r
183 "artifact name ({}) ", nodeTemplateName, artifactExpression.artifactName))
\r
185 return JacksonUtils.jsonNodeFromObject(artifactContent(artifactDefinition))
\r
188 fun artifactContent(artifactDefinition: ArtifactDefinition): String {
\r
189 val bluePrintBasePath: String = context[org.onap.ccsdk.apps.controllerblueprints.core.BluePrintConstants.PROPERTY_BLUEPRINT_BASE_PATH] as? String
\r
190 ?: throw BluePrintException(String.format("failed to get property (%s) from context", org.onap.ccsdk.apps.controllerblueprints.core.BluePrintConstants.PROPERTY_BLUEPRINT_BASE_PATH))
\r
192 if (artifactDefinition.repository != null) {
\r
194 } else if (artifactDefinition.file != null) {
\r
195 return ResourceResolverUtils.getFileContent(artifactDefinition.file!!, bluePrintBasePath)
\r