commonMain.MapperSerializationStrategy.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of micro_utils.serialization.mapper-jvm Show documentation
Show all versions of micro_utils.serialization.mapper-jvm Show documentation
It is set of projects with micro tools for avoiding of routines coding
package dev.inmo.micro_utils.serialization.mapper
import kotlinx.serialization.SerializationStrategy
import kotlinx.serialization.descriptors.SerialDescriptor
import kotlinx.serialization.encoding.Encoder
/**
* Use this serializer when you have serializable type [I] and want to map it to some [O] in process of
* serialization
*
* @param base Serializer for [I]
* @param internalSerialize Will be used in [internalSerialize] method to convert incoming [O] to [I] and serialize with [base]
*/
open class MapperSerializationStrategy(
private val base: SerializationStrategy,
private val internalSerialize: (Encoder, O) -> I
) : SerializationStrategy {
override val descriptor: SerialDescriptor = base.descriptor
constructor(
base: SerializationStrategy,
serialize: (O) -> I
) : this(base, { _, o -> serialize(o) })
override fun serialize(encoder: Encoder, value: O) {
base.serialize(encoder, internalSerialize(encoder, value))
}
}