org.plasmalabs.indexer.services.CsvIndexSpecs.scala Maven / Gradle / Ivy
The newest version!
// Generated by the Scala Plugin for the Protocol Buffer Compiler.
// Do not edit!
//
// Protofile syntax: PROTO3
package org.plasmalabs.indexer.services
/** a sequence of csv field references to identify the values in data to be indexed
*
* @param separatorChar
* The character code that is used to separate fields.
* @param quoteChar
* If this is present, the specified character appears at the beginning and end of each field.
*/
@SerialVersionUID(0L)
final case class CsvIndexSpecs(
specs: _root_.scala.Seq[org.plasmalabs.indexer.services.CsvIndexSpec] = _root_.scala.Seq.empty,
separatorChar: _root_.scala.Int = 0,
quoteChar: _root_.scala.Option[_root_.scala.Int] = _root_.scala.None,
unknownFields: _root_.scalapb.UnknownFieldSet = _root_.scalapb.UnknownFieldSet.empty
) extends scalapb.GeneratedMessage with scalapb.lenses.Updatable[CsvIndexSpecs] {
@transient
private[this] var __serializedSizeMemoized: _root_.scala.Int = 0
private[this] def __computeSerializedSize(): _root_.scala.Int = {
var __size = 0
specs.foreach { __item =>
val __value = __item
__size += 1 + _root_.com.google.protobuf.CodedOutputStream.computeUInt32SizeNoTag(__value.serializedSize) + __value.serializedSize
}
{
val __value = separatorChar
if (__value != 0) {
__size += _root_.com.google.protobuf.CodedOutputStream.computeUInt32Size(2, __value)
}
};
if (quoteChar.isDefined) {
val __value = org.plasmalabs.indexer.services.CsvIndexSpecs._typemapper_quoteChar.toBase(quoteChar.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 = {
specs.foreach { __v =>
val __m = __v
_output__.writeTag(1, 2)
_output__.writeUInt32NoTag(__m.serializedSize)
__m.writeTo(_output__)
};
{
val __v = separatorChar
if (__v != 0) {
_output__.writeUInt32(2, __v)
}
};
quoteChar.foreach { __v =>
val __m = org.plasmalabs.indexer.services.CsvIndexSpecs._typemapper_quoteChar.toBase(__v)
_output__.writeTag(3, 2)
_output__.writeUInt32NoTag(__m.serializedSize)
__m.writeTo(_output__)
};
unknownFields.writeTo(_output__)
}
def clearSpecs = copy(specs = _root_.scala.Seq.empty)
def addSpecs(__vs: org.plasmalabs.indexer.services.CsvIndexSpec *): CsvIndexSpecs = addAllSpecs(__vs)
def addAllSpecs(__vs: Iterable[org.plasmalabs.indexer.services.CsvIndexSpec]): CsvIndexSpecs = copy(specs = specs ++ __vs)
def withSpecs(__v: _root_.scala.Seq[org.plasmalabs.indexer.services.CsvIndexSpec]): CsvIndexSpecs = copy(specs = __v)
def withSeparatorChar(__v: _root_.scala.Int): CsvIndexSpecs = copy(separatorChar = __v)
def getQuoteChar: _root_.scala.Int = quoteChar.getOrElse(org.plasmalabs.indexer.services.CsvIndexSpecs._typemapper_quoteChar.toCustom(com.google.protobuf.wrappers.UInt32Value.defaultInstance))
def clearQuoteChar: CsvIndexSpecs = copy(quoteChar = _root_.scala.None)
def withQuoteChar(__v: _root_.scala.Int): CsvIndexSpecs = copy(quoteChar = Option(__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 => specs
case 2 => {
val __t = separatorChar
if (__t != 0) __t else null
}
case 3 => quoteChar.map(org.plasmalabs.indexer.services.CsvIndexSpecs._typemapper_quoteChar.toBase(_)).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.PRepeated(specs.iterator.map(_.toPMessage).toVector)
case 2 => _root_.scalapb.descriptors.PInt(separatorChar)
case 3 => quoteChar.map(org.plasmalabs.indexer.services.CsvIndexSpecs._typemapper_quoteChar.toBase(_).toPMessage).getOrElse(_root_.scalapb.descriptors.PEmpty)
}
}
def toProtoString: _root_.scala.Predef.String = _root_.scalapb.TextFormat.printToUnicodeString(this)
def companion: org.plasmalabs.indexer.services.CsvIndexSpecs.type = org.plasmalabs.indexer.services.CsvIndexSpecs
_root_.scalapb.validate.Validator.assertValid(this)(org.plasmalabs.indexer.services.CsvIndexSpecsValidator)
// @@protoc_insertion_point(GeneratedMessage[org.plasmalabs.indexer.services.CsvIndexSpecs])
}
object CsvIndexSpecs extends scalapb.GeneratedMessageCompanion[org.plasmalabs.indexer.services.CsvIndexSpecs] {
implicit def messageCompanion: scalapb.GeneratedMessageCompanion[org.plasmalabs.indexer.services.CsvIndexSpecs] = this
def parseFrom(`_input__`: _root_.com.google.protobuf.CodedInputStream): org.plasmalabs.indexer.services.CsvIndexSpecs = {
val __specs: _root_.scala.collection.immutable.VectorBuilder[org.plasmalabs.indexer.services.CsvIndexSpec] = new _root_.scala.collection.immutable.VectorBuilder[org.plasmalabs.indexer.services.CsvIndexSpec]
var __separatorChar: _root_.scala.Int = 0
var __quoteChar: _root_.scala.Option[_root_.scala.Int] = _root_.scala.None
var `_unknownFields__`: _root_.scalapb.UnknownFieldSet.Builder = null
var _done__ = false
while (!_done__) {
val _tag__ = _input__.readTag()
_tag__ match {
case 0 => _done__ = true
case 10 =>
__specs += _root_.scalapb.LiteParser.readMessage[org.plasmalabs.indexer.services.CsvIndexSpec](_input__)
case 16 =>
__separatorChar = _input__.readUInt32()
case 26 =>
__quoteChar = _root_.scala.Option(org.plasmalabs.indexer.services.CsvIndexSpecs._typemapper_quoteChar.toCustom(__quoteChar.map(org.plasmalabs.indexer.services.CsvIndexSpecs._typemapper_quoteChar.toBase(_)).fold(_root_.scalapb.LiteParser.readMessage[com.google.protobuf.wrappers.UInt32Value](_input__))(_root_.scalapb.LiteParser.readMessage(_input__, _))))
case tag =>
if (_unknownFields__ == null) {
_unknownFields__ = new _root_.scalapb.UnknownFieldSet.Builder()
}
_unknownFields__.parseField(tag, _input__)
}
}
org.plasmalabs.indexer.services.CsvIndexSpecs(
specs = __specs.result(),
separatorChar = __separatorChar,
quoteChar = __quoteChar,
unknownFields = if (_unknownFields__ == null) _root_.scalapb.UnknownFieldSet.empty else _unknownFields__.result()
)
}
implicit def messageReads: _root_.scalapb.descriptors.Reads[org.plasmalabs.indexer.services.CsvIndexSpecs] = _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.")
org.plasmalabs.indexer.services.CsvIndexSpecs(
specs = __fieldsMap.get(scalaDescriptor.findFieldByNumber(1).get).map(_.as[_root_.scala.Seq[org.plasmalabs.indexer.services.CsvIndexSpec]]).getOrElse(_root_.scala.Seq.empty),
separatorChar = __fieldsMap.get(scalaDescriptor.findFieldByNumber(2).get).map(_.as[_root_.scala.Int]).getOrElse(0),
quoteChar = __fieldsMap.get(scalaDescriptor.findFieldByNumber(3).get).flatMap(_.as[_root_.scala.Option[com.google.protobuf.wrappers.UInt32Value]]).map(org.plasmalabs.indexer.services.CsvIndexSpecs._typemapper_quoteChar.toCustom(_))
)
case _ => throw new RuntimeException("Expected PMessage")
}
def javaDescriptor: _root_.com.google.protobuf.Descriptors.Descriptor = IndexerModelsProto.javaDescriptor.getMessageTypes().get(6)
def scalaDescriptor: _root_.scalapb.descriptors.Descriptor = IndexerModelsProto.scalaDescriptor.messages(6)
def messageCompanionForFieldNumber(__number: _root_.scala.Int): _root_.scalapb.GeneratedMessageCompanion[_] = {
var __out: _root_.scalapb.GeneratedMessageCompanion[_] = null
(__number: @_root_.scala.unchecked) match {
case 1 => __out = org.plasmalabs.indexer.services.CsvIndexSpec
case 3 => __out = com.google.protobuf.wrappers.UInt32Value
}
__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.plasmalabs.indexer.services.CsvIndexSpecs(
specs = _root_.scala.Seq.empty,
separatorChar = 0,
quoteChar = _root_.scala.None
)
implicit class CsvIndexSpecsLens[UpperPB](_l: _root_.scalapb.lenses.Lens[UpperPB, org.plasmalabs.indexer.services.CsvIndexSpecs]) extends _root_.scalapb.lenses.ObjectLens[UpperPB, org.plasmalabs.indexer.services.CsvIndexSpecs](_l) {
def specs: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Seq[org.plasmalabs.indexer.services.CsvIndexSpec]] = field(_.specs)((c_, f_) => c_.copy(specs = f_))
def separatorChar: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Int] = field(_.separatorChar)((c_, f_) => c_.copy(separatorChar = f_))
def quoteChar: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Int] = field(_.getQuoteChar)((c_, f_) => c_.copy(quoteChar = _root_.scala.Option(f_)))
def optionalQuoteChar: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Option[_root_.scala.Int]] = field(_.quoteChar)((c_, f_) => c_.copy(quoteChar = f_))
}
final val SPECS_FIELD_NUMBER = 1
final val SEPARATORCHAR_FIELD_NUMBER = 2
final val QUOTECHAR_FIELD_NUMBER = 3
@transient
private[services] val _typemapper_quoteChar: _root_.scalapb.TypeMapper[com.google.protobuf.wrappers.UInt32Value, _root_.scala.Int] = implicitly[_root_.scalapb.TypeMapper[com.google.protobuf.wrappers.UInt32Value, _root_.scala.Int]]
def of(
specs: _root_.scala.Seq[org.plasmalabs.indexer.services.CsvIndexSpec],
separatorChar: _root_.scala.Int,
quoteChar: _root_.scala.Option[_root_.scala.Int]
): _root_.org.plasmalabs.indexer.services.CsvIndexSpecs = _root_.org.plasmalabs.indexer.services.CsvIndexSpecs(
specs,
separatorChar,
quoteChar
)
implicit def validator: scalapb.validate.Validator[org.plasmalabs.indexer.services.CsvIndexSpecs] = org.plasmalabs.indexer.services.CsvIndexSpecsValidator
// @@protoc_insertion_point(GeneratedMessageCompanion[org.plasmalabs.indexer.services.CsvIndexSpecs])
}