2 * Copyright © 2017-2018 AT&T Intellectual Property.
\r
3 * Modifications Copyright © 2018 IBM.
\r
5 * Licensed under the Apache License, Version 2.0 (the "License");
\r
6 * you may not use this file except in compliance with the License.
\r
7 * You may obtain a copy of the License at
\r
9 * http://www.apache.org/licenses/LICENSE-2.0
\r
11 * Unless required by applicable law or agreed to in writing, software
\r
12 * distributed under the License is distributed on an "AS IS" BASIS,
\r
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
\r
14 * See the License for the specific language governing permissions and
\r
15 * limitations under the License.
\r
18 package org.onap.ccsdk.apps.controllerblueprints.service.enhancer
\r
20 import com.att.eelf.configuration.EELFLogger
\r
21 import com.att.eelf.configuration.EELFManager
\r
22 import org.onap.ccsdk.apps.controllerblueprints.core.BluePrintException
\r
23 import org.onap.ccsdk.apps.controllerblueprints.core.interfaces.BluePrintEnhancerService
\r
24 import org.onap.ccsdk.apps.controllerblueprints.core.interfaces.BluePrintRepoService
\r
25 import org.onap.ccsdk.apps.controllerblueprints.core.interfaces.BluePrintTypeEnhancerService
\r
26 import org.onap.ccsdk.apps.controllerblueprints.core.service.BluePrintContext
\r
27 import org.onap.ccsdk.apps.controllerblueprints.core.service.BluePrintRuntimeService
\r
28 import org.onap.ccsdk.apps.controllerblueprints.core.utils.BluePrintFileUtils
\r
29 import org.onap.ccsdk.apps.controllerblueprints.core.utils.BluePrintMetadataUtils
\r
30 import org.springframework.stereotype.Service
\r
34 open class BluePrintEnhancerServiceImpl(private val bluePrintRepoService: BluePrintRepoService,
\r
35 private val bluePrintTypeEnhancerService: BluePrintTypeEnhancerService,
\r
36 private val resourceDefinitionEnhancerService: ResourceDefinitionEnhancerService) : BluePrintEnhancerService {
\r
38 private val log: EELFLogger = EELFManager.getInstance().getLogger(BluePrintEnhancerServiceImpl::class.toString())
\r
40 override fun enhance(basePath: String, enrichedBasePath: String): BluePrintContext {
\r
42 // Copy the Blueprint Content to Target Location
\r
43 BluePrintFileUtils.copyBluePrint(basePath, enrichedBasePath)
\r
45 // Enhance the Blueprint
\r
46 return enhance(enrichedBasePath)
\r
49 @Throws(BluePrintException::class)
\r
50 override fun enhance(basePath: String): BluePrintContext {
\r
52 log.info("Enhancing blueprint($basePath)")
\r
53 val blueprintRuntimeService = BluePrintMetadataUtils
\r
54 .getBaseEnhancementBluePrintRuntime(UUID.randomUUID().toString(), basePath)
\r
58 bluePrintTypeEnhancerService.enhanceServiceTemplate(blueprintRuntimeService, "service_template",
\r
59 blueprintRuntimeService.bluePrintContext().serviceTemplate)
\r
61 // Write the Enhanced Blueprint Definitions
\r
62 BluePrintFileUtils.writeEnhancedBluePrint(blueprintRuntimeService.bluePrintContext())
\r
64 // Enhance Resource Dictionary
\r
65 enhanceResourceDefinition(blueprintRuntimeService)
\r
67 if (blueprintRuntimeService.getBluePrintError().errors.isNotEmpty()) {
\r
68 throw BluePrintException(blueprintRuntimeService.getBluePrintError().errors.toString())
\r
71 } catch (e: Exception) {
\r
72 log.error("failed in blueprint enhancement", e)
\r
75 return blueprintRuntimeService.bluePrintContext()
\r
78 private fun enhanceResourceDefinition(blueprintRuntimeService: BluePrintRuntimeService<*>) {
\r
80 resourceDefinitionEnhancerService.enhance(blueprintRuntimeService)
\r