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.resource.resolution
19 import kotlinx.coroutines.runBlocking
20 import org.onap.ccsdk.cds.blueprintsprocessor.functions.resource.resolution.db.ResourceResolution
21 import org.onap.ccsdk.cds.blueprintsprocessor.functions.resource.resolution.db.ResourceResolutionDBService
22 import org.onap.ccsdk.cds.blueprintsprocessor.services.execution.AbstractComponentFunction
23 import org.onap.ccsdk.cds.controllerblueprints.core.service.BluePrintDependencyService
26 * Register the Resolution module exposed dependency
28 fun BluePrintDependencyService.resourceResolutionService(): ResourceResolutionService =
29 instance(ResourceResolutionConstants.SERVICE_RESOURCE_RESOLUTION)
31 fun BluePrintDependencyService.resourceResolutionDBService(): ResourceResolutionDBService =
32 instance(ResourceResolutionDBService::class.java)
34 suspend fun AbstractComponentFunction.storedContentFromResolvedArtifactNB(
35 resolutionKey: String,
38 return BluePrintDependencyService.resourceResolutionService()
39 .resolveFromDatabase(bluePrintRuntimeService, artifactName, resolutionKey)
42 suspend fun AbstractComponentFunction.storedResolutionKeysForArtifactNameNB(
45 return BluePrintDependencyService.resourceResolutionService()
46 .resolveResolutionKeysFromDatabase(bluePrintRuntimeService, artifactName)
49 suspend fun AbstractComponentFunction.storedArtifactNamesAndResolutionKeysNB(): Map<String,List<String>> {
50 return BluePrintDependencyService.resourceResolutionService()
51 .resolveArtifactNamesAndResolutionKeysFromDatabase(bluePrintRuntimeService)
54 suspend fun AbstractComponentFunction.storedResourceResolutionsNB(
55 resolutionKey: String,
58 ): List<ResourceResolution> {
59 return BluePrintDependencyService.resourceResolutionDBService()
60 .findByBlueprintNameAndBlueprintVersionAndArtifactNameAndResolutionKeyAndOccurrence(
61 bluePrintRuntimeService,
69 * Return resolved and mashed artifact content for artifact prefix [artifactPrefix]
71 suspend fun AbstractComponentFunction.contentFromResolvedArtifactNB(artifactPrefix: String): String {
72 return BluePrintDependencyService.resourceResolutionService()
73 .resolveResources(bluePrintRuntimeService, nodeTemplateName, artifactPrefix, mapOf())
78 * Blocking Methods called from Jython Scripts
81 fun AbstractComponentFunction.storedContentFromResolvedArtifact(resolutionKey: String, artifactName: String):
82 String = runBlocking {
83 storedContentFromResolvedArtifactNB(resolutionKey, artifactName)
86 fun AbstractComponentFunction.contentFromResolvedArtifact(artifactPrefix: String): String = runBlocking {
87 contentFromResolvedArtifactNB(artifactPrefix)