Refactor components core and resource dict modules
[ccsdk/cds.git] / ms / controllerblueprints / modules / blueprint-core / src / main / kotlin / org / onap / ccsdk / apps / controllerblueprints / core / validation / BluePrintTopologyTemplateValidatorImpl.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.apps.controllerblueprints.core.validation
18
19 import com.att.eelf.configuration.EELFLogger
20 import com.att.eelf.configuration.EELFManager
21 import org.onap.ccsdk.apps.controllerblueprints.core.BluePrintException
22 import org.onap.ccsdk.apps.controllerblueprints.core.data.NodeTemplate
23 import org.onap.ccsdk.apps.controllerblueprints.core.data.PropertyDefinition
24 import org.onap.ccsdk.apps.controllerblueprints.core.data.TopologyTemplate
25 import org.onap.ccsdk.apps.controllerblueprints.core.data.Workflow
26 import org.onap.ccsdk.apps.controllerblueprints.core.interfaces.BluePrintTopologyTemplateValidator
27 import org.onap.ccsdk.apps.controllerblueprints.core.interfaces.BluePrintTypeValidatorService
28 import org.onap.ccsdk.apps.controllerblueprints.core.service.BluePrintRuntimeService
29
30 open class BluePrintTopologyTemplateValidatorImpl(private val bluePrintTypeValidatorService: BluePrintTypeValidatorService) : BluePrintTopologyTemplateValidator {
31
32     private val log: EELFLogger = EELFManager.getInstance().getLogger(BluePrintServiceTemplateValidatorImpl::class.toString())
33
34     lateinit var bluePrintRuntimeService: BluePrintRuntimeService<*>
35
36     override fun validate(bluePrintRuntimeService: BluePrintRuntimeService<*>, name: String, topologyTemplate: TopologyTemplate) {
37         log.trace("Validating Topology Template..")
38         this.bluePrintRuntimeService = bluePrintRuntimeService
39
40         // Validate Inputs
41         topologyTemplate.inputs?.let { validateInputs(topologyTemplate.inputs!!) }
42         // Validate Node Templates
43         topologyTemplate.nodeTemplates?.let { validateNodeTemplates(topologyTemplate.nodeTemplates!!) }
44         // Validate Workflow
45         topologyTemplate.workflows?.let { validateWorkflows(topologyTemplate.workflows!!) }
46     }
47
48     @Throws(BluePrintException::class)
49     fun validateInputs(inputs: MutableMap<String, PropertyDefinition>) {
50         bluePrintTypeValidatorService.validatePropertyDefinitions(bluePrintRuntimeService, inputs)
51     }
52
53
54     @Throws(BluePrintException::class)
55     fun validateNodeTemplates(nodeTemplates: MutableMap<String, NodeTemplate>) {
56
57         nodeTemplates.forEach { nodeTemplateName, nodeTemplate ->
58             // Validate Single Node Template
59             bluePrintTypeValidatorService.validateNodeTemplate(bluePrintRuntimeService, nodeTemplateName, nodeTemplate)
60         }
61     }
62
63     @Throws(BluePrintException::class)
64     open fun validateWorkflows(workflows: MutableMap<String, Workflow>) {
65
66         workflows.forEach { workflowName, workflow ->
67             // Validate Single workflow
68             bluePrintTypeValidatorService.validateWorkflow(bluePrintRuntimeService, workflowName, workflow)
69         }
70     }
71
72 }