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

com.google.protobuf.descriptor.MessageOptions.scala Maven / Gradle / Ivy

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

package com.google.protobuf.descriptor

/** @param messageSetWireFormat
  *   Set true to use the old proto1 MessageSet wire format for extensions.
  *   This is provided for backwards-compatibility with the MessageSet wire
  *   format.  You should not use this for any other reason:  It's less
  *   efficient, has fewer features, and is more complicated.
  *  
  *   The message must be defined exactly as follows:
  *     message Foo {
  *       option message_set_wire_format = true;
  *       extensions 4 to max;
  *     }
  *   Note that the message cannot have any defined fields; MessageSets only
  *   have extensions.
  *  
  *   All extensions of your type must be singular messages; e.g. they cannot
  *   be int32s, enums, or repeated messages.
  *  
  *   Because this is an option, the above two restrictions are not enforced by
  *   the protocol compiler.
  * @param noStandardDescriptorAccessor
  *   Disables the generation of the standard "descriptor()" accessor, which can
  *   conflict with a field of the same name.  This is meant to make migration
  *   from proto1 easier; new code should avoid fields named "descriptor".
  * @param deprecated
  *   Is this message deprecated?
  *   Depending on the target platform, this can emit Deprecated annotations
  *   for the message, or it will be completely ignored; in the very least,
  *   this is a formalization for deprecating messages.
  * @param mapEntry
  *   Whether the message is an automatically generated map entry type for the
  *   maps field.
  *  
  *   For maps fields:
  *       map<KeyType, ValueType> map_field = 1;
  *   The parsed descriptor looks like:
  *       message MapFieldEntry {
  *           option map_entry = true;
  *           optional KeyType key = 1;
  *           optional ValueType value = 2;
  *       }
  *       repeated MapFieldEntry map_field = 1;
  *  
  *   Implementations may choose not to generate the map_entry=true message, but
  *   use a native map in the target language to hold the keys and values.
  *   The reflection APIs in such implementations still need to work as
  *   if the field is a repeated message field.
  *  
  *   NOTE: Do not set the option in .proto files. Always use the maps syntax
  *   instead. The option should only be implicitly set by the proto compiler
  *   parser.
  * @param deprecatedLegacyJsonFieldConflicts
  *   Enable the legacy handling of JSON field name conflicts.  This lowercases
  *   and strips underscored from the fields before comparison in proto3 only.
  *   The new behavior takes `json_name` into account and applies to proto2 as
  *   well.
  *  
  *   This should only be used as a temporary measure against broken builds due
  *   to the change in behavior for JSON field name conflicts.
  *  
  *   TODO This is legacy behavior we plan to remove once downstream
  *   teams have had time to migrate.
  * @param features
  *   Any features defined in the specific edition.
  * @param uninterpretedOption
  *   The parser stores options it doesn't recognize here. See above.
  */
@SerialVersionUID(0L)
final case class MessageOptions(
    messageSetWireFormat: _root_.scala.Option[_root_.scala.Boolean] = _root_.scala.None,
    noStandardDescriptorAccessor: _root_.scala.Option[_root_.scala.Boolean] = _root_.scala.None,
    deprecated: _root_.scala.Option[_root_.scala.Boolean] = _root_.scala.None,
    mapEntry: _root_.scala.Option[_root_.scala.Boolean] = _root_.scala.None,
    @scala.deprecated(message="Marked as deprecated in proto file", "") deprecatedLegacyJsonFieldConflicts: _root_.scala.Option[_root_.scala.Boolean] = _root_.scala.None,
    features: _root_.scala.Option[com.google.protobuf.descriptor.FeatureSet] = _root_.scala.None,
    uninterpretedOption: _root_.scala.Seq[com.google.protobuf.descriptor.UninterpretedOption] = _root_.scala.Seq.empty,
    unknownFields: _root_.scalapb.UnknownFieldSet = _root_.scalapb.UnknownFieldSet.empty
    ) extends scalapb.GeneratedMessage with scalapb.lenses.Updatable[MessageOptions] with _root_.scalapb.ExtendableMessage[MessageOptions] {
    @transient
    private[this] var __serializedSizeMemoized: _root_.scala.Int = 0
    private[this] def __computeSerializedSize(): _root_.scala.Int = {
      var __size = 0
      if (messageSetWireFormat.isDefined) {
        val __value = messageSetWireFormat.get
        __size += _root_.com.google.protobuf.CodedOutputStream.computeBoolSize(1, __value)
      };
      if (noStandardDescriptorAccessor.isDefined) {
        val __value = noStandardDescriptorAccessor.get
        __size += _root_.com.google.protobuf.CodedOutputStream.computeBoolSize(2, __value)
      };
      if (deprecated.isDefined) {
        val __value = deprecated.get
        __size += _root_.com.google.protobuf.CodedOutputStream.computeBoolSize(3, __value)
      };
      if (mapEntry.isDefined) {
        val __value = mapEntry.get
        __size += _root_.com.google.protobuf.CodedOutputStream.computeBoolSize(7, __value)
      };
      if (deprecatedLegacyJsonFieldConflicts.isDefined) {
        val __value = deprecatedLegacyJsonFieldConflicts.get
        __size += _root_.com.google.protobuf.CodedOutputStream.computeBoolSize(11, __value)
      };
      if (features.isDefined) {
        val __value = features.get
        __size += 1 + _root_.com.google.protobuf.CodedOutputStream.computeUInt32SizeNoTag(__value.serializedSize) + __value.serializedSize
      };
      uninterpretedOption.foreach { __item =>
        val __value = __item
        __size += 2 + _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 = {
      messageSetWireFormat.foreach { __v =>
        val __m = __v
        _output__.writeBool(1, __m)
      };
      noStandardDescriptorAccessor.foreach { __v =>
        val __m = __v
        _output__.writeBool(2, __m)
      };
      deprecated.foreach { __v =>
        val __m = __v
        _output__.writeBool(3, __m)
      };
      mapEntry.foreach { __v =>
        val __m = __v
        _output__.writeBool(7, __m)
      };
      deprecatedLegacyJsonFieldConflicts.foreach { __v =>
        val __m = __v
        _output__.writeBool(11, __m)
      };
      features.foreach { __v =>
        val __m = __v
        _output__.writeTag(12, 2)
        _output__.writeUInt32NoTag(__m.serializedSize)
        __m.writeTo(_output__)
      };
      uninterpretedOption.foreach { __v =>
        val __m = __v
        _output__.writeTag(999, 2)
        _output__.writeUInt32NoTag(__m.serializedSize)
        __m.writeTo(_output__)
      };
      unknownFields.writeTo(_output__)
    }
    def getMessageSetWireFormat: _root_.scala.Boolean = messageSetWireFormat.getOrElse(false)
    def clearMessageSetWireFormat: MessageOptions = copy(messageSetWireFormat = _root_.scala.None)
    def withMessageSetWireFormat(__v: _root_.scala.Boolean): MessageOptions = copy(messageSetWireFormat = Option(__v))
    def getNoStandardDescriptorAccessor: _root_.scala.Boolean = noStandardDescriptorAccessor.getOrElse(false)
    def clearNoStandardDescriptorAccessor: MessageOptions = copy(noStandardDescriptorAccessor = _root_.scala.None)
    def withNoStandardDescriptorAccessor(__v: _root_.scala.Boolean): MessageOptions = copy(noStandardDescriptorAccessor = Option(__v))
    def getDeprecated: _root_.scala.Boolean = deprecated.getOrElse(false)
    def clearDeprecated: MessageOptions = copy(deprecated = _root_.scala.None)
    def withDeprecated(__v: _root_.scala.Boolean): MessageOptions = copy(deprecated = Option(__v))
    def getMapEntry: _root_.scala.Boolean = mapEntry.getOrElse(false)
    def clearMapEntry: MessageOptions = copy(mapEntry = _root_.scala.None)
    def withMapEntry(__v: _root_.scala.Boolean): MessageOptions = copy(mapEntry = Option(__v))
    def getDeprecatedLegacyJsonFieldConflicts: _root_.scala.Boolean = deprecatedLegacyJsonFieldConflicts.getOrElse(false)
    def clearDeprecatedLegacyJsonFieldConflicts: MessageOptions = copy(deprecatedLegacyJsonFieldConflicts = _root_.scala.None)
    def withDeprecatedLegacyJsonFieldConflicts(__v: _root_.scala.Boolean): MessageOptions = copy(deprecatedLegacyJsonFieldConflicts = Option(__v))
    def getFeatures: com.google.protobuf.descriptor.FeatureSet = features.getOrElse(com.google.protobuf.descriptor.FeatureSet.defaultInstance)
    def clearFeatures: MessageOptions = copy(features = _root_.scala.None)
    def withFeatures(__v: com.google.protobuf.descriptor.FeatureSet): MessageOptions = copy(features = Option(__v))
    def clearUninterpretedOption = copy(uninterpretedOption = _root_.scala.Seq.empty)
    def addUninterpretedOption(__vs: com.google.protobuf.descriptor.UninterpretedOption *): MessageOptions = addAllUninterpretedOption(__vs)
    def addAllUninterpretedOption(__vs: Iterable[com.google.protobuf.descriptor.UninterpretedOption]): MessageOptions = copy(uninterpretedOption = uninterpretedOption ++ __vs)
    def withUninterpretedOption(__v: _root_.scala.Seq[com.google.protobuf.descriptor.UninterpretedOption]): MessageOptions = copy(uninterpretedOption = __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 => messageSetWireFormat.orNull
        case 2 => noStandardDescriptorAccessor.orNull
        case 3 => deprecated.orNull
        case 7 => mapEntry.orNull
        case 11 => deprecatedLegacyJsonFieldConflicts.orNull
        case 12 => features.orNull
        case 999 => uninterpretedOption
      }
    }
    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 => messageSetWireFormat.map(_root_.scalapb.descriptors.PBoolean(_)).getOrElse(_root_.scalapb.descriptors.PEmpty)
        case 2 => noStandardDescriptorAccessor.map(_root_.scalapb.descriptors.PBoolean(_)).getOrElse(_root_.scalapb.descriptors.PEmpty)
        case 3 => deprecated.map(_root_.scalapb.descriptors.PBoolean(_)).getOrElse(_root_.scalapb.descriptors.PEmpty)
        case 7 => mapEntry.map(_root_.scalapb.descriptors.PBoolean(_)).getOrElse(_root_.scalapb.descriptors.PEmpty)
        case 11 => deprecatedLegacyJsonFieldConflicts.map(_root_.scalapb.descriptors.PBoolean(_)).getOrElse(_root_.scalapb.descriptors.PEmpty)
        case 12 => features.map(_.toPMessage).getOrElse(_root_.scalapb.descriptors.PEmpty)
        case 999 => _root_.scalapb.descriptors.PRepeated(uninterpretedOption.iterator.map(_.toPMessage).toVector)
      }
    }
    def toProtoString: _root_.scala.Predef.String = _root_.scalapb.TextFormat.printToUnicodeString(this)
    def companion: com.google.protobuf.descriptor.MessageOptions.type = com.google.protobuf.descriptor.MessageOptions
    // @@protoc_insertion_point(GeneratedMessage[google.protobuf.MessageOptions])
}

