aboutsummaryrefslogtreecommitdiffstats
path: root/ms/blueprintsprocessor/modules/services/workflow-service/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/services/workflow/NodeTemplateExecutionService.kt
blob: ff8f5b8cfa2e9d32aa3e8fff9cccf888a20b03b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/*
 *  Copyright © 2019 IBM.
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */

package org.onap.ccsdk.cds.blueprintsprocessor.services.workflow

import com.fasterxml.jackson.databind.JsonNode
import org.onap.ccsdk.cds.blueprintsprocessor.core.api.data.ExecutionServiceInput
import org.onap.ccsdk.cds.blueprintsprocessor.core.api.data.ExecutionServiceOutput
import org.onap.ccsdk.cds.blueprintsprocessor.core.api.data.StepData
import org.onap.ccsdk.cds.blueprintsprocessor.core.service.BlueprintClusterService
import org.onap.ccsdk.cds.blueprintsprocessor.services.execution.AbstractComponentFunction
import org.onap.ccsdk.cds.controllerblueprints.core.BlueprintConstants
import org.onap.ccsdk.cds.controllerblueprints.core.asJsonPrimitive
import org.onap.ccsdk.cds.controllerblueprints.core.data.Implementation
import org.onap.ccsdk.cds.controllerblueprints.core.service.BlueprintDependencyService
import org.onap.ccsdk.cds.controllerblueprints.core.service.BlueprintRuntimeService
import org.slf4j.LoggerFactory
import org.springframework.stereotype.Service

@Service
open class NodeTemplateExecutionService(private val bluePrintClusterService: BlueprintClusterService) {

    private val log = LoggerFactory.getLogger(NodeTemplateExecutionService::class.java)!!

    suspend fun executeNodeTemplate(
        bluePrintRuntimeService: BlueprintRuntimeService<*>,
        stepName: String,
        nodeTemplateName: String,
        executionServiceInput: ExecutionServiceInput
    ): ExecutionServiceOutput {
        // Get the Blueprint Context
        val blueprintContext = bluePrintRuntimeService.bluePrintContext()

        val nodeTemplate = blueprintContext.nodeTemplateByName(nodeTemplateName)
        // Get the Component Name, NodeTemplate type is mapped to Component Name
        val componentName = nodeTemplate.type

        val interfaceName = blueprintContext.nodeTemplateFirstInterfaceName(nodeTemplateName)

        val operationName = blueprintContext.nodeTemplateFirstInterfaceFirstOperationName(nodeTemplateName)

        val nodeTemplateImplementation = blueprintContext
            .nodeTemplateOperationImplementation(nodeTemplateName, interfaceName, operationName)
            ?: Implementation()

        log.info(
            "executing node template($nodeTemplateName) component($componentName) " +
                "interface($interfaceName) operation($operationName) on host (${nodeTemplateImplementation.operationHost}) " +
                "with timeout(${nodeTemplateImplementation.timeout}) sec."
        )

        // Get the Component Instance
        val plugin = BlueprintDependencyService.instance<AbstractComponentFunction>(componentName)
        // Set the Blueprint Services
        plugin.bluePrintRuntimeService = bluePrintRuntimeService
        plugin.bluePrintClusterService = bluePrintClusterService
        plugin.stepName = stepName
        plugin.nodeTemplateName = nodeTemplateName

        // Parent request shouldn't tamper, so need to clone the request and send to the actual component.
        val clonedExecutionServiceInput = ExecutionServiceInput().apply {
            commonHeader = executionServiceInput.commonHeader
            actionIdentifiers = executionServiceInput.actionIdentifiers
            payload = executionServiceInput.payload
        }

        // Populate Step Meta Data
        val stepInputs: MutableMap<String, JsonNode> = hashMapOf()
        stepInputs[BlueprintConstants.PROPERTY_CURRENT_NODE_TEMPLATE] = nodeTemplateName.asJsonPrimitive()
        stepInputs[BlueprintConstants.PROPERTY_CURRENT_INTERFACE] = interfaceName.asJsonPrimitive()
        stepInputs[BlueprintConstants.PROPERTY_CURRENT_OPERATION] = operationName.asJsonPrimitive()
        val stepInputData = StepData().apply {
            name = stepName
            properties = stepInputs
        }
        clonedExecutionServiceInput.stepData = stepInputData

        // Get the Request from the Context and Set to the Function Input and Invoke the function
        return plugin.applyNB(clonedExecutionServiceInput)
    }
}