xyz.block.ftl.v1.schema.Position.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ftl-runtime Show documentation
Show all versions of ftl-runtime Show documentation
Towards a 𝝺-calculus for large-scale systems
// Code generated by Wire protocol buffer compiler, do not edit.
// Source: xyz.block.ftl.v1.schema.Position in xyz/block/ftl/v1/schema/schema.proto
@file:Suppress("DEPRECATION")
package xyz.block.ftl.v1.schema
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 kotlin.Suppress
import okio.ByteString
public class Position(
@field:WireField(
tag = 1,
adapter = "com.squareup.wire.ProtoAdapter#STRING",
label = WireField.Label.OMIT_IDENTITY,
schemaIndex = 0,
)
public val filename: String = "",
@field:WireField(
tag = 2,
adapter = "com.squareup.wire.ProtoAdapter#INT64",
label = WireField.Label.OMIT_IDENTITY,
schemaIndex = 1,
)
public val line: Long = 0L,
@field:WireField(
tag = 3,
adapter = "com.squareup.wire.ProtoAdapter#INT64",
label = WireField.Label.OMIT_IDENTITY,
schemaIndex = 2,
)
public val column: Long = 0L,
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 Position) return false
if (unknownFields != other.unknownFields) return false
if (filename != other.filename) return false
if (line != other.line) return false
if (column != other.column) return false
return true
}
override fun hashCode(): Int {
var result = super.hashCode
if (result == 0) {
result = unknownFields.hashCode()
result = result * 37 + filename.hashCode()
result = result * 37 + line.hashCode()
result = result * 37 + column.hashCode()
super.hashCode = result
}
return result
}
override fun toString(): String {
val result = mutableListOf()
result += """filename=${sanitize(filename)}"""
result += """line=$line"""
result += """column=$column"""
return result.joinToString(prefix = "Position{", separator = ", ", postfix = "}")
}
public fun copy(
filename: String = this.filename,
line: Long = this.line,
column: Long = this.column,
unknownFields: ByteString = this.unknownFields,
): Position = Position(filename, line, column, unknownFields)
public companion object {
@JvmField
public val ADAPTER: ProtoAdapter = object : ProtoAdapter(
FieldEncoding.LENGTH_DELIMITED,
Position::class,
"type.googleapis.com/xyz.block.ftl.v1.schema.Position",
PROTO_3,
null,
"xyz/block/ftl/v1/schema/schema.proto"
) {
override fun encodedSize(`value`: Position): Int {
var size = value.unknownFields.size
if (value.filename != "") size += ProtoAdapter.STRING.encodedSizeWithTag(1, value.filename)
if (value.line != 0L) size += ProtoAdapter.INT64.encodedSizeWithTag(2, value.line)
if (value.column != 0L) size += ProtoAdapter.INT64.encodedSizeWithTag(3, value.column)
return size
}
override fun encode(writer: ProtoWriter, `value`: Position) {
if (value.filename != "") ProtoAdapter.STRING.encodeWithTag(writer, 1, value.filename)
if (value.line != 0L) ProtoAdapter.INT64.encodeWithTag(writer, 2, value.line)
if (value.column != 0L) ProtoAdapter.INT64.encodeWithTag(writer, 3, value.column)
writer.writeBytes(value.unknownFields)
}
override fun encode(writer: ReverseProtoWriter, `value`: Position) {
writer.writeBytes(value.unknownFields)
if (value.column != 0L) ProtoAdapter.INT64.encodeWithTag(writer, 3, value.column)
if (value.line != 0L) ProtoAdapter.INT64.encodeWithTag(writer, 2, value.line)
if (value.filename != "") ProtoAdapter.STRING.encodeWithTag(writer, 1, value.filename)
}
override fun decode(reader: ProtoReader): Position {
var filename: String = ""
var line: Long = 0L
var column: Long = 0L
val unknownFields = reader.forEachTag { tag ->
when (tag) {
1 -> filename = ProtoAdapter.STRING.decode(reader)
2 -> line = ProtoAdapter.INT64.decode(reader)
3 -> column = ProtoAdapter.INT64.decode(reader)
else -> reader.readUnknownField(tag)
}
}
return Position(
filename = filename,
line = line,
column = column,
unknownFields = unknownFields
)
}
override fun redact(`value`: Position): Position = value.copy(
unknownFields = ByteString.EMPTY
)
}
private const val serialVersionUID: Long = 0L
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy