Migrate "ms/controllerblueprints" from ccsdk/apps
[ccsdk/cds.git] / ms / blueprintsprocessor / modules / commons / processor-core / src / main / kotlin / org / onap / ccsdk / apps / blueprintsprocessor / core / factory / ComponentNodeFactory.kt
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.apps.blueprintsprocessor.core.factory
19
20 import com.att.eelf.configuration.EELFManager
21 import org.onap.ccsdk.apps.controllerblueprints.core.BluePrintProcessorException
22 import org.springframework.context.ApplicationContext
23 import org.springframework.context.ApplicationContextAware
24
25 /**
26  * ComponentNode
27  *
28  * @author Brinda Santh
29  */
30 interface ComponentNode {
31
32     @Throws(BluePrintProcessorException::class)
33     fun validate(context: MutableMap<String, Any>, componentContext: MutableMap<String, Any?>)
34
35     @Throws(BluePrintProcessorException::class)
36     fun process(context: MutableMap<String, Any>, componentContext: MutableMap<String, Any?>)
37
38     @Throws(BluePrintProcessorException::class)
39     fun errorHandle(context: MutableMap<String, Any>, componentContext: MutableMap<String, Any?>)
40
41     @Throws(BluePrintProcessorException::class)
42     fun reTrigger(context: MutableMap<String, Any>, componentContext: MutableMap<String, Any?>)
43 }
44
45 /**
46  * ComponentNodeFactory
47  *
48  * @author Brinda Santh
49  */
50 open class ComponentNodeFactory : ApplicationContextAware {
51     private val log = EELFManager.getInstance().getLogger(ComponentNodeFactory::class.java)
52
53     var componentNodes: MutableMap<String, ComponentNode> = hashMapOf()
54
55     fun getInstance(instanceName: String): ComponentNode? {
56         log.trace("looking for Component Nodes : {}", instanceName)
57         return componentNodes.get(instanceName)
58     }
59
60     fun injectInstance(instanceName: String, componentNode: ComponentNode) {
61         this.componentNodes[instanceName] = componentNode
62     }
63
64     override fun setApplicationContext(context: ApplicationContext) {
65         componentNodes = context.getBeansOfType(ComponentNode::class.java)
66         log.info("Injected Component Nodes : {}", componentNodes)
67     }
68 }