Formatting Code base with ktlint
[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 import org.slf4j.LoggerFactory
28
29 open class TestCliScriptFunction : AbstractScriptComponentFunction() {
30
31     private val log = LoggerFactory.getLogger(TestCliScriptFunction::class.java)!!
32
33     override fun getName(): String {
34         return "TestCliScriptFunction"
35     }
36
37     override suspend fun processNB(executionRequest: ExecutionServiceInput) {
38         log.info("Executing process ...")
39     }
40
41     override suspend fun recoverNB(runtimeException: RuntimeException, executionRequest: ExecutionServiceInput) {
42         log.info("Executing Recovery")
43     }
44 }
45
46 open class Check : AbstractScriptComponentFunction() {
47
48     private val log = LoggerFactory.getLogger(AbstractScriptComponentFunction::class.java)!!
49
50     override fun getName(): String {
51         return "Check"
52     }
53
54     override suspend fun processNB(executionRequest: ExecutionServiceInput) {
55         // Get the Device Information from the DSL Model
56         val deviceInformation = cliDeviceInfo("device-properties")
57
58         // Get the Client Service
59         val sshClientService = getSshClientService(deviceInformation)
60
61         sshClientService.startSessionNB()
62
63         // Read Commands
64         val commands = readLinesFromArtifact("command-template")
65
66         // Execute multiple Commands
67         val responseLog = sshClientService.executeCommandsNB(commands, 5000)
68
69         // Close Session
70         sshClientService.closeSessionNB()
71
72         // Set the Response Data
73         setAttribute(ComponentScriptExecutor.ATTRIBUTE_RESPONSE_DATA, responseLog.asJsonPrimitive())
74
75         log.info("Executing process")
76     }
77
78     override suspend fun recoverNB(runtimeException: RuntimeException, executionRequest: ExecutionServiceInput) {
79         log.info("Executing Recovery")
80     }
81 }