
commonMain.media.ProducerTrack.kt Maven / Gradle / Ivy
// Code generated by Wire protocol buffer compiler, do not edit.
// Source: media.ProducerTrack in media/common.proto
package media
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 ProducerTrack(
@field:WireField(
tag = 1,
adapter = "com.squareup.wire.ProtoAdapter#STRING",
label = WireField.Label.OMIT_IDENTITY,
jsonName = "trackId",
)
public val track_id: String = "",
@field:WireField(
tag = 2,
adapter = "com.squareup.wire.ProtoAdapter#STRING",
label = WireField.Label.OMIT_IDENTITY,
jsonName = "producerId",
)
public val producer_id: String = "",
@field:WireField(
tag = 3,
adapter = "com.squareup.wire.ProtoAdapter#STRING",
label = WireField.Label.OMIT_IDENTITY,
jsonName = "streamId",
)
public val stream_id: 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 ProducerTrack) return false
if (unknownFields != other.unknownFields) return false
if (track_id != other.track_id) return false
if (producer_id != other.producer_id) return false
if (stream_id != other.stream_id) return false
return true
}
public override fun hashCode(): Int {
var result = super.hashCode
if (result == 0) {
result = unknownFields.hashCode()
result = result * 37 + track_id.hashCode()
result = result * 37 + producer_id.hashCode()
result = result * 37 + stream_id.hashCode()
super.hashCode = result
}
return result
}
public override fun toString(): String {
val result = mutableListOf()
result += """track_id=${sanitize(track_id)}"""
result += """producer_id=${sanitize(producer_id)}"""
result += """stream_id=${sanitize(stream_id)}"""
return result.joinToString(prefix = "ProducerTrack{", separator = ", ", postfix = "}")
}
public fun copy(
track_id: String = this.track_id,
producer_id: String = this.producer_id,
stream_id: String = this.stream_id,
unknownFields: ByteString = this.unknownFields,
): ProducerTrack = ProducerTrack(track_id, producer_id, stream_id, unknownFields)
public companion object {
public val ADAPTER: ProtoAdapter = object : ProtoAdapter(
FieldEncoding.LENGTH_DELIMITED,
ProducerTrack::class,
"type.googleapis.com/media.ProducerTrack",
PROTO_3,
null,
"media/common.proto"
) {
public override fun encodedSize(`value`: ProducerTrack): Int {
var size = value.unknownFields.size
if (value.track_id != "") size += ProtoAdapter.STRING.encodedSizeWithTag(1, value.track_id)
if (value.producer_id != "") size += ProtoAdapter.STRING.encodedSizeWithTag(2,
value.producer_id)
if (value.stream_id != "") size += ProtoAdapter.STRING.encodedSizeWithTag(3,
value.stream_id)
return size
}
public override fun encode(writer: ProtoWriter, `value`: ProducerTrack): Unit {
if (value.track_id != "") ProtoAdapter.STRING.encodeWithTag(writer, 1, value.track_id)
if (value.producer_id != "") ProtoAdapter.STRING.encodeWithTag(writer, 2, value.producer_id)
if (value.stream_id != "") ProtoAdapter.STRING.encodeWithTag(writer, 3, value.stream_id)
writer.writeBytes(value.unknownFields)
}
public override fun encode(writer: ReverseProtoWriter, `value`: ProducerTrack): Unit {
writer.writeBytes(value.unknownFields)
if (value.stream_id != "") ProtoAdapter.STRING.encodeWithTag(writer, 3, value.stream_id)
if (value.producer_id != "") ProtoAdapter.STRING.encodeWithTag(writer, 2, value.producer_id)
if (value.track_id != "") ProtoAdapter.STRING.encodeWithTag(writer, 1, value.track_id)
}
public override fun decode(reader: ProtoReader): ProducerTrack {
var track_id: String = ""
var producer_id: String = ""
var stream_id: String = ""
val unknownFields = reader.forEachTag { tag ->
when (tag) {
1 -> track_id = ProtoAdapter.STRING.decode(reader)
2 -> producer_id = ProtoAdapter.STRING.decode(reader)
3 -> stream_id = ProtoAdapter.STRING.decode(reader)
else -> reader.readUnknownField(tag)
}
}
return ProducerTrack(
track_id = track_id,
producer_id = producer_id,
stream_id = stream_id,
unknownFields = unknownFields
)
}
public override fun redact(`value`: ProducerTrack): ProducerTrack = value.copy(
unknownFields = ByteString.EMPTY
)
}
private const val serialVersionUID: Long = 0L
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy