commonMain.aws.sdk.kotlin.services.kinesisanalytics.serde.UnableToDetectSchemaExceptionDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kinesisanalytics-jvm Show documentation
Show all versions of kinesisanalytics-jvm Show documentation
The AWS SDK for Kotlin client for Kinesis Analytics
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.kinesisanalytics.serde
import aws.sdk.kotlin.services.kinesisanalytics.model.UnableToDetectSchemaException
import aws.smithy.kotlin.runtime.http.HttpCall
import aws.smithy.kotlin.runtime.http.operation.HttpDeserializer
import aws.smithy.kotlin.runtime.http.response.HttpResponse
import aws.smithy.kotlin.runtime.operation.ExecutionContext
import aws.smithy.kotlin.runtime.serde.SdkFieldDescriptor
import aws.smithy.kotlin.runtime.serde.SdkObjectDescriptor
import aws.smithy.kotlin.runtime.serde.SerialKind
import aws.smithy.kotlin.runtime.serde.asSdkSerializable
import aws.smithy.kotlin.runtime.serde.deserializeList
import aws.smithy.kotlin.runtime.serde.deserializeMap
import aws.smithy.kotlin.runtime.serde.deserializeStruct
import aws.smithy.kotlin.runtime.serde.field
import aws.smithy.kotlin.runtime.serde.json.JsonDeserializer
import aws.smithy.kotlin.runtime.serde.json.JsonSerialName
import aws.smithy.kotlin.runtime.serde.serializeList
import aws.smithy.kotlin.runtime.serde.serializeMap
import aws.smithy.kotlin.runtime.serde.serializeStruct
import kotlin.collections.mutableListOf
internal class UnableToDetectSchemaExceptionDeserializer: HttpDeserializer.NonStreaming {
override fun deserialize(context: ExecutionContext, call: HttpCall, payload: ByteArray?): UnableToDetectSchemaException {
val response = call.response
val builder = UnableToDetectSchemaException.Builder()
if (payload != null) {
deserializeUnableToDetectSchemaExceptionError(builder, payload)
}
builder.correctErrors()
return builder.build()
}
}
private fun deserializeUnableToDetectSchemaExceptionError(builder: UnableToDetectSchemaException.Builder, payload: ByteArray) {
val deserializer = JsonDeserializer(payload)
val PROCESSEDINPUTRECORDS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("ProcessedInputRecords"))
val RAWINPUTRECORDS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("RawInputRecords"))
val MESSAGE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("message"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(PROCESSEDINPUTRECORDS_DESCRIPTOR)
field(RAWINPUTRECORDS_DESCRIPTOR)
field(MESSAGE_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
PROCESSEDINPUTRECORDS_DESCRIPTOR.index -> builder.processedInputRecords =
deserializer.deserializeList(PROCESSEDINPUTRECORDS_DESCRIPTOR) {
val col0 = mutableListOf()
while (hasNextElement()) {
val el0 = if (nextHasValue()) { deserializeString() } else { deserializeNull(); continue }
col0.add(el0)
}
col0
}
RAWINPUTRECORDS_DESCRIPTOR.index -> builder.rawInputRecords =
deserializer.deserializeList(RAWINPUTRECORDS_DESCRIPTOR) {
val col0 = mutableListOf()
while (hasNextElement()) {
val el0 = if (nextHasValue()) { deserializeString() } else { deserializeNull(); continue }
col0.add(el0)
}
col0
}
MESSAGE_DESCRIPTOR.index -> builder.message = deserializeString()
null -> break@loop
else -> skipValue()
}
}
}
}