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

xyz.stratalab.indexer.services.IndexFieldSpec.scala Maven / Gradle / Ivy

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

package xyz.stratalab.indexer.services

/** A specification to identify the field(s) in data to be indexed
  */
@SerialVersionUID(0L)
final case class IndexFieldSpec(
    spec: xyz.stratalab.indexer.services.IndexFieldSpec.Spec = xyz.stratalab.indexer.services.IndexFieldSpec.Spec.Empty,
    unknownFields: _root_.scalapb.UnknownFieldSet = _root_.scalapb.UnknownFieldSet.empty
    ) extends scalapb.GeneratedMessage with scalapb.lenses.Updatable[IndexFieldSpec] {
    @transient
    private[this] var __serializedSizeMemoized: _root_.scala.Int = 0
    private[this] def __computeSerializedSize(): _root_.scala.Int = {
      var __size = 0
      if (spec.jsonSpecs.isDefined) {
        val __value = spec.jsonSpecs.get
        __size += 1 + _root_.com.google.protobuf.CodedOutputStream.computeUInt32SizeNoTag(__value.serializedSize) + __value.serializedSize
      };
      if (spec.csvSpecs.isDefined) {
        val __value = spec.csvSpecs.get
        __size += 1 + _root_.com.google.protobuf.CodedOutputStream.computeUInt32SizeNoTag(__value.serializedSize) + __value.serializedSize
      };
      __size += unknownFields.serializedSize
      __size
    }
    override def serializedSize: _root_.scala.Int = {
      var __size = __serializedSizeMemoized
      if (__size == 0) {
        __size = __computeSerializedSize() + 1
        __serializedSizeMemoized = __size
      }
      __size - 1
      
    }
    def writeTo(`_output__`: _root_.com.google.protobuf.CodedOutputStream): _root_.scala.Unit = {
      spec.jsonSpecs.foreach { __v =>
        val __m = __v
        _output__.writeTag(1, 2)
        _output__.writeUInt32NoTag(__m.serializedSize)
        __m.writeTo(_output__)
      };
      spec.csvSpecs.foreach { __v =>
        val __m = __v
        _output__.writeTag(2, 2)
        _output__.writeUInt32NoTag(__m.serializedSize)
        __m.writeTo(_output__)
      };
      unknownFields.writeTo(_output__)
    }
    def getJsonSpecs: xyz.stratalab.indexer.services.JsonIndexSpecs = spec.jsonSpecs.getOrElse(xyz.stratalab.indexer.services.JsonIndexSpecs.defaultInstance)
    def withJsonSpecs(__v: xyz.stratalab.indexer.services.JsonIndexSpecs): IndexFieldSpec = copy(spec = xyz.stratalab.indexer.services.IndexFieldSpec.Spec.JsonSpecs(__v))
    def getCsvSpecs: xyz.stratalab.indexer.services.CsvIndexSpecs = spec.csvSpecs.getOrElse(xyz.stratalab.indexer.services.CsvIndexSpecs.defaultInstance)
    def withCsvSpecs(__v: xyz.stratalab.indexer.services.CsvIndexSpecs): IndexFieldSpec = copy(spec = xyz.stratalab.indexer.services.IndexFieldSpec.Spec.CsvSpecs(__v))
    def clearSpec: IndexFieldSpec = copy(spec = xyz.stratalab.indexer.services.IndexFieldSpec.Spec.Empty)
    def withSpec(__v: xyz.stratalab.indexer.services.IndexFieldSpec.Spec): IndexFieldSpec = copy(spec = __v)
    def withUnknownFields(__v: _root_.scalapb.UnknownFieldSet) = copy(unknownFields = __v)
    def discardUnknownFields = copy(unknownFields = _root_.scalapb.UnknownFieldSet.empty)
    def getFieldByNumber(__fieldNumber: _root_.scala.Int): _root_.scala.Any = {
      (__fieldNumber: @_root_.scala.unchecked) match {
        case 1 => spec.jsonSpecs.orNull
        case 2 => spec.csvSpecs.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 => spec.jsonSpecs.map(_.toPMessage).getOrElse(_root_.scalapb.descriptors.PEmpty)
        case 2 => spec.csvSpecs.map(_.toPMessage).getOrElse(_root_.scalapb.descriptors.PEmpty)
      }
    }
    def toProtoString: _root_.scala.Predef.String = _root_.scalapb.TextFormat.printToUnicodeString(this)
    def companion: xyz.stratalab.indexer.services.IndexFieldSpec.type = xyz.stratalab.indexer.services.IndexFieldSpec
    _root_.scalapb.validate.Validator.assertValid(this)(xyz.stratalab.indexer.services.IndexFieldSpecValidator)
    // @@protoc_insertion_point(GeneratedMessage[xyz.stratalab.indexer.services.IndexFieldSpec])
}

