commonMain.aws.sdk.kotlin.services.codegurusecurity.serde.FilePathDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codegurusecurity-jvm Show documentation
Show all versions of codegurusecurity-jvm Show documentation
The AWS SDK for Kotlin client for CodeGuru Security
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.codegurusecurity.serde
import aws.sdk.kotlin.services.codegurusecurity.model.CodeLine
import aws.sdk.kotlin.services.codegurusecurity.model.FilePath
import aws.smithy.kotlin.runtime.serde.Deserializer
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 fun deserializeFilePathDocument(deserializer: Deserializer): FilePath {
val builder = FilePath.Builder()
val CODESNIPPET_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("codeSnippet"))
val ENDLINE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("endLine"))
val NAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("name"))
val PATH_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("path"))
val STARTLINE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("startLine"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(CODESNIPPET_DESCRIPTOR)
field(ENDLINE_DESCRIPTOR)
field(NAME_DESCRIPTOR)
field(PATH_DESCRIPTOR)
field(STARTLINE_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
CODESNIPPET_DESCRIPTOR.index -> builder.codeSnippet =
deserializer.deserializeList(CODESNIPPET_DESCRIPTOR) {
val col0 = mutableListOf()
while (hasNextElement()) {
val el0 = if (nextHasValue()) { deserializeCodeLineDocument(deserializer) } else { deserializeNull(); continue }
col0.add(el0)
}
col0
}
ENDLINE_DESCRIPTOR.index -> builder.endLine = deserializeInt()
NAME_DESCRIPTOR.index -> builder.name = deserializeString()
PATH_DESCRIPTOR.index -> builder.path = deserializeString()
STARTLINE_DESCRIPTOR.index -> builder.startLine = deserializeInt()
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}