Add wrapper function for Cli and Netconf executor
[ccsdk/cds.git] / ms / blueprintsprocessor / functions / cli-executor / src / main / kotlin / internal / scripts / InternalSimpleCli.kt
1 /*
2  *  Copyright © 2019 IBM.
3  *
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
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
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.
15  */
16
17 @file:Suppress("unused")
18
19 package internal.scripts
20
21 import org.onap.ccsdk.cds.blueprintsprocessor.core.api.data.ExecutionServiceInput
22 import org.onap.ccsdk.cds.blueprintsprocessor.functions.cli.executor.cliDeviceInfo
23 import org.onap.ccsdk.cds.blueprintsprocessor.functions.cli.executor.getSshClientService
24 import org.onap.ccsdk.cds.blueprintsprocessor.services.execution.AbstractScriptComponentFunction
25 import org.onap.ccsdk.cds.blueprintsprocessor.services.execution.ComponentScriptExecutor
26 import org.onap.ccsdk.cds.controllerblueprints.core.asJsonPrimitive
27
28 import org.slf4j.LoggerFactory
29
30 open class TestCliScriptFunction : AbstractScriptComponentFunction() {
31
32     private val log = LoggerFactory.getLogger(TestCliScriptFunction::class.java)!!
33
34     override fun getName(): String {
35         return "TestCliScriptFunction"
36     }
37
38     override suspend fun processNB(executionRequest: ExecutionServiceInput) {
39         log.info("Executing process ...")
40     }
41
42     override suspend fun recoverNB(runtimeException: RuntimeException, executionRequest: ExecutionServiceInput) {
43         log.info("Executing Recovery")
44     }
45 }
46
47
48 open class Check : AbstractScriptComponentFunction() {
49
50     private val log = LoggerFactory.getLogger(AbstractScriptComponentFunction::class.java)!!
51
52     override fun getName(): String {
53         return "Check"
54     }
55
56     override suspend fun processNB(executionRequest: ExecutionServiceInput) {
57         // Get the Device Information from the DSL Model
58         val deviceInformation = cliDeviceInfo("device-properties")
59
60         // Get the Client Service
61         val sshClientService = getSshClientService(deviceInformation)
62
63         sshClientService.startSessionNB()
64
65         // Read Commands
66         val commands = readLinesFromArtifact("command-template")
67
68         // Execute multiple Commands
69         val responseLog = sshClientService.executeCommandsNB(commands, 5000)
70
71         // Close Session
72         sshClientService.closeSessionNB()
73
74         // Set the Response Data
75         setAttribute(ComponentScriptExecutor.ATTRIBUTE_RESPONSE_DATA, responseLog.asJsonPrimitive())
76
77         log.info("Executing process")
78     }
79
80     override suspend fun recoverNB(runtimeException: RuntimeException, executionRequest: ExecutionServiceInput) {
81         log.info("Executing Recovery")
82     }
83 }