2 * Copyright © 2017-2018 AT&T Intellectual Property.
3 * Modifications Copyright © 2018 IBM.
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.designer.api.enhancer
20 import org.onap.ccsdk.cds.controllerblueprints.core.BluePrintException
21 import org.onap.ccsdk.cds.controllerblueprints.core.interfaces.BluePrintEnhancerService
22 import org.onap.ccsdk.cds.controllerblueprints.core.interfaces.BluePrintTypeEnhancerService
23 import org.onap.ccsdk.cds.controllerblueprints.core.logger
24 import org.onap.ccsdk.cds.controllerblueprints.core.service.BluePrintContext
25 import org.onap.ccsdk.cds.controllerblueprints.core.utils.BluePrintFileUtils
26 import org.onap.ccsdk.cds.controllerblueprints.core.utils.BluePrintMetadataUtils
27 import org.onap.ccsdk.cds.controllerblueprints.resource.dict.utils.ResourceDictionaryUtils
28 import org.springframework.stereotype.Service
32 open class BluePrintEnhancerServiceImpl(
33 private val bluePrintTypeEnhancerService: BluePrintTypeEnhancerService,
34 private val resourceDefinitionEnhancerService: ResourceDefinitionEnhancerService
35 ) : BluePrintEnhancerService {
37 private val log = logger(BluePrintEnhancerServiceImpl::class)
39 override suspend fun enhance(basePath: String, enrichedBasePath: String): BluePrintContext {
41 // Copy the Blueprint Content to Target Location
42 BluePrintFileUtils.copyBluePrint(basePath, enrichedBasePath)
44 // Enhance the Blueprint
45 return enhance(enrichedBasePath)
48 @Throws(BluePrintException::class)
49 override suspend fun enhance(basePath: String): BluePrintContext {
51 log.info("Enhancing blueprint($basePath)")
52 val blueprintRuntimeService = BluePrintMetadataUtils
53 .getBaseEnhancementBluePrintRuntime(UUID.randomUUID().toString(), basePath)
57 bluePrintTypeEnhancerService.enhanceServiceTemplate(
58 blueprintRuntimeService, "service_template",
59 blueprintRuntimeService.bluePrintContext().serviceTemplate
62 log.info("##### Enhancing blueprint Resource Definitions")
63 val resourceDefinitions = resourceDefinitionEnhancerService.enhance(
64 bluePrintTypeEnhancerService,
65 blueprintRuntimeService
68 // Write the Enhanced Blueprint Definitions
69 BluePrintFileUtils.writeEnhancedBluePrint(blueprintRuntimeService.bluePrintContext())
71 // Write the Enhanced Blueprint Resource Definitions
72 ResourceDictionaryUtils.writeResourceDefinitionTypes(basePath, resourceDefinitions)
74 if (blueprintRuntimeService.getBluePrintError().errors.isNotEmpty()) {
75 throw BluePrintException(blueprintRuntimeService.getBluePrintError().errors.toString())
77 } catch (e: Exception) {
80 return blueprintRuntimeService.bluePrintContext()