object MessageOptions extends scalapb.GeneratedMessageCompanion[com.google.protobuf.descriptor.MessageOptions] {
  implicit def messageCompanion: scalapb.GeneratedMessageCompanion[com.google.protobuf.descriptor.MessageOptions] = this
  def parseFrom(`_input__`: _root_.com.google.protobuf.CodedInputStream): com.google.protobuf.descriptor.MessageOptions = {
    var __messageSetWireFormat: _root_.scala.Option[_root_.scala.Boolean] = _root_.scala.None
    var __noStandardDescriptorAccessor: _root_.scala.Option[_root_.scala.Boolean] = _root_.scala.None
    var __deprecated: _root_.scala.Option[_root_.scala.Boolean] = _root_.scala.None
    var __mapEntry: _root_.scala.Option[_root_.scala.Boolean] = _root_.scala.None
    var __deprecatedLegacyJsonFieldConflicts: _root_.scala.Option[_root_.scala.Boolean] = _root_.scala.None
    var __features: _root_.scala.Option[com.google.protobuf.descriptor.FeatureSet] = _root_.scala.None
    val __uninterpretedOption: _root_.scala.collection.immutable.VectorBuilder[com.google.protobuf.descriptor.UninterpretedOption] = new _root_.scala.collection.immutable.VectorBuilder[com.google.protobuf.descriptor.UninterpretedOption]
    var `_unknownFields__`: _root_.scalapb.UnknownFieldSet.Builder = null
    var _done__ = false
    while (!_done__) {
      val _tag__ = _input__.readTag()
      _tag__ match {
        case 0 => _done__ = true
        case 8 =>
          __messageSetWireFormat = _root_.scala.Option(_input__.readBool())
        case 16 =>
          __noStandardDescriptorAccessor = _root_.scala.Option(_input__.readBool())
        case 24 =>
          __deprecated = _root_.scala.Option(_input__.readBool())
        case 56 =>
          __mapEntry = _root_.scala.Option(_input__.readBool())
        case 88 =>
          __deprecatedLegacyJsonFieldConflicts = _root_.scala.Option(_input__.readBool())
        case 98 =>
          __features = _root_.scala.Option(__features.fold(_root_.scalapb.LiteParser.readMessage[com.google.protobuf.descriptor.FeatureSet](_input__))(_root_.scalapb.LiteParser.readMessage(_input__, _)))
        case 7994 =>
          __uninterpretedOption += _root_.scalapb.LiteParser.readMessage[com.google.protobuf.descriptor.UninterpretedOption](_input__)
        case tag =>
          if (_unknownFields__ == null) {
            _unknownFields__ = new _root_.scalapb.UnknownFieldSet.Builder()
          }
          _unknownFields__.parseField(tag, _input__)
      }
    }
    com.google.protobuf.descriptor.MessageOptions(
        messageSetWireFormat = __messageSetWireFormat,
        noStandardDescriptorAccessor = __noStandardDescriptorAccessor,
        deprecated = __deprecated,
        mapEntry = __mapEntry,
        deprecatedLegacyJsonFieldConflicts = __deprecatedLegacyJsonFieldConflicts,
        features = __features,
        uninterpretedOption = __uninterpretedOption.result(),
        unknownFields = if (_unknownFields__ == null) _root_.scalapb.UnknownFieldSet.empty else _unknownFields__.result()
    )
  }
  implicit def messageReads: _root_.scalapb.descriptors.Reads[com.google.protobuf.descriptor.MessageOptions] = _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.")
      com.google.protobuf.descriptor.MessageOptions(
        messageSetWireFormat = __fieldsMap.get(scalaDescriptor.findFieldByNumber(1).get).flatMap(_.as[_root_.scala.Option[_root_.scala.Boolean]]),
        noStandardDescriptorAccessor = __fieldsMap.get(scalaDescriptor.findFieldByNumber(2).get).flatMap(_.as[_root_.scala.Option[_root_.scala.Boolean]]),
        deprecated = __fieldsMap.get(scalaDescriptor.findFieldByNumber(3).get).flatMap(_.as[_root_.scala.Option[_root_.scala.Boolean]]),
        mapEntry = __fieldsMap.get(scalaDescriptor.findFieldByNumber(7).get).flatMap(_.as[_root_.scala.Option[_root_.scala.Boolean]]),
        deprecatedLegacyJsonFieldConflicts = __fieldsMap.get(scalaDescriptor.findFieldByNumber(11).get).flatMap(_.as[_root_.scala.Option[_root_.scala.Boolean]]),
        features = __fieldsMap.get(scalaDescriptor.findFieldByNumber(12).get).flatMap(_.as[_root_.scala.Option[com.google.protobuf.descriptor.FeatureSet]]),
        uninterpretedOption = __fieldsMap.get(scalaDescriptor.findFieldByNumber(999).get).map(_.as[_root_.scala.Seq[com.google.protobuf.descriptor.UninterpretedOption]]).getOrElse(_root_.scala.Seq.empty)
      )
    case _ => throw new RuntimeException("Expected PMessage")
  }
  def javaDescriptor: _root_.com.google.protobuf.Descriptors.Descriptor = com.google.protobuf.descriptor.DescriptorProtoCompanion.javaDescriptor.getMessageTypes().get(11)
  def scalaDescriptor: _root_.scalapb.descriptors.Descriptor = com.google.protobuf.descriptor.DescriptorProtoCompanion.scalaDescriptor.messages(11)
  def messageCompanionForFieldNumber(__number: _root_.scala.Int): _root_.scalapb.GeneratedMessageCompanion[_] = {
    var __out: _root_.scalapb.GeneratedMessageCompanion[_] = null
    (__number: @_root_.scala.unchecked) match {
      case 12 => __out = com.google.protobuf.descriptor.FeatureSet
      case 999 => __out = com.google.protobuf.descriptor.UninterpretedOption
    }
    __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 = com.google.protobuf.descriptor.MessageOptions(
    messageSetWireFormat = _root_.scala.None,
    noStandardDescriptorAccessor = _root_.scala.None,
    deprecated = _root_.scala.None,
    mapEntry = _root_.scala.None,
    deprecatedLegacyJsonFieldConflicts = _root_.scala.None,
    features = _root_.scala.None,
    uninterpretedOption = _root_.scala.Seq.empty
  )
  implicit class MessageOptionsLens[UpperPB](_l: _root_.scalapb.lenses.Lens[UpperPB, com.google.protobuf.descriptor.MessageOptions]) extends _root_.scalapb.lenses.ObjectLens[UpperPB, com.google.protobuf.descriptor.MessageOptions](_l) {
    def messageSetWireFormat: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Boolean] = field(_.getMessageSetWireFormat)((c_, f_) => c_.copy(messageSetWireFormat = _root_.scala.Option(f_)))
    def optionalMessageSetWireFormat: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Option[_root_.scala.Boolean]] = field(_.messageSetWireFormat)((c_, f_) => c_.copy(messageSetWireFormat = f_))
    def noStandardDescriptorAccessor: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Boolean] = field(_.getNoStandardDescriptorAccessor)((c_, f_) => c_.copy(noStandardDescriptorAccessor = _root_.scala.Option(f_)))
    def optionalNoStandardDescriptorAccessor: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Option[_root_.scala.Boolean]] = field(_.noStandardDescriptorAccessor)((c_, f_) => c_.copy(noStandardDescriptorAccessor = f_))
    def deprecated: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Boolean] = field(_.getDeprecated)((c_, f_) => c_.copy(deprecated = _root_.scala.Option(f_)))
    def optionalDeprecated: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Option[_root_.scala.Boolean]] = field(_.deprecated)((c_, f_) => c_.copy(deprecated = f_))
    def mapEntry: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Boolean] = field(_.getMapEntry)((c_, f_) => c_.copy(mapEntry = _root_.scala.Option(f_)))
    def optionalMapEntry: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Option[_root_.scala.Boolean]] = field(_.mapEntry)((c_, f_) => c_.copy(mapEntry = f_))
    def deprecatedLegacyJsonFieldConflicts: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Boolean] = field(_.getDeprecatedLegacyJsonFieldConflicts)((c_, f_) => c_.copy(deprecatedLegacyJsonFieldConflicts = _root_.scala.Option(f_)))
    def optionalDeprecatedLegacyJsonFieldConflicts: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Option[_root_.scala.Boolean]] = field(_.deprecatedLegacyJsonFieldConflicts)((c_, f_) => c_.copy(deprecatedLegacyJsonFieldConflicts = f_))
    def features: _root_.scalapb.lenses.Lens[UpperPB, com.google.protobuf.descriptor.FeatureSet] = field(_.getFeatures)((c_, f_) => c_.copy(features = _root_.scala.Option(f_)))
    def optionalFeatures: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Option[com.google.protobuf.descriptor.FeatureSet]] = field(_.features)((c_, f_) => c_.copy(features = f_))
    def uninterpretedOption: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Seq[com.google.protobuf.descriptor.UninterpretedOption]] = field(_.uninterpretedOption)((c_, f_) => c_.copy(uninterpretedOption = f_))
  }
  final val MESSAGE_SET_WIRE_FORMAT_FIELD_NUMBER = 1
  final val NO_STANDARD_DESCRIPTOR_ACCESSOR_FIELD_NUMBER = 2
  final val DEPRECATED_FIELD_NUMBER = 3
  final val MAP_ENTRY_FIELD_NUMBER = 7
  final val DEPRECATED_LEGACY_JSON_FIELD_CONFLICTS_FIELD_NUMBER = 11
  final val FEATURES_FIELD_NUMBER = 12
  final val UNINTERPRETED_OPTION_FIELD_NUMBER = 999
  def of(
    messageSetWireFormat: _root_.scala.Option[_root_.scala.Boolean],
    noStandardDescriptorAccessor: _root_.scala.Option[_root_.scala.Boolean],
    deprecated: _root_.scala.Option[_root_.scala.Boolean],
    mapEntry: _root_.scala.Option[_root_.scala.Boolean],
    deprecatedLegacyJsonFieldConflicts: _root_.scala.Option[_root_.scala.Boolean],
    features: _root_.scala.Option[com.google.protobuf.descriptor.FeatureSet],
    uninterpretedOption: _root_.scala.Seq[com.google.protobuf.descriptor.UninterpretedOption]
  ): _root_.com.google.protobuf.descriptor.MessageOptions = _root_.com.google.protobuf.descriptor.MessageOptions(
    messageSetWireFormat,
    noStandardDescriptorAccessor,
    deprecated,
    mapEntry,
    deprecatedLegacyJsonFieldConflicts,
    features,
    uninterpretedOption
  )
  // @@protoc_insertion_point(GeneratedMessageCompanion[google.protobuf.MessageOptions])
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy