2  * Copyright © 2017-2018 AT&T Intellectual Property.
 
   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
 
   8  *     http://www.apache.org/licenses/LICENSE-2.0
 
  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.
 
  17 package org.onap.ccsdk.apps.controllerblueprints.core.validation
 
  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
 
  30 open class BluePrintTopologyTemplateValidatorImpl(private val bluePrintTypeValidatorService: BluePrintTypeValidatorService) : BluePrintTopologyTemplateValidator {
 
  32     private val log: EELFLogger = EELFManager.getInstance().getLogger(BluePrintServiceTemplateValidatorImpl::class.toString())
 
  34     lateinit var bluePrintRuntimeService: BluePrintRuntimeService<*>
 
  36     override fun validate(bluePrintRuntimeService: BluePrintRuntimeService<*>, name: String, topologyTemplate: TopologyTemplate) {
 
  37         log.trace("Validating Topology Template..")
 
  38         this.bluePrintRuntimeService = bluePrintRuntimeService
 
  41         topologyTemplate.inputs?.let { validateInputs(topologyTemplate.inputs!!) }
 
  42         // Validate Node Templates
 
  43         topologyTemplate.nodeTemplates?.let { validateNodeTemplates(topologyTemplate.nodeTemplates!!) }
 
  45         topologyTemplate.workflows?.let { validateWorkflows(topologyTemplate.workflows!!) }
 
  48     @Throws(BluePrintException::class)
 
  49     fun validateInputs(inputs: MutableMap<String, PropertyDefinition>) {
 
  50         bluePrintTypeValidatorService.validatePropertyDefinitions(bluePrintRuntimeService, inputs)
 
  54     @Throws(BluePrintException::class)
 
  55     fun validateNodeTemplates(nodeTemplates: MutableMap<String, NodeTemplate>) {
 
  57         nodeTemplates.forEach { nodeTemplateName, nodeTemplate ->
 
  58             // Validate Single Node Template
 
  59             bluePrintTypeValidatorService.validateNodeTemplate(bluePrintRuntimeService, nodeTemplateName, nodeTemplate)
 
  63     @Throws(BluePrintException::class)
 
  64     open fun validateWorkflows(workflows: MutableMap<String, Workflow>) {
 
  66         workflows.forEach { workflowName, workflow ->
 
  67             // Validate Single workflow
 
  68             bluePrintTypeValidatorService.validateWorkflow(bluePrintRuntimeService, workflowName, workflow)