commonMain.aws.sdk.kotlin.services.cloudwatch.serde.GetMetricDataOperationDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cloudwatch-jvm Show documentation
Show all versions of cloudwatch-jvm Show documentation
The AWS SDK for Kotlin client for CloudWatch
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.cloudwatch.serde
import aws.sdk.kotlin.services.cloudwatch.model.CloudWatchException
import aws.sdk.kotlin.services.cloudwatch.model.GetMetricDataResponse
import aws.sdk.kotlin.services.cloudwatch.model.MessageData
import aws.sdk.kotlin.services.cloudwatch.model.MetricDataResult
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.getOrDeserializeErr
import aws.smithy.kotlin.runtime.serde.xml.tryData
import aws.smithy.kotlin.runtime.serde.xml.xmlTagReader
internal class GetMetricDataOperationDeserializer: HttpDeserialize {
override suspend fun deserialize(context: ExecutionContext, call: HttpCall): GetMetricDataResponse {
val response = call.response
if (!response.status.isSuccess()) {
throwGetMetricDataError(context, call)
}
val builder = GetMetricDataResponse.Builder()
val payload = response.body.readAll()
if (payload != null) {
deserializeGetMetricDataOperationBody(builder, payload)
}
builder.correctErrors()
return builder.build()
}
}
private suspend fun throwGetMetricDataError(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 CloudWatchException("Failed to parse response as 'awsQuery' error", ex).also {
setAseErrorMetadata(it, wrappedCall.response, null)
}
}
val ex = when(errorDetails.code) {
"InvalidNextToken" -> InvalidNextTokenDeserializer().deserialize(context, wrappedCall)
else -> CloudWatchException(errorDetails.message)
}
setAseErrorMetadata(ex, wrappedResponse, errorDetails)
throw ex
}
private fun deserializeGetMetricDataOperationBody(builder: GetMetricDataResponse.Builder, payload: ByteArray) {
val root = xmlTagReader(payload)
val unwrapped = unwrapAwsQueryResponse(root, "GetMetricData")
loop@while (true) {
val curr = unwrapped.nextTag() ?: break@loop
when (curr.tagName) {
// Messages com.amazonaws.cloudwatch#GetMetricDataOutput$Messages
"Messages" -> builder.messages = deserializeMetricDataResultMessagesShape(curr)
// MetricDataResults com.amazonaws.cloudwatch#GetMetricDataOutput$MetricDataResults
"MetricDataResults" -> builder.metricDataResults = deserializeMetricDataResultsShape(curr)
// NextToken com.amazonaws.cloudwatch#GetMetricDataOutput$NextToken
"NextToken" -> builder.nextToken = curr.tryData()
.getOrDeserializeErr { "expected (string: `com.amazonaws.cloudwatch#NextToken`)" }
else -> {}
}
curr.drop()
}
}