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