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

commonMain.bridge.BridgeError.kt Maven / Gradle / Ivy

// Code generated by Wire protocol buffer compiler, do not edit.
// Source: bridge.BridgeError in bridge/bridge.proto
package bridge

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`.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 kotlin.Unit
import okio.ByteString

public class BridgeError(
  /**
   * The type of the error
   */
  @field:WireField(
    tag = 1,
    adapter = "bridge.ErrorType#ADAPTER",
    label = WireField.Label.OMIT_IDENTITY,
  )
  public val type: ErrorType = ErrorType.SERVICE_NOT_FOUND,
  /**
   * Any extra details about the error.
   */
  @field:WireField(
    tag = 2,
    adapter = "com.squareup.wire.ProtoAdapter#STRING",
    label = WireField.Label.OMIT_IDENTITY,
  )
  public val message: String = "",
  unknownFields: ByteString = ByteString.EMPTY,
) : Message(ADAPTER, unknownFields) {
  @Deprecated(
    message = "Shouldn't be used in Kotlin",
    level = DeprecationLevel.HIDDEN,
  )
  public 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")

  public override fun equals(other: Any?): Boolean {
    if (other === this) return true
    if (other !is BridgeError) return false
    if (unknownFields != other.unknownFields) return false
    if (type != other.type) return false
    if (message != other.message) return false
    return true
  }

  public override fun hashCode(): Int {
    var result = super.hashCode
    if (result == 0) {
      result = unknownFields.hashCode()
      result = result * 37 + type.hashCode()
      result = result * 37 + message.hashCode()
      super.hashCode = result
    }
    return result
  }

  public override fun toString(): String {
    val result = mutableListOf()
    result += """type=$type"""
    result += """message=${sanitize(message)}"""
    return result.joinToString(prefix = "BridgeError{", separator = ", ", postfix = "}")
  }

  public fun copy(
    type: ErrorType = this.type,
    message: String = this.message,
    unknownFields: ByteString = this.unknownFields,
  ): BridgeError = BridgeError(type, message, unknownFields)

  public companion object {
    public val ADAPTER: ProtoAdapter = object : ProtoAdapter(
      FieldEncoding.LENGTH_DELIMITED, 
      BridgeError::class, 
      "type.googleapis.com/bridge.BridgeError", 
      PROTO_3, 
      null, 
      "bridge/bridge.proto"
    ) {
      public override fun encodedSize(`value`: BridgeError): Int {
        var size = value.unknownFields.size
        if (value.type != ErrorType.SERVICE_NOT_FOUND) size +=
            ErrorType.ADAPTER.encodedSizeWithTag(1, value.type)
        if (value.message != "") size += ProtoAdapter.STRING.encodedSizeWithTag(2, value.message)
        return size
      }

      public override fun encode(writer: ProtoWriter, `value`: BridgeError): Unit {
        if (value.type != ErrorType.SERVICE_NOT_FOUND) ErrorType.ADAPTER.encodeWithTag(writer, 1,
            value.type)
        if (value.message != "") ProtoAdapter.STRING.encodeWithTag(writer, 2, value.message)
        writer.writeBytes(value.unknownFields)
      }

      public override fun encode(writer: ReverseProtoWriter, `value`: BridgeError): Unit {
        writer.writeBytes(value.unknownFields)
        if (value.message != "") ProtoAdapter.STRING.encodeWithTag(writer, 2, value.message)
        if (value.type != ErrorType.SERVICE_NOT_FOUND) ErrorType.ADAPTER.encodeWithTag(writer, 1,
            value.type)
      }

      public override fun decode(reader: ProtoReader): BridgeError {
        var type: ErrorType = ErrorType.SERVICE_NOT_FOUND
        var message: String = ""
        val unknownFields = reader.forEachTag { tag ->
          when (tag) {
            1 -> try {
              type = ErrorType.ADAPTER.decode(reader)
            } catch (e: ProtoAdapter.EnumConstantNotFoundException) {
              reader.addUnknownField(tag, FieldEncoding.VARINT, e.value.toLong())
            }
            2 -> message = ProtoAdapter.STRING.decode(reader)
            else -> reader.readUnknownField(tag)
          }
        }
        return BridgeError(
          type = type,
          message = message,
          unknownFields = unknownFields
        )
      }

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

    private const val serialVersionUID: Long = 0L
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy