mirror of
https://github.com/Melledy/Nebula.git
synced 2025-12-16 22:34:41 +01:00
665 lines
18 KiB
Java
665 lines
18 KiB
Java
// Code generated by protocol buffer compiler. Do not edit!
|
|
package emu.nebula.proto;
|
|
|
|
import java.io.IOException;
|
|
import us.hebi.quickbuf.FieldName;
|
|
import us.hebi.quickbuf.InvalidProtocolBufferException;
|
|
import us.hebi.quickbuf.JsonSink;
|
|
import us.hebi.quickbuf.JsonSource;
|
|
import us.hebi.quickbuf.MessageFactory;
|
|
import us.hebi.quickbuf.ProtoMessage;
|
|
import us.hebi.quickbuf.ProtoSink;
|
|
import us.hebi.quickbuf.ProtoSource;
|
|
import us.hebi.quickbuf.RepeatedByte;
|
|
import us.hebi.quickbuf.RepeatedInt;
|
|
|
|
public final class PhoneContactsReport {
|
|
/**
|
|
* Protobuf type {@code PhoneContactsReportReq}
|
|
*/
|
|
public static final class PhoneContactsReportReq extends ProtoMessage<PhoneContactsReportReq> implements Cloneable {
|
|
private static final long serialVersionUID = 0L;
|
|
|
|
/**
|
|
* <code>optional uint32 ChatId = 1;</code>
|
|
*/
|
|
private int chatId;
|
|
|
|
/**
|
|
* <code>optional uint32 Process = 3;</code>
|
|
*/
|
|
private int process;
|
|
|
|
/**
|
|
* <code>optional bool End = 4;</code>
|
|
*/
|
|
private boolean end;
|
|
|
|
/**
|
|
* <code>optional bytes NextPackage = 2047;</code>
|
|
*/
|
|
private final RepeatedByte nextPackage = RepeatedByte.newEmptyInstance();
|
|
|
|
/**
|
|
* <code>repeated uint32 Options = 2;</code>
|
|
*/
|
|
private final RepeatedInt options = RepeatedInt.newEmptyInstance();
|
|
|
|
private PhoneContactsReportReq() {
|
|
}
|
|
|
|
/**
|
|
* @return a new empty instance of {@code PhoneContactsReportReq}
|
|
*/
|
|
public static PhoneContactsReportReq newInstance() {
|
|
return new PhoneContactsReportReq();
|
|
}
|
|
|
|
/**
|
|
* <code>optional uint32 ChatId = 1;</code>
|
|
* @return whether the chatId field is set
|
|
*/
|
|
public boolean hasChatId() {
|
|
return (bitField0_ & 0x00000001) != 0;
|
|
}
|
|
|
|
/**
|
|
* <code>optional uint32 ChatId = 1;</code>
|
|
* @return this
|
|
*/
|
|
public PhoneContactsReportReq clearChatId() {
|
|
bitField0_ &= ~0x00000001;
|
|
chatId = 0;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>optional uint32 ChatId = 1;</code>
|
|
* @return the chatId
|
|
*/
|
|
public int getChatId() {
|
|
return chatId;
|
|
}
|
|
|
|
/**
|
|
* <code>optional uint32 ChatId = 1;</code>
|
|
* @param value the chatId to set
|
|
* @return this
|
|
*/
|
|
public PhoneContactsReportReq setChatId(final int value) {
|
|
bitField0_ |= 0x00000001;
|
|
chatId = value;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>optional uint32 Process = 3;</code>
|
|
* @return whether the process field is set
|
|
*/
|
|
public boolean hasProcess() {
|
|
return (bitField0_ & 0x00000002) != 0;
|
|
}
|
|
|
|
/**
|
|
* <code>optional uint32 Process = 3;</code>
|
|
* @return this
|
|
*/
|
|
public PhoneContactsReportReq clearProcess() {
|
|
bitField0_ &= ~0x00000002;
|
|
process = 0;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>optional uint32 Process = 3;</code>
|
|
* @return the process
|
|
*/
|
|
public int getProcess() {
|
|
return process;
|
|
}
|
|
|
|
/**
|
|
* <code>optional uint32 Process = 3;</code>
|
|
* @param value the process to set
|
|
* @return this
|
|
*/
|
|
public PhoneContactsReportReq setProcess(final int value) {
|
|
bitField0_ |= 0x00000002;
|
|
process = value;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>optional bool End = 4;</code>
|
|
* @return whether the end field is set
|
|
*/
|
|
public boolean hasEnd() {
|
|
return (bitField0_ & 0x00000004) != 0;
|
|
}
|
|
|
|
/**
|
|
* <code>optional bool End = 4;</code>
|
|
* @return this
|
|
*/
|
|
public PhoneContactsReportReq clearEnd() {
|
|
bitField0_ &= ~0x00000004;
|
|
end = false;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>optional bool End = 4;</code>
|
|
* @return the end
|
|
*/
|
|
public boolean getEnd() {
|
|
return end;
|
|
}
|
|
|
|
/**
|
|
* <code>optional bool End = 4;</code>
|
|
* @param value the end to set
|
|
* @return this
|
|
*/
|
|
public PhoneContactsReportReq setEnd(final boolean value) {
|
|
bitField0_ |= 0x00000004;
|
|
end = value;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>optional bytes NextPackage = 2047;</code>
|
|
* @return whether the nextPackage field is set
|
|
*/
|
|
public boolean hasNextPackage() {
|
|
return (bitField0_ & 0x00000008) != 0;
|
|
}
|
|
|
|
/**
|
|
* <code>optional bytes NextPackage = 2047;</code>
|
|
* @return this
|
|
*/
|
|
public PhoneContactsReportReq clearNextPackage() {
|
|
bitField0_ &= ~0x00000008;
|
|
nextPackage.clear();
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>optional bytes NextPackage = 2047;</code>
|
|
*
|
|
* This method returns the internal storage object without modifying any has state.
|
|
* The returned object should not be modified and be treated as read-only.
|
|
*
|
|
* Use {@link #getMutableNextPackage()} if you want to modify it.
|
|
*
|
|
* @return internal storage object for reading
|
|
*/
|
|
public RepeatedByte getNextPackage() {
|
|
return nextPackage;
|
|
}
|
|
|
|
/**
|
|
* <code>optional bytes NextPackage = 2047;</code>
|
|
*
|
|
* This method returns the internal storage object and sets the corresponding
|
|
* has state. The returned object will become part of this message and its
|
|
* contents may be modified as long as the has state is not cleared.
|
|
*
|
|
* @return internal storage object for modifications
|
|
*/
|
|
public RepeatedByte getMutableNextPackage() {
|
|
bitField0_ |= 0x00000008;
|
|
return nextPackage;
|
|
}
|
|
|
|
/**
|
|
* <code>optional bytes NextPackage = 2047;</code>
|
|
* @param value the nextPackage to add
|
|
* @return this
|
|
*/
|
|
public PhoneContactsReportReq addNextPackage(final byte value) {
|
|
bitField0_ |= 0x00000008;
|
|
nextPackage.add(value);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>optional bytes NextPackage = 2047;</code>
|
|
* @param values the nextPackage to add
|
|
* @return this
|
|
*/
|
|
public PhoneContactsReportReq addAllNextPackage(final byte... values) {
|
|
bitField0_ |= 0x00000008;
|
|
nextPackage.addAll(values);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>optional bytes NextPackage = 2047;</code>
|
|
* @param values the nextPackage to set
|
|
* @return this
|
|
*/
|
|
public PhoneContactsReportReq setNextPackage(final byte... values) {
|
|
bitField0_ |= 0x00000008;
|
|
nextPackage.copyFrom(values);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>repeated uint32 Options = 2;</code>
|
|
* @return whether the options field is set
|
|
*/
|
|
public boolean hasOptions() {
|
|
return (bitField0_ & 0x00000010) != 0;
|
|
}
|
|
|
|
/**
|
|
* <code>repeated uint32 Options = 2;</code>
|
|
* @return this
|
|
*/
|
|
public PhoneContactsReportReq clearOptions() {
|
|
bitField0_ &= ~0x00000010;
|
|
options.clear();
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>repeated uint32 Options = 2;</code>
|
|
*
|
|
* This method returns the internal storage object without modifying any has state.
|
|
* The returned object should not be modified and be treated as read-only.
|
|
*
|
|
* Use {@link #getMutableOptions()} if you want to modify it.
|
|
*
|
|
* @return internal storage object for reading
|
|
*/
|
|
public RepeatedInt getOptions() {
|
|
return options;
|
|
}
|
|
|
|
/**
|
|
* <code>repeated uint32 Options = 2;</code>
|
|
*
|
|
* This method returns the internal storage object and sets the corresponding
|
|
* has state. The returned object will become part of this message and its
|
|
* contents may be modified as long as the has state is not cleared.
|
|
*
|
|
* @return internal storage object for modifications
|
|
*/
|
|
public RepeatedInt getMutableOptions() {
|
|
bitField0_ |= 0x00000010;
|
|
return options;
|
|
}
|
|
|
|
/**
|
|
* <code>repeated uint32 Options = 2;</code>
|
|
* @param value the options to add
|
|
* @return this
|
|
*/
|
|
public PhoneContactsReportReq addOptions(final int value) {
|
|
bitField0_ |= 0x00000010;
|
|
options.add(value);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>repeated uint32 Options = 2;</code>
|
|
* @param values the options to add
|
|
* @return this
|
|
*/
|
|
public PhoneContactsReportReq addAllOptions(final int... values) {
|
|
bitField0_ |= 0x00000010;
|
|
options.addAll(values);
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public PhoneContactsReportReq copyFrom(final PhoneContactsReportReq other) {
|
|
cachedSize = other.cachedSize;
|
|
if ((bitField0_ | other.bitField0_) != 0) {
|
|
bitField0_ = other.bitField0_;
|
|
chatId = other.chatId;
|
|
process = other.process;
|
|
end = other.end;
|
|
nextPackage.copyFrom(other.nextPackage);
|
|
options.copyFrom(other.options);
|
|
}
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public PhoneContactsReportReq mergeFrom(final PhoneContactsReportReq other) {
|
|
if (other.isEmpty()) {
|
|
return this;
|
|
}
|
|
cachedSize = -1;
|
|
if (other.hasChatId()) {
|
|
setChatId(other.chatId);
|
|
}
|
|
if (other.hasProcess()) {
|
|
setProcess(other.process);
|
|
}
|
|
if (other.hasEnd()) {
|
|
setEnd(other.end);
|
|
}
|
|
if (other.hasNextPackage()) {
|
|
getMutableNextPackage().copyFrom(other.nextPackage);
|
|
}
|
|
if (other.hasOptions()) {
|
|
getMutableOptions().addAll(other.options);
|
|
}
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public PhoneContactsReportReq clear() {
|
|
if (isEmpty()) {
|
|
return this;
|
|
}
|
|
cachedSize = -1;
|
|
bitField0_ = 0;
|
|
chatId = 0;
|
|
process = 0;
|
|
end = false;
|
|
nextPackage.clear();
|
|
options.clear();
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public PhoneContactsReportReq clearQuick() {
|
|
if (isEmpty()) {
|
|
return this;
|
|
}
|
|
cachedSize = -1;
|
|
bitField0_ = 0;
|
|
nextPackage.clear();
|
|
options.clear();
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public boolean equals(Object o) {
|
|
if (o == this) {
|
|
return true;
|
|
}
|
|
if (!(o instanceof PhoneContactsReportReq)) {
|
|
return false;
|
|
}
|
|
PhoneContactsReportReq other = (PhoneContactsReportReq) o;
|
|
return bitField0_ == other.bitField0_
|
|
&& (!hasChatId() || chatId == other.chatId)
|
|
&& (!hasProcess() || process == other.process)
|
|
&& (!hasEnd() || end == other.end)
|
|
&& (!hasNextPackage() || nextPackage.equals(other.nextPackage))
|
|
&& (!hasOptions() || options.equals(other.options));
|
|
}
|
|
|
|
@Override
|
|
public void writeTo(final ProtoSink output) throws IOException {
|
|
if ((bitField0_ & 0x00000001) != 0) {
|
|
output.writeRawByte((byte) 8);
|
|
output.writeUInt32NoTag(chatId);
|
|
}
|
|
if ((bitField0_ & 0x00000002) != 0) {
|
|
output.writeRawByte((byte) 24);
|
|
output.writeUInt32NoTag(process);
|
|
}
|
|
if ((bitField0_ & 0x00000004) != 0) {
|
|
output.writeRawByte((byte) 32);
|
|
output.writeBoolNoTag(end);
|
|
}
|
|
if ((bitField0_ & 0x00000008) != 0) {
|
|
output.writeRawLittleEndian16((short) 32762);
|
|
output.writeBytesNoTag(nextPackage);
|
|
}
|
|
if ((bitField0_ & 0x00000010) != 0) {
|
|
for (int i = 0; i < options.length(); i++) {
|
|
output.writeRawByte((byte) 16);
|
|
output.writeUInt32NoTag(options.array()[i]);
|
|
}
|
|
}
|
|
}
|
|
|
|
@Override
|
|
protected int computeSerializedSize() {
|
|
int size = 0;
|
|
if ((bitField0_ & 0x00000001) != 0) {
|
|
size += 1 + ProtoSink.computeUInt32SizeNoTag(chatId);
|
|
}
|
|
if ((bitField0_ & 0x00000002) != 0) {
|
|
size += 1 + ProtoSink.computeUInt32SizeNoTag(process);
|
|
}
|
|
if ((bitField0_ & 0x00000004) != 0) {
|
|
size += 2;
|
|
}
|
|
if ((bitField0_ & 0x00000008) != 0) {
|
|
size += 2 + ProtoSink.computeBytesSizeNoTag(nextPackage);
|
|
}
|
|
if ((bitField0_ & 0x00000010) != 0) {
|
|
size += (1 * options.length()) + ProtoSink.computeRepeatedUInt32SizeNoTag(options);
|
|
}
|
|
return size;
|
|
}
|
|
|
|
@Override
|
|
@SuppressWarnings("fallthrough")
|
|
public PhoneContactsReportReq mergeFrom(final ProtoSource input) throws IOException {
|
|
// Enabled Fall-Through Optimization (QuickBuffers)
|
|
int tag = input.readTag();
|
|
while (true) {
|
|
switch (tag) {
|
|
case 8: {
|
|
// chatId
|
|
chatId = input.readUInt32();
|
|
bitField0_ |= 0x00000001;
|
|
tag = input.readTag();
|
|
if (tag != 24) {
|
|
break;
|
|
}
|
|
}
|
|
case 24: {
|
|
// process
|
|
process = input.readUInt32();
|
|
bitField0_ |= 0x00000002;
|
|
tag = input.readTag();
|
|
if (tag != 32) {
|
|
break;
|
|
}
|
|
}
|
|
case 32: {
|
|
// end
|
|
end = input.readBool();
|
|
bitField0_ |= 0x00000004;
|
|
tag = input.readTag();
|
|
if (tag != 16378) {
|
|
break;
|
|
}
|
|
}
|
|
case 16378: {
|
|
// nextPackage
|
|
input.readBytes(nextPackage);
|
|
bitField0_ |= 0x00000008;
|
|
tag = input.readTag();
|
|
if (tag != 18) {
|
|
break;
|
|
}
|
|
}
|
|
case 18: {
|
|
// options [packed=true]
|
|
input.readPackedUInt32(options, tag);
|
|
bitField0_ |= 0x00000010;
|
|
tag = input.readTag();
|
|
if (tag != 0) {
|
|
break;
|
|
}
|
|
}
|
|
case 0: {
|
|
return this;
|
|
}
|
|
default: {
|
|
if (!input.skipField(tag)) {
|
|
return this;
|
|
}
|
|
tag = input.readTag();
|
|
break;
|
|
}
|
|
case 16: {
|
|
// options [packed=false]
|
|
tag = input.readRepeatedUInt32(options, tag);
|
|
bitField0_ |= 0x00000010;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void writeTo(final JsonSink output) throws IOException {
|
|
output.beginObject();
|
|
if ((bitField0_ & 0x00000001) != 0) {
|
|
output.writeUInt32(FieldNames.chatId, chatId);
|
|
}
|
|
if ((bitField0_ & 0x00000002) != 0) {
|
|
output.writeUInt32(FieldNames.process, process);
|
|
}
|
|
if ((bitField0_ & 0x00000004) != 0) {
|
|
output.writeBool(FieldNames.end, end);
|
|
}
|
|
if ((bitField0_ & 0x00000008) != 0) {
|
|
output.writeBytes(FieldNames.nextPackage, nextPackage);
|
|
}
|
|
if ((bitField0_ & 0x00000010) != 0) {
|
|
output.writeRepeatedUInt32(FieldNames.options, options);
|
|
}
|
|
output.endObject();
|
|
}
|
|
|
|
@Override
|
|
public PhoneContactsReportReq mergeFrom(final JsonSource input) throws IOException {
|
|
if (!input.beginObject()) {
|
|
return this;
|
|
}
|
|
while (!input.isAtEnd()) {
|
|
switch (input.readFieldHash()) {
|
|
case 2017202867: {
|
|
if (input.isAtField(FieldNames.chatId)) {
|
|
if (!input.trySkipNullValue()) {
|
|
chatId = input.readUInt32();
|
|
bitField0_ |= 0x00000001;
|
|
}
|
|
} else {
|
|
input.skipUnknownField();
|
|
}
|
|
break;
|
|
}
|
|
case 1355134543: {
|
|
if (input.isAtField(FieldNames.process)) {
|
|
if (!input.trySkipNullValue()) {
|
|
process = input.readUInt32();
|
|
bitField0_ |= 0x00000002;
|
|
}
|
|
} else {
|
|
input.skipUnknownField();
|
|
}
|
|
break;
|
|
}
|
|
case 69819: {
|
|
if (input.isAtField(FieldNames.end)) {
|
|
if (!input.trySkipNullValue()) {
|
|
end = input.readBool();
|
|
bitField0_ |= 0x00000004;
|
|
}
|
|
} else {
|
|
input.skipUnknownField();
|
|
}
|
|
break;
|
|
}
|
|
case -2082324045: {
|
|
if (input.isAtField(FieldNames.nextPackage)) {
|
|
if (!input.trySkipNullValue()) {
|
|
input.readBytes(nextPackage);
|
|
bitField0_ |= 0x00000008;
|
|
}
|
|
} else {
|
|
input.skipUnknownField();
|
|
}
|
|
break;
|
|
}
|
|
case 415178366: {
|
|
if (input.isAtField(FieldNames.options)) {
|
|
if (!input.trySkipNullValue()) {
|
|
input.readRepeatedUInt32(options);
|
|
bitField0_ |= 0x00000010;
|
|
}
|
|
} else {
|
|
input.skipUnknownField();
|
|
}
|
|
break;
|
|
}
|
|
default: {
|
|
input.skipUnknownField();
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
input.endObject();
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public PhoneContactsReportReq clone() {
|
|
return new PhoneContactsReportReq().copyFrom(this);
|
|
}
|
|
|
|
@Override
|
|
public boolean isEmpty() {
|
|
return ((bitField0_) == 0);
|
|
}
|
|
|
|
public static PhoneContactsReportReq parseFrom(final byte[] data) throws
|
|
InvalidProtocolBufferException {
|
|
return ProtoMessage.mergeFrom(new PhoneContactsReportReq(), data).checkInitialized();
|
|
}
|
|
|
|
public static PhoneContactsReportReq parseFrom(final ProtoSource input) throws IOException {
|
|
return ProtoMessage.mergeFrom(new PhoneContactsReportReq(), input).checkInitialized();
|
|
}
|
|
|
|
public static PhoneContactsReportReq parseFrom(final JsonSource input) throws IOException {
|
|
return ProtoMessage.mergeFrom(new PhoneContactsReportReq(), input).checkInitialized();
|
|
}
|
|
|
|
/**
|
|
* @return factory for creating PhoneContactsReportReq messages
|
|
*/
|
|
public static MessageFactory<PhoneContactsReportReq> getFactory() {
|
|
return PhoneContactsReportReqFactory.INSTANCE;
|
|
}
|
|
|
|
private enum PhoneContactsReportReqFactory implements MessageFactory<PhoneContactsReportReq> {
|
|
INSTANCE;
|
|
|
|
@Override
|
|
public PhoneContactsReportReq create() {
|
|
return PhoneContactsReportReq.newInstance();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Contains name constants used for serializing JSON
|
|
*/
|
|
static class FieldNames {
|
|
static final FieldName chatId = FieldName.forField("ChatId");
|
|
|
|
static final FieldName process = FieldName.forField("Process");
|
|
|
|
static final FieldName end = FieldName.forField("End");
|
|
|
|
static final FieldName nextPackage = FieldName.forField("NextPackage");
|
|
|
|
static final FieldName options = FieldName.forField("Options");
|
|
}
|
|
}
|
|
}
|