
commonMain.aws.sdk.kotlin.services.sns.serde.PublishBatchOperationDeserializer.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.sns.serde
import aws.sdk.kotlin.services.sns.model.BatchResultErrorEntry
import aws.sdk.kotlin.services.sns.model.PublishBatchResponse
import aws.sdk.kotlin.services.sns.model.PublishBatchResultEntry
import aws.sdk.kotlin.services.sns.model.SnsException
import aws.smithy.kotlin.runtime.awsprotocol.setAseErrorMetadata
import aws.smithy.kotlin.runtime.awsprotocol.withPayload
import aws.smithy.kotlin.runtime.awsprotocol.xml.parseRestXmlErrorResponse
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.DeserializationException
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.serializeList
import aws.smithy.kotlin.runtime.serde.serializeMap
import aws.smithy.kotlin.runtime.serde.serializeStruct
import aws.smithy.kotlin.runtime.serde.xml.XmlDeserializer
import aws.smithy.kotlin.runtime.serde.xml.XmlNamespace
import aws.smithy.kotlin.runtime.serde.xml.XmlSerialName
import kotlin.collections.mutableListOf
internal class PublishBatchOperationDeserializer: HttpDeserialize {
override suspend fun deserialize(context: ExecutionContext, call: HttpCall): PublishBatchResponse {
val response = call.response
if (!response.status.isSuccess()) {
throwPublishBatchError(context, call)
}
val builder = PublishBatchResponse.Builder()
val payload = response.body.readAll()
if (payload != null) {
deserializePublishBatchOperationBody(builder, payload)
}
builder.correctErrors()
return builder.build()
}
}
private suspend fun throwPublishBatchError(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 {
checkNotNull(payload){ "unable to parse error from empty response" }
parseRestXmlErrorResponse(payload)
} catch (ex: Exception) {
throw SnsException("Failed to parse response as 'awsQuery' error", ex).also {
setAseErrorMetadata(it, wrappedCall.response, null)
}
}
val ex = when(errorDetails.code) {
"BatchRequestTooLong" -> BatchRequestTooLongExceptionDeserializer().deserialize(context, wrappedCall)
"KMSInvalidState" -> KmsInvalidStateExceptionDeserializer().deserialize(context, wrappedCall)
"KMSNotFound" -> KmsNotFoundExceptionDeserializer().deserialize(context, wrappedCall)
"PlatformApplicationDisabled" -> PlatformApplicationDisabledExceptionDeserializer().deserialize(context, wrappedCall)
"KMSOptInRequired" -> KmsOptInRequiredDeserializer().deserialize(context, wrappedCall)
"ParameterValueInvalid" -> InvalidParameterValueExceptionDeserializer().deserialize(context, wrappedCall)
"InvalidBatchEntryId" -> InvalidBatchEntryIdExceptionDeserializer().deserialize(context, wrappedCall)
"EndpointDisabled" -> EndpointDisabledExceptionDeserializer().deserialize(context, wrappedCall)
"InvalidSecurity" -> InvalidSecurityExceptionDeserializer().deserialize(context, wrappedCall)
"KMSAccessDenied" -> KmsAccessDeniedExceptionDeserializer().deserialize(context, wrappedCall)
"NotFound" -> NotFoundExceptionDeserializer().deserialize(context, wrappedCall)
"InvalidParameter" -> InvalidParameterExceptionDeserializer().deserialize(context, wrappedCall)
"TooManyEntriesInBatchRequest" -> TooManyEntriesInBatchRequestExceptionDeserializer().deserialize(context, wrappedCall)
"ValidationException" -> ValidationExceptionDeserializer().deserialize(context, wrappedCall)
"AuthorizationError" -> AuthorizationErrorExceptionDeserializer().deserialize(context, wrappedCall)
"BatchEntryIdsNotDistinct" -> BatchEntryIdsNotDistinctExceptionDeserializer().deserialize(context, wrappedCall)
"EmptyBatchRequest" -> EmptyBatchRequestExceptionDeserializer().deserialize(context, wrappedCall)
"KMSThrottling" -> KmsThrottlingExceptionDeserializer().deserialize(context, wrappedCall)
"InternalError" -> InternalErrorExceptionDeserializer().deserialize(context, wrappedCall)
"KMSDisabled" -> KmsDisabledExceptionDeserializer().deserialize(context, wrappedCall)
else -> SnsException(errorDetails.message)
}
setAseErrorMetadata(ex, wrappedResponse, errorDetails)
throw ex
}
private fun deserializePublishBatchOperationBody(builder: PublishBatchResponse.Builder, payload: ByteArray) {
val deserializer = XmlDeserializer(payload)
// begin unwrap response wrapper
val resultDescriptor = SdkFieldDescriptor(SerialKind.Struct, XmlSerialName("PublishBatchResult"))
val wrapperDescriptor = SdkObjectDescriptor.build {
trait(XmlSerialName("PublishBatchResponse"))
field(resultDescriptor)
}
val wrapper = deserializer.deserializeStruct(wrapperDescriptor)
if (wrapper.findNextFieldIndex() != resultDescriptor.index) {
throw DeserializationException("failed to unwrap PublishBatch response")
}
// end unwrap response wrapper
val FAILED_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, XmlSerialName("Failed"))
val SUCCESSFUL_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, XmlSerialName("Successful"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
trait(XmlNamespace("http://sns.amazonaws.com/doc/2010-03-31/"))
trait(XmlSerialName("PublishBatchResult"))
field(FAILED_DESCRIPTOR)
field(SUCCESSFUL_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
FAILED_DESCRIPTOR.index -> builder.failed =
deserializer.deserializeList(FAILED_DESCRIPTOR) {
val col0 = mutableListOf()
while (hasNextElement()) {
val el0 = if (nextHasValue()) { deserializeBatchResultErrorEntryDocument(deserializer) } else { deserializeNull(); continue }
col0.add(el0)
}
col0
}
SUCCESSFUL_DESCRIPTOR.index -> builder.successful =
deserializer.deserializeList(SUCCESSFUL_DESCRIPTOR) {
val col0 = mutableListOf()
while (hasNextElement()) {
val el0 = if (nextHasValue()) { deserializePublishBatchResultEntryDocument(deserializer) } else { deserializeNull(); continue }
col0.add(el0)
}
col0
}
null -> break@loop
else -> skipValue()
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy