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

ai.tock.bot.mongo.GroupByIdContainer_Deserializer.kt Maven / Gradle / Ivy

package ai.tock.bot.mongo

import com.fasterxml.jackson.core.JsonParser
import com.fasterxml.jackson.core.JsonToken
import com.fasterxml.jackson.databind.DeserializationContext
import com.fasterxml.jackson.databind.JsonDeserializer
import com.fasterxml.jackson.databind.module.SimpleModule
import kotlin.String
import kotlin.collections.Map
import kotlin.reflect.KFunction
import kotlin.reflect.KParameter
import kotlin.reflect.full.findParameterByName
import kotlin.reflect.full.primaryConstructor
import org.litote.jackson.JacksonModuleServiceLoader

internal class GroupByIdContainer_Deserializer : JsonDeserializer(),
        JacksonModuleServiceLoader {
    override fun module() = SimpleModule().addDeserializer(GroupByIdContainer::class.java, this)

    override fun deserialize(p: JsonParser, ctxt: DeserializationContext): GroupByIdContainer {
        with(p) {
            var __id_: GroupById? = null
            var __id_set : Boolean = false
            var _token_ : JsonToken? = currentToken
            while (_token_?.isStructEnd != true) { 
                if(_token_ != JsonToken.FIELD_NAME) {
                        _token_ = nextToken()
                        if (_token_?.isStructEnd == true) break
                        }

                val _fieldName_ = currentName
                _token_ = nextToken()
                when (_fieldName_) { 
                    "_id" -> {
                            __id_ = if(_token_ == JsonToken.VALUE_NULL) null
                             else p.readValueAs(GroupById::class.java);
                            __id_set = true
                            }
                    else -> {
                            if (_token_?.isStructStart == true)
                            p.skipChildren()
                            nextToken()
                            }
                    } 
                _token_ = currentToken
                        } 
            return if(__id_set)
                    GroupByIdContainer(_id = __id_!!)
                    else {
                    val map = mutableMapOf()
                    if(__id_set)
                    map[parameters.getValue("_id")] = __id_ 
                    primaryConstructor.callBy(map) 
                    }
        } 
    }

    companion object {
        private val primaryConstructor: KFunction by
                lazy(LazyThreadSafetyMode.PUBLICATION) {
                GroupByIdContainer::class.primaryConstructor!! }

        private val parameters: Map by lazy(LazyThreadSafetyMode.PUBLICATION) {
                kotlin.collections.mapOf("_id" to primaryConstructor.findParameterByName("_id")!!) }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy