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

org.yupana.proto.Pong.scala Maven / Gradle / Ivy

The newest version!
// Generated by the Scala Plugin for the Protocol Buffer Compiler.
// Do not edit!
//
// Protofile syntax: PROTO2

package org.yupana.proto

@SerialVersionUID(0L)
final case class Pong(
    reqTime: _root_.scala.Long,
    respTime: _root_.scala.Long,
    version: _root_.scala.Option[org.yupana.proto.Version] = _root_.scala.None
    ) extends scalapb.GeneratedMessage with scalapb.Message[Pong] with scalapb.lenses.Updatable[Pong] {
    @transient
    private[this] var __serializedSizeCachedValue: _root_.scala.Int = 0
    private[this] def __computeSerializedValue(): _root_.scala.Int = {
      var __size = 0
      
      {
        val __value = reqTime
        __size += _root_.com.google.protobuf.CodedOutputStream.computeUInt64Size(1, __value)
      };
      
      {
        val __value = respTime
        __size += _root_.com.google.protobuf.CodedOutputStream.computeUInt64Size(2, __value)
      };
      if (version.isDefined) {
        val __value = version.get
        __size += 1 + _root_.com.google.protobuf.CodedOutputStream.computeUInt32SizeNoTag(__value.serializedSize) + __value.serializedSize
      };
      __size
    }
    final override def serializedSize: _root_.scala.Int = {
      var read = __serializedSizeCachedValue
      if (read == 0) {
        read = __computeSerializedValue()
        __serializedSizeCachedValue = read
      }
      read
    }
    def writeTo(`_output__`: _root_.com.google.protobuf.CodedOutputStream): _root_.scala.Unit = {
      
      {
        val __v = reqTime
        _output__.writeUInt64(1, __v)
      };
      
      {
        val __v = respTime
        _output__.writeUInt64(2, __v)
      };
      version.foreach { __v =>
        val __m = __v
        _output__.writeTag(3, 2)
        _output__.writeUInt32NoTag(__m.serializedSize)
        __m.writeTo(_output__)
      };
    }
    def mergeFrom(`_input__`: _root_.com.google.protobuf.CodedInputStream): org.yupana.proto.Pong = {
      var __reqTime = this.reqTime
      var __respTime = this.respTime
      var __version = this.version
      var __requiredFields0: _root_.scala.Long = 0x3L
      var _done__ = false
      while (!_done__) {
        val _tag__ = _input__.readTag()
        _tag__ match {
          case 0 => _done__ = true
          case 8 =>
            __reqTime = _input__.readUInt64()
            __requiredFields0 &= 0xfffffffffffffffeL
          case 16 =>
            __respTime = _input__.readUInt64()
            __requiredFields0 &= 0xfffffffffffffffdL
          case 26 =>
            __version = Option(_root_.scalapb.LiteParser.readMessage(_input__, __version.getOrElse(org.yupana.proto.Version.defaultInstance)))
          case tag => _input__.skipField(tag)
        }
      }
      if (__requiredFields0 != 0L) { throw new _root_.com.google.protobuf.InvalidProtocolBufferException("Message missing required fields.") } 
      org.yupana.proto.Pong(
          reqTime = __reqTime,
          respTime = __respTime,
          version = __version
      )
    }
    def withReqTime(__v: _root_.scala.Long): Pong = copy(reqTime = __v)
    def withRespTime(__v: _root_.scala.Long): Pong = copy(respTime = __v)
    def getVersion: org.yupana.proto.Version = version.getOrElse(org.yupana.proto.Version.defaultInstance)
    def clearVersion: Pong = copy(version = _root_.scala.None)
    def withVersion(__v: org.yupana.proto.Version): Pong = copy(version = Option(__v))
    def getFieldByNumber(__fieldNumber: _root_.scala.Int): _root_.scala.Any = {
      (__fieldNumber: @_root_.scala.unchecked) match {
        case 1 => reqTime
        case 2 => respTime
        case 3 => version.orNull
      }
    }
    def getField(__field: _root_.scalapb.descriptors.FieldDescriptor): _root_.scalapb.descriptors.PValue = {
      _root_.scala.Predef.require(__field.containingMessage eq companion.scalaDescriptor)
      (__field.number: @_root_.scala.unchecked) match {
        case 1 => _root_.scalapb.descriptors.PLong(reqTime)
        case 2 => _root_.scalapb.descriptors.PLong(respTime)
        case 3 => version.map(_.toPMessage).getOrElse(_root_.scalapb.descriptors.PEmpty)
      }
    }
    def toProtoString: _root_.scala.Predef.String = _root_.scalapb.TextFormat.printToUnicodeString(this)
    def companion = org.yupana.proto.Pong
}

