e99f4948980df5d3a29117a21a5a8cb65a4cd331
[ccsdk/cds.git] /
1 /*
2  * Copyright © 2017-2018 AT&T Intellectual Property.
3  * Modifications Copyright © 2018 IBM.
4  *
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
8  *
9  *     http://www.apache.org/licenses/LICENSE-2.0
10  *
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.
16  */
17
18 package org.onap.ccsdk.cds.blueprintsprocessor.designer.api.enhancer
19
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
29 import java.util.UUID
30
31 @Service
32 open class BluePrintEnhancerServiceImpl(
33     private val bluePrintTypeEnhancerService: BluePrintTypeEnhancerService,
34     private val resourceDefinitionEnhancerService: ResourceDefinitionEnhancerService
35 ) : BluePrintEnhancerService {
36
37     private val log = logger(BluePrintEnhancerServiceImpl::class)
38
39     override suspend fun enhance(basePath: String, enrichedBasePath: String): BluePrintContext {
40
41         // Copy the Blueprint Content to Target Location
42         BluePrintFileUtils.copyBluePrint(basePath, enrichedBasePath)
43
44         // Enhance the Blueprint
45         return enhance(enrichedBasePath)
46     }
47
48     @Throws(BluePrintException::class)
49     override suspend fun enhance(basePath: String): BluePrintContext {
50
51         log.info("Enhancing blueprint($basePath)")
52         val blueprintRuntimeService = BluePrintMetadataUtils
53             .getBaseEnhancementBluePrintRuntime(UUID.randomUUID().toString(), basePath)
54
55         try {
56
57             bluePrintTypeEnhancerService.enhanceServiceTemplate(
58                 blueprintRuntimeService, "service_template",
59                 blueprintRuntimeService.bluePrintContext().serviceTemplate
60             )
61
62             log.info("##### Enhancing blueprint Resource Definitions")
63             val resourceDefinitions = resourceDefinitionEnhancerService.enhance(
64                 bluePrintTypeEnhancerService,
65                 blueprintRuntimeService
66             )
67
68             // Write the Enhanced Blueprint Definitions
69             BluePrintFileUtils.writeEnhancedBluePrint(blueprintRuntimeService.bluePrintContext())
70
71             // Write the Enhanced Blueprint Resource Definitions
72             ResourceDictionaryUtils.writeResourceDefinitionTypes(basePath, resourceDefinitions)
73
74             if (blueprintRuntimeService.getBluePrintError().errors.isNotEmpty()) {
75                 throw BluePrintException(blueprintRuntimeService.getBluePrintError().errors.toString())
76             }
77         } catch (e: Exception) {
78             throw e
79         }
80         return blueprintRuntimeService.bluePrintContext()
81     }
82 }