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

commonMain.aws.sdk.kotlin.services.finspacedata.serde.GetChangesetOperationDeserializer.kt Maven / Gradle / Ivy

There is a newer version: 1.3.99
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.finspacedata.serde

import aws.sdk.kotlin.services.finspacedata.model.ChangeType
import aws.sdk.kotlin.services.finspacedata.model.ChangesetErrorInfo
import aws.sdk.kotlin.services.finspacedata.model.FinspaceDataException
import aws.sdk.kotlin.services.finspacedata.model.GetChangesetResponse
import aws.sdk.kotlin.services.finspacedata.model.IngestionStatus
import aws.smithy.kotlin.runtime.awsprotocol.json.RestJsonErrorDeserializer
import aws.smithy.kotlin.runtime.awsprotocol.setAseErrorMetadata
import aws.smithy.kotlin.runtime.awsprotocol.withPayload
import aws.smithy.kotlin.runtime.http.HttpCall
import aws.smithy.kotlin.runtime.http.isSuccess
import aws.smithy.kotlin.runtime.http.operation.HttpDeserialize
import aws.smithy.kotlin.runtime.http.readAll
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.mutableMapOf


internal class GetChangesetOperationDeserializer: HttpDeserialize {

    override suspend fun deserialize(context: ExecutionContext, call: HttpCall): GetChangesetResponse {
        val response = call.response
        if (!response.status.isSuccess()) {
            throwGetChangesetError(context, call)
        }
        val builder = GetChangesetResponse.Builder()

        val payload = response.body.readAll()
        if (payload != null) {
            deserializeGetChangesetOperationBody(builder, payload)
        }
        builder.correctErrors()
        return builder.build()
    }
}

private suspend fun throwGetChangesetError(context: ExecutionContext, call: HttpCall): kotlin.Nothing {
    val payload = call.response.body.readAll()
    val wrappedResponse = call.response.withPayload(payload)
    val wrappedCall = call.copy(response = wrappedResponse)

    val errorDetails = try {
        RestJsonErrorDeserializer.deserialize(call.response.headers, payload)
    } catch (ex: Exception) {
        throw FinspaceDataException("Failed to parse response as 'restJson1' error", ex).also {
            setAseErrorMetadata(it, wrappedCall.response, null)
        }
    }

    val ex = when(errorDetails.code) {
        "AccessDeniedException" -> AccessDeniedExceptionDeserializer().deserialize(context, wrappedCall)
        "ValidationException" -> ValidationExceptionDeserializer().deserialize(context, wrappedCall)
        "InternalServerException" -> InternalServerExceptionDeserializer().deserialize(context, wrappedCall)
        "ConflictException" -> ConflictExceptionDeserializer().deserialize(context, wrappedCall)
        "ResourceNotFoundException" -> ResourceNotFoundExceptionDeserializer().deserialize(context, wrappedCall)
        "ThrottlingException" -> ThrottlingExceptionDeserializer().deserialize(context, wrappedCall)
        else -> FinspaceDataException(errorDetails.message)
    }

    setAseErrorMetadata(ex, wrappedResponse, errorDetails)
    throw ex
}

private fun deserializeGetChangesetOperationBody(builder: GetChangesetResponse.Builder, payload: ByteArray) {
    val deserializer = JsonDeserializer(payload)
    val ACTIVEFROMTIMESTAMP_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Long, JsonSerialName("activeFromTimestamp"))
    val ACTIVEUNTILTIMESTAMP_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Long, JsonSerialName("activeUntilTimestamp"))
    val CHANGETYPE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("changeType"))
    val CHANGESETARN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("changesetArn"))
    val CHANGESETID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("changesetId"))
    val CREATETIME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Long, JsonSerialName("createTime"))
    val DATASETID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("datasetId"))
    val ERRORINFO_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("errorInfo"))
    val FORMATPARAMS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Map, JsonSerialName("formatParams"))
    val SOURCEPARAMS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Map, JsonSerialName("sourceParams"))
    val STATUS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("status"))
    val UPDATEDBYCHANGESETID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("updatedByChangesetId"))
    val UPDATESCHANGESETID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("updatesChangesetId"))
    val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
        field(ACTIVEFROMTIMESTAMP_DESCRIPTOR)
        field(ACTIVEUNTILTIMESTAMP_DESCRIPTOR)
        field(CHANGETYPE_DESCRIPTOR)
        field(CHANGESETARN_DESCRIPTOR)
        field(CHANGESETID_DESCRIPTOR)
        field(CREATETIME_DESCRIPTOR)
        field(DATASETID_DESCRIPTOR)
        field(ERRORINFO_DESCRIPTOR)
        field(FORMATPARAMS_DESCRIPTOR)
        field(SOURCEPARAMS_DESCRIPTOR)
        field(STATUS_DESCRIPTOR)
        field(UPDATEDBYCHANGESETID_DESCRIPTOR)
        field(UPDATESCHANGESETID_DESCRIPTOR)
    }

    deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
        loop@while (true) {
            when (findNextFieldIndex()) {
                ACTIVEFROMTIMESTAMP_DESCRIPTOR.index -> builder.activeFromTimestamp = deserializeLong()
                ACTIVEUNTILTIMESTAMP_DESCRIPTOR.index -> builder.activeUntilTimestamp = deserializeLong()
                CHANGETYPE_DESCRIPTOR.index -> builder.changeType = deserializeString().let { ChangeType.fromValue(it) }
                CHANGESETARN_DESCRIPTOR.index -> builder.changesetArn = deserializeString()
                CHANGESETID_DESCRIPTOR.index -> builder.changesetId = deserializeString()
                CREATETIME_DESCRIPTOR.index -> builder.createTime = deserializeLong()
                DATASETID_DESCRIPTOR.index -> builder.datasetId = deserializeString()
                ERRORINFO_DESCRIPTOR.index -> builder.errorInfo = deserializeChangesetErrorInfoDocument(deserializer)
                FORMATPARAMS_DESCRIPTOR.index -> builder.formatParams =
                    deserializer.deserializeMap(FORMATPARAMS_DESCRIPTOR) {
                        val map0 = mutableMapOf()
                        while (hasNextEntry()) {
                            val k0 = key()
                            val v0 = if (nextHasValue()) { deserializeString() } else { deserializeNull(); continue }
                            map0[k0] = v0
                        }
                        map0
                    }
                SOURCEPARAMS_DESCRIPTOR.index -> builder.sourceParams =
                    deserializer.deserializeMap(SOURCEPARAMS_DESCRIPTOR) {
                        val map0 = mutableMapOf()
                        while (hasNextEntry()) {
                            val k0 = key()
                            val v0 = if (nextHasValue()) { deserializeString() } else { deserializeNull(); continue }
                            map0[k0] = v0
                        }
                        map0
                    }
                STATUS_DESCRIPTOR.index -> builder.status = deserializeString().let { IngestionStatus.fromValue(it) }
                UPDATEDBYCHANGESETID_DESCRIPTOR.index -> builder.updatedByChangesetId = deserializeString()
                UPDATESCHANGESETID_DESCRIPTOR.index -> builder.updatesChangesetId = deserializeString()
                null -> break@loop
                else -> skipValue()
            }
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy