c7f35f7c893e1aacac9721d0c93ae5459a7068b2
[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     suspend fun generateMessage(artifactName: String, json: String): String {
45         val templateService = BluePrintTemplateService()
46         return templateService.generateContent(bluePrintRuntimeService, nodeTemplateName, artifactName, json, true)
47     }
48
49
50     fun generateMessage(artifactName: String): String {
51         return bluePrintRuntimeService.resolveNodeTemplateArtifact(nodeTemplateName, artifactName)
52     }
53
54     fun resolveFromDatabase(resolutionKey: String, artifactName: String): String = runBlocking {
55         resourceResolutionService().resolveFromDatabase(bluePrintRuntimeService, artifactName, resolutionKey)
56     }
57
58     fun resolveAndGenerateMessage(artifactMapping: String, artifactTemplate: String): String = runBlocking {
59         resourceResolutionService().resolveResources(bluePrintRuntimeService, nodeTemplateName,
60                 artifactMapping, artifactTemplate)
61     }
62
63     fun resolveAndGenerateMessage(artifactPrefix: String): String = runBlocking {
64         resourceResolutionService().resolveResources(bluePrintRuntimeService, nodeTemplateName,
65                 artifactPrefix, mapOf())
66     }
67 }