Refactor Netconf script component parent.
[ccsdk/cds.git] / ms / blueprintsprocessor / functions / netconf-executor / src / main / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / functions / netconf / executor / ComponentNetconfExecutor.kt
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.netconf.executor
20
21 import com.fasterxml.jackson.databind.node.ArrayNode
22 import org.onap.ccsdk.cds.blueprintsprocessor.core.api.data.ExecutionServiceInput
23 import org.onap.ccsdk.cds.blueprintsprocessor.functions.resource.resolution.ResourceResolutionConstants
24 import org.onap.ccsdk.cds.blueprintsprocessor.services.execution.AbstractComponentFunction
25 import org.onap.ccsdk.cds.blueprintsprocessor.services.execution.AbstractScriptComponentFunction
26 import org.onap.ccsdk.cds.blueprintsprocessor.services.execution.ComponentFunctionScriptingService
27 import org.onap.ccsdk.cds.controllerblueprints.core.getAsString
28 import org.springframework.beans.factory.config.ConfigurableBeanFactory
29 import org.springframework.context.annotation.Scope
30 import org.springframework.stereotype.Component
31
32 @Component("component-netconf-executor")
33 @Scope(value = ConfigurableBeanFactory.SCOPE_PROTOTYPE)
34 open class ComponentNetconfExecutor(private var componentFunctionScriptingService: ComponentFunctionScriptingService)
35     : AbstractComponentFunction() {
36
37     companion object {
38         const val SCRIPT_TYPE = "script-type"
39         const val SCRIPT_CLASS_REFERENCE = "script-class-reference"
40         const val INSTANCE_DEPENDENCIES = "instance-dependencies"
41     }
42
43     lateinit var scriptComponent: AbstractScriptComponentFunction
44
45     override suspend fun processNB(executionRequest: ExecutionServiceInput) {
46
47         val scriptType = operationInputs.getAsString(SCRIPT_TYPE)
48         val scriptClassReference = operationInputs.getAsString(SCRIPT_CLASS_REFERENCE)
49         val instanceDependenciesNode = operationInputs.get(INSTANCE_DEPENDENCIES) as? ArrayNode
50
51         val scriptDependencies: MutableList<String> = arrayListOf()
52         scriptDependencies.add(ResourceResolutionConstants.SERVICE_RESOURCE_RESOLUTION)
53
54         instanceDependenciesNode?.forEach { instanceName ->
55             scriptDependencies.add(instanceName.textValue())
56         }
57
58         scriptComponent = componentFunctionScriptingService
59                 .scriptInstance<AbstractScriptComponentFunction>(this, scriptType,
60                         scriptClassReference, scriptDependencies)
61
62
63         checkNotNull(scriptComponent) { "failed to get netconf script component" }
64
65         // Handles both script processing and error handling
66         scriptComponent.executeScript(executionServiceInput)
67     }
68
69     override suspend fun recoverNB(runtimeException: RuntimeException, executionRequest: ExecutionServiceInput) {
70         bluePrintRuntimeService.getBluePrintError()
71                 .addError("Failed in ComponentNetconfExecutor : ${runtimeException.message}")
72
73     }
74 }