b2064cb542d1149433c15854689eb33d743bc42e
[ccsdk/cds.git] /
1 /*
2  *  Copyright © 2018 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 @file:Suppress("unused")
17
18 package org.onap.ccsdk.cds.blueprintsprocessor.functions.restconf.executor
19
20 import kotlinx.coroutines.runBlocking
21 import org.onap.ccsdk.cds.blueprintsprocessor.functions.resource.resolution.ResourceResolutionConstants
22 import org.onap.ccsdk.cds.blueprintsprocessor.functions.resource.resolution.ResourceResolutionService
23 import org.onap.ccsdk.cds.blueprintsprocessor.rest.RestLibConstants
24 import org.onap.ccsdk.cds.blueprintsprocessor.rest.service.BluePrintRestLibPropertyService
25 import org.onap.ccsdk.cds.blueprintsprocessor.rest.service.BlueprintWebClientService
26 import org.onap.ccsdk.cds.blueprintsprocessor.services.execution.AbstractScriptComponentFunction
27
28
29 abstract class RestconfComponentFunction : AbstractScriptComponentFunction() {
30
31     open fun bluePrintRestLibPropertyService(): BluePrintRestLibPropertyService =
32             functionDependencyInstanceAsType(RestLibConstants.SERVICE_BLUEPRINT_REST_LIB_PROPERTY)
33
34     open fun resourceResolutionService(): ResourceResolutionService =
35             functionDependencyInstanceAsType(ResourceResolutionConstants.SERVICE_RESOURCE_RESOLUTION)
36
37
38     fun restClientService(selector: String): BlueprintWebClientService {
39         return bluePrintRestLibPropertyService().blueprintWebClientService(selector)
40     }
41
42     fun resolveFromDatabase(resolutionKey: String, artifactName: String): String = runBlocking {
43         resourceResolutionService().resolveFromDatabase(bluePrintRuntimeService, artifactName, resolutionKey)
44     }
45
46     fun generateMessage(artifactName: String): String {
47         return bluePrintRuntimeService.resolveNodeTemplateArtifact(nodeTemplateName, artifactName)
48     }
49
50     fun resolveAndGenerateMessage(artifactPrefix: String): String = runBlocking {
51         resourceResolutionService().resolveResources(bluePrintRuntimeService, nodeTemplateName,
52                 artifactPrefix, mapOf())
53     }
54 }