43238a530694e03b6697ac2cc0df60cf85466e94
[ccsdk/cds.git] /
1 /*
2  *  Copyright © 2018 IBM.
3  *  Modifications Copyright © 2017-2018 AT&T Intellectual Property.
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.apps.blueprintsprocessor.functions.resource.resolution.processor
19
20 import org.onap.ccsdk.apps.blueprintsprocessor.functions.resource.resolution.ResourceAssignmentRuntimeService
21 import org.onap.ccsdk.apps.controllerblueprints.core.BluePrintProcessorException
22 import org.onap.ccsdk.apps.controllerblueprints.core.interfaces.BlueprintFunctionNode
23 import org.onap.ccsdk.apps.controllerblueprints.resource.dict.ResourceAssignment
24 import org.onap.ccsdk.apps.controllerblueprints.resource.dict.ResourceDefinition
25 import org.slf4j.LoggerFactory
26
27 abstract class ResourceAssignmentProcessor : BlueprintFunctionNode<ResourceAssignment, ResourceAssignment> {
28
29     private val log = LoggerFactory.getLogger(ResourceAssignmentProcessor::class.java)
30
31     lateinit var raRuntimeService: ResourceAssignmentRuntimeService
32     lateinit var resourceDictionaries: Map<String, ResourceDefinition>
33
34     open fun resourceDefinition(name: String): ResourceDefinition {
35         return resourceDictionaries[name]
36                 ?: throw BluePrintProcessorException("couldn't get resource definition for ($name)")
37     }
38
39     override fun prepareRequest(resourceAssignment: ResourceAssignment): ResourceAssignment {
40         log.info("prepareRequest for ${resourceAssignment.name}, dictionary(${resourceAssignment.dictionaryName})," +
41                 "source(${resourceAssignment.dictionarySource})")
42         return resourceAssignment
43     }
44
45     override fun prepareResponse(): ResourceAssignment {
46         log.info("Preparing Response...")
47         return ResourceAssignment()
48     }
49
50     override fun apply(executionServiceInput: ResourceAssignment): ResourceAssignment {
51         prepareRequest(executionServiceInput)
52         process(executionServiceInput)
53         return prepareResponse()
54     }
55
56 }