Migrate ccsdk/apps to ccsdk/cds
[ccsdk/cds.git] / ms / controllerblueprints / modules / blueprint-core / src / main / kotlin / org / onap / ccsdk / cds / controllerblueprints / core / utils / BluePrintRuntimeUtils.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.controllerblueprints.core.utils
18
19 import com.att.eelf.configuration.EELFLogger
20 import com.att.eelf.configuration.EELFManager
21 import com.fasterxml.jackson.databind.JsonNode
22 import com.fasterxml.jackson.databind.node.NullNode
23 import org.onap.ccsdk.cds.controllerblueprints.core.BluePrintConstants
24 import org.onap.ccsdk.cds.controllerblueprints.core.service.BluePrintContext
25
26 /**
27  *
28  *
29  * @author Brinda Santh
30  */
31 object BluePrintRuntimeUtils {
32     private val log: EELFLogger = EELFManager.getInstance().getLogger(this::class.toString())
33
34     fun assignInputsFromFile(bluePrintContext: BluePrintContext, fileName: String, context: MutableMap<String, JsonNode>) {
35         val jsonNode: JsonNode = JacksonUtils.jsonNodeFromFile(fileName)
36         return assignInputs(bluePrintContext, jsonNode, context)
37     }
38
39     fun assignInputsFromClassPathFile(bluePrintContext: BluePrintContext, fileName: String, context: MutableMap<String,
40             JsonNode>) {
41         val jsonNode = JacksonUtils.jsonNodeFromClassPathFile(fileName)
42         return assignInputs(bluePrintContext, jsonNode, context)
43     }
44
45     fun assignInputsFromContent(bluePrintContext: BluePrintContext, content: String, context: MutableMap<String, JsonNode>) {
46         val jsonNode: JsonNode = JacksonUtils.jsonNode(content)
47         return assignInputs(bluePrintContext, jsonNode, context)
48     }
49
50     fun assignInputs(bluePrintContext: BluePrintContext, jsonNode: JsonNode, context: MutableMap<String, JsonNode>) {
51         log.info("assignInputs from input JSON ({})", jsonNode.toString())
52         bluePrintContext.inputs()?.forEach { propertyName, _ ->
53             val valueNode: JsonNode = jsonNode.at("/".plus(propertyName)) ?: NullNode.getInstance()
54
55             val path = BluePrintConstants.PATH_INPUTS.plus(BluePrintConstants.PATH_DIVIDER).plus(propertyName)
56             log.trace("setting input path ({}), values ({})", path, valueNode)
57             context[path] = valueNode
58         }
59     }
60
61 }