f7d41bcc33785c7af3dce39b166baf3cda408717
[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.resource.resolution
18
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
24
25 /**
26  * Register the Resolution module exposed dependency
27  */
28 fun BluePrintDependencyService.resourceResolutionService(): ResourceResolutionService =
29     instance(ResourceResolutionConstants.SERVICE_RESOURCE_RESOLUTION)
30
31 fun BluePrintDependencyService.resourceResolutionDBService(): ResourceResolutionDBService =
32     instance(ResourceResolutionDBService::class.java)
33
34 suspend fun AbstractComponentFunction.storedContentFromResolvedArtifactNB(
35     resolutionKey: String,
36     artifactName: String
37 ): String {
38     return BluePrintDependencyService.resourceResolutionService()
39         .resolveFromDatabase(bluePrintRuntimeService, artifactName, resolutionKey)
40 }
41
42 suspend fun AbstractComponentFunction.storedResolutionKeysForArtifactNameNB(
43     artifactName: String
44 ): List<String> {
45     return BluePrintDependencyService.resourceResolutionService()
46         .resolveResolutionKeysFromDatabase(bluePrintRuntimeService, artifactName)
47 }
48
49 suspend fun AbstractComponentFunction.storedArtifactNamesAndResolutionKeysNB(): Map<String,List<String>> {
50     return BluePrintDependencyService.resourceResolutionService()
51         .resolveArtifactNamesAndResolutionKeysFromDatabase(bluePrintRuntimeService)
52 }
53
54 suspend fun AbstractComponentFunction.storedResourceResolutionsNB(
55     resolutionKey: String,
56     artifactName: String,
57     occurrence: Int = 1
58 ): List<ResourceResolution> {
59     return BluePrintDependencyService.resourceResolutionDBService()
60         .findByBlueprintNameAndBlueprintVersionAndArtifactNameAndResolutionKeyAndOccurrence(
61             bluePrintRuntimeService,
62             resolutionKey,
63             occurrence,
64             artifactName
65         )
66 }
67
68 /**
69  * Return resolved and mashed artifact content for artifact prefix [artifactPrefix]
70  */
71 suspend fun AbstractComponentFunction.contentFromResolvedArtifactNB(artifactPrefix: String): String {
72     return BluePrintDependencyService.resourceResolutionService()
73         .resolveResources(bluePrintRuntimeService, nodeTemplateName, artifactPrefix, mapOf())
74         .first
75 }
76
77 /**
78  * Blocking Methods called from Jython Scripts
79  */
80
81 fun AbstractComponentFunction.storedContentFromResolvedArtifact(resolutionKey: String, artifactName: String):
82     String = runBlocking {
83         storedContentFromResolvedArtifactNB(resolutionKey, artifactName)
84     }
85
86 fun AbstractComponentFunction.contentFromResolvedArtifact(artifactPrefix: String): String = runBlocking {
87         contentFromResolvedArtifactNB(artifactPrefix)
88     }