2 * Copyright © 2019 IBM.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 package org.onap.ccsdk.cds.blueprintsprocessor.functions.cli.executor
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
29 abstract class CliComponentFunction : AbstractScriptComponentFunction() {
31 open fun bluePrintSshLibPropertyService(): BluePrintSshLibPropertyService =
32 functionDependencyInstanceAsType(SshLibConstants.SERVICE_BLUEPRINT_SSH_LIB_PROPERTY)
34 open fun resourceResolutionService(): ResourceResolutionService =
35 functionDependencyInstanceAsType(ResourceResolutionConstants.SERVICE_RESOURCE_RESOLUTION)
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()
44 suspend fun generateMessage(artifactName: String, json: String): String {
45 val templateService = BluePrintTemplateService()
46 return templateService.generateContent(bluePrintRuntimeService, nodeTemplateName, artifactName, json, true)
50 fun generateMessage(artifactName: String): String {
51 return bluePrintRuntimeService.resolveNodeTemplateArtifact(nodeTemplateName, artifactName)
54 fun resolveFromDatabase(resolutionKey: String, artifactName: String): String = runBlocking {
55 resourceResolutionService().resolveFromDatabase(bluePrintRuntimeService, artifactName, resolutionKey)
58 fun resolveAndGenerateMessage(artifactMapping: String, artifactTemplate: String): String = runBlocking {
59 resourceResolutionService().resolveResources(bluePrintRuntimeService, nodeTemplateName,
60 artifactMapping, artifactTemplate)
63 fun resolveAndGenerateMessage(artifactPrefix: String): String = runBlocking {
64 resourceResolutionService().resolveResources(bluePrintRuntimeService, nodeTemplateName,
65 artifactPrefix, mapOf())