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

beaker.server.protobuf.View.scala Maven / Gradle / Ivy

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

package beaker.server.protobuf

/** *
  * A versioned configuration.
  *
  * @param ballot Unique identifier.
  * @param configuration Network configuration.
  */
@SerialVersionUID(0L)
final case class View(
    ballot: beaker.server.protobuf.Ballot,
    configuration: beaker.server.protobuf.Configuration
    ) extends scalapb.GeneratedMessage with scalapb.Message[View] with scalapb.lenses.Updatable[View] {
    @transient
    private[this] var __serializedSizeCachedValue: _root_.scala.Int = 0
    private[this] def __computeSerializedValue(): _root_.scala.Int = {
      var __size = 0
      __size += 1 + _root_.com.google.protobuf.CodedOutputStream.computeUInt32SizeNoTag(ballot.serializedSize) + ballot.serializedSize
      __size += 1 + _root_.com.google.protobuf.CodedOutputStream.computeUInt32SizeNoTag(configuration.serializedSize) + configuration.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 = {
      _output__.writeTag(1, 2)
      _output__.writeUInt32NoTag(ballot.serializedSize)
      ballot.writeTo(_output__)
      _output__.writeTag(2, 2)
      _output__.writeUInt32NoTag(configuration.serializedSize)
      configuration.writeTo(_output__)
    }
    def mergeFrom(`_input__`: _root_.com.google.protobuf.CodedInputStream): beaker.server.protobuf.View = {
      var __ballot = this.ballot
      var __configuration = this.configuration
      var __requiredFields0: _root_.scala.Long = 0x3L
      var _done__ = false
      while (!_done__) {
        val _tag__ = _input__.readTag()
        _tag__ match {
          case 0 => _done__ = true
          case 10 =>
            __ballot = _root_.scalapb.LiteParser.readMessage(_input__, __ballot)
            __requiredFields0 &= 0xfffffffffffffffeL
          case 18 =>
            __configuration = _root_.scalapb.LiteParser.readMessage(_input__, __configuration)
            __requiredFields0 &= 0xfffffffffffffffdL
          case tag => _input__.skipField(tag)
        }
      }
      if (__requiredFields0 != 0L) { throw new _root_.com.google.protobuf.InvalidProtocolBufferException("Message missing required fields.") } 
      beaker.server.protobuf.View(
          ballot = __ballot,
          configuration = __configuration
      )
    }
    def withBallot(__v: beaker.server.protobuf.Ballot): View = copy(ballot = __v)
    def withConfiguration(__v: beaker.server.protobuf.Configuration): View = copy(configuration = __v)
    def getFieldByNumber(__fieldNumber: _root_.scala.Int): scala.Any = {
      (__fieldNumber: @_root_.scala.unchecked) match {
        case 1 => ballot
        case 2 => configuration
      }
    }
    def getField(__field: _root_.scalapb.descriptors.FieldDescriptor): _root_.scalapb.descriptors.PValue = {
      require(__field.containingMessage eq companion.scalaDescriptor)
      (__field.number: @_root_.scala.unchecked) match {
        case 1 => ballot.toPMessage
        case 2 => configuration.toPMessage
      }
    }
    def toProtoString: _root_.scala.Predef.String = _root_.scalapb.TextFormat.printToUnicodeString(this)
    def companion = beaker.server.protobuf.View
}

object View extends scalapb.GeneratedMessageCompanion[beaker.server.protobuf.View] {
  implicit def messageCompanion: scalapb.GeneratedMessageCompanion[beaker.server.protobuf.View] = this
  def fromFieldsMap(__fieldsMap: scala.collection.immutable.Map[_root_.com.google.protobuf.Descriptors.FieldDescriptor, scala.Any]): beaker.server.protobuf.View = {
    require(__fieldsMap.keys.forall(_.getContainingType() == javaDescriptor), "FieldDescriptor does not match message type.")
    val __fields = javaDescriptor.getFields
    beaker.server.protobuf.View(
      __fieldsMap(__fields.get(0)).asInstanceOf[beaker.server.protobuf.Ballot],
      __fieldsMap(__fields.get(1)).asInstanceOf[beaker.server.protobuf.Configuration]
    )
  }
  implicit def messageReads: _root_.scalapb.descriptors.Reads[beaker.server.protobuf.View] = _root_.scalapb.descriptors.Reads{
    case _root_.scalapb.descriptors.PMessage(__fieldsMap) =>
      require(__fieldsMap.keys.forall(_.containingMessage == scalaDescriptor), "FieldDescriptor does not match message type.")
      beaker.server.protobuf.View(
        __fieldsMap.get(scalaDescriptor.findFieldByNumber(1).get).get.as[beaker.server.protobuf.Ballot],
        __fieldsMap.get(scalaDescriptor.findFieldByNumber(2).get).get.as[beaker.server.protobuf.Configuration]
      )
    case _ => throw new RuntimeException("Expected PMessage")
  }
  def javaDescriptor: _root_.com.google.protobuf.Descriptors.Descriptor = BeakerProto.javaDescriptor.getMessageTypes.get(10)
  def scalaDescriptor: _root_.scalapb.descriptors.Descriptor = BeakerProto.scalaDescriptor.messages(10)
  def messageCompanionForFieldNumber(__number: _root_.scala.Int): _root_.scalapb.GeneratedMessageCompanion[_] = {
    var __out: _root_.scalapb.GeneratedMessageCompanion[_] = null
    (__number: @_root_.scala.unchecked) match {
      case 1 => __out = beaker.server.protobuf.Ballot
      case 2 => __out = beaker.server.protobuf.Configuration
    }
    __out
  }
  lazy val nestedMessagesCompanions: Seq[_root_.scalapb.GeneratedMessageCompanion[_]] = Seq.empty
  def enumCompanionForFieldNumber(__fieldNumber: _root_.scala.Int): _root_.scalapb.GeneratedEnumCompanion[_] = throw new MatchError(__fieldNumber)
  lazy val defaultInstance = beaker.server.protobuf.View(
    ballot = beaker.server.protobuf.Ballot.defaultInstance,
    configuration = beaker.server.protobuf.Configuration.defaultInstance
  )
  implicit class ViewLens[UpperPB](_l: _root_.scalapb.lenses.Lens[UpperPB, beaker.server.protobuf.View]) extends _root_.scalapb.lenses.ObjectLens[UpperPB, beaker.server.protobuf.View](_l) {
    def ballot: _root_.scalapb.lenses.Lens[UpperPB, beaker.server.protobuf.Ballot] = field(_.ballot)((c_, f_) => c_.copy(ballot = f_))
    def configuration: _root_.scalapb.lenses.Lens[UpperPB, beaker.server.protobuf.Configuration] = field(_.configuration)((c_, f_) => c_.copy(configuration = f_))
  }
  final val BALLOT_FIELD_NUMBER = 1
  final val CONFIGURATION_FIELD_NUMBER = 2
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy