2 * Copyright © 2017-2018 AT&T Intellectual Property.
3 * Modifications Copyright © 2018-2019 IBM, Bell Canada
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
9 * http://www.apache.org/licenses/LICENSE-2.0
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
18 package org.onap.ccsdk.cds.blueprintsprocessor.functions.resource.resolution
20 import com.fasterxml.jackson.databind.JsonNode
21 import kotlinx.coroutines.async
22 import kotlinx.coroutines.awaitAll
23 import kotlinx.coroutines.coroutineScope
24 import org.onap.ccsdk.cds.blueprintsprocessor.functions.resource.resolution.db.ResourceResolution
25 import org.onap.ccsdk.cds.blueprintsprocessor.functions.resource.resolution.db.ResourceResolutionDBService
26 import org.onap.ccsdk.cds.blueprintsprocessor.functions.resource.resolution.db.TemplateResolutionService
27 import org.onap.ccsdk.cds.blueprintsprocessor.functions.resource.resolution.processor.ResourceAssignmentProcessor
28 import org.onap.ccsdk.cds.blueprintsprocessor.functions.resource.resolution.utils.ResourceAssignmentUtils
29 import org.onap.ccsdk.cds.blueprintsprocessor.functions.resource.resolution.utils.ResourceDefinitionUtils.createResourceAssignments
30 import org.onap.ccsdk.cds.controllerblueprints.core.BluePrintConstants
31 import org.onap.ccsdk.cds.controllerblueprints.core.BluePrintProcessorException
32 import org.onap.ccsdk.cds.controllerblueprints.core.asJsonNode
33 import org.onap.ccsdk.cds.controllerblueprints.core.asJsonPrimitive
34 import org.onap.ccsdk.cds.controllerblueprints.core.asJsonType
35 import org.onap.ccsdk.cds.controllerblueprints.core.checkNotEmpty
36 import org.onap.ccsdk.cds.controllerblueprints.core.common.ApplicationConstants.LOG_REDACTED
37 import org.onap.ccsdk.cds.controllerblueprints.core.service.BluePrintRuntimeService
38 import org.onap.ccsdk.cds.controllerblueprints.core.service.BluePrintTemplateService
39 import org.onap.ccsdk.cds.controllerblueprints.core.utils.JacksonUtils
40 import org.onap.ccsdk.cds.controllerblueprints.core.utils.PropertyDefinitionUtils.Companion.hasLogProtect
41 import org.onap.ccsdk.cds.controllerblueprints.resource.dict.ResourceAssignment
42 import org.onap.ccsdk.cds.controllerblueprints.resource.dict.ResourceDefinition
43 import org.onap.ccsdk.cds.controllerblueprints.resource.dict.utils.BulkResourceSequencingUtils
44 import org.slf4j.LoggerFactory
45 import org.springframework.context.ApplicationContext
46 import org.springframework.stereotype.Service
49 data class ResourceResolutionResult(
50 val templateMap: MutableMap<String, String>,
51 val assignmentMap: MutableMap<String, JsonNode>
54 interface ResourceResolutionService {
56 fun registeredResourceSources(): List<String>
58 suspend fun resolveFromDatabase(
59 bluePrintRuntimeService: BluePrintRuntimeService<*>,
60 artifactTemplate: String,
64 suspend fun resolveResolutionKeysFromDatabase(
65 bluePrintRuntimeService: BluePrintRuntimeService<*>,
66 artifactTemplate: String
69 suspend fun resolveArtifactNamesAndResolutionKeysFromDatabase(
70 bluePrintRuntimeService: BluePrintRuntimeService<*>
71 ): Map<String, List<String>>
73 suspend fun resolveResources(
74 bluePrintRuntimeService: BluePrintRuntimeService<*>,
75 nodeTemplateName: String,
76 artifactNames: List<String>,
77 properties: Map<String, Any>,
79 ): ResourceResolutionResult
81 suspend fun resolveResources(
82 bluePrintRuntimeService: BluePrintRuntimeService<*>,
83 nodeTemplateName: String,
84 artifactPrefix: String,
85 properties: Map<String, Any>
86 ): Pair<String, MutableList<ResourceAssignment>>
88 /** Resolve resources for all the sources defined in a particular resource Definition[resolveDefinition]
89 * with other [resourceDefinitions] dependencies for the sources [sources]
90 * Used to get the same resource values from multiple sources. **/
91 suspend fun resolveResourceDefinition(
92 blueprintRuntimeService: BluePrintRuntimeService<*>,
93 resourceDefinitions: MutableMap<String, ResourceDefinition>,
94 resolveDefinition: String,
97 MutableMap<String, JsonNode>
99 suspend fun resolveResourceAssignments(
100 blueprintRuntimeService: BluePrintRuntimeService<*>,
101 resourceDefinitions: MutableMap<String, ResourceDefinition>,
102 resourceAssignments: MutableList<ResourceAssignment>,
103 artifactPrefix: String,
104 properties: Map<String, Any>
108 @Service(ResourceResolutionConstants.SERVICE_RESOURCE_RESOLUTION)
109 open class ResourceResolutionServiceImpl(
110 private var applicationContext: ApplicationContext,
111 private var templateResolutionDBService: TemplateResolutionService,
112 private var blueprintTemplateService: BluePrintTemplateService,
113 private var resourceResolutionDBService: ResourceResolutionDBService
115 ResourceResolutionService {
117 private val log = LoggerFactory.getLogger(ResourceResolutionService::class.java)
119 override fun registeredResourceSources(): List<String> {
120 return applicationContext.getBeanNamesForType(ResourceAssignmentProcessor::class.java)
121 .filter { it.startsWith(ResourceResolutionConstants.PREFIX_RESOURCE_RESOLUTION_PROCESSOR) }
122 .map { it.substringAfter(ResourceResolutionConstants.PREFIX_RESOURCE_RESOLUTION_PROCESSOR) }
125 override suspend fun resolveFromDatabase(
126 bluePrintRuntimeService: BluePrintRuntimeService<*>,
127 artifactTemplate: String,
128 resolutionKey: String
130 return templateResolutionDBService.findByResolutionKeyAndBlueprintNameAndBlueprintVersionAndArtifactName(
131 bluePrintRuntimeService,
137 override suspend fun resolveResolutionKeysFromDatabase(
138 bluePrintRuntimeService: BluePrintRuntimeService<*>,
139 artifactTemplate: String
141 return templateResolutionDBService.findResolutionKeysByBlueprintNameAndBlueprintVersionAndArtifactName(
142 bluePrintRuntimeService,
147 override suspend fun resolveArtifactNamesAndResolutionKeysFromDatabase(
148 bluePrintRuntimeService: BluePrintRuntimeService<*>): Map<String, List<String>> {
149 return templateResolutionDBService.findArtifactNamesAndResolutionKeysByBlueprintNameAndBlueprintVersion(
150 bluePrintRuntimeService
154 override suspend fun resolveResources(
155 bluePrintRuntimeService: BluePrintRuntimeService<*>,
156 nodeTemplateName: String,
157 artifactNames: List<String>,
158 properties: Map<String, Any>,
160 ): ResourceResolutionResult {
162 val resourceAssignmentRuntimeService =
163 ResourceAssignmentUtils.transformToRARuntimeService(bluePrintRuntimeService, artifactNames.toString())
165 val templateMap: MutableMap<String, String> = hashMapOf()
166 val assignmentMap: MutableMap<String, JsonNode> = hashMapOf()
167 artifactNames.forEach { artifactName ->
168 val (resolvedStringContent, resourceAssignmentList) = resolveResources(
169 resourceAssignmentRuntimeService, nodeTemplateName,
170 artifactName, properties
172 val resolvedJsonContent = resourceAssignmentList
173 .associateBy({ it.name }, { it.property?.value })
176 templateMap[artifactName] = resolvedStringContent
177 assignmentMap[artifactName] = resolvedJsonContent
179 val failedResolution = resourceAssignmentList.filter { it.status != "success" && it.property?.required == true }.map { it.name }
180 if (failedResolution.isNotEmpty()) {
181 val errorMessages = mutableListOf("Failed to resolve required values: $failedResolution").apply {
182 this.addAll(resourceAssignmentRuntimeService.getBluePrintError().allErrors())
184 bluePrintRuntimeService.getBluePrintError().addErrors(stepName, errorMessages)
187 return ResourceResolutionResult(templateMap, assignmentMap)
190 override suspend fun resolveResources(
191 bluePrintRuntimeService: BluePrintRuntimeService<*>,
192 nodeTemplateName: String,
193 artifactPrefix: String,
194 properties: Map<String, Any>
195 ): Pair<String, MutableList<ResourceAssignment>> {
197 // Template Artifact Definition Name
198 val artifactTemplate = "$artifactPrefix-template"
199 // Resource Assignment Artifact Definition Name
200 val artifactMapping = "$artifactPrefix-mapping"
202 log.info("Resolving resource with resource assignment artifact($artifactMapping)")
204 val resourceAssignmentContent =
205 bluePrintRuntimeService.resolveNodeTemplateArtifact(nodeTemplateName, artifactMapping)
207 val resourceAssignments: MutableList<ResourceAssignment> =
208 JacksonUtils.getListFromJson(resourceAssignmentContent, ResourceAssignment::class.java)
209 as? MutableList<ResourceAssignment>
210 ?: throw BluePrintProcessorException("couldn't get Dictionary Definitions")
212 if (isToStore(properties)) {
213 val existingResourceResolution = isNewResolution(bluePrintRuntimeService, properties, artifactPrefix)
214 if (existingResourceResolution.isNotEmpty()) {
215 updateResourceAssignmentWithExisting(
216 bluePrintRuntimeService as ResourceAssignmentRuntimeService,
217 existingResourceResolution, resourceAssignments
222 // Get the Resource Dictionary Name
223 val resourceDefinitions: MutableMap<String, ResourceDefinition> = ResourceAssignmentUtils
224 .resourceDefinitions(bluePrintRuntimeService.bluePrintContext().rootPath)
227 resolveResourceAssignments(
228 bluePrintRuntimeService,
235 val resolutionSummary = properties.getOrDefault(
236 ResourceResolutionConstants.RESOURCE_RESOLUTION_INPUT_RESOLUTION_SUMMARY,
240 val resolvedParamJsonContent =
241 ResourceAssignmentUtils.generateResourceDataForAssignments(resourceAssignments.toList())
242 val artifactTemplateDefinition =
243 bluePrintRuntimeService.bluePrintContext().checkNodeTemplateArtifact(nodeTemplateName, artifactTemplate)
245 val resolvedContent = when {
246 artifactTemplateDefinition != null -> {
247 blueprintTemplateService.generateContent(
248 bluePrintRuntimeService, nodeTemplateName,
249 artifactTemplate, resolvedParamJsonContent, false,
251 ResourceResolutionConstants.RESOURCE_RESOLUTION_INPUT_OCCURRENCE to
252 properties[ResourceResolutionConstants.RESOURCE_RESOLUTION_INPUT_OCCURRENCE]
257 resolutionSummary -> {
258 ResourceAssignmentUtils.generateResolutionSummaryData(resourceAssignments, resourceDefinitions)
261 resolvedParamJsonContent
265 if (isToStore(properties)) {
266 templateResolutionDBService.write(properties, resolvedContent, bluePrintRuntimeService, artifactPrefix)
267 log.info("Template resolution saved into database successfully : ($properties)")
270 return Pair(resolvedContent, resourceAssignments)
273 override suspend fun resolveResourceDefinition(
274 blueprintRuntimeService: BluePrintRuntimeService<*>,
275 resourceDefinitions: MutableMap<String, ResourceDefinition>,
276 resolveDefinition: String,
277 sources: List<String>
278 ): MutableMap<String, JsonNode> {
280 // Populate Dummy Resource Assignments
281 val resourceAssignments = createResourceAssignments(resourceDefinitions, resolveDefinition, sources)
283 resolveResourceAssignments(
284 blueprintRuntimeService, resourceDefinitions, resourceAssignments,
285 UUID.randomUUID().toString(), hashMapOf()
288 // Get the data from Resource Assignments
289 return ResourceAssignmentUtils.generateResourceForAssignments(resourceAssignments)
293 * Iterate the Batch, get the Resource Assignment, dictionary Name, Look for the Resource definition for the
294 * name, then get the type of the Resource Definition, Get the instance for the Resource Type and process the
297 override suspend fun resolveResourceAssignments(
298 blueprintRuntimeService: BluePrintRuntimeService<*>,
299 resourceDefinitions: MutableMap<String, ResourceDefinition>,
300 resourceAssignments: MutableList<ResourceAssignment>,
301 artifactPrefix: String,
302 properties: Map<String, Any>
305 val bulkSequenced = BulkResourceSequencingUtils.process(resourceAssignments)
307 // Check the BlueprintRuntime Service Should be ResourceAssignmentRuntimeService
308 val resourceAssignmentRuntimeService = if (blueprintRuntimeService !is ResourceAssignmentRuntimeService) {
309 ResourceAssignmentUtils.transformToRARuntimeService(blueprintRuntimeService, artifactPrefix)
311 blueprintRuntimeService
314 exposeOccurrencePropertyInResourceAssignments(resourceAssignmentRuntimeService, properties)
317 bulkSequenced.forEach { batchResourceAssignments ->
318 // Execute Non Dependent Assignments in parallel ( ie asynchronously )
319 val deferred = batchResourceAssignments
320 .filter { it.name != "*" && it.name != "start" }
321 .filter { it.status != BluePrintConstants.STATUS_SUCCESS }
322 .map { resourceAssignment ->
324 val dictionaryName = resourceAssignment.dictionaryName
325 val dictionarySource = resourceAssignment.dictionarySource
327 val processorName = processorName(dictionaryName!!, dictionarySource!!, resourceDefinitions)
329 val resourceAssignmentProcessor =
330 applicationContext.getBean(processorName) as? ResourceAssignmentProcessor
331 ?: throw BluePrintProcessorException(
332 "failed to get resource processor ($processorName) " +
333 "for resource assignment(${resourceAssignment.name})"
336 // Set BluePrint Runtime Service
337 resourceAssignmentProcessor.raRuntimeService = resourceAssignmentRuntimeService
338 // Set Resource Dictionaries
339 resourceAssignmentProcessor.resourceDictionaries = resourceDefinitions
341 resourceAssignmentProcessor.resourceAssignments = resourceAssignments
343 // Invoke Apply Method
344 resourceAssignmentProcessor.applyNB(resourceAssignment)
346 if (isToStore(properties)) {
347 resourceResolutionDBService.write(
349 blueprintRuntimeService,
353 log.info("Resource resolution saved into database successfully : (${resourceAssignment.name})")
356 // Set errors from RA
357 blueprintRuntimeService.setBluePrintError(resourceAssignmentRuntimeService.getBluePrintError())
358 } catch (e: RuntimeException) {
359 log.error("Fail in processing ${resourceAssignment.name}", e)
360 throw BluePrintProcessorException(e)
364 log.debug("Resolving (${deferred.size})resources parallel.")
371 * If the Source instance is "input", then it is not mandatory to have source Resource Definition, So it can
372 * derive the default input processor.
374 private fun processorName(
375 dictionaryName: String,
376 dictionarySource: String,
377 resourceDefinitions: MutableMap<String, ResourceDefinition>
379 val processorName: String = when (dictionarySource) {
381 "${ResourceResolutionConstants.PREFIX_RESOURCE_RESOLUTION_PROCESSOR}source-input"
384 "${ResourceResolutionConstants.PREFIX_RESOURCE_RESOLUTION_PROCESSOR}source-default"
387 val resourceDefinition = resourceDefinitions[dictionaryName]
388 ?: throw BluePrintProcessorException("couldn't get resource dictionary definition for $dictionaryName")
390 val resourceSource = resourceDefinition.sources[dictionarySource]
391 ?: throw BluePrintProcessorException("couldn't get resource definition $dictionaryName source($dictionarySource)")
393 ResourceResolutionConstants.PREFIX_RESOURCE_RESOLUTION_PROCESSOR.plus(resourceSource.type)
396 checkNotEmpty(processorName) {
397 "couldn't get processor name for resource dictionary definition($dictionaryName) source($dictionarySource)"
403 // Check whether to store or not the resolution of resource and template
404 private fun isToStore(properties: Map<String, Any>): Boolean {
405 return properties.containsKey(ResourceResolutionConstants.RESOURCE_RESOLUTION_INPUT_STORE_RESULT) &&
406 properties[ResourceResolutionConstants.RESOURCE_RESOLUTION_INPUT_STORE_RESULT] as Boolean
409 // Check whether resolution already exist in the database for the specified resolution-key or resourceId/resourceType
410 private suspend fun isNewResolution(
411 bluePrintRuntimeService: BluePrintRuntimeService<*>,
412 properties: Map<String, Any>,
413 artifactPrefix: String
414 ): List<ResourceResolution> {
415 val occurrence = properties[ResourceResolutionConstants.RESOURCE_RESOLUTION_INPUT_OCCURRENCE] as Int
416 val resolutionKey = properties[ResourceResolutionConstants.RESOURCE_RESOLUTION_INPUT_RESOLUTION_KEY] as String
417 val resourceId = properties[ResourceResolutionConstants.RESOURCE_RESOLUTION_INPUT_RESOURCE_ID] as String
418 val resourceType = properties[ResourceResolutionConstants.RESOURCE_RESOLUTION_INPUT_RESOURCE_TYPE] as String
420 if (resolutionKey.isNotEmpty()) {
421 val existingResourceAssignments =
422 resourceResolutionDBService.findByBlueprintNameAndBlueprintVersionAndArtifactNameAndResolutionKeyAndOccurrence(
423 bluePrintRuntimeService,
428 if (existingResourceAssignments.isNotEmpty()) {
430 "Resolution with resolutionKey=($resolutionKey) already exist - will resolve all resources not already resolved.",
434 return existingResourceAssignments
435 } else if (resourceId.isNotEmpty() && resourceType.isNotEmpty()) {
436 val existingResourceAssignments =
437 resourceResolutionDBService.findByBlueprintNameAndBlueprintVersionAndArtifactNameAndResourceIdAndResourceTypeAndOccurrence(
438 bluePrintRuntimeService,
445 if (existingResourceAssignments.isNotEmpty()) {
447 "Resolution with resourceId=($resourceId) and resourceType=($resourceType) already " +
448 "exist - will resolve all resources not already resolved."
451 return existingResourceAssignments
456 // Update the resource assignment list with the status of the resource that have already been resolved
457 private fun updateResourceAssignmentWithExisting(
458 raRuntimeService: ResourceAssignmentRuntimeService,
459 resourceResolutionList: List<ResourceResolution>,
460 resourceAssignmentList: MutableList<ResourceAssignment>
462 resourceResolutionList.forEach { resourceResolution ->
463 if (resourceResolution.status == BluePrintConstants.STATUS_SUCCESS) {
464 resourceAssignmentList.forEach {
465 if (compareOne(resourceResolution, it)) {
467 "Resource ({}) already resolved: value=({})", it.name,
468 if (hasLogProtect(it.property)) LOG_REDACTED else resourceResolution.value
471 // Make sure to recreate value as per the defined type.
472 val value = resourceResolution.value!!.asJsonType(it.property!!.type)
473 it.property!!.value = value
474 it.status = resourceResolution.status
475 ResourceAssignmentUtils.setResourceDataValue(it, raRuntimeService, value)
482 // Comparision between what we have in the database vs what we have to assign.
483 private fun compareOne(resourceResolution: ResourceResolution, resourceAssignment: ResourceAssignment): Boolean {
485 resourceResolution.name == resourceAssignment.name &&
486 resourceResolution.dictionaryName == resourceAssignment.dictionaryName &&
487 resourceResolution.dictionarySource == resourceAssignment.dictionarySource &&
488 resourceResolution.dictionaryVersion == resourceAssignment.version
492 private fun exposeOccurrencePropertyInResourceAssignments(
493 raRuntimeService: ResourceAssignmentRuntimeService,
494 properties: Map<String, Any>
496 raRuntimeService.putResolutionStore(
497 ResourceResolutionConstants.RESOURCE_RESOLUTION_INPUT_OCCURRENCE,
498 properties[ResourceResolutionConstants.RESOURCE_RESOLUTION_INPUT_OCCURRENCE].asJsonPrimitive()