Removed redundant timeout handling for executeCommand
[ccsdk/cds.git] / ms / blueprintsprocessor / modules / inbounds / designer-api / src / main / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / designer / api / enhancer / BlueprintAttributeDefinitionEnhancerImpl.kt
1 /*
2  * Copyright © 2017-2018 AT&T Intellectual Property.
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.designer.api.enhancer
18
19 import org.onap.ccsdk.cds.blueprintsprocessor.designer.api.utils.BlueprintEnhancerUtils
20 import org.onap.ccsdk.cds.controllerblueprints.core.BlueprintException
21 import org.onap.ccsdk.cds.controllerblueprints.core.BlueprintTypes
22 import org.onap.ccsdk.cds.controllerblueprints.core.data.AttributeDefinition
23 import org.onap.ccsdk.cds.controllerblueprints.core.interfaces.BlueprintAttributeDefinitionEnhancer
24 import org.onap.ccsdk.cds.controllerblueprints.core.interfaces.BlueprintRepoService
25 import org.onap.ccsdk.cds.controllerblueprints.core.interfaces.BlueprintTypeEnhancerService
26 import org.onap.ccsdk.cds.controllerblueprints.core.service.BlueprintContext
27 import org.onap.ccsdk.cds.controllerblueprints.core.service.BlueprintRuntimeService
28
29 class BlueprintAttributeDefinitionEnhancerImpl(
30     private val bluePrintRepoService: BlueprintRepoService,
31     private val bluePrintTypeEnhancerService: BlueprintTypeEnhancerService
32 ) :
33     BlueprintAttributeDefinitionEnhancer {
34
35     lateinit var bluePrintRuntimeService: BlueprintRuntimeService<*>
36     lateinit var bluePrintContext: BlueprintContext
37
38     override fun enhance(bluePrintRuntimeService: BlueprintRuntimeService<*>, name: String, attributeDefinition: AttributeDefinition) {
39         this.bluePrintRuntimeService = bluePrintRuntimeService
40         this.bluePrintContext = bluePrintRuntimeService.bluePrintContext()
41
42         val propertyType = attributeDefinition.type
43         if (BlueprintTypes.validPrimitiveTypes().contains(propertyType)) {
44         } else if (BlueprintTypes.validCollectionTypes().contains(propertyType)) {
45             val entrySchema = attributeDefinition.entrySchema
46                 ?: throw BlueprintException("Entry Schema is missing for collection property($name)")
47
48             if (!BlueprintTypes.validPrimitiveTypes().contains(entrySchema.type)) {
49                 BlueprintEnhancerUtils.populateDataTypes(bluePrintContext, bluePrintRepoService, entrySchema.type)
50             }
51         } else {
52             BlueprintEnhancerUtils.populateDataTypes(bluePrintContext, bluePrintRepoService, propertyType)
53         }
54     }
55 }