object IndexFieldSpec extends scalapb.GeneratedMessageCompanion[xyz.stratalab.indexer.services.IndexFieldSpec] {
  implicit def messageCompanion: scalapb.GeneratedMessageCompanion[xyz.stratalab.indexer.services.IndexFieldSpec] = this
  def parseFrom(`_input__`: _root_.com.google.protobuf.CodedInputStream): xyz.stratalab.indexer.services.IndexFieldSpec = {
    var __spec: xyz.stratalab.indexer.services.IndexFieldSpec.Spec = xyz.stratalab.indexer.services.IndexFieldSpec.Spec.Empty
    var `_unknownFields__`: _root_.scalapb.UnknownFieldSet.Builder = null
    var _done__ = false
    while (!_done__) {
      val _tag__ = _input__.readTag()
      _tag__ match {
        case 0 => _done__ = true
        case 10 =>
          __spec = xyz.stratalab.indexer.services.IndexFieldSpec.Spec.JsonSpecs(__spec.jsonSpecs.fold(_root_.scalapb.LiteParser.readMessage[xyz.stratalab.indexer.services.JsonIndexSpecs](_input__))(_root_.scalapb.LiteParser.readMessage(_input__, _)))
        case 18 =>
          __spec = xyz.stratalab.indexer.services.IndexFieldSpec.Spec.CsvSpecs(__spec.csvSpecs.fold(_root_.scalapb.LiteParser.readMessage[xyz.stratalab.indexer.services.CsvIndexSpecs](_input__))(_root_.scalapb.LiteParser.readMessage(_input__, _)))
        case tag =>
          if (_unknownFields__ == null) {
            _unknownFields__ = new _root_.scalapb.UnknownFieldSet.Builder()
          }
          _unknownFields__.parseField(tag, _input__)
      }
    }
    xyz.stratalab.indexer.services.IndexFieldSpec(
        spec = __spec,
        unknownFields = if (_unknownFields__ == null) _root_.scalapb.UnknownFieldSet.empty else _unknownFields__.result()
    )
  }
  implicit def messageReads: _root_.scalapb.descriptors.Reads[xyz.stratalab.indexer.services.IndexFieldSpec] = _root_.scalapb.descriptors.Reads{
    case _root_.scalapb.descriptors.PMessage(__fieldsMap) =>
      _root_.scala.Predef.require(__fieldsMap.keys.forall(_.containingMessage eq scalaDescriptor), "FieldDescriptor does not match message type.")
      xyz.stratalab.indexer.services.IndexFieldSpec(
        spec = __fieldsMap.get(scalaDescriptor.findFieldByNumber(1).get).flatMap(_.as[_root_.scala.Option[xyz.stratalab.indexer.services.JsonIndexSpecs]]).map(xyz.stratalab.indexer.services.IndexFieldSpec.Spec.JsonSpecs(_))
            .orElse[xyz.stratalab.indexer.services.IndexFieldSpec.Spec](__fieldsMap.get(scalaDescriptor.findFieldByNumber(2).get).flatMap(_.as[_root_.scala.Option[xyz.stratalab.indexer.services.CsvIndexSpecs]]).map(xyz.stratalab.indexer.services.IndexFieldSpec.Spec.CsvSpecs(_)))
            .getOrElse(xyz.stratalab.indexer.services.IndexFieldSpec.Spec.Empty)
      )
    case _ => throw new RuntimeException("Expected PMessage")
  }
  def javaDescriptor: _root_.com.google.protobuf.Descriptors.Descriptor = IndexerModelsProto.javaDescriptor.getMessageTypes().get(5)
  def scalaDescriptor: _root_.scalapb.descriptors.Descriptor = IndexerModelsProto.scalaDescriptor.messages(5)
  def messageCompanionForFieldNumber(__number: _root_.scala.Int): _root_.scalapb.GeneratedMessageCompanion[_] = {
    var __out: _root_.scalapb.GeneratedMessageCompanion[_] = null
    (__number: @_root_.scala.unchecked) match {
      case 1 => __out = xyz.stratalab.indexer.services.JsonIndexSpecs
      case 2 => __out = xyz.stratalab.indexer.services.CsvIndexSpecs
    }
    __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 = xyz.stratalab.indexer.services.IndexFieldSpec(
    spec = xyz.stratalab.indexer.services.IndexFieldSpec.Spec.Empty
  )
  sealed trait Spec extends _root_.scalapb.GeneratedOneof {
    def isEmpty: _root_.scala.Boolean = false
    def isDefined: _root_.scala.Boolean = true
    def isJsonSpecs: _root_.scala.Boolean = false
    def isCsvSpecs: _root_.scala.Boolean = false
    def jsonSpecs: _root_.scala.Option[xyz.stratalab.indexer.services.JsonIndexSpecs] = _root_.scala.None
    def csvSpecs: _root_.scala.Option[xyz.stratalab.indexer.services.CsvIndexSpecs] = _root_.scala.None
  }
  object Spec {
    @SerialVersionUID(0L)
    case object Empty extends xyz.stratalab.indexer.services.IndexFieldSpec.Spec {
      type ValueType = _root_.scala.Nothing
      override def isEmpty: _root_.scala.Boolean = true
      override def isDefined: _root_.scala.Boolean = false
      override def number: _root_.scala.Int = 0
      override def value: _root_.scala.Nothing = throw new java.util.NoSuchElementException("Empty.value")
    }
  
    @SerialVersionUID(0L)
    final case class JsonSpecs(value: xyz.stratalab.indexer.services.JsonIndexSpecs) extends xyz.stratalab.indexer.services.IndexFieldSpec.Spec {
      type ValueType = xyz.stratalab.indexer.services.JsonIndexSpecs
      override def isJsonSpecs: _root_.scala.Boolean = true
      override def jsonSpecs: _root_.scala.Option[xyz.stratalab.indexer.services.JsonIndexSpecs] = Some(value)
      override def number: _root_.scala.Int = 1
    }
    @SerialVersionUID(0L)
    final case class CsvSpecs(value: xyz.stratalab.indexer.services.CsvIndexSpecs) extends xyz.stratalab.indexer.services.IndexFieldSpec.Spec {
      type ValueType = xyz.stratalab.indexer.services.CsvIndexSpecs
      override def isCsvSpecs: _root_.scala.Boolean = true
      override def csvSpecs: _root_.scala.Option[xyz.stratalab.indexer.services.CsvIndexSpecs] = Some(value)
      override def number: _root_.scala.Int = 2
    }
  }
  implicit class IndexFieldSpecLens[UpperPB](_l: _root_.scalapb.lenses.Lens[UpperPB, xyz.stratalab.indexer.services.IndexFieldSpec]) extends _root_.scalapb.lenses.ObjectLens[UpperPB, xyz.stratalab.indexer.services.IndexFieldSpec](_l) {
    def jsonSpecs: _root_.scalapb.lenses.Lens[UpperPB, xyz.stratalab.indexer.services.JsonIndexSpecs] = field(_.getJsonSpecs)((c_, f_) => c_.copy(spec = xyz.stratalab.indexer.services.IndexFieldSpec.Spec.JsonSpecs(f_)))
    def csvSpecs: _root_.scalapb.lenses.Lens[UpperPB, xyz.stratalab.indexer.services.CsvIndexSpecs] = field(_.getCsvSpecs)((c_, f_) => c_.copy(spec = xyz.stratalab.indexer.services.IndexFieldSpec.Spec.CsvSpecs(f_)))
    def spec: _root_.scalapb.lenses.Lens[UpperPB, xyz.stratalab.indexer.services.IndexFieldSpec.Spec] = field(_.spec)((c_, f_) => c_.copy(spec = f_))
  }
  final val JSONSPECS_FIELD_NUMBER = 1
  final val CSVSPECS_FIELD_NUMBER = 2
  def of(
    spec: xyz.stratalab.indexer.services.IndexFieldSpec.Spec
  ): _root_.xyz.stratalab.indexer.services.IndexFieldSpec = _root_.xyz.stratalab.indexer.services.IndexFieldSpec(
    spec
  )
  implicit def validator: scalapb.validate.Validator[xyz.stratalab.indexer.services.IndexFieldSpec] = xyz.stratalab.indexer.services.IndexFieldSpecValidator
  // @@protoc_insertion_point(GeneratedMessageCompanion[xyz.stratalab.indexer.services.IndexFieldSpec])
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy