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

xyz.block.ftl.v1.DeploymentArtefact.kt Maven / Gradle / Ivy

There is a newer version: 0.133.2
Show newest version
// Code generated by Wire protocol buffer compiler, do not edit.
// Source: xyz.block.ftl.v1.DeploymentArtefact in xyz/block/ftl/v1/ftl.proto
package xyz.block.ftl.v1

import com.squareup.wire.FieldEncoding
import com.squareup.wire.Message
import com.squareup.wire.ProtoAdapter
import com.squareup.wire.ProtoReader
import com.squareup.wire.ProtoWriter
import com.squareup.wire.ReverseProtoWriter
import com.squareup.wire.Syntax.PROTO_3
import com.squareup.wire.WireField
import com.squareup.wire.`internal`.JvmField
import com.squareup.wire.`internal`.sanitize
import kotlin.Any
import kotlin.AssertionError
import kotlin.Boolean
import kotlin.Deprecated
import kotlin.DeprecationLevel
import kotlin.Int
import kotlin.Long
import kotlin.Nothing
import kotlin.String
import okio.ByteString

public class DeploymentArtefact(
  @field:WireField(
    tag = 1,
    adapter = "com.squareup.wire.ProtoAdapter#STRING",
    label = WireField.Label.OMIT_IDENTITY,
    schemaIndex = 0,
  )
  public val digest: String = "",
  @field:WireField(
    tag = 2,
    adapter = "com.squareup.wire.ProtoAdapter#STRING",
    label = WireField.Label.OMIT_IDENTITY,
    schemaIndex = 1,
  )
  public val path: String = "",
  @field:WireField(
    tag = 3,
    adapter = "com.squareup.wire.ProtoAdapter#BOOL",
    label = WireField.Label.OMIT_IDENTITY,
    schemaIndex = 2,
  )
  public val executable: Boolean = false,
  unknownFields: ByteString = ByteString.EMPTY,
) : Message(ADAPTER, unknownFields) {
  @Deprecated(
    message = "Shouldn't be used in Kotlin",
    level = DeprecationLevel.HIDDEN,
  )
  override fun newBuilder(): Nothing = throw
      AssertionError("Builders are deprecated and only available in a javaInterop build; see https://square.github.io/wire/wire_compiler/#kotlin")

  override fun equals(other: Any?): Boolean {
    if (other === this) return true
    if (other !is DeploymentArtefact) return false
    if (unknownFields != other.unknownFields) return false
    if (digest != other.digest) return false
    if (path != other.path) return false
    if (executable != other.executable) return false
    return true
  }

  override fun hashCode(): Int {
    var result = super.hashCode
    if (result == 0) {
      result = unknownFields.hashCode()
      result = result * 37 + digest.hashCode()
      result = result * 37 + path.hashCode()
      result = result * 37 + executable.hashCode()
      super.hashCode = result
    }
    return result
  }

  override fun toString(): String {
    val result = mutableListOf()
    result += """digest=${sanitize(digest)}"""
    result += """path=${sanitize(path)}"""
    result += """executable=$executable"""
    return result.joinToString(prefix = "DeploymentArtefact{", separator = ", ", postfix = "}")
  }

  public fun copy(
    digest: String = this.digest,
    path: String = this.path,
    executable: Boolean = this.executable,
    unknownFields: ByteString = this.unknownFields,
  ): DeploymentArtefact = DeploymentArtefact(digest, path, executable, unknownFields)

  public companion object {
    @JvmField
    public val ADAPTER: ProtoAdapter = object :
        ProtoAdapter(
      FieldEncoding.LENGTH_DELIMITED, 
      DeploymentArtefact::class, 
      "type.googleapis.com/xyz.block.ftl.v1.DeploymentArtefact", 
      PROTO_3, 
      null, 
      "xyz/block/ftl/v1/ftl.proto"
    ) {
      override fun encodedSize(`value`: DeploymentArtefact): Int {
        var size = value.unknownFields.size
        if (value.digest != "") size += ProtoAdapter.STRING.encodedSizeWithTag(1, value.digest)
        if (value.path != "") size += ProtoAdapter.STRING.encodedSizeWithTag(2, value.path)
        if (value.executable != false) size += ProtoAdapter.BOOL.encodedSizeWithTag(3,
            value.executable)
        return size
      }

      override fun encode(writer: ProtoWriter, `value`: DeploymentArtefact) {
        if (value.digest != "") ProtoAdapter.STRING.encodeWithTag(writer, 1, value.digest)
        if (value.path != "") ProtoAdapter.STRING.encodeWithTag(writer, 2, value.path)
        if (value.executable != false) ProtoAdapter.BOOL.encodeWithTag(writer, 3, value.executable)
        writer.writeBytes(value.unknownFields)
      }

      override fun encode(writer: ReverseProtoWriter, `value`: DeploymentArtefact) {
        writer.writeBytes(value.unknownFields)
        if (value.executable != false) ProtoAdapter.BOOL.encodeWithTag(writer, 3, value.executable)
        if (value.path != "") ProtoAdapter.STRING.encodeWithTag(writer, 2, value.path)
        if (value.digest != "") ProtoAdapter.STRING.encodeWithTag(writer, 1, value.digest)
      }

      override fun decode(reader: ProtoReader): DeploymentArtefact {
        var digest: String = ""
        var path: String = ""
        var executable: Boolean = false
        val unknownFields = reader.forEachTag { tag ->
          when (tag) {
            1 -> digest = ProtoAdapter.STRING.decode(reader)
            2 -> path = ProtoAdapter.STRING.decode(reader)
            3 -> executable = ProtoAdapter.BOOL.decode(reader)
            else -> reader.readUnknownField(tag)
          }
        }
        return DeploymentArtefact(
          digest = digest,
          path = path,
          executable = executable,
          unknownFields = unknownFields
        )
      }

      override fun redact(`value`: DeploymentArtefact): DeploymentArtefact = value.copy(
        unknownFields = ByteString.EMPTY
      )
    }

    private const val serialVersionUID: Long = 0L
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy