Fixing Blueprint Typo's and docs
[ccsdk/cds.git] / ms / blueprintsprocessor / modules / blueprints / 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.fasterxml.jackson.databind.JsonNode
20 import com.fasterxml.jackson.databind.node.NullNode
21 import org.onap.ccsdk.cds.controllerblueprints.core.BlueprintConstants
22 import org.onap.ccsdk.cds.controllerblueprints.core.service.BlueprintContext
23 import org.slf4j.LoggerFactory
24
25 /**
26  *
27  *
28  * @author Brinda Santh
29  */
30 object BlueprintRuntimeUtils {
31
32     private val log = LoggerFactory.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(
40         bluePrintContext: BlueprintContext,
41         fileName: String,
42         context: MutableMap<String,
43             JsonNode>
44     ) {
45         val jsonNode = JacksonUtils.jsonNodeFromClassPathFile(fileName)
46         return assignInputs(bluePrintContext, jsonNode, context)
47     }
48
49     fun assignInputsFromContent(bluePrintContext: BlueprintContext, content: String, context: MutableMap<String, JsonNode>) {
50         val jsonNode: JsonNode = JacksonUtils.jsonNode(content)
51         return assignInputs(bluePrintContext, jsonNode, context)
52     }
53
54     fun assignInputs(bluePrintContext: BlueprintContext, jsonNode: JsonNode, context: MutableMap<String, JsonNode>) {
55         log.info("assignInputs from input JSON ({})", jsonNode.toString())
56         bluePrintContext.inputs()?.forEach { propertyName, _ ->
57             val valueNode: JsonNode = jsonNode.at("/".plus(propertyName)) ?: NullNode.getInstance()
58
59             val path = BlueprintConstants.PATH_INPUTS.plus(BlueprintConstants.PATH_DIVIDER).plus(propertyName)
60             log.trace("setting input path ({}), values ({})", path, valueNode)
61             context[path] = valueNode
62         }
63     }
64 }