2 * Copyright © 2019 IBM, Bell Canada.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
16 package org.onap.ccsdk.cds.blueprintsprocessor.services.execution.scripts
18 import com.fasterxml.jackson.databind.JsonNode
19 import com.fasterxml.jackson.databind.node.ArrayNode
20 import org.apache.commons.io.FilenameUtils
21 import org.onap.ccsdk.cds.blueprintsprocessor.services.execution.AbstractComponentFunction
22 import org.onap.ccsdk.cds.controllerblueprints.core.BluePrintProcessorException
23 import org.onap.ccsdk.cds.controllerblueprints.core.checkNotEmptyOrThrow
24 import org.onap.ccsdk.cds.controllerblueprints.core.data.OperationAssignment
25 import org.onap.ccsdk.cds.controllerblueprints.core.interfaces.BlueprintFunctionNode
26 import org.onap.ccsdk.cds.controllerblueprints.core.service.BluePrintContext
27 import org.onap.ccsdk.cds.controllerblueprints.core.utils.JacksonUtils
28 import org.slf4j.Logger
29 import org.slf4j.LoggerFactory
30 import org.springframework.context.ApplicationContext
31 import org.springframework.stereotype.Service
35 class BlueprintJythonService(val pythonExecutorProperty: PythonExecutorProperty,
36 private val applicationContext: ApplicationContext) {
38 val log: Logger = LoggerFactory.getLogger(BlueprintJythonService::class.java)
40 inline fun <reified T> jythonInstance(blueprintContext: BluePrintContext, pythonClassName: String, content: String,
41 dependencyInstanceNames: MutableMap<String, Any>?): T {
43 val blueprintBasePath: String = blueprintContext.rootPath
44 val pythonPath: MutableList<String> = arrayListOf()
45 pythonPath.add(blueprintBasePath)
46 pythonPath.addAll(pythonExecutorProperty.modulePaths)
48 val blueprintPythonConfigurations = BluePrintPython(pythonExecutorProperty.executionPath, pythonPath, arrayListOf())
50 val blueprintPythonHost = BlueprintPythonHost(blueprintPythonConfigurations)
51 val pyObject = blueprintPythonHost.getPythonComponent(content, pythonClassName, dependencyInstanceNames)
53 log.info("Component Object {}", pyObject)
55 return pyObject.__tojava__(T::class.java) as T
58 fun jythonComponentInstance(bluePrintContext: BluePrintContext, scriptClassReference: String):
59 BlueprintFunctionNode<*, *> {
61 val pythonFileName = bluePrintContext.rootPath
63 .plus(scriptClassReference)
65 val pythonClassName = FilenameUtils.getBaseName(pythonFileName)
66 log.info("Getting Jython Script Class($pythonClassName)")
68 val content: String = JacksonUtils.getContent(pythonFileName)
70 val jythonInstances: MutableMap<String, Any> = hashMapOf()
71 jythonInstances["log"] = LoggerFactory.getLogger(pythonClassName)
73 return jythonInstance<BlueprintFunctionNode<*, *>>(bluePrintContext, pythonClassName,
74 content, jythonInstances)
77 fun jythonComponentInstance(abstractComponentFunction: AbstractComponentFunction): AbstractComponentFunction {
79 val bluePrintRuntimeService = abstractComponentFunction.bluePrintRuntimeService
80 val bluePrintContext = bluePrintRuntimeService.bluePrintContext()
81 val nodeTemplateName: String = abstractComponentFunction.nodeTemplateName
82 val operationInputs: MutableMap<String, JsonNode> = abstractComponentFunction.operationInputs
84 val operationAssignment: OperationAssignment = bluePrintContext
85 .nodeTemplateInterfaceOperation(abstractComponentFunction.nodeTemplateName,
86 abstractComponentFunction.interfaceName, abstractComponentFunction.operationName)
88 val blueprintBasePath: String = bluePrintContext.rootPath
90 val artifactName: String = operationAssignment.implementation?.primary
91 ?: throw BluePrintProcessorException("missing primary field to get artifact name for node template ($nodeTemplateName)")
93 val artifactDefinition = bluePrintRuntimeService.resolveNodeTemplateArtifactDefinition(nodeTemplateName, artifactName)
95 val pythonFileName = artifactDefinition.file
96 ?: throw BluePrintProcessorException("missing file name for node template ($nodeTemplateName)'s artifactName($artifactName)")
98 val pythonClassName = FilenameUtils.getBaseName(pythonFileName)
99 log.info("Getting Jython Script Class($pythonClassName)")
101 val content: String? = bluePrintRuntimeService.resolveNodeTemplateArtifact(nodeTemplateName, artifactName)
103 checkNotEmptyOrThrow(content, "artifact ($artifactName) content is empty")
105 val pythonPath: MutableList<String> = operationAssignment.implementation?.dependencies ?: arrayListOf()
106 pythonPath.add(blueprintBasePath)
107 pythonPath.addAll(pythonExecutorProperty.modulePaths)
109 val jythonInstances: MutableMap<String, Any> = hashMapOf()
110 jythonInstances["log"] = LoggerFactory.getLogger(nodeTemplateName)
112 val instanceDependenciesNode: ArrayNode = operationInputs[PythonExecutorConstants.INPUT_INSTANCE_DEPENDENCIES] as? ArrayNode
113 ?: throw BluePrintProcessorException("Failed to get property(${PythonExecutorConstants.INPUT_INSTANCE_DEPENDENCIES})")
115 instanceDependenciesNode.forEach { instanceName ->
116 jythonInstances[instanceName.textValue()] = applicationContext.getBean(instanceName.textValue())
119 val scriptComponentFunction = jythonInstance<AbstractComponentFunction>(bluePrintContext, pythonClassName,
120 content!!, jythonInstances)
122 return scriptComponentFunction