1b84964e8f52d935696d679adc35a481e0a62d3f
[ccsdk/cds.git] /
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 package org.onap.ccsdk.cds.blueprintsprocessor.functions.cli.executor
18
19 import kotlinx.coroutines.runBlocking
20 import org.onap.ccsdk.cds.blueprintsprocessor.functions.resource.resolution.ResourceResolutionConstants
21 import org.onap.ccsdk.cds.blueprintsprocessor.functions.resource.resolution.ResourceResolutionService
22 import org.onap.ccsdk.cds.blueprintsprocessor.services.execution.AbstractScriptComponentFunction
23 import org.onap.ccsdk.cds.blueprintsprocessor.ssh.SshLibConstants
24 import org.onap.ccsdk.cds.blueprintsprocessor.ssh.service.BluePrintSshLibPropertyService
25 import org.onap.ccsdk.cds.controllerblueprints.core.normalizedFile
26 import org.onap.ccsdk.cds.controllerblueprints.core.readNBLines
27 import org.onap.ccsdk.cds.controllerblueprints.core.service.BluePrintTemplateService
28
29 abstract class CliComponentFunction : AbstractScriptComponentFunction() {
30
31     open fun bluePrintSshLibPropertyService(): BluePrintSshLibPropertyService =
32             functionDependencyInstanceAsType(SshLibConstants.SERVICE_BLUEPRINT_SSH_LIB_PROPERTY)
33
34     open fun resourceResolutionService(): ResourceResolutionService =
35             functionDependencyInstanceAsType(ResourceResolutionConstants.SERVICE_RESOURCE_RESOLUTION)
36
37
38     open suspend fun readCommandLinesFromArtifact(artifactName: String): List<String> {
39         val artifactDefinition = bluePrintRuntimeService.resolveNodeTemplateArtifactDefinition(nodeTemplateName, artifactName)
40         val file = normalizedFile(bluePrintRuntimeService.bluePrintContext().rootPath, artifactDefinition.file)
41         return file.readNBLines()
42     }
43
44     fun generateMessage(artifactName: String): String {
45         return bluePrintRuntimeService.resolveNodeTemplateArtifact(nodeTemplateName, artifactName)
46     }
47
48     fun resolveFromDatabase(resolutionKey: String, artifactName: String): String = runBlocking {
49         resourceResolutionService().resolveFromDatabase(bluePrintRuntimeService, artifactName, resolutionKey)
50     }
51
52     fun resolveAndGenerateMessage(artifactMapping: String, artifactTemplate: String): String = runBlocking {
53         resourceResolutionService().resolveResources(bluePrintRuntimeService, nodeTemplateName,
54                 artifactMapping, artifactTemplate)
55     }
56
57     fun resolveAndGenerateMessage(artifactPrefix: String): String = runBlocking {
58         resourceResolutionService().resolveResources(bluePrintRuntimeService, nodeTemplateName,
59                 artifactPrefix, mapOf())
60     }
61 }