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

org.yupana.proto.ResultChunk.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 ResultChunk(
    values: _root_.scala.Seq[_root_.com.google.protobuf.ByteString] = _root_.scala.Seq.empty
    ) extends scalapb.GeneratedMessage with scalapb.Message[ResultChunk] with scalapb.lenses.Updatable[ResultChunk] {
    @transient
    private[this] var __serializedSizeCachedValue: _root_.scala.Int = 0
    private[this] def __computeSerializedValue(): _root_.scala.Int = {
      var __size = 0
      values.foreach { __item =>
        val __value = __item
        __size += _root_.com.google.protobuf.CodedOutputStream.computeBytesSize(1, __value)
      }
      __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 = {
      values.foreach { __v =>
        val __m = __v
        _output__.writeBytes(1, __m)
      };
    }
    def mergeFrom(`_input__`: _root_.com.google.protobuf.CodedInputStream): org.yupana.proto.ResultChunk = {
      val __values = (_root_.scala.collection.immutable.Vector.newBuilder[_root_.com.google.protobuf.ByteString] ++= this.values)
      var _done__ = false
      while (!_done__) {
        val _tag__ = _input__.readTag()
        _tag__ match {
          case 0 => _done__ = true
          case 10 =>
            __values += _input__.readBytes()
          case tag => _input__.skipField(tag)
        }
      }
      org.yupana.proto.ResultChunk(
          values = __values.result()
      )
    }
    def clearValues = copy(values = _root_.scala.Seq.empty)
    def addValues(__vs: _root_.com.google.protobuf.ByteString*): ResultChunk = addAllValues(__vs)
    def addAllValues(__vs: Iterable[_root_.com.google.protobuf.ByteString]): ResultChunk = copy(values = values ++ __vs)
    def withValues(__v: _root_.scala.Seq[_root_.com.google.protobuf.ByteString]): ResultChunk = copy(values = __v)
    def getFieldByNumber(__fieldNumber: _root_.scala.Int): _root_.scala.Any = {
      (__fieldNumber: @_root_.scala.unchecked) match {
        case 1 => values
      }
    }
    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.PRepeated(values.iterator.map(_root_.scalapb.descriptors.PByteString).toVector)
      }
    }
    def toProtoString: _root_.scala.Predef.String = _root_.scalapb.TextFormat.printToUnicodeString(this)
    def companion = org.yupana.proto.ResultChunk
}

object ResultChunk extends scalapb.GeneratedMessageCompanion[org.yupana.proto.ResultChunk] {
  implicit def messageCompanion: scalapb.GeneratedMessageCompanion[org.yupana.proto.ResultChunk] = this
  def fromFieldsMap(__fieldsMap: scala.collection.immutable.Map[_root_.com.google.protobuf.Descriptors.FieldDescriptor, _root_.scala.Any]): org.yupana.proto.ResultChunk = {
    _root_.scala.Predef.require(__fieldsMap.keys.forall(_.getContainingType() == javaDescriptor), "FieldDescriptor does not match message type.")
    val __fields = javaDescriptor.getFields
    org.yupana.proto.ResultChunk(
      __fieldsMap.getOrElse(__fields.get(0), Nil).asInstanceOf[_root_.scala.Seq[_root_.com.google.protobuf.ByteString]]
    )
  }
  implicit def messageReads: _root_.scalapb.descriptors.Reads[org.yupana.proto.ResultChunk] = _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.ResultChunk(
        __fieldsMap.get(scalaDescriptor.findFieldByNumber(1).get).map(_.as[_root_.scala.Seq[_root_.com.google.protobuf.ByteString]]).getOrElse(_root_.scala.Seq.empty)
      )
    case _ => throw new RuntimeException("Expected PMessage")
  }
  def javaDescriptor: _root_.com.google.protobuf.Descriptors.Descriptor = ProtoProto.javaDescriptor.getMessageTypes.get(8)
  def scalaDescriptor: _root_.scalapb.descriptors.Descriptor = ProtoProto.scalaDescriptor.messages(8)
  def messageCompanionForFieldNumber(__number: _root_.scala.Int): _root_.scalapb.GeneratedMessageCompanion[_] = throw new MatchError(__number)
  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.ResultChunk(
    values = _root_.scala.Seq.empty
  )
  implicit class ResultChunkLens[UpperPB](_l: _root_.scalapb.lenses.Lens[UpperPB, org.yupana.proto.ResultChunk]) extends _root_.scalapb.lenses.ObjectLens[UpperPB, org.yupana.proto.ResultChunk](_l) {
    def values: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Seq[_root_.com.google.protobuf.ByteString]] = field(_.values)((c_, f_) => c_.copy(values = f_))
  }
  final val VALUES_FIELD_NUMBER = 1
  def of(
    values: _root_.scala.Seq[_root_.com.google.protobuf.ByteString]
  ): _root_.org.yupana.proto.ResultChunk = _root_.org.yupana.proto.ResultChunk(
    values
  )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy