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

commonMain.hiveline.stream.Stream.kt Maven / Gradle / Ivy

Go to download

KMP package which exports compiled protobuf entities to be used by other repos

There is a newer version: 2.89.0
Show newest version
// Code generated by Wire protocol buffer compiler, do not edit.
// Source: hiveline.stream.Stream in hiveline/stream.proto
package hiveline.stream

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 Stream(
  @field:WireField(
    tag = 1,
    adapter = "com.squareup.wire.ProtoAdapter#STRING",
    label = WireField.Label.OMIT_IDENTITY,
    jsonName = "peerId",
  )
  public val peer_id: String = "",
  @field:WireField(
    tag = 2,
    adapter = "com.squareup.wire.ProtoAdapter#STRING",
    label = WireField.Label.OMIT_IDENTITY,
    jsonName = "userId",
  )
  public val user_id: String = "",
  @field:WireField(
    tag = 3,
    adapter = "com.squareup.wire.ProtoAdapter#STRING",
    label = WireField.Label.OMIT_IDENTITY,
    jsonName = "meetingId",
  )
  public val meeting_id: String = "",
  @field:WireField(
    tag = 4,
    adapter = "hiveline.stream.StreamKind#ADAPTER",
    label = WireField.Label.OMIT_IDENTITY,
    jsonName = "streamKind",
  )
  public val stream_kind: StreamKind = StreamKind.STREAM_KIND_WEBCAM,
  @field:WireField(
    tag = 5,
    adapter = "hiveline.stream.MediaKind#ADAPTER",
    label = WireField.Label.OMIT_IDENTITY,
    jsonName = "mediaKind",
  )
  public val media_kind: MediaKind = MediaKind.MEDIA_KIND_VIDEO,
  @field:WireField(
    tag = 8,
    adapter = "com.squareup.wire.ProtoAdapter#BOOL",
    label = WireField.Label.OMIT_IDENTITY,
    jsonName = "transcriptionEnabled",
  )
  public val transcription_enabled: Boolean = false,
  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 Stream) return false
    if (unknownFields != other.unknownFields) return false
    if (peer_id != other.peer_id) return false
    if (user_id != other.user_id) return false
    if (meeting_id != other.meeting_id) return false
    if (stream_kind != other.stream_kind) return false
    if (media_kind != other.media_kind) return false
    if (transcription_enabled != other.transcription_enabled) return false
    return true
  }

  public override fun hashCode(): Int {
    var result = super.hashCode
    if (result == 0) {
      result = unknownFields.hashCode()
      result = result * 37 + peer_id.hashCode()
      result = result * 37 + user_id.hashCode()
      result = result * 37 + meeting_id.hashCode()
      result = result * 37 + stream_kind.hashCode()
      result = result * 37 + media_kind.hashCode()
      result = result * 37 + transcription_enabled.hashCode()
      super.hashCode = result
    }
    return result
  }

  public override fun toString(): String {
    val result = mutableListOf()
    result += """peer_id=${sanitize(peer_id)}"""
    result += """user_id=${sanitize(user_id)}"""
    result += """meeting_id=${sanitize(meeting_id)}"""
    result += """stream_kind=$stream_kind"""
    result += """media_kind=$media_kind"""
    result += """transcription_enabled=$transcription_enabled"""
    return result.joinToString(prefix = "Stream{", separator = ", ", postfix = "}")
  }

  public fun copy(
    peer_id: String = this.peer_id,
    user_id: String = this.user_id,
    meeting_id: String = this.meeting_id,
    stream_kind: StreamKind = this.stream_kind,
    media_kind: MediaKind = this.media_kind,
    transcription_enabled: Boolean = this.transcription_enabled,
    unknownFields: ByteString = this.unknownFields,
  ): Stream = Stream(peer_id, user_id, meeting_id, stream_kind, media_kind, transcription_enabled,
      unknownFields)

  public companion object {
    public val ADAPTER: ProtoAdapter = object : ProtoAdapter(
      FieldEncoding.LENGTH_DELIMITED, 
      Stream::class, 
      "type.googleapis.com/hiveline.stream.Stream", 
      PROTO_3, 
      null, 
      "hiveline/stream.proto"
    ) {
      public override fun encodedSize(`value`: Stream): Int {
        var size = value.unknownFields.size
        if (value.peer_id != "") size += ProtoAdapter.STRING.encodedSizeWithTag(1, value.peer_id)
        if (value.user_id != "") size += ProtoAdapter.STRING.encodedSizeWithTag(2, value.user_id)
        if (value.meeting_id != "") size += ProtoAdapter.STRING.encodedSizeWithTag(3,
            value.meeting_id)
        if (value.stream_kind != StreamKind.STREAM_KIND_WEBCAM) size +=
            StreamKind.ADAPTER.encodedSizeWithTag(4, value.stream_kind)
        if (value.media_kind != MediaKind.MEDIA_KIND_VIDEO) size +=
            MediaKind.ADAPTER.encodedSizeWithTag(5, value.media_kind)
        if (value.transcription_enabled != false) size += ProtoAdapter.BOOL.encodedSizeWithTag(8,
            value.transcription_enabled)
        return size
      }

      public override fun encode(writer: ProtoWriter, `value`: Stream): Unit {
        if (value.peer_id != "") ProtoAdapter.STRING.encodeWithTag(writer, 1, value.peer_id)
        if (value.user_id != "") ProtoAdapter.STRING.encodeWithTag(writer, 2, value.user_id)
        if (value.meeting_id != "") ProtoAdapter.STRING.encodeWithTag(writer, 3, value.meeting_id)
        if (value.stream_kind != StreamKind.STREAM_KIND_WEBCAM)
            StreamKind.ADAPTER.encodeWithTag(writer, 4, value.stream_kind)
        if (value.media_kind != MediaKind.MEDIA_KIND_VIDEO) MediaKind.ADAPTER.encodeWithTag(writer,
            5, value.media_kind)
        if (value.transcription_enabled != false) ProtoAdapter.BOOL.encodeWithTag(writer, 8,
            value.transcription_enabled)
        writer.writeBytes(value.unknownFields)
      }

      public override fun encode(writer: ReverseProtoWriter, `value`: Stream): Unit {
        writer.writeBytes(value.unknownFields)
        if (value.transcription_enabled != false) ProtoAdapter.BOOL.encodeWithTag(writer, 8,
            value.transcription_enabled)
        if (value.media_kind != MediaKind.MEDIA_KIND_VIDEO) MediaKind.ADAPTER.encodeWithTag(writer,
            5, value.media_kind)
        if (value.stream_kind != StreamKind.STREAM_KIND_WEBCAM)
            StreamKind.ADAPTER.encodeWithTag(writer, 4, value.stream_kind)
        if (value.meeting_id != "") ProtoAdapter.STRING.encodeWithTag(writer, 3, value.meeting_id)
        if (value.user_id != "") ProtoAdapter.STRING.encodeWithTag(writer, 2, value.user_id)
        if (value.peer_id != "") ProtoAdapter.STRING.encodeWithTag(writer, 1, value.peer_id)
      }

      public override fun decode(reader: ProtoReader): Stream {
        var peer_id: String = ""
        var user_id: String = ""
        var meeting_id: String = ""
        var stream_kind: StreamKind = StreamKind.STREAM_KIND_WEBCAM
        var media_kind: MediaKind = MediaKind.MEDIA_KIND_VIDEO
        var transcription_enabled: Boolean = false
        val unknownFields = reader.forEachTag { tag ->
          when (tag) {
            1 -> peer_id = ProtoAdapter.STRING.decode(reader)
            2 -> user_id = ProtoAdapter.STRING.decode(reader)
            3 -> meeting_id = ProtoAdapter.STRING.decode(reader)
            4 -> try {
              stream_kind = StreamKind.ADAPTER.decode(reader)
            } catch (e: ProtoAdapter.EnumConstantNotFoundException) {
              reader.addUnknownField(tag, FieldEncoding.VARINT, e.value.toLong())
            }
            5 -> try {
              media_kind = MediaKind.ADAPTER.decode(reader)
            } catch (e: ProtoAdapter.EnumConstantNotFoundException) {
              reader.addUnknownField(tag, FieldEncoding.VARINT, e.value.toLong())
            }
            8 -> transcription_enabled = ProtoAdapter.BOOL.decode(reader)
            else -> reader.readUnknownField(tag)
          }
        }
        return Stream(
          peer_id = peer_id,
          user_id = user_id,
          meeting_id = meeting_id,
          stream_kind = stream_kind,
          media_kind = media_kind,
          transcription_enabled = transcription_enabled,
          unknownFields = unknownFields
        )
      }

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

    private const val serialVersionUID: Long = 0L
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy