commonMain.socket.plugin.PluginEventToPeersRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-entities Show documentation
Show all versions of proto-entities Show documentation
KMP package which exports compiled protobuf entities to be used by other repos
// Code generated by Wire protocol buffer compiler, do not edit.
// Source: socket.plugin.PluginEventToPeersRequest in socket/plugin.proto
package socket.plugin
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`.immutableCopyOf
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 kotlin.collections.List
import okio.ByteString
/**
* Send a plugin event to some peers.
*/
public class PluginEventToPeersRequest(
@field:WireField(
tag = 1,
adapter = "com.squareup.wire.ProtoAdapter#STRING",
label = WireField.Label.OMIT_IDENTITY,
jsonName = "pluginId",
)
public val plugin_id: String = "",
peer_ids: List = emptyList(),
@field:WireField(
tag = 3,
adapter = "com.squareup.wire.ProtoAdapter#BYTES",
label = WireField.Label.OMIT_IDENTITY,
jsonName = "pluginData",
)
public val plugin_data: ByteString = ByteString.EMPTY,
unknownFields: ByteString = ByteString.EMPTY,
) : Message(ADAPTER, unknownFields) {
@field:WireField(
tag = 2,
adapter = "com.squareup.wire.ProtoAdapter#STRING",
label = WireField.Label.REPEATED,
jsonName = "peerIds",
)
public val peer_ids: List = immutableCopyOf("peer_ids", peer_ids)
@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 PluginEventToPeersRequest) return false
if (unknownFields != other.unknownFields) return false
if (plugin_id != other.plugin_id) return false
if (peer_ids != other.peer_ids) return false
if (plugin_data != other.plugin_data) return false
return true
}
public override fun hashCode(): Int {
var result = super.hashCode
if (result == 0) {
result = unknownFields.hashCode()
result = result * 37 + plugin_id.hashCode()
result = result * 37 + peer_ids.hashCode()
result = result * 37 + plugin_data.hashCode()
super.hashCode = result
}
return result
}
public override fun toString(): String {
val result = mutableListOf()
result += """plugin_id=${sanitize(plugin_id)}"""
if (peer_ids.isNotEmpty()) result += """peer_ids=${sanitize(peer_ids)}"""
result += """plugin_data=$plugin_data"""
return result.joinToString(prefix = "PluginEventToPeersRequest{", separator = ", ", postfix =
"}")
}
public fun copy(
plugin_id: String = this.plugin_id,
peer_ids: List = this.peer_ids,
plugin_data: ByteString = this.plugin_data,
unknownFields: ByteString = this.unknownFields,
): PluginEventToPeersRequest = PluginEventToPeersRequest(plugin_id, peer_ids, plugin_data,
unknownFields)
public companion object {
public val ADAPTER: ProtoAdapter = object :
ProtoAdapter(
FieldEncoding.LENGTH_DELIMITED,
PluginEventToPeersRequest::class,
"type.googleapis.com/socket.plugin.PluginEventToPeersRequest",
PROTO_3,
null,
"socket/plugin.proto"
) {
public override fun encodedSize(`value`: PluginEventToPeersRequest): Int {
var size = value.unknownFields.size
if (value.plugin_id != "") size += ProtoAdapter.STRING.encodedSizeWithTag(1,
value.plugin_id)
size += ProtoAdapter.STRING.asRepeated().encodedSizeWithTag(2, value.peer_ids)
if (value.plugin_data != ByteString.EMPTY) size += ProtoAdapter.BYTES.encodedSizeWithTag(3,
value.plugin_data)
return size
}
public override fun encode(writer: ProtoWriter, `value`: PluginEventToPeersRequest): Unit {
if (value.plugin_id != "") ProtoAdapter.STRING.encodeWithTag(writer, 1, value.plugin_id)
ProtoAdapter.STRING.asRepeated().encodeWithTag(writer, 2, value.peer_ids)
if (value.plugin_data != ByteString.EMPTY) ProtoAdapter.BYTES.encodeWithTag(writer, 3,
value.plugin_data)
writer.writeBytes(value.unknownFields)
}
public override fun encode(writer: ReverseProtoWriter, `value`: PluginEventToPeersRequest):
Unit {
writer.writeBytes(value.unknownFields)
if (value.plugin_data != ByteString.EMPTY) ProtoAdapter.BYTES.encodeWithTag(writer, 3,
value.plugin_data)
ProtoAdapter.STRING.asRepeated().encodeWithTag(writer, 2, value.peer_ids)
if (value.plugin_id != "") ProtoAdapter.STRING.encodeWithTag(writer, 1, value.plugin_id)
}
public override fun decode(reader: ProtoReader): PluginEventToPeersRequest {
var plugin_id: String = ""
val peer_ids = mutableListOf()
var plugin_data: ByteString = ByteString.EMPTY
val unknownFields = reader.forEachTag { tag ->
when (tag) {
1 -> plugin_id = ProtoAdapter.STRING.decode(reader)
2 -> peer_ids.add(ProtoAdapter.STRING.decode(reader))
3 -> plugin_data = ProtoAdapter.BYTES.decode(reader)
else -> reader.readUnknownField(tag)
}
}
return PluginEventToPeersRequest(
plugin_id = plugin_id,
peer_ids = peer_ids,
plugin_data = plugin_data,
unknownFields = unknownFields
)
}
public override fun redact(`value`: PluginEventToPeersRequest): PluginEventToPeersRequest =
value.copy(
unknownFields = ByteString.EMPTY
)
}
private const val serialVersionUID: Long = 0L
}
}