object Pong extends scalapb.GeneratedMessageCompanion[org.yupana.proto.Pong] {
  implicit def messageCompanion: scalapb.GeneratedMessageCompanion[org.yupana.proto.Pong] = this
  def fromFieldsMap(__fieldsMap: scala.collection.immutable.Map[_root_.com.google.protobuf.Descriptors.FieldDescriptor, _root_.scala.Any]): org.yupana.proto.Pong = {
    _root_.scala.Predef.require(__fieldsMap.keys.forall(_.getContainingType() == javaDescriptor), "FieldDescriptor does not match message type.")
    val __fields = javaDescriptor.getFields
    org.yupana.proto.Pong(
      __fieldsMap(__fields.get(0)).asInstanceOf[_root_.scala.Long],
      __fieldsMap(__fields.get(1)).asInstanceOf[_root_.scala.Long],
      __fieldsMap.get(__fields.get(2)).asInstanceOf[_root_.scala.Option[org.yupana.proto.Version]]
    )
  }
  implicit def messageReads: _root_.scalapb.descriptors.Reads[org.yupana.proto.Pong] = _root_.scalapb.descriptors.Reads{
    case _root_.scalapb.descriptors.PMessage(__fieldsMap) =>
      _root_.scala.Predef.require(__fieldsMap.keys.forall(_.containingMessage == scalaDescriptor), "FieldDescriptor does not match message type.")
      org.yupana.proto.Pong(
        __fieldsMap.get(scalaDescriptor.findFieldByNumber(1).get).get.as[_root_.scala.Long],
        __fieldsMap.get(scalaDescriptor.findFieldByNumber(2).get).get.as[_root_.scala.Long],
        __fieldsMap.get(scalaDescriptor.findFieldByNumber(3).get).flatMap(_.as[_root_.scala.Option[org.yupana.proto.Version]])
      )
    case _ => throw new RuntimeException("Expected PMessage")
  }
  def javaDescriptor: _root_.com.google.protobuf.Descriptors.Descriptor = ProtoProto.javaDescriptor.getMessageTypes.get(13)
  def scalaDescriptor: _root_.scalapb.descriptors.Descriptor = ProtoProto.scalaDescriptor.messages(13)
  def messageCompanionForFieldNumber(__number: _root_.scala.Int): _root_.scalapb.GeneratedMessageCompanion[_] = {
    var __out: _root_.scalapb.GeneratedMessageCompanion[_] = null
    (__number: @_root_.scala.unchecked) match {
      case 3 => __out = org.yupana.proto.Version
    }
    __out
  }
  lazy val nestedMessagesCompanions: Seq[_root_.scalapb.GeneratedMessageCompanion[_ <: _root_.scalapb.GeneratedMessage]] = Seq.empty
  def enumCompanionForFieldNumber(__fieldNumber: _root_.scala.Int): _root_.scalapb.GeneratedEnumCompanion[_] = throw new MatchError(__fieldNumber)
  lazy val defaultInstance = org.yupana.proto.Pong(
    reqTime = 0L,
    respTime = 0L,
    version = _root_.scala.None
  )
  implicit class PongLens[UpperPB](_l: _root_.scalapb.lenses.Lens[UpperPB, org.yupana.proto.Pong]) extends _root_.scalapb.lenses.ObjectLens[UpperPB, org.yupana.proto.Pong](_l) {
    def reqTime: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Long] = field(_.reqTime)((c_, f_) => c_.copy(reqTime = f_))
    def respTime: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Long] = field(_.respTime)((c_, f_) => c_.copy(respTime = f_))
    def version: _root_.scalapb.lenses.Lens[UpperPB, org.yupana.proto.Version] = field(_.getVersion)((c_, f_) => c_.copy(version = Option(f_)))
    def optionalVersion: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Option[org.yupana.proto.Version]] = field(_.version)((c_, f_) => c_.copy(version = f_))
  }
  final val REQTIME_FIELD_NUMBER = 1
  final val RESPTIME_FIELD_NUMBER = 2
  final val VERSION_FIELD_NUMBER = 3
  def of(
    reqTime: _root_.scala.Long,
    respTime: _root_.scala.Long,
    version: _root_.scala.Option[org.yupana.proto.Version]
  ): _root_.org.yupana.proto.Pong = _root_.org.yupana.proto.Pong(
    reqTime,
    respTime,
    version
  )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy