All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.frtu.kotlin.utils.io.JsonBeanHelper.kt Maven / Gradle / Ivy

The newest version!
package com.github.frtu.kotlin.utils.io

import com.fasterxml.jackson.annotation.JsonInclude
import com.fasterxml.jackson.databind.JsonNode
import com.fasterxml.jackson.databind.ObjectMapper
import com.fasterxml.jackson.module.kotlin.jacksonObjectMapper
import com.github.frtu.kotlin.utils.io.JsonUtil.jsonToBean

/**
 * Allow to easily deserialize an object from external JSON source
 *
 * @author Frédéric TU
 * @since 1.1.4
 */
class JsonBeanHelper(
    private val mapper: ObjectMapper = jacksonObjectMapper(),
    private val clazz: Class? = null
) : BeanHelper() {
    /**
     * Allow to easily deserialize an object using a class and a JSON file location
     * using the clazz from constructor
     */
    fun toBean(location: String): T? = toBean(location, clazz!!)

    /**
     * Allow to easily deserialize an object using a class and a JSON file location.
     */
    fun  toBean(location: String, clazz: Class): T? {
        logger.debug("Deserialize class:${clazz} from location:${location}")
        val resource = resourceLoader.getResource(location)
        return mapper.readValue(resource.file, clazz)
    }

    fun  jsonToBean(payload: String, clazz: Class): T = mapper.readValue(payload, clazz)
}

object JsonUtil {
    private val objectMapper = jacksonObjectMapper().setSerializationInclusion(JsonInclude.Include.NON_NULL)
    private val jsonBeanHelper = JsonBeanHelper(objectMapper)

    fun  jsonToBean(payload: String, clazz: Class): T = jsonBeanHelper.jsonToBean(payload, clazz)

    /**
     * Write object into json string
     * @since 1.2.5
     */
    fun toJsonString(obj: Any): String =
        objectMapper.writerWithDefaultPrettyPrinter().writeValueAsString(obj)
}

fun String.toJsonNode() = toJsonObj(JsonNode::class.java)

fun  String.toJsonObj(clazz: Class) = jsonToBean(this, clazz)

/**
 * Allow to print json from any object
 * @since 1.2.5
 */
fun Any.toJsonString() = JsonUtil.toJsonString(this)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy