ecf90a281f900f38c5adcee5fd90b94424e90a14
[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.apps.blueprintsprocessor.functions.netconf.executor
20
21 import org.onap.ccsdk.apps.blueprintsprocessor.core.api.data.ExecutionServiceInput
22 import org.onap.ccsdk.apps.blueprintsprocessor.functions.python.executor.BlueprintJythonService
23 import org.onap.ccsdk.apps.blueprintsprocessor.functions.resource.resolution.ResourceResolutionService
24 import org.onap.ccsdk.apps.blueprintsprocessor.services.execution.AbstractComponentFunction
25 import org.slf4j.LoggerFactory
26 import org.springframework.beans.factory.config.ConfigurableBeanFactory
27 import org.springframework.context.annotation.Scope
28 import org.springframework.stereotype.Component
29
30 @Component("component-netconf-executor")
31 @Scope(value = ConfigurableBeanFactory.SCOPE_PROTOTYPE)
32 open class ComponentNetconfExecutor(private val blueprintJythonService: BlueprintJythonService,
33                                     private var resourceResolutionService: ResourceResolutionService)
34     : AbstractComponentFunction() {
35
36     private val log = LoggerFactory.getLogger(ComponentNetconfExecutor::class.java)
37
38     lateinit var scriptComponent: NetconfComponentFunction
39
40     override fun process(executionRequest: ExecutionServiceInput) {
41
42         scriptComponent = blueprintJythonService.jythonComponentInstance(this) as NetconfComponentFunction
43         checkNotNull(scriptComponent) { "failed to get netconf script component" }
44
45         scriptComponent.bluePrintRuntimeService = bluePrintRuntimeService
46         scriptComponent.resourceResolutionService = resourceResolutionService
47
48         scriptComponent.processId = processId
49         scriptComponent.workflowName = workflowName
50         scriptComponent.stepName = stepName
51         scriptComponent.interfaceName = interfaceName
52         scriptComponent.operationName = operationName
53         scriptComponent.nodeTemplateName = nodeTemplateName
54         scriptComponent.operationInputs = operationInputs
55
56         scriptComponent.process(executionServiceInput)
57     }
58
59     override fun recover(runtimeException: RuntimeException, executionRequest: ExecutionServiceInput) {
60         scriptComponent.recover(runtimeException, executionRequest)
61     }
62
63
64 }