2 * Copyright © 2017-2018 AT&T Intellectual Property.
3 * Modifications Copyright © 2019 IBM.
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
9 * http://www.apache.org/licenses/LICENSE-2.0
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.
18 package org.onap.ccsdk.cds.controllerblueprints.core
20 import com.fasterxml.jackson.databind.JsonNode
21 import com.fasterxml.jackson.databind.node.*
22 import org.onap.ccsdk.cds.controllerblueprints.core.utils.JacksonUtils
23 import org.slf4j.helpers.MessageFormatter
24 import kotlin.reflect.KClass
29 * @author Brinda Santh
32 fun String.isJson(): Boolean {
33 return ((this.startsWith("{") && this.endsWith("}"))
34 || (this.startsWith("[") && this.endsWith("]")))
37 fun Any.asJsonString(intend: Boolean? = false): String {
38 return JacksonUtils.getJson(this, true)
41 fun String.asJsonPrimitive(): TextNode {
45 // If you know the string is json content, then use the function directly
46 fun String.jsonAsJsonType(): JsonNode {
47 return JacksonUtils.jsonNode(this.trim())
50 fun Boolean.asJsonPrimitive(): BooleanNode {
51 return BooleanNode.valueOf(this)
54 fun Int.asJsonPrimitive(): IntNode {
55 return IntNode.valueOf(this)
58 fun Double.asJsonPrimitive(): DoubleNode {
59 return DoubleNode.valueOf(this)
62 fun <T : Any?> T.asJsonType(): JsonNode {
63 return if (this == null) {
76 BooleanNode.valueOf(this)
78 IntNode.valueOf(this.toInt())
80 DoubleNode.valueOf(this.toDouble())
82 JacksonUtils.jsonNodeFromObject(this)
87 fun Map<String, *>.asJsonNode(): JsonNode {
88 return JacksonUtils.jsonNodeFromObject(this)
91 fun Map<String, *>.asObjectNode(): ObjectNode {
92 return JacksonUtils.objectNodeFromObject(this)
95 fun format(message: String, vararg args: Any?): String {
96 if (args != null && args.isNotEmpty()) {
97 return MessageFormatter.arrayFormat(message, args).message
102 fun <T : Any> Map<String, *>.castOptionalValue(key: String, valueType: KClass<T>): T? {
103 if (containsKey(key)) {
104 return get(key) as? T
110 fun <T : Any> Map<String, *>.castValue(key: String, valueType: KClass<T>): T {
111 if (containsKey(key)) {
114 throw BluePrintException("couldn't find the key $key")
118 fun ArrayNode.asListOfString(): List<String> {
119 return JacksonUtils.getListFromJsonNode(this, String::class.java)
122 fun JsonNode.returnNullIfMissing(): JsonNode? {
123 return if (this is NullNode || this is MissingNode) {
129 * Convert Json to map of json node, the root fields will be map keys
131 fun JsonNode.rootFieldsToMap(): MutableMap<String, JsonNode> {
132 if (this is ObjectNode) {
133 val propertyMap: MutableMap<String, JsonNode> = hashMapOf()
134 this.fields().forEach {
135 propertyMap[it.key] = it.value
139 throw BluePrintException("json node should be Object Node Type")
143 fun JsonNode.removeNullNode() {
144 val it = this.iterator()
145 while (it.hasNext()) {
146 val child = it.next()
150 child.removeNullNode()
156 fun MutableMap<String, JsonNode>.putJsonElement(key: String, value: Any) {
157 val convertedValue = value.asJsonType()
158 this[key] = convertedValue
161 fun Map<String, JsonNode>.getAsString(key: String): String {
162 return this[key]?.asText() ?: throw BluePrintException("couldn't find value for key($key)")
165 fun Map<String, JsonNode>.getAsBoolean(key: String): Boolean {
166 return this[key]?.asBoolean() ?: throw BluePrintException("couldn't find value for key($key)")
169 fun Map<String, JsonNode>.getAsInt(key: String): Int {
170 return this[key]?.asInt() ?: throw BluePrintException("couldn't find value for key($key)")
173 fun Map<String, JsonNode>.getAsDouble(key: String): Double {
174 return this[key]?.asDouble() ?: throw BluePrintException("couldn't find value for key($key)")
179 inline fun checkEquals(value1: String?, value2: String?, lazyMessage: () -> Any): Boolean {
180 if (value1.equals(value2, ignoreCase = true)) {
183 throw BluePrintException(lazyMessage().toString())
187 inline fun checkNotEmpty(value: String?, lazyMessage: () -> Any): String {
188 if (value == null || value.isEmpty()) {
189 val message = lazyMessage()
190 throw IllegalStateException(message.toString())
196 inline fun checkNotBlank(value: String?, lazyMessage: () -> Any): String {
197 if (value == null || value.isBlank()) {
198 val message = lazyMessage()
199 throw IllegalStateException(message.toString())
205 fun isNotEmpty(value: String?): Boolean {
206 return value != null && value.isNotEmpty()
209 fun isNotBlank(value: String?): Boolean {
210 return value != null && value.isNotBlank()
214 fun nullToEmpty(value: String?): String {
215 return if (isNotEmpty(value)) value!! else ""