e13c150ee52c50ca4fb981f703b7d75c41f5936d
[ccsdk/cds.git] /
1 /*
2  * Copyright © 2017-2018 AT&T Intellectual Property.
3  *
4  * Modifications Copyright © 2019 IBM, Bell Canada.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *     http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19 package org.onap.ccsdk.cds.blueprintsprocessor.functions.python.executor
20
21 import com.fasterxml.jackson.databind.node.ArrayNode
22 import org.apache.commons.io.FilenameUtils
23 import org.onap.ccsdk.cds.blueprintsprocessor.core.api.data.ExecutionServiceInput
24 import org.onap.ccsdk.cds.blueprintsprocessor.services.execution.AbstractComponentFunction
25 import org.onap.ccsdk.cds.blueprintsprocessor.services.execution.scripts.BlueprintJythonService
26 import org.onap.ccsdk.cds.blueprintsprocessor.services.execution.scripts.PythonExecutorConstants
27 import org.onap.ccsdk.cds.controllerblueprints.core.BluePrintConstants
28 import org.onap.ccsdk.cds.controllerblueprints.core.BluePrintProcessorException
29 import org.onap.ccsdk.cds.controllerblueprints.core.checkNotEmpty
30 import org.onap.ccsdk.cds.controllerblueprints.core.data.OperationAssignment
31 import org.slf4j.LoggerFactory
32 import org.springframework.beans.factory.config.ConfigurableBeanFactory
33 import org.springframework.context.ApplicationContext
34 import org.springframework.context.annotation.Scope
35 import org.springframework.stereotype.Component
36
37 @Component("component-jython-executor")
38 @Scope(value = ConfigurableBeanFactory.SCOPE_PROTOTYPE)
39 open class ComponentJythonExecutor(private var applicationContext: ApplicationContext,
40                                    private val blueprintJythonService: BlueprintJythonService) : AbstractComponentFunction() {
41
42     private val log = LoggerFactory.getLogger(ComponentJythonExecutor::class.java)
43
44     private lateinit var componentFunction: JythonComponentFunction
45
46     override suspend fun processNB(executionRequest: ExecutionServiceInput) {
47
48         log.info("Processing : $operationInputs")
49         // Populate Component Instance
50         populateJythonComponentInstance()
51
52         // Invoke Jython Component Script
53         componentFunction.executeScript(executionServiceInput)
54
55     }
56
57     override suspend fun recoverNB(runtimeException: RuntimeException, executionRequest: ExecutionServiceInput) {
58         bluePrintRuntimeService.getBluePrintError()
59                 .addError("Failed in ComponentJythonExecutor : ${runtimeException.message}")
60     }
61
62     private fun populateJythonComponentInstance() {
63         val bluePrintContext = bluePrintRuntimeService.bluePrintContext()
64
65         val operationAssignment: OperationAssignment = bluePrintContext
66                 .nodeTemplateInterfaceOperation(nodeTemplateName, interfaceName, operationName)
67
68         val artifactName: String = operationAssignment.implementation?.primary
69                 ?: throw BluePrintProcessorException("missing primary field to get artifact name for node template ($nodeTemplateName)")
70
71         val artifactDefinition = bluePrintRuntimeService.resolveNodeTemplateArtifactDefinition(nodeTemplateName, artifactName)
72
73         val pythonFileName = artifactDefinition.file
74                 ?: throw BluePrintProcessorException("missing file name for node template ($nodeTemplateName)'s artifactName($artifactName)")
75
76         val pythonClassName = FilenameUtils.getBaseName(pythonFileName)
77
78         val content: String? = bluePrintRuntimeService.resolveNodeTemplateArtifact(nodeTemplateName, artifactName)
79
80         checkNotEmpty(content) { "artifact ($artifactName) content is empty" }
81
82         val instanceDependenciesNode: ArrayNode = operationInputs[PythonExecutorConstants.INPUT_INSTANCE_DEPENDENCIES] as? ArrayNode
83                 ?: throw BluePrintProcessorException("Failed to get property(${PythonExecutorConstants.INPUT_INSTANCE_DEPENDENCIES})")
84
85         val jythonInstance: MutableMap<String, Any> = hashMapOf()
86         jythonInstance["log"] = LoggerFactory.getLogger(pythonClassName)
87         jythonInstance["bluePrintRuntimeService"] = bluePrintRuntimeService
88
89         instanceDependenciesNode.forEach { instanceName ->
90             jythonInstance[instanceName.textValue()] = applicationContext.getBean(instanceName.textValue())
91         }
92
93         // Setup componentFunction
94         componentFunction = blueprintJythonService.jythonInstance(bluePrintContext, pythonClassName, content!!, jythonInstance)
95         componentFunction.bluePrintRuntimeService = bluePrintRuntimeService
96         componentFunction.executionServiceInput = executionServiceInput
97         componentFunction.stepName = stepName
98         componentFunction.interfaceName = interfaceName
99         componentFunction.operationName = operationName
100         componentFunction.processId = processId
101         componentFunction.workflowName = workflowName
102         componentFunction.scriptType = BluePrintConstants.SCRIPT_JYTHON
103     }
104 }