commonMain.aws.sdk.kotlin.services.iotfleetwise.serde.DecoderManifestValidationExceptionDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iotfleetwise-jvm Show documentation
Show all versions of iotfleetwise-jvm Show documentation
The AWS SDK for Kotlin client for IoTFleetWise
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.iotfleetwise.serde
import aws.sdk.kotlin.services.iotfleetwise.model.DecoderManifestValidationException
import aws.sdk.kotlin.services.iotfleetwise.model.InvalidNetworkInterface
import aws.sdk.kotlin.services.iotfleetwise.model.InvalidSignalDecoder
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 DecoderManifestValidationExceptionDeserializer: HttpDeserializer.NonStreaming {
override fun deserialize(context: ExecutionContext, call: HttpCall, payload: ByteArray?): DecoderManifestValidationException {
val response = call.response
val builder = DecoderManifestValidationException.Builder()
if (payload != null) {
deserializeDecoderManifestValidationExceptionError(builder, payload)
}
builder.correctErrors()
return builder.build()
}
}
private fun deserializeDecoderManifestValidationExceptionError(builder: DecoderManifestValidationException.Builder, payload: ByteArray) {
val deserializer = JsonDeserializer(payload)
val INVALIDNETWORKINTERFACES_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("invalidNetworkInterfaces"))
val INVALIDSIGNALS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("invalidSignals"))
val MESSAGE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("message"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(INVALIDNETWORKINTERFACES_DESCRIPTOR)
field(INVALIDSIGNALS_DESCRIPTOR)
field(MESSAGE_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
INVALIDNETWORKINTERFACES_DESCRIPTOR.index -> builder.invalidNetworkInterfaces =
deserializer.deserializeList(INVALIDNETWORKINTERFACES_DESCRIPTOR) {
val col0 = mutableListOf()
while (hasNextElement()) {
val el0 = if (nextHasValue()) { deserializeInvalidNetworkInterfaceDocument(deserializer) } else { deserializeNull(); continue }
col0.add(el0)
}
col0
}
INVALIDSIGNALS_DESCRIPTOR.index -> builder.invalidSignals =
deserializer.deserializeList(INVALIDSIGNALS_DESCRIPTOR) {
val col0 = mutableListOf()
while (hasNextElement()) {
val el0 = if (nextHasValue()) { deserializeInvalidSignalDecoderDocument(deserializer) } else { deserializeNull(); continue }
col0.add(el0)
}
col0
}
MESSAGE_DESCRIPTOR.index -> builder.message = deserializeString()
null -> break@loop
else -> skipValue()
}
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy