2 * Copyright © 2019 IBM.
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.
17 package org.onap.ccsdk.cds.blueprintsprocessor.functions.python.executor
19 import com.fasterxml.jackson.databind.JsonNode
20 import kotlinx.coroutines.GlobalScope
21 import kotlinx.coroutines.TimeoutCancellationException
22 import kotlinx.coroutines.async
23 import kotlinx.coroutines.withTimeout
24 import org.onap.ccsdk.cds.blueprintsprocessor.core.api.data.*
25 import org.onap.ccsdk.cds.blueprintsprocessor.services.execution.AbstractComponentFunction
26 import org.onap.ccsdk.cds.blueprintsprocessor.services.execution.ExecutionServiceConstant
27 import org.onap.ccsdk.cds.blueprintsprocessor.services.execution.RemoteScriptExecutionService
28 import org.onap.ccsdk.cds.controllerblueprints.core.*
29 import org.onap.ccsdk.cds.controllerblueprints.core.data.OperationAssignment
30 import org.onap.ccsdk.cds.controllerblueprints.core.utils.JacksonUtils
31 import org.slf4j.LoggerFactory
32 import org.springframework.beans.factory.config.ConfigurableBeanFactory
33 import org.springframework.boot.autoconfigure.condition.ConditionalOnBean
34 import org.springframework.context.annotation.Scope
35 import org.springframework.stereotype.Component
37 @ConditionalOnBean(name = [ExecutionServiceConstant.SERVICE_GRPC_REMOTE_SCRIPT_EXECUTION])
38 @Component("component-remote-python-executor")
39 @Scope(value = ConfigurableBeanFactory.SCOPE_PROTOTYPE)
40 open class ComponentRemotePythonExecutor(private val remoteScriptExecutionService: RemoteScriptExecutionService)
41 : AbstractComponentFunction() {
43 private val log = LoggerFactory.getLogger(ComponentRemotePythonExecutor::class.java)!!
46 const val INPUT_ENDPOINT_SELECTOR = "endpoint-selector"
47 const val INPUT_DYNAMIC_PROPERTIES = "dynamic-properties"
48 const val INPUT_ARGUMENT_PROPERTIES = "argument-properties"
49 const val INPUT_COMMAND = "command"
50 const val INPUT_PACKAGES = "packages"
51 const val DEFAULT_SELECTOR = "remote-python"
53 const val ATTRIBUTE_EXEC_CMD_STATUS = "status"
54 const val ATTRIBUTE_PREPARE_ENV_LOG = "prepare-environment-logs"
55 const val ATTRIBUTE_EXEC_CMD_LOG = "execute-command-logs"
56 const val ATTRIBUTE_RESPONSE_DATA = "response-data"
59 override suspend fun processNB(executionRequest: ExecutionServiceInput) {
61 log.debug("Processing : $operationInputs")
63 val bluePrintContext = bluePrintRuntimeService.bluePrintContext()
64 val blueprintName = bluePrintContext.name()
65 val blueprintVersion = bluePrintContext.version()
67 val operationAssignment: OperationAssignment = bluePrintContext
68 .nodeTemplateInterfaceOperation(nodeTemplateName, interfaceName, operationName)
70 val artifactName: String = operationAssignment.implementation?.primary
71 ?: throw BluePrintProcessorException("missing primary field to get artifact name for node template ($nodeTemplateName)")
73 val artifactDefinition =
74 bluePrintRuntimeService.resolveNodeTemplateArtifactDefinition(nodeTemplateName, artifactName)
76 checkNotBlank(artifactDefinition.file) { "couldn't get python script path($artifactName)" }
78 val pythonScript = normalizedFile(bluePrintContext.rootPath, artifactDefinition.file)
80 checkFileExists(pythonScript) { "python script(${pythonScript.absolutePath}) doesn't exists" }
82 val endPointSelector = getOperationInput(INPUT_ENDPOINT_SELECTOR)
83 val dynamicProperties = getOptionalOperationInput(INPUT_DYNAMIC_PROPERTIES)
84 val packages = getOptionalOperationInput(INPUT_PACKAGES)?.returnNullIfMissing()
86 val argsNode = getOptionalOperationInput(INPUT_ARGUMENT_PROPERTIES)?.returnNullIfMissing()
88 // This prevents unescaping values, as well as quoting the each parameter, in order to allow for spaces in values
89 val args = getOptionalOperationInput(INPUT_ARGUMENT_PROPERTIES)?.returnNullIfMissing()
90 ?.rootFieldsToMap()?.toSortedMap()?.values?.joinToString(" ") { formatNestedJsonNode(it) }
92 val command = getOperationInput(INPUT_COMMAND).asText()
93 var scriptCommand = command.replace(pythonScript.name, pythonScript.absolutePath)
94 if (args != null && args.isNotEmpty()) {
95 scriptCommand = scriptCommand.plus(" ").plus(args)
99 // Open GRPC Connection
100 if (DEFAULT_SELECTOR == endPointSelector.asText()) {
101 remoteScriptExecutionService.init(endPointSelector.asText())
103 // Get endpoint from DSL
104 val endPointSelectorJson = bluePrintRuntimeService.resolveDSLExpression(endPointSelector.asText())
105 remoteScriptExecutionService.init(endPointSelectorJson)
108 // If packages are defined, then install in remote server
109 if (packages != null) {
110 val prepareEnvInput = PrepareRemoteEnvInput(requestId = processId,
111 remoteIdentifier = RemoteIdentifier(blueprintName = blueprintName,
112 blueprintVersion = blueprintVersion),
115 val prepareEnvOutput = remoteScriptExecutionService.prepareEnv(prepareEnvInput)
116 log.info("$ATTRIBUTE_PREPARE_ENV_LOG - ${prepareEnvOutput.response}")
117 val logs = prepareEnvOutput.response
118 val logsEnv = logs.toString().asJsonPrimitive()
119 setAttribute(ATTRIBUTE_PREPARE_ENV_LOG, logsEnv)
121 if (prepareEnvOutput.status != StatusType.SUCCESS) {
122 setAttribute(ATTRIBUTE_EXEC_CMD_LOG, "N/A".asJsonPrimitive())
123 setNodeOutputErrors(prepareEnvOutput.status.name, logsEnv)
125 setNodeOutputProperties(prepareEnvOutput.status.name.asJsonPrimitive(), logsEnv, "".asJsonPrimitive())
129 // if Env preparation was successful, then proceed with command execution in this Env
130 if (bluePrintRuntimeService.getBluePrintError().errors.isEmpty()) {
131 // Populate command execution properties and pass it to the remote server
132 val properties = dynamicProperties?.returnNullIfMissing()?.rootFieldsToMap() ?: hashMapOf()
134 val remoteExecutionInput = RemoteScriptExecutionInput(
135 requestId = processId,
136 remoteIdentifier = RemoteIdentifier(blueprintName = blueprintName, blueprintVersion = blueprintVersion),
137 command = scriptCommand,
138 properties = properties,
139 timeOut = timeout.toLong())
142 val remoteExecutionOutputDeferred = GlobalScope.async {
143 remoteScriptExecutionService.executeCommand(remoteExecutionInput)
146 val remoteExecutionOutput = withTimeout(timeout * 1000L) {
147 remoteExecutionOutputDeferred.await()
150 checkNotNull(remoteExecutionOutput) {
151 "Error: Request-id $processId did not return a restul from remote command execution."
155 val logs = JacksonUtils.jsonNodeFromObject(remoteExecutionOutput.response)
156 if (remoteExecutionOutput.status != StatusType.SUCCESS) {
157 setNodeOutputErrors(remoteExecutionOutput.status.name, logs, remoteExecutionOutput.payload)
159 setNodeOutputProperties(remoteExecutionOutput.status.name.asJsonPrimitive(), logs,
160 remoteExecutionOutput.payload)
164 } catch (timeoutEx: TimeoutCancellationException) {
165 setNodeOutputErrors(status = "Command executor timed out after $timeout seconds", message = "".asJsonPrimitive())
166 log.error("Command executor timed out after $timeout seconds", timeoutEx)
167 } catch (grpcEx: io.grpc.StatusRuntimeException) {
168 setNodeOutputErrors(status = "Command executor timed out in GRPC call", message = "${grpcEx.status}".asJsonPrimitive())
169 log.error("Command executor time out during GRPC call", grpcEx)
170 } catch (e: Exception) {
171 log.error("Failed to process on remote executor", e)
173 remoteScriptExecutionService.close()
177 override suspend fun recoverNB(runtimeException: RuntimeException, executionRequest: ExecutionServiceInput) {
178 bluePrintRuntimeService.getBluePrintError()
179 .addError("Failed in ComponentRemotePythonExecutor : ${runtimeException.message}")
182 private fun formatNestedJsonNode(node: JsonNode): String {
183 val sb = StringBuilder()
184 if (node.isValueNode) {
187 node.forEach { sb.append(" $it") }
193 * Utility function to set the output properties of the executor node
195 private fun setNodeOutputProperties(status: JsonNode, message: JsonNode, artifacts: JsonNode) {
196 setAttribute(ATTRIBUTE_EXEC_CMD_STATUS, status)
197 log.info("Executor status : $status")
198 setAttribute(ATTRIBUTE_RESPONSE_DATA, artifacts)
199 log.info("Executor artifacts: $artifacts")
200 setAttribute(ATTRIBUTE_EXEC_CMD_LOG, message)
201 log.info("Executor message : $message")
205 * Utility function to set the output properties and errors of the executor node, in cas of errors
207 private fun setNodeOutputErrors(status: String, message: JsonNode, artifacts: JsonNode = "".asJsonPrimitive()) {
208 setAttribute(ATTRIBUTE_EXEC_CMD_STATUS, status.asJsonPrimitive())
209 log.info("Executor status : $status")
210 setAttribute(ATTRIBUTE_EXEC_CMD_LOG, message)
211 log.info("Executor message : $message")
212 setAttribute(ATTRIBUTE_RESPONSE_DATA, artifacts)
213 log.info("Executor artifacts: $artifacts")
215 addError(status, ATTRIBUTE_EXEC_CMD_LOG, message.toString())