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

commonMain.aws.sdk.kotlin.services.finspacedata.serde.GetDataViewOperationDeserializer.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.DataViewDestinationTypeParams
import aws.sdk.kotlin.services.finspacedata.model.DataViewErrorInfo
import aws.sdk.kotlin.services.finspacedata.model.DataViewStatus
import aws.sdk.kotlin.services.finspacedata.model.FinspaceDataException
import aws.sdk.kotlin.services.finspacedata.model.GetDataViewResponse
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.mutableListOf


internal class GetDataViewOperationDeserializer: HttpDeserialize {

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

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

private suspend fun throwGetDataViewError(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) {
        "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 deserializeGetDataViewOperationBody(builder: GetDataViewResponse.Builder, payload: ByteArray) {
    val deserializer = JsonDeserializer(payload)
    val ASOFTIMESTAMP_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Long, JsonSerialName("asOfTimestamp"))
    val AUTOUPDATE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Boolean, JsonSerialName("autoUpdate"))
    val CREATETIME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Long, JsonSerialName("createTime"))
    val DATAVIEWARN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("dataViewArn"))
    val DATAVIEWID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("dataViewId"))
    val DATASETID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("datasetId"))
    val DESTINATIONTYPEPARAMS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("destinationTypeParams"))
    val ERRORINFO_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("errorInfo"))
    val LASTMODIFIEDTIME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Long, JsonSerialName("lastModifiedTime"))
    val PARTITIONCOLUMNS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("partitionColumns"))
    val SORTCOLUMNS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("sortColumns"))
    val STATUS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("status"))
    val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
        field(ASOFTIMESTAMP_DESCRIPTOR)
        field(AUTOUPDATE_DESCRIPTOR)
        field(CREATETIME_DESCRIPTOR)
        field(DATAVIEWARN_DESCRIPTOR)
        field(DATAVIEWID_DESCRIPTOR)
        field(DATASETID_DESCRIPTOR)
        field(DESTINATIONTYPEPARAMS_DESCRIPTOR)
        field(ERRORINFO_DESCRIPTOR)
        field(LASTMODIFIEDTIME_DESCRIPTOR)
        field(PARTITIONCOLUMNS_DESCRIPTOR)
        field(SORTCOLUMNS_DESCRIPTOR)
        field(STATUS_DESCRIPTOR)
    }

    deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
        loop@while (true) {
            when (findNextFieldIndex()) {
                ASOFTIMESTAMP_DESCRIPTOR.index -> builder.asOfTimestamp = deserializeLong()
                AUTOUPDATE_DESCRIPTOR.index -> builder.autoUpdate = deserializeBoolean()
                CREATETIME_DESCRIPTOR.index -> builder.createTime = deserializeLong()
                DATAVIEWARN_DESCRIPTOR.index -> builder.dataViewArn = deserializeString()
                DATAVIEWID_DESCRIPTOR.index -> builder.dataViewId = deserializeString()
                DATASETID_DESCRIPTOR.index -> builder.datasetId = deserializeString()
                DESTINATIONTYPEPARAMS_DESCRIPTOR.index -> builder.destinationTypeParams = deserializeDataViewDestinationTypeParamsDocument(deserializer)
                ERRORINFO_DESCRIPTOR.index -> builder.errorInfo = deserializeDataViewErrorInfoDocument(deserializer)
                LASTMODIFIEDTIME_DESCRIPTOR.index -> builder.lastModifiedTime = deserializeLong()
                PARTITIONCOLUMNS_DESCRIPTOR.index -> builder.partitionColumns =
                    deserializer.deserializeList(PARTITIONCOLUMNS_DESCRIPTOR) {
                        val col0 = mutableListOf()
                        while (hasNextElement()) {
                            val el0 = if (nextHasValue()) { deserializeString() } else { deserializeNull(); continue }
                            col0.add(el0)
                        }
                        col0
                    }
                SORTCOLUMNS_DESCRIPTOR.index -> builder.sortColumns =
                    deserializer.deserializeList(SORTCOLUMNS_DESCRIPTOR) {
                        val col0 = mutableListOf()
                        while (hasNextElement()) {
                            val el0 = if (nextHasValue()) { deserializeString() } else { deserializeNull(); continue }
                            col0.add(el0)
                        }
                        col0
                    }
                STATUS_DESCRIPTOR.index -> builder.status = deserializeString().let { DataViewStatus.fromValue(it) }
                null -> break@loop
                else -> skipValue()
            }
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy